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.
 
 
 

53958 lines
1.3 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,
  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: ["monster-hunter"]
  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. }
  2055. //species
  2056. function getSpeciesInfo(speciesList) {
  2057. let result = new Set();
  2058. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2059. result.add(entry)
  2060. });
  2061. return Array.from(result);
  2062. };
  2063. function getSpeciesInfoHelper(species) {
  2064. if (!speciesData[species]) {
  2065. console.warn(species + " doesn't exist");
  2066. return [];
  2067. }
  2068. if (speciesData[species].parents) {
  2069. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2070. } else {
  2071. return [species];
  2072. }
  2073. }
  2074. characterMakers.push(() => makeCharacter(
  2075. {
  2076. name: "Fen",
  2077. species: ["crux"],
  2078. description: {
  2079. title: "Bio",
  2080. text: "Very furry. Sheds on everything."
  2081. },
  2082. tags: [
  2083. "anthro",
  2084. "goo"
  2085. ]
  2086. },
  2087. {
  2088. front: {
  2089. height: math.unit(12, "feet"),
  2090. weight: math.unit(2400, "lb"),
  2091. name: "Front",
  2092. image: {
  2093. source: "./media/characters/fen/front.svg",
  2094. extra: 1804/1562,
  2095. bottom: 205/2009
  2096. },
  2097. extraAttributes: {
  2098. pawSize: {
  2099. name: "Paw Size",
  2100. power: 2,
  2101. type: "area",
  2102. base: math.unit(0.35, "m^2")
  2103. }
  2104. }
  2105. },
  2106. diving: {
  2107. height: math.unit(4.9, "meters"),
  2108. weight: math.unit(2400, "lb"),
  2109. name: "Diving",
  2110. image: {
  2111. source: "./media/characters/fen/diving.svg"
  2112. }
  2113. },
  2114. goo: {
  2115. height: math.unit(12, "feet"),
  2116. weight: math.unit(3600, "lb"),
  2117. volume: math.unit(1000, "liters"),
  2118. preyCapacity: math.unit(6, "people"),
  2119. name: "Goo",
  2120. image: {
  2121. source: "./media/characters/fen/goo.svg",
  2122. extra: 1307/1071,
  2123. bottom: 134/1441
  2124. }
  2125. },
  2126. gooNsfw: {
  2127. height: math.unit(12, "feet"),
  2128. weight: math.unit(3750, "lb"),
  2129. volume: math.unit(1000, "liters"),
  2130. preyCapacity: math.unit(6, "people"),
  2131. name: "Goo (NSFW)",
  2132. image: {
  2133. source: "./media/characters/fen/goo-nsfw.svg",
  2134. extra: 1875/1734,
  2135. bottom: 122/1997
  2136. }
  2137. },
  2138. maw: {
  2139. height: math.unit(5.03, "feet"),
  2140. name: "Maw",
  2141. image: {
  2142. source: "./media/characters/fen/maw.svg"
  2143. }
  2144. },
  2145. gooCeiling: {
  2146. height: math.unit(6.6, "feet"),
  2147. weight: math.unit(3000, "lb"),
  2148. volume: math.unit(1000, "liters"),
  2149. preyCapacity: math.unit(6, "people"),
  2150. name: "Goo (Ceiling)",
  2151. image: {
  2152. source: "./media/characters/fen/goo-ceiling.svg"
  2153. }
  2154. },
  2155. paw: {
  2156. height: math.unit(3.77, "feet"),
  2157. name: "Paw",
  2158. image: {
  2159. source: "./media/characters/fen/paw.svg"
  2160. },
  2161. extraAttributes: {
  2162. "toeSize": {
  2163. name: "Toe Size",
  2164. power: 2,
  2165. type: "area",
  2166. base: math.unit(0.02875, "m^2")
  2167. },
  2168. "pawSize": {
  2169. name: "Paw Size",
  2170. power: 2,
  2171. type: "area",
  2172. base: math.unit(0.378, "m^2")
  2173. },
  2174. }
  2175. },
  2176. tail: {
  2177. height: math.unit(12.1, "feet"),
  2178. name: "Tail",
  2179. image: {
  2180. source: "./media/characters/fen/tail.svg"
  2181. }
  2182. },
  2183. tailFull: {
  2184. height: math.unit(12.1, "feet"),
  2185. name: "Full Tail",
  2186. image: {
  2187. source: "./media/characters/fen/tail-full.svg"
  2188. }
  2189. },
  2190. back: {
  2191. height: math.unit(12, "feet"),
  2192. weight: math.unit(2400, "lb"),
  2193. name: "Back",
  2194. image: {
  2195. source: "./media/characters/fen/back.svg",
  2196. },
  2197. info: {
  2198. description: {
  2199. mode: "append",
  2200. text: "\n\nHe is not currently looking at you."
  2201. }
  2202. }
  2203. },
  2204. full: {
  2205. height: math.unit(1.85, "meter"),
  2206. weight: math.unit(3200, "lb"),
  2207. name: "Full",
  2208. image: {
  2209. source: "./media/characters/fen/full.svg",
  2210. extra: 1133/859,
  2211. bottom: 145/1278
  2212. },
  2213. info: {
  2214. description: {
  2215. mode: "append",
  2216. text: "\n\nMunch."
  2217. }
  2218. }
  2219. },
  2220. gooLounging: {
  2221. height: math.unit(4.53, "feet"),
  2222. weight: math.unit(3000, "lb"),
  2223. preyCapacity: math.unit(6, "people"),
  2224. name: "Goo (Lounging)",
  2225. image: {
  2226. source: "./media/characters/fen/goo-lounging.svg",
  2227. bottom: 116 / 613
  2228. }
  2229. },
  2230. lounging: {
  2231. height: math.unit(10.52, "feet"),
  2232. weight: math.unit(2400, "lb"),
  2233. name: "Lounging",
  2234. image: {
  2235. source: "./media/characters/fen/lounging.svg"
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Small",
  2242. height: math.unit(2.2428, "meter")
  2243. },
  2244. {
  2245. name: "Normal",
  2246. height: math.unit(12, "feet"),
  2247. default: true,
  2248. },
  2249. {
  2250. name: "Big",
  2251. height: math.unit(20, "feet")
  2252. },
  2253. {
  2254. name: "Minimacro",
  2255. height: math.unit(40, "feet"),
  2256. info: {
  2257. description: {
  2258. mode: "append",
  2259. text: "\n\nTOO DAMN BIG"
  2260. }
  2261. }
  2262. },
  2263. {
  2264. name: "Macro",
  2265. height: math.unit(100, "feet"),
  2266. info: {
  2267. description: {
  2268. mode: "append",
  2269. text: "\n\nTOO DAMN BIG"
  2270. }
  2271. }
  2272. },
  2273. {
  2274. name: "Megamacro",
  2275. height: math.unit(2, "miles")
  2276. },
  2277. {
  2278. name: "Gigamacro",
  2279. height: math.unit(10, "earths")
  2280. },
  2281. ]
  2282. ))
  2283. characterMakers.push(() => makeCharacter(
  2284. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2285. {
  2286. front: {
  2287. height: math.unit(183, "cm"),
  2288. weight: math.unit(80, "kg"),
  2289. name: "Front",
  2290. image: {
  2291. source: "./media/characters/sofia-fluttertail/front.svg",
  2292. bottom: 0.01,
  2293. extra: 2154 / 2081
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(183, "cm"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Front (alt)",
  2300. image: {
  2301. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2302. }
  2303. },
  2304. back: {
  2305. height: math.unit(183, "cm"),
  2306. weight: math.unit(80, "kg"),
  2307. name: "Back",
  2308. image: {
  2309. source: "./media/characters/sofia-fluttertail/back.svg"
  2310. }
  2311. },
  2312. kneeling: {
  2313. height: math.unit(125, "cm"),
  2314. weight: math.unit(80, "kg"),
  2315. name: "Kneeling",
  2316. image: {
  2317. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2318. extra: 1033 / 977,
  2319. bottom: 23.7 / 1057
  2320. }
  2321. },
  2322. maw: {
  2323. height: math.unit(183 / 5, "cm"),
  2324. name: "Maw",
  2325. image: {
  2326. source: "./media/characters/sofia-fluttertail/maw.svg"
  2327. }
  2328. },
  2329. mawcloseup: {
  2330. height: math.unit(183 / 5 * 0.41, "cm"),
  2331. name: "Maw (Closeup)",
  2332. image: {
  2333. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2334. }
  2335. },
  2336. paws: {
  2337. height: math.unit(1.17, "feet"),
  2338. name: "Paws",
  2339. image: {
  2340. source: "./media/characters/sofia-fluttertail/paws.svg",
  2341. extra: 851 / 851,
  2342. bottom: 17 / 868
  2343. }
  2344. },
  2345. },
  2346. [
  2347. {
  2348. name: "Normal",
  2349. height: math.unit(1.83, "meter")
  2350. },
  2351. {
  2352. name: "Size Thief",
  2353. height: math.unit(18, "feet")
  2354. },
  2355. {
  2356. name: "50 Foot Collie",
  2357. height: math.unit(50, "feet")
  2358. },
  2359. {
  2360. name: "Macro",
  2361. height: math.unit(96, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Megamerger",
  2366. height: math.unit(650, "feet")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(7, "feet"),
  2375. weight: math.unit(100, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/march/front.svg",
  2379. extra: 1992/1851,
  2380. bottom: 39/2031
  2381. }
  2382. },
  2383. foot: {
  2384. height: math.unit(0.9, "feet"),
  2385. name: "Foot",
  2386. image: {
  2387. source: "./media/characters/march/foot.svg"
  2388. }
  2389. },
  2390. },
  2391. [
  2392. {
  2393. name: "Normal",
  2394. height: math.unit(7.9, "feet")
  2395. },
  2396. {
  2397. name: "Macro",
  2398. height: math.unit(220, "meters")
  2399. },
  2400. {
  2401. name: "Megamacro",
  2402. height: math.unit(2.98, "km"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Gigamacro",
  2407. height: math.unit(15963, "km")
  2408. },
  2409. {
  2410. name: "Teramacro",
  2411. height: math.unit(2980000000, "km")
  2412. },
  2413. {
  2414. name: "Examacro",
  2415. height: math.unit(250, "parsecs")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(6, "feet"),
  2424. weight: math.unit(60, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/noir/front.svg",
  2428. extra: 1,
  2429. bottom: 0.032
  2430. }
  2431. },
  2432. },
  2433. [
  2434. {
  2435. name: "Normal",
  2436. height: math.unit(6.6, "feet")
  2437. },
  2438. {
  2439. name: "Macro",
  2440. height: math.unit(500, "feet")
  2441. },
  2442. {
  2443. name: "Megamacro",
  2444. height: math.unit(2.5, "km"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Gigamacro",
  2449. height: math.unit(22500, "km")
  2450. },
  2451. {
  2452. name: "Teramacro",
  2453. height: math.unit(2500000000, "km")
  2454. },
  2455. {
  2456. name: "Examacro",
  2457. height: math.unit(200, "parsecs")
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2463. {
  2464. front: {
  2465. height: math.unit(7, "feet"),
  2466. weight: math.unit(100, "kg"),
  2467. name: "Front",
  2468. image: {
  2469. source: "./media/characters/okuri/front.svg",
  2470. extra: 739/665,
  2471. bottom: 39/778
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(7, "feet"),
  2476. weight: math.unit(100, "kg"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/okuri/back.svg",
  2480. extra: 734/653,
  2481. bottom: 13/747
  2482. }
  2483. },
  2484. sitting: {
  2485. height: math.unit(2.95, "feet"),
  2486. weight: math.unit(100, "kg"),
  2487. name: "Sitting",
  2488. image: {
  2489. source: "./media/characters/okuri/sitting.svg",
  2490. extra: 370/318,
  2491. bottom: 99/469
  2492. }
  2493. },
  2494. },
  2495. [
  2496. {
  2497. name: "Smallest",
  2498. height: math.unit(5 + 2/12, "feet")
  2499. },
  2500. {
  2501. name: "Smaller",
  2502. height: math.unit(300, "feet")
  2503. },
  2504. {
  2505. name: "Small",
  2506. height: math.unit(1000, "feet")
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(1, "mile")
  2511. },
  2512. {
  2513. name: "Mega Macro (Small)",
  2514. height: math.unit(20, "km")
  2515. },
  2516. {
  2517. name: "Mega Macro (Large)",
  2518. height: math.unit(600, "km")
  2519. },
  2520. {
  2521. name: "Giga Macro",
  2522. height: math.unit(10000, "km")
  2523. },
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(577560, "km"),
  2527. default: true
  2528. },
  2529. {
  2530. name: "Large",
  2531. height: math.unit(4, "galaxies")
  2532. },
  2533. {
  2534. name: "Largest",
  2535. height: math.unit(15, "multiverses")
  2536. },
  2537. ]
  2538. ))
  2539. characterMakers.push(() => makeCharacter(
  2540. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2541. {
  2542. front: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front",
  2546. image: {
  2547. source: "./media/characters/manny/front.svg",
  2548. extra: 1,
  2549. bottom: 0.06
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/manny/back.svg",
  2558. extra: 1,
  2559. bottom: 0.014
  2560. }
  2561. },
  2562. },
  2563. [
  2564. {
  2565. name: "Normal",
  2566. height: math.unit(7, "feet"),
  2567. },
  2568. {
  2569. name: "Macro",
  2570. height: math.unit(78, "feet"),
  2571. default: true
  2572. },
  2573. {
  2574. name: "Macro+",
  2575. height: math.unit(300, "meters")
  2576. },
  2577. {
  2578. name: "Macro++",
  2579. height: math.unit(2400, "meters")
  2580. },
  2581. {
  2582. name: "Megamacro",
  2583. height: math.unit(5167, "meters")
  2584. },
  2585. {
  2586. name: "Gigamacro",
  2587. height: math.unit(41769, "miles")
  2588. },
  2589. ]
  2590. ))
  2591. characterMakers.push(() => makeCharacter(
  2592. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2593. {
  2594. front: {
  2595. height: math.unit(7, "feet"),
  2596. weight: math.unit(100, "kg"),
  2597. name: "Front",
  2598. image: {
  2599. source: "./media/characters/adake/front-1.svg"
  2600. }
  2601. },
  2602. frontAlt: {
  2603. height: math.unit(7, "feet"),
  2604. weight: math.unit(100, "kg"),
  2605. name: "Front (Alt)",
  2606. image: {
  2607. source: "./media/characters/adake/front-2.svg",
  2608. extra: 1,
  2609. bottom: 0.01
  2610. }
  2611. },
  2612. back: {
  2613. height: math.unit(7, "feet"),
  2614. weight: math.unit(100, "kg"),
  2615. name: "Back",
  2616. image: {
  2617. source: "./media/characters/adake/back.svg",
  2618. }
  2619. },
  2620. kneel: {
  2621. height: math.unit(5.385, "feet"),
  2622. weight: math.unit(100, "kg"),
  2623. name: "Kneeling",
  2624. image: {
  2625. source: "./media/characters/adake/kneel.svg",
  2626. bottom: 0.052
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Normal",
  2633. height: math.unit(7, "feet"),
  2634. },
  2635. {
  2636. name: "Macro",
  2637. height: math.unit(78, "feet"),
  2638. default: true
  2639. },
  2640. {
  2641. name: "Macro+",
  2642. height: math.unit(300, "meters")
  2643. },
  2644. {
  2645. name: "Macro++",
  2646. height: math.unit(2400, "meters")
  2647. },
  2648. {
  2649. name: "Megamacro",
  2650. height: math.unit(5167, "meters")
  2651. },
  2652. {
  2653. name: "Gigamacro",
  2654. height: math.unit(41769, "miles")
  2655. },
  2656. ]
  2657. ))
  2658. characterMakers.push(() => makeCharacter(
  2659. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2660. {
  2661. front: {
  2662. height: math.unit(1.65, "meters"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front",
  2665. image: {
  2666. source: "./media/characters/elijah/front.svg",
  2667. extra: 858 / 830,
  2668. bottom: 95.5 / 953.8559
  2669. }
  2670. },
  2671. back: {
  2672. height: math.unit(1.65, "meters"),
  2673. weight: math.unit(50, "kg"),
  2674. name: "Back",
  2675. image: {
  2676. source: "./media/characters/elijah/back.svg",
  2677. extra: 895 / 850,
  2678. bottom: 5.3 / 897.956
  2679. }
  2680. },
  2681. frontNsfw: {
  2682. height: math.unit(1.65, "meters"),
  2683. weight: math.unit(50, "kg"),
  2684. name: "Front (NSFW)",
  2685. image: {
  2686. source: "./media/characters/elijah/front-nsfw.svg",
  2687. extra: 858 / 830,
  2688. bottom: 95.5 / 953.8559
  2689. }
  2690. },
  2691. backNsfw: {
  2692. height: math.unit(1.65, "meters"),
  2693. weight: math.unit(50, "kg"),
  2694. name: "Back (NSFW)",
  2695. image: {
  2696. source: "./media/characters/elijah/back-nsfw.svg",
  2697. extra: 895 / 850,
  2698. bottom: 5.3 / 897.956
  2699. }
  2700. },
  2701. dick: {
  2702. height: math.unit(1, "feet"),
  2703. name: "Dick",
  2704. image: {
  2705. source: "./media/characters/elijah/dick.svg"
  2706. }
  2707. },
  2708. beakOpen: {
  2709. height: math.unit(1.25, "feet"),
  2710. name: "Beak (Open)",
  2711. image: {
  2712. source: "./media/characters/elijah/beak-open.svg"
  2713. }
  2714. },
  2715. beakShut: {
  2716. height: math.unit(1.25, "feet"),
  2717. name: "Beak (Shut)",
  2718. image: {
  2719. source: "./media/characters/elijah/beak-shut.svg"
  2720. }
  2721. },
  2722. footFlexing: {
  2723. height: math.unit(1.61, "feet"),
  2724. name: "Foot (Flexing)",
  2725. image: {
  2726. source: "./media/characters/elijah/foot-flexing.svg"
  2727. }
  2728. },
  2729. footStepping: {
  2730. height: math.unit(1.44, "feet"),
  2731. name: "Foot (Stepping)",
  2732. image: {
  2733. source: "./media/characters/elijah/foot-stepping.svg"
  2734. }
  2735. },
  2736. plantigradeLeg: {
  2737. height: math.unit(2.34, "feet"),
  2738. name: "Plantigrade Leg",
  2739. image: {
  2740. source: "./media/characters/elijah/plantigrade-leg.svg"
  2741. }
  2742. },
  2743. plantigradeFootLeft: {
  2744. height: math.unit(0.9, "feet"),
  2745. name: "Plantigrade Foot (Left)",
  2746. image: {
  2747. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2748. }
  2749. },
  2750. plantigradeFootRight: {
  2751. height: math.unit(0.9, "feet"),
  2752. name: "Plantigrade Foot (Right)",
  2753. image: {
  2754. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2755. }
  2756. },
  2757. },
  2758. [
  2759. {
  2760. name: "Normal",
  2761. height: math.unit(1.65, "meters")
  2762. },
  2763. {
  2764. name: "Macro",
  2765. height: math.unit(55, "meters"),
  2766. default: true
  2767. },
  2768. {
  2769. name: "Macro+",
  2770. height: math.unit(105, "meters")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(7 + 2/12, "feet"),
  2779. weight: math.unit(320, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/rai/front.svg",
  2783. extra: 1802/1696,
  2784. bottom: 68/1870
  2785. }
  2786. },
  2787. frontDressed: {
  2788. height: math.unit(7 + 2/12, "feet"),
  2789. weight: math.unit(320, "kg"),
  2790. name: "Front (Dressed)",
  2791. image: {
  2792. source: "./media/characters/rai/front-dressed.svg",
  2793. extra: 1802/1696,
  2794. bottom: 68/1870
  2795. }
  2796. },
  2797. side: {
  2798. height: math.unit(7 + 2/12, "feet"),
  2799. weight: math.unit(320, "kg"),
  2800. name: "Side",
  2801. image: {
  2802. source: "./media/characters/rai/side.svg",
  2803. extra: 1789/1710,
  2804. bottom: 115/1904
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7 + 2/12, "feet"),
  2809. weight: math.unit(320, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/rai/back.svg",
  2813. extra: 1770/1707,
  2814. bottom: 28/1798
  2815. }
  2816. },
  2817. feral: {
  2818. height: math.unit(9.5, "feet"),
  2819. weight: math.unit(640, "kg"),
  2820. name: "Feral",
  2821. image: {
  2822. source: "./media/characters/rai/feral.svg",
  2823. extra: 945/553,
  2824. bottom: 176/1121
  2825. }
  2826. },
  2827. dragon: {
  2828. height: math.unit(23, "feet"),
  2829. weight: math.unit(50000, "lb"),
  2830. name: "Dragon",
  2831. image: {
  2832. source: "./media/characters/rai/dragon.svg",
  2833. extra: 2498 / 2030,
  2834. bottom: 85.2 / 2584
  2835. }
  2836. },
  2837. maw: {
  2838. height: math.unit(1.69, "feet"),
  2839. name: "Maw",
  2840. image: {
  2841. source: "./media/characters/rai/maw.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(7 + 2/12, "feet")
  2849. },
  2850. {
  2851. name: "Big",
  2852. height: math.unit(11, "feet")
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(302, "feet"),
  2857. default: true
  2858. },
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2863. {
  2864. frontDressed: {
  2865. height: math.unit(216, "feet"),
  2866. weight: math.unit(7000000, "lb"),
  2867. name: "Front (Dressed)",
  2868. image: {
  2869. source: "./media/characters/jazzy/front-dressed.svg",
  2870. extra: 2738 / 2651,
  2871. bottom: 41.8 / 2786
  2872. }
  2873. },
  2874. backDressed: {
  2875. height: math.unit(216, "feet"),
  2876. weight: math.unit(7000000, "lb"),
  2877. name: "Back (Dressed)",
  2878. image: {
  2879. source: "./media/characters/jazzy/back-dressed.svg",
  2880. extra: 2775 / 2673,
  2881. bottom: 36.8 / 2817
  2882. }
  2883. },
  2884. front: {
  2885. height: math.unit(216, "feet"),
  2886. weight: math.unit(7000000, "lb"),
  2887. name: "Front",
  2888. image: {
  2889. source: "./media/characters/jazzy/front.svg",
  2890. extra: 2738 / 2651,
  2891. bottom: 41.8 / 2786
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(216, "feet"),
  2896. weight: math.unit(7000000, "lb"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/jazzy/back.svg",
  2900. extra: 2775 / 2673,
  2901. bottom: 36.8 / 2817
  2902. }
  2903. },
  2904. maw: {
  2905. height: math.unit(20, "feet"),
  2906. name: "Maw",
  2907. image: {
  2908. source: "./media/characters/jazzy/maw.svg"
  2909. }
  2910. },
  2911. paws: {
  2912. height: math.unit(27.5, "feet"),
  2913. name: "Paws",
  2914. image: {
  2915. source: "./media/characters/jazzy/paws.svg"
  2916. }
  2917. },
  2918. eye: {
  2919. height: math.unit(4.4, "feet"),
  2920. name: "Eye",
  2921. image: {
  2922. source: "./media/characters/jazzy/eye.svg"
  2923. }
  2924. },
  2925. droneOffense: {
  2926. height: math.unit(9.5, "inches"),
  2927. name: "Drone (Offense)",
  2928. image: {
  2929. source: "./media/characters/jazzy/drone-offense.svg"
  2930. }
  2931. },
  2932. droneRecon: {
  2933. height: math.unit(9.5, "inches"),
  2934. name: "Drone (Recon)",
  2935. image: {
  2936. source: "./media/characters/jazzy/drone-recon.svg"
  2937. }
  2938. },
  2939. droneDefense: {
  2940. height: math.unit(9.5, "inches"),
  2941. name: "Drone (Defense)",
  2942. image: {
  2943. source: "./media/characters/jazzy/drone-defense.svg"
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Macro",
  2950. height: math.unit(216, "feet"),
  2951. default: true
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(9 + 6/12, "feet"),
  2960. weight: math.unit(700, "lb"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/flamm/front.svg",
  2964. extra: 1751/1632,
  2965. bottom: 46/1797
  2966. }
  2967. },
  2968. buff: {
  2969. height: math.unit(9 + 6/12, "feet"),
  2970. weight: math.unit(950, "lb"),
  2971. name: "Buff",
  2972. image: {
  2973. source: "./media/characters/flamm/buff.svg",
  2974. extra: 3018/2874,
  2975. bottom: 221/3239
  2976. }
  2977. },
  2978. },
  2979. [
  2980. {
  2981. name: "Normal",
  2982. height: math.unit(9.5, "feet")
  2983. },
  2984. {
  2985. name: "Macro",
  2986. height: math.unit(200, "feet"),
  2987. default: true
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(5 + 3/12, "feet"),
  2996. weight: math.unit(60, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/zephiro/front.svg",
  3000. extra: 1873/1761,
  3001. bottom: 147/2020
  3002. }
  3003. },
  3004. side: {
  3005. height: math.unit(5 + 3/12, "feet"),
  3006. weight: math.unit(60, "kg"),
  3007. name: "Side",
  3008. image: {
  3009. source: "./media/characters/zephiro/side.svg",
  3010. extra: 1929/1827,
  3011. bottom: 65/1994
  3012. }
  3013. },
  3014. back: {
  3015. height: math.unit(5 + 3/12, "feet"),
  3016. weight: math.unit(60, "kg"),
  3017. name: "Back",
  3018. image: {
  3019. source: "./media/characters/zephiro/back.svg",
  3020. extra: 1926/1816,
  3021. bottom: 41/1967
  3022. }
  3023. },
  3024. hand: {
  3025. height: math.unit(0.68, "feet"),
  3026. name: "Hand",
  3027. image: {
  3028. source: "./media/characters/zephiro/hand.svg"
  3029. }
  3030. },
  3031. paw: {
  3032. height: math.unit(1, "feet"),
  3033. name: "Paw",
  3034. image: {
  3035. source: "./media/characters/zephiro/paw.svg"
  3036. }
  3037. },
  3038. beans: {
  3039. height: math.unit(0.93, "feet"),
  3040. name: "Beans",
  3041. image: {
  3042. source: "./media/characters/zephiro/beans.svg"
  3043. }
  3044. },
  3045. },
  3046. [
  3047. {
  3048. name: "Micro",
  3049. height: math.unit(3, "inches")
  3050. },
  3051. {
  3052. name: "Normal",
  3053. height: math.unit(5 + 3 / 12, "feet"),
  3054. default: true
  3055. },
  3056. {
  3057. name: "Macro",
  3058. height: math.unit(118, "feet")
  3059. },
  3060. ]
  3061. ))
  3062. characterMakers.push(() => makeCharacter(
  3063. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3064. {
  3065. front: {
  3066. height: math.unit(5, "feet"),
  3067. weight: math.unit(90, "kg"),
  3068. name: "Front",
  3069. image: {
  3070. source: "./media/characters/fory/front.svg",
  3071. extra: 2862 / 2674,
  3072. bottom: 180 / 3043.8
  3073. }
  3074. },
  3075. back: {
  3076. height: math.unit(5, "feet"),
  3077. weight: math.unit(90, "kg"),
  3078. name: "Back",
  3079. image: {
  3080. source: "./media/characters/fory/back.svg",
  3081. extra: 2962 / 2791,
  3082. bottom: 106 / 3071.8
  3083. }
  3084. },
  3085. foot: {
  3086. height: math.unit(2.14, "feet"),
  3087. name: "Foot",
  3088. image: {
  3089. source: "./media/characters/fory/foot.svg"
  3090. }
  3091. },
  3092. },
  3093. [
  3094. {
  3095. name: "Normal",
  3096. height: math.unit(5, "feet")
  3097. },
  3098. {
  3099. name: "Macro",
  3100. height: math.unit(50, "feet"),
  3101. default: true
  3102. },
  3103. {
  3104. name: "Megamacro",
  3105. height: math.unit(10, "miles")
  3106. },
  3107. {
  3108. name: "Gigamacro",
  3109. height: math.unit(5, "earths")
  3110. },
  3111. ]
  3112. ))
  3113. characterMakers.push(() => makeCharacter(
  3114. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3115. {
  3116. front: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(90, "kg"),
  3119. name: "Front",
  3120. image: {
  3121. source: "./media/characters/kurrikage/front.svg",
  3122. extra: 1845/1733,
  3123. bottom: 119/1964
  3124. }
  3125. },
  3126. back: {
  3127. height: math.unit(7, "feet"),
  3128. weight: math.unit(90, "kg"),
  3129. name: "Back",
  3130. image: {
  3131. source: "./media/characters/kurrikage/back.svg",
  3132. extra: 1790/1677,
  3133. bottom: 61/1851
  3134. }
  3135. },
  3136. dressed: {
  3137. height: math.unit(7, "feet"),
  3138. weight: math.unit(90, "kg"),
  3139. name: "Dressed",
  3140. image: {
  3141. source: "./media/characters/kurrikage/dressed.svg",
  3142. extra: 1845/1733,
  3143. bottom: 119/1964
  3144. }
  3145. },
  3146. foot: {
  3147. height: math.unit(1.5, "feet"),
  3148. name: "Foot",
  3149. image: {
  3150. source: "./media/characters/kurrikage/foot.svg"
  3151. }
  3152. },
  3153. staff: {
  3154. height: math.unit(6.7, "feet"),
  3155. name: "Staff",
  3156. image: {
  3157. source: "./media/characters/kurrikage/staff.svg"
  3158. }
  3159. },
  3160. peek: {
  3161. height: math.unit(1.05, "feet"),
  3162. name: "Peeking",
  3163. image: {
  3164. source: "./media/characters/kurrikage/peek.svg",
  3165. bottom: 0.08
  3166. }
  3167. },
  3168. },
  3169. [
  3170. {
  3171. name: "Normal",
  3172. height: math.unit(12, "feet"),
  3173. default: true
  3174. },
  3175. {
  3176. name: "Big",
  3177. height: math.unit(20, "feet")
  3178. },
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(500, "feet")
  3182. },
  3183. {
  3184. name: "Megamacro",
  3185. height: math.unit(20, "miles")
  3186. },
  3187. ]
  3188. ))
  3189. characterMakers.push(() => makeCharacter(
  3190. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3191. {
  3192. front: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(75, "kg"),
  3195. name: "Front",
  3196. image: {
  3197. source: "./media/characters/shingo/front.svg",
  3198. extra: 1900/1825,
  3199. bottom: 82/1982
  3200. }
  3201. },
  3202. side: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(75, "kg"),
  3205. name: "Side",
  3206. image: {
  3207. source: "./media/characters/shingo/side.svg",
  3208. extra: 1930/1865,
  3209. bottom: 16/1946
  3210. }
  3211. },
  3212. back: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Back",
  3216. image: {
  3217. source: "./media/characters/shingo/back.svg",
  3218. extra: 1922/1852,
  3219. bottom: 16/1938
  3220. }
  3221. },
  3222. frontDressed: {
  3223. height: math.unit(6, "feet"),
  3224. weight: math.unit(150, "lb"),
  3225. name: "Front-dressed",
  3226. image: {
  3227. source: "./media/characters/shingo/front-dressed.svg",
  3228. extra: 1900/1825,
  3229. bottom: 82/1982
  3230. }
  3231. },
  3232. paw: {
  3233. height: math.unit(1.29, "feet"),
  3234. name: "Paw",
  3235. image: {
  3236. source: "./media/characters/shingo/paw.svg"
  3237. }
  3238. },
  3239. hand: {
  3240. height: math.unit(1.07, "feet"),
  3241. name: "Hand",
  3242. image: {
  3243. source: "./media/characters/shingo/hand.svg"
  3244. }
  3245. },
  3246. frontAlt: {
  3247. height: math.unit(6, "feet"),
  3248. weight: math.unit(75, "kg"),
  3249. name: "Front (Alt)",
  3250. image: {
  3251. source: "./media/characters/shingo/front-alt.svg",
  3252. extra: 3511 / 3338,
  3253. bottom: 0.005
  3254. }
  3255. },
  3256. frontAlt2: {
  3257. height: math.unit(6, "feet"),
  3258. weight: math.unit(75, "kg"),
  3259. name: "Front (Alt 2)",
  3260. image: {
  3261. source: "./media/characters/shingo/front-alt-2.svg",
  3262. extra: 706/681,
  3263. bottom: 11/717
  3264. }
  3265. },
  3266. pawAlt: {
  3267. height: math.unit(1, "feet"),
  3268. name: "Paw (Alt)",
  3269. image: {
  3270. source: "./media/characters/shingo/paw-alt.svg"
  3271. }
  3272. },
  3273. },
  3274. [
  3275. {
  3276. name: "Micro",
  3277. height: math.unit(4, "inches")
  3278. },
  3279. {
  3280. name: "Normal",
  3281. height: math.unit(6, "feet"),
  3282. default: true
  3283. },
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(108, "feet")
  3287. },
  3288. {
  3289. name: "Macro+",
  3290. height: math.unit(1500, "feet")
  3291. },
  3292. ]
  3293. ))
  3294. characterMakers.push(() => makeCharacter(
  3295. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3296. {
  3297. side: {
  3298. height: math.unit(6, "feet"),
  3299. weight: math.unit(75, "kg"),
  3300. name: "Side",
  3301. image: {
  3302. source: "./media/characters/aigey/side.svg"
  3303. }
  3304. },
  3305. },
  3306. [
  3307. {
  3308. name: "Macro",
  3309. height: math.unit(200, "feet"),
  3310. default: true
  3311. },
  3312. {
  3313. name: "Megamacro",
  3314. height: math.unit(100, "miles")
  3315. },
  3316. ]
  3317. )
  3318. )
  3319. characterMakers.push(() => makeCharacter(
  3320. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3321. {
  3322. front: {
  3323. height: math.unit(5 + 5 / 12, "feet"),
  3324. weight: math.unit(75, "kg"),
  3325. name: "Front",
  3326. image: {
  3327. source: "./media/characters/natasha/front.svg",
  3328. extra: 859 / 824,
  3329. bottom: 23 / 879.6
  3330. }
  3331. },
  3332. frontNsfw: {
  3333. height: math.unit(5 + 5 / 12, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Front (NSFW)",
  3336. image: {
  3337. source: "./media/characters/natasha/front-nsfw.svg",
  3338. extra: 859 / 824,
  3339. bottom: 23 / 879.6
  3340. }
  3341. },
  3342. frontErect: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Front (Erect)",
  3346. image: {
  3347. source: "./media/characters/natasha/front-erect.svg",
  3348. extra: 859 / 824,
  3349. bottom: 23 / 879.6
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(5 + 5 / 12, "feet"),
  3354. weight: math.unit(75, "kg"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/natasha/back.svg",
  3358. extra: 887.9 / 852.6,
  3359. bottom: 9.7 / 896.4
  3360. }
  3361. },
  3362. backAlt: {
  3363. height: math.unit(5 + 5 / 12, "feet"),
  3364. weight: math.unit(75, "kg"),
  3365. name: "Back (Alt)",
  3366. image: {
  3367. source: "./media/characters/natasha/back-alt.svg",
  3368. extra: 1236.7 / 1192,
  3369. bottom: 22.3 / 1258.2
  3370. }
  3371. },
  3372. dick: {
  3373. height: math.unit(1.772, "feet"),
  3374. name: "Dick",
  3375. image: {
  3376. source: "./media/characters/natasha/dick.svg"
  3377. }
  3378. },
  3379. paw: {
  3380. height: math.unit(0.250, "meters"),
  3381. name: "Paw",
  3382. image: {
  3383. source: "./media/characters/natasha/paw.svg"
  3384. },
  3385. extraAttributes: {
  3386. "toeSize": {
  3387. name: "Toe Size",
  3388. power: 2,
  3389. type: "area",
  3390. base: math.unit(0.0024, "m^2")
  3391. },
  3392. "padSize": {
  3393. name: "Pad Size",
  3394. power: 2,
  3395. type: "area",
  3396. base: math.unit(0.00889, "m^2")
  3397. },
  3398. "pawSize": {
  3399. name: "Paw Size",
  3400. power: 2,
  3401. type: "area",
  3402. base: math.unit(0.023667, "m^2")
  3403. },
  3404. }
  3405. },
  3406. },
  3407. [
  3408. {
  3409. name: "Shortstack",
  3410. height: math.unit(3, "feet"),
  3411. default: true
  3412. },
  3413. {
  3414. name: "Normal",
  3415. height: math.unit(5 + 5 / 12, "feet")
  3416. },
  3417. {
  3418. name: "Large",
  3419. height: math.unit(12, "feet")
  3420. },
  3421. {
  3422. name: "Macro",
  3423. height: math.unit(100, "feet")
  3424. },
  3425. {
  3426. name: "Macro+",
  3427. height: math.unit(260, "feet")
  3428. },
  3429. {
  3430. name: "Macro++",
  3431. height: math.unit(1, "mile")
  3432. },
  3433. ]
  3434. ))
  3435. characterMakers.push(() => makeCharacter(
  3436. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3437. {
  3438. front: {
  3439. height: math.unit(6, "feet"),
  3440. weight: math.unit(75, "kg"),
  3441. name: "Front",
  3442. image: {
  3443. source: "./media/characters/malik/front.svg",
  3444. extra: 1750/1561,
  3445. bottom: 80/1830
  3446. },
  3447. extraAttributes: {
  3448. "toeSize": {
  3449. name: "Toe Size",
  3450. power: 2,
  3451. type: "area",
  3452. base: math.unit(0.0159, "m^2")
  3453. },
  3454. "pawSize": {
  3455. name: "Paw Size",
  3456. power: 2,
  3457. type: "area",
  3458. base: math.unit(0.09834, "m^2")
  3459. },
  3460. }
  3461. },
  3462. side: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Side",
  3466. image: {
  3467. source: "./media/characters/malik/side.svg",
  3468. extra: 1802/1685,
  3469. bottom: 42/1844
  3470. },
  3471. extraAttributes: {
  3472. "toeSize": {
  3473. name: "Toe Size",
  3474. power: 2,
  3475. type: "area",
  3476. base: math.unit(0.0159, "m^2")
  3477. },
  3478. "pawSize": {
  3479. name: "Paw Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.09834, "m^2")
  3483. },
  3484. }
  3485. },
  3486. back: {
  3487. height: math.unit(6, "feet"),
  3488. weight: math.unit(75, "kg"),
  3489. name: "Back",
  3490. image: {
  3491. source: "./media/characters/malik/back.svg",
  3492. extra: 1803/1607,
  3493. bottom: 33/1836
  3494. },
  3495. extraAttributes: {
  3496. "toeSize": {
  3497. name: "Toe Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.0159, "m^2")
  3501. },
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.09834, "m^2")
  3507. },
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(156, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Macro+",
  3519. height: math.unit(1188, "feet")
  3520. },
  3521. ]
  3522. ))
  3523. characterMakers.push(() => makeCharacter(
  3524. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3525. {
  3526. front: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front",
  3530. image: {
  3531. source: "./media/characters/sefer/front.svg",
  3532. extra: 848 / 659,
  3533. bottom: 28.3 / 876.442
  3534. }
  3535. },
  3536. back: {
  3537. height: math.unit(6, "feet"),
  3538. weight: math.unit(75, "kg"),
  3539. name: "Back",
  3540. image: {
  3541. source: "./media/characters/sefer/back.svg",
  3542. extra: 864 / 695,
  3543. bottom: 10 / 871
  3544. }
  3545. },
  3546. frontDressed: {
  3547. height: math.unit(6, "feet"),
  3548. weight: math.unit(75, "kg"),
  3549. name: "Dressed",
  3550. image: {
  3551. source: "./media/characters/sefer/dressed.svg",
  3552. extra: 839 / 653,
  3553. bottom: 37.6 / 878
  3554. }
  3555. },
  3556. },
  3557. [
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(6, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Big",
  3565. height: math.unit(8, "meters")
  3566. },
  3567. ]
  3568. ))
  3569. characterMakers.push(() => makeCharacter(
  3570. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3571. {
  3572. body: {
  3573. height: math.unit(2.2428, "meter"),
  3574. weight: math.unit(124.738, "kg"),
  3575. name: "Body",
  3576. image: {
  3577. extra: 1225 / 1050,
  3578. source: "./media/characters/north/front.svg"
  3579. }
  3580. }
  3581. },
  3582. [
  3583. {
  3584. name: "Micro",
  3585. height: math.unit(4, "inches")
  3586. },
  3587. {
  3588. name: "Macro",
  3589. height: math.unit(63, "meters")
  3590. },
  3591. {
  3592. name: "Megamacro",
  3593. height: math.unit(101, "miles"),
  3594. default: true
  3595. }
  3596. ]
  3597. ))
  3598. characterMakers.push(() => makeCharacter(
  3599. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3600. {
  3601. angled: {
  3602. height: math.unit(4, "meter"),
  3603. weight: math.unit(150, "kg"),
  3604. name: "Angled",
  3605. image: {
  3606. source: "./media/characters/talan/angled-sfw.svg",
  3607. bottom: 29 / 3734
  3608. }
  3609. },
  3610. angledNsfw: {
  3611. height: math.unit(4, "meter"),
  3612. weight: math.unit(150, "kg"),
  3613. name: "Angled (NSFW)",
  3614. image: {
  3615. source: "./media/characters/talan/angled-nsfw.svg",
  3616. bottom: 29 / 3734
  3617. }
  3618. },
  3619. frontNsfw: {
  3620. height: math.unit(4, "meter"),
  3621. weight: math.unit(150, "kg"),
  3622. name: "Front (NSFW)",
  3623. image: {
  3624. source: "./media/characters/talan/front-nsfw.svg",
  3625. bottom: 29 / 3734
  3626. }
  3627. },
  3628. sideNsfw: {
  3629. height: math.unit(4, "meter"),
  3630. weight: math.unit(150, "kg"),
  3631. name: "Side (NSFW)",
  3632. image: {
  3633. source: "./media/characters/talan/side-nsfw.svg",
  3634. bottom: 29 / 3734
  3635. }
  3636. },
  3637. back: {
  3638. height: math.unit(4, "meter"),
  3639. weight: math.unit(150, "kg"),
  3640. name: "Back",
  3641. image: {
  3642. source: "./media/characters/talan/back.svg"
  3643. }
  3644. },
  3645. dickBottom: {
  3646. height: math.unit(0.621, "meter"),
  3647. name: "Dick (Bottom)",
  3648. image: {
  3649. source: "./media/characters/talan/dick-bottom.svg"
  3650. }
  3651. },
  3652. dickTop: {
  3653. height: math.unit(0.621, "meter"),
  3654. name: "Dick (Top)",
  3655. image: {
  3656. source: "./media/characters/talan/dick-top.svg"
  3657. }
  3658. },
  3659. dickSide: {
  3660. height: math.unit(0.305, "meter"),
  3661. name: "Dick (Side)",
  3662. image: {
  3663. source: "./media/characters/talan/dick-side.svg"
  3664. }
  3665. },
  3666. dickFront: {
  3667. height: math.unit(0.305, "meter"),
  3668. name: "Dick (Front)",
  3669. image: {
  3670. source: "./media/characters/talan/dick-front.svg"
  3671. }
  3672. },
  3673. },
  3674. [
  3675. {
  3676. name: "Normal",
  3677. height: math.unit(4, "meters")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(100, "meters")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(2, "miles"),
  3686. default: true
  3687. },
  3688. {
  3689. name: "Gigamacro",
  3690. height: math.unit(5000, "miles")
  3691. },
  3692. {
  3693. name: "Teramacro",
  3694. height: math.unit(100, "parsecs")
  3695. }
  3696. ]
  3697. ))
  3698. characterMakers.push(() => makeCharacter(
  3699. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3700. {
  3701. front: {
  3702. height: math.unit(2, "meter"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Front",
  3705. image: {
  3706. source: "./media/characters/gael'rathus/front.svg"
  3707. }
  3708. },
  3709. frontAlt: {
  3710. height: math.unit(2, "meter"),
  3711. weight: math.unit(90, "kg"),
  3712. name: "Front (alt)",
  3713. image: {
  3714. source: "./media/characters/gael'rathus/front-alt.svg"
  3715. }
  3716. },
  3717. frontAlt2: {
  3718. height: math.unit(2, "meter"),
  3719. weight: math.unit(90, "kg"),
  3720. name: "Front (alt 2)",
  3721. image: {
  3722. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3723. }
  3724. }
  3725. },
  3726. [
  3727. {
  3728. name: "Normal",
  3729. height: math.unit(9, "feet"),
  3730. default: true
  3731. },
  3732. {
  3733. name: "Large",
  3734. height: math.unit(25, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(0.25, "miles")
  3739. },
  3740. {
  3741. name: "Megamacro",
  3742. height: math.unit(10, "miles")
  3743. }
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3748. {
  3749. side: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(140, "kg"),
  3752. name: "Side",
  3753. image: {
  3754. source: "./media/characters/sosha/side.svg",
  3755. extra: 1170/1006,
  3756. bottom: 94/1264
  3757. }
  3758. },
  3759. maw: {
  3760. height: math.unit(2.87, "feet"),
  3761. name: "Maw",
  3762. image: {
  3763. source: "./media/characters/sosha/maw.svg",
  3764. extra: 966/865,
  3765. bottom: 0/966
  3766. }
  3767. },
  3768. cooch: {
  3769. height: math.unit(5.6, "feet"),
  3770. name: "Cooch",
  3771. image: {
  3772. source: "./media/characters/sosha/cooch.svg"
  3773. }
  3774. },
  3775. },
  3776. [
  3777. {
  3778. name: "Normal",
  3779. height: math.unit(12, "feet"),
  3780. default: true
  3781. }
  3782. ]
  3783. ))
  3784. characterMakers.push(() => makeCharacter(
  3785. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3786. {
  3787. side: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(170, "kg"),
  3790. name: "Side",
  3791. image: {
  3792. source: "./media/characters/runnola/side.svg",
  3793. extra: 741 / 448,
  3794. bottom: 0.05
  3795. }
  3796. },
  3797. },
  3798. [
  3799. {
  3800. name: "Small",
  3801. height: math.unit(3, "feet")
  3802. },
  3803. {
  3804. name: "Normal",
  3805. height: math.unit(5 + 5 / 12, "feet"),
  3806. default: true
  3807. },
  3808. {
  3809. name: "Big",
  3810. height: math.unit(10, "feet")
  3811. },
  3812. ]
  3813. ))
  3814. characterMakers.push(() => makeCharacter(
  3815. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3816. {
  3817. front: {
  3818. height: math.unit(2, "meter"),
  3819. weight: math.unit(50, "kg"),
  3820. name: "Front",
  3821. image: {
  3822. source: "./media/characters/kurribird/front.svg",
  3823. bottom: 0.015
  3824. }
  3825. },
  3826. frontAlt: {
  3827. height: math.unit(1.5, "meter"),
  3828. weight: math.unit(50, "kg"),
  3829. name: "Front (Alt)",
  3830. image: {
  3831. source: "./media/characters/kurribird/front-alt.svg",
  3832. extra: 1.45
  3833. }
  3834. },
  3835. },
  3836. [
  3837. {
  3838. name: "Normal",
  3839. height: math.unit(7, "feet")
  3840. },
  3841. {
  3842. name: "Big",
  3843. height: math.unit(12, "feet"),
  3844. default: true
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(1500, "feet")
  3849. },
  3850. {
  3851. name: "Megamacro",
  3852. height: math.unit(2, "miles")
  3853. }
  3854. ]
  3855. ))
  3856. characterMakers.push(() => makeCharacter(
  3857. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3858. {
  3859. front: {
  3860. height: math.unit(2, "meter"),
  3861. weight: math.unit(80, "kg"),
  3862. name: "Front",
  3863. image: {
  3864. source: "./media/characters/elbial/front.svg",
  3865. extra: 1643 / 1556,
  3866. bottom: 60.2 / 1696
  3867. }
  3868. },
  3869. side: {
  3870. height: math.unit(2, "meter"),
  3871. weight: math.unit(80, "kg"),
  3872. name: "Side",
  3873. image: {
  3874. source: "./media/characters/elbial/side.svg",
  3875. extra: 1601/1528,
  3876. bottom: 97/1698
  3877. }
  3878. },
  3879. back: {
  3880. height: math.unit(2, "meter"),
  3881. weight: math.unit(80, "kg"),
  3882. name: "Back",
  3883. image: {
  3884. source: "./media/characters/elbial/back.svg",
  3885. extra: 1653/1569,
  3886. bottom: 20/1673
  3887. }
  3888. },
  3889. frontDressed: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(80, "kg"),
  3892. name: "Front (Dressed)",
  3893. image: {
  3894. source: "./media/characters/elbial/front-dressed.svg",
  3895. extra: 1638/1569,
  3896. bottom: 70/1708
  3897. }
  3898. },
  3899. genitals: {
  3900. height: math.unit(2 / 3.367, "meter"),
  3901. name: "Genitals",
  3902. image: {
  3903. source: "./media/characters/elbial/genitals.svg"
  3904. }
  3905. },
  3906. },
  3907. [
  3908. {
  3909. name: "Large",
  3910. height: math.unit(100, "feet")
  3911. },
  3912. {
  3913. name: "Macro",
  3914. height: math.unit(500, "feet"),
  3915. default: true
  3916. },
  3917. {
  3918. name: "Megamacro",
  3919. height: math.unit(10, "miles")
  3920. },
  3921. {
  3922. name: "Gigamacro",
  3923. height: math.unit(25000, "miles")
  3924. },
  3925. {
  3926. name: "Full-Size",
  3927. height: math.unit(8000000, "gigaparsecs")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3933. {
  3934. front: {
  3935. height: math.unit(2, "meter"),
  3936. weight: math.unit(60, "kg"),
  3937. name: "Front",
  3938. image: {
  3939. source: "./media/characters/noah/front.svg"
  3940. }
  3941. },
  3942. talons: {
  3943. height: math.unit(0.315, "meter"),
  3944. name: "Talons",
  3945. image: {
  3946. source: "./media/characters/noah/talons.svg"
  3947. }
  3948. }
  3949. },
  3950. [
  3951. {
  3952. name: "Large",
  3953. height: math.unit(50, "feet")
  3954. },
  3955. {
  3956. name: "Macro",
  3957. height: math.unit(750, "feet"),
  3958. default: true
  3959. },
  3960. {
  3961. name: "Megamacro",
  3962. height: math.unit(50, "miles")
  3963. },
  3964. {
  3965. name: "Gigamacro",
  3966. height: math.unit(100000, "miles")
  3967. },
  3968. {
  3969. name: "Full-Size",
  3970. height: math.unit(3000000000, "miles")
  3971. }
  3972. ]
  3973. ))
  3974. characterMakers.push(() => makeCharacter(
  3975. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3976. {
  3977. front: {
  3978. height: math.unit(2, "meter"),
  3979. weight: math.unit(80, "kg"),
  3980. name: "Front",
  3981. image: {
  3982. source: "./media/characters/natalya/front.svg"
  3983. }
  3984. },
  3985. back: {
  3986. height: math.unit(2, "meter"),
  3987. weight: math.unit(80, "kg"),
  3988. name: "Back",
  3989. image: {
  3990. source: "./media/characters/natalya/back.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(150, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Megamacro",
  4002. height: math.unit(5, "miles")
  4003. },
  4004. {
  4005. name: "Full-Size",
  4006. height: math.unit(600, "kiloparsecs")
  4007. }
  4008. ]
  4009. ))
  4010. characterMakers.push(() => makeCharacter(
  4011. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4012. {
  4013. front: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(50, "kg"),
  4016. name: "Front",
  4017. image: {
  4018. source: "./media/characters/erestrebah/front.svg",
  4019. extra: 1262/1162,
  4020. bottom: 96/1358
  4021. }
  4022. },
  4023. back: {
  4024. height: math.unit(2, "meter"),
  4025. weight: math.unit(50, "kg"),
  4026. name: "Back",
  4027. image: {
  4028. source: "./media/characters/erestrebah/back.svg",
  4029. extra: 1257/1139,
  4030. bottom: 13/1270
  4031. }
  4032. },
  4033. wing: {
  4034. height: math.unit(2, "meter"),
  4035. weight: math.unit(50, "kg"),
  4036. name: "Wing",
  4037. image: {
  4038. source: "./media/characters/erestrebah/wing.svg",
  4039. extra: 1262/1162,
  4040. bottom: 96/1358
  4041. }
  4042. },
  4043. mouth: {
  4044. height: math.unit(0.39, "feet"),
  4045. name: "Mouth",
  4046. image: {
  4047. source: "./media/characters/erestrebah/mouth.svg"
  4048. }
  4049. }
  4050. },
  4051. [
  4052. {
  4053. name: "Normal",
  4054. height: math.unit(10, "feet")
  4055. },
  4056. {
  4057. name: "Large",
  4058. height: math.unit(50, "feet"),
  4059. default: true
  4060. },
  4061. {
  4062. name: "Macro",
  4063. height: math.unit(300, "feet")
  4064. },
  4065. {
  4066. name: "Macro+",
  4067. height: math.unit(750, "feet")
  4068. },
  4069. {
  4070. name: "Megamacro",
  4071. height: math.unit(3, "miles")
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4077. {
  4078. front: {
  4079. height: math.unit(2, "meter"),
  4080. weight: math.unit(80, "kg"),
  4081. name: "Front",
  4082. image: {
  4083. source: "./media/characters/jennifer/front.svg",
  4084. bottom: 0.11,
  4085. extra: 1.16
  4086. }
  4087. },
  4088. frontAlt: {
  4089. height: math.unit(2, "meter"),
  4090. weight: math.unit(80, "kg"),
  4091. name: "Front (Alt)",
  4092. image: {
  4093. source: "./media/characters/jennifer/front-alt.svg"
  4094. }
  4095. }
  4096. },
  4097. [
  4098. {
  4099. name: "Canon Height",
  4100. height: math.unit(120, "feet"),
  4101. default: true
  4102. },
  4103. {
  4104. name: "Macro+",
  4105. height: math.unit(300, "feet")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(20000, "feet")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4115. {
  4116. front: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(50, "kg"),
  4119. name: "Front",
  4120. image: {
  4121. source: "./media/characters/kalista/front.svg",
  4122. extra: 1314/1145,
  4123. bottom: 101/1415
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(2, "meter"),
  4128. weight: math.unit(50, "kg"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/kalista/back.svg",
  4132. extra: 1366 / 1156,
  4133. bottom: 33.9 / 1362.78
  4134. }
  4135. }
  4136. },
  4137. [
  4138. {
  4139. name: "Uncomfortably Small",
  4140. height: math.unit(10, "feet")
  4141. },
  4142. {
  4143. name: "Small",
  4144. height: math.unit(30, "feet")
  4145. },
  4146. {
  4147. name: "Macro",
  4148. height: math.unit(100, "feet"),
  4149. default: true
  4150. },
  4151. {
  4152. name: "Macro+",
  4153. height: math.unit(2000, "feet")
  4154. },
  4155. {
  4156. name: "True Form",
  4157. height: math.unit(8924, "miles")
  4158. }
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(120, "kg"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/ggv/front.svg"
  4170. }
  4171. },
  4172. side: {
  4173. height: math.unit(2, "meter"),
  4174. weight: math.unit(120, "kg"),
  4175. name: "Side",
  4176. image: {
  4177. source: "./media/characters/ggv/side.svg"
  4178. }
  4179. }
  4180. },
  4181. [
  4182. {
  4183. name: "Extremely Puny",
  4184. height: math.unit(9 + 5 / 12, "feet")
  4185. },
  4186. {
  4187. name: "Horribly Small",
  4188. height: math.unit(47.7, "miles"),
  4189. default: true
  4190. },
  4191. {
  4192. name: "Reasonably Sized",
  4193. height: math.unit(25000, "parsecs")
  4194. },
  4195. {
  4196. name: "Slightly Uncompressed",
  4197. height: math.unit(7.77e31, "parsecs")
  4198. },
  4199. {
  4200. name: "Omniversal",
  4201. height: math.unit(1e300, "meters")
  4202. },
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(75, "lb"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/napalm/front.svg"
  4214. }
  4215. },
  4216. back: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(75, "lb"),
  4219. name: "Back",
  4220. image: {
  4221. source: "./media/characters/napalm/back.svg"
  4222. }
  4223. }
  4224. },
  4225. [
  4226. {
  4227. name: "Standard",
  4228. height: math.unit(55, "feet"),
  4229. default: true
  4230. }
  4231. ]
  4232. ))
  4233. characterMakers.push(() => makeCharacter(
  4234. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4235. {
  4236. front: {
  4237. height: math.unit(7 + 5 / 6, "feet"),
  4238. weight: math.unit(325, "lb"),
  4239. name: "Front",
  4240. image: {
  4241. source: "./media/characters/asana/front.svg",
  4242. extra: 1133 / 1060,
  4243. bottom: 15.2 / 1148.6
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(7 + 5 / 6, "feet"),
  4248. weight: math.unit(325, "lb"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/asana/back.svg",
  4252. extra: 1114 / 1043,
  4253. bottom: 5 / 1120
  4254. }
  4255. },
  4256. dressedDark: {
  4257. height: math.unit(7 + 5 / 6, "feet"),
  4258. weight: math.unit(325, "lb"),
  4259. name: "Dressed (Dark)",
  4260. image: {
  4261. source: "./media/characters/asana/dressed-dark.svg",
  4262. extra: 1133 / 1060,
  4263. bottom: 15.2 / 1148.6
  4264. }
  4265. },
  4266. dressedLight: {
  4267. height: math.unit(7 + 5 / 6, "feet"),
  4268. weight: math.unit(325, "lb"),
  4269. name: "Dressed (Light)",
  4270. image: {
  4271. source: "./media/characters/asana/dressed-light.svg",
  4272. extra: 1133 / 1060,
  4273. bottom: 15.2 / 1148.6
  4274. }
  4275. },
  4276. },
  4277. [
  4278. {
  4279. name: "Standard",
  4280. height: math.unit(7 + 5 / 6, "feet"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Large",
  4285. height: math.unit(10, "meters")
  4286. },
  4287. {
  4288. name: "Macro",
  4289. height: math.unit(2500, "meters")
  4290. },
  4291. {
  4292. name: "Megamacro",
  4293. height: math.unit(5e6, "meters")
  4294. },
  4295. {
  4296. name: "Examacro",
  4297. height: math.unit(5e12, "lightyears")
  4298. },
  4299. {
  4300. name: "Max Size",
  4301. height: math.unit(1e31, "lightyears")
  4302. }
  4303. ]
  4304. ))
  4305. characterMakers.push(() => makeCharacter(
  4306. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4307. {
  4308. front: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(60, "kg"),
  4311. name: "Front",
  4312. image: {
  4313. source: "./media/characters/ebony/front.svg",
  4314. bottom: 0.03,
  4315. extra: 1045 / 810 + 0.03
  4316. }
  4317. },
  4318. side: {
  4319. height: math.unit(2, "meter"),
  4320. weight: math.unit(60, "kg"),
  4321. name: "Side",
  4322. image: {
  4323. source: "./media/characters/ebony/side.svg",
  4324. bottom: 0.03,
  4325. extra: 1045 / 810 + 0.03
  4326. }
  4327. },
  4328. back: {
  4329. height: math.unit(2, "meter"),
  4330. weight: math.unit(60, "kg"),
  4331. name: "Back",
  4332. image: {
  4333. source: "./media/characters/ebony/back.svg",
  4334. bottom: 0.01,
  4335. extra: 1045 / 810 + 0.01
  4336. }
  4337. },
  4338. },
  4339. [
  4340. // TODO check why I did this lol
  4341. {
  4342. name: "Standard",
  4343. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Macro",
  4348. height: math.unit(200, "feet")
  4349. },
  4350. {
  4351. name: "Gigamacro",
  4352. height: math.unit(13000, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(175, "lb"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/mountain/front.svg",
  4365. extra: 972 / 955,
  4366. bottom: 64 / 1036.6
  4367. }
  4368. },
  4369. back: {
  4370. height: math.unit(6, "feet"),
  4371. weight: math.unit(175, "lb"),
  4372. name: "Back",
  4373. image: {
  4374. source: "./media/characters/mountain/back.svg",
  4375. extra: 970 / 950,
  4376. bottom: 28.25 / 999
  4377. }
  4378. },
  4379. },
  4380. [
  4381. {
  4382. name: "Large",
  4383. height: math.unit(20, "meters")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(300, "meters")
  4388. },
  4389. {
  4390. name: "Gigamacro",
  4391. height: math.unit(10000, "km"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Examacro",
  4396. height: math.unit(10e9, "lightyears")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(8, "feet"),
  4405. weight: math.unit(500, "lb"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/rick/front.svg"
  4409. }
  4410. }
  4411. },
  4412. [
  4413. {
  4414. name: "Normal",
  4415. height: math.unit(8, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Macro",
  4420. height: math.unit(5, "km")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(8, "feet"),
  4429. weight: math.unit(120, "lb"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/ona/front.svg"
  4433. }
  4434. },
  4435. frontAlt: {
  4436. height: math.unit(8, "feet"),
  4437. weight: math.unit(120, "lb"),
  4438. name: "Front (Alt)",
  4439. image: {
  4440. source: "./media/characters/ona/front-alt.svg"
  4441. }
  4442. },
  4443. back: {
  4444. height: math.unit(8, "feet"),
  4445. weight: math.unit(120, "lb"),
  4446. name: "Back",
  4447. image: {
  4448. source: "./media/characters/ona/back.svg"
  4449. }
  4450. },
  4451. foot: {
  4452. height: math.unit(1.1, "feet"),
  4453. name: "Foot",
  4454. image: {
  4455. source: "./media/characters/ona/foot.svg"
  4456. }
  4457. }
  4458. },
  4459. [
  4460. {
  4461. name: "Megamacro",
  4462. height: math.unit(70, "km"),
  4463. default: true
  4464. },
  4465. {
  4466. name: "Gigamacro",
  4467. height: math.unit(681818, "miles")
  4468. },
  4469. {
  4470. name: "Examacro",
  4471. height: math.unit(3800000, "lightyears")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(12, "feet"),
  4480. weight: math.unit(3000, "lb"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/mech/front.svg",
  4484. extra: 2900 / 2770,
  4485. bottom: 110 / 3010
  4486. }
  4487. },
  4488. back: {
  4489. height: math.unit(12, "feet"),
  4490. weight: math.unit(3000, "lb"),
  4491. name: "Back",
  4492. image: {
  4493. source: "./media/characters/mech/back.svg",
  4494. extra: 3011 / 2890,
  4495. bottom: 94 / 3105
  4496. }
  4497. },
  4498. maw: {
  4499. height: math.unit(3.07, "feet"),
  4500. name: "Maw",
  4501. image: {
  4502. source: "./media/characters/mech/maw.svg"
  4503. }
  4504. },
  4505. head: {
  4506. height: math.unit(3.07, "feet"),
  4507. name: "Head",
  4508. image: {
  4509. source: "./media/characters/mech/head.svg"
  4510. }
  4511. },
  4512. dick: {
  4513. height: math.unit(1.43, "feet"),
  4514. name: "Dick",
  4515. image: {
  4516. source: "./media/characters/mech/dick.svg"
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(12, "feet")
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(300, "feet"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro+",
  4532. height: math.unit(1500, "feet")
  4533. },
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(1.3, "meter"),
  4541. weight: math.unit(30, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/gregory/front.svg",
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(1.3, "meter"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(20, "meter")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(2.8, "meter"),
  4565. weight: math.unit(200, "kg"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/elory/front.svg",
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(2.8, "meter"),
  4576. default: true
  4577. },
  4578. {
  4579. name: "Macro",
  4580. height: math.unit(38, "meter")
  4581. }
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4586. {
  4587. front: {
  4588. height: math.unit(470, "feet"),
  4589. weight: math.unit(924, "tons"),
  4590. name: "Front",
  4591. image: {
  4592. source: "./media/characters/angelpatamon/front.svg",
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(470, "feet"),
  4600. default: true
  4601. },
  4602. {
  4603. name: "Deity Size I",
  4604. height: math.unit(28651.2, "km")
  4605. },
  4606. {
  4607. name: "Deity Size II",
  4608. height: math.unit(171907.2, "km")
  4609. }
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4614. {
  4615. side: {
  4616. height: math.unit(7.2, "meter"),
  4617. weight: math.unit(8.2, "tons"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/cryae/side.svg",
  4621. extra: 3500 / 1500
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Normal",
  4628. height: math.unit(7.2, "meter"),
  4629. default: true
  4630. }
  4631. ]
  4632. ))
  4633. characterMakers.push(() => makeCharacter(
  4634. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4635. {
  4636. front: {
  4637. height: math.unit(6, "feet"),
  4638. weight: math.unit(175, "lb"),
  4639. name: "Front",
  4640. image: {
  4641. source: "./media/characters/xera/front.svg",
  4642. extra: 2377 / 1972,
  4643. bottom: 75.5 / 2452
  4644. }
  4645. },
  4646. side: {
  4647. height: math.unit(6, "feet"),
  4648. weight: math.unit(175, "lb"),
  4649. name: "Side",
  4650. image: {
  4651. source: "./media/characters/xera/side.svg",
  4652. extra: 2345 / 2019,
  4653. bottom: 39.7 / 2384
  4654. }
  4655. },
  4656. back: {
  4657. height: math.unit(6, "feet"),
  4658. weight: math.unit(175, "lb"),
  4659. name: "Back",
  4660. image: {
  4661. source: "./media/characters/xera/back.svg",
  4662. extra: 2095 / 1984,
  4663. bottom: 67 / 2166
  4664. }
  4665. },
  4666. },
  4667. [
  4668. {
  4669. name: "Small",
  4670. height: math.unit(10, "feet")
  4671. },
  4672. {
  4673. name: "Macro",
  4674. height: math.unit(500, "meters"),
  4675. default: true
  4676. },
  4677. {
  4678. name: "Macro+",
  4679. height: math.unit(10, "km")
  4680. },
  4681. {
  4682. name: "Gigamacro",
  4683. height: math.unit(25000, "km")
  4684. },
  4685. {
  4686. name: "Teramacro",
  4687. height: math.unit(3e6, "km")
  4688. }
  4689. ]
  4690. ))
  4691. characterMakers.push(() => makeCharacter(
  4692. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4693. {
  4694. front: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(175, "lb"),
  4697. name: "Front",
  4698. image: {
  4699. source: "./media/characters/nebula/front.svg",
  4700. extra: 2566 / 2362,
  4701. bottom: 81 / 2644
  4702. }
  4703. }
  4704. },
  4705. [
  4706. {
  4707. name: "Small",
  4708. height: math.unit(4.5, "meters")
  4709. },
  4710. {
  4711. name: "Macro",
  4712. height: math.unit(1500, "meters"),
  4713. default: true
  4714. },
  4715. {
  4716. name: "Megamacro",
  4717. height: math.unit(150, "km")
  4718. },
  4719. {
  4720. name: "Gigamacro",
  4721. height: math.unit(27000, "km")
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(225, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/abysgar/front.svg",
  4734. extra: 1739/1614,
  4735. bottom: 71/1810
  4736. }
  4737. },
  4738. frontNsfw: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(225, "lb"),
  4741. name: "Front (NSFW)",
  4742. image: {
  4743. source: "./media/characters/abysgar/front-nsfw.svg",
  4744. extra: 1739/1614,
  4745. bottom: 71/1810
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(4.6, "feet"),
  4750. weight: math.unit(225, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/abysgar/back.svg",
  4754. extra: 1384/1327,
  4755. bottom: 0/1384
  4756. }
  4757. },
  4758. head: {
  4759. height: math.unit(1.25, "feet"),
  4760. name: "Head",
  4761. image: {
  4762. source: "./media/characters/abysgar/head.svg",
  4763. extra: 669/569,
  4764. bottom: 0/669
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Small",
  4771. height: math.unit(4.5, "meters")
  4772. },
  4773. {
  4774. name: "Macro",
  4775. height: math.unit(1250, "meters"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Megamacro",
  4780. height: math.unit(125, "km")
  4781. },
  4782. {
  4783. name: "Gigamacro",
  4784. height: math.unit(26000, "km")
  4785. }
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(180, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/yakuz/front.svg"
  4797. }
  4798. }
  4799. },
  4800. [
  4801. {
  4802. name: "Small",
  4803. height: math.unit(5, "meters")
  4804. },
  4805. {
  4806. name: "Macro",
  4807. height: math.unit(1500, "meters"),
  4808. default: true
  4809. },
  4810. {
  4811. name: "Megamacro",
  4812. height: math.unit(200, "km")
  4813. },
  4814. {
  4815. name: "Gigamacro",
  4816. height: math.unit(100000, "km")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(175, "lb"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/mirova/front.svg",
  4829. extra: 3334 / 3071,
  4830. bottom: 42 / 3375.6
  4831. }
  4832. }
  4833. },
  4834. [
  4835. {
  4836. name: "Small",
  4837. height: math.unit(5, "meters")
  4838. },
  4839. {
  4840. name: "Macro",
  4841. height: math.unit(900, "meters"),
  4842. default: true
  4843. },
  4844. {
  4845. name: "Megamacro",
  4846. height: math.unit(135, "km")
  4847. },
  4848. {
  4849. name: "Gigamacro",
  4850. height: math.unit(20000, "km")
  4851. }
  4852. ]
  4853. ))
  4854. characterMakers.push(() => makeCharacter(
  4855. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4856. {
  4857. side: {
  4858. height: math.unit(28.35, "feet"),
  4859. weight: math.unit(99.75, "tons"),
  4860. name: "Side",
  4861. image: {
  4862. source: "./media/characters/asana-mech/side.svg",
  4863. extra: 923 / 699,
  4864. bottom: 50 / 975
  4865. }
  4866. },
  4867. chaingun: {
  4868. height: math.unit(7, "feet"),
  4869. weight: math.unit(2400, "lb"),
  4870. name: "Chaingun",
  4871. image: {
  4872. source: "./media/characters/asana-mech/chaingun.svg"
  4873. }
  4874. },
  4875. laser: {
  4876. height: math.unit(7.12, "feet"),
  4877. weight: math.unit(2000, "lb"),
  4878. name: "Laser",
  4879. image: {
  4880. source: "./media/characters/asana-mech/laser.svg"
  4881. }
  4882. },
  4883. },
  4884. [
  4885. {
  4886. name: "Normal",
  4887. height: math.unit(28.35, "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(2500, "feet")
  4893. },
  4894. {
  4895. name: "Megamacro",
  4896. height: math.unit(25, "miles")
  4897. },
  4898. {
  4899. name: "Examacro",
  4900. height: math.unit(6e8, "lightyears")
  4901. },
  4902. ]
  4903. ))
  4904. characterMakers.push(() => makeCharacter(
  4905. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4906. {
  4907. front: {
  4908. height: math.unit(5, "meters"),
  4909. weight: math.unit(1000, "kg"),
  4910. name: "Front",
  4911. image: {
  4912. source: "./media/characters/asche/front.svg",
  4913. extra: 1258 / 1190,
  4914. bottom: 47 / 1305
  4915. }
  4916. },
  4917. frontUnderwear: {
  4918. height: math.unit(5, "meters"),
  4919. weight: math.unit(1000, "kg"),
  4920. name: "Front (Underwear)",
  4921. image: {
  4922. source: "./media/characters/asche/front-underwear.svg",
  4923. extra: 1258 / 1190,
  4924. bottom: 47 / 1305
  4925. }
  4926. },
  4927. frontDressed: {
  4928. height: math.unit(5, "meters"),
  4929. weight: math.unit(1000, "kg"),
  4930. name: "Front (Dressed)",
  4931. image: {
  4932. source: "./media/characters/asche/front-dressed.svg",
  4933. extra: 1258 / 1190,
  4934. bottom: 47 / 1305
  4935. }
  4936. },
  4937. frontArmor: {
  4938. height: math.unit(5, "meters"),
  4939. weight: math.unit(1000, "kg"),
  4940. name: "Front (Armored)",
  4941. image: {
  4942. source: "./media/characters/asche/front-armored.svg",
  4943. extra: 1374 / 1308,
  4944. bottom: 23 / 1397
  4945. }
  4946. },
  4947. mp724: {
  4948. height: math.unit(0.96, "meters"),
  4949. weight: math.unit(38, "kg"),
  4950. name: "H&K MP724",
  4951. image: {
  4952. source: "./media/characters/asche/h&k-mp724.svg"
  4953. }
  4954. },
  4955. side: {
  4956. height: math.unit(5, "meters"),
  4957. weight: math.unit(1000, "kg"),
  4958. name: "Side",
  4959. image: {
  4960. source: "./media/characters/asche/side.svg",
  4961. extra: 1717 / 1609,
  4962. bottom: 0.005
  4963. }
  4964. },
  4965. back: {
  4966. height: math.unit(5, "meters"),
  4967. weight: math.unit(1000, "kg"),
  4968. name: "Back",
  4969. image: {
  4970. source: "./media/characters/asche/back.svg",
  4971. extra: 1570 / 1501
  4972. }
  4973. },
  4974. },
  4975. [
  4976. {
  4977. name: "DEFCON 5",
  4978. height: math.unit(5, "meters")
  4979. },
  4980. {
  4981. name: "DEFCON 4",
  4982. height: math.unit(500, "meters"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "DEFCON 3",
  4987. height: math.unit(5, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 2",
  4991. height: math.unit(500, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 1",
  4995. height: math.unit(500000, "km")
  4996. },
  4997. {
  4998. name: "DEFCON 0",
  4999. height: math.unit(3, "gigaparsecs")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(2, "meters"),
  5008. weight: math.unit(76, "kg"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/gale/front.svg"
  5012. }
  5013. },
  5014. frontAlt1: {
  5015. height: math.unit(2, "meters"),
  5016. weight: math.unit(76, "kg"),
  5017. name: "Front (Alt 1)",
  5018. image: {
  5019. source: "./media/characters/gale/front-alt-1.svg"
  5020. }
  5021. },
  5022. frontAlt2: {
  5023. height: math.unit(2, "meters"),
  5024. weight: math.unit(76, "kg"),
  5025. name: "Front (Alt 2)",
  5026. image: {
  5027. source: "./media/characters/gale/front-alt-2.svg"
  5028. }
  5029. },
  5030. },
  5031. [
  5032. {
  5033. name: "Normal",
  5034. height: math.unit(7, "feet")
  5035. },
  5036. {
  5037. name: "Macro",
  5038. height: math.unit(150, "feet"),
  5039. default: true
  5040. },
  5041. {
  5042. name: "Macro+",
  5043. height: math.unit(300, "feet")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(5 + 10/12, "feet"),
  5052. weight: math.unit(67, "kg"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/draylen/front.svg",
  5056. extra: 832/777,
  5057. bottom: 85/917
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(5 + 10/12, "feet")
  5065. },
  5066. {
  5067. name: "Macro",
  5068. height: math.unit(150, "feet"),
  5069. default: true
  5070. }
  5071. ]
  5072. ))
  5073. characterMakers.push(() => makeCharacter(
  5074. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5075. {
  5076. front: {
  5077. height: math.unit(7 + 9 / 12, "feet"),
  5078. weight: math.unit(379, "lbs"),
  5079. name: "Front",
  5080. image: {
  5081. source: "./media/characters/chez/front.svg"
  5082. }
  5083. },
  5084. side: {
  5085. height: math.unit(7 + 9 / 12, "feet"),
  5086. weight: math.unit(379, "lbs"),
  5087. name: "Side",
  5088. image: {
  5089. source: "./media/characters/chez/side.svg"
  5090. }
  5091. }
  5092. },
  5093. [
  5094. {
  5095. name: "Normal",
  5096. height: math.unit(7 + 9 / 12, "feet"),
  5097. default: true
  5098. },
  5099. {
  5100. name: "God King",
  5101. height: math.unit(9750000, "meters")
  5102. }
  5103. ]
  5104. ))
  5105. characterMakers.push(() => makeCharacter(
  5106. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5107. {
  5108. front: {
  5109. height: math.unit(6, "feet"),
  5110. weight: math.unit(275, "lbs"),
  5111. name: "Front",
  5112. image: {
  5113. source: "./media/characters/kaylum/front.svg",
  5114. bottom: 0.01,
  5115. extra: 1166 / 1031
  5116. }
  5117. },
  5118. frontWingless: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(275, "lbs"),
  5121. name: "Front (Wingless)",
  5122. image: {
  5123. source: "./media/characters/kaylum/front-wingless.svg",
  5124. bottom: 0.01,
  5125. extra: 1117 / 1031
  5126. }
  5127. }
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(3.05, "meters")
  5133. },
  5134. {
  5135. name: "Master",
  5136. height: math.unit(5.5, "meters")
  5137. },
  5138. {
  5139. name: "Rampage",
  5140. height: math.unit(19, "meters")
  5141. },
  5142. {
  5143. name: "Macro Lite",
  5144. height: math.unit(37, "meters")
  5145. },
  5146. {
  5147. name: "Hyper Predator",
  5148. height: math.unit(61, "meters")
  5149. },
  5150. {
  5151. name: "Macro",
  5152. height: math.unit(138, "meters"),
  5153. default: true
  5154. }
  5155. ]
  5156. ))
  5157. characterMakers.push(() => makeCharacter(
  5158. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5159. {
  5160. front: {
  5161. height: math.unit(5 + 5 / 12, "feet"),
  5162. weight: math.unit(120, "lbs"),
  5163. name: "Front",
  5164. image: {
  5165. source: "./media/characters/geta/front.svg",
  5166. extra: 1003/933,
  5167. bottom: 21/1024
  5168. }
  5169. },
  5170. paw: {
  5171. height: math.unit(0.35, "feet"),
  5172. name: "Paw",
  5173. image: {
  5174. source: "./media/characters/geta/paw.svg"
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Micro",
  5181. height: math.unit(3, "inches"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Normal",
  5186. height: math.unit(5 + 5 / 12, "feet")
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(300, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/tyrnn/front.svg"
  5199. }
  5200. }
  5201. },
  5202. [
  5203. {
  5204. name: "Main Height",
  5205. height: math.unit(355, "feet"),
  5206. default: true
  5207. },
  5208. {
  5209. name: "Fave. Height",
  5210. height: math.unit(2400, "feet")
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5216. {
  5217. front: {
  5218. height: math.unit(6, "feet"),
  5219. weight: math.unit(300, "lbs"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/appledectomy/front.svg"
  5223. }
  5224. }
  5225. },
  5226. [
  5227. {
  5228. name: "Macro",
  5229. height: math.unit(2500, "feet")
  5230. },
  5231. {
  5232. name: "Megamacro",
  5233. height: math.unit(50, "miles"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Gigamacro",
  5238. height: math.unit(5000, "miles")
  5239. },
  5240. {
  5241. name: "Teramacro",
  5242. height: math.unit(250000, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(6, "feet"),
  5251. weight: math.unit(200, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/vulpes/front.svg",
  5255. extra: 573 / 543,
  5256. bottom: 0.033
  5257. }
  5258. },
  5259. side: {
  5260. height: math.unit(6, "feet"),
  5261. weight: math.unit(200, "lbs"),
  5262. name: "Side",
  5263. image: {
  5264. source: "./media/characters/vulpes/side.svg",
  5265. extra: 577 / 549,
  5266. bottom: 11 / 588
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(200, "lbs"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/vulpes/back.svg",
  5275. extra: 573 / 549,
  5276. bottom: 20 / 593
  5277. }
  5278. },
  5279. feet: {
  5280. height: math.unit(1.276, "feet"),
  5281. name: "Feet",
  5282. image: {
  5283. source: "./media/characters/vulpes/feet.svg"
  5284. }
  5285. },
  5286. maw: {
  5287. height: math.unit(1.18, "feet"),
  5288. name: "Maw",
  5289. image: {
  5290. source: "./media/characters/vulpes/maw.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Micro",
  5297. height: math.unit(2, "inches")
  5298. },
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(6.3, "feet")
  5302. },
  5303. {
  5304. name: "Macro",
  5305. height: math.unit(850, "feet")
  5306. },
  5307. {
  5308. name: "Megamacro",
  5309. height: math.unit(7500, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Gigamacro",
  5314. height: math.unit(570000, "miles")
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(210, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/rain-fallen/front.svg"
  5327. }
  5328. },
  5329. side: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(210, "lbs"),
  5332. name: "Side",
  5333. image: {
  5334. source: "./media/characters/rain-fallen/side.svg"
  5335. }
  5336. },
  5337. back: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(210, "lbs"),
  5340. name: "Back",
  5341. image: {
  5342. source: "./media/characters/rain-fallen/back.svg"
  5343. }
  5344. },
  5345. feral: {
  5346. height: math.unit(9, "feet"),
  5347. weight: math.unit(700, "lbs"),
  5348. name: "Feral",
  5349. image: {
  5350. source: "./media/characters/rain-fallen/feral.svg"
  5351. }
  5352. },
  5353. },
  5354. [
  5355. {
  5356. name: "Meddling with Mortals",
  5357. height: math.unit(8 + 8/12, "feet")
  5358. },
  5359. {
  5360. name: "Normal",
  5361. height: math.unit(5, "meter")
  5362. },
  5363. {
  5364. name: "Macro",
  5365. height: math.unit(150, "meter"),
  5366. default: true
  5367. },
  5368. {
  5369. name: "Megamacro",
  5370. height: math.unit(278e6, "meter")
  5371. },
  5372. {
  5373. name: "Gigamacro",
  5374. height: math.unit(2e9, "meter")
  5375. },
  5376. {
  5377. name: "Teramacro",
  5378. height: math.unit(8e12, "meter")
  5379. },
  5380. {
  5381. name: "Devourer",
  5382. height: math.unit(14, "zettameters")
  5383. },
  5384. {
  5385. name: "Scarlet King",
  5386. height: math.unit(18, "yottameters")
  5387. },
  5388. {
  5389. name: "Void",
  5390. height: math.unit(1e88, "yottameters")
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5396. {
  5397. standing: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(180, "lbs"),
  5400. name: "Standing",
  5401. image: {
  5402. source: "./media/characters/zaakira/standing.svg",
  5403. extra: 1599/1504,
  5404. bottom: 39/1638
  5405. }
  5406. },
  5407. laying: {
  5408. height: math.unit(3.3, "feet"),
  5409. weight: math.unit(180, "lbs"),
  5410. name: "Laying",
  5411. image: {
  5412. source: "./media/characters/zaakira/laying.svg"
  5413. }
  5414. },
  5415. },
  5416. [
  5417. {
  5418. name: "Normal",
  5419. height: math.unit(12, "feet")
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(279, "feet"),
  5424. default: true
  5425. }
  5426. ]
  5427. ))
  5428. characterMakers.push(() => makeCharacter(
  5429. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5430. {
  5431. femSfw: {
  5432. height: math.unit(8, "feet"),
  5433. weight: math.unit(350, "lb"),
  5434. name: "Fem",
  5435. image: {
  5436. source: "./media/characters/sigvald/fem-sfw.svg",
  5437. extra: 182 / 164,
  5438. bottom: 8.7 / 190.5
  5439. }
  5440. },
  5441. femNsfw: {
  5442. height: math.unit(8, "feet"),
  5443. weight: math.unit(350, "lb"),
  5444. name: "Fem (NSFW)",
  5445. image: {
  5446. source: "./media/characters/sigvald/fem-nsfw.svg",
  5447. extra: 182 / 164,
  5448. bottom: 8.7 / 190.5
  5449. }
  5450. },
  5451. maleNsfw: {
  5452. height: math.unit(8, "feet"),
  5453. weight: math.unit(350, "lb"),
  5454. name: "Male (NSFW)",
  5455. image: {
  5456. source: "./media/characters/sigvald/male-nsfw.svg",
  5457. extra: 182 / 164,
  5458. bottom: 8.7 / 190.5
  5459. }
  5460. },
  5461. hermNsfw: {
  5462. height: math.unit(8, "feet"),
  5463. weight: math.unit(350, "lb"),
  5464. name: "Herm (NSFW)",
  5465. image: {
  5466. source: "./media/characters/sigvald/herm-nsfw.svg",
  5467. extra: 182 / 164,
  5468. bottom: 8.7 / 190.5
  5469. }
  5470. },
  5471. dick: {
  5472. height: math.unit(2.36, "feet"),
  5473. name: "Dick",
  5474. image: {
  5475. source: "./media/characters/sigvald/dick.svg"
  5476. }
  5477. },
  5478. eye: {
  5479. height: math.unit(0.31, "feet"),
  5480. name: "Eye",
  5481. image: {
  5482. source: "./media/characters/sigvald/eye.svg"
  5483. }
  5484. },
  5485. mouth: {
  5486. height: math.unit(0.92, "feet"),
  5487. name: "Mouth",
  5488. image: {
  5489. source: "./media/characters/sigvald/mouth.svg"
  5490. }
  5491. },
  5492. paws: {
  5493. height: math.unit(2.2, "feet"),
  5494. name: "Paws",
  5495. image: {
  5496. source: "./media/characters/sigvald/paws.svg"
  5497. }
  5498. }
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8, "feet")
  5504. },
  5505. {
  5506. name: "Large",
  5507. height: math.unit(12, "feet")
  5508. },
  5509. {
  5510. name: "Larger",
  5511. height: math.unit(20, "feet")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(150, "feet")
  5516. },
  5517. {
  5518. name: "Macro+",
  5519. height: math.unit(200, "feet"),
  5520. default: true
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5526. {
  5527. side: {
  5528. height: math.unit(12, "feet"),
  5529. weight: math.unit(2000, "kg"),
  5530. name: "Side",
  5531. image: {
  5532. source: "./media/characters/scott/side.svg",
  5533. extra: 754 / 724,
  5534. bottom: 0.069
  5535. }
  5536. },
  5537. upright: {
  5538. height: math.unit(12, "feet"),
  5539. weight: math.unit(2000, "kg"),
  5540. name: "Upright",
  5541. image: {
  5542. source: "./media/characters/scott/upright.svg",
  5543. extra: 3881 / 3722,
  5544. bottom: 0.05
  5545. }
  5546. },
  5547. },
  5548. [
  5549. {
  5550. name: "Normal",
  5551. height: math.unit(12, "feet"),
  5552. default: true
  5553. },
  5554. ]
  5555. ))
  5556. characterMakers.push(() => makeCharacter(
  5557. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5558. {
  5559. side: {
  5560. height: math.unit(8, "meters"),
  5561. weight: math.unit(84755, "lbs"),
  5562. name: "Side",
  5563. image: {
  5564. source: "./media/characters/tobias/side.svg",
  5565. extra: 1474 / 1096,
  5566. bottom: 38.9 / 1513.1235
  5567. }
  5568. },
  5569. },
  5570. [
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(8, "meters"),
  5574. default: true
  5575. },
  5576. ]
  5577. ))
  5578. characterMakers.push(() => makeCharacter(
  5579. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5580. {
  5581. front: {
  5582. height: math.unit(5.5, "feet"),
  5583. weight: math.unit(400, "lbs"),
  5584. name: "Front",
  5585. image: {
  5586. source: "./media/characters/kieran/front.svg",
  5587. extra: 2694 / 2364,
  5588. bottom: 217 / 2908
  5589. }
  5590. },
  5591. side: {
  5592. height: math.unit(5.5, "feet"),
  5593. weight: math.unit(400, "lbs"),
  5594. name: "Side",
  5595. image: {
  5596. source: "./media/characters/kieran/side.svg",
  5597. extra: 875 / 777,
  5598. bottom: 84.6 / 959
  5599. }
  5600. },
  5601. },
  5602. [
  5603. {
  5604. name: "Normal",
  5605. height: math.unit(5.5, "feet"),
  5606. default: true
  5607. },
  5608. ]
  5609. ))
  5610. characterMakers.push(() => makeCharacter(
  5611. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5612. {
  5613. side: {
  5614. height: math.unit(2, "meters"),
  5615. weight: math.unit(70, "kg"),
  5616. name: "Side",
  5617. image: {
  5618. source: "./media/characters/sanya/side.svg",
  5619. bottom: 0.02,
  5620. extra: 1.02
  5621. }
  5622. },
  5623. },
  5624. [
  5625. {
  5626. name: "Small",
  5627. height: math.unit(2, "meters")
  5628. },
  5629. {
  5630. name: "Normal",
  5631. height: math.unit(3, "meters")
  5632. },
  5633. {
  5634. name: "Macro",
  5635. height: math.unit(16, "meters"),
  5636. default: true
  5637. },
  5638. ]
  5639. ))
  5640. characterMakers.push(() => makeCharacter(
  5641. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5642. {
  5643. front: {
  5644. height: math.unit(2, "meters"),
  5645. weight: math.unit(120, "kg"),
  5646. name: "Front",
  5647. image: {
  5648. source: "./media/characters/miranda/front.svg",
  5649. extra: 195 / 185,
  5650. bottom: 10.9 / 206.5
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(2, "meters"),
  5655. weight: math.unit(120, "kg"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/miranda/back.svg",
  5659. extra: 201 / 193,
  5660. bottom: 2.3 / 203.7
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(10, "feet"),
  5668. default: true
  5669. }
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "James", species: ["deer"], tags: ["anthro"] },
  5674. {
  5675. side: {
  5676. height: math.unit(2, "meters"),
  5677. weight: math.unit(100, "kg"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/james/front.svg",
  5681. extra: 10 / 8.5
  5682. }
  5683. },
  5684. },
  5685. [
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(8.5, "feet"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5695. {
  5696. side: {
  5697. height: math.unit(9.5, "feet"),
  5698. weight: math.unit(2500, "lbs"),
  5699. name: "Side",
  5700. image: {
  5701. source: "./media/characters/heather/side.svg"
  5702. }
  5703. },
  5704. },
  5705. [
  5706. {
  5707. name: "Normal",
  5708. height: math.unit(9.5, "feet"),
  5709. default: true
  5710. }
  5711. ]
  5712. ))
  5713. characterMakers.push(() => makeCharacter(
  5714. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5715. {
  5716. side: {
  5717. height: math.unit(6.5, "feet"),
  5718. weight: math.unit(400, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/lukas/side.svg",
  5722. extra: 7.25 / 6.5
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(6.5, "feet"),
  5730. default: true
  5731. }
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5736. {
  5737. side: {
  5738. height: math.unit(5, "feet"),
  5739. weight: math.unit(3000, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/louise/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(5, "feet"),
  5750. default: true
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5756. {
  5757. side: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(150, "lbs"),
  5760. name: "Side",
  5761. image: {
  5762. source: "./media/characters/ramona/side.svg",
  5763. extra: 871/854,
  5764. bottom: 41/912
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(6 + 4/12, "feet")
  5772. },
  5773. {
  5774. name: "Minimacro",
  5775. height: math.unit(5.3, "meters"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Macro",
  5780. height: math.unit(20, "stories")
  5781. },
  5782. {
  5783. name: "Macro+",
  5784. height: math.unit(50, "stories")
  5785. },
  5786. ]
  5787. ))
  5788. characterMakers.push(() => makeCharacter(
  5789. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5790. {
  5791. standing: {
  5792. height: math.unit(5.75, "feet"),
  5793. weight: math.unit(160, "lbs"),
  5794. name: "Standing",
  5795. image: {
  5796. source: "./media/characters/deerpuff/standing.svg",
  5797. extra: 682 / 624
  5798. }
  5799. },
  5800. sitting: {
  5801. height: math.unit(5.75 / 1.79, "feet"),
  5802. weight: math.unit(160, "lbs"),
  5803. name: "Sitting",
  5804. image: {
  5805. source: "./media/characters/deerpuff/sitting.svg",
  5806. bottom: 44 / 400,
  5807. extra: 1
  5808. }
  5809. },
  5810. taurLaying: {
  5811. height: math.unit(6, "feet"),
  5812. weight: math.unit(400, "lbs"),
  5813. name: "Taur (Laying)",
  5814. image: {
  5815. source: "./media/characters/deerpuff/taur-laying.svg"
  5816. }
  5817. },
  5818. },
  5819. [
  5820. {
  5821. name: "Puffball",
  5822. height: math.unit(6, "inches")
  5823. },
  5824. {
  5825. name: "Normalpuff",
  5826. height: math.unit(5.75, "feet")
  5827. },
  5828. {
  5829. name: "Macropuff",
  5830. height: math.unit(1500, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Megapuff",
  5835. height: math.unit(500, "miles")
  5836. },
  5837. {
  5838. name: "Gigapuff",
  5839. height: math.unit(250000, "miles")
  5840. },
  5841. {
  5842. name: "Omegapuff",
  5843. height: math.unit(1000, "lightyears")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5849. {
  5850. stomping: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(170, "lbs"),
  5853. name: "Stomping",
  5854. image: {
  5855. source: "./media/characters/vivian/stomping.svg"
  5856. }
  5857. },
  5858. sitting: {
  5859. height: math.unit(6 / 1.75, "feet"),
  5860. weight: math.unit(170, "lbs"),
  5861. name: "Sitting",
  5862. image: {
  5863. source: "./media/characters/vivian/sitting.svg",
  5864. bottom: 1 / 6.4,
  5865. extra: 1,
  5866. }
  5867. },
  5868. },
  5869. [
  5870. {
  5871. name: "Normal",
  5872. height: math.unit(7, "feet"),
  5873. default: true
  5874. },
  5875. {
  5876. name: "Macro",
  5877. height: math.unit(10, "stories")
  5878. },
  5879. {
  5880. name: "Macro+",
  5881. height: math.unit(30, "stories")
  5882. },
  5883. {
  5884. name: "Megamacro",
  5885. height: math.unit(10, "miles")
  5886. },
  5887. {
  5888. name: "Megamacro+",
  5889. height: math.unit(2750000, "meters")
  5890. },
  5891. ]
  5892. ))
  5893. characterMakers.push(() => makeCharacter(
  5894. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5895. {
  5896. front: {
  5897. height: math.unit(6, "feet"),
  5898. weight: math.unit(160, "lbs"),
  5899. name: "Front",
  5900. image: {
  5901. source: "./media/characters/prince/front.svg",
  5902. extra: 3400 / 3000
  5903. }
  5904. },
  5905. jumping: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(160, "lbs"),
  5908. name: "Jumping",
  5909. image: {
  5910. source: "./media/characters/prince/jump.svg",
  5911. extra: 2555 / 2134
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(7.75, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Not cute",
  5923. height: math.unit(17, "feet")
  5924. },
  5925. {
  5926. name: "I said NOT",
  5927. height: math.unit(91, "feet")
  5928. },
  5929. {
  5930. name: "Please stop",
  5931. height: math.unit(560, "feet")
  5932. },
  5933. {
  5934. name: "What have you done",
  5935. height: math.unit(2200, "feet")
  5936. },
  5937. {
  5938. name: "Deer God",
  5939. height: math.unit(3.6, "miles")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5945. {
  5946. standing: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(300, "lbs"),
  5949. name: "Standing",
  5950. image: {
  5951. source: "./media/characters/psymon/standing.svg",
  5952. extra: 1888 / 1810,
  5953. bottom: 0.05
  5954. }
  5955. },
  5956. slithering: {
  5957. height: math.unit(6, "feet"),
  5958. weight: math.unit(300, "lbs"),
  5959. name: "Slithering",
  5960. image: {
  5961. source: "./media/characters/psymon/slithering.svg",
  5962. extra: 1330 / 1224
  5963. }
  5964. },
  5965. slitheringAlt: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(300, "lbs"),
  5968. name: "Slithering (Alt)",
  5969. image: {
  5970. source: "./media/characters/psymon/slithering-alt.svg",
  5971. extra: 1330 / 1224
  5972. }
  5973. },
  5974. },
  5975. [
  5976. {
  5977. name: "Normal",
  5978. height: math.unit(11.25, "feet"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Large",
  5983. height: math.unit(27, "feet")
  5984. },
  5985. {
  5986. name: "Giant",
  5987. height: math.unit(87, "feet")
  5988. },
  5989. {
  5990. name: "Macro",
  5991. height: math.unit(365, "feet")
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(3, "miles")
  5996. },
  5997. {
  5998. name: "World Serpent",
  5999. height: math.unit(8000, "miles")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(6, "feet"),
  6008. weight: math.unit(180, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/daimos/front.svg",
  6012. extra: 4160 / 3897,
  6013. bottom: 0.021
  6014. }
  6015. }
  6016. },
  6017. [
  6018. {
  6019. name: "Normal",
  6020. height: math.unit(8, "feet"),
  6021. default: true
  6022. },
  6023. {
  6024. name: "Big Dog",
  6025. height: math.unit(22, "feet")
  6026. },
  6027. {
  6028. name: "Macro",
  6029. height: math.unit(127, "feet")
  6030. },
  6031. {
  6032. name: "Megamacro",
  6033. height: math.unit(3600, "feet")
  6034. },
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6039. {
  6040. side: {
  6041. height: math.unit(6, "feet"),
  6042. weight: math.unit(180, "lbs"),
  6043. name: "Side",
  6044. image: {
  6045. source: "./media/characters/blake/side.svg",
  6046. extra: 1212 / 1120,
  6047. bottom: 0.05
  6048. }
  6049. },
  6050. crouched: {
  6051. height: math.unit(6 * 0.57, "feet"),
  6052. weight: math.unit(180, "lbs"),
  6053. name: "Crouched",
  6054. image: {
  6055. source: "./media/characters/blake/crouched.svg",
  6056. extra: 840 / 587,
  6057. bottom: 0.04
  6058. }
  6059. },
  6060. bent: {
  6061. height: math.unit(6 * 0.75, "feet"),
  6062. weight: math.unit(180, "lbs"),
  6063. name: "Bent",
  6064. image: {
  6065. source: "./media/characters/blake/bent.svg",
  6066. extra: 592 / 544,
  6067. bottom: 0.035
  6068. }
  6069. },
  6070. },
  6071. [
  6072. {
  6073. name: "Normal",
  6074. height: math.unit(8 + 1 / 6, "feet"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Big Backside",
  6079. height: math.unit(37, "feet")
  6080. },
  6081. {
  6082. name: "Subway Shredder",
  6083. height: math.unit(72, "feet")
  6084. },
  6085. {
  6086. name: "City Carver",
  6087. height: math.unit(1675, "feet")
  6088. },
  6089. {
  6090. name: "Tectonic Tweaker",
  6091. height: math.unit(2300, "miles")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(180, "lbs"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/guisetto/front.svg",
  6104. extra: 856 / 817,
  6105. bottom: 0.06
  6106. }
  6107. },
  6108. airborne: {
  6109. height: math.unit(6, "feet"),
  6110. weight: math.unit(180, "lbs"),
  6111. name: "Airborne",
  6112. image: {
  6113. source: "./media/characters/guisetto/airborne.svg",
  6114. extra: 584 / 525
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(10 + 11 / 12, "feet"),
  6122. default: true
  6123. },
  6124. {
  6125. name: "Large",
  6126. height: math.unit(35, "feet")
  6127. },
  6128. {
  6129. name: "Macro",
  6130. height: math.unit(475, "feet")
  6131. },
  6132. ]
  6133. ))
  6134. characterMakers.push(() => makeCharacter(
  6135. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6136. {
  6137. front: {
  6138. height: math.unit(6, "feet"),
  6139. weight: math.unit(180, "lbs"),
  6140. name: "Front",
  6141. image: {
  6142. source: "./media/characters/luxor/front.svg",
  6143. extra: 2940 / 2152
  6144. }
  6145. },
  6146. back: {
  6147. height: math.unit(6, "feet"),
  6148. weight: math.unit(180, "lbs"),
  6149. name: "Back",
  6150. image: {
  6151. source: "./media/characters/luxor/back.svg",
  6152. extra: 1083 / 960
  6153. }
  6154. },
  6155. },
  6156. [
  6157. {
  6158. name: "Normal",
  6159. height: math.unit(5 + 5 / 6, "feet"),
  6160. default: true
  6161. },
  6162. {
  6163. name: "Lamp",
  6164. height: math.unit(50, "feet")
  6165. },
  6166. {
  6167. name: "Lämp",
  6168. height: math.unit(300, "feet")
  6169. },
  6170. {
  6171. name: "The sun is a lamp",
  6172. height: math.unit(250000, "miles")
  6173. },
  6174. ]
  6175. ))
  6176. characterMakers.push(() => makeCharacter(
  6177. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6178. {
  6179. front: {
  6180. height: math.unit(6, "feet"),
  6181. weight: math.unit(50, "lbs"),
  6182. name: "Front",
  6183. image: {
  6184. source: "./media/characters/huoyan/front.svg"
  6185. }
  6186. },
  6187. side: {
  6188. height: math.unit(6, "feet"),
  6189. weight: math.unit(180, "lbs"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/huoyan/side.svg"
  6193. }
  6194. },
  6195. },
  6196. [
  6197. {
  6198. name: "Chef",
  6199. height: math.unit(9, "feet")
  6200. },
  6201. {
  6202. name: "Normal",
  6203. height: math.unit(65, "feet"),
  6204. default: true
  6205. },
  6206. {
  6207. name: "Macro",
  6208. height: math.unit(780, "feet")
  6209. },
  6210. {
  6211. name: "Flaming Mountain",
  6212. height: math.unit(4.8, "miles")
  6213. },
  6214. {
  6215. name: "Celestial",
  6216. height: math.unit(765000, "miles")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(5 + 3 / 4, "feet"),
  6225. weight: math.unit(120, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/tails/front.svg"
  6229. }
  6230. }
  6231. },
  6232. [
  6233. {
  6234. name: "Normal",
  6235. height: math.unit(5 + 3 / 4, "feet"),
  6236. default: true
  6237. }
  6238. ]
  6239. ))
  6240. characterMakers.push(() => makeCharacter(
  6241. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6242. {
  6243. front: {
  6244. height: math.unit(4, "feet"),
  6245. weight: math.unit(50, "lbs"),
  6246. name: "Front",
  6247. image: {
  6248. source: "./media/characters/rainy/front.svg"
  6249. }
  6250. }
  6251. },
  6252. [
  6253. {
  6254. name: "Macro",
  6255. height: math.unit(800, "feet"),
  6256. default: true
  6257. }
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(150, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/rainier/front.svg"
  6269. }
  6270. }
  6271. },
  6272. [
  6273. {
  6274. name: "Micro",
  6275. height: math.unit(2, "mm"),
  6276. default: true
  6277. }
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(8 + 4/12, "feet"),
  6285. weight: math.unit(450, "kilograms"),
  6286. volume: math.unit(5, "cups"),
  6287. name: "Front",
  6288. image: {
  6289. source: "./media/characters/andy-renard/front.svg",
  6290. extra: 1839/1726,
  6291. bottom: 134/1973
  6292. }
  6293. },
  6294. back: {
  6295. height: math.unit(8 + 4/12, "feet"),
  6296. weight: math.unit(450, "kilograms"),
  6297. volume: math.unit(5, "cups"),
  6298. name: "Back",
  6299. image: {
  6300. source: "./media/characters/andy-renard/back.svg",
  6301. extra: 1838/1710,
  6302. bottom: 105/1943
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Tall",
  6309. height: math.unit(8 + 4/12, "feet")
  6310. },
  6311. {
  6312. name: "Mini Macro",
  6313. height: math.unit(15, "feet"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Macro",
  6318. height: math.unit(100, "feet")
  6319. },
  6320. {
  6321. name: "Mega Macro",
  6322. height: math.unit(1000, "feet")
  6323. },
  6324. {
  6325. name: "Giga Macro",
  6326. height: math.unit(10, "miles")
  6327. },
  6328. {
  6329. name: "God Macro",
  6330. height: math.unit(1, "multiverse")
  6331. },
  6332. ]
  6333. ))
  6334. characterMakers.push(() => makeCharacter(
  6335. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6336. {
  6337. front: {
  6338. height: math.unit(6, "feet"),
  6339. weight: math.unit(210, "lbs"),
  6340. name: "Front",
  6341. image: {
  6342. source: "./media/characters/cimmaron/front-sfw.svg",
  6343. extra: 701 / 676,
  6344. bottom: 0.046
  6345. }
  6346. },
  6347. back: {
  6348. height: math.unit(6, "feet"),
  6349. weight: math.unit(210, "lbs"),
  6350. name: "Back",
  6351. image: {
  6352. source: "./media/characters/cimmaron/back-sfw.svg",
  6353. extra: 701 / 676,
  6354. bottom: 0.046
  6355. }
  6356. },
  6357. frontNsfw: {
  6358. height: math.unit(6, "feet"),
  6359. weight: math.unit(210, "lbs"),
  6360. name: "Front (NSFW)",
  6361. image: {
  6362. source: "./media/characters/cimmaron/front-nsfw.svg",
  6363. extra: 701 / 676,
  6364. bottom: 0.046
  6365. }
  6366. },
  6367. backNsfw: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(210, "lbs"),
  6370. name: "Back (NSFW)",
  6371. image: {
  6372. source: "./media/characters/cimmaron/back-nsfw.svg",
  6373. extra: 701 / 676,
  6374. bottom: 0.046
  6375. }
  6376. },
  6377. dick: {
  6378. height: math.unit(1.714, "feet"),
  6379. name: "Dick",
  6380. image: {
  6381. source: "./media/characters/cimmaron/dick.svg"
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(6, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro Mayor",
  6393. height: math.unit(350, "meters")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(6, "feet"),
  6402. weight: math.unit(200, "lbs"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/akari/front.svg",
  6406. extra: 962 / 901,
  6407. bottom: 0.04
  6408. }
  6409. }
  6410. },
  6411. [
  6412. {
  6413. name: "Micro",
  6414. height: math.unit(5, "inches"),
  6415. default: true
  6416. },
  6417. {
  6418. name: "Normal",
  6419. height: math.unit(7, "feet")
  6420. },
  6421. ]
  6422. ))
  6423. characterMakers.push(() => makeCharacter(
  6424. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6425. {
  6426. front: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(140, "lbs"),
  6429. name: "Front",
  6430. image: {
  6431. source: "./media/characters/cynosura/front.svg",
  6432. extra: 896 / 847
  6433. }
  6434. },
  6435. back: {
  6436. height: math.unit(6, "feet"),
  6437. weight: math.unit(140, "lbs"),
  6438. name: "Back",
  6439. image: {
  6440. source: "./media/characters/cynosura/back.svg",
  6441. extra: 1365 / 1250
  6442. }
  6443. },
  6444. },
  6445. [
  6446. {
  6447. name: "Micro",
  6448. height: math.unit(4, "inches")
  6449. },
  6450. {
  6451. name: "Normal",
  6452. height: math.unit(5.75, "feet"),
  6453. default: true
  6454. },
  6455. {
  6456. name: "Tall",
  6457. height: math.unit(10, "feet")
  6458. },
  6459. {
  6460. name: "Big",
  6461. height: math.unit(20, "feet")
  6462. },
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(50, "feet")
  6466. },
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(13 + 2/12, "feet"),
  6474. weight: math.unit(800, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/gin/front.svg",
  6478. extra: 1312/1191,
  6479. bottom: 45/1357
  6480. }
  6481. },
  6482. mouth: {
  6483. height: math.unit(2.39 * 1.8, "feet"),
  6484. name: "Mouth",
  6485. image: {
  6486. source: "./media/characters/gin/mouth.svg"
  6487. }
  6488. },
  6489. hand: {
  6490. height: math.unit(1.57 * 2.19, "feet"),
  6491. name: "Hand",
  6492. image: {
  6493. source: "./media/characters/gin/hand.svg"
  6494. }
  6495. },
  6496. foot: {
  6497. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6498. name: "Foot",
  6499. image: {
  6500. source: "./media/characters/gin/foot.svg"
  6501. }
  6502. },
  6503. sole: {
  6504. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6505. name: "Sole",
  6506. image: {
  6507. source: "./media/characters/gin/sole.svg"
  6508. }
  6509. },
  6510. },
  6511. [
  6512. {
  6513. name: "Very Small",
  6514. height: math.unit(13 + 2 / 12, "feet")
  6515. },
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(600, "miles")
  6519. },
  6520. {
  6521. name: "Regular",
  6522. height: math.unit(20, "earths"),
  6523. default: true
  6524. },
  6525. {
  6526. name: "Macro",
  6527. height: math.unit(2.2, "solarradii")
  6528. },
  6529. {
  6530. name: "Teramacro",
  6531. height: math.unit(1.2, "galaxies")
  6532. },
  6533. {
  6534. name: "Omegamacro",
  6535. height: math.unit(200, "universes")
  6536. },
  6537. ]
  6538. ))
  6539. characterMakers.push(() => makeCharacter(
  6540. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6541. {
  6542. front: {
  6543. height: math.unit(6 + 1 / 6, "feet"),
  6544. weight: math.unit(178, "lbs"),
  6545. name: "Front",
  6546. image: {
  6547. source: "./media/characters/guy/front.svg"
  6548. }
  6549. }
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(6 + 1 / 6, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Large",
  6559. height: math.unit(25 + 7 / 12, "feet")
  6560. },
  6561. {
  6562. name: "Macro",
  6563. height: math.unit(60 + 9 / 12, "feet")
  6564. },
  6565. {
  6566. name: "Macro+",
  6567. height: math.unit(246, "feet")
  6568. },
  6569. {
  6570. name: "Macro++",
  6571. height: math.unit(878, "feet")
  6572. }
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(9, "feet"),
  6580. weight: math.unit(800, "lbs"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/tiberius/front.svg",
  6584. extra: 2295 / 2071
  6585. }
  6586. },
  6587. back: {
  6588. height: math.unit(9, "feet"),
  6589. weight: math.unit(800, "lbs"),
  6590. name: "Back",
  6591. image: {
  6592. source: "./media/characters/tiberius/back.svg",
  6593. extra: 2373 / 2160
  6594. }
  6595. },
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(9, "feet"),
  6601. default: true
  6602. }
  6603. ]
  6604. ))
  6605. characterMakers.push(() => makeCharacter(
  6606. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6607. {
  6608. front: {
  6609. height: math.unit(6, "feet"),
  6610. weight: math.unit(600, "lbs"),
  6611. name: "Front",
  6612. image: {
  6613. source: "./media/characters/surgo/front.svg",
  6614. extra: 3591 / 2227
  6615. }
  6616. },
  6617. back: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(600, "lbs"),
  6620. name: "Back",
  6621. image: {
  6622. source: "./media/characters/surgo/back.svg",
  6623. extra: 3557 / 2228
  6624. }
  6625. },
  6626. laying: {
  6627. height: math.unit(6 * 0.85, "feet"),
  6628. weight: math.unit(600, "lbs"),
  6629. name: "Laying",
  6630. image: {
  6631. source: "./media/characters/surgo/laying.svg"
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(6, "feet"),
  6639. default: true
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6645. {
  6646. side: {
  6647. height: math.unit(6, "feet"),
  6648. weight: math.unit(150, "lbs"),
  6649. name: "Side",
  6650. image: {
  6651. source: "./media/characters/cibus/side.svg",
  6652. extra: 800 / 400
  6653. }
  6654. },
  6655. },
  6656. [
  6657. {
  6658. name: "Normal",
  6659. height: math.unit(6, "feet"),
  6660. default: true
  6661. }
  6662. ]
  6663. ))
  6664. characterMakers.push(() => makeCharacter(
  6665. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6666. {
  6667. front: {
  6668. height: math.unit(6, "feet"),
  6669. weight: math.unit(240, "lbs"),
  6670. name: "Front",
  6671. image: {
  6672. source: "./media/characters/nibbles/front.svg"
  6673. }
  6674. },
  6675. side: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(240, "lbs"),
  6678. name: "Side",
  6679. image: {
  6680. source: "./media/characters/nibbles/side.svg"
  6681. }
  6682. },
  6683. },
  6684. [
  6685. {
  6686. name: "Normal",
  6687. height: math.unit(9, "feet"),
  6688. default: true
  6689. }
  6690. ]
  6691. ))
  6692. characterMakers.push(() => makeCharacter(
  6693. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6694. {
  6695. side: {
  6696. height: math.unit(5 + 1 / 6, "feet"),
  6697. weight: math.unit(130, "lbs"),
  6698. name: "Side",
  6699. image: {
  6700. source: "./media/characters/rikky/side.svg",
  6701. extra: 851 / 801
  6702. }
  6703. },
  6704. },
  6705. [
  6706. {
  6707. name: "Normal",
  6708. height: math.unit(5 + 1 / 6, "feet")
  6709. },
  6710. {
  6711. name: "Macro",
  6712. height: math.unit(152, "feet"),
  6713. default: true
  6714. },
  6715. {
  6716. name: "Megamacro",
  6717. height: math.unit(7, "miles")
  6718. }
  6719. ]
  6720. ))
  6721. characterMakers.push(() => makeCharacter(
  6722. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6723. {
  6724. side: {
  6725. height: math.unit(370, "cm"),
  6726. weight: math.unit(350, "lbs"),
  6727. name: "Side",
  6728. image: {
  6729. source: "./media/characters/malfressa/side.svg"
  6730. }
  6731. },
  6732. walking: {
  6733. height: math.unit(370, "cm"),
  6734. weight: math.unit(350, "lbs"),
  6735. name: "Walking",
  6736. image: {
  6737. source: "./media/characters/malfressa/walking.svg"
  6738. }
  6739. },
  6740. feral: {
  6741. height: math.unit(2500, "cm"),
  6742. weight: math.unit(100000, "lbs"),
  6743. name: "Feral",
  6744. image: {
  6745. source: "./media/characters/malfressa/feral.svg",
  6746. extra: 2108 / 837,
  6747. bottom: 0.02
  6748. }
  6749. },
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(370, "cm")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(300, "meters"),
  6759. default: true
  6760. }
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(6, "feet"),
  6768. weight: math.unit(60, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/jaro/front.svg",
  6772. extra: 845/817,
  6773. bottom: 45/890
  6774. }
  6775. },
  6776. back: {
  6777. height: math.unit(6, "feet"),
  6778. weight: math.unit(60, "kg"),
  6779. name: "Back",
  6780. image: {
  6781. source: "./media/characters/jaro/back.svg",
  6782. extra: 847/817,
  6783. bottom: 34/881
  6784. }
  6785. },
  6786. },
  6787. [
  6788. {
  6789. name: "Micro",
  6790. height: math.unit(7, "inches")
  6791. },
  6792. {
  6793. name: "Normal",
  6794. height: math.unit(5.5, "feet"),
  6795. default: true
  6796. },
  6797. {
  6798. name: "Minimacro",
  6799. height: math.unit(20, "feet")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(200, "meters")
  6804. }
  6805. ]
  6806. ))
  6807. characterMakers.push(() => makeCharacter(
  6808. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6809. {
  6810. front: {
  6811. height: math.unit(6, "feet"),
  6812. weight: math.unit(195, "lb"),
  6813. name: "Front",
  6814. image: {
  6815. source: "./media/characters/rogue/front.svg"
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Macro",
  6822. height: math.unit(90, "feet"),
  6823. default: true
  6824. },
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6829. {
  6830. standing: {
  6831. height: math.unit(5 + 8 / 12, "feet"),
  6832. weight: math.unit(140, "lb"),
  6833. name: "Standing",
  6834. image: {
  6835. source: "./media/characters/piper/standing.svg",
  6836. extra: 1440/1284,
  6837. bottom: 66/1506
  6838. }
  6839. },
  6840. running: {
  6841. height: math.unit(5 + 8 / 12, "feet"),
  6842. weight: math.unit(140, "lb"),
  6843. name: "Running",
  6844. image: {
  6845. source: "./media/characters/piper/running.svg",
  6846. extra: 3948/3655,
  6847. bottom: 0/3948
  6848. }
  6849. },
  6850. sole: {
  6851. height: math.unit(0.81, "feet"),
  6852. weight: math.unit(2, "kg"),
  6853. name: "Sole",
  6854. image: {
  6855. source: "./media/characters/piper/sole.svg"
  6856. }
  6857. },
  6858. nipple: {
  6859. height: math.unit(0.25, "feet"),
  6860. weight: math.unit(1.5, "lb"),
  6861. name: "Nipple",
  6862. image: {
  6863. source: "./media/characters/piper/nipple.svg"
  6864. }
  6865. },
  6866. head: {
  6867. height: math.unit(1.1, "feet"),
  6868. name: "Head",
  6869. image: {
  6870. source: "./media/characters/piper/head.svg"
  6871. }
  6872. },
  6873. },
  6874. [
  6875. {
  6876. name: "Micro",
  6877. height: math.unit(2, "inches")
  6878. },
  6879. {
  6880. name: "Normal",
  6881. height: math.unit(5 + 8 / 12, "feet")
  6882. },
  6883. {
  6884. name: "Macro",
  6885. height: math.unit(250, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Megamacro",
  6890. height: math.unit(7, "miles")
  6891. },
  6892. ]
  6893. ))
  6894. characterMakers.push(() => makeCharacter(
  6895. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6896. {
  6897. front: {
  6898. height: math.unit(6, "feet"),
  6899. weight: math.unit(220, "lb"),
  6900. name: "Front",
  6901. image: {
  6902. source: "./media/characters/gemini/front.svg"
  6903. }
  6904. },
  6905. back: {
  6906. height: math.unit(6, "feet"),
  6907. weight: math.unit(220, "lb"),
  6908. name: "Back",
  6909. image: {
  6910. source: "./media/characters/gemini/back.svg"
  6911. }
  6912. },
  6913. kneeling: {
  6914. height: math.unit(6 / 1.5, "feet"),
  6915. weight: math.unit(220, "lb"),
  6916. name: "Kneeling",
  6917. image: {
  6918. source: "./media/characters/gemini/kneeling.svg",
  6919. bottom: 0.02
  6920. }
  6921. },
  6922. },
  6923. [
  6924. {
  6925. name: "Macro",
  6926. height: math.unit(300, "meters"),
  6927. default: true
  6928. },
  6929. {
  6930. name: "Megamacro",
  6931. height: math.unit(6900, "meters")
  6932. },
  6933. ]
  6934. ))
  6935. characterMakers.push(() => makeCharacter(
  6936. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6937. {
  6938. anthro: {
  6939. height: math.unit(2.35, "meters"),
  6940. weight: math.unit(73, "kg"),
  6941. name: "Anthro",
  6942. image: {
  6943. source: "./media/characters/alicia/anthro.svg",
  6944. extra: 2571 / 2385,
  6945. bottom: 75 / 2648
  6946. }
  6947. },
  6948. paw: {
  6949. height: math.unit(1.32, "feet"),
  6950. name: "Paw",
  6951. image: {
  6952. source: "./media/characters/alicia/paw.svg"
  6953. }
  6954. },
  6955. feral: {
  6956. height: math.unit(1.69, "meters"),
  6957. weight: math.unit(73, "kg"),
  6958. name: "Feral",
  6959. image: {
  6960. source: "./media/characters/alicia/feral.svg",
  6961. extra: 2123 / 1715,
  6962. bottom: 222 / 2349
  6963. }
  6964. },
  6965. },
  6966. [
  6967. {
  6968. name: "Normal",
  6969. height: math.unit(2.35, "meters")
  6970. },
  6971. {
  6972. name: "Macro",
  6973. height: math.unit(60, "meters"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Megamacro",
  6978. height: math.unit(10000, "kilometers")
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(7, "feet"),
  6987. weight: math.unit(250, "lbs"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/archy/front.svg"
  6991. }
  6992. }
  6993. },
  6994. [
  6995. {
  6996. name: "Micro",
  6997. height: math.unit(1, "inch")
  6998. },
  6999. {
  7000. name: "Shorty",
  7001. height: math.unit(5, "feet")
  7002. },
  7003. {
  7004. name: "Normal",
  7005. height: math.unit(7, "feet")
  7006. },
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(600, "meters"),
  7010. default: true
  7011. },
  7012. {
  7013. name: "Megamacro",
  7014. height: math.unit(1, "mile")
  7015. },
  7016. ]
  7017. ))
  7018. characterMakers.push(() => makeCharacter(
  7019. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7020. {
  7021. front: {
  7022. height: math.unit(1.65, "meters"),
  7023. weight: math.unit(74, "kg"),
  7024. name: "Front",
  7025. image: {
  7026. source: "./media/characters/berri/front.svg",
  7027. extra: 857 / 837,
  7028. bottom: 18 / 877
  7029. }
  7030. },
  7031. bum: {
  7032. height: math.unit(1.46, "feet"),
  7033. name: "Bum",
  7034. image: {
  7035. source: "./media/characters/berri/bum.svg"
  7036. }
  7037. },
  7038. mouth: {
  7039. height: math.unit(0.44, "feet"),
  7040. name: "Mouth",
  7041. image: {
  7042. source: "./media/characters/berri/mouth.svg"
  7043. }
  7044. },
  7045. paw: {
  7046. height: math.unit(0.826, "feet"),
  7047. name: "Paw",
  7048. image: {
  7049. source: "./media/characters/berri/paw.svg"
  7050. }
  7051. },
  7052. },
  7053. [
  7054. {
  7055. name: "Normal",
  7056. height: math.unit(1.65, "meters")
  7057. },
  7058. {
  7059. name: "Macro",
  7060. height: math.unit(60, "m"),
  7061. default: true
  7062. },
  7063. {
  7064. name: "Megamacro",
  7065. height: math.unit(9.213, "km")
  7066. },
  7067. {
  7068. name: "Planet Eater",
  7069. height: math.unit(489, "megameters")
  7070. },
  7071. {
  7072. name: "Teramacro",
  7073. height: math.unit(2471635000000, "meters")
  7074. },
  7075. {
  7076. name: "Examacro",
  7077. height: math.unit(8.0624e+26, "meters")
  7078. }
  7079. ]
  7080. ))
  7081. characterMakers.push(() => makeCharacter(
  7082. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7083. {
  7084. front: {
  7085. height: math.unit(1.72, "meters"),
  7086. weight: math.unit(68, "kg"),
  7087. name: "Front",
  7088. image: {
  7089. source: "./media/characters/lexi/front.svg"
  7090. }
  7091. }
  7092. },
  7093. [
  7094. {
  7095. name: "Very Smol",
  7096. height: math.unit(10, "mm")
  7097. },
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(6.8, "cm"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Normal",
  7105. height: math.unit(1.72, "m")
  7106. }
  7107. ]
  7108. ))
  7109. characterMakers.push(() => makeCharacter(
  7110. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7111. {
  7112. front: {
  7113. height: math.unit(1.69, "meters"),
  7114. weight: math.unit(68, "kg"),
  7115. name: "Front",
  7116. image: {
  7117. source: "./media/characters/martin/front.svg",
  7118. extra: 596 / 581
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Micro",
  7125. height: math.unit(6.85, "cm"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(1.69, "m")
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(1.69, "meters"),
  7139. weight: math.unit(68, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/juno/front.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Micro",
  7149. height: math.unit(7, "cm")
  7150. },
  7151. {
  7152. name: "Normal",
  7153. height: math.unit(1.89, "m")
  7154. },
  7155. {
  7156. name: "Macro",
  7157. height: math.unit(353, "meters"),
  7158. default: true
  7159. }
  7160. ]
  7161. ))
  7162. characterMakers.push(() => makeCharacter(
  7163. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7164. {
  7165. front: {
  7166. height: math.unit(1.93, "meters"),
  7167. weight: math.unit(83, "kg"),
  7168. name: "Front",
  7169. image: {
  7170. source: "./media/characters/samantha/front.svg"
  7171. }
  7172. },
  7173. frontClothed: {
  7174. height: math.unit(1.93, "meters"),
  7175. weight: math.unit(83, "kg"),
  7176. name: "Front (Clothed)",
  7177. image: {
  7178. source: "./media/characters/samantha/front-clothed.svg"
  7179. }
  7180. },
  7181. back: {
  7182. height: math.unit(1.93, "meters"),
  7183. weight: math.unit(83, "kg"),
  7184. name: "Back",
  7185. image: {
  7186. source: "./media/characters/samantha/back.svg"
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Normal",
  7193. height: math.unit(1.93, "m")
  7194. },
  7195. {
  7196. name: "Macro",
  7197. height: math.unit(74, "meters"),
  7198. default: true
  7199. },
  7200. {
  7201. name: "Macro+",
  7202. height: math.unit(223, "meters"),
  7203. },
  7204. {
  7205. name: "Megamacro",
  7206. height: math.unit(8381, "meters"),
  7207. },
  7208. {
  7209. name: "Megamacro+",
  7210. height: math.unit(12000, "kilometers")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(1.92, "meters"),
  7219. weight: math.unit(80, "kg"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/dr-clay/front.svg"
  7223. }
  7224. },
  7225. frontClothed: {
  7226. height: math.unit(1.92, "meters"),
  7227. weight: math.unit(80, "kg"),
  7228. name: "Front (Clothed)",
  7229. image: {
  7230. source: "./media/characters/dr-clay/front-clothed.svg"
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(1.92, "m")
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(214, "meters"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(12.237, "meters"),
  7247. },
  7248. {
  7249. name: "Megamacro",
  7250. height: math.unit(557, "megameters"),
  7251. },
  7252. {
  7253. name: "Unimaginable",
  7254. height: math.unit(120e9, "lightyears")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(2, "meters"),
  7263. weight: math.unit(80, "kg"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Teramacro",
  7273. height: math.unit(500000, "lightyears"),
  7274. default: true
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7280. {
  7281. crux: {
  7282. height: math.unit(2, "meters"),
  7283. weight: math.unit(150, "kg"),
  7284. name: "Crux",
  7285. image: {
  7286. source: "./media/characters/vemus/crux.svg",
  7287. extra: 1074/936,
  7288. bottom: 23/1097
  7289. }
  7290. },
  7291. skunkTanuki: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(150, "kg"),
  7294. name: "Skunk-Tanuki",
  7295. image: {
  7296. source: "./media/characters/vemus/skunk-tanuki.svg",
  7297. extra: 926/893,
  7298. bottom: 20/946
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Normal",
  7305. height: math.unit(4, "meters"),
  7306. default: true
  7307. },
  7308. {
  7309. name: "Big",
  7310. height: math.unit(8, "meters")
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(100, "meters")
  7315. },
  7316. {
  7317. name: "Macro+",
  7318. height: math.unit(1500, "meters")
  7319. },
  7320. {
  7321. name: "Stellar",
  7322. height: math.unit(14e8, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7328. {
  7329. front: {
  7330. height: math.unit(2, "meters"),
  7331. weight: math.unit(70, "kg"),
  7332. name: "Front",
  7333. image: {
  7334. source: "./media/characters/beherit/front.svg",
  7335. extra: 1234/1109,
  7336. bottom: 55/1289
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(6, "feet")
  7344. },
  7345. {
  7346. name: "Lorg",
  7347. height: math.unit(25, "feet"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Lorger",
  7352. height: math.unit(75, "feet")
  7353. },
  7354. {
  7355. name: "Macro",
  7356. height: math.unit(200, "meters")
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7362. {
  7363. front: {
  7364. height: math.unit(2, "meters"),
  7365. weight: math.unit(150, "kg"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/everett/front.svg",
  7369. extra: 1017/866,
  7370. bottom: 86/1103
  7371. }
  7372. },
  7373. paw: {
  7374. height: math.unit(2 / 3.6, "meters"),
  7375. name: "Paw",
  7376. image: {
  7377. source: "./media/characters/everett/paw.svg"
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(15, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Lorg",
  7389. height: math.unit(70, "feet"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Lorger",
  7394. height: math.unit(250, "feet")
  7395. },
  7396. {
  7397. name: "Macro",
  7398. height: math.unit(500, "meters")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(2, "meters"),
  7407. weight: math.unit(86, "kg"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/rose/front.svg",
  7411. extra: 1785/1636,
  7412. bottom: 30/1815
  7413. },
  7414. form: "liom",
  7415. default: true
  7416. },
  7417. frontSporty: {
  7418. height: math.unit(2, "meters"),
  7419. weight: math.unit(86, "kg"),
  7420. name: "Front (Sporty)",
  7421. image: {
  7422. source: "./media/characters/rose/front-sporty.svg",
  7423. extra: 350/335,
  7424. bottom: 10/360
  7425. },
  7426. form: "liom"
  7427. },
  7428. frontAlt: {
  7429. height: math.unit(1.6, "meters"),
  7430. weight: math.unit(86, "kg"),
  7431. name: "Front (Alt)",
  7432. image: {
  7433. source: "./media/characters/rose/front-alt.svg",
  7434. extra: 299/283,
  7435. bottom: 3/302
  7436. },
  7437. form: "liom"
  7438. },
  7439. plush: {
  7440. height: math.unit(2, "meters"),
  7441. weight: math.unit(86/3, "kg"),
  7442. name: "Plush",
  7443. image: {
  7444. source: "./media/characters/rose/plush.svg",
  7445. extra: 361/337,
  7446. bottom: 11/372
  7447. },
  7448. form: "plush",
  7449. default: true
  7450. },
  7451. faeStanding: {
  7452. height: math.unit(10, "cm"),
  7453. weight: math.unit(10, "grams"),
  7454. name: "Standing",
  7455. image: {
  7456. source: "./media/characters/rose/fae-standing.svg",
  7457. extra: 1189/1060,
  7458. bottom: 27/1216
  7459. },
  7460. form: "fae",
  7461. default: true
  7462. },
  7463. faeSitting: {
  7464. height: math.unit(5, "cm"),
  7465. weight: math.unit(10, "grams"),
  7466. name: "Sitting",
  7467. image: {
  7468. source: "./media/characters/rose/fae-sitting.svg",
  7469. extra: 737/577,
  7470. bottom: 356/1093
  7471. },
  7472. form: "fae"
  7473. },
  7474. faePaw: {
  7475. height: math.unit(1.35, "cm"),
  7476. name: "Paw",
  7477. image: {
  7478. source: "./media/characters/rose/fae-paw.svg"
  7479. },
  7480. form: "fae"
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "True Micro",
  7486. height: math.unit(9, "cm"),
  7487. form: "liom"
  7488. },
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(16, "cm"),
  7492. form: "liom"
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(1.85, "meters"),
  7497. default: true,
  7498. form: "liom"
  7499. },
  7500. {
  7501. name: "Mini-Macro",
  7502. height: math.unit(5, "meters"),
  7503. form: "liom"
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(15, "meters"),
  7508. form: "liom"
  7509. },
  7510. {
  7511. name: "True Macro",
  7512. height: math.unit(40, "meters"),
  7513. form: "liom"
  7514. },
  7515. {
  7516. name: "City Scale",
  7517. height: math.unit(1, "km"),
  7518. form: "liom"
  7519. },
  7520. {
  7521. name: "Plushie",
  7522. height: math.unit(9, "cm"),
  7523. form: "plush",
  7524. default: true
  7525. },
  7526. {
  7527. name: "Fae",
  7528. height: math.unit(10, "cm"),
  7529. form: "fae",
  7530. default: true
  7531. },
  7532. ],
  7533. {
  7534. "liom": {
  7535. name: "Liom"
  7536. },
  7537. "plush": {
  7538. name: "Plush"
  7539. },
  7540. "fae": {
  7541. name: "Fae Fox",
  7542. default: true
  7543. }
  7544. }
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(2, "meters"),
  7551. weight: math.unit(350, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/regal/front.svg"
  7555. }
  7556. },
  7557. back: {
  7558. height: math.unit(2, "meters"),
  7559. weight: math.unit(350, "lbs"),
  7560. name: "Back",
  7561. image: {
  7562. source: "./media/characters/regal/back.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Macro",
  7569. height: math.unit(350, "feet"),
  7570. default: true
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(4 + 11 / 12, "feet"),
  7579. weight: math.unit(100, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/opal/front.svg"
  7583. }
  7584. },
  7585. frontAlt: {
  7586. height: math.unit(4 + 11 / 12, "feet"),
  7587. weight: math.unit(100, "lbs"),
  7588. name: "Front (Alt)",
  7589. image: {
  7590. source: "./media/characters/opal/front-alt.svg"
  7591. }
  7592. },
  7593. },
  7594. [
  7595. {
  7596. name: "Small",
  7597. height: math.unit(4 + 11 / 12, "feet")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(20, "feet"),
  7602. default: true
  7603. },
  7604. {
  7605. name: "Macro",
  7606. height: math.unit(120, "feet")
  7607. },
  7608. {
  7609. name: "Megamacro",
  7610. height: math.unit(80, "miles")
  7611. },
  7612. {
  7613. name: "True Size",
  7614. height: math.unit(100000, "lightyears")
  7615. },
  7616. ]
  7617. ))
  7618. characterMakers.push(() => makeCharacter(
  7619. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7620. {
  7621. front: {
  7622. height: math.unit(6, "feet"),
  7623. weight: math.unit(200, "lbs"),
  7624. name: "Front",
  7625. image: {
  7626. source: "./media/characters/vector-wuff/front.svg"
  7627. }
  7628. }
  7629. },
  7630. [
  7631. {
  7632. name: "Normal",
  7633. height: math.unit(2.8, "meters")
  7634. },
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(450, "meters"),
  7638. default: true
  7639. },
  7640. {
  7641. name: "Megamacro",
  7642. height: math.unit(15, "kilometers")
  7643. }
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(6, "feet"),
  7651. weight: math.unit(256, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/dannik/front.svg"
  7655. }
  7656. }
  7657. },
  7658. [
  7659. {
  7660. name: "Macro",
  7661. height: math.unit(69.57, "meters"),
  7662. default: true
  7663. },
  7664. ]
  7665. ))
  7666. characterMakers.push(() => makeCharacter(
  7667. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7668. {
  7669. front: {
  7670. height: math.unit(6, "feet"),
  7671. weight: math.unit(120, "lbs"),
  7672. name: "Front",
  7673. image: {
  7674. source: "./media/characters/azura-saharah/front.svg"
  7675. }
  7676. },
  7677. back: {
  7678. height: math.unit(6, "feet"),
  7679. weight: math.unit(120, "lbs"),
  7680. name: "Back",
  7681. image: {
  7682. source: "./media/characters/azura-saharah/back.svg"
  7683. }
  7684. },
  7685. },
  7686. [
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "feet"),
  7690. default: true
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7696. {
  7697. side: {
  7698. height: math.unit(5 + 4 / 12, "feet"),
  7699. weight: math.unit(163, "lbs"),
  7700. name: "Side",
  7701. image: {
  7702. source: "./media/characters/kennedy/side.svg"
  7703. }
  7704. }
  7705. },
  7706. [
  7707. {
  7708. name: "Standard Doggo",
  7709. height: math.unit(5 + 4 / 12, "feet")
  7710. },
  7711. {
  7712. name: "Big Doggo",
  7713. height: math.unit(25 + 3 / 12, "feet"),
  7714. default: true
  7715. },
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7720. {
  7721. front: {
  7722. height: math.unit(5 + 5/12, "feet"),
  7723. weight: math.unit(100, "lbs"),
  7724. name: "Front",
  7725. image: {
  7726. source: "./media/characters/odios-de-lunar/front.svg",
  7727. extra: 1468/1323,
  7728. bottom: 22/1490
  7729. }
  7730. }
  7731. },
  7732. [
  7733. {
  7734. name: "Micro",
  7735. height: math.unit(3, "inches")
  7736. },
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(5.5, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(100, "feet")
  7745. },
  7746. ]
  7747. ))
  7748. characterMakers.push(() => makeCharacter(
  7749. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7750. {
  7751. back: {
  7752. height: math.unit(6, "feet"),
  7753. weight: math.unit(220, "lbs"),
  7754. name: "Back",
  7755. image: {
  7756. source: "./media/characters/mandake/back.svg"
  7757. }
  7758. }
  7759. },
  7760. [
  7761. {
  7762. name: "Normal",
  7763. height: math.unit(7, "feet"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro",
  7768. height: math.unit(78, "feet")
  7769. },
  7770. {
  7771. name: "Macro+",
  7772. height: math.unit(300, "meters")
  7773. },
  7774. {
  7775. name: "Macro++",
  7776. height: math.unit(2400, "feet")
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(5167, "meters")
  7781. },
  7782. {
  7783. name: "Gigamacro",
  7784. height: math.unit(41769, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(120, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/yozey/front.svg"
  7797. }
  7798. },
  7799. frontAlt: {
  7800. height: math.unit(6, "feet"),
  7801. weight: math.unit(120, "lbs"),
  7802. name: "Front (Alt)",
  7803. image: {
  7804. source: "./media/characters/yozey/front-alt.svg"
  7805. }
  7806. },
  7807. side: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(120, "lbs"),
  7810. name: "Side",
  7811. image: {
  7812. source: "./media/characters/yozey/side.svg"
  7813. }
  7814. },
  7815. },
  7816. [
  7817. {
  7818. name: "Micro",
  7819. height: math.unit(3, "inches"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Normal",
  7824. height: math.unit(6, "feet")
  7825. }
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(103, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/valeska-voss/front.svg"
  7837. }
  7838. }
  7839. },
  7840. [
  7841. {
  7842. name: "Mini-Sized Sub",
  7843. height: math.unit(3.1, "inches")
  7844. },
  7845. {
  7846. name: "Mid-Sized Sub",
  7847. height: math.unit(6.2, "inches")
  7848. },
  7849. {
  7850. name: "Full-Sized Sub",
  7851. height: math.unit(9.3, "inches")
  7852. },
  7853. {
  7854. name: "Normal",
  7855. height: math.unit(5 + 2 / 12, "foot"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7862. {
  7863. front: {
  7864. height: math.unit(6, "feet"),
  7865. weight: math.unit(160, "lbs"),
  7866. name: "Front",
  7867. image: {
  7868. source: "./media/characters/gene-zeta/front.svg",
  7869. extra: 3006 / 2826,
  7870. bottom: 182 / 3188
  7871. }
  7872. }
  7873. },
  7874. [
  7875. {
  7876. name: "Micro",
  7877. height: math.unit(6, "inches")
  7878. },
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(5 + 11 / 12, "foot"),
  7882. default: true
  7883. },
  7884. {
  7885. name: "Macro",
  7886. height: math.unit(140, "feet")
  7887. },
  7888. {
  7889. name: "Supercharged",
  7890. height: math.unit(2500, "feet")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(350, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/razinox/front.svg",
  7903. extra: 1686 / 1548,
  7904. bottom: 28.2 / 1868
  7905. }
  7906. },
  7907. back: {
  7908. height: math.unit(6, "feet"),
  7909. weight: math.unit(350, "lbs"),
  7910. name: "Back",
  7911. image: {
  7912. source: "./media/characters/razinox/back.svg",
  7913. extra: 1660 / 1590,
  7914. bottom: 15 / 1665
  7915. }
  7916. },
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(10 + 8 / 12, "foot")
  7922. },
  7923. {
  7924. name: "Minimacro",
  7925. height: math.unit(15, "foot")
  7926. },
  7927. {
  7928. name: "Macro",
  7929. height: math.unit(60, "foot"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Megamacro",
  7934. height: math.unit(5, "miles")
  7935. },
  7936. {
  7937. name: "Gigamacro",
  7938. height: math.unit(6000, "miles")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(6, "feet"),
  7947. weight: math.unit(150, "lbs"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/cobalt/front.svg"
  7951. }
  7952. }
  7953. },
  7954. [
  7955. {
  7956. name: "Normal",
  7957. height: math.unit(8 + 1 / 12, "foot")
  7958. },
  7959. {
  7960. name: "Macro",
  7961. height: math.unit(111, "foot"),
  7962. default: true
  7963. },
  7964. {
  7965. name: "Supracosmic",
  7966. height: math.unit(1e42, "feet")
  7967. },
  7968. ]
  7969. ))
  7970. characterMakers.push(() => makeCharacter(
  7971. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7972. {
  7973. front: {
  7974. height: math.unit(5, "inches"),
  7975. name: "Front",
  7976. image: {
  7977. source: "./media/characters/amanda/front.svg",
  7978. extra: 926/791,
  7979. bottom: 38/964
  7980. }
  7981. },
  7982. back: {
  7983. height: math.unit(5, "inches"),
  7984. name: "Back",
  7985. image: {
  7986. source: "./media/characters/amanda/back.svg",
  7987. extra: 909/805,
  7988. bottom: 43/952
  7989. }
  7990. },
  7991. },
  7992. [
  7993. {
  7994. name: "Micro",
  7995. height: math.unit(5, "inches"),
  7996. default: true
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(2.75, "meters"),
  8005. weight: math.unit(1200, "lb"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/teal/front.svg",
  8009. extra: 2463 / 2320,
  8010. bottom: 166 / 2629
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(2.75, "meters"),
  8015. weight: math.unit(1200, "lb"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/teal/back.svg",
  8019. extra: 2580 / 2489,
  8020. bottom: 151 / 2731
  8021. }
  8022. },
  8023. sitting: {
  8024. height: math.unit(1.9, "meters"),
  8025. weight: math.unit(1200, "lb"),
  8026. name: "Sitting",
  8027. image: {
  8028. source: "./media/characters/teal/sitting.svg",
  8029. extra: 623 / 590,
  8030. bottom: 121 / 744
  8031. }
  8032. },
  8033. standing: {
  8034. height: math.unit(2.75, "meters"),
  8035. weight: math.unit(1200, "lb"),
  8036. name: "Standing",
  8037. image: {
  8038. source: "./media/characters/teal/standing.svg",
  8039. extra: 923 / 893,
  8040. bottom: 60 / 983
  8041. }
  8042. },
  8043. stretching: {
  8044. height: math.unit(3.65, "meters"),
  8045. weight: math.unit(1200, "lb"),
  8046. name: "Stretching",
  8047. image: {
  8048. source: "./media/characters/teal/stretching.svg",
  8049. extra: 1276 / 1244,
  8050. bottom: 0 / 1276
  8051. }
  8052. },
  8053. legged: {
  8054. height: math.unit(1.3, "meters"),
  8055. weight: math.unit(100, "lb"),
  8056. name: "Legged",
  8057. image: {
  8058. source: "./media/characters/teal/legged.svg",
  8059. extra: 462 / 437,
  8060. bottom: 24 / 486
  8061. }
  8062. },
  8063. naga: {
  8064. height: math.unit(5.4, "meters"),
  8065. weight: math.unit(4000, "lb"),
  8066. name: "Naga",
  8067. image: {
  8068. source: "./media/characters/teal/naga.svg",
  8069. extra: 1902 / 1858,
  8070. bottom: 0 / 1902
  8071. }
  8072. },
  8073. hand: {
  8074. height: math.unit(0.52, "meters"),
  8075. name: "Hand",
  8076. image: {
  8077. source: "./media/characters/teal/hand.svg"
  8078. }
  8079. },
  8080. maw: {
  8081. height: math.unit(0.43, "meters"),
  8082. name: "Maw",
  8083. image: {
  8084. source: "./media/characters/teal/maw.svg"
  8085. }
  8086. },
  8087. slit: {
  8088. height: math.unit(0.25, "meters"),
  8089. name: "Slit",
  8090. image: {
  8091. source: "./media/characters/teal/slit.svg"
  8092. }
  8093. },
  8094. },
  8095. [
  8096. {
  8097. name: "Normal",
  8098. height: math.unit(2.75, "meters"),
  8099. default: true
  8100. },
  8101. {
  8102. name: "Macro",
  8103. height: math.unit(300, "feet")
  8104. },
  8105. {
  8106. name: "Macro+",
  8107. height: math.unit(2000, "feet")
  8108. },
  8109. ]
  8110. ))
  8111. characterMakers.push(() => makeCharacter(
  8112. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8113. {
  8114. frontCat: {
  8115. height: math.unit(6, "feet"),
  8116. weight: math.unit(180, "lbs"),
  8117. name: "Front (Cat)",
  8118. image: {
  8119. source: "./media/characters/ravin-amulet/front-cat.svg"
  8120. }
  8121. },
  8122. frontCatAlt: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(180, "lbs"),
  8125. name: "Front (Alt, Cat)",
  8126. image: {
  8127. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8128. }
  8129. },
  8130. frontWerewolf: {
  8131. height: math.unit(6 * 1.2, "feet"),
  8132. weight: math.unit(225, "lbs"),
  8133. name: "Front (Werewolf)",
  8134. image: {
  8135. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8136. }
  8137. },
  8138. backWerewolf: {
  8139. height: math.unit(6 * 1.2, "feet"),
  8140. weight: math.unit(225, "lbs"),
  8141. name: "Back (Werewolf)",
  8142. image: {
  8143. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8144. }
  8145. },
  8146. },
  8147. [
  8148. {
  8149. name: "Nano",
  8150. height: math.unit(1, "micrometer")
  8151. },
  8152. {
  8153. name: "Micro",
  8154. height: math.unit(1, "inch")
  8155. },
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(6, "feet"),
  8159. default: true
  8160. },
  8161. {
  8162. name: "Macro",
  8163. height: math.unit(60, "feet")
  8164. }
  8165. ]
  8166. ))
  8167. characterMakers.push(() => makeCharacter(
  8168. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8169. {
  8170. front: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(165, "lbs"),
  8173. name: "Front",
  8174. image: {
  8175. source: "./media/characters/fluoresce/front.svg"
  8176. }
  8177. }
  8178. },
  8179. [
  8180. {
  8181. name: "Micro",
  8182. height: math.unit(6, "cm")
  8183. },
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 7 / 12, "feet"),
  8187. default: true
  8188. },
  8189. {
  8190. name: "Macro",
  8191. height: math.unit(56, "feet")
  8192. },
  8193. {
  8194. name: "Megamacro",
  8195. height: math.unit(1.9, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(9 + 6 / 12, "feet"),
  8204. weight: math.unit(523, "lbs"),
  8205. name: "Side",
  8206. image: {
  8207. source: "./media/characters/aurora/side.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(9 + 6 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(96, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Macro+",
  8223. height: math.unit(243, "feet")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(194, "cm"),
  8232. weight: math.unit(90, "kg"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/ranek/front.svg",
  8236. extra: 1862/1791,
  8237. bottom: 80/1942
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(194, "cm"),
  8242. weight: math.unit(90, "kg"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/ranek/back.svg",
  8246. extra: 1853/1787,
  8247. bottom: 74/1927
  8248. }
  8249. },
  8250. feral: {
  8251. height: math.unit(30, "cm"),
  8252. weight: math.unit(1.6, "lbs"),
  8253. name: "Feral",
  8254. image: {
  8255. source: "./media/characters/ranek/feral.svg",
  8256. extra: 990/631,
  8257. bottom: 29/1019
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(194, "cm"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(100, "meters")
  8270. },
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(5 + 6 / 12, "feet"),
  8278. weight: math.unit(153, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/andrew-cooper/front.svg"
  8282. }
  8283. },
  8284. },
  8285. [
  8286. {
  8287. name: "Nano",
  8288. height: math.unit(1, "mm")
  8289. },
  8290. {
  8291. name: "Micro",
  8292. height: math.unit(2, "inches")
  8293. },
  8294. {
  8295. name: "Normal",
  8296. height: math.unit(5 + 6 / 12, "feet"),
  8297. default: true
  8298. }
  8299. ]
  8300. ))
  8301. characterMakers.push(() => makeCharacter(
  8302. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8303. {
  8304. front: {
  8305. height: math.unit(6, "feet"),
  8306. weight: math.unit(180, "lbs"),
  8307. name: "Front",
  8308. image: {
  8309. source: "./media/characters/akane-sato/front.svg",
  8310. extra: 1219 / 1140
  8311. }
  8312. },
  8313. back: {
  8314. height: math.unit(6, "feet"),
  8315. weight: math.unit(180, "lbs"),
  8316. name: "Back",
  8317. image: {
  8318. source: "./media/characters/akane-sato/back.svg",
  8319. extra: 1219 / 1170
  8320. }
  8321. },
  8322. },
  8323. [
  8324. {
  8325. name: "Normal",
  8326. height: math.unit(2.5, "meters")
  8327. },
  8328. {
  8329. name: "Macro",
  8330. height: math.unit(250, "meters"),
  8331. default: true
  8332. },
  8333. {
  8334. name: "Megamacro",
  8335. height: math.unit(25, "km")
  8336. },
  8337. ]
  8338. ))
  8339. characterMakers.push(() => makeCharacter(
  8340. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8341. {
  8342. front: {
  8343. height: math.unit(6, "feet"),
  8344. weight: math.unit(65, "kg"),
  8345. name: "Front",
  8346. image: {
  8347. source: "./media/characters/rook/front.svg",
  8348. extra: 960 / 950
  8349. }
  8350. }
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(8.8, "feet")
  8356. },
  8357. {
  8358. name: "Macro",
  8359. height: math.unit(88, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(8, "miles")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(12 + 2 / 12, "feet"),
  8373. weight: math.unit(808, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/prodigy/front.svg"
  8377. }
  8378. }
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(12 + 2 / 12, "feet"),
  8384. default: true
  8385. },
  8386. {
  8387. name: "Macro",
  8388. height: math.unit(143, "feet")
  8389. },
  8390. {
  8391. name: "Macro+",
  8392. height: math.unit(400, "feet")
  8393. },
  8394. ]
  8395. ))
  8396. characterMakers.push(() => makeCharacter(
  8397. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8398. {
  8399. front: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(225, "lbs"),
  8402. name: "Front",
  8403. image: {
  8404. source: "./media/characters/daniel/front.svg"
  8405. }
  8406. },
  8407. leaning: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(225, "lbs"),
  8410. name: "Leaning",
  8411. image: {
  8412. source: "./media/characters/daniel/leaning.svg"
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Macro",
  8419. height: math.unit(1000, "feet"),
  8420. default: true
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(88, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/chiros/front.svg",
  8433. extra: 306 / 226
  8434. }
  8435. },
  8436. side: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(88, "lbs"),
  8439. name: "Side",
  8440. image: {
  8441. source: "./media/characters/chiros/side.svg",
  8442. extra: 306 / 226
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(6, "cm"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8456. {
  8457. front: {
  8458. height: math.unit(6, "feet"),
  8459. weight: math.unit(100, "lbs"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/selka/front.svg",
  8463. extra: 947 / 887
  8464. }
  8465. }
  8466. },
  8467. [
  8468. {
  8469. name: "Normal",
  8470. height: math.unit(5, "cm"),
  8471. default: true
  8472. },
  8473. ]
  8474. ))
  8475. characterMakers.push(() => makeCharacter(
  8476. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8477. {
  8478. front: {
  8479. height: math.unit(8 + 3 / 12, "feet"),
  8480. weight: math.unit(424, "lbs"),
  8481. name: "Front",
  8482. image: {
  8483. source: "./media/characters/verin/front.svg",
  8484. extra: 1845 / 1550
  8485. }
  8486. },
  8487. frontArmored: {
  8488. height: math.unit(8 + 3 / 12, "feet"),
  8489. weight: math.unit(424, "lbs"),
  8490. name: "Front (Armored)",
  8491. image: {
  8492. source: "./media/characters/verin/front-armor.svg",
  8493. extra: 1845 / 1550,
  8494. bottom: 0.01
  8495. }
  8496. },
  8497. back: {
  8498. height: math.unit(8 + 3 / 12, "feet"),
  8499. weight: math.unit(424, "lbs"),
  8500. name: "Back",
  8501. image: {
  8502. source: "./media/characters/verin/back.svg",
  8503. bottom: 0.1,
  8504. extra: 1
  8505. }
  8506. },
  8507. foot: {
  8508. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8509. name: "Foot",
  8510. image: {
  8511. source: "./media/characters/verin/foot.svg"
  8512. }
  8513. },
  8514. },
  8515. [
  8516. {
  8517. name: "Normal",
  8518. height: math.unit(8 + 3 / 12, "feet")
  8519. },
  8520. {
  8521. name: "Minimacro",
  8522. height: math.unit(21, "feet"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(626, "feet")
  8528. },
  8529. ]
  8530. ))
  8531. characterMakers.push(() => makeCharacter(
  8532. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8533. {
  8534. front: {
  8535. height: math.unit(2.718, "meters"),
  8536. weight: math.unit(150, "lbs"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/sovrim-terraquian/front.svg",
  8540. extra: 1752/1689,
  8541. bottom: 36/1788
  8542. }
  8543. },
  8544. back: {
  8545. height: math.unit(2.718, "meters"),
  8546. weight: math.unit(150, "lbs"),
  8547. name: "Back",
  8548. image: {
  8549. source: "./media/characters/sovrim-terraquian/back.svg",
  8550. extra: 1698/1657,
  8551. bottom: 58/1756
  8552. }
  8553. },
  8554. tongue: {
  8555. height: math.unit(2.865, "feet"),
  8556. name: "Tongue",
  8557. image: {
  8558. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8559. }
  8560. },
  8561. hand: {
  8562. height: math.unit(1.61, "feet"),
  8563. name: "Hand",
  8564. image: {
  8565. source: "./media/characters/sovrim-terraquian/hand.svg"
  8566. }
  8567. },
  8568. foot: {
  8569. height: math.unit(1.05, "feet"),
  8570. name: "Foot",
  8571. image: {
  8572. source: "./media/characters/sovrim-terraquian/foot.svg"
  8573. }
  8574. },
  8575. footAlt: {
  8576. height: math.unit(0.88, "feet"),
  8577. name: "Foot (Alt)",
  8578. image: {
  8579. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Micro",
  8586. height: math.unit(2, "inches")
  8587. },
  8588. {
  8589. name: "Small",
  8590. height: math.unit(1, "meter")
  8591. },
  8592. {
  8593. name: "Normal",
  8594. height: math.unit(Math.E, "meters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Macro",
  8599. height: math.unit(20, "meters")
  8600. },
  8601. {
  8602. name: "Macro+",
  8603. height: math.unit(400, "meters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8609. {
  8610. front: {
  8611. height: math.unit(7, "feet"),
  8612. weight: math.unit(489, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/reece-silvermane/front.svg",
  8616. bottom: 0.02,
  8617. extra: 1
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Macro",
  8624. height: math.unit(1.5, "miles"),
  8625. default: true
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(6, "feet"),
  8634. weight: math.unit(78, "kg"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/kane/front.svg",
  8638. extra: 978 / 899
  8639. }
  8640. },
  8641. },
  8642. [
  8643. {
  8644. name: "Normal",
  8645. height: math.unit(2.1, "m"),
  8646. },
  8647. {
  8648. name: "Macro",
  8649. height: math.unit(1, "km"),
  8650. default: true
  8651. },
  8652. ]
  8653. ))
  8654. characterMakers.push(() => makeCharacter(
  8655. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8656. {
  8657. front: {
  8658. height: math.unit(6, "feet"),
  8659. weight: math.unit(200, "kg"),
  8660. name: "Front",
  8661. image: {
  8662. source: "./media/characters/tegon/front.svg",
  8663. bottom: 0.01,
  8664. extra: 1
  8665. }
  8666. },
  8667. },
  8668. [
  8669. {
  8670. name: "Micro",
  8671. height: math.unit(1, "inch")
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(6 + 3 / 12, "feet"),
  8676. default: true
  8677. },
  8678. {
  8679. name: "Macro",
  8680. height: math.unit(300, "feet")
  8681. },
  8682. {
  8683. name: "Megamacro",
  8684. height: math.unit(69, "miles")
  8685. },
  8686. ]
  8687. ))
  8688. characterMakers.push(() => makeCharacter(
  8689. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8690. {
  8691. side: {
  8692. height: math.unit(6, "feet"),
  8693. weight: math.unit(2304, "lbs"),
  8694. name: "Side",
  8695. image: {
  8696. source: "./media/characters/arcturax/side.svg",
  8697. extra: 790 / 376,
  8698. bottom: 0.01
  8699. }
  8700. },
  8701. },
  8702. [
  8703. {
  8704. name: "Micro",
  8705. height: math.unit(2, "inch")
  8706. },
  8707. {
  8708. name: "Normal",
  8709. height: math.unit(6, "feet")
  8710. },
  8711. {
  8712. name: "Macro",
  8713. height: math.unit(39, "feet"),
  8714. default: true
  8715. },
  8716. {
  8717. name: "Megamacro",
  8718. height: math.unit(7, "miles")
  8719. },
  8720. ]
  8721. ))
  8722. characterMakers.push(() => makeCharacter(
  8723. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8724. {
  8725. front: {
  8726. height: math.unit(6, "feet"),
  8727. weight: math.unit(50, "lbs"),
  8728. name: "Front",
  8729. image: {
  8730. source: "./media/characters/sentri/front.svg",
  8731. extra: 1750 / 1570,
  8732. bottom: 0.025
  8733. }
  8734. },
  8735. frontAlt: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(50, "lbs"),
  8738. name: "Front (Alt)",
  8739. image: {
  8740. source: "./media/characters/sentri/front-alt.svg",
  8741. extra: 1750 / 1570,
  8742. bottom: 0.025
  8743. }
  8744. },
  8745. },
  8746. [
  8747. {
  8748. name: "Normal",
  8749. height: math.unit(15, "feet"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "Macro",
  8754. height: math.unit(2500, "feet")
  8755. }
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 8 / 12, "feet"),
  8763. weight: math.unit(130, "lbs"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/corvin/front.svg",
  8767. extra: 1803 / 1629
  8768. }
  8769. },
  8770. frontShirt: {
  8771. height: math.unit(5 + 8 / 12, "feet"),
  8772. weight: math.unit(130, "lbs"),
  8773. name: "Front (Shirt)",
  8774. image: {
  8775. source: "./media/characters/corvin/front-shirt.svg",
  8776. extra: 1803 / 1629
  8777. }
  8778. },
  8779. frontPoncho: {
  8780. height: math.unit(5 + 8 / 12, "feet"),
  8781. weight: math.unit(130, "lbs"),
  8782. name: "Front (Poncho)",
  8783. image: {
  8784. source: "./media/characters/corvin/front-poncho.svg",
  8785. extra: 1803 / 1629
  8786. }
  8787. },
  8788. side: {
  8789. height: math.unit(5 + 8 / 12, "feet"),
  8790. weight: math.unit(130, "lbs"),
  8791. name: "Side",
  8792. image: {
  8793. source: "./media/characters/corvin/side.svg",
  8794. extra: 1012 / 945
  8795. }
  8796. },
  8797. back: {
  8798. height: math.unit(5 + 8 / 12, "feet"),
  8799. weight: math.unit(130, "lbs"),
  8800. name: "Back",
  8801. image: {
  8802. source: "./media/characters/corvin/back.svg",
  8803. extra: 1803 / 1629
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(3, "inches")
  8811. },
  8812. {
  8813. name: "Normal",
  8814. height: math.unit(5 + 8 / 12, "feet")
  8815. },
  8816. {
  8817. name: "Macro",
  8818. height: math.unit(300, "feet"),
  8819. default: true
  8820. },
  8821. {
  8822. name: "Megamacro",
  8823. height: math.unit(500, "miles")
  8824. }
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8829. {
  8830. front: {
  8831. height: math.unit(6, "feet"),
  8832. weight: math.unit(135, "lbs"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/q/front.svg",
  8836. extra: 854 / 752,
  8837. bottom: 0.005
  8838. }
  8839. },
  8840. back: {
  8841. height: math.unit(6, "feet"),
  8842. weight: math.unit(130, "lbs"),
  8843. name: "Back",
  8844. image: {
  8845. source: "./media/characters/q/back.svg",
  8846. extra: 854 / 752
  8847. }
  8848. },
  8849. },
  8850. [
  8851. {
  8852. name: "Macro",
  8853. height: math.unit(90, "feet"),
  8854. default: true
  8855. },
  8856. {
  8857. name: "Extra Macro",
  8858. height: math.unit(300, "feet"),
  8859. },
  8860. {
  8861. name: "BIG WALF",
  8862. height: math.unit(750, "feet"),
  8863. },
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(3, "feet"),
  8871. weight: math.unit(28, "lbs"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/citrine/front.svg"
  8875. }
  8876. }
  8877. },
  8878. [
  8879. {
  8880. name: "Normal",
  8881. height: math.unit(3, "feet"),
  8882. default: true
  8883. }
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8888. {
  8889. front: {
  8890. height: math.unit(14, "feet"),
  8891. weight: math.unit(1450, "kg"),
  8892. preyCapacity: math.unit(15, "people"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/aura-starwind/front.svg",
  8896. extra: 1440/1327,
  8897. bottom: 11/1451
  8898. }
  8899. },
  8900. side: {
  8901. height: math.unit(14, "feet"),
  8902. weight: math.unit(1450, "kg"),
  8903. preyCapacity: math.unit(15, "people"),
  8904. name: "Side",
  8905. image: {
  8906. source: "./media/characters/aura-starwind/side.svg",
  8907. extra: 1654 / 1497
  8908. }
  8909. },
  8910. taur: {
  8911. height: math.unit(18, "feet"),
  8912. weight: math.unit(5500, "kg"),
  8913. preyCapacity: math.unit(50, "people"),
  8914. name: "Taur",
  8915. image: {
  8916. source: "./media/characters/aura-starwind/taur.svg",
  8917. extra: 1760 / 1650
  8918. }
  8919. },
  8920. feral: {
  8921. height: math.unit(46, "feet"),
  8922. weight: math.unit(25000, "kg"),
  8923. preyCapacity: math.unit(120, "people"),
  8924. name: "Feral",
  8925. image: {
  8926. source: "./media/characters/aura-starwind/feral.svg"
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(14, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Macro",
  8938. height: math.unit(50, "meters")
  8939. },
  8940. {
  8941. name: "Megamacro",
  8942. height: math.unit(5000, "meters")
  8943. },
  8944. {
  8945. name: "Gigamacro",
  8946. height: math.unit(100000, "kilometers")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(2 + 7 / 12, "feet"),
  8955. weight: math.unit(32, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/rivet/front.svg",
  8959. extra: 1716 / 1658,
  8960. bottom: 0.03
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(0.551, "feet"),
  8965. name: "Rivet's Foot",
  8966. image: {
  8967. source: "./media/characters/rivet/foot.svg"
  8968. },
  8969. rename: true
  8970. }
  8971. },
  8972. [
  8973. {
  8974. name: "Micro",
  8975. height: math.unit(1.5, "inches"),
  8976. },
  8977. {
  8978. name: "Normal",
  8979. height: math.unit(2 + 7 / 12, "feet"),
  8980. default: true
  8981. },
  8982. {
  8983. name: "Macro",
  8984. height: math.unit(85, "feet")
  8985. },
  8986. {
  8987. name: "Megamacro",
  8988. height: math.unit(2.2, "km")
  8989. }
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(5 + 9 / 12, "feet"),
  8997. weight: math.unit(150, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/coffee/front.svg",
  9001. extra: 3666 / 3032,
  9002. bottom: 0.04
  9003. }
  9004. },
  9005. foot: {
  9006. height: math.unit(1.29, "feet"),
  9007. name: "Foot",
  9008. image: {
  9009. source: "./media/characters/coffee/foot.svg"
  9010. }
  9011. },
  9012. },
  9013. [
  9014. {
  9015. name: "Micro",
  9016. height: math.unit(2, "inches"),
  9017. },
  9018. {
  9019. name: "Normal",
  9020. height: math.unit(5 + 9 / 12, "feet"),
  9021. default: true
  9022. },
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(800, "feet")
  9026. },
  9027. {
  9028. name: "Megamacro",
  9029. height: math.unit(25, "miles")
  9030. }
  9031. ]
  9032. ))
  9033. characterMakers.push(() => makeCharacter(
  9034. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9035. {
  9036. front: {
  9037. height: math.unit(6, "feet"),
  9038. weight: math.unit(200, "lbs"),
  9039. name: "Front",
  9040. image: {
  9041. source: "./media/characters/chari-gal/front.svg",
  9042. extra: 1568 / 1385,
  9043. bottom: 0.047
  9044. }
  9045. },
  9046. gigantamax: {
  9047. height: math.unit(6 * 16, "feet"),
  9048. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9049. name: "Gigantamax",
  9050. image: {
  9051. source: "./media/characters/chari-gal/gigantamax.svg",
  9052. extra: 1124 / 888,
  9053. bottom: 0.03
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(5 + 7 / 12, "feet")
  9061. },
  9062. {
  9063. name: "Macro",
  9064. height: math.unit(200, "feet"),
  9065. default: true
  9066. }
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(6, "feet"),
  9074. weight: math.unit(150, "lbs"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/nova/front.svg",
  9078. extra: 5000 / 4722,
  9079. bottom: 0.02
  9080. }
  9081. }
  9082. },
  9083. [
  9084. {
  9085. name: "Micro-",
  9086. height: math.unit(0.8, "inches")
  9087. },
  9088. {
  9089. name: "Micro",
  9090. height: math.unit(2, "inches"),
  9091. default: true
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(3 + 1 / 12, "feet"),
  9100. weight: math.unit(21.7, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/argent/front.svg",
  9104. extra: 1471 / 1331,
  9105. bottom: 100.8 / 1575.5
  9106. }
  9107. }
  9108. },
  9109. [
  9110. {
  9111. name: "Micro",
  9112. height: math.unit(2, "inches")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(3 + 1 / 12, "feet"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(120, "feet")
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9127. {
  9128. lamp: {
  9129. height: math.unit(7 * 1559 / 989, "feet"),
  9130. name: "Magic Lamp",
  9131. image: {
  9132. source: "./media/characters/mira-al-cul/lamp.svg",
  9133. extra: 1617 / 1559
  9134. }
  9135. },
  9136. front: {
  9137. height: math.unit(7, "feet"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/mira-al-cul/front.svg",
  9141. extra: 1044 / 990
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Heavily Restricted",
  9148. height: math.unit(7 * 1559 / 989, "feet")
  9149. },
  9150. {
  9151. name: "Freshly Freed",
  9152. height: math.unit(50 * 1559 / 989, "feet")
  9153. },
  9154. {
  9155. name: "World Encompassing",
  9156. height: math.unit(10000 * 1559 / 989, "miles")
  9157. },
  9158. {
  9159. name: "Galactic",
  9160. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9161. },
  9162. {
  9163. name: "Palmed Universe",
  9164. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Multiversal Matriarch",
  9169. height: math.unit(8.87e10, "yottameters")
  9170. },
  9171. {
  9172. name: "Void Mother",
  9173. height: math.unit(3.14e110, "yottaparsecs")
  9174. },
  9175. {
  9176. name: "Toying with Transcendence",
  9177. height: math.unit(1e307, "meters")
  9178. },
  9179. ]
  9180. ))
  9181. characterMakers.push(() => makeCharacter(
  9182. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9183. {
  9184. front: {
  9185. height: math.unit(17 + 1 / 12, "feet"),
  9186. weight: math.unit(476.2 * 5, "lbs"),
  9187. name: "Front",
  9188. image: {
  9189. source: "./media/characters/kuro-shi-uchū/front.svg",
  9190. extra: 2329 / 1835,
  9191. bottom: 0.02
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(2, "inches")
  9199. },
  9200. {
  9201. name: "Normal",
  9202. height: math.unit(12, "meters")
  9203. },
  9204. {
  9205. name: "Planetary",
  9206. height: math.unit(0.00929, "AU"),
  9207. default: true
  9208. },
  9209. {
  9210. name: "Universal",
  9211. height: math.unit(20, "gigaparsecs")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(5 + 2 / 12, "feet"),
  9220. weight: math.unit(120, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/katherine/front.svg",
  9224. extra: 2075 / 1969
  9225. }
  9226. },
  9227. dress: {
  9228. height: math.unit(5 + 2 / 12, "feet"),
  9229. weight: math.unit(120, "lbs"),
  9230. name: "Dress",
  9231. image: {
  9232. source: "./media/characters/katherine/dress.svg",
  9233. extra: 2258 / 2064
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(1, "inches"),
  9241. default: true
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 2 / 12, "feet")
  9246. },
  9247. {
  9248. name: "Macro",
  9249. height: math.unit(100, "meters")
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(80, "miles")
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(7 + 8 / 12, "feet"),
  9262. weight: math.unit(250, "lbs"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/yevis/front.svg",
  9266. extra: 1938 / 1755
  9267. }
  9268. }
  9269. },
  9270. [
  9271. {
  9272. name: "Mortal",
  9273. height: math.unit(7 + 8 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Battle",
  9277. height: math.unit(25 + 11 / 12, "feet")
  9278. },
  9279. {
  9280. name: "Wrath",
  9281. height: math.unit(1654 + 11 / 12, "feet")
  9282. },
  9283. {
  9284. name: "Planet Destroyer",
  9285. height: math.unit(12000, "miles")
  9286. },
  9287. {
  9288. name: "Galaxy Conqueror",
  9289. height: math.unit(1.45, "zettameters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Universal War",
  9294. height: math.unit(184, "gigaparsecs")
  9295. },
  9296. {
  9297. name: "Eternity War",
  9298. height: math.unit(1.98e55, "yottaparsecs")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(5 + 8 / 12, "feet"),
  9307. weight: math.unit(63, "kg"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/xavier/front.svg",
  9311. extra: 944 / 883
  9312. }
  9313. },
  9314. frontStretch: {
  9315. height: math.unit(5 + 8 / 12, "feet"),
  9316. weight: math.unit(63, "kg"),
  9317. name: "Stretching",
  9318. image: {
  9319. source: "./media/characters/xavier/front-stretch.svg",
  9320. extra: 962 / 820
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(5 + 8 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(100, "meters"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "McLargeHuge",
  9336. height: math.unit(10, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9342. {
  9343. front: {
  9344. height: math.unit(5 + 5 / 12, "feet"),
  9345. weight: math.unit(150, "lb"),
  9346. name: "Front",
  9347. image: {
  9348. source: "./media/characters/joshii/front.svg",
  9349. extra: 765 / 653,
  9350. bottom: 51 / 816
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/joshii/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Micro",
  9364. height: math.unit(2, "inches"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(5 + 5 / 12, "feet")
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(785, "feet")
  9374. },
  9375. {
  9376. name: "Megamacro",
  9377. height: math.unit(24.5, "miles")
  9378. },
  9379. ]
  9380. ))
  9381. characterMakers.push(() => makeCharacter(
  9382. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9383. {
  9384. front: {
  9385. height: math.unit(6, "feet"),
  9386. weight: math.unit(150, "lb"),
  9387. name: "Front",
  9388. image: {
  9389. source: "./media/characters/goddess-elizabeth/front.svg",
  9390. extra: 1800 / 1525,
  9391. bottom: 0.005
  9392. }
  9393. },
  9394. foot: {
  9395. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9396. name: "Foot",
  9397. image: {
  9398. source: "./media/characters/goddess-elizabeth/foot.svg"
  9399. }
  9400. },
  9401. mouth: {
  9402. height: math.unit(6, "feet"),
  9403. name: "Mouth",
  9404. image: {
  9405. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9406. }
  9407. },
  9408. },
  9409. [
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(12, "feet")
  9413. },
  9414. {
  9415. name: "Normal",
  9416. height: math.unit(80, "miles"),
  9417. default: true
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(15000, "parsecs")
  9422. },
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9427. {
  9428. front: {
  9429. height: math.unit(5 + 9 / 12, "feet"),
  9430. weight: math.unit(144, "lb"),
  9431. name: "Front",
  9432. image: {
  9433. source: "./media/characters/kara/front.svg"
  9434. }
  9435. },
  9436. feet: {
  9437. height: math.unit(6 / 6.765, "feet"),
  9438. name: "Kara's Feet",
  9439. rename: true,
  9440. image: {
  9441. source: "./media/characters/kara/feet.svg"
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Normal",
  9448. height: math.unit(5 + 9 / 12, "feet")
  9449. },
  9450. {
  9451. name: "Macro",
  9452. height: math.unit(174, "feet"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(18, "feet"),
  9462. weight: math.unit(4050, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/tyrone/front.svg",
  9466. extra: 2405 / 2270,
  9467. bottom: 182 / 2587
  9468. }
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Normal",
  9474. height: math.unit(18, "feet"),
  9475. default: true
  9476. },
  9477. {
  9478. name: "Macro",
  9479. height: math.unit(300, "feet")
  9480. },
  9481. {
  9482. name: "Megamacro",
  9483. height: math.unit(15, "km")
  9484. },
  9485. {
  9486. name: "Gigamacro",
  9487. height: math.unit(500, "km")
  9488. },
  9489. {
  9490. name: "Teramacro",
  9491. height: math.unit(0.5, "gigameters")
  9492. },
  9493. {
  9494. name: "Omnimacro",
  9495. height: math.unit(1e252, "yottauniverse")
  9496. },
  9497. ]
  9498. ))
  9499. characterMakers.push(() => makeCharacter(
  9500. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9501. {
  9502. front: {
  9503. height: math.unit(7 + 8 / 12, "feet"),
  9504. weight: math.unit(120, "lb"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/danny/front.svg",
  9508. extra: 1490 / 1350
  9509. }
  9510. },
  9511. back: {
  9512. height: math.unit(7 + 8 / 12, "feet"),
  9513. weight: math.unit(120, "lb"),
  9514. name: "Back",
  9515. image: {
  9516. source: "./media/characters/danny/back.svg",
  9517. extra: 1490 / 1350
  9518. }
  9519. },
  9520. },
  9521. [
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(7 + 8 / 12, "feet"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(3.5, "inches"),
  9534. weight: math.unit(19, "grams"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/mallow/front.svg",
  9538. extra: 471 / 431
  9539. }
  9540. },
  9541. back: {
  9542. height: math.unit(3.5, "inches"),
  9543. weight: math.unit(19, "grams"),
  9544. name: "Back",
  9545. image: {
  9546. source: "./media/characters/mallow/back.svg",
  9547. extra: 471 / 431
  9548. }
  9549. },
  9550. },
  9551. [
  9552. {
  9553. name: "Normal",
  9554. height: math.unit(3.5, "inches"),
  9555. default: true
  9556. },
  9557. ]
  9558. ))
  9559. characterMakers.push(() => makeCharacter(
  9560. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9561. {
  9562. front: {
  9563. height: math.unit(9, "feet"),
  9564. weight: math.unit(230, "kg"),
  9565. name: "Front",
  9566. image: {
  9567. source: "./media/characters/starry-aqua/front.svg"
  9568. }
  9569. },
  9570. back: {
  9571. height: math.unit(9, "feet"),
  9572. weight: math.unit(230, "kg"),
  9573. name: "Back",
  9574. image: {
  9575. source: "./media/characters/starry-aqua/back.svg"
  9576. }
  9577. },
  9578. hand: {
  9579. height: math.unit(9 * 0.1168, "feet"),
  9580. name: "Hand",
  9581. image: {
  9582. source: "./media/characters/starry-aqua/hand.svg"
  9583. }
  9584. },
  9585. foot: {
  9586. height: math.unit(9 * 0.18, "feet"),
  9587. name: "Foot",
  9588. image: {
  9589. source: "./media/characters/starry-aqua/foot.svg"
  9590. }
  9591. }
  9592. },
  9593. [
  9594. {
  9595. name: "Micro",
  9596. height: math.unit(3, "inches")
  9597. },
  9598. {
  9599. name: "Normal",
  9600. height: math.unit(9, "feet")
  9601. },
  9602. {
  9603. name: "Macro",
  9604. height: math.unit(300, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Megamacro",
  9609. height: math.unit(3200, "feet")
  9610. }
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(15, "feet"),
  9618. weight: math.unit(5026, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/luka-towers/front.svg",
  9622. extra: 1269/1133,
  9623. bottom: 51/1320
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(15, "feet"),
  9631. default: true
  9632. },
  9633. {
  9634. name: "Minimacro",
  9635. height: math.unit(25, "feet")
  9636. },
  9637. {
  9638. name: "Macro",
  9639. height: math.unit(320, "feet")
  9640. },
  9641. {
  9642. name: "Megamacro",
  9643. height: math.unit(35000, "feet")
  9644. },
  9645. {
  9646. name: "Gigamacro",
  9647. height: math.unit(4000, "miles")
  9648. },
  9649. {
  9650. name: "Teramacro",
  9651. height: math.unit(15000, "miles")
  9652. },
  9653. ]
  9654. ))
  9655. characterMakers.push(() => makeCharacter(
  9656. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9657. {
  9658. front: {
  9659. height: math.unit(6, "feet"),
  9660. weight: math.unit(150, "lb"),
  9661. name: "Front",
  9662. image: {
  9663. source: "./media/characters/natalie-nightring/front.svg",
  9664. extra: 1,
  9665. bottom: 0.06
  9666. }
  9667. },
  9668. },
  9669. [
  9670. {
  9671. name: "Uh Oh",
  9672. height: math.unit(0.1, "mm")
  9673. },
  9674. {
  9675. name: "Small",
  9676. height: math.unit(3, "inches")
  9677. },
  9678. {
  9679. name: "Human Scale",
  9680. height: math.unit(6, "feet")
  9681. },
  9682. {
  9683. name: "Librarian",
  9684. height: math.unit(50, "feet"),
  9685. default: true
  9686. },
  9687. {
  9688. name: "Immense",
  9689. height: math.unit(200, "miles")
  9690. },
  9691. ]
  9692. ))
  9693. characterMakers.push(() => makeCharacter(
  9694. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9695. {
  9696. front: {
  9697. height: math.unit(6, "feet"),
  9698. weight: math.unit(180, "lbs"),
  9699. name: "Front",
  9700. image: {
  9701. source: "./media/characters/danni-rosie/front.svg",
  9702. extra: 1260 / 1128,
  9703. bottom: 0.022
  9704. }
  9705. },
  9706. },
  9707. [
  9708. {
  9709. name: "Micro",
  9710. height: math.unit(2, "inches"),
  9711. default: true
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(5 + 9 / 12, "feet"),
  9720. weight: math.unit(220, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/samantha-kruse/front.svg",
  9724. extra: (985 / 935),
  9725. bottom: 0.03
  9726. }
  9727. },
  9728. frontUndressed: {
  9729. height: math.unit(5 + 9 / 12, "feet"),
  9730. weight: math.unit(220, "lb"),
  9731. name: "Front (Undressed)",
  9732. image: {
  9733. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9734. extra: (973 / 923),
  9735. bottom: 0.025
  9736. }
  9737. },
  9738. fat: {
  9739. height: math.unit(5 + 9 / 12, "feet"),
  9740. weight: math.unit(900, "lb"),
  9741. name: "Front (Fat)",
  9742. image: {
  9743. source: "./media/characters/samantha-kruse/fat.svg",
  9744. extra: 2688 / 2561
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(5 + 9 / 12, "feet"),
  9752. default: true
  9753. }
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9758. {
  9759. back: {
  9760. height: math.unit(5 + 4 / 12, "feet"),
  9761. weight: math.unit(4963, "lb"),
  9762. name: "Back",
  9763. image: {
  9764. source: "./media/characters/amelia-rosie/back.svg",
  9765. extra: 1113 / 963,
  9766. bottom: 0.01
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Level 0",
  9773. height: math.unit(5 + 4 / 12, "feet")
  9774. },
  9775. {
  9776. name: "Level 1",
  9777. height: math.unit(164597, "feet"),
  9778. default: true
  9779. },
  9780. {
  9781. name: "Level 2",
  9782. height: math.unit(956243, "miles")
  9783. },
  9784. {
  9785. name: "Level 3",
  9786. height: math.unit(29421709423, "miles")
  9787. },
  9788. {
  9789. name: "Level 4",
  9790. height: math.unit(154, "lightyears")
  9791. },
  9792. {
  9793. name: "Level 5",
  9794. height: math.unit(4738272, "lightyears")
  9795. },
  9796. {
  9797. name: "Level 6",
  9798. height: math.unit(145787152896, "lightyears")
  9799. },
  9800. ]
  9801. ))
  9802. characterMakers.push(() => makeCharacter(
  9803. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9804. {
  9805. front: {
  9806. height: math.unit(5 + 11 / 12, "feet"),
  9807. weight: math.unit(65, "kg"),
  9808. name: "Front",
  9809. image: {
  9810. source: "./media/characters/rook-kitara/front.svg",
  9811. extra: 1347 / 1274,
  9812. bottom: 0.005
  9813. }
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Totally Unfair",
  9819. height: math.unit(1.8, "mm")
  9820. },
  9821. {
  9822. name: "Lap Rookie",
  9823. height: math.unit(1.4, "feet")
  9824. },
  9825. {
  9826. name: "Normal",
  9827. height: math.unit(5 + 11 / 12, "feet"),
  9828. default: true
  9829. },
  9830. {
  9831. name: "How Did This Happen",
  9832. height: math.unit(80, "miles")
  9833. }
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(7, "feet"),
  9841. weight: math.unit(300, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/pisces/front.svg",
  9845. extra: 2255 / 2115,
  9846. bottom: 0.03
  9847. }
  9848. },
  9849. back: {
  9850. height: math.unit(7, "feet"),
  9851. weight: math.unit(300, "lb"),
  9852. name: "Back",
  9853. image: {
  9854. source: "./media/characters/pisces/back.svg",
  9855. extra: 2146 / 2055,
  9856. bottom: 0.04
  9857. }
  9858. },
  9859. },
  9860. [
  9861. {
  9862. name: "Normal",
  9863. height: math.unit(7, "feet"),
  9864. default: true
  9865. },
  9866. {
  9867. name: "Swimming Pool",
  9868. height: math.unit(12.2, "meters")
  9869. },
  9870. {
  9871. name: "Olympic Swimming Pool",
  9872. height: math.unit(56.3, "meters")
  9873. },
  9874. {
  9875. name: "Lake Superior",
  9876. height: math.unit(93900, "meters")
  9877. },
  9878. {
  9879. name: "Mediterranean Sea",
  9880. height: math.unit(644457, "meters")
  9881. },
  9882. {
  9883. name: "World's Oceans",
  9884. height: math.unit(4567491, "meters")
  9885. },
  9886. ]
  9887. ))
  9888. characterMakers.push(() => makeCharacter(
  9889. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9890. {
  9891. front: {
  9892. height: math.unit(2.3, "meters"),
  9893. weight: math.unit(120, "kg"),
  9894. name: "Front",
  9895. image: {
  9896. source: "./media/characters/zelas/front.svg"
  9897. }
  9898. },
  9899. side: {
  9900. height: math.unit(2.3, "meters"),
  9901. weight: math.unit(120, "kg"),
  9902. name: "Side",
  9903. image: {
  9904. source: "./media/characters/zelas/side.svg"
  9905. }
  9906. },
  9907. back: {
  9908. height: math.unit(2.3, "meters"),
  9909. weight: math.unit(120, "kg"),
  9910. name: "Back",
  9911. image: {
  9912. source: "./media/characters/zelas/back.svg"
  9913. }
  9914. },
  9915. foot: {
  9916. height: math.unit(1.116, "feet"),
  9917. name: "Foot",
  9918. image: {
  9919. source: "./media/characters/zelas/foot.svg"
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(2.3, "meters")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(30, "meters"),
  9931. default: true
  9932. },
  9933. ]
  9934. ))
  9935. characterMakers.push(() => makeCharacter(
  9936. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9937. {
  9938. front: {
  9939. height: math.unit(1, "inch"),
  9940. weight: math.unit(0.21, "grams"),
  9941. name: "Front",
  9942. image: {
  9943. source: "./media/characters/talbot/front.svg",
  9944. extra: 594 / 544
  9945. }
  9946. },
  9947. },
  9948. [
  9949. {
  9950. name: "Micro",
  9951. height: math.unit(1, "inch"),
  9952. default: true
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9958. {
  9959. front: {
  9960. height: math.unit(3 + 3 / 12, "feet"),
  9961. weight: math.unit(51.8, "lb"),
  9962. name: "Front",
  9963. image: {
  9964. source: "./media/characters/fliss/front.svg",
  9965. extra: 840 / 640
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Teeny Tiny",
  9972. height: math.unit(1, "mm")
  9973. },
  9974. {
  9975. name: "Small",
  9976. height: math.unit(1, "inch"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Standard Sylveon",
  9981. height: math.unit(3 + 3 / 12, "feet")
  9982. },
  9983. {
  9984. name: "Large Nuisance",
  9985. height: math.unit(33, "feet")
  9986. },
  9987. {
  9988. name: "City Filler",
  9989. height: math.unit(3000, "feet")
  9990. },
  9991. {
  9992. name: "New Horizon",
  9993. height: math.unit(6000, "miles")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(5, "cm"),
  10002. weight: math.unit(1.94, "g"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/fleta/front.svg",
  10006. extra: 835 / 803
  10007. }
  10008. },
  10009. back: {
  10010. height: math.unit(5, "cm"),
  10011. weight: math.unit(1.94, "g"),
  10012. name: "Back",
  10013. image: {
  10014. source: "./media/characters/fleta/back.svg",
  10015. extra: 835 / 803
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Micro",
  10022. height: math.unit(5, "cm"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(6, "feet"),
  10032. weight: math.unit(225, "lb"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/dominic/front.svg",
  10036. extra: 1770 / 1620,
  10037. bottom: 0.025
  10038. }
  10039. },
  10040. back: {
  10041. height: math.unit(6, "feet"),
  10042. weight: math.unit(225, "lb"),
  10043. name: "Back",
  10044. image: {
  10045. source: "./media/characters/dominic/back.svg",
  10046. extra: 1745 / 1620,
  10047. bottom: 0.065
  10048. }
  10049. },
  10050. },
  10051. [
  10052. {
  10053. name: "Nano",
  10054. height: math.unit(0.1, "mm")
  10055. },
  10056. {
  10057. name: "Micro-",
  10058. height: math.unit(1, "mm")
  10059. },
  10060. {
  10061. name: "Micro",
  10062. height: math.unit(4, "inches")
  10063. },
  10064. {
  10065. name: "Normal",
  10066. height: math.unit(6 + 4 / 12, "feet"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Macro",
  10071. height: math.unit(115, "feet")
  10072. },
  10073. {
  10074. name: "Macro+",
  10075. height: math.unit(955, "feet")
  10076. },
  10077. {
  10078. name: "Megamacro",
  10079. height: math.unit(8990, "feet")
  10080. },
  10081. {
  10082. name: "Gigmacro",
  10083. height: math.unit(9310, "miles")
  10084. },
  10085. {
  10086. name: "Teramacro",
  10087. height: math.unit(1567005010, "miles")
  10088. },
  10089. {
  10090. name: "Examacro",
  10091. height: math.unit(1425, "parsecs")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(400, "feet"),
  10100. weight: math.unit(44444444, "lb"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/major-colonel/front.svg"
  10104. }
  10105. },
  10106. back: {
  10107. height: math.unit(400, "feet"),
  10108. weight: math.unit(44444444, "lb"),
  10109. name: "Back",
  10110. image: {
  10111. source: "./media/characters/major-colonel/back.svg"
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(400, "feet"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10125. {
  10126. catFront: {
  10127. height: math.unit(6, "feet"),
  10128. weight: math.unit(120, "lb"),
  10129. name: "Front (Cat Side)",
  10130. image: {
  10131. source: "./media/characters/axel-lycan/cat-front.svg",
  10132. extra: 430 / 402,
  10133. bottom: 43 / 472.35
  10134. }
  10135. },
  10136. catBack: {
  10137. height: math.unit(6, "feet"),
  10138. weight: math.unit(120, "lb"),
  10139. name: "Back (Cat Side)",
  10140. image: {
  10141. source: "./media/characters/axel-lycan/cat-back.svg",
  10142. extra: 447 / 419,
  10143. bottom: 23.3 / 469
  10144. }
  10145. },
  10146. wolfFront: {
  10147. height: math.unit(6, "feet"),
  10148. weight: math.unit(120, "lb"),
  10149. name: "Front (Wolf Side)",
  10150. image: {
  10151. source: "./media/characters/axel-lycan/wolf-front.svg",
  10152. extra: 485 / 456,
  10153. bottom: 19 / 504
  10154. }
  10155. },
  10156. wolfBack: {
  10157. height: math.unit(6, "feet"),
  10158. weight: math.unit(120, "lb"),
  10159. name: "Back (Wolf Side)",
  10160. image: {
  10161. source: "./media/characters/axel-lycan/wolf-back.svg",
  10162. extra: 475 / 438,
  10163. bottom: 39.2 / 514
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(1, "km"),
  10171. default: true
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10177. {
  10178. front: {
  10179. height: math.unit(5 + 9 / 12, "feet"),
  10180. weight: math.unit(175, "lb"),
  10181. name: "Front",
  10182. image: {
  10183. source: "./media/characters/vanrel-hyena/front.svg",
  10184. extra: 1086 / 1010,
  10185. bottom: 0.04
  10186. }
  10187. },
  10188. },
  10189. [
  10190. {
  10191. name: "Normal",
  10192. height: math.unit(5 + 9 / 12, "feet"),
  10193. default: true
  10194. },
  10195. ]
  10196. ))
  10197. characterMakers.push(() => makeCharacter(
  10198. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10199. {
  10200. front: {
  10201. height: math.unit(6, "feet"),
  10202. weight: math.unit(103, "lb"),
  10203. name: "Front",
  10204. image: {
  10205. source: "./media/characters/abbott-absol/front.svg",
  10206. extra: 2010 / 1842
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Megamicro",
  10213. height: math.unit(0.1, "mm")
  10214. },
  10215. {
  10216. name: "Micro",
  10217. height: math.unit(1, "inch")
  10218. },
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(6, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(6, "feet"),
  10231. weight: math.unit(264, "lb"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/hector/front.svg",
  10235. extra: 2280 / 2130,
  10236. bottom: 0.07
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Normal",
  10243. height: math.unit(12.25, "foot"),
  10244. default: true
  10245. },
  10246. {
  10247. name: "Macro",
  10248. height: math.unit(160, "feet")
  10249. },
  10250. ]
  10251. ))
  10252. characterMakers.push(() => makeCharacter(
  10253. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10254. {
  10255. front: {
  10256. height: math.unit(6, "feet"),
  10257. weight: math.unit(150, "lb"),
  10258. name: "Front",
  10259. image: {
  10260. source: "./media/characters/sal/front.svg",
  10261. extra: 1846 / 1699,
  10262. bottom: 0.04
  10263. }
  10264. },
  10265. },
  10266. [
  10267. {
  10268. name: "Megamacro",
  10269. height: math.unit(10, "miles"),
  10270. default: true
  10271. },
  10272. ]
  10273. ))
  10274. characterMakers.push(() => makeCharacter(
  10275. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10276. {
  10277. front: {
  10278. height: math.unit(3, "meters"),
  10279. weight: math.unit(450, "kg"),
  10280. name: "front",
  10281. image: {
  10282. source: "./media/characters/ranger/front.svg",
  10283. extra: 2401 / 2243,
  10284. bottom: 0.05
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(3, "meters"),
  10292. default: true
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(14, "feet"),
  10301. weight: math.unit(800, "kg"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/theresa/front.svg",
  10305. extra: 3575 / 3346,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(14, "feet"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(3, "kg"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/ine/front.svg",
  10327. extra: 678 / 539,
  10328. bottom: 0.023
  10329. }
  10330. },
  10331. },
  10332. [
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(2.265, "feet"),
  10336. default: true
  10337. },
  10338. ]
  10339. ))
  10340. characterMakers.push(() => makeCharacter(
  10341. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10342. {
  10343. front: {
  10344. height: math.unit(5, "feet"),
  10345. weight: math.unit(30, "kg"),
  10346. name: "Front",
  10347. image: {
  10348. source: "./media/characters/vial/front.svg",
  10349. extra: 1365 / 1277,
  10350. bottom: 0.04
  10351. }
  10352. },
  10353. },
  10354. [
  10355. {
  10356. name: "Normal",
  10357. height: math.unit(5, "feet"),
  10358. default: true
  10359. },
  10360. ]
  10361. ))
  10362. characterMakers.push(() => makeCharacter(
  10363. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10364. {
  10365. side: {
  10366. height: math.unit(3.4, "meters"),
  10367. weight: math.unit(1000, "lb"),
  10368. name: "Side",
  10369. image: {
  10370. source: "./media/characters/rovoska/side.svg",
  10371. extra: 4403 / 1515
  10372. }
  10373. },
  10374. },
  10375. [
  10376. {
  10377. name: "Normal",
  10378. height: math.unit(3.4, "meters"),
  10379. default: true
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(8, "feet"),
  10388. weight: math.unit(315, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/gunner-rotthbauer/front.svg"
  10392. }
  10393. },
  10394. back: {
  10395. height: math.unit(8, "feet"),
  10396. weight: math.unit(315, "lb"),
  10397. name: "Back",
  10398. image: {
  10399. source: "./media/characters/gunner-rotthbauer/back.svg"
  10400. }
  10401. },
  10402. },
  10403. [
  10404. {
  10405. name: "Micro",
  10406. height: math.unit(3.5, "inches")
  10407. },
  10408. {
  10409. name: "Normal",
  10410. height: math.unit(8, "feet"),
  10411. default: true
  10412. },
  10413. {
  10414. name: "Macro",
  10415. height: math.unit(250, "feet")
  10416. },
  10417. {
  10418. name: "Megamacro",
  10419. height: math.unit(1, "AU")
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(5 + 5 / 12, "feet"),
  10428. weight: math.unit(140, "lb"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/allatia/front.svg",
  10432. extra: 1227 / 1180,
  10433. bottom: 0.027
  10434. }
  10435. },
  10436. },
  10437. [
  10438. {
  10439. name: "Normal",
  10440. height: math.unit(5 + 5 / 12, "feet")
  10441. },
  10442. {
  10443. name: "Macro",
  10444. height: math.unit(250, "feet"),
  10445. default: true
  10446. },
  10447. {
  10448. name: "Megamacro",
  10449. height: math.unit(8, "miles")
  10450. }
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(6, "feet"),
  10458. weight: math.unit(120, "lb"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/tene/front.svg",
  10462. extra: 814/750,
  10463. bottom: 36/850
  10464. }
  10465. },
  10466. stomping: {
  10467. height: math.unit(2.025, "meters"),
  10468. weight: math.unit(120, "lb"),
  10469. name: "Stomping",
  10470. image: {
  10471. source: "./media/characters/tene/stomping.svg",
  10472. extra: 885/821,
  10473. bottom: 15/900
  10474. }
  10475. },
  10476. sitting: {
  10477. height: math.unit(1, "meter"),
  10478. weight: math.unit(120, "lb"),
  10479. name: "Sitting",
  10480. image: {
  10481. source: "./media/characters/tene/sitting.svg",
  10482. extra: 396/366,
  10483. bottom: 79/475
  10484. }
  10485. },
  10486. smiling: {
  10487. height: math.unit(1.2, "feet"),
  10488. name: "Smiling",
  10489. image: {
  10490. source: "./media/characters/tene/smiling.svg",
  10491. extra: 1364/1071,
  10492. bottom: 0/1364
  10493. }
  10494. },
  10495. smug: {
  10496. height: math.unit(1.3, "feet"),
  10497. name: "Smug",
  10498. image: {
  10499. source: "./media/characters/tene/smug.svg",
  10500. extra: 1323/1082,
  10501. bottom: 0/1323
  10502. }
  10503. },
  10504. feral: {
  10505. height: math.unit(3.9, "feet"),
  10506. weight: math.unit(250, "lb"),
  10507. name: "Feral",
  10508. image: {
  10509. source: "./media/characters/tene/feral.svg",
  10510. extra: 717 / 458,
  10511. bottom: 0.179
  10512. }
  10513. },
  10514. },
  10515. [
  10516. {
  10517. name: "Normal",
  10518. height: math.unit(6, "feet")
  10519. },
  10520. {
  10521. name: "Macro",
  10522. height: math.unit(300, "feet"),
  10523. default: true
  10524. },
  10525. {
  10526. name: "Megamacro",
  10527. height: math.unit(5, "miles")
  10528. },
  10529. ]
  10530. ))
  10531. characterMakers.push(() => makeCharacter(
  10532. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10533. {
  10534. side: {
  10535. height: math.unit(6, "feet"),
  10536. name: "Side",
  10537. image: {
  10538. source: "./media/characters/evander/side.svg",
  10539. extra: 877 / 477
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Normal",
  10546. height: math.unit(0.83, "meters"),
  10547. default: true
  10548. },
  10549. ]
  10550. ))
  10551. characterMakers.push(() => makeCharacter(
  10552. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10553. {
  10554. front: {
  10555. height: math.unit(12, "feet"),
  10556. weight: math.unit(1000, "lb"),
  10557. name: "Front",
  10558. image: {
  10559. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10560. extra: 1762 / 1611
  10561. }
  10562. },
  10563. back: {
  10564. height: math.unit(12, "feet"),
  10565. weight: math.unit(1000, "lb"),
  10566. name: "Back",
  10567. image: {
  10568. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10569. extra: 1762 / 1611
  10570. }
  10571. },
  10572. },
  10573. [
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(12, "feet"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Kaiju",
  10581. height: math.unit(150, "feet")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(6, "feet"),
  10590. weight: math.unit(150, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/zero-alurus/front.svg"
  10594. }
  10595. },
  10596. back: {
  10597. height: math.unit(6, "feet"),
  10598. weight: math.unit(150, "lb"),
  10599. name: "Back",
  10600. image: {
  10601. source: "./media/characters/zero-alurus/back.svg"
  10602. }
  10603. },
  10604. },
  10605. [
  10606. {
  10607. name: "Normal",
  10608. height: math.unit(5 + 10 / 12, "feet")
  10609. },
  10610. {
  10611. name: "Macro",
  10612. height: math.unit(60, "feet"),
  10613. default: true
  10614. },
  10615. {
  10616. name: "Macro+",
  10617. height: math.unit(450, "feet")
  10618. },
  10619. ]
  10620. ))
  10621. characterMakers.push(() => makeCharacter(
  10622. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10623. {
  10624. front: {
  10625. height: math.unit(6, "feet"),
  10626. weight: math.unit(200, "lb"),
  10627. name: "Front",
  10628. image: {
  10629. source: "./media/characters/mega-shi/front.svg",
  10630. extra: 1279 / 1250,
  10631. bottom: 0.02
  10632. }
  10633. },
  10634. back: {
  10635. height: math.unit(6, "feet"),
  10636. weight: math.unit(200, "lb"),
  10637. name: "Back",
  10638. image: {
  10639. source: "./media/characters/mega-shi/back.svg",
  10640. extra: 1279 / 1250,
  10641. bottom: 0.02
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Micro",
  10648. height: math.unit(16 + 6 / 12, "feet")
  10649. },
  10650. {
  10651. name: "Third Dimension",
  10652. height: math.unit(40, "meters")
  10653. },
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(660, "feet"),
  10657. default: true
  10658. },
  10659. {
  10660. name: "Megamacro",
  10661. height: math.unit(10, "miles")
  10662. },
  10663. {
  10664. name: "Planetary Launch",
  10665. height: math.unit(500, "miles")
  10666. },
  10667. {
  10668. name: "Interstellar",
  10669. height: math.unit(1e9, "miles")
  10670. },
  10671. {
  10672. name: "Leaving the Universe",
  10673. height: math.unit(1, "gigaparsec")
  10674. },
  10675. {
  10676. name: "Travelling Universes",
  10677. height: math.unit(30e15, "parsecs")
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 4/12, "feet"),
  10686. weight: math.unit(120, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/odyssey/front.svg",
  10690. extra: 1747/1571,
  10691. bottom: 47/1794
  10692. }
  10693. },
  10694. side: {
  10695. height: math.unit(5.1, "feet"),
  10696. weight: math.unit(120, "lb"),
  10697. name: "Side",
  10698. image: {
  10699. source: "./media/characters/odyssey/side.svg",
  10700. extra: 1847/1619,
  10701. bottom: 47/1894
  10702. }
  10703. },
  10704. lounging: {
  10705. height: math.unit(1.464, "feet"),
  10706. weight: math.unit(120, "lb"),
  10707. name: "Lounging",
  10708. image: {
  10709. source: "./media/characters/odyssey/lounging.svg",
  10710. extra: 1235/837,
  10711. bottom: 551/1786
  10712. }
  10713. },
  10714. },
  10715. [
  10716. {
  10717. name: "Normal",
  10718. height: math.unit(5 + 4 / 12, "feet")
  10719. },
  10720. {
  10721. name: "Macro",
  10722. height: math.unit(1, "km")
  10723. },
  10724. {
  10725. name: "Megamacro",
  10726. height: math.unit(3000, "km")
  10727. },
  10728. {
  10729. name: "Gigamacro",
  10730. height: math.unit(1, "AU"),
  10731. default: true
  10732. },
  10733. {
  10734. name: "Omniversal",
  10735. height: math.unit(100e14, "lightyears")
  10736. },
  10737. ]
  10738. ))
  10739. characterMakers.push(() => makeCharacter(
  10740. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10741. {
  10742. front: {
  10743. height: math.unit(6, "feet"),
  10744. weight: math.unit(300, "lb"),
  10745. name: "Front",
  10746. image: {
  10747. source: "./media/characters/mekuto/front.svg",
  10748. extra: 921 / 832,
  10749. bottom: 0.03
  10750. }
  10751. },
  10752. hand: {
  10753. height: math.unit(6 / 10.24, "feet"),
  10754. name: "Hand",
  10755. image: {
  10756. source: "./media/characters/mekuto/hand.svg"
  10757. }
  10758. },
  10759. foot: {
  10760. height: math.unit(6 / 5.05, "feet"),
  10761. name: "Foot",
  10762. image: {
  10763. source: "./media/characters/mekuto/foot.svg"
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Minimicro",
  10770. height: math.unit(0.2, "inches")
  10771. },
  10772. {
  10773. name: "Micro",
  10774. height: math.unit(1.5, "inches")
  10775. },
  10776. {
  10777. name: "Normal",
  10778. height: math.unit(5 + 11 / 12, "feet"),
  10779. default: true
  10780. },
  10781. {
  10782. name: "Minimacro",
  10783. height: math.unit(17 + 9 / 12, "feet")
  10784. },
  10785. {
  10786. name: "Macro",
  10787. height: math.unit(177.5, "feet")
  10788. },
  10789. {
  10790. name: "Megamacro",
  10791. height: math.unit(152, "miles")
  10792. },
  10793. ]
  10794. ))
  10795. characterMakers.push(() => makeCharacter(
  10796. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10797. {
  10798. front: {
  10799. height: math.unit(6.5, "inches"),
  10800. weight: math.unit(13, "oz"),
  10801. name: "Front",
  10802. image: {
  10803. source: "./media/characters/dafydd-tomos/front.svg",
  10804. extra: 2990 / 2603,
  10805. bottom: 0.03
  10806. }
  10807. },
  10808. },
  10809. [
  10810. {
  10811. name: "Micro",
  10812. height: math.unit(6.5, "inches"),
  10813. default: true
  10814. },
  10815. ]
  10816. ))
  10817. characterMakers.push(() => makeCharacter(
  10818. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10819. {
  10820. front: {
  10821. height: math.unit(6, "feet"),
  10822. weight: math.unit(150, "lb"),
  10823. name: "Front",
  10824. image: {
  10825. source: "./media/characters/splinter/front.svg",
  10826. extra: 2990 / 2882,
  10827. bottom: 0.04
  10828. }
  10829. },
  10830. back: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Back",
  10834. image: {
  10835. source: "./media/characters/splinter/back.svg",
  10836. extra: 2990 / 2882,
  10837. bottom: 0.04
  10838. }
  10839. },
  10840. },
  10841. [
  10842. {
  10843. name: "Normal",
  10844. height: math.unit(6, "feet")
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(230, "meters"),
  10849. default: true
  10850. },
  10851. ]
  10852. ))
  10853. characterMakers.push(() => makeCharacter(
  10854. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10855. {
  10856. front: {
  10857. height: math.unit(4 + 10 / 12, "feet"),
  10858. weight: math.unit(480, "lb"),
  10859. name: "Front",
  10860. image: {
  10861. source: "./media/characters/snow-gabumon/front.svg",
  10862. extra: 1140 / 963,
  10863. bottom: 0.058
  10864. }
  10865. },
  10866. back: {
  10867. height: math.unit(4 + 10 / 12, "feet"),
  10868. weight: math.unit(480, "lb"),
  10869. name: "Back",
  10870. image: {
  10871. source: "./media/characters/snow-gabumon/back.svg",
  10872. extra: 1115 / 962,
  10873. bottom: 0.041
  10874. }
  10875. },
  10876. frontUndresed: {
  10877. height: math.unit(4 + 10 / 12, "feet"),
  10878. weight: math.unit(480, "lb"),
  10879. name: "Front (Undressed)",
  10880. image: {
  10881. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10882. extra: 1061 / 960,
  10883. bottom: 0.045
  10884. }
  10885. },
  10886. },
  10887. [
  10888. {
  10889. name: "Micro",
  10890. height: math.unit(1, "inch")
  10891. },
  10892. {
  10893. name: "Normal",
  10894. height: math.unit(4 + 10 / 12, "feet"),
  10895. default: true
  10896. },
  10897. {
  10898. name: "Macro",
  10899. height: math.unit(200, "feet")
  10900. },
  10901. {
  10902. name: "Megamacro",
  10903. height: math.unit(120, "miles")
  10904. },
  10905. {
  10906. name: "Gigamacro",
  10907. height: math.unit(9800, "miles")
  10908. },
  10909. ]
  10910. ))
  10911. characterMakers.push(() => makeCharacter(
  10912. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10913. {
  10914. front: {
  10915. height: math.unit(1.7, "meters"),
  10916. weight: math.unit(140, "lb"),
  10917. name: "Front",
  10918. image: {
  10919. source: "./media/characters/moody/front.svg",
  10920. extra: 3226 / 3007,
  10921. bottom: 0.087
  10922. }
  10923. },
  10924. },
  10925. [
  10926. {
  10927. name: "Micro",
  10928. height: math.unit(1, "mm")
  10929. },
  10930. {
  10931. name: "Normal",
  10932. height: math.unit(1.7, "meters"),
  10933. default: true
  10934. },
  10935. {
  10936. name: "Macro",
  10937. height: math.unit(80, "meters")
  10938. },
  10939. {
  10940. name: "Macro+",
  10941. height: math.unit(500, "meters")
  10942. },
  10943. ]
  10944. ))
  10945. characterMakers.push(() => makeCharacter(
  10946. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10947. {
  10948. front: {
  10949. height: math.unit(6, "feet"),
  10950. weight: math.unit(150, "lb"),
  10951. name: "Front",
  10952. image: {
  10953. source: "./media/characters/zyas/front.svg",
  10954. extra: 1180 / 1120,
  10955. bottom: 0.045
  10956. }
  10957. },
  10958. },
  10959. [
  10960. {
  10961. name: "Normal",
  10962. height: math.unit(10, "feet"),
  10963. default: true
  10964. },
  10965. {
  10966. name: "Macro",
  10967. height: math.unit(500, "feet")
  10968. },
  10969. {
  10970. name: "Megamacro",
  10971. height: math.unit(5, "miles")
  10972. },
  10973. {
  10974. name: "Teramacro",
  10975. height: math.unit(150000, "miles")
  10976. },
  10977. ]
  10978. ))
  10979. characterMakers.push(() => makeCharacter(
  10980. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10981. {
  10982. front: {
  10983. height: math.unit(6, "feet"),
  10984. weight: math.unit(150, "lb"),
  10985. name: "Front",
  10986. image: {
  10987. source: "./media/characters/cuon/front.svg",
  10988. extra: 1390 / 1320,
  10989. bottom: 0.008
  10990. }
  10991. },
  10992. },
  10993. [
  10994. {
  10995. name: "Micro",
  10996. height: math.unit(3, "inches")
  10997. },
  10998. {
  10999. name: "Normal",
  11000. height: math.unit(18 + 9 / 12, "feet"),
  11001. default: true
  11002. },
  11003. {
  11004. name: "Macro",
  11005. height: math.unit(360, "feet")
  11006. },
  11007. {
  11008. name: "Megamacro",
  11009. height: math.unit(360, "miles")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(2.4, "meters"),
  11018. weight: math.unit(70, "kg"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/nyanuxk/front.svg",
  11022. extra: 1172 / 1084,
  11023. bottom: 0.065
  11024. }
  11025. },
  11026. side: {
  11027. height: math.unit(2.4, "meters"),
  11028. weight: math.unit(70, "kg"),
  11029. name: "Side",
  11030. image: {
  11031. source: "./media/characters/nyanuxk/side.svg",
  11032. extra: 1190 / 1132,
  11033. bottom: 0.007
  11034. }
  11035. },
  11036. back: {
  11037. height: math.unit(2.4, "meters"),
  11038. weight: math.unit(70, "kg"),
  11039. name: "Back",
  11040. image: {
  11041. source: "./media/characters/nyanuxk/back.svg",
  11042. extra: 1200 / 1141,
  11043. bottom: 0.015
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(0.52, "meters"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/nyanuxk/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(2, "cm")
  11058. },
  11059. {
  11060. name: "Normal",
  11061. height: math.unit(2.4, "meters"),
  11062. default: true
  11063. },
  11064. {
  11065. name: "Smaller Macro",
  11066. height: math.unit(120, "meters")
  11067. },
  11068. {
  11069. name: "Bigger Macro",
  11070. height: math.unit(1.2, "km")
  11071. },
  11072. {
  11073. name: "Megamacro",
  11074. height: math.unit(15, "kilometers")
  11075. },
  11076. {
  11077. name: "Gigamacro",
  11078. height: math.unit(2000, "km")
  11079. },
  11080. {
  11081. name: "Teramacro",
  11082. height: math.unit(500000, "km")
  11083. },
  11084. ]
  11085. ))
  11086. characterMakers.push(() => makeCharacter(
  11087. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11088. {
  11089. side: {
  11090. height: math.unit(6, "feet"),
  11091. name: "Side",
  11092. image: {
  11093. source: "./media/characters/ailbhe/side.svg",
  11094. extra: 757 / 464,
  11095. bottom: 0.041
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(1.07, "meters"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(120, "kg"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/zevulfius/front.svg",
  11116. extra: 965 / 903
  11117. }
  11118. },
  11119. side: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(120, "kg"),
  11122. name: "Side",
  11123. image: {
  11124. source: "./media/characters/zevulfius/side.svg",
  11125. extra: 939 / 900
  11126. }
  11127. },
  11128. back: {
  11129. height: math.unit(6, "feet"),
  11130. weight: math.unit(120, "kg"),
  11131. name: "Back",
  11132. image: {
  11133. source: "./media/characters/zevulfius/back.svg",
  11134. extra: 918 / 854,
  11135. bottom: 0.005
  11136. }
  11137. },
  11138. foot: {
  11139. height: math.unit(6 / 3.72, "feet"),
  11140. name: "Foot",
  11141. image: {
  11142. source: "./media/characters/zevulfius/foot.svg"
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Macro",
  11149. height: math.unit(750, "meters")
  11150. },
  11151. {
  11152. name: "Megamacro",
  11153. height: math.unit(20, "km"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Gigamacro",
  11158. height: math.unit(2000, "km")
  11159. },
  11160. {
  11161. name: "Teramacro",
  11162. height: math.unit(250000, "km")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(100, "feet"),
  11171. weight: math.unit(350, "kg"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/rikes/front.svg",
  11175. extra: 1565 / 1483,
  11176. bottom: 0.017
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Macro",
  11183. height: math.unit(100, "feet"),
  11184. default: true
  11185. },
  11186. ]
  11187. ))
  11188. characterMakers.push(() => makeCharacter(
  11189. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11190. {
  11191. front: {
  11192. height: math.unit(8, "feet"),
  11193. weight: math.unit(356, "lb"),
  11194. name: "Front",
  11195. image: {
  11196. source: "./media/characters/adam-silver-mane/front.svg",
  11197. extra: 1036/937,
  11198. bottom: 63/1099
  11199. }
  11200. },
  11201. side: {
  11202. height: math.unit(8, "feet"),
  11203. weight: math.unit(356, "lb"),
  11204. name: "Side",
  11205. image: {
  11206. source: "./media/characters/adam-silver-mane/side.svg",
  11207. extra: 997/901,
  11208. bottom: 59/1056
  11209. }
  11210. },
  11211. frontNsfw: {
  11212. height: math.unit(8, "feet"),
  11213. weight: math.unit(356, "lb"),
  11214. name: "Front (NSFW)",
  11215. image: {
  11216. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11217. extra: 1036/937,
  11218. bottom: 63/1099
  11219. }
  11220. },
  11221. sideNsfw: {
  11222. height: math.unit(8, "feet"),
  11223. weight: math.unit(356, "lb"),
  11224. name: "Side (NSFW)",
  11225. image: {
  11226. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11227. extra: 997/901,
  11228. bottom: 59/1056
  11229. }
  11230. },
  11231. dick: {
  11232. height: math.unit(2.1, "feet"),
  11233. name: "Dick",
  11234. image: {
  11235. source: "./media/characters/adam-silver-mane/dick.svg"
  11236. }
  11237. },
  11238. taur: {
  11239. height: math.unit(16, "feet"),
  11240. weight: math.unit(1500, "kg"),
  11241. name: "Taur",
  11242. image: {
  11243. source: "./media/characters/adam-silver-mane/taur.svg",
  11244. extra: 1713 / 1571,
  11245. bottom: 0.01
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(8, "feet")
  11253. },
  11254. {
  11255. name: "Minimacro",
  11256. height: math.unit(80, "feet")
  11257. },
  11258. {
  11259. name: "MDA",
  11260. height: math.unit(80, "meters")
  11261. },
  11262. {
  11263. name: "Macro",
  11264. height: math.unit(800, "feet"),
  11265. default: true
  11266. },
  11267. {
  11268. name: "Megamacro",
  11269. height: math.unit(8000, "feet")
  11270. },
  11271. {
  11272. name: "Gigamacro",
  11273. height: math.unit(800, "miles")
  11274. },
  11275. {
  11276. name: "Teramacro",
  11277. height: math.unit(80000, "miles")
  11278. },
  11279. {
  11280. name: "Celestial",
  11281. height: math.unit(8e6, "miles")
  11282. },
  11283. {
  11284. name: "Star Dragon",
  11285. height: math.unit(800000, "parsecs")
  11286. },
  11287. {
  11288. name: "Godly",
  11289. height: math.unit(800, "teraparsecs")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11295. {
  11296. front: {
  11297. height: math.unit(6, "feet"),
  11298. weight: math.unit(150, "lb"),
  11299. name: "Front",
  11300. image: {
  11301. source: "./media/characters/ky'owin/front.svg",
  11302. extra: 3888 / 3068,
  11303. bottom: 0.015
  11304. }
  11305. },
  11306. },
  11307. [
  11308. {
  11309. name: "Normal",
  11310. height: math.unit(6 + 8 / 12, "feet")
  11311. },
  11312. {
  11313. name: "Large",
  11314. height: math.unit(68, "feet")
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(132, "feet")
  11319. },
  11320. {
  11321. name: "Macro+",
  11322. height: math.unit(340, "feet")
  11323. },
  11324. {
  11325. name: "Macro++",
  11326. height: math.unit(680, "feet"),
  11327. default: true
  11328. },
  11329. {
  11330. name: "Megamacro",
  11331. height: math.unit(1, "mile")
  11332. },
  11333. {
  11334. name: "Megamacro+",
  11335. height: math.unit(10, "miles")
  11336. },
  11337. ]
  11338. ))
  11339. characterMakers.push(() => makeCharacter(
  11340. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11341. {
  11342. front: {
  11343. height: math.unit(4, "feet"),
  11344. weight: math.unit(50, "lb"),
  11345. name: "Front",
  11346. image: {
  11347. source: "./media/characters/mal/front.svg",
  11348. extra: 785 / 724,
  11349. bottom: 0.07
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Micro",
  11356. height: math.unit(4, "inches")
  11357. },
  11358. {
  11359. name: "Normal",
  11360. height: math.unit(4, "feet"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Macro",
  11365. height: math.unit(200, "feet")
  11366. },
  11367. ]
  11368. ))
  11369. characterMakers.push(() => makeCharacter(
  11370. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11371. {
  11372. front: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(150, "lb"),
  11375. name: "Front",
  11376. image: {
  11377. source: "./media/characters/jordan-deware/front.svg",
  11378. extra: 1191 / 1012
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Nano",
  11385. height: math.unit(0.01, "mm")
  11386. },
  11387. {
  11388. name: "Minimicro",
  11389. height: math.unit(1, "mm")
  11390. },
  11391. {
  11392. name: "Micro",
  11393. height: math.unit(0.5, "inches")
  11394. },
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(4, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Minimacro",
  11402. height: math.unit(40, "meters")
  11403. },
  11404. {
  11405. name: "Small Macro",
  11406. height: math.unit(400, "meters")
  11407. },
  11408. {
  11409. name: "Macro",
  11410. height: math.unit(4, "miles")
  11411. },
  11412. {
  11413. name: "Megamacro",
  11414. height: math.unit(40, "miles")
  11415. },
  11416. {
  11417. name: "Megamacro+",
  11418. height: math.unit(400, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(400000, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. weight: math.unit(150, "lb"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/kimiko/side.svg",
  11435. extra: 600 / 358
  11436. }
  11437. },
  11438. },
  11439. [
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(15, "feet"),
  11443. default: true
  11444. },
  11445. {
  11446. name: "Macro",
  11447. height: math.unit(220, "feet")
  11448. },
  11449. {
  11450. name: "Macro+",
  11451. height: math.unit(1450, "feet")
  11452. },
  11453. {
  11454. name: "Megamacro",
  11455. height: math.unit(11500, "feet")
  11456. },
  11457. {
  11458. name: "Gigamacro",
  11459. height: math.unit(9500, "miles")
  11460. },
  11461. {
  11462. name: "Teramacro",
  11463. height: math.unit(2208005005, "miles")
  11464. },
  11465. {
  11466. name: "Examacro",
  11467. height: math.unit(2750, "parsecs")
  11468. },
  11469. {
  11470. name: "Zettamacro",
  11471. height: math.unit(101500, "parsecs")
  11472. },
  11473. ]
  11474. ))
  11475. characterMakers.push(() => makeCharacter(
  11476. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11477. {
  11478. front: {
  11479. height: math.unit(6, "feet"),
  11480. weight: math.unit(70, "kg"),
  11481. name: "Front",
  11482. image: {
  11483. source: "./media/characters/andrew-sleepy/front.svg"
  11484. }
  11485. },
  11486. side: {
  11487. height: math.unit(6, "feet"),
  11488. weight: math.unit(70, "kg"),
  11489. name: "Side",
  11490. image: {
  11491. source: "./media/characters/andrew-sleepy/side.svg"
  11492. }
  11493. },
  11494. },
  11495. [
  11496. {
  11497. name: "Micro",
  11498. height: math.unit(1, "mm"),
  11499. default: true
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(6, "feet"),
  11508. weight: math.unit(150, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/judio/front.svg",
  11512. extra: 1258 / 1110
  11513. }
  11514. },
  11515. },
  11516. [
  11517. {
  11518. name: "Normal",
  11519. height: math.unit(5 + 6 / 12, "feet")
  11520. },
  11521. {
  11522. name: "Macro",
  11523. height: math.unit(1000, "feet"),
  11524. default: true
  11525. },
  11526. {
  11527. name: "Megamacro",
  11528. height: math.unit(10, "miles")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11534. {
  11535. frontDressed: {
  11536. height: math.unit(6, "feet"),
  11537. weight: math.unit(68, "kg"),
  11538. name: "Front (Dressed)",
  11539. image: {
  11540. source: "./media/characters/nomaxice/front-dressed.svg",
  11541. extra: 1137/824,
  11542. bottom: 74/1211
  11543. }
  11544. },
  11545. frontShorts: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(68, "kg"),
  11548. name: "Front (Shorts)",
  11549. image: {
  11550. source: "./media/characters/nomaxice/front-shorts.svg",
  11551. extra: 1137/824,
  11552. bottom: 74/1211
  11553. }
  11554. },
  11555. back: {
  11556. height: math.unit(6, "feet"),
  11557. weight: math.unit(68, "kg"),
  11558. name: "Back",
  11559. image: {
  11560. source: "./media/characters/nomaxice/back.svg",
  11561. extra: 822/786,
  11562. bottom: 39/861
  11563. }
  11564. },
  11565. hand: {
  11566. height: math.unit(0.565, "feet"),
  11567. name: "Hand",
  11568. image: {
  11569. source: "./media/characters/nomaxice/hand.svg"
  11570. }
  11571. },
  11572. foot: {
  11573. height: math.unit(1, "feet"),
  11574. name: "Foot",
  11575. image: {
  11576. source: "./media/characters/nomaxice/foot.svg"
  11577. }
  11578. },
  11579. },
  11580. [
  11581. {
  11582. name: "Micro",
  11583. height: math.unit(8, "cm")
  11584. },
  11585. {
  11586. name: "Norm",
  11587. height: math.unit(1.82, "m")
  11588. },
  11589. {
  11590. name: "Norm+",
  11591. height: math.unit(8.8, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Big",
  11596. height: math.unit(8, "meters")
  11597. },
  11598. {
  11599. name: "Macro",
  11600. height: math.unit(18, "meters")
  11601. },
  11602. {
  11603. name: "Macro+",
  11604. height: math.unit(88, "meters")
  11605. },
  11606. ]
  11607. ))
  11608. characterMakers.push(() => makeCharacter(
  11609. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11610. {
  11611. front: {
  11612. height: math.unit(12, "feet"),
  11613. weight: math.unit(1.5, "tons"),
  11614. name: "Front",
  11615. image: {
  11616. source: "./media/characters/dydros/front.svg",
  11617. extra: 863 / 800,
  11618. bottom: 0.015
  11619. }
  11620. },
  11621. back: {
  11622. height: math.unit(12, "feet"),
  11623. weight: math.unit(1.5, "tons"),
  11624. name: "Back",
  11625. image: {
  11626. source: "./media/characters/dydros/back.svg",
  11627. extra: 900 / 843,
  11628. bottom: 0.005
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(12, "feet"),
  11636. default: true
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(100, "kg"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/riggi/front.svg",
  11649. extra: 5787 / 5303
  11650. }
  11651. },
  11652. hyper: {
  11653. height: math.unit(6 * 5 / 3, "feet"),
  11654. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11655. name: "Hyper",
  11656. image: {
  11657. source: "./media/characters/riggi/hyper.svg",
  11658. extra: 3595 / 3485
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Small Macro",
  11665. height: math.unit(50, "feet")
  11666. },
  11667. {
  11668. name: "Default",
  11669. height: math.unit(200, "feet"),
  11670. default: true
  11671. },
  11672. {
  11673. name: "Loom",
  11674. height: math.unit(10000, "feet")
  11675. },
  11676. {
  11677. name: "Cruising Altitude",
  11678. height: math.unit(30000, "feet")
  11679. },
  11680. {
  11681. name: "Megamacro",
  11682. height: math.unit(100, "miles")
  11683. },
  11684. {
  11685. name: "Continent Sized",
  11686. height: math.unit(2800, "miles")
  11687. },
  11688. {
  11689. name: "Earth Sized",
  11690. height: math.unit(8000, "miles")
  11691. },
  11692. ]
  11693. ))
  11694. characterMakers.push(() => makeCharacter(
  11695. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11696. {
  11697. front: {
  11698. height: math.unit(6, "feet"),
  11699. weight: math.unit(250, "lb"),
  11700. name: "Front",
  11701. image: {
  11702. source: "./media/characters/alexi/front.svg",
  11703. extra: 3483 / 3291,
  11704. bottom: 0.04
  11705. }
  11706. },
  11707. back: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(250, "lb"),
  11710. name: "Back",
  11711. image: {
  11712. source: "./media/characters/alexi/back.svg",
  11713. extra: 3533 / 3356,
  11714. bottom: 0.021
  11715. }
  11716. },
  11717. frontTransforming: {
  11718. height: math.unit(8.58, "feet"),
  11719. weight: math.unit(1300, "lb"),
  11720. name: "Transforming",
  11721. image: {
  11722. source: "./media/characters/alexi/front-transforming.svg",
  11723. extra: 437 / 409,
  11724. bottom: 19 / 458.66
  11725. }
  11726. },
  11727. frontTransformed: {
  11728. height: math.unit(12.5, "feet"),
  11729. weight: math.unit(4000, "lb"),
  11730. name: "Transformed",
  11731. image: {
  11732. source: "./media/characters/alexi/front-transformed.svg",
  11733. extra: 639 / 614,
  11734. bottom: 30.55 / 671
  11735. }
  11736. },
  11737. },
  11738. [
  11739. {
  11740. name: "Normal",
  11741. height: math.unit(14, "feet"),
  11742. default: true
  11743. },
  11744. {
  11745. name: "Minimacro",
  11746. height: math.unit(30, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(500, "meters")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(9000, "km")
  11755. },
  11756. {
  11757. name: "Teramacro",
  11758. height: math.unit(384000, "km")
  11759. },
  11760. ]
  11761. ))
  11762. characterMakers.push(() => makeCharacter(
  11763. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11764. {
  11765. front: {
  11766. height: math.unit(6, "feet"),
  11767. weight: math.unit(150, "lb"),
  11768. name: "Front",
  11769. image: {
  11770. source: "./media/characters/kayroo/front.svg",
  11771. extra: 1153 / 1038,
  11772. bottom: 0.06
  11773. }
  11774. },
  11775. foot: {
  11776. height: math.unit(6, "feet"),
  11777. weight: math.unit(150, "lb"),
  11778. name: "Foot",
  11779. image: {
  11780. source: "./media/characters/kayroo/foot.svg"
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(8, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Minimacro",
  11792. height: math.unit(250, "feet")
  11793. },
  11794. {
  11795. name: "Macro",
  11796. height: math.unit(2800, "feet")
  11797. },
  11798. {
  11799. name: "Megamacro",
  11800. height: math.unit(5200, "feet")
  11801. },
  11802. {
  11803. name: "Gigamacro",
  11804. height: math.unit(27000, "feet")
  11805. },
  11806. {
  11807. name: "Omega",
  11808. height: math.unit(45000, "feet")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(18, "feet"),
  11817. weight: math.unit(5800, "lb"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/rhys/front.svg",
  11821. extra: 3386 / 3090,
  11822. bottom: 0.07
  11823. }
  11824. },
  11825. },
  11826. [
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(18, "feet"),
  11830. default: true
  11831. },
  11832. {
  11833. name: "Working Size",
  11834. height: math.unit(200, "feet")
  11835. },
  11836. {
  11837. name: "Demolition Size",
  11838. height: math.unit(2000, "feet")
  11839. },
  11840. {
  11841. name: "Maximum Licensed Size",
  11842. height: math.unit(5, "miles")
  11843. },
  11844. {
  11845. name: "Maximum Observed Size",
  11846. height: math.unit(10, "yottameters")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(6, "feet"),
  11855. weight: math.unit(250, "lb"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/toto/front.svg",
  11859. extra: 527 / 479,
  11860. bottom: 0.05
  11861. }
  11862. },
  11863. },
  11864. [
  11865. {
  11866. name: "Micro",
  11867. height: math.unit(3, "feet")
  11868. },
  11869. {
  11870. name: "Normal",
  11871. height: math.unit(10, "feet")
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(150, "feet"),
  11876. default: true
  11877. },
  11878. {
  11879. name: "Megamacro",
  11880. height: math.unit(1200, "feet")
  11881. },
  11882. ]
  11883. ))
  11884. characterMakers.push(() => makeCharacter(
  11885. { name: "King", species: ["lion"], tags: ["anthro"] },
  11886. {
  11887. back: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(150, "lb"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/king/back.svg"
  11893. }
  11894. },
  11895. },
  11896. [
  11897. {
  11898. name: "Micro",
  11899. height: math.unit(2, "inches")
  11900. },
  11901. {
  11902. name: "Normal",
  11903. height: math.unit(8, "feet")
  11904. },
  11905. {
  11906. name: "Macro",
  11907. height: math.unit(200, "feet"),
  11908. default: true
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(50, "miles")
  11913. },
  11914. ]
  11915. ))
  11916. characterMakers.push(() => makeCharacter(
  11917. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11918. {
  11919. front: {
  11920. height: math.unit(11, "feet"),
  11921. weight: math.unit(1400, "lb"),
  11922. name: "Front",
  11923. image: {
  11924. source: "./media/characters/cordite/front.svg",
  11925. extra: 1919/1827,
  11926. bottom: 40/1959
  11927. }
  11928. },
  11929. side: {
  11930. height: math.unit(11, "feet"),
  11931. weight: math.unit(1400, "lb"),
  11932. name: "Side",
  11933. image: {
  11934. source: "./media/characters/cordite/side.svg",
  11935. extra: 1908/1793,
  11936. bottom: 38/1946
  11937. }
  11938. },
  11939. back: {
  11940. height: math.unit(11, "feet"),
  11941. weight: math.unit(1400, "lb"),
  11942. name: "Back",
  11943. image: {
  11944. source: "./media/characters/cordite/back.svg",
  11945. extra: 1938/1837,
  11946. bottom: 10/1948
  11947. }
  11948. },
  11949. feral: {
  11950. height: math.unit(2, "feet"),
  11951. weight: math.unit(90, "lb"),
  11952. name: "Feral",
  11953. image: {
  11954. source: "./media/characters/cordite/feral.svg",
  11955. extra: 1260 / 755,
  11956. bottom: 0.05
  11957. }
  11958. },
  11959. },
  11960. [
  11961. {
  11962. name: "Normal",
  11963. height: math.unit(11, "feet"),
  11964. default: true
  11965. },
  11966. ]
  11967. ))
  11968. characterMakers.push(() => makeCharacter(
  11969. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11970. {
  11971. front: {
  11972. height: math.unit(6, "feet"),
  11973. weight: math.unit(150, "lb"),
  11974. name: "Front",
  11975. image: {
  11976. source: "./media/characters/pianostrong/front.svg",
  11977. extra: 6577 / 6254,
  11978. bottom: 0.02
  11979. }
  11980. },
  11981. side: {
  11982. height: math.unit(6, "feet"),
  11983. weight: math.unit(150, "lb"),
  11984. name: "Side",
  11985. image: {
  11986. source: "./media/characters/pianostrong/side.svg",
  11987. extra: 6106 / 5730
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(150, "lb"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/pianostrong/back.svg",
  11996. extra: 6085 / 5733,
  11997. bottom: 0.01
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Macro",
  12004. height: math.unit(100, "feet")
  12005. },
  12006. {
  12007. name: "Macro+",
  12008. height: math.unit(300, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Macro++",
  12013. height: math.unit(1000, "feet")
  12014. },
  12015. ]
  12016. ))
  12017. characterMakers.push(() => makeCharacter(
  12018. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12019. {
  12020. front: {
  12021. height: math.unit(6, "feet"),
  12022. weight: math.unit(150, "lb"),
  12023. name: "Front",
  12024. image: {
  12025. source: "./media/characters/kona/front.svg",
  12026. extra: 2960 / 2629,
  12027. bottom: 0.005
  12028. }
  12029. },
  12030. },
  12031. [
  12032. {
  12033. name: "Normal",
  12034. height: math.unit(11 + 8 / 12, "feet")
  12035. },
  12036. {
  12037. name: "Macro",
  12038. height: math.unit(850, "feet"),
  12039. default: true
  12040. },
  12041. {
  12042. name: "Macro+",
  12043. height: math.unit(1.5, "km"),
  12044. default: true
  12045. },
  12046. {
  12047. name: "Megamacro",
  12048. height: math.unit(80, "miles")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(3500, "miles")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12058. {
  12059. side: {
  12060. height: math.unit(1.9, "meters"),
  12061. weight: math.unit(326, "kg"),
  12062. name: "Side",
  12063. image: {
  12064. source: "./media/characters/levi/side.svg",
  12065. extra: 1704 / 1334,
  12066. bottom: 0.02
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(1.9, "meters"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Macro",
  12078. height: math.unit(20, "meters")
  12079. },
  12080. {
  12081. name: "Macro+",
  12082. height: math.unit(200, "meters")
  12083. },
  12084. {
  12085. name: "Megamacro",
  12086. height: math.unit(2, "km")
  12087. },
  12088. {
  12089. name: "Megamacro+",
  12090. height: math.unit(20, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro",
  12094. height: math.unit(2500, "km")
  12095. },
  12096. {
  12097. name: "Gigamacro+",
  12098. height: math.unit(120000, "km")
  12099. },
  12100. {
  12101. name: "Teramacro",
  12102. height: math.unit(7.77e6, "km")
  12103. },
  12104. ]
  12105. ))
  12106. characterMakers.push(() => makeCharacter(
  12107. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12108. {
  12109. front: {
  12110. height: math.unit(6 + 4/12, "feet"),
  12111. weight: math.unit(190, "lb"),
  12112. name: "Front",
  12113. image: {
  12114. source: "./media/characters/bmc/front.svg",
  12115. extra: 1626/1472,
  12116. bottom: 79/1705
  12117. }
  12118. },
  12119. back: {
  12120. height: math.unit(6 + 4/12, "feet"),
  12121. weight: math.unit(190, "lb"),
  12122. name: "Back",
  12123. image: {
  12124. source: "./media/characters/bmc/back.svg",
  12125. extra: 1640/1479,
  12126. bottom: 45/1685
  12127. }
  12128. },
  12129. frontArmor: {
  12130. height: math.unit(6 + 4/12, "feet"),
  12131. weight: math.unit(190, "lb"),
  12132. name: "Front-armor",
  12133. image: {
  12134. source: "./media/characters/bmc/front-armor.svg",
  12135. extra: 1538/1468,
  12136. bottom: 79/1617
  12137. }
  12138. },
  12139. },
  12140. [
  12141. {
  12142. name: "Human-sized",
  12143. height: math.unit(6 + 4 / 12, "feet")
  12144. },
  12145. {
  12146. name: "Interactive Size",
  12147. height: math.unit(25, "feet")
  12148. },
  12149. {
  12150. name: "Small",
  12151. height: math.unit(250, "feet")
  12152. },
  12153. {
  12154. name: "Normal",
  12155. height: math.unit(1250, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Good Day",
  12160. height: math.unit(88, "miles")
  12161. },
  12162. {
  12163. name: "Largest Measured Size",
  12164. height: math.unit(105.960, "galaxies")
  12165. },
  12166. ]
  12167. ))
  12168. characterMakers.push(() => makeCharacter(
  12169. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12170. {
  12171. front: {
  12172. height: math.unit(20, "feet"),
  12173. weight: math.unit(2016, "kg"),
  12174. name: "Front",
  12175. image: {
  12176. source: "./media/characters/sven-the-kaiju/front.svg",
  12177. extra: 1277/1250,
  12178. bottom: 35/1312
  12179. }
  12180. },
  12181. mouth: {
  12182. height: math.unit(1.85, "feet"),
  12183. name: "Mouth",
  12184. image: {
  12185. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Fairy",
  12192. height: math.unit(6, "inches")
  12193. },
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(20, "feet"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Rampage",
  12201. height: math.unit(200, "feet")
  12202. },
  12203. {
  12204. name: "Archfey Forest Guardian",
  12205. height: math.unit(1, "mile")
  12206. },
  12207. ]
  12208. ))
  12209. characterMakers.push(() => makeCharacter(
  12210. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12211. {
  12212. front: {
  12213. height: math.unit(4, "meters"),
  12214. weight: math.unit(2, "tons"),
  12215. name: "Front",
  12216. image: {
  12217. source: "./media/characters/marik/front.svg",
  12218. extra: 1057 / 1003,
  12219. bottom: 0.08
  12220. }
  12221. },
  12222. },
  12223. [
  12224. {
  12225. name: "Normal",
  12226. height: math.unit(4, "meters"),
  12227. default: true
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(20, "meters")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(50, "km")
  12236. },
  12237. {
  12238. name: "Gigamacro",
  12239. height: math.unit(100, "km")
  12240. },
  12241. {
  12242. name: "Alpha Macro",
  12243. height: math.unit(7.88e7, "yottameters")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(6, "feet"),
  12252. weight: math.unit(110, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/mel/front.svg",
  12256. extra: 736 / 617,
  12257. bottom: 0.017
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Pico",
  12264. height: math.unit(3, "pm")
  12265. },
  12266. {
  12267. name: "Nano",
  12268. height: math.unit(3, "nm")
  12269. },
  12270. {
  12271. name: "Micro",
  12272. height: math.unit(0.3, "mm"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Micro+",
  12277. height: math.unit(3, "mm")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(5 + 10.5 / 12, "feet")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12287. {
  12288. kaiju: {
  12289. height: math.unit(1.75, "meters"),
  12290. weight: math.unit(55, "kg"),
  12291. name: "Kaiju",
  12292. image: {
  12293. source: "./media/characters/lykonous/kaiju.svg",
  12294. extra: 1055 / 946,
  12295. bottom: 0.135
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(2.5, "meters"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Kaiju Dragon",
  12307. height: math.unit(60, "meters")
  12308. },
  12309. {
  12310. name: "Mega Kaiju",
  12311. height: math.unit(120, "km")
  12312. },
  12313. {
  12314. name: "Giga Kaiju",
  12315. height: math.unit(200, "megameters")
  12316. },
  12317. {
  12318. name: "Terra Kaiju",
  12319. height: math.unit(400, "gigameters")
  12320. },
  12321. {
  12322. name: "Kaiju Dragon God",
  12323. height: math.unit(13000, "exaparsecs")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(6, "feet"),
  12332. weight: math.unit(150, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/blü/front.svg",
  12336. extra: 1883 / 1564,
  12337. bottom: 0.031
  12338. }
  12339. },
  12340. },
  12341. [
  12342. {
  12343. name: "Normal",
  12344. height: math.unit(13, "feet"),
  12345. default: true
  12346. },
  12347. {
  12348. name: "Big Boi",
  12349. height: math.unit(150, "meters")
  12350. },
  12351. {
  12352. name: "Mini Stomper",
  12353. height: math.unit(300, "meters")
  12354. },
  12355. {
  12356. name: "Macro",
  12357. height: math.unit(1000, "meters")
  12358. },
  12359. {
  12360. name: "Megamacro",
  12361. height: math.unit(11000, "meters")
  12362. },
  12363. {
  12364. name: "Gigamacro",
  12365. height: math.unit(11000, "km")
  12366. },
  12367. {
  12368. name: "Teramacro",
  12369. height: math.unit(420000, "km")
  12370. },
  12371. {
  12372. name: "Examacro",
  12373. height: math.unit(120, "parsecs")
  12374. },
  12375. {
  12376. name: "God Tho",
  12377. height: math.unit(98000000000, "parsecs")
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12383. {
  12384. taurFront: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(200, "lb"),
  12387. name: "Taur (Front)",
  12388. image: {
  12389. source: "./media/characters/scales/taur-front.svg",
  12390. extra: 1,
  12391. bottom: 0.05
  12392. }
  12393. },
  12394. taurBack: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(200, "lb"),
  12397. name: "Taur (Back)",
  12398. image: {
  12399. source: "./media/characters/scales/taur-back.svg",
  12400. extra: 1,
  12401. bottom: 0.08
  12402. }
  12403. },
  12404. anthro: {
  12405. height: math.unit(6 * 7 / 12, "feet"),
  12406. weight: math.unit(100, "lb"),
  12407. name: "Anthro",
  12408. image: {
  12409. source: "./media/characters/scales/anthro.svg",
  12410. extra: 1,
  12411. bottom: 0.06
  12412. }
  12413. },
  12414. },
  12415. [
  12416. {
  12417. name: "Normal",
  12418. height: math.unit(12, "feet"),
  12419. default: true
  12420. },
  12421. ]
  12422. ))
  12423. characterMakers.push(() => makeCharacter(
  12424. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12425. {
  12426. front: {
  12427. height: math.unit(6, "feet"),
  12428. weight: math.unit(150, "lb"),
  12429. name: "Front",
  12430. image: {
  12431. source: "./media/characters/koragos/front.svg",
  12432. extra: 841 / 794,
  12433. bottom: 0.035
  12434. }
  12435. },
  12436. back: {
  12437. height: math.unit(6, "feet"),
  12438. weight: math.unit(150, "lb"),
  12439. name: "Back",
  12440. image: {
  12441. source: "./media/characters/koragos/back.svg",
  12442. extra: 841 / 810,
  12443. bottom: 0.022
  12444. }
  12445. },
  12446. },
  12447. [
  12448. {
  12449. name: "Normal",
  12450. height: math.unit(6 + 11 / 12, "feet"),
  12451. default: true
  12452. },
  12453. {
  12454. name: "Macro",
  12455. height: math.unit(490, "feet")
  12456. },
  12457. {
  12458. name: "Megamacro",
  12459. height: math.unit(10, "miles")
  12460. },
  12461. {
  12462. name: "Gigamacro",
  12463. height: math.unit(50, "miles")
  12464. },
  12465. ]
  12466. ))
  12467. characterMakers.push(() => makeCharacter(
  12468. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12469. {
  12470. front: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(250, "lb"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/xylrem/front.svg",
  12476. extra: 3323 / 3050,
  12477. bottom: 0.065
  12478. }
  12479. },
  12480. },
  12481. [
  12482. {
  12483. name: "Micro",
  12484. height: math.unit(4, "feet")
  12485. },
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(16, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Macro",
  12493. height: math.unit(2720, "feet")
  12494. },
  12495. {
  12496. name: "Megamacro",
  12497. height: math.unit(25000, "miles")
  12498. },
  12499. ]
  12500. ))
  12501. characterMakers.push(() => makeCharacter(
  12502. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12503. {
  12504. front: {
  12505. height: math.unit(8, "feet"),
  12506. weight: math.unit(250, "kg"),
  12507. name: "Front",
  12508. image: {
  12509. source: "./media/characters/ikideru/front.svg",
  12510. extra: 930 / 870,
  12511. bottom: 0.087
  12512. }
  12513. },
  12514. back: {
  12515. height: math.unit(8, "feet"),
  12516. weight: math.unit(250, "kg"),
  12517. name: "Back",
  12518. image: {
  12519. source: "./media/characters/ikideru/back.svg",
  12520. extra: 919 / 852,
  12521. bottom: 0.055
  12522. }
  12523. },
  12524. },
  12525. [
  12526. {
  12527. name: "Rare",
  12528. height: math.unit(8, "feet"),
  12529. default: true
  12530. },
  12531. {
  12532. name: "Playful Loom",
  12533. height: math.unit(80, "feet")
  12534. },
  12535. {
  12536. name: "City Leaner",
  12537. height: math.unit(230, "feet")
  12538. },
  12539. {
  12540. name: "Megamacro",
  12541. height: math.unit(2500, "feet")
  12542. },
  12543. {
  12544. name: "Gigamacro",
  12545. height: math.unit(26400, "feet")
  12546. },
  12547. {
  12548. name: "Tectonic Shifter",
  12549. height: math.unit(1.7, "megameters")
  12550. },
  12551. {
  12552. name: "Planet Carer",
  12553. height: math.unit(21, "megameters")
  12554. },
  12555. {
  12556. name: "God",
  12557. height: math.unit(11157.22, "parsecs")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(6, "feet"),
  12566. weight: math.unit(120, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/neo/front.svg"
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Micro",
  12576. height: math.unit(2, "inches"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Human Size",
  12581. height: math.unit(5 + 8 / 12, "feet")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12587. {
  12588. front: {
  12589. height: math.unit(13 + 10 / 12, "feet"),
  12590. weight: math.unit(5320, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/chauncey-chantz/front.svg",
  12594. extra: 1587 / 1435,
  12595. bottom: 0.02
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Normal",
  12602. height: math.unit(13 + 10 / 12, "feet"),
  12603. default: true
  12604. },
  12605. {
  12606. name: "Macro",
  12607. height: math.unit(45, "feet")
  12608. },
  12609. {
  12610. name: "Megamacro",
  12611. height: math.unit(250, "miles")
  12612. },
  12613. {
  12614. name: "Planetary",
  12615. height: math.unit(10000, "miles")
  12616. },
  12617. {
  12618. name: "Galactic",
  12619. height: math.unit(40000, "parsecs")
  12620. },
  12621. {
  12622. name: "Universal",
  12623. height: math.unit(1, "yottameter")
  12624. },
  12625. ]
  12626. ))
  12627. characterMakers.push(() => makeCharacter(
  12628. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12629. {
  12630. front: {
  12631. height: math.unit(6, "feet"),
  12632. weight: math.unit(150, "lb"),
  12633. name: "Front",
  12634. image: {
  12635. source: "./media/characters/epifox/front.svg",
  12636. extra: 1,
  12637. bottom: 0.075
  12638. }
  12639. },
  12640. },
  12641. [
  12642. {
  12643. name: "Micro",
  12644. height: math.unit(6, "inches")
  12645. },
  12646. {
  12647. name: "Normal",
  12648. height: math.unit(12, "feet"),
  12649. default: true
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(3810, "feet")
  12654. },
  12655. {
  12656. name: "Megamacro",
  12657. height: math.unit(500, "miles")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(1.8796, "m"),
  12666. weight: math.unit(230, "lb"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/colin-t/front.svg",
  12670. extra: 1272 / 1193,
  12671. bottom: 0.07
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Micro",
  12678. height: math.unit(0.571, "meters")
  12679. },
  12680. {
  12681. name: "Normal",
  12682. height: math.unit(1.8796, "meters"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Tall",
  12687. height: math.unit(4, "meters")
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(67.241, "meters")
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(371.856, "meters")
  12696. },
  12697. {
  12698. name: "Planetary",
  12699. height: math.unit(12631.5689, "km")
  12700. },
  12701. ]
  12702. ))
  12703. characterMakers.push(() => makeCharacter(
  12704. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12705. {
  12706. front: {
  12707. height: math.unit(1.85, "meters"),
  12708. weight: math.unit(80, "kg"),
  12709. name: "Front",
  12710. image: {
  12711. source: "./media/characters/matvei/front.svg",
  12712. extra: 614 / 594,
  12713. bottom: 0.01
  12714. }
  12715. },
  12716. },
  12717. [
  12718. {
  12719. name: "Normal",
  12720. height: math.unit(1.85, "meters"),
  12721. default: true
  12722. },
  12723. ]
  12724. ))
  12725. characterMakers.push(() => makeCharacter(
  12726. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12727. {
  12728. front: {
  12729. height: math.unit(5 + 9 / 12, "feet"),
  12730. weight: math.unit(70, "lb"),
  12731. name: "Front",
  12732. image: {
  12733. source: "./media/characters/quincy/front.svg",
  12734. extra: 3041 / 2751
  12735. }
  12736. },
  12737. back: {
  12738. height: math.unit(5 + 9 / 12, "feet"),
  12739. weight: math.unit(70, "lb"),
  12740. name: "Back",
  12741. image: {
  12742. source: "./media/characters/quincy/back.svg",
  12743. extra: 3041 / 2751
  12744. }
  12745. },
  12746. flying: {
  12747. height: math.unit(5 + 4 / 12, "feet"),
  12748. weight: math.unit(70, "lb"),
  12749. name: "Flying",
  12750. image: {
  12751. source: "./media/characters/quincy/flying.svg",
  12752. extra: 1044 / 930
  12753. }
  12754. },
  12755. },
  12756. [
  12757. {
  12758. name: "Micro",
  12759. height: math.unit(3, "cm")
  12760. },
  12761. {
  12762. name: "Normal",
  12763. height: math.unit(5 + 9 / 12, "feet")
  12764. },
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(200, "meters"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Megamacro",
  12772. height: math.unit(1000, "meters")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(3 + 11/12, "feet"),
  12781. weight: math.unit(50, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/vanrel/front.svg",
  12785. extra: 1104/949,
  12786. bottom: 52/1156
  12787. }
  12788. },
  12789. back: {
  12790. height: math.unit(3 + 11/12, "feet"),
  12791. weight: math.unit(50, "lb"),
  12792. name: "Back",
  12793. image: {
  12794. source: "./media/characters/vanrel/back.svg",
  12795. extra: 1119/976,
  12796. bottom: 37/1156
  12797. }
  12798. },
  12799. tome: {
  12800. height: math.unit(1.35, "feet"),
  12801. weight: math.unit(10, "lb"),
  12802. name: "Vanrel's Tome",
  12803. rename: true,
  12804. image: {
  12805. source: "./media/characters/vanrel/tome.svg"
  12806. }
  12807. },
  12808. beans: {
  12809. height: math.unit(0.89, "feet"),
  12810. name: "Beans",
  12811. image: {
  12812. source: "./media/characters/vanrel/beans.svg"
  12813. }
  12814. },
  12815. },
  12816. [
  12817. {
  12818. name: "Normal",
  12819. height: math.unit(3 + 11/12, "feet"),
  12820. default: true
  12821. },
  12822. ]
  12823. ))
  12824. characterMakers.push(() => makeCharacter(
  12825. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12826. {
  12827. front: {
  12828. height: math.unit(7 + 5 / 12, "feet"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/kuiper-vanrel/front.svg",
  12832. extra: 1219/1169,
  12833. bottom: 69/1288
  12834. }
  12835. },
  12836. back: {
  12837. height: math.unit(7 + 5 / 12, "feet"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/kuiper-vanrel/back.svg",
  12841. extra: 1236/1193,
  12842. bottom: 27/1263
  12843. }
  12844. },
  12845. foot: {
  12846. height: math.unit(0.55, "meters"),
  12847. name: "Foot",
  12848. image: {
  12849. source: "./media/characters/kuiper-vanrel/foot.svg",
  12850. }
  12851. },
  12852. battle: {
  12853. height: math.unit(6.824, "feet"),
  12854. name: "Battle",
  12855. image: {
  12856. source: "./media/characters/kuiper-vanrel/battle.svg",
  12857. extra: 1466 / 1327,
  12858. bottom: 29 / 1492.5
  12859. }
  12860. },
  12861. meerkui: {
  12862. height: math.unit(18, "inches"),
  12863. name: "Meerkui",
  12864. image: {
  12865. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12866. extra: 1354/1289,
  12867. bottom: 69/1423
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(7 + 5 / 12, "feet"),
  12875. default: true
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(8 + 5 / 12, "feet"),
  12884. name: "Front",
  12885. image: {
  12886. source: "./media/characters/keset-vanrel/front.svg",
  12887. extra: 1231/1148,
  12888. bottom: 82/1313
  12889. }
  12890. },
  12891. back: {
  12892. height: math.unit(8 + 5 / 12, "feet"),
  12893. name: "Back",
  12894. image: {
  12895. source: "./media/characters/keset-vanrel/back.svg",
  12896. extra: 1240/1174,
  12897. bottom: 33/1273
  12898. }
  12899. },
  12900. hand: {
  12901. height: math.unit(0.6, "meters"),
  12902. name: "Hand",
  12903. image: {
  12904. source: "./media/characters/keset-vanrel/hand.svg"
  12905. }
  12906. },
  12907. foot: {
  12908. height: math.unit(0.94978, "meters"),
  12909. name: "Foot",
  12910. image: {
  12911. source: "./media/characters/keset-vanrel/foot.svg"
  12912. }
  12913. },
  12914. battle: {
  12915. height: math.unit(7.408, "feet"),
  12916. name: "Battle",
  12917. image: {
  12918. source: "./media/characters/keset-vanrel/battle.svg",
  12919. extra: 1890 / 1386,
  12920. bottom: 73.28 / 1970
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(8 + 5 / 12, "feet"),
  12928. default: true
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(6, "feet"),
  12937. weight: math.unit(150, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/neos/front.svg",
  12941. extra: 1696 / 992,
  12942. bottom: 0.14
  12943. }
  12944. },
  12945. },
  12946. [
  12947. {
  12948. name: "Normal",
  12949. height: math.unit(54, "cm"),
  12950. default: true
  12951. },
  12952. {
  12953. name: "Macro",
  12954. height: math.unit(100, "m")
  12955. },
  12956. {
  12957. name: "Megamacro",
  12958. height: math.unit(10, "km")
  12959. },
  12960. {
  12961. name: "Megamacro+",
  12962. height: math.unit(100, "km")
  12963. },
  12964. {
  12965. name: "Gigamacro",
  12966. height: math.unit(100, "Mm")
  12967. },
  12968. {
  12969. name: "Teramacro",
  12970. height: math.unit(100, "Gm")
  12971. },
  12972. {
  12973. name: "Examacro",
  12974. height: math.unit(100, "Em")
  12975. },
  12976. {
  12977. name: "Godly",
  12978. height: math.unit(10000, "Ym")
  12979. },
  12980. {
  12981. name: "Beyond Godly",
  12982. height: math.unit(25, "multiverses")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12988. {
  12989. feminine: {
  12990. height: math.unit(5, "feet"),
  12991. weight: math.unit(100, "lb"),
  12992. name: "Feminine",
  12993. image: {
  12994. source: "./media/characters/sammy-mouse/feminine.svg",
  12995. extra: 2526 / 2425,
  12996. bottom: 0.123
  12997. }
  12998. },
  12999. masculine: {
  13000. height: math.unit(5, "feet"),
  13001. weight: math.unit(100, "lb"),
  13002. name: "Masculine",
  13003. image: {
  13004. source: "./media/characters/sammy-mouse/masculine.svg",
  13005. extra: 2526 / 2425,
  13006. bottom: 0.123
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(5, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(5, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(60, "feet")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(4, "feet"),
  13031. weight: math.unit(50, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/kole/front.svg",
  13035. extra: 1423 / 1303,
  13036. bottom: 0.025
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(4, "feet"),
  13041. weight: math.unit(50, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/kole/back.svg",
  13045. extra: 1426 / 1280,
  13046. bottom: 0.02
  13047. }
  13048. },
  13049. },
  13050. [
  13051. {
  13052. name: "Normal",
  13053. height: math.unit(4, "feet"),
  13054. default: true
  13055. },
  13056. ]
  13057. ))
  13058. characterMakers.push(() => makeCharacter(
  13059. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13060. {
  13061. front: {
  13062. height: math.unit(2.5, "feet"),
  13063. weight: math.unit(32, "lb"),
  13064. name: "Front",
  13065. image: {
  13066. source: "./media/characters/rufran/front.svg",
  13067. extra: 1313/885,
  13068. bottom: 94/1407
  13069. }
  13070. },
  13071. side: {
  13072. height: math.unit(2.5, "feet"),
  13073. weight: math.unit(32, "lb"),
  13074. name: "Side",
  13075. image: {
  13076. source: "./media/characters/rufran/side.svg",
  13077. extra: 1109/852,
  13078. bottom: 118/1227
  13079. }
  13080. },
  13081. back: {
  13082. height: math.unit(2.5, "feet"),
  13083. weight: math.unit(32, "lb"),
  13084. name: "Back",
  13085. image: {
  13086. source: "./media/characters/rufran/back.svg",
  13087. extra: 1280/878,
  13088. bottom: 131/1411
  13089. }
  13090. },
  13091. mouth: {
  13092. height: math.unit(1.13, "feet"),
  13093. name: "Mouth",
  13094. image: {
  13095. source: "./media/characters/rufran/mouth.svg"
  13096. }
  13097. },
  13098. foot: {
  13099. height: math.unit(1.33, "feet"),
  13100. name: "Foot",
  13101. image: {
  13102. source: "./media/characters/rufran/foot.svg"
  13103. }
  13104. },
  13105. koboldFront: {
  13106. height: math.unit(2 + 6 / 12, "feet"),
  13107. weight: math.unit(20, "lb"),
  13108. name: "Front (Kobold)",
  13109. image: {
  13110. source: "./media/characters/rufran/kobold-front.svg",
  13111. extra: 2041 / 1839,
  13112. bottom: 0.055
  13113. }
  13114. },
  13115. koboldBack: {
  13116. height: math.unit(2 + 6 / 12, "feet"),
  13117. weight: math.unit(20, "lb"),
  13118. name: "Back (Kobold)",
  13119. image: {
  13120. source: "./media/characters/rufran/kobold-back.svg",
  13121. extra: 2054 / 1839,
  13122. bottom: 0.01
  13123. }
  13124. },
  13125. koboldHand: {
  13126. height: math.unit(0.2166, "meters"),
  13127. name: "Hand (Kobold)",
  13128. image: {
  13129. source: "./media/characters/rufran/kobold-hand.svg"
  13130. }
  13131. },
  13132. koboldFoot: {
  13133. height: math.unit(0.185, "meters"),
  13134. name: "Foot (Kobold)",
  13135. image: {
  13136. source: "./media/characters/rufran/kobold-foot.svg"
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Micro",
  13143. height: math.unit(1, "inch")
  13144. },
  13145. {
  13146. name: "Normal",
  13147. height: math.unit(2 + 6 / 12, "feet"),
  13148. default: true
  13149. },
  13150. {
  13151. name: "Big",
  13152. height: math.unit(60, "feet")
  13153. },
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(325, "feet")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(0.3, "meters"),
  13165. weight: math.unit(3.5, "kg"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/chip/front.svg",
  13169. extra: 748 / 674
  13170. }
  13171. },
  13172. },
  13173. [
  13174. {
  13175. name: "Micro",
  13176. height: math.unit(1, "inch"),
  13177. default: true
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13183. {
  13184. side: {
  13185. height: math.unit(2.3, "meters"),
  13186. weight: math.unit(3500, "lb"),
  13187. name: "Side",
  13188. image: {
  13189. source: "./media/characters/torvid/side.svg",
  13190. extra: 1972 / 722,
  13191. bottom: 0.035
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Normal",
  13198. height: math.unit(2.3, "meters"),
  13199. default: true
  13200. },
  13201. ]
  13202. ))
  13203. characterMakers.push(() => makeCharacter(
  13204. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13205. {
  13206. front: {
  13207. height: math.unit(2, "meters"),
  13208. weight: math.unit(150.5, "kg"),
  13209. name: "Front",
  13210. image: {
  13211. source: "./media/characters/susan/front.svg",
  13212. extra: 693 / 635,
  13213. bottom: 0.05
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Megamacro",
  13220. height: math.unit(505, "miles"),
  13221. default: true
  13222. },
  13223. ]
  13224. ))
  13225. characterMakers.push(() => makeCharacter(
  13226. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13227. {
  13228. front: {
  13229. height: math.unit(6, "feet"),
  13230. weight: math.unit(150, "lb"),
  13231. name: "Front",
  13232. image: {
  13233. source: "./media/characters/raindrops/front.svg",
  13234. extra: 2655 / 2461,
  13235. bottom: 49 / 2705
  13236. }
  13237. },
  13238. back: {
  13239. height: math.unit(6, "feet"),
  13240. weight: math.unit(150, "lb"),
  13241. name: "Back",
  13242. image: {
  13243. source: "./media/characters/raindrops/back.svg",
  13244. extra: 2574 / 2400,
  13245. bottom: 65 / 2634
  13246. }
  13247. },
  13248. },
  13249. [
  13250. {
  13251. name: "Micro",
  13252. height: math.unit(6, "inches")
  13253. },
  13254. {
  13255. name: "Normal",
  13256. height: math.unit(6 + 2 / 12, "feet")
  13257. },
  13258. {
  13259. name: "Macro",
  13260. height: math.unit(131, "feet"),
  13261. default: true
  13262. },
  13263. {
  13264. name: "Megamacro",
  13265. height: math.unit(15, "miles")
  13266. },
  13267. {
  13268. name: "Gigamacro",
  13269. height: math.unit(4000, "miles")
  13270. },
  13271. {
  13272. name: "Teramacro",
  13273. height: math.unit(315000, "miles")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(2.794, "meters"),
  13282. weight: math.unit(325, "kg"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/tezwa/front.svg",
  13286. extra: 2083 / 1906,
  13287. bottom: 0.031
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(0.687, "meters"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/tezwa/foot.svg"
  13295. }
  13296. },
  13297. },
  13298. [
  13299. {
  13300. name: "Normal",
  13301. height: math.unit(9 + 2 / 12, "feet"),
  13302. default: true
  13303. },
  13304. ]
  13305. ))
  13306. characterMakers.push(() => makeCharacter(
  13307. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13308. {
  13309. front: {
  13310. height: math.unit(58, "feet"),
  13311. weight: math.unit(89000, "lb"),
  13312. name: "Front",
  13313. image: {
  13314. source: "./media/characters/typhus/front.svg",
  13315. extra: 816 / 800,
  13316. bottom: 0.065
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(58, "feet"),
  13324. default: true
  13325. },
  13326. ]
  13327. ))
  13328. characterMakers.push(() => makeCharacter(
  13329. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13330. {
  13331. front: {
  13332. height: math.unit(12, "feet"),
  13333. weight: math.unit(6, "tonnes"),
  13334. name: "Front",
  13335. image: {
  13336. source: "./media/characters/lyra-von-wulf/front.svg",
  13337. extra: 1,
  13338. bottom: 0.10
  13339. }
  13340. },
  13341. frontMecha: {
  13342. height: math.unit(12, "feet"),
  13343. weight: math.unit(12, "tonnes"),
  13344. name: "Front (Mecha)",
  13345. image: {
  13346. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13347. extra: 1,
  13348. bottom: 0.042
  13349. }
  13350. },
  13351. maw: {
  13352. height: math.unit(2.2, "feet"),
  13353. name: "Maw",
  13354. image: {
  13355. source: "./media/characters/lyra-von-wulf/maw.svg"
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(12, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Classic",
  13367. height: math.unit(50, "feet")
  13368. },
  13369. {
  13370. name: "Macro",
  13371. height: math.unit(500, "feet")
  13372. },
  13373. {
  13374. name: "Megamacro",
  13375. height: math.unit(1, "mile")
  13376. },
  13377. {
  13378. name: "Gigamacro",
  13379. height: math.unit(400, "miles")
  13380. },
  13381. {
  13382. name: "Teramacro",
  13383. height: math.unit(22000, "miles")
  13384. },
  13385. {
  13386. name: "Solarmacro",
  13387. height: math.unit(8600000, "miles")
  13388. },
  13389. {
  13390. name: "Galactic",
  13391. height: math.unit(1057000, "lightyears")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(6 + 10 / 12, "feet"),
  13400. weight: math.unit(150, "lb"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/dixon/front.svg",
  13404. extra: 3361 / 3209,
  13405. bottom: 0.01
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(6 + 10 / 12, "feet"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Big",
  13417. height: math.unit(12, "meters")
  13418. },
  13419. {
  13420. name: "Macro",
  13421. height: math.unit(500, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(2, "km")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(185, "cm"),
  13434. weight: math.unit(68, "kg"),
  13435. name: "Front",
  13436. image: {
  13437. source: "./media/characters/kauko/front.svg",
  13438. extra: 1455 / 1421,
  13439. bottom: 0.03
  13440. }
  13441. },
  13442. back: {
  13443. height: math.unit(185, "cm"),
  13444. weight: math.unit(68, "kg"),
  13445. name: "Back",
  13446. image: {
  13447. source: "./media/characters/kauko/back.svg",
  13448. extra: 1455 / 1421,
  13449. bottom: 0.004
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Normal",
  13456. height: math.unit(185, "cm"),
  13457. default: true
  13458. },
  13459. ]
  13460. ))
  13461. characterMakers.push(() => makeCharacter(
  13462. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13463. {
  13464. front: {
  13465. height: math.unit(6, "feet"),
  13466. weight: math.unit(150, "kg"),
  13467. name: "Front",
  13468. image: {
  13469. source: "./media/characters/varg/front.svg",
  13470. extra: 1108 / 1018,
  13471. bottom: 0.0375
  13472. }
  13473. },
  13474. },
  13475. [
  13476. {
  13477. name: "Normal",
  13478. height: math.unit(5, "meters")
  13479. },
  13480. {
  13481. name: "Macro",
  13482. height: math.unit(200, "meters")
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(20, "kilometers")
  13487. },
  13488. {
  13489. name: "True Size",
  13490. height: math.unit(211, "km"),
  13491. default: true
  13492. },
  13493. {
  13494. name: "Gigamacro",
  13495. height: math.unit(1000, "km")
  13496. },
  13497. {
  13498. name: "Gigamacro+",
  13499. height: math.unit(8000, "km")
  13500. },
  13501. {
  13502. name: "Teramacro",
  13503. height: math.unit(1000000, "km")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(7 + 7 / 12, "feet"),
  13512. weight: math.unit(267, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/dayza/front.svg",
  13516. extra: 1262 / 1200,
  13517. bottom: 0.035
  13518. }
  13519. },
  13520. side: {
  13521. height: math.unit(7 + 7 / 12, "feet"),
  13522. weight: math.unit(267, "lb"),
  13523. name: "Side",
  13524. image: {
  13525. source: "./media/characters/dayza/side.svg",
  13526. extra: 1295 / 1245,
  13527. bottom: 0.05
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(7 + 7 / 12, "feet"),
  13532. weight: math.unit(267, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/dayza/back.svg",
  13536. extra: 1241 / 1170
  13537. }
  13538. },
  13539. },
  13540. [
  13541. {
  13542. name: "Normal",
  13543. height: math.unit(7 + 7 / 12, "feet"),
  13544. default: true
  13545. },
  13546. {
  13547. name: "Macro",
  13548. height: math.unit(155, "feet")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6 + 5 / 12, "feet"),
  13557. weight: math.unit(160, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/xanthos/front.svg",
  13561. extra: 1,
  13562. bottom: 0.04
  13563. }
  13564. },
  13565. back: {
  13566. height: math.unit(6 + 5 / 12, "feet"),
  13567. weight: math.unit(160, "lb"),
  13568. name: "Back",
  13569. image: {
  13570. source: "./media/characters/xanthos/back.svg",
  13571. extra: 1,
  13572. bottom: 0.03
  13573. }
  13574. },
  13575. hand: {
  13576. height: math.unit(0.928, "feet"),
  13577. name: "Hand",
  13578. image: {
  13579. source: "./media/characters/xanthos/hand.svg"
  13580. }
  13581. },
  13582. foot: {
  13583. height: math.unit(1.286, "feet"),
  13584. name: "Foot",
  13585. image: {
  13586. source: "./media/characters/xanthos/foot.svg"
  13587. }
  13588. },
  13589. },
  13590. [
  13591. {
  13592. name: "Normal",
  13593. height: math.unit(6 + 5 / 12, "feet"),
  13594. default: true
  13595. },
  13596. {
  13597. name: "Normal+",
  13598. height: math.unit(6, "meters")
  13599. },
  13600. {
  13601. name: "Macro",
  13602. height: math.unit(40, "feet")
  13603. },
  13604. {
  13605. name: "Macro+",
  13606. height: math.unit(200, "meters")
  13607. },
  13608. {
  13609. name: "Megamacro",
  13610. height: math.unit(20, "km")
  13611. },
  13612. {
  13613. name: "Megamacro+",
  13614. height: math.unit(100, "km")
  13615. },
  13616. {
  13617. name: "Gigamacro",
  13618. height: math.unit(200, "megameters")
  13619. },
  13620. {
  13621. name: "Gigamacro+",
  13622. height: math.unit(1.5, "gigameters")
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13628. {
  13629. front: {
  13630. height: math.unit(6 + 3 / 12, "feet"),
  13631. weight: math.unit(215, "lb"),
  13632. name: "Front",
  13633. image: {
  13634. source: "./media/characters/grynn/front.svg",
  13635. extra: 4627 / 4209,
  13636. bottom: 0.047
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Micro",
  13643. height: math.unit(6, "inches")
  13644. },
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(6 + 3 / 12, "feet"),
  13648. default: true
  13649. },
  13650. {
  13651. name: "Big",
  13652. height: math.unit(104, "feet")
  13653. },
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(944, "feet")
  13657. },
  13658. {
  13659. name: "Macro+",
  13660. height: math.unit(9480, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro",
  13664. height: math.unit(78752, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro+",
  13668. height: math.unit(630128, "feet")
  13669. },
  13670. {
  13671. name: "Megamacro++",
  13672. height: math.unit(3150695, "feet")
  13673. },
  13674. ]
  13675. ))
  13676. characterMakers.push(() => makeCharacter(
  13677. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13678. {
  13679. front: {
  13680. height: math.unit(7 + 5 / 12, "feet"),
  13681. weight: math.unit(450, "lb"),
  13682. name: "Front",
  13683. image: {
  13684. source: "./media/characters/mocha-aura/front.svg",
  13685. extra: 1907 / 1817,
  13686. bottom: 0.04
  13687. }
  13688. },
  13689. back: {
  13690. height: math.unit(7 + 5 / 12, "feet"),
  13691. weight: math.unit(450, "lb"),
  13692. name: "Back",
  13693. image: {
  13694. source: "./media/characters/mocha-aura/back.svg",
  13695. extra: 1900 / 1825,
  13696. bottom: 0.045
  13697. }
  13698. },
  13699. },
  13700. [
  13701. {
  13702. name: "Nano",
  13703. height: math.unit(1, "nm")
  13704. },
  13705. {
  13706. name: "Megamicro",
  13707. height: math.unit(1, "mm")
  13708. },
  13709. {
  13710. name: "Micro",
  13711. height: math.unit(3, "inches")
  13712. },
  13713. {
  13714. name: "Normal",
  13715. height: math.unit(7 + 5 / 12, "feet"),
  13716. default: true
  13717. },
  13718. {
  13719. name: "Macro",
  13720. height: math.unit(30, "feet")
  13721. },
  13722. {
  13723. name: "Megamacro",
  13724. height: math.unit(3500, "feet")
  13725. },
  13726. {
  13727. name: "Teramacro",
  13728. height: math.unit(500000, "miles")
  13729. },
  13730. {
  13731. name: "Petamacro",
  13732. height: math.unit(50000000000000000, "parsecs")
  13733. },
  13734. ]
  13735. ))
  13736. characterMakers.push(() => makeCharacter(
  13737. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13738. {
  13739. front: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Front",
  13743. image: {
  13744. source: "./media/characters/ilisha-devya/front.svg",
  13745. extra: 1053/1049,
  13746. bottom: 270/1323
  13747. }
  13748. },
  13749. back: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Back",
  13753. image: {
  13754. source: "./media/characters/ilisha-devya/back.svg",
  13755. extra: 1131/1128,
  13756. bottom: 39/1170
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Macro",
  13763. height: math.unit(500, "feet"),
  13764. default: true
  13765. },
  13766. {
  13767. name: "Megamacro",
  13768. height: math.unit(10, "miles")
  13769. },
  13770. {
  13771. name: "Gigamacro",
  13772. height: math.unit(100000, "miles")
  13773. },
  13774. {
  13775. name: "Examacro",
  13776. height: math.unit(1e9, "lightyears")
  13777. },
  13778. {
  13779. name: "Omniversal",
  13780. height: math.unit(1e33, "lightyears")
  13781. },
  13782. {
  13783. name: "Beyond Infinite",
  13784. height: math.unit(1e100, "lightyears")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13790. {
  13791. Side: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Side",
  13795. image: {
  13796. source: "./media/characters/mira/side.svg",
  13797. extra: 900 / 799,
  13798. bottom: 0.02
  13799. }
  13800. },
  13801. },
  13802. [
  13803. {
  13804. name: "Human Size",
  13805. height: math.unit(6, "feet")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(100, "feet"),
  13810. default: true
  13811. },
  13812. {
  13813. name: "Megamacro",
  13814. height: math.unit(10, "miles")
  13815. },
  13816. {
  13817. name: "Gigamacro",
  13818. height: math.unit(25000, "miles")
  13819. },
  13820. {
  13821. name: "Teramacro",
  13822. height: math.unit(300, "AU")
  13823. },
  13824. {
  13825. name: "Full Size",
  13826. height: math.unit(4.5e10, "lightyears")
  13827. },
  13828. ]
  13829. ))
  13830. characterMakers.push(() => makeCharacter(
  13831. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13832. {
  13833. front: {
  13834. height: math.unit(6, "feet"),
  13835. weight: math.unit(150, "lb"),
  13836. name: "Front",
  13837. image: {
  13838. source: "./media/characters/holly/front.svg",
  13839. extra: 639 / 606
  13840. }
  13841. },
  13842. back: {
  13843. height: math.unit(6, "feet"),
  13844. weight: math.unit(150, "lb"),
  13845. name: "Back",
  13846. image: {
  13847. source: "./media/characters/holly/back.svg",
  13848. extra: 623 / 598
  13849. }
  13850. },
  13851. frontWorking: {
  13852. height: math.unit(6, "feet"),
  13853. weight: math.unit(150, "lb"),
  13854. name: "Front (Working)",
  13855. image: {
  13856. source: "./media/characters/holly/front-working.svg",
  13857. extra: 607 / 577,
  13858. bottom: 0.048
  13859. }
  13860. },
  13861. },
  13862. [
  13863. {
  13864. name: "Normal",
  13865. height: math.unit(12 + 3 / 12, "feet"),
  13866. default: true
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(6, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/porter/front.svg",
  13879. extra: 1,
  13880. bottom: 0.01
  13881. }
  13882. },
  13883. frontRobes: {
  13884. height: math.unit(6, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Front (Robes)",
  13887. image: {
  13888. source: "./media/characters/porter/front-robes.svg",
  13889. extra: 1.01,
  13890. bottom: 0.01
  13891. }
  13892. },
  13893. },
  13894. [
  13895. {
  13896. name: "Normal",
  13897. height: math.unit(11 + 9 / 12, "feet"),
  13898. default: true
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13904. {
  13905. legendary: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Legendary",
  13909. image: {
  13910. source: "./media/characters/lucy/legendary.svg",
  13911. extra: 1355 / 1100,
  13912. bottom: 0.045
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Legendary",
  13919. height: math.unit(86882 * 2, "miles"),
  13920. default: true
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(150, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/drusilla/front.svg",
  13933. extra: 678 / 635,
  13934. bottom: 0.03
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/drusilla/back.svg",
  13943. extra: 678 / 635,
  13944. bottom: 0.005
  13945. }
  13946. },
  13947. },
  13948. [
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(100, "feet")
  13952. },
  13953. {
  13954. name: "Canon Height",
  13955. height: math.unit(2000, "feet"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(6, "feet"),
  13965. weight: math.unit(180, "lb"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/renard-thatch/front.svg",
  13969. extra: 2411 / 2275,
  13970. bottom: 0.01
  13971. }
  13972. },
  13973. frontPosing: {
  13974. height: math.unit(6, "feet"),
  13975. weight: math.unit(180, "lb"),
  13976. name: "Front (Posing)",
  13977. image: {
  13978. source: "./media/characters/renard-thatch/front-posing.svg",
  13979. extra: 2381 / 2261,
  13980. bottom: 0.01
  13981. }
  13982. },
  13983. back: {
  13984. height: math.unit(6, "feet"),
  13985. weight: math.unit(180, "lb"),
  13986. name: "Back",
  13987. image: {
  13988. source: "./media/characters/renard-thatch/back.svg",
  13989. extra: 2428 / 2288
  13990. }
  13991. },
  13992. },
  13993. [
  13994. {
  13995. name: "Micro",
  13996. height: math.unit(3, "inches")
  13997. },
  13998. {
  13999. name: "Default",
  14000. height: math.unit(6, "feet"),
  14001. default: true
  14002. },
  14003. {
  14004. name: "Macro",
  14005. height: math.unit(75, "feet")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14011. {
  14012. front: {
  14013. height: math.unit(1450, "feet"),
  14014. weight: math.unit(1.21e6, "tons"),
  14015. name: "Front",
  14016. image: {
  14017. source: "./media/characters/sekvra/front.svg",
  14018. extra: 1193/1190,
  14019. bottom: 78/1271
  14020. }
  14021. },
  14022. side: {
  14023. height: math.unit(1450, "feet"),
  14024. weight: math.unit(1.21e6, "tons"),
  14025. name: "Side",
  14026. image: {
  14027. source: "./media/characters/sekvra/side.svg",
  14028. extra: 1193/1190,
  14029. bottom: 52/1245
  14030. }
  14031. },
  14032. back: {
  14033. height: math.unit(1450, "feet"),
  14034. weight: math.unit(1.21e6, "tons"),
  14035. name: "Back",
  14036. image: {
  14037. source: "./media/characters/sekvra/back.svg",
  14038. extra: 1219/1216,
  14039. bottom: 21/1240
  14040. }
  14041. },
  14042. frontClothed: {
  14043. height: math.unit(1450, "feet"),
  14044. weight: math.unit(1.21e6, "tons"),
  14045. name: "Front (Clothed)",
  14046. image: {
  14047. source: "./media/characters/sekvra/front-clothed.svg",
  14048. extra: 1192/1189,
  14049. bottom: 79/1271
  14050. }
  14051. },
  14052. },
  14053. [
  14054. {
  14055. name: "Macro",
  14056. height: math.unit(1450, "feet"),
  14057. default: true
  14058. },
  14059. {
  14060. name: "Megamacro",
  14061. height: math.unit(15000, "feet")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(6, "feet"),
  14070. weight: math.unit(150, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/carmine/front.svg",
  14074. extra: 1,
  14075. bottom: 0.035
  14076. }
  14077. },
  14078. frontArmor: {
  14079. height: math.unit(6, "feet"),
  14080. weight: math.unit(150, "lb"),
  14081. name: "Front (Armor)",
  14082. image: {
  14083. source: "./media/characters/carmine/front-armor.svg",
  14084. extra: 1,
  14085. bottom: 0.035
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Large",
  14092. height: math.unit(1, "mile")
  14093. },
  14094. {
  14095. name: "Huge",
  14096. height: math.unit(40, "miles"),
  14097. default: true
  14098. },
  14099. {
  14100. name: "Colossal",
  14101. height: math.unit(2500, "miles")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/elyssia/front.svg",
  14114. extra: 2201 / 2035,
  14115. bottom: 0.05
  14116. }
  14117. },
  14118. frontClothed: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Front (Clothed)",
  14122. image: {
  14123. source: "./media/characters/elyssia/front-clothed.svg",
  14124. extra: 2201 / 2035,
  14125. bottom: 0.05
  14126. }
  14127. },
  14128. back: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Back",
  14132. image: {
  14133. source: "./media/characters/elyssia/back.svg",
  14134. extra: 2201 / 2035,
  14135. bottom: 0.013
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Smaller",
  14142. height: math.unit(150, "feet")
  14143. },
  14144. {
  14145. name: "Standard",
  14146. height: math.unit(1400, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Distracted",
  14151. height: math.unit(15000, "feet")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(7 + 4/12, "feet"),
  14160. weight: math.unit(690, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/geno-maxwell/front.svg",
  14164. extra: 984/856,
  14165. bottom: 87/1071
  14166. }
  14167. },
  14168. back: {
  14169. height: math.unit(7 + 4/12, "feet"),
  14170. weight: math.unit(690, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/geno-maxwell/back.svg",
  14174. extra: 981/854,
  14175. bottom: 57/1038
  14176. }
  14177. },
  14178. frontCostume: {
  14179. height: math.unit(7 + 4/12, "feet"),
  14180. weight: math.unit(690, "lb"),
  14181. name: "Front (Costume)",
  14182. image: {
  14183. source: "./media/characters/geno-maxwell/front-costume.svg",
  14184. extra: 984/856,
  14185. bottom: 87/1071
  14186. }
  14187. },
  14188. backcostume: {
  14189. height: math.unit(7 + 4/12, "feet"),
  14190. weight: math.unit(690, "lb"),
  14191. name: "Back (Costume)",
  14192. image: {
  14193. source: "./media/characters/geno-maxwell/back-costume.svg",
  14194. extra: 981/854,
  14195. bottom: 57/1038
  14196. }
  14197. },
  14198. },
  14199. [
  14200. {
  14201. name: "Micro",
  14202. height: math.unit(3, "inches")
  14203. },
  14204. {
  14205. name: "Normal",
  14206. height: math.unit(7 + 4 / 12, "feet"),
  14207. default: true
  14208. },
  14209. {
  14210. name: "Macro",
  14211. height: math.unit(220, "feet")
  14212. },
  14213. {
  14214. name: "Megamacro",
  14215. height: math.unit(11, "miles")
  14216. },
  14217. ]
  14218. ))
  14219. characterMakers.push(() => makeCharacter(
  14220. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14221. {
  14222. front: {
  14223. height: math.unit(7 + 4/12, "feet"),
  14224. weight: math.unit(750, "lb"),
  14225. name: "Front",
  14226. image: {
  14227. source: "./media/characters/regena-maxwell/front.svg",
  14228. extra: 984/856,
  14229. bottom: 87/1071
  14230. }
  14231. },
  14232. back: {
  14233. height: math.unit(7 + 4/12, "feet"),
  14234. weight: math.unit(750, "lb"),
  14235. name: "Back",
  14236. image: {
  14237. source: "./media/characters/regena-maxwell/back.svg",
  14238. extra: 981/854,
  14239. bottom: 57/1038
  14240. }
  14241. },
  14242. frontCostume: {
  14243. height: math.unit(7 + 4/12, "feet"),
  14244. weight: math.unit(750, "lb"),
  14245. name: "Front (Costume)",
  14246. image: {
  14247. source: "./media/characters/regena-maxwell/front-costume.svg",
  14248. extra: 984/856,
  14249. bottom: 87/1071
  14250. }
  14251. },
  14252. backcostume: {
  14253. height: math.unit(7 + 4/12, "feet"),
  14254. weight: math.unit(750, "lb"),
  14255. name: "Back (Costume)",
  14256. image: {
  14257. source: "./media/characters/regena-maxwell/back-costume.svg",
  14258. extra: 981/854,
  14259. bottom: 57/1038
  14260. }
  14261. },
  14262. },
  14263. [
  14264. {
  14265. name: "Normal",
  14266. height: math.unit(7 + 4 / 12, "feet"),
  14267. default: true
  14268. },
  14269. {
  14270. name: "Macro",
  14271. height: math.unit(220, "feet")
  14272. },
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(11, "miles")
  14276. },
  14277. ]
  14278. ))
  14279. characterMakers.push(() => makeCharacter(
  14280. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14281. {
  14282. front: {
  14283. height: math.unit(6, "feet"),
  14284. weight: math.unit(150, "lb"),
  14285. name: "Front",
  14286. image: {
  14287. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14288. extra: 860 / 690,
  14289. bottom: 0.03
  14290. }
  14291. },
  14292. },
  14293. [
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(1.7, "meters"),
  14297. default: true
  14298. },
  14299. ]
  14300. ))
  14301. characterMakers.push(() => makeCharacter(
  14302. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14303. {
  14304. front: {
  14305. height: math.unit(6, "feet"),
  14306. weight: math.unit(150, "lb"),
  14307. name: "Front",
  14308. image: {
  14309. source: "./media/characters/quilly/front.svg",
  14310. extra: 890 / 776
  14311. }
  14312. },
  14313. },
  14314. [
  14315. {
  14316. name: "Gigamacro",
  14317. height: math.unit(404090, "miles"),
  14318. default: true
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(7 + 8 / 12, "feet"),
  14327. weight: math.unit(350, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/tempest/front.svg",
  14331. extra: 1175 / 1086,
  14332. bottom: 0.02
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Normal",
  14339. height: math.unit(7 + 8 / 12, "feet"),
  14340. default: true
  14341. },
  14342. ]
  14343. ))
  14344. characterMakers.push(() => makeCharacter(
  14345. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14346. {
  14347. side: {
  14348. height: math.unit(4 + 5 / 12, "feet"),
  14349. weight: math.unit(80, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/rodger/side.svg",
  14353. extra: 1235 / 1118
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Micro",
  14360. height: math.unit(1, "inch")
  14361. },
  14362. {
  14363. name: "Normal",
  14364. height: math.unit(4 + 5 / 12, "feet"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Macro",
  14369. height: math.unit(120, "feet")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(150, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/danyel/front.svg",
  14382. extra: 1185 / 1123,
  14383. bottom: 0.05
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Shrunken",
  14390. height: math.unit(0.5, "mm")
  14391. },
  14392. {
  14393. name: "Micro",
  14394. height: math.unit(1, "mm"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Upsized",
  14399. height: math.unit(5 + 5 / 12, "feet")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(5 + 6 / 12, "feet"),
  14408. weight: math.unit(200, "lb"),
  14409. name: "Front",
  14410. image: {
  14411. source: "./media/characters/vivian-bijoux/front.svg",
  14412. extra: 1217/1209,
  14413. bottom: 76/1293
  14414. }
  14415. },
  14416. back: {
  14417. height: math.unit(5 + 6 / 12, "feet"),
  14418. weight: math.unit(200, "lb"),
  14419. name: "Back",
  14420. image: {
  14421. source: "./media/characters/vivian-bijoux/back.svg",
  14422. extra: 1214/1208,
  14423. bottom: 51/1265
  14424. }
  14425. },
  14426. dressed: {
  14427. height: math.unit(5 + 6 / 12, "feet"),
  14428. weight: math.unit(200, "lb"),
  14429. name: "Dressed",
  14430. image: {
  14431. source: "./media/characters/vivian-bijoux/dressed.svg",
  14432. extra: 1217/1209,
  14433. bottom: 76/1293
  14434. }
  14435. },
  14436. },
  14437. [
  14438. {
  14439. name: "Normal",
  14440. height: math.unit(5 + 6 / 12, "feet"),
  14441. default: true
  14442. },
  14443. {
  14444. name: "Bad Dream",
  14445. height: math.unit(500, "feet")
  14446. },
  14447. {
  14448. name: "Nightmare",
  14449. height: math.unit(500, "miles")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6 + 1 / 12, "feet"),
  14458. weight: math.unit(260, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/zeta/front.svg",
  14462. extra: 1968 / 1889,
  14463. bottom: 0.06
  14464. }
  14465. },
  14466. back: {
  14467. height: math.unit(6 + 1 / 12, "feet"),
  14468. weight: math.unit(260, "lb"),
  14469. name: "Back",
  14470. image: {
  14471. source: "./media/characters/zeta/back.svg",
  14472. extra: 1944 / 1858,
  14473. bottom: 0.03
  14474. }
  14475. },
  14476. hand: {
  14477. height: math.unit(1.112, "feet"),
  14478. name: "Hand",
  14479. image: {
  14480. source: "./media/characters/zeta/hand.svg"
  14481. }
  14482. },
  14483. foot: {
  14484. height: math.unit(1.48, "feet"),
  14485. name: "Foot",
  14486. image: {
  14487. source: "./media/characters/zeta/foot.svg"
  14488. }
  14489. },
  14490. },
  14491. [
  14492. {
  14493. name: "Micro",
  14494. height: math.unit(6, "inches")
  14495. },
  14496. {
  14497. name: "Normal",
  14498. height: math.unit(6 + 1 / 12, "feet"),
  14499. default: true
  14500. },
  14501. {
  14502. name: "Macro",
  14503. height: math.unit(20, "feet")
  14504. },
  14505. ]
  14506. ))
  14507. characterMakers.push(() => makeCharacter(
  14508. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14509. {
  14510. front: {
  14511. height: math.unit(6, "feet"),
  14512. weight: math.unit(150, "lb"),
  14513. name: "Front",
  14514. image: {
  14515. source: "./media/characters/jamie-larsen/front.svg",
  14516. extra: 962 / 933,
  14517. bottom: 0.02
  14518. }
  14519. },
  14520. back: {
  14521. height: math.unit(6, "feet"),
  14522. weight: math.unit(150, "lb"),
  14523. name: "Back",
  14524. image: {
  14525. source: "./media/characters/jamie-larsen/back.svg",
  14526. extra: 997 / 946
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Macro",
  14533. height: math.unit(28 + 7 / 12, "feet"),
  14534. default: true
  14535. },
  14536. {
  14537. name: "Macro+",
  14538. height: math.unit(180, "feet")
  14539. },
  14540. {
  14541. name: "Megamacro",
  14542. height: math.unit(10, "miles")
  14543. },
  14544. {
  14545. name: "Gigamacro",
  14546. height: math.unit(200000, "miles")
  14547. },
  14548. ]
  14549. ))
  14550. characterMakers.push(() => makeCharacter(
  14551. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14552. {
  14553. front: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(120, "lb"),
  14556. name: "Front",
  14557. image: {
  14558. source: "./media/characters/vance/front.svg",
  14559. extra: 1980 / 1890,
  14560. bottom: 0.09
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(120, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/vance/back.svg",
  14569. extra: 2081 / 1994,
  14570. bottom: 0.014
  14571. }
  14572. },
  14573. hand: {
  14574. height: math.unit(0.88, "feet"),
  14575. name: "Hand",
  14576. image: {
  14577. source: "./media/characters/vance/hand.svg"
  14578. }
  14579. },
  14580. foot: {
  14581. height: math.unit(0.64, "feet"),
  14582. name: "Foot",
  14583. image: {
  14584. source: "./media/characters/vance/foot.svg"
  14585. }
  14586. },
  14587. },
  14588. [
  14589. {
  14590. name: "Small",
  14591. height: math.unit(90, "feet"),
  14592. default: true
  14593. },
  14594. {
  14595. name: "Macro",
  14596. height: math.unit(100, "meters")
  14597. },
  14598. {
  14599. name: "Megamacro",
  14600. height: math.unit(15, "miles")
  14601. },
  14602. ]
  14603. ))
  14604. characterMakers.push(() => makeCharacter(
  14605. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14606. {
  14607. front: {
  14608. height: math.unit(6, "feet"),
  14609. weight: math.unit(180, "lb"),
  14610. name: "Front",
  14611. image: {
  14612. source: "./media/characters/xochitl/front.svg",
  14613. extra: 2297 / 2261,
  14614. bottom: 0.065
  14615. }
  14616. },
  14617. back: {
  14618. height: math.unit(6, "feet"),
  14619. weight: math.unit(180, "lb"),
  14620. name: "Back",
  14621. image: {
  14622. source: "./media/characters/xochitl/back.svg",
  14623. extra: 2386 / 2354,
  14624. bottom: 0.01
  14625. }
  14626. },
  14627. foot: {
  14628. height: math.unit(6 / 5 * 1.15, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Foot",
  14631. image: {
  14632. source: "./media/characters/xochitl/foot.svg"
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Macro",
  14639. height: math.unit(80, "feet")
  14640. },
  14641. {
  14642. name: "Macro+",
  14643. height: math.unit(400, "feet"),
  14644. default: true
  14645. },
  14646. {
  14647. name: "Gigamacro",
  14648. height: math.unit(80000, "miles")
  14649. },
  14650. {
  14651. name: "Gigamacro+",
  14652. height: math.unit(400000, "miles")
  14653. },
  14654. {
  14655. name: "Teramacro",
  14656. height: math.unit(300, "AU")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Vincent", species: ["egyptian-vulture"], 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/vincent/front.svg",
  14669. extra: 1130 / 1080,
  14670. bottom: 0.055
  14671. }
  14672. },
  14673. beak: {
  14674. height: math.unit(6 * 0.1, "feet"),
  14675. name: "Beak",
  14676. image: {
  14677. source: "./media/characters/vincent/beak.svg"
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(6 * 0.85, "feet"),
  14682. weight: math.unit(150, "lb"),
  14683. name: "Hand",
  14684. image: {
  14685. source: "./media/characters/vincent/hand.svg"
  14686. }
  14687. },
  14688. foot: {
  14689. height: math.unit(6 * 0.19, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Foot",
  14692. image: {
  14693. source: "./media/characters/vincent/foot.svg"
  14694. }
  14695. },
  14696. },
  14697. [
  14698. {
  14699. name: "Base",
  14700. height: math.unit(6 + 5 / 12, "feet"),
  14701. default: true
  14702. },
  14703. {
  14704. name: "Macro",
  14705. height: math.unit(300, "feet")
  14706. },
  14707. {
  14708. name: "Megamacro",
  14709. height: math.unit(2, "miles")
  14710. },
  14711. {
  14712. name: "Gigamacro",
  14713. height: math.unit(1000, "miles")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(2, "meters"),
  14722. weight: math.unit(500, "kg"),
  14723. name: "Front",
  14724. image: {
  14725. source: "./media/characters/coatl/front.svg",
  14726. extra: 3948 / 3500,
  14727. bottom: 0.082
  14728. }
  14729. },
  14730. },
  14731. [
  14732. {
  14733. name: "Normal",
  14734. height: math.unit(4, "meters")
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(100, "meters"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro+",
  14743. height: math.unit(300, "meters")
  14744. },
  14745. {
  14746. name: "Megamacro",
  14747. height: math.unit(3, "gigameters")
  14748. },
  14749. {
  14750. name: "Megamacro+",
  14751. height: math.unit(300, "terameters")
  14752. },
  14753. {
  14754. name: "Megamacro++",
  14755. height: math.unit(3, "lightyears")
  14756. },
  14757. ]
  14758. ))
  14759. characterMakers.push(() => makeCharacter(
  14760. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14761. {
  14762. front: {
  14763. height: math.unit(6, "feet"),
  14764. weight: math.unit(50, "kg"),
  14765. name: "front",
  14766. image: {
  14767. source: "./media/characters/shiroryu/front.svg",
  14768. extra: 1990 / 1935
  14769. }
  14770. },
  14771. },
  14772. [
  14773. {
  14774. name: "Mortal Mingling",
  14775. height: math.unit(3, "meters")
  14776. },
  14777. {
  14778. name: "Kaiju-ish",
  14779. height: math.unit(250, "meters")
  14780. },
  14781. {
  14782. name: "Somewhat Godly",
  14783. height: math.unit(400, "km"),
  14784. default: true
  14785. },
  14786. {
  14787. name: "Planetary",
  14788. height: math.unit(300, "megameters")
  14789. },
  14790. {
  14791. name: "Galaxy-dwarfing",
  14792. height: math.unit(450, "kiloparsecs")
  14793. },
  14794. {
  14795. name: "Universe Eater",
  14796. height: math.unit(150, "gigaparsecs")
  14797. },
  14798. {
  14799. name: "Almost Immeasurable",
  14800. height: math.unit(1.3e266, "yottaparsecs")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(150, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/umeko/front.svg",
  14813. extra: 1,
  14814. bottom: 0.019
  14815. }
  14816. },
  14817. frontArmored: {
  14818. height: math.unit(6, "feet"),
  14819. weight: math.unit(150, "lb"),
  14820. name: "Front (Armored)",
  14821. image: {
  14822. source: "./media/characters/umeko/front-armored.svg",
  14823. extra: 1,
  14824. bottom: 0.021
  14825. }
  14826. },
  14827. },
  14828. [
  14829. {
  14830. name: "Macro",
  14831. height: math.unit(220, "feet"),
  14832. default: true
  14833. },
  14834. {
  14835. name: "Guardian Dragon",
  14836. height: math.unit(50, "miles")
  14837. },
  14838. {
  14839. name: "Cosmic",
  14840. height: math.unit(800000, "miles")
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6, "feet"),
  14849. weight: math.unit(150, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/cassidy/front.svg",
  14853. extra: 810/808,
  14854. bottom: 41/851
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Canon Height",
  14861. height: math.unit(120, "feet"),
  14862. default: true
  14863. },
  14864. {
  14865. name: "Macro+",
  14866. height: math.unit(400, "feet")
  14867. },
  14868. {
  14869. name: "Macro++",
  14870. height: math.unit(4000, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(3, "miles")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/isaac/front.svg",
  14887. extra: 896 / 815,
  14888. bottom: 0.11
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Human Size",
  14895. height: math.unit(8, "feet"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Macro",
  14900. height: math.unit(400, "feet")
  14901. },
  14902. {
  14903. name: "Megamacro",
  14904. height: math.unit(50, "miles")
  14905. },
  14906. {
  14907. name: "Canon Height",
  14908. height: math.unit(200, "AU")
  14909. },
  14910. ]
  14911. ))
  14912. characterMakers.push(() => makeCharacter(
  14913. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14914. {
  14915. front: {
  14916. height: math.unit(6, "feet"),
  14917. weight: math.unit(72, "kg"),
  14918. name: "Front",
  14919. image: {
  14920. source: "./media/characters/sleekit/front.svg",
  14921. extra: 4693 / 4487,
  14922. bottom: 0.012
  14923. }
  14924. },
  14925. },
  14926. [
  14927. {
  14928. name: "Minimum Height",
  14929. height: math.unit(10, "meters")
  14930. },
  14931. {
  14932. name: "Smaller",
  14933. height: math.unit(25, "meters")
  14934. },
  14935. {
  14936. name: "Larger",
  14937. height: math.unit(38, "meters"),
  14938. default: true
  14939. },
  14940. {
  14941. name: "Maximum height",
  14942. height: math.unit(100, "meters")
  14943. },
  14944. ]
  14945. ))
  14946. characterMakers.push(() => makeCharacter(
  14947. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14948. {
  14949. front: {
  14950. height: math.unit(6, "feet"),
  14951. weight: math.unit(150, "lb"),
  14952. name: "Front",
  14953. image: {
  14954. source: "./media/characters/nillia/front.svg",
  14955. extra: 2195 / 2037,
  14956. bottom: 0.005
  14957. }
  14958. },
  14959. back: {
  14960. height: math.unit(6, "feet"),
  14961. weight: math.unit(150, "lb"),
  14962. name: "Back",
  14963. image: {
  14964. source: "./media/characters/nillia/back.svg",
  14965. extra: 2195 / 2037,
  14966. bottom: 0.005
  14967. }
  14968. },
  14969. },
  14970. [
  14971. {
  14972. name: "Canon Height",
  14973. height: math.unit(489, "feet"),
  14974. default: true
  14975. }
  14976. ]
  14977. ))
  14978. characterMakers.push(() => makeCharacter(
  14979. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14980. {
  14981. front: {
  14982. height: math.unit(6, "feet"),
  14983. weight: math.unit(150, "lb"),
  14984. name: "Front",
  14985. image: {
  14986. source: "./media/characters/mesmyriza/front.svg",
  14987. extra: 2067 / 1784,
  14988. bottom: 0.035
  14989. }
  14990. },
  14991. foot: {
  14992. height: math.unit(6 / (250 / 35), "feet"),
  14993. name: "Foot",
  14994. image: {
  14995. source: "./media/characters/mesmyriza/foot.svg"
  14996. }
  14997. },
  14998. },
  14999. [
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(457, "meters"),
  15003. default: true
  15004. },
  15005. {
  15006. name: "Megamacro",
  15007. height: math.unit(8, "megameters")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(250, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/saudade/front.svg",
  15020. extra: 1172 / 1139,
  15021. bottom: 0.035
  15022. }
  15023. },
  15024. },
  15025. [
  15026. {
  15027. name: "Micro",
  15028. height: math.unit(3, "inches")
  15029. },
  15030. {
  15031. name: "Normal",
  15032. height: math.unit(6, "feet"),
  15033. default: true
  15034. },
  15035. {
  15036. name: "Macro",
  15037. height: math.unit(50, "feet")
  15038. },
  15039. {
  15040. name: "Megamacro",
  15041. height: math.unit(2800, "feet")
  15042. },
  15043. ]
  15044. ))
  15045. characterMakers.push(() => makeCharacter(
  15046. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15047. {
  15048. front: {
  15049. height: math.unit(5 + 4 / 12, "feet"),
  15050. weight: math.unit(100, "lb"),
  15051. name: "Front",
  15052. image: {
  15053. source: "./media/characters/keireer/front.svg",
  15054. extra: 716 / 666,
  15055. bottom: 0.05
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Normal",
  15062. height: math.unit(5 + 4 / 12, "feet"),
  15063. default: true
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(5.5, "feet"),
  15072. weight: math.unit(90, "kg"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/mirja/front.svg",
  15076. extra: 1452/1262,
  15077. bottom: 67/1519
  15078. }
  15079. },
  15080. frontDressed: {
  15081. height: math.unit(5.5, "feet"),
  15082. weight: math.unit(90, "lb"),
  15083. name: "Front (Dressed)",
  15084. image: {
  15085. source: "./media/characters/mirja/dressed.svg",
  15086. extra: 1452/1262,
  15087. bottom: 67/1519
  15088. }
  15089. },
  15090. back: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(90, "lb"),
  15093. name: "Back",
  15094. image: {
  15095. source: "./media/characters/mirja/back.svg",
  15096. extra: 1892/1795,
  15097. bottom: 48/1940
  15098. }
  15099. },
  15100. maw: {
  15101. height: math.unit(1.312, "feet"),
  15102. name: "Maw",
  15103. image: {
  15104. source: "./media/characters/mirja/maw.svg"
  15105. }
  15106. },
  15107. paw: {
  15108. height: math.unit(1.15, "feet"),
  15109. name: "Paw",
  15110. image: {
  15111. source: "./media/characters/mirja/paw.svg"
  15112. }
  15113. },
  15114. },
  15115. [
  15116. {
  15117. name: "\"Incognito\"",
  15118. height: math.unit(3, "meters")
  15119. },
  15120. {
  15121. name: "Strolling Size",
  15122. height: math.unit(15, "km")
  15123. },
  15124. {
  15125. name: "Larger Strolling Size",
  15126. height: math.unit(400, "km")
  15127. },
  15128. {
  15129. name: "Preferred Size",
  15130. height: math.unit(5000, "km"),
  15131. default: true
  15132. },
  15133. {
  15134. name: "True Size",
  15135. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(15, "feet"),
  15144. weight: math.unit(880, "kg"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/nightraver/front.svg",
  15148. extra: 2444 / 2160,
  15149. bottom: 0.027
  15150. }
  15151. },
  15152. back: {
  15153. height: math.unit(15, "feet"),
  15154. weight: math.unit(880, "kg"),
  15155. name: "Back",
  15156. image: {
  15157. source: "./media/characters/nightraver/back.svg",
  15158. extra: 2309 / 2180,
  15159. bottom: 0.005
  15160. }
  15161. },
  15162. sole: {
  15163. height: math.unit(2.878, "feet"),
  15164. name: "Sole",
  15165. image: {
  15166. source: "./media/characters/nightraver/sole.svg"
  15167. }
  15168. },
  15169. foot: {
  15170. height: math.unit(2.285, "feet"),
  15171. name: "Foot",
  15172. image: {
  15173. source: "./media/characters/nightraver/foot.svg"
  15174. }
  15175. },
  15176. maw: {
  15177. height: math.unit(2.67, "feet"),
  15178. name: "Maw",
  15179. image: {
  15180. source: "./media/characters/nightraver/maw.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Micro",
  15187. height: math.unit(1, "cm")
  15188. },
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(15, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(300, "feet")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(300, "miles")
  15201. },
  15202. {
  15203. name: "Gigamacro",
  15204. height: math.unit(10000, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15210. {
  15211. side: {
  15212. height: math.unit(2, "inches"),
  15213. weight: math.unit(5, "grams"),
  15214. name: "Side",
  15215. image: {
  15216. source: "./media/characters/arc/side.svg"
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Micro",
  15223. height: math.unit(2, "inches"),
  15224. default: true
  15225. },
  15226. ]
  15227. ))
  15228. characterMakers.push(() => makeCharacter(
  15229. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15230. {
  15231. front: {
  15232. height: math.unit(1.1938, "meters"),
  15233. weight: math.unit(54, "kg"),
  15234. name: "Front",
  15235. image: {
  15236. source: "./media/characters/nebula-shahar/front.svg",
  15237. extra: 1642 / 1436,
  15238. bottom: 0.06
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Megamicro",
  15245. height: math.unit(0.3, "mm")
  15246. },
  15247. {
  15248. name: "Micro",
  15249. height: math.unit(3, "cm")
  15250. },
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(138, "cm"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Macro",
  15258. height: math.unit(30, "m")
  15259. },
  15260. ]
  15261. ))
  15262. characterMakers.push(() => makeCharacter(
  15263. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15264. {
  15265. front: {
  15266. height: math.unit(5.24, "feet"),
  15267. weight: math.unit(150, "lb"),
  15268. name: "Front",
  15269. image: {
  15270. source: "./media/characters/shayla/front.svg",
  15271. extra: 1512 / 1414,
  15272. bottom: 0.01
  15273. }
  15274. },
  15275. back: {
  15276. height: math.unit(5.24, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Back",
  15279. image: {
  15280. source: "./media/characters/shayla/back.svg",
  15281. extra: 1512 / 1414
  15282. }
  15283. },
  15284. hand: {
  15285. height: math.unit(0.7781496062992126, "feet"),
  15286. name: "Hand",
  15287. image: {
  15288. source: "./media/characters/shayla/hand.svg"
  15289. }
  15290. },
  15291. foot: {
  15292. height: math.unit(1.4206036745406823, "feet"),
  15293. name: "Foot",
  15294. image: {
  15295. source: "./media/characters/shayla/foot.svg"
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Micro",
  15302. height: math.unit(0.32, "feet")
  15303. },
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5.24, "feet"),
  15307. default: true
  15308. },
  15309. {
  15310. name: "Macro",
  15311. height: math.unit(492.12, "feet")
  15312. },
  15313. {
  15314. name: "Megamacro",
  15315. height: math.unit(186.41, "miles")
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(2.2, "m"),
  15324. weight: math.unit(120, "kg"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/pia-jr/front.svg",
  15328. extra: 1000 / 970,
  15329. bottom: 0.035
  15330. }
  15331. },
  15332. hand: {
  15333. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15334. name: "Hand",
  15335. image: {
  15336. source: "./media/characters/pia-jr/hand.svg"
  15337. }
  15338. },
  15339. paw: {
  15340. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15341. name: "Paw",
  15342. image: {
  15343. source: "./media/characters/pia-jr/paw.svg"
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Micro",
  15350. height: math.unit(1.2, "cm")
  15351. },
  15352. {
  15353. name: "Normal",
  15354. height: math.unit(2.2, "m"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Macro",
  15359. height: math.unit(180, "m")
  15360. },
  15361. {
  15362. name: "Megamacro",
  15363. height: math.unit(420, "km")
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(2, "m"),
  15372. weight: math.unit(115, "kg"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/pia-sr/front.svg",
  15376. extra: 760 / 730,
  15377. bottom: 0.015
  15378. }
  15379. },
  15380. back: {
  15381. height: math.unit(2, "m"),
  15382. weight: math.unit(115, "kg"),
  15383. name: "Back",
  15384. image: {
  15385. source: "./media/characters/pia-sr/back.svg",
  15386. extra: 760 / 730,
  15387. bottom: 0.01
  15388. }
  15389. },
  15390. hand: {
  15391. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15392. name: "Hand",
  15393. image: {
  15394. source: "./media/characters/pia-sr/hand.svg"
  15395. }
  15396. },
  15397. foot: {
  15398. height: math.unit(1.83, "feet"),
  15399. name: "Foot",
  15400. image: {
  15401. source: "./media/characters/pia-sr/foot.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Micro",
  15408. height: math.unit(88, "mm")
  15409. },
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(2, "m"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Macro",
  15417. height: math.unit(200, "m")
  15418. },
  15419. {
  15420. name: "Megamacro",
  15421. height: math.unit(420, "km")
  15422. },
  15423. ]
  15424. ))
  15425. characterMakers.push(() => makeCharacter(
  15426. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15427. {
  15428. front: {
  15429. height: math.unit(8 + 2 / 12, "feet"),
  15430. weight: math.unit(300, "lb"),
  15431. name: "Front",
  15432. image: {
  15433. source: "./media/characters/kibibyte/front.svg",
  15434. extra: 2221 / 2098,
  15435. bottom: 0.04
  15436. }
  15437. },
  15438. },
  15439. [
  15440. {
  15441. name: "Normal",
  15442. height: math.unit(8 + 2 / 12, "feet"),
  15443. default: true
  15444. },
  15445. {
  15446. name: "Socialable Macro",
  15447. height: math.unit(50, "feet")
  15448. },
  15449. {
  15450. name: "Macro",
  15451. height: math.unit(300, "feet")
  15452. },
  15453. {
  15454. name: "Megamacro",
  15455. height: math.unit(500, "miles")
  15456. },
  15457. ]
  15458. ))
  15459. characterMakers.push(() => makeCharacter(
  15460. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15461. {
  15462. front: {
  15463. height: math.unit(6, "feet"),
  15464. weight: math.unit(150, "lb"),
  15465. name: "Front",
  15466. image: {
  15467. source: "./media/characters/felix/front.svg",
  15468. extra: 762 / 722,
  15469. bottom: 0.02
  15470. }
  15471. },
  15472. frontClothed: {
  15473. height: math.unit(6, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Front (Clothed)",
  15476. image: {
  15477. source: "./media/characters/felix/front-clothed.svg",
  15478. extra: 762 / 722,
  15479. bottom: 0.02
  15480. }
  15481. },
  15482. },
  15483. [
  15484. {
  15485. name: "Normal",
  15486. height: math.unit(6 + 8 / 12, "feet"),
  15487. default: true
  15488. },
  15489. {
  15490. name: "Macro",
  15491. height: math.unit(2600, "feet")
  15492. },
  15493. {
  15494. name: "Megamacro",
  15495. height: math.unit(450, "miles")
  15496. },
  15497. ]
  15498. ))
  15499. characterMakers.push(() => makeCharacter(
  15500. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15501. {
  15502. front: {
  15503. height: math.unit(6 + 1 / 12, "feet"),
  15504. weight: math.unit(250, "lb"),
  15505. name: "Front",
  15506. image: {
  15507. source: "./media/characters/tobo/front.svg",
  15508. extra: 608 / 586,
  15509. bottom: 0.023
  15510. }
  15511. },
  15512. back: {
  15513. height: math.unit(6 + 1 / 12, "feet"),
  15514. weight: math.unit(250, "lb"),
  15515. name: "Back",
  15516. image: {
  15517. source: "./media/characters/tobo/back.svg",
  15518. extra: 608 / 586
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Nano",
  15525. height: math.unit(2, "nm")
  15526. },
  15527. {
  15528. name: "Megamicro",
  15529. height: math.unit(0.1, "mm")
  15530. },
  15531. {
  15532. name: "Micro",
  15533. height: math.unit(1, "inch"),
  15534. default: true
  15535. },
  15536. {
  15537. name: "Human-sized",
  15538. height: math.unit(6 + 1 / 12, "feet")
  15539. },
  15540. {
  15541. name: "Macro",
  15542. height: math.unit(250, "feet")
  15543. },
  15544. {
  15545. name: "Megamacro",
  15546. height: math.unit(75, "miles")
  15547. },
  15548. {
  15549. name: "Texas-sized",
  15550. height: math.unit(750, "miles")
  15551. },
  15552. {
  15553. name: "Teramacro",
  15554. height: math.unit(50000, "miles")
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(269, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/danny-kapowsky/front.svg",
  15567. extra: 766 / 736,
  15568. bottom: 0.044
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(269, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/danny-kapowsky/back.svg",
  15577. extra: 797 / 760,
  15578. bottom: 0.025
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Macro",
  15585. height: math.unit(150, "feet"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Macro+",
  15590. height: math.unit(200, "feet")
  15591. },
  15592. {
  15593. name: "Macro++",
  15594. height: math.unit(300, "feet")
  15595. },
  15596. {
  15597. name: "Macro+++",
  15598. height: math.unit(400, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15604. {
  15605. side: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(170, "lb"),
  15608. name: "Side",
  15609. image: {
  15610. source: "./media/characters/finn/side.svg",
  15611. extra: 1953 / 1807,
  15612. bottom: 0.057
  15613. }
  15614. },
  15615. },
  15616. [
  15617. {
  15618. name: "Megamacro",
  15619. height: math.unit(14445, "feet"),
  15620. default: true
  15621. },
  15622. ]
  15623. ))
  15624. characterMakers.push(() => makeCharacter(
  15625. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15626. {
  15627. front: {
  15628. height: math.unit(5 + 6 / 12, "feet"),
  15629. weight: math.unit(125, "lb"),
  15630. name: "Front",
  15631. image: {
  15632. source: "./media/characters/roy/front.svg",
  15633. extra: 1,
  15634. bottom: 0.11
  15635. }
  15636. },
  15637. },
  15638. [
  15639. {
  15640. name: "Micro",
  15641. height: math.unit(3, "inches"),
  15642. default: true
  15643. },
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(5 + 6 / 12, "feet")
  15647. },
  15648. {
  15649. name: "Lesser Macro",
  15650. height: math.unit(60, "feet")
  15651. },
  15652. {
  15653. name: "Greater Macro",
  15654. height: math.unit(120, "feet")
  15655. },
  15656. ]
  15657. ))
  15658. characterMakers.push(() => makeCharacter(
  15659. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15660. {
  15661. front: {
  15662. height: math.unit(6, "feet"),
  15663. weight: math.unit(100, "lb"),
  15664. name: "Front",
  15665. image: {
  15666. source: "./media/characters/aevsivs/front.svg",
  15667. extra: 1,
  15668. bottom: 0.03
  15669. }
  15670. },
  15671. back: {
  15672. height: math.unit(6, "feet"),
  15673. weight: math.unit(100, "lb"),
  15674. name: "Back",
  15675. image: {
  15676. source: "./media/characters/aevsivs/back.svg"
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Micro",
  15683. height: math.unit(2, "inches"),
  15684. default: true
  15685. },
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(5, "feet")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(5 + 7 / 12, "feet"),
  15697. weight: math.unit(159, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/hildegard/front.svg",
  15701. extra: 289 / 269,
  15702. bottom: 7.63 / 297.8
  15703. }
  15704. },
  15705. back: {
  15706. height: math.unit(5 + 7 / 12, "feet"),
  15707. weight: math.unit(159, "lb"),
  15708. name: "Back",
  15709. image: {
  15710. source: "./media/characters/hildegard/back.svg",
  15711. extra: 280 / 260,
  15712. bottom: 2.3 / 282
  15713. }
  15714. },
  15715. },
  15716. [
  15717. {
  15718. name: "Normal",
  15719. height: math.unit(5 + 7 / 12, "feet"),
  15720. default: true
  15721. },
  15722. ]
  15723. ))
  15724. characterMakers.push(() => makeCharacter(
  15725. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15726. {
  15727. bernard: {
  15728. height: math.unit(2 + 7 / 12, "feet"),
  15729. weight: math.unit(66, "lb"),
  15730. name: "Bernard",
  15731. rename: true,
  15732. image: {
  15733. source: "./media/characters/bernard-wilder/bernard.svg",
  15734. extra: 192 / 128,
  15735. bottom: 0.05
  15736. }
  15737. },
  15738. wilder: {
  15739. height: math.unit(5 + 8 / 12, "feet"),
  15740. weight: math.unit(143, "lb"),
  15741. name: "Wilder",
  15742. rename: true,
  15743. image: {
  15744. source: "./media/characters/bernard-wilder/wilder.svg",
  15745. extra: 361 / 312,
  15746. bottom: 0.02
  15747. }
  15748. },
  15749. },
  15750. [
  15751. {
  15752. name: "Normal",
  15753. height: math.unit(2 + 7 / 12, "feet"),
  15754. default: true
  15755. },
  15756. ]
  15757. ))
  15758. characterMakers.push(() => makeCharacter(
  15759. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15760. {
  15761. anthro: {
  15762. height: math.unit(6 + 1 / 12, "feet"),
  15763. weight: math.unit(155, "lb"),
  15764. name: "Anthro",
  15765. image: {
  15766. source: "./media/characters/hearth/anthro.svg",
  15767. extra: 1178/1136,
  15768. bottom: 28/1206
  15769. }
  15770. },
  15771. feral: {
  15772. height: math.unit(3.78, "feet"),
  15773. weight: math.unit(35, "kg"),
  15774. name: "Feral",
  15775. image: {
  15776. source: "./media/characters/hearth/feral.svg",
  15777. extra: 153 / 135,
  15778. bottom: 0.03
  15779. }
  15780. },
  15781. },
  15782. [
  15783. {
  15784. name: "Normal",
  15785. height: math.unit(6 + 1 / 12, "feet"),
  15786. default: true
  15787. },
  15788. ]
  15789. ))
  15790. characterMakers.push(() => makeCharacter(
  15791. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15792. {
  15793. front: {
  15794. height: math.unit(6, "feet"),
  15795. weight: math.unit(182, "lb"),
  15796. name: "Front",
  15797. image: {
  15798. source: "./media/characters/ingrid/front.svg",
  15799. extra: 294 / 268,
  15800. bottom: 0.027
  15801. }
  15802. },
  15803. },
  15804. [
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(6, "feet"),
  15808. default: true
  15809. },
  15810. ]
  15811. ))
  15812. characterMakers.push(() => makeCharacter(
  15813. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15814. {
  15815. eevee: {
  15816. height: math.unit(2 + 10 / 12, "feet"),
  15817. weight: math.unit(86, "lb"),
  15818. name: "Malgam",
  15819. image: {
  15820. source: "./media/characters/malgam/eevee.svg",
  15821. extra: 952/784,
  15822. bottom: 38/990
  15823. }
  15824. },
  15825. sylveon: {
  15826. height: math.unit(4, "feet"),
  15827. weight: math.unit(101, "lb"),
  15828. name: "Future Malgam",
  15829. rename: true,
  15830. image: {
  15831. source: "./media/characters/malgam/sylveon.svg",
  15832. extra: 371 / 325,
  15833. bottom: 0.015
  15834. }
  15835. },
  15836. gigantamax: {
  15837. height: math.unit(50, "feet"),
  15838. name: "Gigantamax Malgam",
  15839. rename: true,
  15840. image: {
  15841. source: "./media/characters/malgam/gigantamax.svg"
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Normal",
  15848. height: math.unit(2 + 10 / 12, "feet"),
  15849. default: true
  15850. },
  15851. ]
  15852. ))
  15853. characterMakers.push(() => makeCharacter(
  15854. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15855. {
  15856. front: {
  15857. height: math.unit(5 + 11 / 12, "feet"),
  15858. weight: math.unit(188, "lb"),
  15859. name: "Front",
  15860. image: {
  15861. source: "./media/characters/fleur/front.svg",
  15862. extra: 309 / 283,
  15863. bottom: 0.007
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(5 + 11 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(5 + 4 / 12, "feet"),
  15880. weight: math.unit(122, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/jude/front.svg",
  15884. extra: 288 / 273,
  15885. bottom: 0.03
  15886. }
  15887. },
  15888. },
  15889. [
  15890. {
  15891. name: "Normal",
  15892. height: math.unit(5 + 4 / 12, "feet"),
  15893. default: true
  15894. },
  15895. ]
  15896. ))
  15897. characterMakers.push(() => makeCharacter(
  15898. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15899. {
  15900. front: {
  15901. height: math.unit(5 + 11 / 12, "feet"),
  15902. weight: math.unit(190, "lb"),
  15903. name: "Front",
  15904. image: {
  15905. source: "./media/characters/seara/front.svg",
  15906. extra: 1,
  15907. bottom: 0.05
  15908. }
  15909. },
  15910. },
  15911. [
  15912. {
  15913. name: "Normal",
  15914. height: math.unit(5 + 11 / 12, "feet"),
  15915. default: true
  15916. },
  15917. ]
  15918. ))
  15919. characterMakers.push(() => makeCharacter(
  15920. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15921. {
  15922. front: {
  15923. height: math.unit(16 + 5 / 12, "feet"),
  15924. weight: math.unit(524, "lb"),
  15925. name: "Front",
  15926. image: {
  15927. source: "./media/characters/caspian-lugia/front.svg",
  15928. extra: 1,
  15929. bottom: 0.04
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(16 + 5 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(5 + 7 / 12, "feet"),
  15946. weight: math.unit(170, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/mika/front.svg",
  15950. extra: 1,
  15951. bottom: 0.016
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Normal",
  15958. height: math.unit(5 + 7 / 12, "feet"),
  15959. default: true
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6 + 2 / 12, "feet"),
  15968. weight: math.unit(268, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/sol/front.svg",
  15972. extra: 247 / 231,
  15973. bottom: 0.05
  15974. }
  15975. },
  15976. },
  15977. [
  15978. {
  15979. name: "Normal",
  15980. height: math.unit(6 + 2 / 12, "feet"),
  15981. default: true
  15982. },
  15983. ]
  15984. ))
  15985. characterMakers.push(() => makeCharacter(
  15986. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15987. {
  15988. buizel: {
  15989. height: math.unit(2 + 5 / 12, "feet"),
  15990. weight: math.unit(87, "lb"),
  15991. name: "Front",
  15992. image: {
  15993. source: "./media/characters/umiko/buizel.svg",
  15994. extra: 172 / 157,
  15995. bottom: 0.01
  15996. },
  15997. form: "buizel",
  15998. default: true
  15999. },
  16000. floatzel: {
  16001. height: math.unit(5 + 9 / 12, "feet"),
  16002. weight: math.unit(250, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/umiko/floatzel.svg",
  16006. extra: 1076/1006,
  16007. bottom: 15/1091
  16008. },
  16009. form: "floatzel",
  16010. default: true
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(2 + 5 / 12, "feet"),
  16017. form: "buizel",
  16018. default: true
  16019. },
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(5 + 9 / 12, "feet"),
  16023. form: "floatzel",
  16024. default: true
  16025. },
  16026. ],
  16027. {
  16028. "buizel": {
  16029. name: "Buizel"
  16030. },
  16031. "floatzel": {
  16032. name: "Floatzel",
  16033. default: true
  16034. }
  16035. }
  16036. ))
  16037. characterMakers.push(() => makeCharacter(
  16038. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16039. {
  16040. front: {
  16041. height: math.unit(6 + 2 / 12, "feet"),
  16042. weight: math.unit(146, "lb"),
  16043. name: "Front",
  16044. image: {
  16045. source: "./media/characters/iliac/front.svg",
  16046. extra: 389 / 365,
  16047. bottom: 0.035
  16048. }
  16049. },
  16050. },
  16051. [
  16052. {
  16053. name: "Normal",
  16054. height: math.unit(6 + 2 / 12, "feet"),
  16055. default: true
  16056. },
  16057. ]
  16058. ))
  16059. characterMakers.push(() => makeCharacter(
  16060. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16061. {
  16062. front: {
  16063. height: math.unit(6, "feet"),
  16064. weight: math.unit(170, "lb"),
  16065. name: "Front",
  16066. image: {
  16067. source: "./media/characters/topaz/front.svg",
  16068. extra: 317 / 303,
  16069. bottom: 0.055
  16070. }
  16071. },
  16072. },
  16073. [
  16074. {
  16075. name: "Normal",
  16076. height: math.unit(6, "feet"),
  16077. default: true
  16078. },
  16079. ]
  16080. ))
  16081. characterMakers.push(() => makeCharacter(
  16082. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16083. {
  16084. front: {
  16085. height: math.unit(5 + 11 / 12, "feet"),
  16086. weight: math.unit(144, "lb"),
  16087. name: "Front",
  16088. image: {
  16089. source: "./media/characters/gabriel/front.svg",
  16090. extra: 285 / 262,
  16091. bottom: 0.004
  16092. }
  16093. },
  16094. },
  16095. [
  16096. {
  16097. name: "Normal",
  16098. height: math.unit(5 + 11 / 12, "feet"),
  16099. default: true
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16105. {
  16106. side: {
  16107. height: math.unit(6 + 5 / 12, "feet"),
  16108. weight: math.unit(300, "lb"),
  16109. name: "Side",
  16110. image: {
  16111. source: "./media/characters/tempest-suicune/side.svg",
  16112. extra: 195 / 154,
  16113. bottom: 0.04
  16114. }
  16115. },
  16116. },
  16117. [
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(6 + 5 / 12, "feet"),
  16121. default: true
  16122. },
  16123. ]
  16124. ))
  16125. characterMakers.push(() => makeCharacter(
  16126. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16127. {
  16128. front: {
  16129. height: math.unit(7 + 2 / 12, "feet"),
  16130. weight: math.unit(322, "lb"),
  16131. name: "Front",
  16132. image: {
  16133. source: "./media/characters/vulcan/front.svg",
  16134. extra: 154 / 147,
  16135. bottom: 0.04
  16136. }
  16137. },
  16138. },
  16139. [
  16140. {
  16141. name: "Normal",
  16142. height: math.unit(7 + 2 / 12, "feet"),
  16143. default: true
  16144. },
  16145. ]
  16146. ))
  16147. characterMakers.push(() => makeCharacter(
  16148. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16149. {
  16150. front: {
  16151. height: math.unit(5 + 10 / 12, "feet"),
  16152. weight: math.unit(264, "lb"),
  16153. name: "Front",
  16154. image: {
  16155. source: "./media/characters/gault/front.svg",
  16156. extra: 161 / 140,
  16157. bottom: 0.028
  16158. }
  16159. },
  16160. },
  16161. [
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 10 / 12, "feet"),
  16165. default: true
  16166. },
  16167. ]
  16168. ))
  16169. characterMakers.push(() => makeCharacter(
  16170. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16171. {
  16172. front: {
  16173. height: math.unit(6, "feet"),
  16174. weight: math.unit(150, "lb"),
  16175. name: "Front",
  16176. image: {
  16177. source: "./media/characters/shard/front.svg",
  16178. extra: 273 / 238,
  16179. bottom: 0.02
  16180. }
  16181. },
  16182. },
  16183. [
  16184. {
  16185. name: "Normal",
  16186. height: math.unit(3 + 6 / 12, "feet"),
  16187. default: true
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5 + 11 / 12, "feet"),
  16196. weight: math.unit(146, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/ashe/front.svg",
  16200. extra: 400 / 373,
  16201. bottom: 0.01
  16202. }
  16203. },
  16204. },
  16205. [
  16206. {
  16207. name: "Normal",
  16208. height: math.unit(5 + 11 / 12, "feet"),
  16209. default: true
  16210. },
  16211. ]
  16212. ))
  16213. characterMakers.push(() => makeCharacter(
  16214. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16215. {
  16216. front: {
  16217. height: math.unit(5 + 5 / 12, "feet"),
  16218. weight: math.unit(135, "lb"),
  16219. name: "Front",
  16220. image: {
  16221. source: "./media/characters/beatrix/front.svg",
  16222. extra: 392 / 379,
  16223. bottom: 0.01
  16224. }
  16225. },
  16226. },
  16227. [
  16228. {
  16229. name: "Normal",
  16230. height: math.unit(6, "feet"),
  16231. default: true
  16232. },
  16233. ]
  16234. ))
  16235. characterMakers.push(() => makeCharacter(
  16236. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16237. {
  16238. front: {
  16239. height: math.unit(6 + 2/12, "feet"),
  16240. weight: math.unit(135, "lb"),
  16241. name: "Front",
  16242. image: {
  16243. source: "./media/characters/ignatius/front.svg",
  16244. extra: 1380/1259,
  16245. bottom: 27/1407
  16246. }
  16247. },
  16248. },
  16249. [
  16250. {
  16251. name: "Normal",
  16252. height: math.unit(6 + 2/12, "feet"),
  16253. default: true
  16254. },
  16255. ]
  16256. ))
  16257. characterMakers.push(() => makeCharacter(
  16258. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16259. {
  16260. front: {
  16261. height: math.unit(6 + 2 / 12, "feet"),
  16262. weight: math.unit(138, "lb"),
  16263. name: "Front",
  16264. image: {
  16265. source: "./media/characters/mei-li/front.svg",
  16266. extra: 237 / 229,
  16267. bottom: 0.03
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(6 + 2 / 12, "feet"),
  16275. default: true
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(2 + 4 / 12, "feet"),
  16284. weight: math.unit(62, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/puru/front.svg",
  16288. extra: 206 / 149,
  16289. bottom: 0.06
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(2 + 4 / 12, "feet"),
  16297. default: true
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16303. {
  16304. anthro: {
  16305. height: math.unit(5 + 8/12, "feet"),
  16306. weight: math.unit(200, "lb"),
  16307. energyNeed: math.unit(2000, "kcal"),
  16308. name: "Anthro",
  16309. image: {
  16310. source: "./media/characters/kee/anthro.svg",
  16311. extra: 3251/3184,
  16312. bottom: 250/3501
  16313. }
  16314. },
  16315. taur: {
  16316. height: math.unit(11, "feet"),
  16317. weight: math.unit(500, "lb"),
  16318. energyNeed: math.unit(5000, "kcal"),
  16319. name: "Taur",
  16320. image: {
  16321. source: "./media/characters/kee/taur.svg",
  16322. extra: 1362/1320,
  16323. bottom: 83/1445
  16324. }
  16325. },
  16326. },
  16327. [
  16328. {
  16329. name: "Normal",
  16330. height: math.unit(5 + 8/12, "feet"),
  16331. default: true
  16332. },
  16333. {
  16334. name: "Macro",
  16335. height: math.unit(35, "feet")
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16341. {
  16342. anthro: {
  16343. height: math.unit(7, "feet"),
  16344. weight: math.unit(190, "lb"),
  16345. name: "Anthro",
  16346. image: {
  16347. source: "./media/characters/cobalt-dracha/anthro.svg",
  16348. extra: 231 / 225,
  16349. bottom: 0.04
  16350. }
  16351. },
  16352. feral: {
  16353. height: math.unit(9 + 7 / 12, "feet"),
  16354. weight: math.unit(294, "lb"),
  16355. name: "Feral",
  16356. image: {
  16357. source: "./media/characters/cobalt-dracha/feral.svg",
  16358. extra: 692 / 633,
  16359. bottom: 0.05
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(7, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16373. {
  16374. fallen: {
  16375. height: math.unit(11 + 8 / 12, "feet"),
  16376. weight: math.unit(485, "lb"),
  16377. name: "Java (Fallen)",
  16378. rename: true,
  16379. image: {
  16380. source: "./media/characters/java/fallen.svg",
  16381. extra: 226 / 208,
  16382. bottom: 0.005
  16383. }
  16384. },
  16385. godkin: {
  16386. height: math.unit(10 + 6 / 12, "feet"),
  16387. weight: math.unit(328, "lb"),
  16388. name: "Java (Godkin)",
  16389. rename: true,
  16390. image: {
  16391. source: "./media/characters/java/godkin.svg",
  16392. extra: 1104/1068,
  16393. bottom: 36/1140
  16394. }
  16395. },
  16396. },
  16397. [
  16398. {
  16399. name: "Normal",
  16400. height: math.unit(11 + 8 / 12, "feet"),
  16401. default: true
  16402. },
  16403. ]
  16404. ))
  16405. characterMakers.push(() => makeCharacter(
  16406. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16407. {
  16408. front: {
  16409. height: math.unit(5 + 9 / 12, "feet"),
  16410. weight: math.unit(170, "lb"),
  16411. name: "Front",
  16412. image: {
  16413. source: "./media/characters/purna/front.svg",
  16414. extra: 239 / 229,
  16415. bottom: 0.01
  16416. }
  16417. },
  16418. },
  16419. [
  16420. {
  16421. name: "Normal",
  16422. height: math.unit(5 + 9 / 12, "feet"),
  16423. default: true
  16424. },
  16425. ]
  16426. ))
  16427. characterMakers.push(() => makeCharacter(
  16428. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16429. {
  16430. front: {
  16431. height: math.unit(5 + 9 / 12, "feet"),
  16432. weight: math.unit(142, "lb"),
  16433. name: "Front",
  16434. image: {
  16435. source: "./media/characters/kuva/front.svg",
  16436. extra: 281 / 271,
  16437. bottom: 0.006
  16438. }
  16439. },
  16440. },
  16441. [
  16442. {
  16443. name: "Normal",
  16444. height: math.unit(5 + 9 / 12, "feet"),
  16445. default: true
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16451. {
  16452. anthro: {
  16453. height: math.unit(9 + 2 / 12, "feet"),
  16454. weight: math.unit(270, "lb"),
  16455. name: "Anthro",
  16456. image: {
  16457. source: "./media/characters/embra/anthro.svg",
  16458. extra: 200 / 187,
  16459. bottom: 0.02
  16460. }
  16461. },
  16462. feral: {
  16463. height: math.unit(18 + 8 / 12, "feet"),
  16464. weight: math.unit(576, "lb"),
  16465. name: "Feral",
  16466. image: {
  16467. source: "./media/characters/embra/feral.svg",
  16468. extra: 152 / 137,
  16469. bottom: 0.037
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(9 + 2 / 12, "feet"),
  16477. default: true
  16478. },
  16479. ]
  16480. ))
  16481. characterMakers.push(() => makeCharacter(
  16482. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16483. {
  16484. anthro: {
  16485. height: math.unit(10 + 9 / 12, "feet"),
  16486. weight: math.unit(224, "lb"),
  16487. name: "Anthro",
  16488. image: {
  16489. source: "./media/characters/grottos/anthro.svg",
  16490. extra: 350 / 332,
  16491. bottom: 0.045
  16492. }
  16493. },
  16494. feral: {
  16495. height: math.unit(20 + 7 / 12, "feet"),
  16496. weight: math.unit(629, "lb"),
  16497. name: "Feral",
  16498. image: {
  16499. source: "./media/characters/grottos/feral.svg",
  16500. extra: 207 / 190,
  16501. bottom: 0.05
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(10 + 9 / 12, "feet"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16515. {
  16516. anthro: {
  16517. height: math.unit(9 + 6 / 12, "feet"),
  16518. weight: math.unit(298, "lb"),
  16519. name: "Anthro",
  16520. image: {
  16521. source: "./media/characters/frifna/anthro.svg",
  16522. extra: 282 / 269,
  16523. bottom: 0.015
  16524. }
  16525. },
  16526. feral: {
  16527. height: math.unit(16 + 2 / 12, "feet"),
  16528. weight: math.unit(624, "lb"),
  16529. name: "Feral",
  16530. image: {
  16531. source: "./media/characters/frifna/feral.svg"
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(9 + 6 / 12, "feet"),
  16539. default: true
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(6 + 2 / 12, "feet"),
  16548. weight: math.unit(168, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/elise/front.svg",
  16552. extra: 276 / 271
  16553. }
  16554. },
  16555. },
  16556. [
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(6 + 2 / 12, "feet"),
  16560. default: true
  16561. },
  16562. ]
  16563. ))
  16564. characterMakers.push(() => makeCharacter(
  16565. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16566. {
  16567. front: {
  16568. height: math.unit(5 + 10 / 12, "feet"),
  16569. weight: math.unit(210, "lb"),
  16570. name: "Front",
  16571. image: {
  16572. source: "./media/characters/glade/front.svg",
  16573. extra: 258 / 247,
  16574. bottom: 0.008
  16575. }
  16576. },
  16577. },
  16578. [
  16579. {
  16580. name: "Normal",
  16581. height: math.unit(5 + 10 / 12, "feet"),
  16582. default: true
  16583. },
  16584. ]
  16585. ))
  16586. characterMakers.push(() => makeCharacter(
  16587. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16588. {
  16589. front: {
  16590. height: math.unit(5 + 10 / 12, "feet"),
  16591. weight: math.unit(129, "lb"),
  16592. name: "Front",
  16593. image: {
  16594. source: "./media/characters/rina/front.svg",
  16595. extra: 266 / 255,
  16596. bottom: 0.005
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(5 + 10 / 12, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6 + 1 / 12, "feet"),
  16613. weight: math.unit(192, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/veronica/front.svg",
  16617. extra: 319 / 309,
  16618. bottom: 0.005
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 1 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(9 + 3 / 12, "feet"),
  16635. weight: math.unit(1100, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/braxton/front.svg",
  16639. extra: 1057 / 984,
  16640. bottom: 0.05
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Normal",
  16647. height: math.unit(9 + 3 / 12, "feet")
  16648. },
  16649. {
  16650. name: "Giant",
  16651. height: math.unit(300, "feet"),
  16652. default: true
  16653. },
  16654. {
  16655. name: "Macro",
  16656. height: math.unit(700, "feet")
  16657. },
  16658. {
  16659. name: "Megamacro",
  16660. height: math.unit(6000, "feet")
  16661. },
  16662. ]
  16663. ))
  16664. characterMakers.push(() => makeCharacter(
  16665. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16666. {
  16667. front: {
  16668. height: math.unit(6 + 7 / 12, "feet"),
  16669. weight: math.unit(150, "lb"),
  16670. name: "Front",
  16671. image: {
  16672. source: "./media/characters/blue-feyonics/front.svg",
  16673. extra: 1403 / 1306,
  16674. bottom: 0.047
  16675. }
  16676. },
  16677. },
  16678. [
  16679. {
  16680. name: "Normal",
  16681. height: math.unit(6 + 7 / 12, "feet"),
  16682. default: true
  16683. },
  16684. ]
  16685. ))
  16686. characterMakers.push(() => makeCharacter(
  16687. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16688. {
  16689. front: {
  16690. height: math.unit(1.8, "meters"),
  16691. weight: math.unit(60, "kg"),
  16692. name: "Front",
  16693. image: {
  16694. source: "./media/characters/maxwell/front.svg",
  16695. extra: 2060 / 1873
  16696. }
  16697. },
  16698. },
  16699. [
  16700. {
  16701. name: "Micro",
  16702. height: math.unit(1, "mm")
  16703. },
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(1.8, "meter"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Macro",
  16711. height: math.unit(30, "meters")
  16712. },
  16713. {
  16714. name: "Megamacro",
  16715. height: math.unit(10, "km")
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6, "feet"),
  16724. weight: math.unit(150, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/jack/front.svg",
  16728. extra: 1754 / 1640,
  16729. bottom: 0.01
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(80000, "feet"),
  16737. default: true
  16738. },
  16739. {
  16740. name: "Max size",
  16741. height: math.unit(10, "lightyears")
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16747. {
  16748. urban: {
  16749. height: math.unit(5, "feet"),
  16750. weight: math.unit(240, "lb"),
  16751. name: "Urban",
  16752. image: {
  16753. source: "./media/characters/cafat/urban.svg",
  16754. extra: 1223/1126,
  16755. bottom: 205/1428
  16756. }
  16757. },
  16758. summer: {
  16759. height: math.unit(5, "feet"),
  16760. weight: math.unit(240, "lb"),
  16761. name: "Summer",
  16762. image: {
  16763. source: "./media/characters/cafat/summer.svg",
  16764. extra: 1223/1126,
  16765. bottom: 205/1428
  16766. }
  16767. },
  16768. winter: {
  16769. height: math.unit(5, "feet"),
  16770. weight: math.unit(240, "lb"),
  16771. name: "Winter",
  16772. image: {
  16773. source: "./media/characters/cafat/winter.svg",
  16774. extra: 1223/1126,
  16775. bottom: 205/1428
  16776. }
  16777. },
  16778. lingerie: {
  16779. height: math.unit(5, "feet"),
  16780. weight: math.unit(240, "lb"),
  16781. name: "Lingerie",
  16782. image: {
  16783. source: "./media/characters/cafat/lingerie.svg",
  16784. extra: 1223/1126,
  16785. bottom: 205/1428
  16786. }
  16787. },
  16788. upright: {
  16789. height: math.unit(6.3, "feet"),
  16790. weight: math.unit(240, "lb"),
  16791. name: "Upright",
  16792. image: {
  16793. source: "./media/characters/cafat/upright.svg",
  16794. bottom: 0.01
  16795. }
  16796. },
  16797. uprightFull: {
  16798. height: math.unit(6.3, "feet"),
  16799. weight: math.unit(240, "lb"),
  16800. name: "Upright (Full)",
  16801. image: {
  16802. source: "./media/characters/cafat/upright-full.svg",
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Small",
  16810. height: math.unit(5, "feet"),
  16811. default: true
  16812. },
  16813. {
  16814. name: "Large",
  16815. height: math.unit(13, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(6, "feet"),
  16824. weight: math.unit(150, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/verin-raharra/front.svg",
  16828. extra: 5019 / 4835,
  16829. bottom: 0.023
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(7 + 5 / 12, "feet"),
  16837. default: true
  16838. },
  16839. {
  16840. name: "Upsized",
  16841. height: math.unit(20, "feet")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(7, "feet"),
  16850. weight: math.unit(230, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/nakata/front.svg",
  16854. extra: 1.005,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. },
  16859. [
  16860. {
  16861. name: "Normal",
  16862. height: math.unit(7, "feet"),
  16863. default: true
  16864. },
  16865. {
  16866. name: "Big",
  16867. height: math.unit(14, "feet")
  16868. },
  16869. {
  16870. name: "Macro",
  16871. height: math.unit(400, "feet")
  16872. },
  16873. ]
  16874. ))
  16875. characterMakers.push(() => makeCharacter(
  16876. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16877. {
  16878. front: {
  16879. height: math.unit(4.91, "feet"),
  16880. weight: math.unit(100, "lb"),
  16881. name: "Front",
  16882. image: {
  16883. source: "./media/characters/lily/front.svg",
  16884. extra: 1585 / 1415,
  16885. bottom: 0.02
  16886. }
  16887. },
  16888. },
  16889. [
  16890. {
  16891. name: "Normal",
  16892. height: math.unit(4.91, "feet"),
  16893. default: true
  16894. },
  16895. ]
  16896. ))
  16897. characterMakers.push(() => makeCharacter(
  16898. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16899. {
  16900. laying: {
  16901. height: math.unit(4 + 4 / 12, "feet"),
  16902. weight: math.unit(600, "lb"),
  16903. name: "Laying",
  16904. image: {
  16905. source: "./media/characters/sheila/laying.svg",
  16906. extra: 1333 / 1265,
  16907. bottom: 0.16
  16908. }
  16909. },
  16910. },
  16911. [
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(4 + 4 / 12, "feet"),
  16915. default: true
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16921. {
  16922. front: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(190, "lb"),
  16925. name: "Front",
  16926. image: {
  16927. source: "./media/characters/sax/front.svg",
  16928. extra: 1187 / 973,
  16929. bottom: 0.042
  16930. }
  16931. },
  16932. },
  16933. [
  16934. {
  16935. name: "Micro",
  16936. height: math.unit(4, "inches"),
  16937. default: true
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16943. {
  16944. front: {
  16945. height: math.unit(6, "feet"),
  16946. weight: math.unit(150, "lb"),
  16947. name: "Front",
  16948. image: {
  16949. source: "./media/characters/pandora/front.svg",
  16950. extra: 2720 / 2556,
  16951. bottom: 0.015
  16952. }
  16953. },
  16954. back: {
  16955. height: math.unit(6, "feet"),
  16956. weight: math.unit(150, "lb"),
  16957. name: "Back",
  16958. image: {
  16959. source: "./media/characters/pandora/back.svg",
  16960. extra: 2720 / 2556,
  16961. bottom: 0.01
  16962. }
  16963. },
  16964. beans: {
  16965. height: math.unit(6 / 8, "feet"),
  16966. name: "Beans",
  16967. image: {
  16968. source: "./media/characters/pandora/beans.svg"
  16969. }
  16970. },
  16971. collar: {
  16972. height: math.unit(0.31, "feet"),
  16973. name: "Collar",
  16974. image: {
  16975. source: "./media/characters/pandora/collar.svg"
  16976. }
  16977. },
  16978. skirt: {
  16979. height: math.unit(6, "feet"),
  16980. weight: math.unit(150, "lb"),
  16981. name: "Skirt",
  16982. image: {
  16983. source: "./media/characters/pandora/skirt.svg",
  16984. extra: 1622 / 1525,
  16985. bottom: 0.015
  16986. }
  16987. },
  16988. hoodie: {
  16989. height: math.unit(6, "feet"),
  16990. weight: math.unit(150, "lb"),
  16991. name: "Hoodie",
  16992. image: {
  16993. source: "./media/characters/pandora/hoodie.svg",
  16994. extra: 1622 / 1525,
  16995. bottom: 0.015
  16996. }
  16997. },
  16998. casual: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(150, "lb"),
  17001. name: "Casual",
  17002. image: {
  17003. source: "./media/characters/pandora/casual.svg",
  17004. extra: 1622 / 1525,
  17005. bottom: 0.015
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(6, "feet")
  17013. },
  17014. {
  17015. name: "Big Steppy",
  17016. height: math.unit(1, "km"),
  17017. default: true
  17018. },
  17019. {
  17020. name: "Galactic Steppy",
  17021. height: math.unit(2, "gigameters")
  17022. },
  17023. ]
  17024. ))
  17025. characterMakers.push(() => makeCharacter(
  17026. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17027. {
  17028. side: {
  17029. height: math.unit(10, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/side.svg",
  17034. extra: 1373 / 1003,
  17035. bottom: 0.037
  17036. }
  17037. },
  17038. front: {
  17039. height: math.unit(19, "feet"),
  17040. weight: math.unit(800, "kg"),
  17041. name: "Front",
  17042. image: {
  17043. source: "./media/characters/venio-darcony/front.svg"
  17044. }
  17045. },
  17046. back: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(800, "kg"),
  17049. name: "Back",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/back.svg"
  17052. }
  17053. },
  17054. sideNsfw: {
  17055. height: math.unit(10, "feet"),
  17056. weight: math.unit(800, "kg"),
  17057. name: "Side (NSFW)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17060. extra: 1373 / 1003,
  17061. bottom: 0.037
  17062. }
  17063. },
  17064. frontNsfw: {
  17065. height: math.unit(19, "feet"),
  17066. weight: math.unit(800, "kg"),
  17067. name: "Front (NSFW)",
  17068. image: {
  17069. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17070. }
  17071. },
  17072. backNsfw: {
  17073. height: math.unit(19, "feet"),
  17074. weight: math.unit(800, "kg"),
  17075. name: "Back (NSFW)",
  17076. image: {
  17077. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17078. }
  17079. },
  17080. sideArmored: {
  17081. height: math.unit(10, "feet"),
  17082. weight: math.unit(800, "kg"),
  17083. name: "Side (Armored)",
  17084. image: {
  17085. source: "./media/characters/venio-darcony/side-armored.svg",
  17086. extra: 1373 / 1003,
  17087. bottom: 0.037
  17088. }
  17089. },
  17090. frontArmored: {
  17091. height: math.unit(19, "feet"),
  17092. weight: math.unit(900, "kg"),
  17093. name: "Front (Armored)",
  17094. image: {
  17095. source: "./media/characters/venio-darcony/front-armored.svg"
  17096. }
  17097. },
  17098. backArmored: {
  17099. height: math.unit(19, "feet"),
  17100. weight: math.unit(900, "kg"),
  17101. name: "Back (Armored)",
  17102. image: {
  17103. source: "./media/characters/venio-darcony/back-armored.svg"
  17104. }
  17105. },
  17106. sword: {
  17107. height: math.unit(10, "feet"),
  17108. weight: math.unit(50, "lb"),
  17109. name: "Sword",
  17110. image: {
  17111. source: "./media/characters/venio-darcony/sword.svg"
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(10, "feet")
  17119. },
  17120. {
  17121. name: "Macro",
  17122. height: math.unit(130, "feet"),
  17123. default: true
  17124. },
  17125. {
  17126. name: "Macro+",
  17127. height: math.unit(240, "feet")
  17128. },
  17129. ]
  17130. ))
  17131. characterMakers.push(() => makeCharacter(
  17132. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17133. {
  17134. front: {
  17135. height: math.unit(6, "feet"),
  17136. weight: math.unit(150, "lb"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/veski/front.svg",
  17140. extra: 1299 / 1225,
  17141. bottom: 0.04
  17142. }
  17143. },
  17144. back: {
  17145. height: math.unit(6, "feet"),
  17146. weight: math.unit(150, "lb"),
  17147. name: "Back",
  17148. image: {
  17149. source: "./media/characters/veski/back.svg",
  17150. extra: 1299 / 1225,
  17151. bottom: 0.008
  17152. }
  17153. },
  17154. maw: {
  17155. height: math.unit(1.5 * 1.21, "feet"),
  17156. name: "Maw",
  17157. image: {
  17158. source: "./media/characters/veski/maw.svg"
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Macro",
  17165. height: math.unit(2, "km"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(5 + 7 / 12, "feet"),
  17175. name: "Front",
  17176. image: {
  17177. source: "./media/characters/isabelle/front.svg",
  17178. extra: 2130 / 1976,
  17179. bottom: 0.05
  17180. }
  17181. },
  17182. },
  17183. [
  17184. {
  17185. name: "Supermicro",
  17186. height: math.unit(10, "micrometers")
  17187. },
  17188. {
  17189. name: "Micro",
  17190. height: math.unit(1, "inch")
  17191. },
  17192. {
  17193. name: "Tiny",
  17194. height: math.unit(5, "inches")
  17195. },
  17196. {
  17197. name: "Standard",
  17198. height: math.unit(5 + 7 / 12, "inches")
  17199. },
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(80, "meters"),
  17203. default: true
  17204. },
  17205. {
  17206. name: "Megamacro",
  17207. height: math.unit(250, "meters")
  17208. },
  17209. {
  17210. name: "Gigamacro",
  17211. height: math.unit(5, "km")
  17212. },
  17213. {
  17214. name: "Cosmic",
  17215. height: math.unit(2.5e6, "miles")
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(6, "feet"),
  17224. weight: math.unit(150, "lb"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/hanzo/front.svg",
  17228. extra: 374 / 344,
  17229. bottom: 0.02
  17230. }
  17231. },
  17232. },
  17233. [
  17234. {
  17235. name: "Normal",
  17236. height: math.unit(8, "feet"),
  17237. default: true
  17238. },
  17239. ]
  17240. ))
  17241. characterMakers.push(() => makeCharacter(
  17242. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17243. {
  17244. front: {
  17245. height: math.unit(7, "feet"),
  17246. weight: math.unit(130, "lb"),
  17247. name: "Front",
  17248. image: {
  17249. source: "./media/characters/anna/front.svg",
  17250. extra: 169 / 145,
  17251. bottom: 0.06
  17252. }
  17253. },
  17254. full: {
  17255. height: math.unit(4.96, "feet"),
  17256. weight: math.unit(220, "lb"),
  17257. name: "Full",
  17258. image: {
  17259. source: "./media/characters/anna/full.svg",
  17260. extra: 138 / 114,
  17261. bottom: 0.15
  17262. }
  17263. },
  17264. tongue: {
  17265. height: math.unit(2.53, "feet"),
  17266. name: "Tongue",
  17267. image: {
  17268. source: "./media/characters/anna/tongue.svg"
  17269. }
  17270. },
  17271. },
  17272. [
  17273. {
  17274. name: "Normal",
  17275. height: math.unit(7, "feet"),
  17276. default: true
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(7, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/ian-corvid/front.svg",
  17289. extra: 150 / 142,
  17290. bottom: 0.02
  17291. }
  17292. },
  17293. back: {
  17294. height: math.unit(7, "feet"),
  17295. weight: math.unit(150, "lb"),
  17296. name: "Back",
  17297. image: {
  17298. source: "./media/characters/ian-corvid/back.svg",
  17299. extra: 150 / 143,
  17300. bottom: 0.01
  17301. }
  17302. },
  17303. stomping: {
  17304. height: math.unit(7, "feet"),
  17305. weight: math.unit(150, "lb"),
  17306. name: "Stomping",
  17307. image: {
  17308. source: "./media/characters/ian-corvid/stomping.svg",
  17309. extra: 76 / 72
  17310. }
  17311. },
  17312. sitting: {
  17313. height: math.unit(7 / 1.8, "feet"),
  17314. weight: math.unit(150, "lb"),
  17315. name: "Sitting",
  17316. image: {
  17317. source: "./media/characters/ian-corvid/sitting.svg",
  17318. extra: 1400 / 1269,
  17319. bottom: 0.15
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Tiny Microw",
  17326. height: math.unit(1, "inch")
  17327. },
  17328. {
  17329. name: "Microw",
  17330. height: math.unit(6, "inches")
  17331. },
  17332. {
  17333. name: "Crow",
  17334. height: math.unit(7 + 1 / 12, "feet"),
  17335. default: true
  17336. },
  17337. {
  17338. name: "Macrow",
  17339. height: math.unit(176, "feet")
  17340. },
  17341. ]
  17342. ))
  17343. characterMakers.push(() => makeCharacter(
  17344. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17345. {
  17346. front: {
  17347. height: math.unit(5 + 7 / 12, "feet"),
  17348. weight: math.unit(147, "lb"),
  17349. name: "Front",
  17350. image: {
  17351. source: "./media/characters/natalie-kellon/front.svg",
  17352. extra: 1214 / 1141,
  17353. bottom: 0.02
  17354. }
  17355. },
  17356. },
  17357. [
  17358. {
  17359. name: "Micro",
  17360. height: math.unit(1 / 16, "inch")
  17361. },
  17362. {
  17363. name: "Tiny",
  17364. height: math.unit(4, "inches")
  17365. },
  17366. {
  17367. name: "Normal",
  17368. height: math.unit(5 + 7 / 12, "feet"),
  17369. default: true
  17370. },
  17371. {
  17372. name: "Amazon",
  17373. height: math.unit(12, "feet")
  17374. },
  17375. {
  17376. name: "Giantess",
  17377. height: math.unit(160, "meters")
  17378. },
  17379. {
  17380. name: "Titaness",
  17381. height: math.unit(800, "meters")
  17382. },
  17383. ]
  17384. ))
  17385. characterMakers.push(() => makeCharacter(
  17386. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17387. {
  17388. front: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Front",
  17392. image: {
  17393. source: "./media/characters/alluria/front.svg",
  17394. extra: 806 / 738,
  17395. bottom: 0.01
  17396. }
  17397. },
  17398. side: {
  17399. height: math.unit(6, "feet"),
  17400. weight: math.unit(150, "lb"),
  17401. name: "Side",
  17402. image: {
  17403. source: "./media/characters/alluria/side.svg",
  17404. extra: 800 / 750,
  17405. }
  17406. },
  17407. back: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(150, "lb"),
  17410. name: "Back",
  17411. image: {
  17412. source: "./media/characters/alluria/back.svg",
  17413. extra: 806 / 738,
  17414. }
  17415. },
  17416. frontMaid: {
  17417. height: math.unit(6, "feet"),
  17418. weight: math.unit(150, "lb"),
  17419. name: "Front (Maid)",
  17420. image: {
  17421. source: "./media/characters/alluria/front-maid.svg",
  17422. extra: 806 / 738,
  17423. bottom: 0.01
  17424. }
  17425. },
  17426. sideMaid: {
  17427. height: math.unit(6, "feet"),
  17428. weight: math.unit(150, "lb"),
  17429. name: "Side (Maid)",
  17430. image: {
  17431. source: "./media/characters/alluria/side-maid.svg",
  17432. extra: 800 / 750,
  17433. bottom: 0.005
  17434. }
  17435. },
  17436. backMaid: {
  17437. height: math.unit(6, "feet"),
  17438. weight: math.unit(150, "lb"),
  17439. name: "Back (Maid)",
  17440. image: {
  17441. source: "./media/characters/alluria/back-maid.svg",
  17442. extra: 806 / 738,
  17443. }
  17444. },
  17445. },
  17446. [
  17447. {
  17448. name: "Micro",
  17449. height: math.unit(6, "inches"),
  17450. default: true
  17451. },
  17452. ]
  17453. ))
  17454. characterMakers.push(() => makeCharacter(
  17455. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17456. {
  17457. front: {
  17458. height: math.unit(6, "feet"),
  17459. weight: math.unit(150, "lb"),
  17460. name: "Front",
  17461. image: {
  17462. source: "./media/characters/kyle/front.svg",
  17463. extra: 1069 / 962,
  17464. bottom: 77.228 / 1727.45
  17465. }
  17466. },
  17467. },
  17468. [
  17469. {
  17470. name: "Macro",
  17471. height: math.unit(150, "feet"),
  17472. default: true
  17473. },
  17474. ]
  17475. ))
  17476. characterMakers.push(() => makeCharacter(
  17477. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17478. {
  17479. front: {
  17480. height: math.unit(6, "feet"),
  17481. weight: math.unit(300, "lb"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/duncan/front.svg",
  17485. extra: 1650 / 1482,
  17486. bottom: 0.05
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Macro",
  17493. height: math.unit(100, "feet"),
  17494. default: true
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(5 + 4 / 12, "feet"),
  17503. weight: math.unit(220, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/memory/front.svg",
  17507. extra: 3641 / 3545,
  17508. bottom: 0.03
  17509. }
  17510. },
  17511. back: {
  17512. height: math.unit(5 + 4 / 12, "feet"),
  17513. weight: math.unit(220, "lb"),
  17514. name: "Back",
  17515. image: {
  17516. source: "./media/characters/memory/back.svg",
  17517. extra: 3641 / 3545,
  17518. bottom: 0.025
  17519. }
  17520. },
  17521. frontSkirt: {
  17522. height: math.unit(5 + 4 / 12, "feet"),
  17523. weight: math.unit(220, "lb"),
  17524. name: "Front (Skirt)",
  17525. image: {
  17526. source: "./media/characters/memory/front-skirt.svg",
  17527. extra: 3641 / 3545,
  17528. bottom: 0.03
  17529. }
  17530. },
  17531. frontDress: {
  17532. height: math.unit(5 + 4 / 12, "feet"),
  17533. weight: math.unit(220, "lb"),
  17534. name: "Front (Dress)",
  17535. image: {
  17536. source: "./media/characters/memory/front-dress.svg",
  17537. extra: 3641 / 3545,
  17538. bottom: 0.03
  17539. }
  17540. },
  17541. },
  17542. [
  17543. {
  17544. name: "Micro",
  17545. height: math.unit(6, "inches"),
  17546. default: true
  17547. },
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(5 + 4 / 12, "feet")
  17551. },
  17552. ]
  17553. ))
  17554. characterMakers.push(() => makeCharacter(
  17555. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17556. {
  17557. front: {
  17558. height: math.unit(4 + 11 / 12, "feet"),
  17559. weight: math.unit(100, "lb"),
  17560. name: "Front",
  17561. image: {
  17562. source: "./media/characters/luno/front.svg",
  17563. extra: 1535 / 1487,
  17564. bottom: 0.03
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Micro",
  17571. height: math.unit(3, "inches")
  17572. },
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(4 + 11 / 12, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Macro",
  17580. height: math.unit(300, "feet")
  17581. },
  17582. {
  17583. name: "Megamacro",
  17584. height: math.unit(700, "miles")
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(6 + 2 / 12, "feet"),
  17593. weight: math.unit(170, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/jamesy/front.svg",
  17597. extra: 440 / 382,
  17598. bottom: 0.005
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Micro",
  17605. height: math.unit(3, "inches")
  17606. },
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(6 + 2 / 12, "feet"),
  17610. default: true
  17611. },
  17612. {
  17613. name: "Macro",
  17614. height: math.unit(300, "feet")
  17615. },
  17616. {
  17617. name: "Megamacro",
  17618. height: math.unit(700, "miles")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6, "feet"),
  17627. weight: math.unit(160, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/mark/front.svg",
  17631. extra: 3300 / 3100,
  17632. bottom: 136.42 / 3440.47
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Macro",
  17639. height: math.unit(120, "meters")
  17640. },
  17641. {
  17642. name: "Bigger Macro",
  17643. height: math.unit(350, "meters")
  17644. },
  17645. {
  17646. name: "Megamacro",
  17647. height: math.unit(8, "km"),
  17648. default: true
  17649. },
  17650. {
  17651. name: "Continental",
  17652. height: math.unit(4550, "km")
  17653. },
  17654. {
  17655. name: "Planetary",
  17656. height: math.unit(65000, "km")
  17657. },
  17658. ]
  17659. ))
  17660. characterMakers.push(() => makeCharacter(
  17661. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17662. {
  17663. front: {
  17664. height: math.unit(6, "feet"),
  17665. weight: math.unit(400, "lb"),
  17666. name: "Front",
  17667. image: {
  17668. source: "./media/characters/mac/front.svg",
  17669. extra: 1048 / 987.7,
  17670. bottom: 60 / 1107.6,
  17671. }
  17672. },
  17673. },
  17674. [
  17675. {
  17676. name: "Macro",
  17677. height: math.unit(500, "feet"),
  17678. default: true
  17679. },
  17680. ]
  17681. ))
  17682. characterMakers.push(() => makeCharacter(
  17683. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17684. {
  17685. front: {
  17686. height: math.unit(5 + 2 / 12, "feet"),
  17687. weight: math.unit(190, "lb"),
  17688. name: "Front",
  17689. image: {
  17690. source: "./media/characters/bari/front.svg",
  17691. extra: 3156 / 2880,
  17692. bottom: 0.03
  17693. }
  17694. },
  17695. back: {
  17696. height: math.unit(5 + 2 / 12, "feet"),
  17697. weight: math.unit(190, "lb"),
  17698. name: "Back",
  17699. image: {
  17700. source: "./media/characters/bari/back.svg",
  17701. extra: 3260 / 2834,
  17702. bottom: 0.025
  17703. }
  17704. },
  17705. frontPlush: {
  17706. height: math.unit(5 + 2 / 12, "feet"),
  17707. weight: math.unit(190, "lb"),
  17708. name: "Front (Plush)",
  17709. image: {
  17710. source: "./media/characters/bari/front-plush.svg",
  17711. extra: 1112 / 1061,
  17712. bottom: 0.002
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Micro",
  17719. height: math.unit(3, "inches")
  17720. },
  17721. {
  17722. name: "Normal",
  17723. height: math.unit(5 + 2 / 12, "feet"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Macro",
  17728. height: math.unit(20, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6 + 1 / 12, "feet"),
  17737. weight: math.unit(275, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/hunter-misha-raven/front.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Mortal",
  17747. height: math.unit(6 + 1 / 12, "feet")
  17748. },
  17749. {
  17750. name: "Divine",
  17751. height: math.unit(1.12134e34, "parsecs"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(6 + 3 / 12, "feet"),
  17761. weight: math.unit(220, "lb"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/max-calore/front.svg",
  17765. extra: 1700 / 1648,
  17766. bottom: 0.01
  17767. }
  17768. },
  17769. back: {
  17770. height: math.unit(6 + 3 / 12, "feet"),
  17771. weight: math.unit(220, "lb"),
  17772. name: "Back",
  17773. image: {
  17774. source: "./media/characters/max-calore/back.svg",
  17775. extra: 1700 / 1648,
  17776. bottom: 0.01
  17777. }
  17778. },
  17779. },
  17780. [
  17781. {
  17782. name: "Normal",
  17783. height: math.unit(6 + 3 / 12, "feet"),
  17784. default: true
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17790. {
  17791. side: {
  17792. height: math.unit(2 + 8 / 12, "feet"),
  17793. weight: math.unit(99, "lb"),
  17794. name: "Side",
  17795. image: {
  17796. source: "./media/characters/aspen/side.svg",
  17797. extra: 152 / 138,
  17798. bottom: 0.032
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(2 + 8 / 12, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17812. {
  17813. side: {
  17814. height: math.unit(3 + 2 / 12, "feet"),
  17815. weight: math.unit(224, "lb"),
  17816. name: "Side",
  17817. image: {
  17818. source: "./media/characters/sheila-feral-wolf/side.svg",
  17819. extra: 179 / 166,
  17820. bottom: 0.03
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(3 + 2 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17834. {
  17835. side: {
  17836. height: math.unit(1 + 9 / 12, "feet"),
  17837. weight: math.unit(38, "lb"),
  17838. name: "Side",
  17839. image: {
  17840. source: "./media/characters/michelle/side.svg",
  17841. extra: 147 / 136.7,
  17842. bottom: 0.03
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Normal",
  17849. height: math.unit(1 + 9 / 12, "feet"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(1.54, "feet"),
  17859. weight: math.unit(50, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/nino/front.svg"
  17863. }
  17864. },
  17865. },
  17866. [
  17867. {
  17868. name: "Normal",
  17869. height: math.unit(1.54, "feet"),
  17870. default: true
  17871. },
  17872. ]
  17873. ))
  17874. characterMakers.push(() => makeCharacter(
  17875. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17876. {
  17877. front: {
  17878. height: math.unit(1.49, "feet"),
  17879. weight: math.unit(45, "lb"),
  17880. name: "Front",
  17881. image: {
  17882. source: "./media/characters/viola/front.svg"
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(1.49, "feet"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(6 + 5 / 12, "feet"),
  17899. weight: math.unit(580, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/atlas/front.svg",
  17903. extra: 298.5 / 290,
  17904. bottom: 0.015
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(6 + 5 / 12, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17918. {
  17919. side: {
  17920. height: math.unit(15.6, "inches"),
  17921. weight: math.unit(10, "lb"),
  17922. name: "Side",
  17923. image: {
  17924. source: "./media/characters/davy/side.svg",
  17925. extra: 200 / 170,
  17926. bottom: 0.01
  17927. }
  17928. },
  17929. },
  17930. [
  17931. {
  17932. name: "Normal",
  17933. height: math.unit(15.6, "inches"),
  17934. default: true
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17940. {
  17941. side: {
  17942. height: math.unit(4 + 8 / 12, "feet"),
  17943. weight: math.unit(166, "lb"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/fiona/side.svg",
  17947. extra: 232 / 220,
  17948. bottom: 0.03
  17949. }
  17950. },
  17951. },
  17952. [
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(4 + 8 / 12, "feet"),
  17956. default: true
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17962. {
  17963. front: {
  17964. height: math.unit(26, "inches"),
  17965. weight: math.unit(35, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/lyla/front.svg",
  17969. bottom: 0.1
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(3, "feet"),
  17977. default: true
  17978. },
  17979. ]
  17980. ))
  17981. characterMakers.push(() => makeCharacter(
  17982. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17983. {
  17984. side: {
  17985. height: math.unit(1.8, "feet"),
  17986. weight: math.unit(44, "lb"),
  17987. name: "Side",
  17988. image: {
  17989. source: "./media/characters/perseus/side.svg",
  17990. bottom: 0.21
  17991. }
  17992. },
  17993. },
  17994. [
  17995. {
  17996. name: "Normal",
  17997. height: math.unit(1.8, "feet"),
  17998. default: true
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18004. {
  18005. side: {
  18006. height: math.unit(4 + 2 / 12, "feet"),
  18007. weight: math.unit(20, "lb"),
  18008. name: "Side",
  18009. image: {
  18010. source: "./media/characters/remus/side.svg"
  18011. }
  18012. },
  18013. },
  18014. [
  18015. {
  18016. name: "Normal",
  18017. height: math.unit(4 + 2 / 12, "feet"),
  18018. default: true
  18019. },
  18020. ]
  18021. ))
  18022. characterMakers.push(() => makeCharacter(
  18023. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18024. {
  18025. front: {
  18026. height: math.unit(4 + 11 / 12, "feet"),
  18027. weight: math.unit(114, "lb"),
  18028. name: "Front",
  18029. image: {
  18030. source: "./media/characters/raf/front.svg",
  18031. extra: 1504/1339,
  18032. bottom: 26/1530
  18033. }
  18034. },
  18035. side: {
  18036. height: math.unit(4 + 11 / 12, "feet"),
  18037. weight: math.unit(114, "lb"),
  18038. name: "Side",
  18039. image: {
  18040. source: "./media/characters/raf/side.svg",
  18041. extra: 1466/1316,
  18042. bottom: 29/1495
  18043. }
  18044. },
  18045. paw: {
  18046. height: math.unit(1.45, "feet"),
  18047. name: "Paw",
  18048. image: {
  18049. source: "./media/characters/raf/paw.svg"
  18050. },
  18051. extraAttributes: {
  18052. "toeSize": {
  18053. name: "Toe Size",
  18054. power: 2,
  18055. type: "area",
  18056. base: math.unit(0.004, "m^2")
  18057. },
  18058. "padSize": {
  18059. name: "Pad Size",
  18060. power: 2,
  18061. type: "area",
  18062. base: math.unit(0.04, "m^2")
  18063. },
  18064. "footSize": {
  18065. name: "Foot Size",
  18066. power: 2,
  18067. type: "area",
  18068. base: math.unit(0.08, "m^2")
  18069. },
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Micro",
  18076. height: math.unit(2, "inches")
  18077. },
  18078. {
  18079. name: "Normal",
  18080. height: math.unit(4 + 11 / 12, "feet"),
  18081. default: true
  18082. },
  18083. {
  18084. name: "Macro",
  18085. height: math.unit(70, "feet")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(1.5, "meters"),
  18094. weight: math.unit(68, "kg"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/liam-einarr/front.svg",
  18098. extra: 2822 / 2666
  18099. }
  18100. },
  18101. back: {
  18102. height: math.unit(1.5, "meters"),
  18103. weight: math.unit(68, "kg"),
  18104. name: "Back",
  18105. image: {
  18106. source: "./media/characters/liam-einarr/back.svg",
  18107. extra: 2822 / 2666,
  18108. bottom: 0.015
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Normal",
  18115. height: math.unit(1.5, "meters"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Macro",
  18120. height: math.unit(150, "meters")
  18121. },
  18122. {
  18123. name: "Megamacro",
  18124. height: math.unit(35, "km")
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6, "feet"),
  18133. weight: math.unit(75, "kg"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/linda/front.svg",
  18137. extra: 930 / 874,
  18138. bottom: 0.004
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(6, "feet"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(6 + 8 / 12, "feet"),
  18155. weight: math.unit(220, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/caylex/front.svg",
  18159. extra: 821 / 772,
  18160. bottom: 0.07
  18161. }
  18162. },
  18163. back: {
  18164. height: math.unit(6 + 8 / 12, "feet"),
  18165. weight: math.unit(220, "lb"),
  18166. name: "Back",
  18167. image: {
  18168. source: "./media/characters/caylex/back.svg",
  18169. extra: 821 / 772,
  18170. bottom: 0.022
  18171. }
  18172. },
  18173. hand: {
  18174. height: math.unit(1.25, "feet"),
  18175. name: "Hand",
  18176. image: {
  18177. source: "./media/characters/caylex/hand.svg"
  18178. }
  18179. },
  18180. foot: {
  18181. height: math.unit(1.6, "feet"),
  18182. name: "Foot",
  18183. image: {
  18184. source: "./media/characters/caylex/foot.svg"
  18185. }
  18186. },
  18187. armored: {
  18188. height: math.unit(6 + 8 / 12, "feet"),
  18189. weight: math.unit(250, "lb"),
  18190. name: "Armored",
  18191. image: {
  18192. source: "./media/characters/caylex/armored.svg",
  18193. extra: 1420 / 1310,
  18194. bottom: 0.045
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Normal",
  18201. height: math.unit(6 + 8 / 12, "feet"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Normal+",
  18206. height: math.unit(12, "feet")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(7 + 6 / 12, "feet"),
  18215. weight: math.unit(288, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/alana/front.svg",
  18219. extra: 679 / 653,
  18220. bottom: 22.5 / 701
  18221. }
  18222. },
  18223. },
  18224. [
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(7 + 6 / 12, "feet")
  18228. },
  18229. {
  18230. name: "Large",
  18231. height: math.unit(50, "feet")
  18232. },
  18233. {
  18234. name: "Macro",
  18235. height: math.unit(100, "feet"),
  18236. default: true
  18237. },
  18238. {
  18239. name: "Macro+",
  18240. height: math.unit(200, "feet")
  18241. },
  18242. ]
  18243. ))
  18244. characterMakers.push(() => makeCharacter(
  18245. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18246. {
  18247. front: {
  18248. height: math.unit(6 + 1 / 12, "feet"),
  18249. weight: math.unit(210, "lb"),
  18250. name: "Front",
  18251. image: {
  18252. source: "./media/characters/hasani/front.svg",
  18253. extra: 244 / 232,
  18254. bottom: 0.01
  18255. }
  18256. },
  18257. back: {
  18258. height: math.unit(6 + 1 / 12, "feet"),
  18259. weight: math.unit(210, "lb"),
  18260. name: "Back",
  18261. image: {
  18262. source: "./media/characters/hasani/back.svg",
  18263. extra: 244 / 232,
  18264. bottom: 0.01
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Normal",
  18271. height: math.unit(6 + 1 / 12, "feet")
  18272. },
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(175, "feet"),
  18276. default: true
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(1.82, "meters"),
  18285. weight: math.unit(140, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/nita/front.svg",
  18289. extra: 2473 / 2363,
  18290. bottom: 0.01
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(1.82, "m")
  18298. },
  18299. {
  18300. name: "Macro",
  18301. height: math.unit(300, "m")
  18302. },
  18303. {
  18304. name: "Mistake Canon",
  18305. height: math.unit(0.5, "miles"),
  18306. default: true
  18307. },
  18308. {
  18309. name: "Big Mistake",
  18310. height: math.unit(13, "miles")
  18311. },
  18312. {
  18313. name: "Playing God",
  18314. height: math.unit(2450, "miles")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(4, "feet"),
  18323. weight: math.unit(120, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/shiriko/front.svg",
  18327. extra: 970/934,
  18328. bottom: 5/975
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Normal",
  18335. height: math.unit(4, "feet"),
  18336. default: true
  18337. },
  18338. ]
  18339. ))
  18340. characterMakers.push(() => makeCharacter(
  18341. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18342. {
  18343. front: {
  18344. height: math.unit(6, "feet"),
  18345. name: "front",
  18346. image: {
  18347. source: "./media/characters/deja/front.svg",
  18348. extra: 926 / 840,
  18349. bottom: 0.07
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Planck Length",
  18356. height: math.unit(1.6e-35, "meters")
  18357. },
  18358. {
  18359. name: "Normal",
  18360. height: math.unit(30.48, "meters"),
  18361. default: true
  18362. },
  18363. {
  18364. name: "Universal",
  18365. height: math.unit(8.8e26, "meters")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18371. {
  18372. side: {
  18373. height: math.unit(8, "feet"),
  18374. weight: math.unit(6300, "lb"),
  18375. name: "Side",
  18376. image: {
  18377. source: "./media/characters/anima/side.svg",
  18378. bottom: 0.035
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(8, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18392. {
  18393. front: {
  18394. height: math.unit(8, "feet"),
  18395. weight: math.unit(350, "lb"),
  18396. name: "Front",
  18397. image: {
  18398. source: "./media/characters/bianca/front.svg",
  18399. extra: 234 / 225,
  18400. bottom: 0.03
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(8, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18414. {
  18415. front: {
  18416. height: math.unit(11 + 5/12, "feet"),
  18417. weight: math.unit(1200, "lb"),
  18418. name: "Front",
  18419. image: {
  18420. source: "./media/characters/adinia/front.svg",
  18421. extra: 1767/1641,
  18422. bottom: 44/1811
  18423. },
  18424. extraAttributes: {
  18425. "energyIntake": {
  18426. name: "Energy Intake",
  18427. power: 3,
  18428. type: "energy",
  18429. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18430. },
  18431. }
  18432. },
  18433. back: {
  18434. height: math.unit(11 + 5/12, "feet"),
  18435. weight: math.unit(1200, "lb"),
  18436. name: "Back",
  18437. image: {
  18438. source: "./media/characters/adinia/back.svg",
  18439. extra: 1834/1684,
  18440. bottom: 14/1848
  18441. },
  18442. extraAttributes: {
  18443. "energyIntake": {
  18444. name: "Energy Intake",
  18445. power: 3,
  18446. type: "energy",
  18447. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18448. },
  18449. }
  18450. },
  18451. maw: {
  18452. height: math.unit(3.79, "feet"),
  18453. name: "Maw",
  18454. image: {
  18455. source: "./media/characters/adinia/maw.svg"
  18456. }
  18457. },
  18458. rump: {
  18459. height: math.unit(4.6, "feet"),
  18460. name: "Rump",
  18461. image: {
  18462. source: "./media/characters/adinia/rump.svg"
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(11 + 5 / 12, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(3, "meters"),
  18479. weight: math.unit(200, "kg"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/lykasa/front.svg",
  18483. extra: 1076 / 976,
  18484. bottom: 0.06
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(3, "meters")
  18492. },
  18493. {
  18494. name: "Kaiju",
  18495. height: math.unit(120, "meters"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Mega Kaiju",
  18500. height: math.unit(240, "km")
  18501. },
  18502. {
  18503. name: "Giga Kaiju",
  18504. height: math.unit(400, "megameters")
  18505. },
  18506. {
  18507. name: "Tera Kaiju",
  18508. height: math.unit(800, "gigameters")
  18509. },
  18510. {
  18511. name: "Kaiju Dragon Goddess",
  18512. height: math.unit(26, "zettaparsecs")
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18518. {
  18519. side: {
  18520. height: math.unit(283 / 124 * 6, "feet"),
  18521. weight: math.unit(35000, "lb"),
  18522. name: "Side",
  18523. image: {
  18524. source: "./media/characters/malfaren/side.svg",
  18525. extra: 1310/529,
  18526. bottom: 24/1334
  18527. }
  18528. },
  18529. front: {
  18530. height: math.unit(22.36, "feet"),
  18531. weight: math.unit(35000, "lb"),
  18532. name: "Front",
  18533. image: {
  18534. source: "./media/characters/malfaren/front.svg",
  18535. extra: 1237/1115,
  18536. bottom: 32/1269
  18537. }
  18538. },
  18539. maw: {
  18540. height: math.unit(6.9, "feet"),
  18541. name: "Maw",
  18542. image: {
  18543. source: "./media/characters/malfaren/maw.svg"
  18544. }
  18545. },
  18546. dick: {
  18547. height: math.unit(6.19, "feet"),
  18548. name: "Dick",
  18549. image: {
  18550. source: "./media/characters/malfaren/dick.svg"
  18551. }
  18552. },
  18553. eye: {
  18554. height: math.unit(0.69, "feet"),
  18555. name: "Eye",
  18556. image: {
  18557. source: "./media/characters/malfaren/eye.svg"
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Big",
  18564. height: math.unit(283 / 162 * 6, "feet"),
  18565. },
  18566. {
  18567. name: "Bigger",
  18568. height: math.unit(283 / 124 * 6, "feet")
  18569. },
  18570. {
  18571. name: "Massive",
  18572. height: math.unit(283 / 92 * 6, "feet"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "👀💦",
  18577. height: math.unit(283 / 73 * 6, "feet"),
  18578. },
  18579. ]
  18580. ))
  18581. characterMakers.push(() => makeCharacter(
  18582. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18583. {
  18584. front: {
  18585. height: math.unit(1.7, "m"),
  18586. weight: math.unit(70, "kg"),
  18587. name: "Front",
  18588. image: {
  18589. source: "./media/characters/kernel/front.svg",
  18590. extra: 222 / 210,
  18591. bottom: 0.007
  18592. }
  18593. },
  18594. },
  18595. [
  18596. {
  18597. name: "Nano",
  18598. height: math.unit(17, "micrometers")
  18599. },
  18600. {
  18601. name: "Micro",
  18602. height: math.unit(1.7, "mm")
  18603. },
  18604. {
  18605. name: "Small",
  18606. height: math.unit(1.7, "cm")
  18607. },
  18608. {
  18609. name: "Normal",
  18610. height: math.unit(1.7, "m"),
  18611. default: true
  18612. },
  18613. ]
  18614. ))
  18615. characterMakers.push(() => makeCharacter(
  18616. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18617. {
  18618. front: {
  18619. height: math.unit(1.75, "meters"),
  18620. weight: math.unit(65, "kg"),
  18621. name: "Front",
  18622. image: {
  18623. source: "./media/characters/jayne-folest/front.svg",
  18624. extra: 2115 / 2007,
  18625. bottom: 0.02
  18626. }
  18627. },
  18628. back: {
  18629. height: math.unit(1.75, "meters"),
  18630. weight: math.unit(65, "kg"),
  18631. name: "Back",
  18632. image: {
  18633. source: "./media/characters/jayne-folest/back.svg",
  18634. extra: 2115 / 2007,
  18635. bottom: 0.005
  18636. }
  18637. },
  18638. frontClothed: {
  18639. height: math.unit(1.75, "meters"),
  18640. weight: math.unit(65, "kg"),
  18641. name: "Front (Clothed)",
  18642. image: {
  18643. source: "./media/characters/jayne-folest/front-clothed.svg",
  18644. extra: 2115 / 2007,
  18645. bottom: 0.035
  18646. }
  18647. },
  18648. hand: {
  18649. height: math.unit(1 / 1.260, "feet"),
  18650. name: "Hand",
  18651. image: {
  18652. source: "./media/characters/jayne-folest/hand.svg"
  18653. }
  18654. },
  18655. foot: {
  18656. height: math.unit(1 / 0.918, "feet"),
  18657. name: "Foot",
  18658. image: {
  18659. source: "./media/characters/jayne-folest/foot.svg"
  18660. }
  18661. },
  18662. },
  18663. [
  18664. {
  18665. name: "Micro",
  18666. height: math.unit(4, "cm")
  18667. },
  18668. {
  18669. name: "Normal",
  18670. height: math.unit(1.75, "meters")
  18671. },
  18672. {
  18673. name: "Macro",
  18674. height: math.unit(47.5, "meters"),
  18675. default: true
  18676. },
  18677. ]
  18678. ))
  18679. characterMakers.push(() => makeCharacter(
  18680. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18681. {
  18682. front: {
  18683. height: math.unit(180, "cm"),
  18684. weight: math.unit(70, "kg"),
  18685. name: "Front",
  18686. image: {
  18687. source: "./media/characters/algier/front.svg",
  18688. extra: 596 / 572,
  18689. bottom: 0.04
  18690. }
  18691. },
  18692. back: {
  18693. height: math.unit(180, "cm"),
  18694. weight: math.unit(70, "kg"),
  18695. name: "Back",
  18696. image: {
  18697. source: "./media/characters/algier/back.svg",
  18698. extra: 596 / 572,
  18699. bottom: 0.025
  18700. }
  18701. },
  18702. frontdressed: {
  18703. height: math.unit(180, "cm"),
  18704. weight: math.unit(150, "kg"),
  18705. name: "Front-dressed",
  18706. image: {
  18707. source: "./media/characters/algier/front-dressed.svg",
  18708. extra: 596 / 572,
  18709. bottom: 0.038
  18710. }
  18711. },
  18712. },
  18713. [
  18714. {
  18715. name: "Micro",
  18716. height: math.unit(5, "cm")
  18717. },
  18718. {
  18719. name: "Normal",
  18720. height: math.unit(180, "cm"),
  18721. default: true
  18722. },
  18723. {
  18724. name: "Macro",
  18725. height: math.unit(64, "m")
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18731. {
  18732. upright: {
  18733. height: math.unit(7, "feet"),
  18734. weight: math.unit(300, "lb"),
  18735. name: "Upright",
  18736. image: {
  18737. source: "./media/characters/pretzel/upright.svg",
  18738. extra: 534 / 522,
  18739. bottom: 0.065
  18740. }
  18741. },
  18742. sprawling: {
  18743. height: math.unit(3.75, "feet"),
  18744. weight: math.unit(300, "lb"),
  18745. name: "Sprawling",
  18746. image: {
  18747. source: "./media/characters/pretzel/sprawling.svg",
  18748. extra: 314 / 281,
  18749. bottom: 0.1
  18750. }
  18751. },
  18752. tongue: {
  18753. height: math.unit(2, "feet"),
  18754. name: "Tongue",
  18755. image: {
  18756. source: "./media/characters/pretzel/tongue.svg"
  18757. }
  18758. },
  18759. },
  18760. [
  18761. {
  18762. name: "Normal",
  18763. height: math.unit(7, "feet"),
  18764. default: true
  18765. },
  18766. {
  18767. name: "Oversized",
  18768. height: math.unit(15, "feet")
  18769. },
  18770. {
  18771. name: "Huge",
  18772. height: math.unit(30, "feet")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(250, "feet")
  18777. },
  18778. ]
  18779. ))
  18780. characterMakers.push(() => makeCharacter(
  18781. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18782. {
  18783. sideFront: {
  18784. height: math.unit(5 + 2 / 12, "feet"),
  18785. weight: math.unit(120, "lb"),
  18786. name: "Front Side",
  18787. image: {
  18788. source: "./media/characters/roxi/side-front.svg",
  18789. extra: 2924 / 2717,
  18790. bottom: 0.08
  18791. }
  18792. },
  18793. sideBack: {
  18794. height: math.unit(5 + 2 / 12, "feet"),
  18795. weight: math.unit(120, "lb"),
  18796. name: "Back Side",
  18797. image: {
  18798. source: "./media/characters/roxi/side-back.svg",
  18799. extra: 2904 / 2693,
  18800. bottom: 0.06
  18801. }
  18802. },
  18803. front: {
  18804. height: math.unit(5 + 2 / 12, "feet"),
  18805. weight: math.unit(120, "lb"),
  18806. name: "Front",
  18807. image: {
  18808. source: "./media/characters/roxi/front.svg",
  18809. extra: 2028 / 1907,
  18810. bottom: 0.01
  18811. }
  18812. },
  18813. frontAlt: {
  18814. height: math.unit(5 + 2 / 12, "feet"),
  18815. weight: math.unit(120, "lb"),
  18816. name: "Front (Alt)",
  18817. image: {
  18818. source: "./media/characters/roxi/front-alt.svg",
  18819. extra: 1828 / 1798,
  18820. bottom: 0.01
  18821. }
  18822. },
  18823. sitting: {
  18824. height: math.unit(2.8, "feet"),
  18825. weight: math.unit(120, "lb"),
  18826. name: "Sitting",
  18827. image: {
  18828. source: "./media/characters/roxi/sitting.svg",
  18829. extra: 2660 / 2462,
  18830. bottom: 0.1
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(5 + 2 / 12, "feet"),
  18838. default: true
  18839. },
  18840. ]
  18841. ))
  18842. characterMakers.push(() => makeCharacter(
  18843. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18844. {
  18845. side: {
  18846. height: math.unit(55, "feet"),
  18847. weight: math.unit(153, "tons"),
  18848. name: "Side",
  18849. image: {
  18850. source: "./media/characters/shadow/side.svg",
  18851. extra: 701 / 628,
  18852. bottom: 0.02
  18853. }
  18854. },
  18855. flying: {
  18856. height: math.unit(145, "feet"),
  18857. weight: math.unit(153, "tons"),
  18858. name: "Flying",
  18859. image: {
  18860. source: "./media/characters/shadow/flying.svg"
  18861. }
  18862. },
  18863. },
  18864. [
  18865. {
  18866. name: "Normal",
  18867. height: math.unit(55, "feet"),
  18868. default: true
  18869. },
  18870. ]
  18871. ))
  18872. characterMakers.push(() => makeCharacter(
  18873. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18874. {
  18875. front: {
  18876. height: math.unit(6, "feet"),
  18877. weight: math.unit(200, "lb"),
  18878. name: "Front",
  18879. image: {
  18880. source: "./media/characters/marcie/front.svg",
  18881. extra: 960 / 876,
  18882. bottom: 58 / 1017.87
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Macro",
  18889. height: math.unit(1, "mile"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18896. {
  18897. front: {
  18898. height: math.unit(7, "feet"),
  18899. weight: math.unit(200, "lb"),
  18900. name: "Front",
  18901. image: {
  18902. source: "./media/characters/kachina/front.svg",
  18903. extra: 1290.68 / 1119,
  18904. bottom: 36.5 / 1327.18
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(7, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18918. {
  18919. looking: {
  18920. height: math.unit(2, "meters"),
  18921. weight: math.unit(300, "kg"),
  18922. name: "Looking",
  18923. image: {
  18924. source: "./media/characters/kash/looking.svg",
  18925. extra: 474 / 344,
  18926. bottom: 0.03
  18927. }
  18928. },
  18929. side: {
  18930. height: math.unit(2, "meters"),
  18931. weight: math.unit(300, "kg"),
  18932. name: "Side",
  18933. image: {
  18934. source: "./media/characters/kash/side.svg",
  18935. extra: 302 / 251,
  18936. bottom: 0.03
  18937. }
  18938. },
  18939. front: {
  18940. height: math.unit(2, "meters"),
  18941. weight: math.unit(300, "kg"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/kash/front.svg",
  18945. extra: 495 / 360,
  18946. bottom: 0.015
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(2, "meters"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Big",
  18958. height: math.unit(3, "meters")
  18959. },
  18960. {
  18961. name: "Large",
  18962. height: math.unit(5, "meters")
  18963. },
  18964. ]
  18965. ))
  18966. characterMakers.push(() => makeCharacter(
  18967. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18968. {
  18969. feeding: {
  18970. height: math.unit(6.7, "feet"),
  18971. weight: math.unit(350, "lb"),
  18972. name: "Feeding",
  18973. image: {
  18974. source: "./media/characters/lalim/feeding.svg",
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6.7, "feet"),
  18982. default: true
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(9.5, "feet"),
  18991. weight: math.unit(600, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/de'vout/front.svg",
  18995. extra: 1443 / 1328,
  18996. bottom: 0.025
  18997. }
  18998. },
  18999. back: {
  19000. height: math.unit(9.5, "feet"),
  19001. weight: math.unit(600, "lb"),
  19002. name: "Back",
  19003. image: {
  19004. source: "./media/characters/de'vout/back.svg",
  19005. extra: 1443 / 1328
  19006. }
  19007. },
  19008. frontDressed: {
  19009. height: math.unit(9.5, "feet"),
  19010. weight: math.unit(600, "lb"),
  19011. name: "Front (Dressed",
  19012. image: {
  19013. source: "./media/characters/de'vout/front-dressed.svg",
  19014. extra: 1443 / 1328,
  19015. bottom: 0.025
  19016. }
  19017. },
  19018. backDressed: {
  19019. height: math.unit(9.5, "feet"),
  19020. weight: math.unit(600, "lb"),
  19021. name: "Back (Dressed",
  19022. image: {
  19023. source: "./media/characters/de'vout/back-dressed.svg",
  19024. extra: 1443 / 1328
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(9.5, "feet"),
  19032. default: true
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19038. {
  19039. front: {
  19040. height: math.unit(8, "feet"),
  19041. weight: math.unit(225, "lb"),
  19042. name: "Front",
  19043. image: {
  19044. source: "./media/characters/talana/front.svg",
  19045. extra: 1410 / 1300,
  19046. bottom: 0.015
  19047. }
  19048. },
  19049. frontDressed: {
  19050. height: math.unit(8, "feet"),
  19051. weight: math.unit(225, "lb"),
  19052. name: "Front (Dressed",
  19053. image: {
  19054. source: "./media/characters/talana/front-dressed.svg",
  19055. extra: 1410 / 1300,
  19056. bottom: 0.015
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(8, "feet"),
  19064. default: true
  19065. },
  19066. ]
  19067. ))
  19068. characterMakers.push(() => makeCharacter(
  19069. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19070. {
  19071. side: {
  19072. height: math.unit(7.2, "feet"),
  19073. weight: math.unit(150, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/xeauvok/side.svg",
  19077. extra: 1975 / 1523,
  19078. bottom: 0.07
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(7.2, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19092. {
  19093. side: {
  19094. height: math.unit(4, "meters"),
  19095. weight: math.unit(2200, "kg"),
  19096. name: "Side",
  19097. image: {
  19098. source: "./media/characters/zara/side.svg",
  19099. extra: 765/744,
  19100. bottom: 156/921
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(4, "meters"),
  19108. default: true
  19109. },
  19110. ]
  19111. ))
  19112. characterMakers.push(() => makeCharacter(
  19113. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19114. {
  19115. side: {
  19116. height: math.unit(6, "feet"),
  19117. weight: math.unit(150, "lb"),
  19118. name: "Side",
  19119. image: {
  19120. source: "./media/characters/richard-dragon/side.svg",
  19121. extra: 845 / 340,
  19122. bottom: 0.017
  19123. }
  19124. },
  19125. maw: {
  19126. height: math.unit(2.97, "feet"),
  19127. name: "Maw",
  19128. image: {
  19129. source: "./media/characters/richard-dragon/maw.svg"
  19130. }
  19131. },
  19132. },
  19133. [
  19134. ]
  19135. ))
  19136. characterMakers.push(() => makeCharacter(
  19137. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19138. {
  19139. front: {
  19140. height: math.unit(4, "feet"),
  19141. weight: math.unit(100, "lb"),
  19142. name: "Front",
  19143. image: {
  19144. source: "./media/characters/richard-smeargle/front.svg",
  19145. extra: 2952 / 2820,
  19146. bottom: 0.028
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(4, "feet"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Dynamax",
  19158. height: math.unit(20, "meters")
  19159. },
  19160. ]
  19161. ))
  19162. characterMakers.push(() => makeCharacter(
  19163. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19164. {
  19165. front: {
  19166. height: math.unit(6, "feet"),
  19167. weight: math.unit(110, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/klay/front.svg",
  19171. extra: 962 / 883,
  19172. bottom: 0.04
  19173. }
  19174. },
  19175. back: {
  19176. height: math.unit(6, "feet"),
  19177. weight: math.unit(110, "lb"),
  19178. name: "Back",
  19179. image: {
  19180. source: "./media/characters/klay/back.svg",
  19181. extra: 962 / 883
  19182. }
  19183. },
  19184. beans: {
  19185. height: math.unit(1.15, "feet"),
  19186. name: "Beans",
  19187. image: {
  19188. source: "./media/characters/klay/beans.svg"
  19189. }
  19190. },
  19191. },
  19192. [
  19193. {
  19194. name: "Micro",
  19195. height: math.unit(6, "inches")
  19196. },
  19197. {
  19198. name: "Mini",
  19199. height: math.unit(3, "feet")
  19200. },
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(6, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Big",
  19208. height: math.unit(25, "feet")
  19209. },
  19210. {
  19211. name: "Macro",
  19212. height: math.unit(100, "feet")
  19213. },
  19214. {
  19215. name: "Megamacro",
  19216. height: math.unit(400, "feet")
  19217. },
  19218. ]
  19219. ))
  19220. characterMakers.push(() => makeCharacter(
  19221. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19222. {
  19223. front: {
  19224. height: math.unit(6, "feet"),
  19225. weight: math.unit(160, "lb"),
  19226. name: "Front",
  19227. image: {
  19228. source: "./media/characters/marcus/front.svg",
  19229. extra: 734 / 676,
  19230. bottom: 0.03
  19231. }
  19232. },
  19233. },
  19234. [
  19235. {
  19236. name: "Little",
  19237. height: math.unit(6, "feet")
  19238. },
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(110, "feet"),
  19242. default: true
  19243. },
  19244. {
  19245. name: "Macro",
  19246. height: math.unit(250, "feet")
  19247. },
  19248. {
  19249. name: "Megamacro",
  19250. height: math.unit(1000, "feet")
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(7, "feet"),
  19259. weight: math.unit(275, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/claude-delroute/front.svg",
  19263. extra: 902/827,
  19264. bottom: 26/928
  19265. }
  19266. },
  19267. side: {
  19268. height: math.unit(7, "feet"),
  19269. weight: math.unit(275, "lb"),
  19270. name: "Side",
  19271. image: {
  19272. source: "./media/characters/claude-delroute/side.svg",
  19273. extra: 908/853,
  19274. bottom: 16/924
  19275. }
  19276. },
  19277. back: {
  19278. height: math.unit(7, "feet"),
  19279. weight: math.unit(275, "lb"),
  19280. name: "Back",
  19281. image: {
  19282. source: "./media/characters/claude-delroute/back.svg",
  19283. extra: 911/829,
  19284. bottom: 18/929
  19285. }
  19286. },
  19287. maw: {
  19288. height: math.unit(0.6407, "meters"),
  19289. name: "Maw",
  19290. image: {
  19291. source: "./media/characters/claude-delroute/maw.svg"
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(7, "feet"),
  19299. default: true
  19300. },
  19301. {
  19302. name: "Lorge",
  19303. height: math.unit(20, "feet")
  19304. },
  19305. ]
  19306. ))
  19307. characterMakers.push(() => makeCharacter(
  19308. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19309. {
  19310. front: {
  19311. height: math.unit(8 + 4 / 12, "feet"),
  19312. weight: math.unit(600, "lb"),
  19313. name: "Front",
  19314. image: {
  19315. source: "./media/characters/dragonien/front.svg",
  19316. extra: 100 / 94,
  19317. bottom: 3.3 / 103.3445
  19318. }
  19319. },
  19320. back: {
  19321. height: math.unit(8 + 4 / 12, "feet"),
  19322. weight: math.unit(600, "lb"),
  19323. name: "Back",
  19324. image: {
  19325. source: "./media/characters/dragonien/back.svg",
  19326. extra: 776 / 746,
  19327. bottom: 6.4 / 782.0616
  19328. }
  19329. },
  19330. foot: {
  19331. height: math.unit(1.54, "feet"),
  19332. name: "Foot",
  19333. image: {
  19334. source: "./media/characters/dragonien/foot.svg",
  19335. }
  19336. },
  19337. },
  19338. [
  19339. {
  19340. name: "Normal",
  19341. height: math.unit(8 + 4 / 12, "feet"),
  19342. default: true
  19343. },
  19344. {
  19345. name: "Macro",
  19346. height: math.unit(200, "feet")
  19347. },
  19348. {
  19349. name: "Megamacro",
  19350. height: math.unit(1, "mile")
  19351. },
  19352. {
  19353. name: "Gigamacro",
  19354. height: math.unit(1000, "miles")
  19355. },
  19356. ]
  19357. ))
  19358. characterMakers.push(() => makeCharacter(
  19359. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19360. {
  19361. front: {
  19362. height: math.unit(5 + 2 / 12, "feet"),
  19363. weight: math.unit(110, "lb"),
  19364. name: "Front",
  19365. image: {
  19366. source: "./media/characters/desta/front.svg",
  19367. extra: 767 / 726,
  19368. bottom: 11.7 / 779
  19369. }
  19370. },
  19371. back: {
  19372. height: math.unit(5 + 2 / 12, "feet"),
  19373. weight: math.unit(110, "lb"),
  19374. name: "Back",
  19375. image: {
  19376. source: "./media/characters/desta/back.svg",
  19377. extra: 777 / 728,
  19378. bottom: 6 / 784
  19379. }
  19380. },
  19381. frontAlt: {
  19382. height: math.unit(5 + 2 / 12, "feet"),
  19383. weight: math.unit(110, "lb"),
  19384. name: "Front",
  19385. image: {
  19386. source: "./media/characters/desta/front-alt.svg",
  19387. extra: 1482 / 1417
  19388. }
  19389. },
  19390. side: {
  19391. height: math.unit(5 + 2 / 12, "feet"),
  19392. weight: math.unit(110, "lb"),
  19393. name: "Side",
  19394. image: {
  19395. source: "./media/characters/desta/side.svg",
  19396. extra: 2579 / 2491,
  19397. bottom: 0.053
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Micro",
  19404. height: math.unit(6, "inches")
  19405. },
  19406. {
  19407. name: "Normal",
  19408. height: math.unit(5 + 2 / 12, "feet"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "Macro",
  19413. height: math.unit(62, "feet")
  19414. },
  19415. {
  19416. name: "Megamacro",
  19417. height: math.unit(1800, "feet")
  19418. },
  19419. ]
  19420. ))
  19421. characterMakers.push(() => makeCharacter(
  19422. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19423. {
  19424. front: {
  19425. height: math.unit(10, "feet"),
  19426. weight: math.unit(700, "lb"),
  19427. name: "Front",
  19428. image: {
  19429. source: "./media/characters/storm-alystar/front.svg",
  19430. extra: 2112 / 1898,
  19431. bottom: 0.034
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Micro",
  19438. height: math.unit(3.5, "inches")
  19439. },
  19440. {
  19441. name: "Normal",
  19442. height: math.unit(10, "feet"),
  19443. default: true
  19444. },
  19445. {
  19446. name: "Macro",
  19447. height: math.unit(400, "feet")
  19448. },
  19449. {
  19450. name: "Deific",
  19451. height: math.unit(60, "miles")
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19457. {
  19458. front: {
  19459. height: math.unit(2.35, "meters"),
  19460. weight: math.unit(119, "kg"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/ilia/front.svg",
  19464. extra: 1285 / 1255,
  19465. bottom: 0.06
  19466. }
  19467. },
  19468. },
  19469. [
  19470. {
  19471. name: "Normal",
  19472. height: math.unit(2.35, "meters")
  19473. },
  19474. {
  19475. name: "Macro",
  19476. height: math.unit(140, "meters"),
  19477. default: true
  19478. },
  19479. {
  19480. name: "Megamacro",
  19481. height: math.unit(100, "miles")
  19482. },
  19483. ]
  19484. ))
  19485. characterMakers.push(() => makeCharacter(
  19486. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19487. {
  19488. front: {
  19489. height: math.unit(6 + 5 / 12, "feet"),
  19490. weight: math.unit(190, "lb"),
  19491. name: "Front",
  19492. image: {
  19493. source: "./media/characters/kingdead/front.svg",
  19494. extra: 1228 / 1177
  19495. }
  19496. },
  19497. },
  19498. [
  19499. {
  19500. name: "Micro",
  19501. height: math.unit(7, "inches")
  19502. },
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(6 + 5 / 12, "feet")
  19506. },
  19507. {
  19508. name: "Macro",
  19509. height: math.unit(150, "feet"),
  19510. default: true
  19511. },
  19512. {
  19513. name: "Megamacro",
  19514. height: math.unit(200, "miles")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(8, "feet"),
  19523. weight: math.unit(600, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/kyrehx/front.svg",
  19527. extra: 1195 / 1095,
  19528. bottom: 0.034
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Micro",
  19535. height: math.unit(2, "inches")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(8, "feet"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Macro",
  19544. height: math.unit(255, "feet")
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19553. weight: math.unit(184, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/xang/front.svg",
  19557. extra: 845 / 755
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Normal",
  19564. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19565. default: true
  19566. },
  19567. {
  19568. name: "Macro",
  19569. height: math.unit(0.935 * 146, "feet")
  19570. },
  19571. {
  19572. name: "Megamacro",
  19573. height: math.unit(0.935 * 3, "miles")
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19579. {
  19580. frontDressed: {
  19581. height: math.unit(5 + 7 / 12, "feet"),
  19582. weight: math.unit(140, "lb"),
  19583. name: "Front (Dressed)",
  19584. image: {
  19585. source: "./media/characters/doc-weardno/front-dressed.svg",
  19586. extra: 263 / 234
  19587. }
  19588. },
  19589. backDressed: {
  19590. height: math.unit(5 + 7 / 12, "feet"),
  19591. weight: math.unit(140, "lb"),
  19592. name: "Back (Dressed)",
  19593. image: {
  19594. source: "./media/characters/doc-weardno/back-dressed.svg",
  19595. extra: 266 / 238
  19596. }
  19597. },
  19598. front: {
  19599. height: math.unit(5 + 7 / 12, "feet"),
  19600. weight: math.unit(140, "lb"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/doc-weardno/front.svg",
  19604. extra: 254 / 233
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Micro",
  19611. height: math.unit(3, "inches")
  19612. },
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 7 / 12, "feet"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(25, "feet")
  19621. },
  19622. {
  19623. name: "Megamacro",
  19624. height: math.unit(2, "miles")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(6 + 2 / 12, "feet"),
  19633. weight: math.unit(153, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/seth-whilst/front.svg",
  19637. bottom: 0.07
  19638. }
  19639. },
  19640. },
  19641. [
  19642. {
  19643. name: "Micro",
  19644. height: math.unit(5, "inches")
  19645. },
  19646. {
  19647. name: "Normal",
  19648. height: math.unit(6 + 2 / 12, "feet"),
  19649. default: true
  19650. },
  19651. ]
  19652. ))
  19653. characterMakers.push(() => makeCharacter(
  19654. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19655. {
  19656. front: {
  19657. height: math.unit(3, "inches"),
  19658. weight: math.unit(8, "grams"),
  19659. name: "Front",
  19660. image: {
  19661. source: "./media/characters/pocket-jabari/front.svg",
  19662. extra: 1024 / 974,
  19663. bottom: 0.039
  19664. }
  19665. },
  19666. },
  19667. [
  19668. {
  19669. name: "Minimicro",
  19670. height: math.unit(8, "mm")
  19671. },
  19672. {
  19673. name: "Micro",
  19674. height: math.unit(3, "inches"),
  19675. default: true
  19676. },
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(3, "feet")
  19680. },
  19681. ]
  19682. ))
  19683. characterMakers.push(() => makeCharacter(
  19684. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19685. {
  19686. frontDressed: {
  19687. height: math.unit(15, "feet"),
  19688. weight: math.unit(3280, "lb"),
  19689. name: "Front (Dressed)",
  19690. image: {
  19691. source: "./media/characters/sapphy/front-dressed.svg",
  19692. extra: 1951/1654,
  19693. bottom: 194/2145
  19694. },
  19695. form: "anthro",
  19696. default: true
  19697. },
  19698. backDressed: {
  19699. height: math.unit(15, "feet"),
  19700. weight: math.unit(3280, "lb"),
  19701. name: "Back (Dressed)",
  19702. image: {
  19703. source: "./media/characters/sapphy/back-dressed.svg",
  19704. extra: 2058/1918,
  19705. bottom: 125/2183
  19706. },
  19707. form: "anthro"
  19708. },
  19709. frontNude: {
  19710. height: math.unit(15, "feet"),
  19711. weight: math.unit(3280, "lb"),
  19712. name: "Front (Nude)",
  19713. image: {
  19714. source: "./media/characters/sapphy/front-nude.svg",
  19715. extra: 1951/1654,
  19716. bottom: 194/2145
  19717. },
  19718. form: "anthro"
  19719. },
  19720. backNude: {
  19721. height: math.unit(15, "feet"),
  19722. weight: math.unit(3280, "lb"),
  19723. name: "Back (Nude)",
  19724. image: {
  19725. source: "./media/characters/sapphy/back-nude.svg",
  19726. extra: 2058/1918,
  19727. bottom: 125/2183
  19728. },
  19729. form: "anthro"
  19730. },
  19731. full: {
  19732. height: math.unit(15, "feet"),
  19733. weight: math.unit(3280, "lb"),
  19734. name: "Full",
  19735. image: {
  19736. source: "./media/characters/sapphy/full.svg",
  19737. extra: 1396/1317,
  19738. bottom: 44/1440
  19739. },
  19740. form: "anthro"
  19741. },
  19742. dick: {
  19743. height: math.unit(3.8, "feet"),
  19744. name: "Dick",
  19745. image: {
  19746. source: "./media/characters/sapphy/dick.svg"
  19747. },
  19748. form: "anthro"
  19749. },
  19750. feral: {
  19751. height: math.unit(35, "feet"),
  19752. weight: math.unit(160, "tons"),
  19753. name: "Feral",
  19754. image: {
  19755. source: "./media/characters/sapphy/feral.svg",
  19756. extra: 1050/573,
  19757. bottom: 60/1110
  19758. },
  19759. form: "feral",
  19760. default: true
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(15, "feet"),
  19767. form: "anthro"
  19768. },
  19769. {
  19770. name: "Casual Macro",
  19771. height: math.unit(120, "feet"),
  19772. form: "anthro"
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(2150, "feet"),
  19777. default: true,
  19778. form: "anthro"
  19779. },
  19780. {
  19781. name: "Megamacro",
  19782. height: math.unit(8, "miles"),
  19783. form: "anthro"
  19784. },
  19785. {
  19786. name: "Galaxy Mom",
  19787. height: math.unit(6, "megalightyears"),
  19788. form: "anthro"
  19789. },
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(35, "feet"),
  19793. form: "feral",
  19794. default: true
  19795. },
  19796. {
  19797. name: "Macro",
  19798. height: math.unit(300, "feet"),
  19799. form: "feral"
  19800. },
  19801. {
  19802. name: "Galaxy Mom",
  19803. height: math.unit(10, "megalightyears"),
  19804. form: "feral"
  19805. },
  19806. ],
  19807. {
  19808. "anthro": {
  19809. name: "Anthro",
  19810. default: true
  19811. },
  19812. "feral": {
  19813. name: "Feral"
  19814. }
  19815. }
  19816. ))
  19817. characterMakers.push(() => makeCharacter(
  19818. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19819. {
  19820. front: {
  19821. height: math.unit(6, "feet"),
  19822. weight: math.unit(170, "lb"),
  19823. name: "Front",
  19824. image: {
  19825. source: "./media/characters/kiro/front.svg",
  19826. extra: 1064 / 1012,
  19827. bottom: 0.052
  19828. }
  19829. },
  19830. },
  19831. [
  19832. {
  19833. name: "Micro",
  19834. height: math.unit(6, "inches")
  19835. },
  19836. {
  19837. name: "Normal",
  19838. height: math.unit(6, "feet"),
  19839. default: true
  19840. },
  19841. {
  19842. name: "Macro",
  19843. height: math.unit(72, "feet")
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19849. {
  19850. front: {
  19851. height: math.unit(5 + 9 / 12, "feet"),
  19852. weight: math.unit(175, "lb"),
  19853. name: "Front",
  19854. image: {
  19855. source: "./media/characters/irishfox/front.svg",
  19856. extra: 1912 / 1680,
  19857. bottom: 0.02
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Nano",
  19864. height: math.unit(1, "mm")
  19865. },
  19866. {
  19867. name: "Micro",
  19868. height: math.unit(2, "inches")
  19869. },
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(5 + 9 / 12, "feet"),
  19873. default: true
  19874. },
  19875. {
  19876. name: "Macro",
  19877. height: math.unit(45, "feet")
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(6 + 1 / 12, "feet"),
  19886. weight: math.unit(75, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/aronai-sieyes/front.svg",
  19890. extra: 1532/1450,
  19891. bottom: 42/1574
  19892. }
  19893. },
  19894. side: {
  19895. height: math.unit(6 + 1 / 12, "feet"),
  19896. weight: math.unit(75, "lb"),
  19897. name: "Side",
  19898. image: {
  19899. source: "./media/characters/aronai-sieyes/side.svg",
  19900. extra: 1422/1365,
  19901. bottom: 148/1570
  19902. }
  19903. },
  19904. back: {
  19905. height: math.unit(6 + 1 / 12, "feet"),
  19906. weight: math.unit(75, "lb"),
  19907. name: "Back",
  19908. image: {
  19909. source: "./media/characters/aronai-sieyes/back.svg",
  19910. extra: 1526/1464,
  19911. bottom: 51/1577
  19912. }
  19913. },
  19914. dressed: {
  19915. height: math.unit(6 + 1 / 12, "feet"),
  19916. weight: math.unit(75, "lb"),
  19917. name: "Dressed",
  19918. image: {
  19919. source: "./media/characters/aronai-sieyes/dressed.svg",
  19920. extra: 1559/1483,
  19921. bottom: 39/1598
  19922. }
  19923. },
  19924. slit: {
  19925. height: math.unit(1.3, "feet"),
  19926. name: "Slit",
  19927. image: {
  19928. source: "./media/characters/aronai-sieyes/slit.svg"
  19929. }
  19930. },
  19931. slitSpread: {
  19932. height: math.unit(0.9, "feet"),
  19933. name: "Slit (Spread)",
  19934. image: {
  19935. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19936. }
  19937. },
  19938. rump: {
  19939. height: math.unit(1.3, "feet"),
  19940. name: "Rump",
  19941. image: {
  19942. source: "./media/characters/aronai-sieyes/rump.svg"
  19943. }
  19944. },
  19945. maw: {
  19946. height: math.unit(1.25, "feet"),
  19947. name: "Maw",
  19948. image: {
  19949. source: "./media/characters/aronai-sieyes/maw.svg"
  19950. }
  19951. },
  19952. feral: {
  19953. height: math.unit(18, "feet"),
  19954. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19955. name: "Feral",
  19956. image: {
  19957. source: "./media/characters/aronai-sieyes/feral.svg",
  19958. extra: 1530 / 1240,
  19959. bottom: 0.035
  19960. }
  19961. },
  19962. },
  19963. [
  19964. {
  19965. name: "Micro",
  19966. height: math.unit(2, "inches")
  19967. },
  19968. {
  19969. name: "Normal",
  19970. height: math.unit(6 + 1 / 12, "feet"),
  19971. default: true
  19972. }
  19973. ]
  19974. ))
  19975. characterMakers.push(() => makeCharacter(
  19976. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19977. {
  19978. front: {
  19979. height: math.unit(12, "feet"),
  19980. weight: math.unit(410, "kg"),
  19981. name: "Front",
  19982. image: {
  19983. source: "./media/characters/xuna/front.svg",
  19984. extra: 2184 / 1980
  19985. }
  19986. },
  19987. side: {
  19988. height: math.unit(12, "feet"),
  19989. weight: math.unit(410, "kg"),
  19990. name: "Side",
  19991. image: {
  19992. source: "./media/characters/xuna/side.svg",
  19993. extra: 2184 / 1980
  19994. }
  19995. },
  19996. back: {
  19997. height: math.unit(12, "feet"),
  19998. weight: math.unit(410, "kg"),
  19999. name: "Back",
  20000. image: {
  20001. source: "./media/characters/xuna/back.svg",
  20002. extra: 2184 / 1980
  20003. }
  20004. },
  20005. },
  20006. [
  20007. {
  20008. name: "Nano glow",
  20009. height: math.unit(10, "nm")
  20010. },
  20011. {
  20012. name: "Micro floof",
  20013. height: math.unit(0.3, "m")
  20014. },
  20015. {
  20016. name: "Huggable softy boi",
  20017. height: math.unit(3.6576, "m"),
  20018. default: true
  20019. },
  20020. {
  20021. name: "Admirable floof",
  20022. height: math.unit(80, "meters")
  20023. },
  20024. {
  20025. name: "Gentle macro",
  20026. height: math.unit(300, "meters")
  20027. },
  20028. {
  20029. name: "Very careful floof",
  20030. height: math.unit(3200, "meters")
  20031. },
  20032. {
  20033. name: "The mega floof",
  20034. height: math.unit(36000, "meters")
  20035. },
  20036. {
  20037. name: "Giga-fur-Wicker",
  20038. height: math.unit(4800000, "meters")
  20039. },
  20040. {
  20041. name: "Licky world",
  20042. height: math.unit(20000000, "meters")
  20043. },
  20044. {
  20045. name: "Floofy cyan sun",
  20046. height: math.unit(1500000000, "meters")
  20047. },
  20048. {
  20049. name: "Milky Wicker",
  20050. height: math.unit(1000000000000000000000, "meters")
  20051. },
  20052. {
  20053. name: "The observing Wicker",
  20054. height: math.unit(999999999999999999999999999, "meters")
  20055. },
  20056. ]
  20057. ))
  20058. characterMakers.push(() => makeCharacter(
  20059. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20060. {
  20061. front: {
  20062. height: math.unit(5 + 9 / 12, "feet"),
  20063. weight: math.unit(150, "lb"),
  20064. name: "Front",
  20065. image: {
  20066. source: "./media/characters/arokha-sieyes/front.svg",
  20067. extra: 1425 / 1284,
  20068. bottom: 0.05
  20069. }
  20070. },
  20071. },
  20072. [
  20073. {
  20074. name: "Normal",
  20075. height: math.unit(5 + 9 / 12, "feet")
  20076. },
  20077. {
  20078. name: "Macro",
  20079. height: math.unit(30, "meters"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(6, "feet"),
  20089. weight: math.unit(180, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/arokh-sieyes/front.svg",
  20093. extra: 1830 / 1769,
  20094. bottom: 0.01
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(6, "feet")
  20102. },
  20103. {
  20104. name: "Macro",
  20105. height: math.unit(30, "meters"),
  20106. default: true
  20107. },
  20108. ]
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20112. {
  20113. side: {
  20114. height: math.unit(13 + 1 / 12, "feet"),
  20115. weight: math.unit(8.5, "tonnes"),
  20116. name: "Side",
  20117. image: {
  20118. source: "./media/characters/goldeneye/side.svg",
  20119. extra: 1182 / 778,
  20120. bottom: 0.067
  20121. }
  20122. },
  20123. paw: {
  20124. height: math.unit(3.4, "feet"),
  20125. name: "Paw",
  20126. image: {
  20127. source: "./media/characters/goldeneye/paw.svg"
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(13 + 1 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20141. {
  20142. front: {
  20143. height: math.unit(6 + 1 / 12, "feet"),
  20144. weight: math.unit(210, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/leonardo-lycheborne/front.svg",
  20148. extra: 776/723,
  20149. bottom: 34/810
  20150. }
  20151. },
  20152. side: {
  20153. height: math.unit(6 + 1 / 12, "feet"),
  20154. weight: math.unit(210, "lb"),
  20155. name: "Side",
  20156. image: {
  20157. source: "./media/characters/leonardo-lycheborne/side.svg",
  20158. extra: 780/728,
  20159. bottom: 12/792
  20160. }
  20161. },
  20162. back: {
  20163. height: math.unit(6 + 1 / 12, "feet"),
  20164. weight: math.unit(210, "lb"),
  20165. name: "Back",
  20166. image: {
  20167. source: "./media/characters/leonardo-lycheborne/back.svg",
  20168. extra: 775/721,
  20169. bottom: 17/792
  20170. }
  20171. },
  20172. hand: {
  20173. height: math.unit(1.08, "feet"),
  20174. name: "Hand",
  20175. image: {
  20176. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20177. }
  20178. },
  20179. foot: {
  20180. height: math.unit(1.32, "feet"),
  20181. name: "Foot",
  20182. image: {
  20183. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20184. }
  20185. },
  20186. maw: {
  20187. height: math.unit(1, "feet"),
  20188. name: "Maw",
  20189. image: {
  20190. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20191. }
  20192. },
  20193. were: {
  20194. height: math.unit(20, "feet"),
  20195. weight: math.unit(7800, "lb"),
  20196. name: "Were",
  20197. image: {
  20198. source: "./media/characters/leonardo-lycheborne/were.svg",
  20199. extra: 1224/1165,
  20200. bottom: 72/1296
  20201. }
  20202. },
  20203. feral: {
  20204. height: math.unit(7.5, "feet"),
  20205. weight: math.unit(600, "lb"),
  20206. name: "Feral",
  20207. image: {
  20208. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20209. extra: 797/702,
  20210. bottom: 139/936
  20211. }
  20212. },
  20213. taur: {
  20214. height: math.unit(11, "feet"),
  20215. weight: math.unit(3300, "lb"),
  20216. name: "Taur",
  20217. image: {
  20218. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20219. extra: 1271/1197,
  20220. bottom: 47/1318
  20221. }
  20222. },
  20223. barghest: {
  20224. height: math.unit(11, "feet"),
  20225. weight: math.unit(1300, "lb"),
  20226. name: "Barghest",
  20227. image: {
  20228. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20229. extra: 1291/1204,
  20230. bottom: 37/1328
  20231. }
  20232. },
  20233. dick: {
  20234. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20235. name: "Dick",
  20236. image: {
  20237. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20238. }
  20239. },
  20240. dickWere: {
  20241. height: math.unit((20) / 3.8, "feet"),
  20242. name: "Dick (Were)",
  20243. image: {
  20244. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(6 + 1 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20258. {
  20259. front: {
  20260. height: math.unit(10, "feet"),
  20261. weight: math.unit(350, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/jet/front.svg",
  20265. extra: 2050 / 1980,
  20266. bottom: 0.013
  20267. }
  20268. },
  20269. back: {
  20270. height: math.unit(10, "feet"),
  20271. weight: math.unit(350, "lb"),
  20272. name: "Back",
  20273. image: {
  20274. source: "./media/characters/jet/back.svg",
  20275. extra: 2050 / 1980,
  20276. bottom: 0.013
  20277. }
  20278. },
  20279. },
  20280. [
  20281. {
  20282. name: "Micro",
  20283. height: math.unit(6, "inches")
  20284. },
  20285. {
  20286. name: "Normal",
  20287. height: math.unit(10, "feet"),
  20288. default: true
  20289. },
  20290. {
  20291. name: "Macro",
  20292. height: math.unit(100, "feet")
  20293. },
  20294. ]
  20295. ))
  20296. characterMakers.push(() => makeCharacter(
  20297. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20298. {
  20299. front: {
  20300. height: math.unit(15, "feet"),
  20301. weight: math.unit(2800, "lb"),
  20302. name: "Front",
  20303. image: {
  20304. source: "./media/characters/tanarath/front.svg",
  20305. extra: 2392 / 2220,
  20306. bottom: 0.03
  20307. }
  20308. },
  20309. back: {
  20310. height: math.unit(15, "feet"),
  20311. weight: math.unit(2800, "lb"),
  20312. name: "Back",
  20313. image: {
  20314. source: "./media/characters/tanarath/back.svg",
  20315. extra: 2392 / 2220,
  20316. bottom: 0.03
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(15, "feet"),
  20324. default: true
  20325. },
  20326. ]
  20327. ))
  20328. characterMakers.push(() => makeCharacter(
  20329. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20330. {
  20331. front: {
  20332. height: math.unit(7 + 1 / 12, "feet"),
  20333. weight: math.unit(175, "lb"),
  20334. name: "Front",
  20335. image: {
  20336. source: "./media/characters/patty-cattybatty/front.svg",
  20337. extra: 908 / 874,
  20338. bottom: 0.025
  20339. }
  20340. },
  20341. },
  20342. [
  20343. {
  20344. name: "Micro",
  20345. height: math.unit(1, "inch")
  20346. },
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(7 + 1 / 12, "feet")
  20350. },
  20351. {
  20352. name: "Mini Macro",
  20353. height: math.unit(155, "feet")
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(1077, "feet")
  20358. },
  20359. {
  20360. name: "Mega Macro",
  20361. height: math.unit(47650, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Giga Macro",
  20366. height: math.unit(440, "miles")
  20367. },
  20368. {
  20369. name: "Tera Macro",
  20370. height: math.unit(8700, "miles")
  20371. },
  20372. {
  20373. name: "Planetary Macro",
  20374. height: math.unit(32700, "miles")
  20375. },
  20376. {
  20377. name: "Solar Macro",
  20378. height: math.unit(550000, "miles")
  20379. },
  20380. {
  20381. name: "Celestial Macro",
  20382. height: math.unit(2.5, "AU")
  20383. },
  20384. ]
  20385. ))
  20386. characterMakers.push(() => makeCharacter(
  20387. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20388. {
  20389. front: {
  20390. height: math.unit(4 + 5 / 12, "feet"),
  20391. weight: math.unit(90, "lb"),
  20392. name: "Front",
  20393. image: {
  20394. source: "./media/characters/cappu/front.svg",
  20395. extra: 1247 / 1152,
  20396. bottom: 0.012
  20397. }
  20398. },
  20399. },
  20400. [
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(4 + 5 / 12, "feet"),
  20404. default: true
  20405. },
  20406. ]
  20407. ))
  20408. characterMakers.push(() => makeCharacter(
  20409. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20410. {
  20411. frontDressed: {
  20412. height: math.unit(70, "cm"),
  20413. weight: math.unit(6, "kg"),
  20414. name: "Front (Dressed)",
  20415. image: {
  20416. source: "./media/characters/sebi/front-dressed.svg",
  20417. extra: 713.5 / 686.5,
  20418. bottom: 0.003
  20419. }
  20420. },
  20421. front: {
  20422. height: math.unit(70, "cm"),
  20423. weight: math.unit(5, "kg"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/sebi/front.svg",
  20427. extra: 713.5 / 686.5,
  20428. bottom: 0.003
  20429. }
  20430. }
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(70, "cm"),
  20436. default: true
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(8, "meters")
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(6, "feet"),
  20449. weight: math.unit(150, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/typhek/front.svg",
  20453. extra: 1948 / 1929,
  20454. bottom: 0.025
  20455. }
  20456. },
  20457. side: {
  20458. height: math.unit(6, "feet"),
  20459. weight: math.unit(150, "lb"),
  20460. name: "Side",
  20461. image: {
  20462. source: "./media/characters/typhek/side.svg",
  20463. extra: 2034 / 2010,
  20464. bottom: 0.003
  20465. }
  20466. },
  20467. back: {
  20468. height: math.unit(6, "feet"),
  20469. weight: math.unit(150, "lb"),
  20470. name: "Back",
  20471. image: {
  20472. source: "./media/characters/typhek/back.svg",
  20473. extra: 2005 / 1978,
  20474. bottom: 0.004
  20475. }
  20476. },
  20477. palm: {
  20478. height: math.unit(1.2, "feet"),
  20479. name: "Palm",
  20480. image: {
  20481. source: "./media/characters/typhek/palm.svg"
  20482. }
  20483. },
  20484. fist: {
  20485. height: math.unit(1.1, "feet"),
  20486. name: "Fist",
  20487. image: {
  20488. source: "./media/characters/typhek/fist.svg"
  20489. }
  20490. },
  20491. foot: {
  20492. height: math.unit(1.57, "feet"),
  20493. name: "Foot",
  20494. image: {
  20495. source: "./media/characters/typhek/foot.svg"
  20496. }
  20497. },
  20498. sole: {
  20499. height: math.unit(2.05, "feet"),
  20500. name: "Sole",
  20501. image: {
  20502. source: "./media/characters/typhek/sole.svg"
  20503. }
  20504. },
  20505. },
  20506. [
  20507. {
  20508. name: "Macro",
  20509. height: math.unit(40, "stories"),
  20510. default: true
  20511. },
  20512. {
  20513. name: "Megamacro",
  20514. height: math.unit(1, "mile")
  20515. },
  20516. {
  20517. name: "Gigamacro",
  20518. height: math.unit(4000, "solarradii")
  20519. },
  20520. {
  20521. name: "Universal",
  20522. height: math.unit(1.1, "universes")
  20523. }
  20524. ]
  20525. ))
  20526. characterMakers.push(() => makeCharacter(
  20527. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20528. {
  20529. side: {
  20530. height: math.unit(5 + 7 / 12, "feet"),
  20531. weight: math.unit(150, "lb"),
  20532. name: "Side",
  20533. image: {
  20534. source: "./media/characters/kassy/side.svg",
  20535. extra: 1280 / 1225,
  20536. bottom: 0.002
  20537. }
  20538. },
  20539. front: {
  20540. height: math.unit(5 + 7 / 12, "feet"),
  20541. weight: math.unit(150, "lb"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/kassy/front.svg",
  20545. extra: 1280 / 1225,
  20546. bottom: 0.025
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(5 + 7 / 12, "feet"),
  20551. weight: math.unit(150, "lb"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/kassy/back.svg",
  20555. extra: 1280 / 1225,
  20556. bottom: 0.002
  20557. }
  20558. },
  20559. foot: {
  20560. height: math.unit(1.266, "feet"),
  20561. name: "Foot",
  20562. image: {
  20563. source: "./media/characters/kassy/foot.svg"
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 7 / 12, "feet")
  20571. },
  20572. {
  20573. name: "Macro",
  20574. height: math.unit(137, "feet"),
  20575. default: true
  20576. },
  20577. {
  20578. name: "Megamacro",
  20579. height: math.unit(1, "mile")
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(6 + 1 / 12, "feet"),
  20588. weight: math.unit(200, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/neil/front.svg",
  20592. extra: 1326 / 1250,
  20593. bottom: 0.023
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Normal",
  20600. height: math.unit(6 + 1 / 12, "feet"),
  20601. default: true
  20602. },
  20603. {
  20604. name: "Macro",
  20605. height: math.unit(200, "feet")
  20606. },
  20607. ]
  20608. ))
  20609. characterMakers.push(() => makeCharacter(
  20610. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20611. {
  20612. front: {
  20613. height: math.unit(5 + 9 / 12, "feet"),
  20614. weight: math.unit(190, "lb"),
  20615. name: "Front",
  20616. image: {
  20617. source: "./media/characters/atticus/front.svg",
  20618. extra: 2934 / 2785,
  20619. bottom: 0.025
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(5 + 9 / 12, "feet"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Macro",
  20631. height: math.unit(180, "feet")
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20637. {
  20638. side: {
  20639. height: math.unit(9, "feet"),
  20640. weight: math.unit(650, "lb"),
  20641. name: "Side",
  20642. image: {
  20643. source: "./media/characters/milo/side.svg",
  20644. extra: 2644 / 2310,
  20645. bottom: 0.032
  20646. }
  20647. },
  20648. },
  20649. [
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(9, "feet"),
  20653. default: true
  20654. },
  20655. {
  20656. name: "Macro",
  20657. height: math.unit(300, "feet")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20663. {
  20664. side: {
  20665. height: math.unit(8, "meters"),
  20666. weight: math.unit(90000, "kg"),
  20667. name: "Side",
  20668. image: {
  20669. source: "./media/characters/ijzer/side.svg",
  20670. extra: 2756 / 1600,
  20671. bottom: 0.01
  20672. }
  20673. },
  20674. },
  20675. [
  20676. {
  20677. name: "Small",
  20678. height: math.unit(3, "meters")
  20679. },
  20680. {
  20681. name: "Normal",
  20682. height: math.unit(8, "meters"),
  20683. default: true
  20684. },
  20685. {
  20686. name: "Normal+",
  20687. height: math.unit(10, "meters")
  20688. },
  20689. {
  20690. name: "Bigger",
  20691. height: math.unit(24, "meters")
  20692. },
  20693. {
  20694. name: "Huge",
  20695. height: math.unit(80, "meters")
  20696. },
  20697. ]
  20698. ))
  20699. characterMakers.push(() => makeCharacter(
  20700. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20701. {
  20702. front: {
  20703. height: math.unit(6 + 2 / 12, "feet"),
  20704. weight: math.unit(153, "lb"),
  20705. name: "Front",
  20706. image: {
  20707. source: "./media/characters/luca-cervicum/front.svg",
  20708. extra: 370 / 327,
  20709. bottom: 0.015
  20710. }
  20711. },
  20712. back: {
  20713. height: math.unit(6 + 2 / 12, "feet"),
  20714. weight: math.unit(153, "lb"),
  20715. name: "Back",
  20716. image: {
  20717. source: "./media/characters/luca-cervicum/back.svg",
  20718. extra: 367 / 333,
  20719. bottom: 0.005
  20720. }
  20721. },
  20722. frontGear: {
  20723. height: math.unit(6 + 2 / 12, "feet"),
  20724. weight: math.unit(173, "lb"),
  20725. name: "Front (Gear)",
  20726. image: {
  20727. source: "./media/characters/luca-cervicum/front-gear.svg",
  20728. extra: 377 / 333,
  20729. bottom: 0.006
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(6 + 2 / 12, "feet"),
  20737. default: true
  20738. },
  20739. ]
  20740. ))
  20741. characterMakers.push(() => makeCharacter(
  20742. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20743. {
  20744. front: {
  20745. height: math.unit(6 + 1 / 12, "feet"),
  20746. weight: math.unit(304, "lb"),
  20747. name: "Front",
  20748. image: {
  20749. source: "./media/characters/oliver/front.svg",
  20750. extra: 157 / 143,
  20751. bottom: 0.08
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(6 + 1 / 12, "feet"),
  20759. default: true
  20760. },
  20761. ]
  20762. ))
  20763. characterMakers.push(() => makeCharacter(
  20764. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20765. {
  20766. front: {
  20767. height: math.unit(5 + 7 / 12, "feet"),
  20768. weight: math.unit(140, "lb"),
  20769. name: "Front",
  20770. image: {
  20771. source: "./media/characters/shane/front.svg",
  20772. extra: 304 / 289,
  20773. bottom: 0.005
  20774. }
  20775. },
  20776. },
  20777. [
  20778. {
  20779. name: "Normal",
  20780. height: math.unit(5 + 7 / 12, "feet"),
  20781. default: true
  20782. },
  20783. ]
  20784. ))
  20785. characterMakers.push(() => makeCharacter(
  20786. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20787. {
  20788. front: {
  20789. height: math.unit(5 + 9 / 12, "feet"),
  20790. weight: math.unit(178, "lb"),
  20791. name: "Front",
  20792. image: {
  20793. source: "./media/characters/shin/front.svg",
  20794. extra: 159 / 151,
  20795. bottom: 0.015
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(5 + 9 / 12, "feet"),
  20803. default: true
  20804. },
  20805. ]
  20806. ))
  20807. characterMakers.push(() => makeCharacter(
  20808. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20809. {
  20810. front: {
  20811. height: math.unit(5 + 10 / 12, "feet"),
  20812. weight: math.unit(168, "lb"),
  20813. name: "Front",
  20814. image: {
  20815. source: "./media/characters/xerxes/front.svg",
  20816. extra: 282 / 260,
  20817. bottom: 0.045
  20818. }
  20819. },
  20820. },
  20821. [
  20822. {
  20823. name: "Normal",
  20824. height: math.unit(5 + 10 / 12, "feet"),
  20825. default: true
  20826. },
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20831. {
  20832. front: {
  20833. height: math.unit(6 + 7 / 12, "feet"),
  20834. weight: math.unit(208, "lb"),
  20835. name: "Front",
  20836. image: {
  20837. source: "./media/characters/chaska/front.svg",
  20838. extra: 332 / 319,
  20839. bottom: 0.015
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(6 + 7 / 12, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20853. {
  20854. front: {
  20855. height: math.unit(5 + 8 / 12, "feet"),
  20856. weight: math.unit(208, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/enuk/front.svg",
  20860. extra: 437 / 406,
  20861. bottom: 0.02
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(5 + 8 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(5 + 10 / 12, "feet"),
  20878. weight: math.unit(252, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/bruun/front.svg",
  20882. extra: 197 / 187,
  20883. bottom: 0.012
  20884. }
  20885. },
  20886. },
  20887. [
  20888. {
  20889. name: "Normal",
  20890. height: math.unit(5 + 10 / 12, "feet"),
  20891. default: true
  20892. },
  20893. ]
  20894. ))
  20895. characterMakers.push(() => makeCharacter(
  20896. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20897. {
  20898. front: {
  20899. height: math.unit(6 + 10 / 12, "feet"),
  20900. weight: math.unit(255, "lb"),
  20901. name: "Front",
  20902. image: {
  20903. source: "./media/characters/alexeev/front.svg",
  20904. extra: 213 / 200,
  20905. bottom: 0.05
  20906. }
  20907. },
  20908. },
  20909. [
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(6 + 10 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(2 + 8 / 12, "feet"),
  20922. weight: math.unit(22, "lb"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/evelyn/front.svg",
  20926. extra: 208 / 180
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(2 + 8 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(5 + 9 / 12, "feet"),
  20943. weight: math.unit(139, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/inca/front.svg",
  20947. extra: 294 / 291,
  20948. bottom: 0.03
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(5 + 9 / 12, "feet"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20962. {
  20963. front: {
  20964. height: math.unit(6 + 3 / 12, "feet"),
  20965. weight: math.unit(185, "lb"),
  20966. name: "Front",
  20967. image: {
  20968. source: "./media/characters/mera/front.svg",
  20969. extra: 291 / 277,
  20970. bottom: 0.03
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(6 + 3 / 12, "feet"),
  20978. default: true
  20979. },
  20980. ]
  20981. ))
  20982. characterMakers.push(() => makeCharacter(
  20983. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20984. {
  20985. front: {
  20986. height: math.unit(6 + 7 / 12, "feet"),
  20987. weight: math.unit(160, "lb"),
  20988. name: "Front",
  20989. image: {
  20990. source: "./media/characters/ceres/front.svg",
  20991. extra: 1023 / 950,
  20992. bottom: 0.027
  20993. }
  20994. },
  20995. back: {
  20996. height: math.unit(6 + 7 / 12, "feet"),
  20997. weight: math.unit(160, "lb"),
  20998. name: "Back",
  20999. image: {
  21000. source: "./media/characters/ceres/back.svg",
  21001. extra: 1023 / 950
  21002. }
  21003. },
  21004. },
  21005. [
  21006. {
  21007. name: "Normal",
  21008. height: math.unit(6 + 7 / 12, "feet"),
  21009. default: true
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 10 / 12, "feet"),
  21018. weight: math.unit(150, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/kris/front.svg",
  21022. extra: 885 / 803,
  21023. bottom: 0.03
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(5 + 10 / 12, "feet"),
  21031. default: true
  21032. },
  21033. ]
  21034. ))
  21035. characterMakers.push(() => makeCharacter(
  21036. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21037. {
  21038. front: {
  21039. height: math.unit(7, "feet"),
  21040. weight: math.unit(120, "kg"),
  21041. name: "Front",
  21042. image: {
  21043. source: "./media/characters/taluthus/front.svg",
  21044. extra: 903 / 833,
  21045. bottom: 0.015
  21046. }
  21047. },
  21048. },
  21049. [
  21050. {
  21051. name: "Normal",
  21052. height: math.unit(7, "feet"),
  21053. default: true
  21054. },
  21055. {
  21056. name: "Macro",
  21057. height: math.unit(300, "feet")
  21058. },
  21059. ]
  21060. ))
  21061. characterMakers.push(() => makeCharacter(
  21062. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21063. {
  21064. front: {
  21065. height: math.unit(5 + 9 / 12, "feet"),
  21066. weight: math.unit(145, "lb"),
  21067. name: "Front",
  21068. image: {
  21069. source: "./media/characters/dawn/front.svg",
  21070. extra: 2094 / 2016,
  21071. bottom: 0.025
  21072. }
  21073. },
  21074. back: {
  21075. height: math.unit(5 + 9 / 12, "feet"),
  21076. weight: math.unit(160, "lb"),
  21077. name: "Back",
  21078. image: {
  21079. source: "./media/characters/dawn/back.svg",
  21080. extra: 2112 / 2080,
  21081. bottom: 0.005
  21082. }
  21083. },
  21084. },
  21085. [
  21086. {
  21087. name: "Normal",
  21088. height: math.unit(6 + 7 / 12, "feet"),
  21089. default: true
  21090. },
  21091. ]
  21092. ))
  21093. characterMakers.push(() => makeCharacter(
  21094. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21095. {
  21096. anthro: {
  21097. height: math.unit(8 + 3 / 12, "feet"),
  21098. weight: math.unit(450, "lb"),
  21099. name: "Anthro",
  21100. image: {
  21101. source: "./media/characters/arador/anthro.svg",
  21102. extra: 1835 / 1718,
  21103. bottom: 0.025
  21104. }
  21105. },
  21106. feral: {
  21107. height: math.unit(4, "feet"),
  21108. weight: math.unit(200, "lb"),
  21109. name: "Feral",
  21110. image: {
  21111. source: "./media/characters/arador/feral.svg",
  21112. extra: 1683 / 1514,
  21113. bottom: 0.07
  21114. }
  21115. },
  21116. },
  21117. [
  21118. {
  21119. name: "Normal",
  21120. height: math.unit(8 + 3 / 12, "feet")
  21121. },
  21122. {
  21123. name: "Macro",
  21124. height: math.unit(82.5, "feet"),
  21125. default: true
  21126. },
  21127. ]
  21128. ))
  21129. characterMakers.push(() => makeCharacter(
  21130. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21131. {
  21132. front: {
  21133. height: math.unit(5 + 10 / 12, "feet"),
  21134. weight: math.unit(125, "lb"),
  21135. name: "Front",
  21136. image: {
  21137. source: "./media/characters/dharsi/front.svg",
  21138. extra: 716 / 630,
  21139. bottom: 0.035
  21140. }
  21141. },
  21142. },
  21143. [
  21144. {
  21145. name: "Nano",
  21146. height: math.unit(100, "nm")
  21147. },
  21148. {
  21149. name: "Micro",
  21150. height: math.unit(2, "inches")
  21151. },
  21152. {
  21153. name: "Normal",
  21154. height: math.unit(5 + 10 / 12, "feet"),
  21155. default: true
  21156. },
  21157. {
  21158. name: "Macro",
  21159. height: math.unit(1000, "feet")
  21160. },
  21161. {
  21162. name: "Megamacro",
  21163. height: math.unit(10, "miles")
  21164. },
  21165. {
  21166. name: "Gigamacro",
  21167. height: math.unit(3000, "miles")
  21168. },
  21169. {
  21170. name: "Teramacro",
  21171. height: math.unit(500000, "miles")
  21172. },
  21173. {
  21174. name: "Teramacro+",
  21175. height: math.unit(30, "galaxies")
  21176. },
  21177. ]
  21178. ))
  21179. characterMakers.push(() => makeCharacter(
  21180. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21181. {
  21182. front: {
  21183. height: math.unit(6, "feet"),
  21184. weight: math.unit(150, "lb"),
  21185. name: "Front",
  21186. image: {
  21187. source: "./media/characters/deathy/front.svg",
  21188. extra: 1552 / 1463,
  21189. bottom: 0.025
  21190. }
  21191. },
  21192. side: {
  21193. height: math.unit(6, "feet"),
  21194. weight: math.unit(150, "lb"),
  21195. name: "Side",
  21196. image: {
  21197. source: "./media/characters/deathy/side.svg",
  21198. extra: 1604 / 1455,
  21199. bottom: 0.025
  21200. }
  21201. },
  21202. back: {
  21203. height: math.unit(6, "feet"),
  21204. weight: math.unit(150, "lb"),
  21205. name: "Back",
  21206. image: {
  21207. source: "./media/characters/deathy/back.svg",
  21208. extra: 1580 / 1463,
  21209. bottom: 0.005
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Micro",
  21216. height: math.unit(5, "millimeters")
  21217. },
  21218. {
  21219. name: "Normal",
  21220. height: math.unit(6 + 5 / 12, "feet"),
  21221. default: true
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21227. {
  21228. front: {
  21229. height: math.unit(16, "feet"),
  21230. weight: math.unit(4000, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/juniper/front.svg",
  21234. bottom: 0.04
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(16, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(6, "feet"),
  21251. weight: math.unit(150, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/hipster/front.svg",
  21255. extra: 1312 / 1209,
  21256. bottom: 0.025
  21257. }
  21258. },
  21259. back: {
  21260. height: math.unit(6, "feet"),
  21261. weight: math.unit(150, "lb"),
  21262. name: "Back",
  21263. image: {
  21264. source: "./media/characters/hipster/back.svg",
  21265. extra: 1281 / 1196,
  21266. bottom: 0.01
  21267. }
  21268. },
  21269. },
  21270. [
  21271. {
  21272. name: "Micro",
  21273. height: math.unit(1, "mm")
  21274. },
  21275. {
  21276. name: "Normal",
  21277. height: math.unit(4, "inches"),
  21278. default: true
  21279. },
  21280. {
  21281. name: "Macro",
  21282. height: math.unit(500, "feet")
  21283. },
  21284. {
  21285. name: "Megamacro",
  21286. height: math.unit(1000, "miles")
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21292. {
  21293. front: {
  21294. height: math.unit(6, "feet"),
  21295. weight: math.unit(150, "lb"),
  21296. name: "Front",
  21297. image: {
  21298. source: "./media/characters/tendirmuldr/front.svg",
  21299. extra: 1878 / 1772,
  21300. bottom: 0.015
  21301. }
  21302. },
  21303. },
  21304. [
  21305. {
  21306. name: "Megamacro",
  21307. height: math.unit(1500, "miles"),
  21308. default: true
  21309. },
  21310. ]
  21311. ))
  21312. characterMakers.push(() => makeCharacter(
  21313. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21314. {
  21315. front: {
  21316. height: math.unit(14, "feet"),
  21317. weight: math.unit(12000, "lb"),
  21318. name: "Front",
  21319. image: {
  21320. source: "./media/characters/mort/front.svg",
  21321. extra: 365 / 318,
  21322. bottom: 0.01
  21323. }
  21324. },
  21325. side: {
  21326. height: math.unit(14, "feet"),
  21327. weight: math.unit(12000, "lb"),
  21328. name: "Side",
  21329. image: {
  21330. source: "./media/characters/mort/side.svg",
  21331. extra: 365 / 318,
  21332. bottom: 0.052
  21333. },
  21334. default: true
  21335. },
  21336. back: {
  21337. height: math.unit(14, "feet"),
  21338. weight: math.unit(12000, "lb"),
  21339. name: "Back",
  21340. image: {
  21341. source: "./media/characters/mort/back.svg",
  21342. extra: 371 / 332,
  21343. bottom: 0.18
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(14, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21357. {
  21358. front: {
  21359. height: math.unit(8, "feet"),
  21360. weight: math.unit(1, "ton"),
  21361. name: "Front",
  21362. image: {
  21363. source: "./media/characters/lycoa/front.svg",
  21364. extra: 1836/1728,
  21365. bottom: 81/1917
  21366. }
  21367. },
  21368. back: {
  21369. height: math.unit(8, "feet"),
  21370. weight: math.unit(1, "ton"),
  21371. name: "Back",
  21372. image: {
  21373. source: "./media/characters/lycoa/back.svg",
  21374. extra: 1785/1720,
  21375. bottom: 91/1876
  21376. }
  21377. },
  21378. head: {
  21379. height: math.unit(1.6243, "feet"),
  21380. name: "Head",
  21381. image: {
  21382. source: "./media/characters/lycoa/head.svg",
  21383. extra: 1011/782,
  21384. bottom: 0/1011
  21385. }
  21386. },
  21387. tailmaw: {
  21388. height: math.unit(1.9, "feet"),
  21389. name: "Tailmaw",
  21390. image: {
  21391. source: "./media/characters/lycoa/tailmaw.svg"
  21392. }
  21393. },
  21394. tentacles: {
  21395. height: math.unit(2.1, "feet"),
  21396. name: "Tentacles",
  21397. image: {
  21398. source: "./media/characters/lycoa/tentacles.svg"
  21399. }
  21400. },
  21401. dick: {
  21402. height: math.unit(1.73, "feet"),
  21403. name: "Dick",
  21404. image: {
  21405. source: "./media/characters/lycoa/dick.svg"
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(8, "feet"),
  21413. default: true
  21414. },
  21415. {
  21416. name: "Macro",
  21417. height: math.unit(30, "feet")
  21418. },
  21419. ]
  21420. ))
  21421. characterMakers.push(() => makeCharacter(
  21422. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21423. {
  21424. front: {
  21425. height: math.unit(4 + 2 / 12, "feet"),
  21426. weight: math.unit(70, "lb"),
  21427. name: "Front",
  21428. image: {
  21429. source: "./media/characters/naldara/front.svg",
  21430. extra: 1664/1387,
  21431. bottom: 81/1745
  21432. },
  21433. form: "anthro",
  21434. default: true
  21435. },
  21436. naga: {
  21437. height: math.unit(20, "feet"),
  21438. weight: math.unit(15000, "kg"),
  21439. name: "Front",
  21440. image: {
  21441. source: "./media/characters/naldara/naga.svg",
  21442. extra: 1590/1396,
  21443. bottom: 285/1875
  21444. },
  21445. form: "naga",
  21446. default: true
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(4 + 2 / 12, "feet"),
  21453. form: "anthro",
  21454. default: true
  21455. },
  21456. {
  21457. name: "Normal",
  21458. height: math.unit(20, "feet"),
  21459. form: "naga",
  21460. default: true
  21461. },
  21462. ],
  21463. {
  21464. "anthro": {
  21465. name: "Anthro",
  21466. default: true
  21467. },
  21468. "naga": {
  21469. name: "Naga"
  21470. }
  21471. }
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(13 + 7 / 12, "feet"),
  21478. weight: math.unit(1500, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/briar/front.svg",
  21482. extra: 1223/1157,
  21483. bottom: 123/1346
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(13 + 7 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21497. {
  21498. side: {
  21499. height: math.unit(16, "feet"),
  21500. weight: math.unit(500, "lb"),
  21501. name: "Side",
  21502. image: {
  21503. source: "./media/characters/vanguard/side.svg",
  21504. extra: 1022/914,
  21505. bottom: 30/1052
  21506. }
  21507. },
  21508. sideAlt: {
  21509. height: math.unit(10, "feet"),
  21510. weight: math.unit(500, "lb"),
  21511. name: "Side (Alt)",
  21512. image: {
  21513. source: "./media/characters/vanguard/side-alt.svg",
  21514. extra: 502 / 425,
  21515. bottom: 0.087
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(17.71, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(7.5, "feet"),
  21532. weight: math.unit(2, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/artemis/work-safe-front.svg",
  21536. extra: 1192 / 1075,
  21537. bottom: 0.07
  21538. },
  21539. form: "work-safe",
  21540. default: true
  21541. },
  21542. frontNsfw: {
  21543. height: math.unit(7.5, "feet"),
  21544. weight: math.unit(2, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/artemis/calibrating-front.svg",
  21548. extra: 1192 / 1075,
  21549. bottom: 0.07
  21550. },
  21551. form: "calibrating",
  21552. default: true
  21553. },
  21554. frontNsfwer: {
  21555. height: math.unit(7.5, "feet"),
  21556. weight: math.unit(2, "lb"),
  21557. name: "Front",
  21558. image: {
  21559. source: "./media/characters/artemis/oversize-load-front.svg",
  21560. extra: 1192 / 1075,
  21561. bottom: 0.07
  21562. },
  21563. form: "oversize-load",
  21564. default: true
  21565. },
  21566. side: {
  21567. height: math.unit(7.5, "feet"),
  21568. weight: math.unit(2, "lb"),
  21569. name: "Side",
  21570. image: {
  21571. source: "./media/characters/artemis/work-safe-side.svg",
  21572. extra: 1192 / 1075,
  21573. bottom: 0.07
  21574. },
  21575. form: "work-safe"
  21576. },
  21577. sideNsfw: {
  21578. height: math.unit(7.5, "feet"),
  21579. weight: math.unit(2, "lb"),
  21580. name: "Side",
  21581. image: {
  21582. source: "./media/characters/artemis/calibrating-side.svg",
  21583. extra: 1192 / 1075,
  21584. bottom: 0.07
  21585. },
  21586. form: "calibrating"
  21587. },
  21588. sideNsfwer: {
  21589. height: math.unit(7.5, "feet"),
  21590. weight: math.unit(2, "lb"),
  21591. name: "Side",
  21592. image: {
  21593. source: "./media/characters/artemis/oversize-load-side.svg",
  21594. extra: 1192 / 1075,
  21595. bottom: 0.07
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. maw: {
  21600. height: math.unit(1.1, "feet"),
  21601. name: "Maw",
  21602. image: {
  21603. source: "./media/characters/artemis/maw.svg"
  21604. },
  21605. form: "work-safe"
  21606. },
  21607. stomach: {
  21608. height: math.unit(0.95, "feet"),
  21609. name: "Stomach",
  21610. image: {
  21611. source: "./media/characters/artemis/stomach.svg"
  21612. },
  21613. form: "work-safe"
  21614. },
  21615. dickCanine: {
  21616. height: math.unit(1, "feet"),
  21617. name: "Dick (Canine)",
  21618. image: {
  21619. source: "./media/characters/artemis/dick-canine.svg"
  21620. },
  21621. form: "calibrating"
  21622. },
  21623. dickEquine: {
  21624. height: math.unit(0.85, "feet"),
  21625. name: "Dick (Equine)",
  21626. image: {
  21627. source: "./media/characters/artemis/dick-equine.svg"
  21628. },
  21629. form: "calibrating"
  21630. },
  21631. dickExotic: {
  21632. height: math.unit(0.85, "feet"),
  21633. name: "Dick (Exotic)",
  21634. image: {
  21635. source: "./media/characters/artemis/dick-exotic.svg"
  21636. },
  21637. form: "calibrating"
  21638. },
  21639. dickCanineBigger: {
  21640. height: math.unit(1 * 1.33, "feet"),
  21641. name: "Dick (Canine)",
  21642. image: {
  21643. source: "./media/characters/artemis/dick-canine.svg"
  21644. },
  21645. form: "oversize-load"
  21646. },
  21647. dickEquineBigger: {
  21648. height: math.unit(0.85 * 1.33, "feet"),
  21649. name: "Dick (Equine)",
  21650. image: {
  21651. source: "./media/characters/artemis/dick-equine.svg"
  21652. },
  21653. form: "oversize-load"
  21654. },
  21655. dickExoticBigger: {
  21656. height: math.unit(0.85 * 1.33, "feet"),
  21657. name: "Dick (Exotic)",
  21658. image: {
  21659. source: "./media/characters/artemis/dick-exotic.svg"
  21660. },
  21661. form: "oversize-load"
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(7.5, "feet"),
  21668. form: "work-safe",
  21669. default: true
  21670. },
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(7.5, "feet"),
  21674. form: "calibrating",
  21675. default: true
  21676. },
  21677. {
  21678. name: "Normal",
  21679. height: math.unit(7.5, "feet"),
  21680. form: "oversize-load",
  21681. default: true
  21682. },
  21683. {
  21684. name: "Enlarged",
  21685. height: math.unit(12, "feet"),
  21686. form: "work-safe",
  21687. },
  21688. {
  21689. name: "Enlarged",
  21690. height: math.unit(12, "feet"),
  21691. form: "calibrating",
  21692. },
  21693. {
  21694. name: "Enlarged",
  21695. height: math.unit(12, "feet"),
  21696. form: "oversize-load",
  21697. },
  21698. ],
  21699. {
  21700. "work-safe": {
  21701. name: "Work-Safe",
  21702. default: true
  21703. },
  21704. "calibrating": {
  21705. name: "Calibrating"
  21706. },
  21707. "oversize-load": {
  21708. name: "Oversize Load"
  21709. }
  21710. }
  21711. ))
  21712. characterMakers.push(() => makeCharacter(
  21713. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21714. {
  21715. front: {
  21716. height: math.unit(5 + 3 / 12, "feet"),
  21717. weight: math.unit(160, "lb"),
  21718. name: "Front",
  21719. image: {
  21720. source: "./media/characters/kira/front.svg",
  21721. extra: 906 / 786,
  21722. bottom: 0.01
  21723. }
  21724. },
  21725. back: {
  21726. height: math.unit(5 + 3 / 12, "feet"),
  21727. weight: math.unit(160, "lb"),
  21728. name: "Back",
  21729. image: {
  21730. source: "./media/characters/kira/back.svg",
  21731. extra: 882 / 757,
  21732. bottom: 0.005
  21733. }
  21734. },
  21735. frontDressed: {
  21736. height: math.unit(5 + 3 / 12, "feet"),
  21737. weight: math.unit(160, "lb"),
  21738. name: "Front (Dressed)",
  21739. image: {
  21740. source: "./media/characters/kira/front-dressed.svg",
  21741. extra: 906 / 786,
  21742. bottom: 0.01
  21743. }
  21744. },
  21745. beans: {
  21746. height: math.unit(0.92, "feet"),
  21747. name: "Beans",
  21748. image: {
  21749. source: "./media/characters/kira/beans.svg"
  21750. }
  21751. },
  21752. },
  21753. [
  21754. {
  21755. name: "Normal",
  21756. height: math.unit(5 + 3 / 12, "feet"),
  21757. default: true
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(5 + 4 / 12, "feet"),
  21766. weight: math.unit(145, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/scramble/front.svg",
  21770. extra: 763 / 727,
  21771. bottom: 0.05
  21772. }
  21773. },
  21774. back: {
  21775. height: math.unit(5 + 4 / 12, "feet"),
  21776. weight: math.unit(145, "lb"),
  21777. name: "Back",
  21778. image: {
  21779. source: "./media/characters/scramble/back.svg",
  21780. extra: 826 / 737,
  21781. bottom: 0.002
  21782. }
  21783. },
  21784. },
  21785. [
  21786. {
  21787. name: "Normal",
  21788. height: math.unit(5 + 4 / 12, "feet"),
  21789. default: true
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21795. {
  21796. side: {
  21797. height: math.unit(6 + 2 / 12, "feet"),
  21798. weight: math.unit(190, "lb"),
  21799. name: "Side",
  21800. image: {
  21801. source: "./media/characters/biscuit/side.svg",
  21802. extra: 858 / 791,
  21803. bottom: 0.044
  21804. }
  21805. },
  21806. },
  21807. [
  21808. {
  21809. name: "Normal",
  21810. height: math.unit(6 + 2 / 12, "feet"),
  21811. default: true
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(5 + 2 / 12, "feet"),
  21820. weight: math.unit(120, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/poffin/front.svg",
  21824. extra: 786 / 680,
  21825. bottom: 0.005
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(5 + 2 / 12, "feet"),
  21833. default: true
  21834. },
  21835. ]
  21836. ))
  21837. characterMakers.push(() => makeCharacter(
  21838. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21839. {
  21840. front: {
  21841. height: math.unit(6 + 3 / 12, "feet"),
  21842. weight: math.unit(519, "lb"),
  21843. name: "Front",
  21844. image: {
  21845. source: "./media/characters/dhari/front.svg",
  21846. extra: 1048 / 946,
  21847. bottom: 0.015
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(6 + 3 / 12, "feet"),
  21852. weight: math.unit(519, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/dhari/back.svg",
  21856. extra: 1048 / 931,
  21857. bottom: 0.005
  21858. }
  21859. },
  21860. frontDressed: {
  21861. height: math.unit(6 + 3 / 12, "feet"),
  21862. weight: math.unit(519, "lb"),
  21863. name: "Front (Dressed)",
  21864. image: {
  21865. source: "./media/characters/dhari/front-dressed.svg",
  21866. extra: 1713 / 1546,
  21867. bottom: 0.02
  21868. }
  21869. },
  21870. backDressed: {
  21871. height: math.unit(6 + 3 / 12, "feet"),
  21872. weight: math.unit(519, "lb"),
  21873. name: "Back (Dressed)",
  21874. image: {
  21875. source: "./media/characters/dhari/back-dressed.svg",
  21876. extra: 1699 / 1537,
  21877. bottom: 0.01
  21878. }
  21879. },
  21880. maw: {
  21881. height: math.unit(0.95, "feet"),
  21882. name: "Maw",
  21883. image: {
  21884. source: "./media/characters/dhari/maw.svg"
  21885. }
  21886. },
  21887. wereFront: {
  21888. height: math.unit(12 + 8 / 12, "feet"),
  21889. weight: math.unit(4000, "lb"),
  21890. name: "Front (Were)",
  21891. image: {
  21892. source: "./media/characters/dhari/were-front.svg",
  21893. extra: 1065 / 969,
  21894. bottom: 0.015
  21895. }
  21896. },
  21897. wereBack: {
  21898. height: math.unit(12 + 8 / 12, "feet"),
  21899. weight: math.unit(4000, "lb"),
  21900. name: "Back (Were)",
  21901. image: {
  21902. source: "./media/characters/dhari/were-back.svg",
  21903. extra: 1065 / 969,
  21904. bottom: 0.012
  21905. }
  21906. },
  21907. wereMaw: {
  21908. height: math.unit(0.625, "meters"),
  21909. name: "Maw (Were)",
  21910. image: {
  21911. source: "./media/characters/dhari/were-maw.svg"
  21912. }
  21913. },
  21914. },
  21915. [
  21916. {
  21917. name: "Normal",
  21918. height: math.unit(6 + 3 / 12, "feet"),
  21919. default: true
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21925. {
  21926. anthro: {
  21927. height: math.unit(5 + 7 / 12, "feet"),
  21928. weight: math.unit(175, "lb"),
  21929. name: "Anthro",
  21930. image: {
  21931. source: "./media/characters/rena-dyne/anthro.svg",
  21932. extra: 1849 / 1785,
  21933. bottom: 0.005
  21934. }
  21935. },
  21936. taur: {
  21937. height: math.unit(15 + 6 / 12, "feet"),
  21938. weight: math.unit(8000, "lb"),
  21939. name: "Taur",
  21940. image: {
  21941. source: "./media/characters/rena-dyne/taur.svg",
  21942. extra: 2315 / 2234,
  21943. bottom: 0.033
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 7 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(8, "feet"),
  21960. weight: math.unit(600, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/weremeep/front.svg",
  21964. extra: 970/849,
  21965. bottom: 7/977
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(8, "feet"),
  21973. default: true
  21974. },
  21975. {
  21976. name: "Lorg",
  21977. height: math.unit(12, "feet")
  21978. },
  21979. {
  21980. name: "Oh Lawd She Comin'",
  21981. height: math.unit(20, "feet")
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21987. {
  21988. front: {
  21989. height: math.unit(4, "feet"),
  21990. weight: math.unit(90, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/reza/front.svg",
  21994. extra: 1183 / 1111,
  21995. bottom: 0.017
  21996. }
  21997. },
  21998. back: {
  21999. height: math.unit(4, "feet"),
  22000. weight: math.unit(90, "lb"),
  22001. name: "Back",
  22002. image: {
  22003. source: "./media/characters/reza/back.svg",
  22004. extra: 1183 / 1111,
  22005. bottom: 0.01
  22006. }
  22007. },
  22008. drake: {
  22009. height: math.unit(30, "feet"),
  22010. weight: math.unit(246960, "lb"),
  22011. name: "Drake",
  22012. image: {
  22013. source: "./media/characters/reza/drake.svg",
  22014. extra: 2350 / 2024,
  22015. bottom: 60.7 / 2403
  22016. }
  22017. },
  22018. },
  22019. [
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(4, "feet"),
  22023. default: true
  22024. },
  22025. ]
  22026. ))
  22027. characterMakers.push(() => makeCharacter(
  22028. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22029. {
  22030. side: {
  22031. height: math.unit(15, "feet"),
  22032. weight: math.unit(14, "tons"),
  22033. name: "Side",
  22034. image: {
  22035. source: "./media/characters/athea/side.svg",
  22036. extra: 960 / 540,
  22037. bottom: 0.003
  22038. }
  22039. },
  22040. sitting: {
  22041. height: math.unit(6 * 2.85, "feet"),
  22042. weight: math.unit(14, "tons"),
  22043. name: "Sitting",
  22044. image: {
  22045. source: "./media/characters/athea/sitting.svg",
  22046. extra: 621 / 581,
  22047. bottom: 0.075
  22048. }
  22049. },
  22050. maw: {
  22051. height: math.unit(7.59498031496063, "feet"),
  22052. name: "Maw",
  22053. image: {
  22054. source: "./media/characters/athea/maw.svg"
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Lap Cat",
  22061. height: math.unit(2.5, "feet")
  22062. },
  22063. {
  22064. name: "Minimacro",
  22065. height: math.unit(15, "feet"),
  22066. default: true
  22067. },
  22068. {
  22069. name: "Macro",
  22070. height: math.unit(120, "feet")
  22071. },
  22072. {
  22073. name: "Macro+",
  22074. height: math.unit(640, "feet")
  22075. },
  22076. {
  22077. name: "Colossus",
  22078. height: math.unit(2.2, "miles")
  22079. },
  22080. ]
  22081. ))
  22082. characterMakers.push(() => makeCharacter(
  22083. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22084. {
  22085. front: {
  22086. height: math.unit(8 + 8 / 12, "feet"),
  22087. weight: math.unit(130, "kg"),
  22088. name: "Front",
  22089. image: {
  22090. source: "./media/characters/seroko/front.svg",
  22091. extra: 1385 / 1280,
  22092. bottom: 0.025
  22093. }
  22094. },
  22095. back: {
  22096. height: math.unit(8 + 8 / 12, "feet"),
  22097. weight: math.unit(130, "kg"),
  22098. name: "Back",
  22099. image: {
  22100. source: "./media/characters/seroko/back.svg",
  22101. extra: 1369 / 1238,
  22102. bottom: 0.018
  22103. }
  22104. },
  22105. frontDressed: {
  22106. height: math.unit(8 + 8 / 12, "feet"),
  22107. weight: math.unit(130, "kg"),
  22108. name: "Front (Dressed)",
  22109. image: {
  22110. source: "./media/characters/seroko/front-dressed.svg",
  22111. extra: 1366 / 1275,
  22112. bottom: 0.03
  22113. }
  22114. },
  22115. },
  22116. [
  22117. {
  22118. name: "Normal",
  22119. height: math.unit(8 + 8 / 12, "feet"),
  22120. default: true
  22121. },
  22122. ]
  22123. ))
  22124. characterMakers.push(() => makeCharacter(
  22125. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22126. {
  22127. front: {
  22128. height: math.unit(5.5, "feet"),
  22129. weight: math.unit(160, "lb"),
  22130. name: "Front",
  22131. image: {
  22132. source: "./media/characters/quatzi/front.svg",
  22133. extra: 2346 / 2242,
  22134. bottom: 0.015
  22135. }
  22136. },
  22137. },
  22138. [
  22139. {
  22140. name: "Normal",
  22141. height: math.unit(5.5, "feet"),
  22142. default: true
  22143. },
  22144. {
  22145. name: "Big",
  22146. height: math.unit(7.7, "feet")
  22147. },
  22148. ]
  22149. ))
  22150. characterMakers.push(() => makeCharacter(
  22151. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22152. {
  22153. front: {
  22154. height: math.unit(5 + 11 / 12, "feet"),
  22155. weight: math.unit(180, "lb"),
  22156. name: "Front",
  22157. image: {
  22158. source: "./media/characters/sen/front.svg",
  22159. extra: 1321 / 1254,
  22160. bottom: 0.015
  22161. }
  22162. },
  22163. side: {
  22164. height: math.unit(5 + 11 / 12, "feet"),
  22165. weight: math.unit(180, "lb"),
  22166. name: "Side",
  22167. image: {
  22168. source: "./media/characters/sen/side.svg",
  22169. extra: 1321 / 1254,
  22170. bottom: 0.007
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(5 + 11 / 12, "feet"),
  22175. weight: math.unit(180, "lb"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/sen/back.svg",
  22179. extra: 1321 / 1254
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(5 + 11 / 12, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(166.6, "cm"),
  22196. weight: math.unit(66.6, "kg"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/fruity/front.svg",
  22200. extra: 1510 / 1386,
  22201. bottom: 0.04
  22202. }
  22203. },
  22204. back: {
  22205. height: math.unit(166.6, "cm"),
  22206. weight: math.unit(66.6, "lb"),
  22207. name: "Back",
  22208. image: {
  22209. source: "./media/characters/fruity/back.svg",
  22210. extra: 1563 / 1435,
  22211. bottom: 0.005
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(166.6, "cm"),
  22219. default: true
  22220. },
  22221. {
  22222. name: "Demonic",
  22223. height: math.unit(166.6, "feet")
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22229. {
  22230. side: {
  22231. height: math.unit(10, "feet"),
  22232. weight: math.unit(500, "lb"),
  22233. name: "Side",
  22234. image: {
  22235. source: "./media/characters/zost/side.svg",
  22236. extra: 2870/2533,
  22237. bottom: 252/3122
  22238. }
  22239. },
  22240. mawFront: {
  22241. height: math.unit(1.08, "meters"),
  22242. name: "Maw (Front)",
  22243. image: {
  22244. source: "./media/characters/zost/maw-front.svg"
  22245. }
  22246. },
  22247. mawSide: {
  22248. height: math.unit(2.66, "feet"),
  22249. name: "Maw (Side)",
  22250. image: {
  22251. source: "./media/characters/zost/maw-side.svg"
  22252. }
  22253. },
  22254. wingspan: {
  22255. height: math.unit(7.4, "feet"),
  22256. name: "Wingspan",
  22257. image: {
  22258. source: "./media/characters/zost/wingspan.svg"
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Normal",
  22265. height: math.unit(10, "feet"),
  22266. default: true
  22267. },
  22268. ]
  22269. ))
  22270. characterMakers.push(() => makeCharacter(
  22271. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22272. {
  22273. front: {
  22274. height: math.unit(5 + 4 / 12, "feet"),
  22275. weight: math.unit(120, "lb"),
  22276. name: "Front",
  22277. image: {
  22278. source: "./media/characters/luci/front.svg",
  22279. extra: 1985 / 1884,
  22280. bottom: 0.04
  22281. }
  22282. },
  22283. back: {
  22284. height: math.unit(5 + 4 / 12, "feet"),
  22285. weight: math.unit(120, "lb"),
  22286. name: "Back",
  22287. image: {
  22288. source: "./media/characters/luci/back.svg",
  22289. extra: 1892 / 1791,
  22290. bottom: 0.002
  22291. }
  22292. },
  22293. },
  22294. [
  22295. {
  22296. name: "Normal",
  22297. height: math.unit(5 + 4 / 12, "feet"),
  22298. default: true
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(1500, "feet"),
  22307. weight: math.unit(3.8e6, "tons"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/2th/front.svg",
  22311. extra: 3489 / 3350,
  22312. bottom: 0.1
  22313. }
  22314. },
  22315. foot: {
  22316. height: math.unit(461, "feet"),
  22317. name: "Foot",
  22318. image: {
  22319. source: "./media/characters/2th/foot.svg"
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "\"Micro\"",
  22326. height: math.unit(15 + 7 / 12, "feet")
  22327. },
  22328. {
  22329. name: "Normal",
  22330. height: math.unit(1500, "feet"),
  22331. default: true
  22332. },
  22333. {
  22334. name: "Macro",
  22335. height: math.unit(5000, "feet")
  22336. },
  22337. {
  22338. name: "Megamacro",
  22339. height: math.unit(15, "miles")
  22340. },
  22341. {
  22342. name: "Gigamacro",
  22343. height: math.unit(4000, "miles")
  22344. },
  22345. {
  22346. name: "Galactic",
  22347. height: math.unit(50, "AU")
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22353. {
  22354. front: {
  22355. height: math.unit(5 + 6 / 12, "feet"),
  22356. weight: math.unit(220, "lb"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/amethyst/front.svg",
  22360. extra: 2078 / 2040,
  22361. bottom: 0.045
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(5 + 6 / 12, "feet"),
  22366. weight: math.unit(220, "lb"),
  22367. name: "Back",
  22368. image: {
  22369. source: "./media/characters/amethyst/back.svg",
  22370. extra: 2021 / 1989,
  22371. bottom: 0.02
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(5 + 6 / 12, "feet"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(4 + 11 / 12, "feet"),
  22388. weight: math.unit(120, "lb"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/yumi-akiyama/front.svg",
  22392. extra: 1327 / 1235,
  22393. bottom: 0.02
  22394. }
  22395. },
  22396. back: {
  22397. height: math.unit(4 + 11 / 12, "feet"),
  22398. weight: math.unit(120, "lb"),
  22399. name: "Back",
  22400. image: {
  22401. source: "./media/characters/yumi-akiyama/back.svg",
  22402. extra: 1287 / 1245,
  22403. bottom: 0.002
  22404. }
  22405. },
  22406. },
  22407. [
  22408. {
  22409. name: "Galactic",
  22410. height: math.unit(50, "galaxies"),
  22411. default: true
  22412. },
  22413. {
  22414. name: "Universal",
  22415. height: math.unit(100, "universes")
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(8, "feet"),
  22424. weight: math.unit(500, "lb"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/rifter-yrmori/front.svg",
  22428. extra: 1180 / 1125,
  22429. bottom: 0.02
  22430. }
  22431. },
  22432. back: {
  22433. height: math.unit(8, "feet"),
  22434. weight: math.unit(500, "lb"),
  22435. name: "Back",
  22436. image: {
  22437. source: "./media/characters/rifter-yrmori/back.svg",
  22438. extra: 1190 / 1145,
  22439. bottom: 0.001
  22440. }
  22441. },
  22442. wings: {
  22443. height: math.unit(7.75, "feet"),
  22444. weight: math.unit(500, "lb"),
  22445. name: "Wings",
  22446. image: {
  22447. source: "./media/characters/rifter-yrmori/wings.svg",
  22448. extra: 1357 / 1285
  22449. }
  22450. },
  22451. maw: {
  22452. height: math.unit(0.8, "feet"),
  22453. name: "Maw",
  22454. image: {
  22455. source: "./media/characters/rifter-yrmori/maw.svg"
  22456. }
  22457. },
  22458. mawfront: {
  22459. height: math.unit(1.45, "feet"),
  22460. name: "Maw (Front)",
  22461. image: {
  22462. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22463. }
  22464. },
  22465. },
  22466. [
  22467. {
  22468. name: "Normal",
  22469. height: math.unit(8, "feet"),
  22470. default: true
  22471. },
  22472. {
  22473. name: "Macro",
  22474. height: math.unit(42, "meters")
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22480. {
  22481. were: {
  22482. height: math.unit(25 + 6 / 12, "feet"),
  22483. weight: math.unit(10000, "lb"),
  22484. name: "Were",
  22485. image: {
  22486. source: "./media/characters/tahajin/were.svg",
  22487. extra: 801 / 770,
  22488. bottom: 0.042
  22489. }
  22490. },
  22491. aquatic: {
  22492. height: math.unit(6 + 4 / 12, "feet"),
  22493. weight: math.unit(160, "lb"),
  22494. name: "Aquatic",
  22495. image: {
  22496. source: "./media/characters/tahajin/aquatic.svg",
  22497. extra: 572 / 542,
  22498. bottom: 0.04
  22499. }
  22500. },
  22501. chow: {
  22502. height: math.unit(8 + 11 / 12, "feet"),
  22503. weight: math.unit(450, "lb"),
  22504. name: "Chow",
  22505. image: {
  22506. source: "./media/characters/tahajin/chow.svg",
  22507. extra: 660 / 640,
  22508. bottom: 0.015
  22509. }
  22510. },
  22511. demiNaga: {
  22512. height: math.unit(6 + 8 / 12, "feet"),
  22513. weight: math.unit(300, "lb"),
  22514. name: "Demi Naga",
  22515. image: {
  22516. source: "./media/characters/tahajin/demi-naga.svg",
  22517. extra: 643 / 615,
  22518. bottom: 0.1
  22519. }
  22520. },
  22521. data: {
  22522. height: math.unit(5, "inches"),
  22523. weight: math.unit(0.1, "lb"),
  22524. name: "Data",
  22525. image: {
  22526. source: "./media/characters/tahajin/data.svg"
  22527. }
  22528. },
  22529. fluu: {
  22530. height: math.unit(5 + 7 / 12, "feet"),
  22531. weight: math.unit(140, "lb"),
  22532. name: "Fluu",
  22533. image: {
  22534. source: "./media/characters/tahajin/fluu.svg",
  22535. extra: 628 / 592,
  22536. bottom: 0.02
  22537. }
  22538. },
  22539. starWarrior: {
  22540. height: math.unit(4 + 5 / 12, "feet"),
  22541. weight: math.unit(50, "lb"),
  22542. name: "Star Warrior",
  22543. image: {
  22544. source: "./media/characters/tahajin/star-warrior.svg"
  22545. }
  22546. },
  22547. },
  22548. [
  22549. {
  22550. name: "Normal",
  22551. height: math.unit(25 + 6 / 12, "feet"),
  22552. default: true
  22553. },
  22554. ]
  22555. ))
  22556. characterMakers.push(() => makeCharacter(
  22557. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22558. {
  22559. front: {
  22560. height: math.unit(8, "feet"),
  22561. weight: math.unit(350, "lb"),
  22562. name: "Front",
  22563. image: {
  22564. source: "./media/characters/gabira/front.svg",
  22565. extra: 1261/1154,
  22566. bottom: 51/1312
  22567. }
  22568. },
  22569. back: {
  22570. height: math.unit(8, "feet"),
  22571. weight: math.unit(350, "lb"),
  22572. name: "Back",
  22573. image: {
  22574. source: "./media/characters/gabira/back.svg",
  22575. extra: 1265/1163,
  22576. bottom: 46/1311
  22577. }
  22578. },
  22579. head: {
  22580. height: math.unit(2.85, "feet"),
  22581. name: "Head",
  22582. image: {
  22583. source: "./media/characters/gabira/head.svg"
  22584. }
  22585. },
  22586. },
  22587. [
  22588. {
  22589. name: "Normal",
  22590. height: math.unit(8, "feet"),
  22591. default: true
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(5 + 3 / 12, "feet"),
  22600. weight: math.unit(137, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/sasha-katraine/front.svg",
  22604. extra: 1745/1694,
  22605. bottom: 37/1782
  22606. }
  22607. },
  22608. back: {
  22609. height: math.unit(5 + 3 / 12, "feet"),
  22610. weight: math.unit(137, "lb"),
  22611. name: "Back",
  22612. image: {
  22613. source: "./media/characters/sasha-katraine/back.svg",
  22614. extra: 1776/1699,
  22615. bottom: 26/1802
  22616. }
  22617. },
  22618. },
  22619. [
  22620. {
  22621. name: "Micro",
  22622. height: math.unit(5, "inches")
  22623. },
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(5 + 3 / 12, "feet"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22633. {
  22634. side: {
  22635. height: math.unit(4, "inches"),
  22636. weight: math.unit(200, "grams"),
  22637. name: "Side",
  22638. image: {
  22639. source: "./media/characters/der/side.svg",
  22640. extra: 719 / 400,
  22641. bottom: 30.6 / 749.9187
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Micro",
  22648. height: math.unit(4, "inches"),
  22649. default: true
  22650. },
  22651. ]
  22652. ))
  22653. characterMakers.push(() => makeCharacter(
  22654. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22655. {
  22656. side: {
  22657. height: math.unit(30, "meters"),
  22658. weight: math.unit(700, "tonnes"),
  22659. name: "Side",
  22660. image: {
  22661. source: "./media/characters/fixerdragon/side.svg",
  22662. extra: (1293.0514 - 116.03) / 1106.86,
  22663. bottom: 116.03 / 1293.0514
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Planck",
  22670. height: math.unit(1.6e-35, "meters")
  22671. },
  22672. {
  22673. name: "Micro",
  22674. height: math.unit(0.4, "meters")
  22675. },
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(30, "meters"),
  22679. default: true
  22680. },
  22681. {
  22682. name: "Megamacro",
  22683. height: math.unit(1.2, "megameters")
  22684. },
  22685. {
  22686. name: "Teramacro",
  22687. height: math.unit(130, "terameters")
  22688. },
  22689. {
  22690. name: "Yottamacro",
  22691. height: math.unit(6200, "yottameters")
  22692. },
  22693. ]
  22694. ));
  22695. characterMakers.push(() => makeCharacter(
  22696. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22697. {
  22698. front: {
  22699. height: math.unit(8, "feet"),
  22700. weight: math.unit(250, "lb"),
  22701. name: "Front",
  22702. image: {
  22703. source: "./media/characters/kite/front.svg",
  22704. extra: 2796 / 2659,
  22705. bottom: 0.002
  22706. }
  22707. },
  22708. },
  22709. [
  22710. {
  22711. name: "Normal",
  22712. height: math.unit(8, "feet"),
  22713. default: true
  22714. },
  22715. {
  22716. name: "Macro",
  22717. height: math.unit(360, "feet")
  22718. },
  22719. {
  22720. name: "Megamacro",
  22721. height: math.unit(1500, "feet")
  22722. },
  22723. ]
  22724. ))
  22725. characterMakers.push(() => makeCharacter(
  22726. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22727. {
  22728. front: {
  22729. height: math.unit(5 + 11/12, "feet"),
  22730. weight: math.unit(170, "lb"),
  22731. name: "Front",
  22732. image: {
  22733. source: "./media/characters/poojawa-vynar/front.svg",
  22734. extra: 1735/1585,
  22735. bottom: 96/1831
  22736. }
  22737. },
  22738. back: {
  22739. height: math.unit(5 + 11/12, "feet"),
  22740. weight: math.unit(170, "lb"),
  22741. name: "Back",
  22742. image: {
  22743. source: "./media/characters/poojawa-vynar/back.svg",
  22744. extra: 1749/1607,
  22745. bottom: 28/1777
  22746. }
  22747. },
  22748. male: {
  22749. height: math.unit(5 + 11/12, "feet"),
  22750. weight: math.unit(170, "lb"),
  22751. name: "Male",
  22752. image: {
  22753. source: "./media/characters/poojawa-vynar/male.svg",
  22754. extra: 1855/1713,
  22755. bottom: 63/1918
  22756. }
  22757. },
  22758. taur: {
  22759. height: math.unit(5 + 11/12, "feet"),
  22760. weight: math.unit(170, "lb"),
  22761. name: "Taur",
  22762. image: {
  22763. source: "./media/characters/poojawa-vynar/taur.svg",
  22764. extra: 1151/1059,
  22765. bottom: 356/1507
  22766. }
  22767. },
  22768. frontDressed: {
  22769. height: math.unit(5 + 11/12, "feet"),
  22770. weight: math.unit(170, "lb"),
  22771. name: "Front (Dressed)",
  22772. image: {
  22773. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22774. extra: 1735/1585,
  22775. bottom: 96/1831
  22776. }
  22777. },
  22778. backDressed: {
  22779. height: math.unit(5 + 11/12, "feet"),
  22780. weight: math.unit(170, "lb"),
  22781. name: "Back (Dressed)",
  22782. image: {
  22783. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22784. extra: 1749/1607,
  22785. bottom: 28/1777
  22786. }
  22787. },
  22788. maleDressed: {
  22789. height: math.unit(5 + 11/12, "feet"),
  22790. weight: math.unit(170, "lb"),
  22791. name: "Male (Dressed)",
  22792. image: {
  22793. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22794. extra: 1855/1713,
  22795. bottom: 63/1918
  22796. }
  22797. },
  22798. taurDressed: {
  22799. height: math.unit(5 + 11/12, "feet"),
  22800. weight: math.unit(170, "lb"),
  22801. name: "Taur (Dressed)",
  22802. image: {
  22803. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22804. extra: 1151/1059,
  22805. bottom: 356/1507
  22806. }
  22807. },
  22808. maw: {
  22809. height: math.unit(1.46, "feet"),
  22810. name: "Maw",
  22811. image: {
  22812. source: "./media/characters/poojawa-vynar/maw.svg"
  22813. }
  22814. },
  22815. head: {
  22816. height: math.unit(2.34, "feet"),
  22817. name: "Head",
  22818. image: {
  22819. source: "./media/characters/poojawa-vynar/head.svg"
  22820. }
  22821. },
  22822. paw: {
  22823. height: math.unit(1.61, "feet"),
  22824. name: "Paw",
  22825. image: {
  22826. source: "./media/characters/poojawa-vynar/paw.svg"
  22827. }
  22828. },
  22829. pawToering: {
  22830. height: math.unit(1.72, "feet"),
  22831. name: "Paw (Toering)",
  22832. image: {
  22833. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22834. }
  22835. },
  22836. toering: {
  22837. height: math.unit(2.9, "inches"),
  22838. name: "Toering",
  22839. image: {
  22840. source: "./media/characters/poojawa-vynar/toering.svg"
  22841. }
  22842. },
  22843. shaft: {
  22844. height: math.unit(0.625, "feet"),
  22845. name: "Shaft",
  22846. image: {
  22847. source: "./media/characters/poojawa-vynar/shaft.svg"
  22848. }
  22849. },
  22850. spade: {
  22851. height: math.unit(0.42, "feet"),
  22852. name: "Spade",
  22853. image: {
  22854. source: "./media/characters/poojawa-vynar/spade.svg"
  22855. }
  22856. },
  22857. },
  22858. [
  22859. {
  22860. name: "Shortstack",
  22861. height: math.unit(4, "feet")
  22862. },
  22863. {
  22864. name: "Normal",
  22865. height: math.unit(5 + 11 / 12, "feet"),
  22866. default: true
  22867. },
  22868. {
  22869. name: "Tauric",
  22870. height: math.unit(4, "meters")
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(293, "meters"),
  22879. weight: math.unit(70400, "tons"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/violette/front.svg",
  22883. extra: 1227 / 1180,
  22884. bottom: 0.005
  22885. }
  22886. },
  22887. back: {
  22888. height: math.unit(293, "meters"),
  22889. weight: math.unit(70400, "tons"),
  22890. name: "Back",
  22891. image: {
  22892. source: "./media/characters/violette/back.svg",
  22893. extra: 1227 / 1180,
  22894. bottom: 0.005
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Macro",
  22901. height: math.unit(293, "meters"),
  22902. default: true
  22903. },
  22904. ]
  22905. ))
  22906. characterMakers.push(() => makeCharacter(
  22907. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22908. {
  22909. front: {
  22910. height: math.unit(1050, "feet"),
  22911. weight: math.unit(200000, "tons"),
  22912. name: "Front",
  22913. image: {
  22914. source: "./media/characters/alessandra/front.svg",
  22915. extra: 960 / 912,
  22916. bottom: 0.06
  22917. }
  22918. },
  22919. },
  22920. [
  22921. {
  22922. name: "Macro",
  22923. height: math.unit(1050, "feet")
  22924. },
  22925. {
  22926. name: "Macro+",
  22927. height: math.unit(900, "meters"),
  22928. default: true
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22934. {
  22935. front: {
  22936. height: math.unit(5, "feet"),
  22937. weight: math.unit(187, "lb"),
  22938. name: "Front",
  22939. image: {
  22940. source: "./media/characters/person/front.svg",
  22941. extra: 3087 / 2945,
  22942. bottom: 91 / 3181
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Micro",
  22949. height: math.unit(3, "inches")
  22950. },
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(5, "feet"),
  22954. default: true
  22955. },
  22956. {
  22957. name: "Macro",
  22958. height: math.unit(90, "feet")
  22959. },
  22960. {
  22961. name: "Max Size",
  22962. height: math.unit(280, "feet")
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22968. {
  22969. front: {
  22970. height: math.unit(4.5, "meters"),
  22971. weight: math.unit(3200, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/ty/front.svg",
  22975. extra: 1038 / 960,
  22976. bottom: 31.156 / 1068
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(4.5, "meters"),
  22981. weight: math.unit(3200, "lb"),
  22982. name: "Back",
  22983. image: {
  22984. source: "./media/characters/ty/back.svg",
  22985. extra: 1044 / 966,
  22986. bottom: 7.48 / 1049
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(4.5, "meters"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(5 + 4 / 12, "feet"),
  23003. weight: math.unit(115, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/rocky/front.svg",
  23007. extra: 1012 / 975,
  23008. bottom: 54 / 1066
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(5 + 4 / 12, "feet"),
  23016. default: true
  23017. },
  23018. ]
  23019. ))
  23020. characterMakers.push(() => makeCharacter(
  23021. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23022. {
  23023. upright: {
  23024. height: math.unit(6, "meters"),
  23025. weight: math.unit(4000, "kg"),
  23026. name: "Upright",
  23027. image: {
  23028. source: "./media/characters/ruin/upright.svg",
  23029. extra: 668 / 661,
  23030. bottom: 42 / 799.8396
  23031. }
  23032. },
  23033. },
  23034. [
  23035. {
  23036. name: "Normal",
  23037. height: math.unit(6, "meters"),
  23038. default: true
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23044. {
  23045. front: {
  23046. height: math.unit(5, "feet"),
  23047. weight: math.unit(106, "lb"),
  23048. name: "Front",
  23049. image: {
  23050. source: "./media/characters/robin/front.svg",
  23051. extra: 862 / 799,
  23052. bottom: 42.4 / 914.8856
  23053. }
  23054. },
  23055. },
  23056. [
  23057. {
  23058. name: "Normal",
  23059. height: math.unit(5, "feet"),
  23060. default: true
  23061. },
  23062. ]
  23063. ))
  23064. characterMakers.push(() => makeCharacter(
  23065. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23066. {
  23067. side: {
  23068. height: math.unit(3, "feet"),
  23069. weight: math.unit(225, "lb"),
  23070. name: "Side",
  23071. image: {
  23072. source: "./media/characters/saian/side.svg",
  23073. extra: 566 / 356,
  23074. bottom: 79.7 / 643
  23075. }
  23076. },
  23077. maw: {
  23078. height: math.unit(2.85, "feet"),
  23079. name: "Maw",
  23080. image: {
  23081. source: "./media/characters/saian/maw.svg"
  23082. }
  23083. },
  23084. },
  23085. [
  23086. {
  23087. name: "Normal",
  23088. height: math.unit(3, "feet"),
  23089. default: true
  23090. },
  23091. ]
  23092. ))
  23093. characterMakers.push(() => makeCharacter(
  23094. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23095. {
  23096. side: {
  23097. height: math.unit(8, "feet"),
  23098. weight: math.unit(300, "lb"),
  23099. name: "Side",
  23100. image: {
  23101. source: "./media/characters/equus-silvermane/side.svg",
  23102. extra: 2176 / 2050,
  23103. bottom: 65.7 / 2245
  23104. }
  23105. },
  23106. front: {
  23107. height: math.unit(8, "feet"),
  23108. weight: math.unit(300, "lb"),
  23109. name: "Front",
  23110. image: {
  23111. source: "./media/characters/equus-silvermane/front.svg",
  23112. extra: 4633 / 4400,
  23113. bottom: 71.3 / 4706.915
  23114. }
  23115. },
  23116. sideStepping: {
  23117. height: math.unit(8, "feet"),
  23118. weight: math.unit(300, "lb"),
  23119. name: "Side (Stepping)",
  23120. image: {
  23121. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23122. extra: 1968 / 1860,
  23123. bottom: 16.4 / 1989
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(8, "feet")
  23131. },
  23132. {
  23133. name: "Minimacro",
  23134. height: math.unit(75, "feet"),
  23135. default: true
  23136. },
  23137. {
  23138. name: "Macro",
  23139. height: math.unit(150, "feet")
  23140. },
  23141. {
  23142. name: "Macro+",
  23143. height: math.unit(1000, "feet")
  23144. },
  23145. {
  23146. name: "Megamacro",
  23147. height: math.unit(1, "mile")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23153. {
  23154. side: {
  23155. height: math.unit(20, "feet"),
  23156. weight: math.unit(30000, "kg"),
  23157. name: "Side",
  23158. image: {
  23159. source: "./media/characters/windar/side.svg",
  23160. extra: 1491 / 1248,
  23161. bottom: 82.56 / 1568
  23162. }
  23163. },
  23164. },
  23165. [
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(20, "feet"),
  23169. default: true
  23170. },
  23171. ]
  23172. ))
  23173. characterMakers.push(() => makeCharacter(
  23174. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23175. {
  23176. side: {
  23177. height: math.unit(15.66, "feet"),
  23178. weight: math.unit(150, "lb"),
  23179. name: "Side",
  23180. image: {
  23181. source: "./media/characters/melody/side.svg",
  23182. extra: 1097 / 944,
  23183. bottom: 11.8 / 1109
  23184. }
  23185. },
  23186. sideOutfit: {
  23187. height: math.unit(15.66, "feet"),
  23188. weight: math.unit(150, "lb"),
  23189. name: "Side (Outfit)",
  23190. image: {
  23191. source: "./media/characters/melody/side-outfit.svg",
  23192. extra: 1097 / 944,
  23193. bottom: 11.8 / 1109
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(15.66, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23207. {
  23208. armoredFront: {
  23209. height: math.unit(8, "feet"),
  23210. weight: math.unit(325, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/windera/armored-front.svg",
  23214. extra: 1830/1598,
  23215. bottom: 151/1981
  23216. },
  23217. form: "armored",
  23218. default: true
  23219. },
  23220. macroFront: {
  23221. height: math.unit(70, "feet"),
  23222. weight: math.unit(315453, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/windera/macro-front.svg",
  23226. extra: 963/883,
  23227. bottom: 23/986
  23228. },
  23229. form: "macro",
  23230. default: true
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(8, "feet"),
  23237. default: true,
  23238. form: "armored"
  23239. },
  23240. {
  23241. name: "Normal",
  23242. height: math.unit(70, "feet"),
  23243. default: true,
  23244. form: "macro"
  23245. },
  23246. ],
  23247. {
  23248. "armored": {
  23249. name: "Armored",
  23250. default: true
  23251. },
  23252. "macro": {
  23253. name: "Macro",
  23254. },
  23255. }
  23256. ))
  23257. characterMakers.push(() => makeCharacter(
  23258. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23259. {
  23260. front: {
  23261. height: math.unit(28.75, "feet"),
  23262. weight: math.unit(2000, "kg"),
  23263. name: "Front",
  23264. image: {
  23265. source: "./media/characters/sonear/front.svg",
  23266. extra: 1041.1 / 964.9,
  23267. bottom: 53.7 / 1096.6
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(28.75, "feet"),
  23275. default: true
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23281. {
  23282. side: {
  23283. height: math.unit(25.5, "feet"),
  23284. weight: math.unit(23000, "kg"),
  23285. name: "Side",
  23286. image: {
  23287. source: "./media/characters/kanara/side.svg"
  23288. }
  23289. },
  23290. },
  23291. [
  23292. {
  23293. name: "Normal",
  23294. height: math.unit(25.5, "feet"),
  23295. default: true
  23296. },
  23297. ]
  23298. ))
  23299. characterMakers.push(() => makeCharacter(
  23300. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23301. {
  23302. side: {
  23303. height: math.unit(10, "feet"),
  23304. weight: math.unit(1000, "kg"),
  23305. name: "Side",
  23306. image: {
  23307. source: "./media/characters/ereus/side.svg",
  23308. extra: 1157 / 959,
  23309. bottom: 153 / 1312.5
  23310. }
  23311. },
  23312. },
  23313. [
  23314. {
  23315. name: "Normal",
  23316. height: math.unit(10, "feet"),
  23317. default: true
  23318. },
  23319. ]
  23320. ))
  23321. characterMakers.push(() => makeCharacter(
  23322. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23323. {
  23324. side: {
  23325. height: math.unit(4.5, "feet"),
  23326. weight: math.unit(500, "lb"),
  23327. name: "Side",
  23328. image: {
  23329. source: "./media/characters/e-ter/side.svg",
  23330. extra: 1550 / 1248,
  23331. bottom: 146 / 1694
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Normal",
  23338. height: math.unit(4.5, "feet"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23345. {
  23346. side: {
  23347. height: math.unit(9.7, "feet"),
  23348. weight: math.unit(4000, "kg"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/yamie/side.svg"
  23352. }
  23353. },
  23354. },
  23355. [
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(9.7, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23365. {
  23366. front: {
  23367. height: math.unit(50, "feet"),
  23368. weight: math.unit(50000, "kg"),
  23369. name: "Front",
  23370. image: {
  23371. source: "./media/characters/anders/front.svg",
  23372. extra: 570 / 539,
  23373. bottom: 14.7 / 586.7
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Large",
  23380. height: math.unit(50, "feet")
  23381. },
  23382. {
  23383. name: "Macro",
  23384. height: math.unit(2000, "feet"),
  23385. default: true
  23386. },
  23387. {
  23388. name: "Megamacro",
  23389. height: math.unit(12, "miles")
  23390. },
  23391. ]
  23392. ))
  23393. characterMakers.push(() => makeCharacter(
  23394. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23395. {
  23396. front: {
  23397. height: math.unit(7 + 2 / 12, "feet"),
  23398. weight: math.unit(300, "lb"),
  23399. name: "Front",
  23400. image: {
  23401. source: "./media/characters/reban/front.svg",
  23402. extra: 1287/1212,
  23403. bottom: 148/1435
  23404. }
  23405. },
  23406. head: {
  23407. height: math.unit(1.95, "feet"),
  23408. name: "Head",
  23409. image: {
  23410. source: "./media/characters/reban/head.svg"
  23411. }
  23412. },
  23413. maw: {
  23414. height: math.unit(0.95, "feet"),
  23415. name: "Maw",
  23416. image: {
  23417. source: "./media/characters/reban/maw.svg"
  23418. }
  23419. },
  23420. foot: {
  23421. height: math.unit(1.65, "feet"),
  23422. name: "Foot",
  23423. image: {
  23424. source: "./media/characters/reban/foot.svg"
  23425. }
  23426. },
  23427. dick: {
  23428. height: math.unit(7 / 5, "feet"),
  23429. name: "Dick",
  23430. image: {
  23431. source: "./media/characters/reban/dick.svg"
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Natural Height",
  23438. height: math.unit(7 + 2 / 12, "feet")
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(500, "feet"),
  23443. default: true
  23444. },
  23445. {
  23446. name: "Canon Height",
  23447. height: math.unit(50, "AU")
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(6, "feet"),
  23456. weight: math.unit(150, "lb"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/terrance-keayes/front.svg",
  23460. extra: 1.005,
  23461. bottom: 151 / 1615
  23462. }
  23463. },
  23464. side: {
  23465. height: math.unit(6, "feet"),
  23466. weight: math.unit(150, "lb"),
  23467. name: "Side",
  23468. image: {
  23469. source: "./media/characters/terrance-keayes/side.svg",
  23470. extra: 1.005,
  23471. bottom: 129.4 / 1544
  23472. }
  23473. },
  23474. back: {
  23475. height: math.unit(6, "feet"),
  23476. weight: math.unit(150, "lb"),
  23477. name: "Back",
  23478. image: {
  23479. source: "./media/characters/terrance-keayes/back.svg",
  23480. extra: 1.005,
  23481. bottom: 58.4 / 1557.3
  23482. }
  23483. },
  23484. dick: {
  23485. height: math.unit(6 * 0.208, "feet"),
  23486. name: "Dick",
  23487. image: {
  23488. source: "./media/characters/terrance-keayes/dick.svg"
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Canon Height",
  23495. height: math.unit(35, "miles"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(6, "feet"),
  23505. weight: math.unit(150, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/ofelia/front.svg",
  23509. extra: 1130/1117,
  23510. bottom: 91/1221
  23511. }
  23512. },
  23513. back: {
  23514. height: math.unit(6, "feet"),
  23515. weight: math.unit(150, "lb"),
  23516. name: "Back",
  23517. image: {
  23518. source: "./media/characters/ofelia/back.svg",
  23519. extra: 1172/1159,
  23520. bottom: 28/1200
  23521. }
  23522. },
  23523. maw: {
  23524. height: math.unit(1, "feet"),
  23525. name: "Maw",
  23526. image: {
  23527. source: "./media/characters/ofelia/maw.svg"
  23528. }
  23529. },
  23530. foot: {
  23531. height: math.unit(1.949, "feet"),
  23532. name: "Foot",
  23533. image: {
  23534. source: "./media/characters/ofelia/foot.svg"
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Canon Height",
  23541. height: math.unit(2000, "miles"),
  23542. default: true
  23543. },
  23544. ]
  23545. ))
  23546. characterMakers.push(() => makeCharacter(
  23547. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23548. {
  23549. front: {
  23550. height: math.unit(6, "feet"),
  23551. weight: math.unit(150, "lb"),
  23552. name: "Front",
  23553. image: {
  23554. source: "./media/characters/samuel/front.svg",
  23555. extra: 265 / 258,
  23556. bottom: 2 / 266.1566
  23557. }
  23558. },
  23559. },
  23560. [
  23561. {
  23562. name: "Macro",
  23563. height: math.unit(100, "feet"),
  23564. default: true
  23565. },
  23566. {
  23567. name: "Full Size",
  23568. height: math.unit(1000, "miles")
  23569. },
  23570. ]
  23571. ))
  23572. characterMakers.push(() => makeCharacter(
  23573. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23574. {
  23575. front: {
  23576. height: math.unit(6, "feet"),
  23577. weight: math.unit(300, "lb"),
  23578. name: "Front",
  23579. image: {
  23580. source: "./media/characters/beishir-kiel/front.svg",
  23581. extra: 569 / 547,
  23582. bottom: 41.9 / 609
  23583. }
  23584. },
  23585. maw: {
  23586. height: math.unit(6 * 0.202, "feet"),
  23587. name: "Maw",
  23588. image: {
  23589. source: "./media/characters/beishir-kiel/maw.svg"
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Macro",
  23596. height: math.unit(300, "feet"),
  23597. default: true
  23598. },
  23599. ]
  23600. ))
  23601. characterMakers.push(() => makeCharacter(
  23602. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23603. {
  23604. front: {
  23605. height: math.unit(5 + 7/12, "feet"),
  23606. weight: math.unit(120, "lb"),
  23607. name: "Front",
  23608. image: {
  23609. source: "./media/characters/logan-grey/front.svg",
  23610. extra: 1836/1738,
  23611. bottom: 108/1944
  23612. }
  23613. },
  23614. back: {
  23615. height: math.unit(5 + 7/12, "feet"),
  23616. weight: math.unit(120, "lb"),
  23617. name: "Back",
  23618. image: {
  23619. source: "./media/characters/logan-grey/back.svg",
  23620. extra: 1880/1794,
  23621. bottom: 24/1904
  23622. }
  23623. },
  23624. frontSfw: {
  23625. height: math.unit(5 + 7/12, "feet"),
  23626. weight: math.unit(120, "lb"),
  23627. name: "Front (SFW)",
  23628. image: {
  23629. source: "./media/characters/logan-grey/front-sfw.svg",
  23630. extra: 1836/1738,
  23631. bottom: 108/1944
  23632. }
  23633. },
  23634. backSfw: {
  23635. height: math.unit(5 + 7/12, "feet"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Back (SFW)",
  23638. image: {
  23639. source: "./media/characters/logan-grey/back-sfw.svg",
  23640. extra: 1880/1794,
  23641. bottom: 24/1904
  23642. }
  23643. },
  23644. hands: {
  23645. height: math.unit(0.84, "feet"),
  23646. name: "Hands",
  23647. image: {
  23648. source: "./media/characters/logan-grey/hands.svg"
  23649. }
  23650. },
  23651. paws: {
  23652. height: math.unit(0.72, "feet"),
  23653. name: "Paws",
  23654. image: {
  23655. source: "./media/characters/logan-grey/paws.svg"
  23656. }
  23657. },
  23658. cock: {
  23659. height: math.unit(1.45, "feet"),
  23660. name: "Cock",
  23661. image: {
  23662. source: "./media/characters/logan-grey/cock.svg"
  23663. }
  23664. },
  23665. cockAlt: {
  23666. height: math.unit(1.437, "feet"),
  23667. name: "Cock (alt)",
  23668. image: {
  23669. source: "./media/characters/logan-grey/cock-alt.svg"
  23670. }
  23671. },
  23672. },
  23673. [
  23674. {
  23675. name: "Normal",
  23676. height: math.unit(5 + 8 / 12, "feet")
  23677. },
  23678. {
  23679. name: "The 500 Foot Femboy",
  23680. height: math.unit(500, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Megmacro",
  23685. height: math.unit(20, "miles")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(8 + 2 / 12, "feet"),
  23694. weight: math.unit(275, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/draganta/front.svg",
  23698. extra: 1177 / 1135,
  23699. bottom: 33.46 / 1212.1
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(8 + 6 / 12, "feet"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Macro",
  23711. height: math.unit(150, "feet")
  23712. },
  23713. {
  23714. name: "Megamacro",
  23715. height: math.unit(1000, "miles")
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(1.72, "m"),
  23724. weight: math.unit(80, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/voski/front.svg",
  23728. extra: 2076.22 / 2022.4,
  23729. bottom: 102.7 / 2177.3866
  23730. }
  23731. },
  23732. frontFlaccid: {
  23733. height: math.unit(1.72, "m"),
  23734. weight: math.unit(80, "lb"),
  23735. name: "Front (Flaccid)",
  23736. image: {
  23737. source: "./media/characters/voski/front-flaccid.svg",
  23738. extra: 2076.22 / 2022.4,
  23739. bottom: 102.7 / 2177.3866
  23740. }
  23741. },
  23742. frontErect: {
  23743. height: math.unit(1.72, "m"),
  23744. weight: math.unit(80, "lb"),
  23745. name: "Front (Erect)",
  23746. image: {
  23747. source: "./media/characters/voski/front-erect.svg",
  23748. extra: 2076.22 / 2022.4,
  23749. bottom: 102.7 / 2177.3866
  23750. }
  23751. },
  23752. back: {
  23753. height: math.unit(1.72, "m"),
  23754. weight: math.unit(80, "lb"),
  23755. name: "Back",
  23756. image: {
  23757. source: "./media/characters/voski/back.svg",
  23758. extra: 2104 / 2051,
  23759. bottom: 10.45 / 2113.63
  23760. }
  23761. },
  23762. },
  23763. [
  23764. {
  23765. name: "Normal",
  23766. height: math.unit(1.72, "m")
  23767. },
  23768. {
  23769. name: "Macro",
  23770. height: math.unit(55, "m"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Macro+",
  23775. height: math.unit(300, "m")
  23776. },
  23777. {
  23778. name: "Macro++",
  23779. height: math.unit(700, "m")
  23780. },
  23781. {
  23782. name: "Macro+++",
  23783. height: math.unit(4500, "m")
  23784. },
  23785. {
  23786. name: "Macro++++",
  23787. height: math.unit(45, "km")
  23788. },
  23789. {
  23790. name: "Macro+++++",
  23791. height: math.unit(1220, "km")
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(2.3, "m"),
  23800. weight: math.unit(304, "kg"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/icowom-lee/front.svg",
  23804. extra: 985 / 955,
  23805. bottom: 25.4 / 1012
  23806. }
  23807. },
  23808. fronttentacles: {
  23809. height: math.unit(2.3, "m"),
  23810. weight: math.unit(304, "kg"),
  23811. name: "Front-tentacles",
  23812. image: {
  23813. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23814. extra: 985 / 955,
  23815. bottom: 25.4 / 1012
  23816. }
  23817. },
  23818. back: {
  23819. height: math.unit(2.3, "m"),
  23820. weight: math.unit(304, "kg"),
  23821. name: "Back",
  23822. image: {
  23823. source: "./media/characters/icowom-lee/back.svg",
  23824. extra: 975 / 954,
  23825. bottom: 9.5 / 985
  23826. }
  23827. },
  23828. backtentacles: {
  23829. height: math.unit(2.3, "m"),
  23830. weight: math.unit(304, "kg"),
  23831. name: "Back-tentacles",
  23832. image: {
  23833. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23834. extra: 975 / 954,
  23835. bottom: 9.5 / 985
  23836. }
  23837. },
  23838. frontDressed: {
  23839. height: math.unit(2.3, "m"),
  23840. weight: math.unit(304, "kg"),
  23841. name: "Front (Dressed)",
  23842. image: {
  23843. source: "./media/characters/icowom-lee/front-dressed.svg",
  23844. extra: 3076 / 2933,
  23845. bottom: 51.4 / 3125.1889
  23846. }
  23847. },
  23848. rump: {
  23849. height: math.unit(0.776, "meters"),
  23850. name: "Rump",
  23851. image: {
  23852. source: "./media/characters/icowom-lee/rump.svg"
  23853. }
  23854. },
  23855. genitals: {
  23856. height: math.unit(0.78, "meters"),
  23857. name: "Genitals",
  23858. image: {
  23859. source: "./media/characters/icowom-lee/genitals.svg"
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Normal",
  23866. height: math.unit(2.3, "meters"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(94, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(22, "meters"),
  23881. weight: math.unit(21000, "kg"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/shock-diamond/front.svg",
  23885. extra: 2204 / 2053,
  23886. bottom: 65 / 2239.47
  23887. }
  23888. },
  23889. frontNude: {
  23890. height: math.unit(22, "meters"),
  23891. weight: math.unit(21000, "kg"),
  23892. name: "Front (Nude)",
  23893. image: {
  23894. source: "./media/characters/shock-diamond/front-nude.svg",
  23895. extra: 2514 / 2285,
  23896. bottom: 13 / 2527.56
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Normal",
  23903. height: math.unit(3, "meters")
  23904. },
  23905. {
  23906. name: "Macro",
  23907. height: math.unit(22, "meters"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(5 + 4/12, "feet"),
  23917. weight: math.unit(125, "lb"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/rory/front.svg",
  23921. extra: 1790/1681,
  23922. bottom: 66/1856
  23923. }
  23924. },
  23925. back: {
  23926. height: math.unit(5 + 4/12, "feet"),
  23927. weight: math.unit(125, "lb"),
  23928. name: "Back",
  23929. image: {
  23930. source: "./media/characters/rory/back.svg",
  23931. extra: 1805/1690,
  23932. bottom: 56/1861
  23933. }
  23934. },
  23935. frontDressed: {
  23936. height: math.unit(5 + 4/12, "feet"),
  23937. weight: math.unit(125, "lb"),
  23938. name: "Front (Dressed)",
  23939. image: {
  23940. source: "./media/characters/rory/front-dressed.svg",
  23941. extra: 1790/1681,
  23942. bottom: 66/1856
  23943. }
  23944. },
  23945. backDressed: {
  23946. height: math.unit(5 + 4/12, "feet"),
  23947. weight: math.unit(125, "lb"),
  23948. name: "Back (Dressed)",
  23949. image: {
  23950. source: "./media/characters/rory/back-dressed.svg",
  23951. extra: 1805/1690,
  23952. bottom: 56/1861
  23953. }
  23954. },
  23955. frontNsfw: {
  23956. height: math.unit(5 + 4/12, "feet"),
  23957. weight: math.unit(125, "lb"),
  23958. name: "Front (NSFW)",
  23959. image: {
  23960. source: "./media/characters/rory/front-nsfw.svg",
  23961. extra: 1790/1681,
  23962. bottom: 66/1856
  23963. }
  23964. },
  23965. backNsfw: {
  23966. height: math.unit(5 + 4/12, "feet"),
  23967. weight: math.unit(125, "lb"),
  23968. name: "Back (NSFW)",
  23969. image: {
  23970. source: "./media/characters/rory/back-nsfw.svg",
  23971. extra: 1805/1690,
  23972. bottom: 56/1861
  23973. }
  23974. },
  23975. dick: {
  23976. height: math.unit(0.8, "feet"),
  23977. name: "Dick",
  23978. image: {
  23979. source: "./media/characters/rory/dick.svg"
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Micro",
  23986. height: math.unit(3, "inches")
  23987. },
  23988. {
  23989. name: "Normal",
  23990. height: math.unit(5 + 4/12, "feet"),
  23991. default: true
  23992. },
  23993. {
  23994. name: "Macro",
  23995. height: math.unit(90, "feet")
  23996. },
  23997. {
  23998. name: "Supercharged",
  23999. height: math.unit(270, "feet")
  24000. },
  24001. ]
  24002. ))
  24003. characterMakers.push(() => makeCharacter(
  24004. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24005. {
  24006. front: {
  24007. height: math.unit(5 + 9 / 12, "feet"),
  24008. weight: math.unit(190, "lb"),
  24009. name: "Front",
  24010. image: {
  24011. source: "./media/characters/sprisk/front.svg",
  24012. extra: 1225 / 1180,
  24013. bottom: 42.7 / 1266.4
  24014. }
  24015. },
  24016. frontNsfw: {
  24017. height: math.unit(5 + 9 / 12, "feet"),
  24018. weight: math.unit(190, "lb"),
  24019. name: "Front (NSFW)",
  24020. image: {
  24021. source: "./media/characters/sprisk/front-nsfw.svg",
  24022. extra: 1225 / 1180,
  24023. bottom: 42.7 / 1266.4
  24024. }
  24025. },
  24026. back: {
  24027. height: math.unit(5 + 9 / 12, "feet"),
  24028. weight: math.unit(190, "lb"),
  24029. name: "Back",
  24030. image: {
  24031. source: "./media/characters/sprisk/back.svg",
  24032. extra: 1247 / 1200,
  24033. bottom: 5.6 / 1253.04
  24034. }
  24035. },
  24036. },
  24037. [
  24038. {
  24039. name: "Tiny",
  24040. height: math.unit(2, "inches")
  24041. },
  24042. {
  24043. name: "Normal",
  24044. height: math.unit(5 + 9 / 12, "feet"),
  24045. default: true
  24046. },
  24047. {
  24048. name: "Mini Macro",
  24049. height: math.unit(18, "feet")
  24050. },
  24051. {
  24052. name: "Macro",
  24053. height: math.unit(100, "feet")
  24054. },
  24055. {
  24056. name: "MACRO",
  24057. height: math.unit(50, "miles")
  24058. },
  24059. {
  24060. name: "M A C R O",
  24061. height: math.unit(300, "miles")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24067. {
  24068. side: {
  24069. height: math.unit(15.6, "meters"),
  24070. weight: math.unit(700000, "kg"),
  24071. name: "Side",
  24072. image: {
  24073. source: "./media/characters/bunsen/side.svg",
  24074. extra: 1644 / 358
  24075. }
  24076. },
  24077. foot: {
  24078. height: math.unit(1.611 * 1644 / 358, "meter"),
  24079. name: "Foot",
  24080. image: {
  24081. source: "./media/characters/bunsen/foot.svg"
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Small",
  24088. height: math.unit(10, "feet")
  24089. },
  24090. {
  24091. name: "Normal",
  24092. height: math.unit(15.6, "meters"),
  24093. default: true
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(4 + 11 / 12, "feet"),
  24102. weight: math.unit(140, "lb"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/sesh/front.svg",
  24106. extra: 3420 / 3231,
  24107. bottom: 72 / 3949.5
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Normal",
  24114. height: math.unit(4 + 11 / 12, "feet")
  24115. },
  24116. {
  24117. name: "Grown",
  24118. height: math.unit(15, "feet"),
  24119. default: true
  24120. },
  24121. {
  24122. name: "Macro",
  24123. height: math.unit(1500, "feet")
  24124. },
  24125. {
  24126. name: "Megamacro",
  24127. height: math.unit(30, "miles")
  24128. },
  24129. {
  24130. name: "Continental",
  24131. height: math.unit(3000, "miles")
  24132. },
  24133. {
  24134. name: "Gravity Mass",
  24135. height: math.unit(300000, "miles")
  24136. },
  24137. {
  24138. name: "Planet Buster",
  24139. height: math.unit(30000000, "miles")
  24140. },
  24141. {
  24142. name: "Big",
  24143. height: math.unit(3000000000, "miles")
  24144. },
  24145. ]
  24146. ))
  24147. characterMakers.push(() => makeCharacter(
  24148. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24149. {
  24150. front: {
  24151. height: math.unit(9, "feet"),
  24152. weight: math.unit(350, "lb"),
  24153. name: "Front",
  24154. image: {
  24155. source: "./media/characters/pepper/front.svg",
  24156. extra: 1448 / 1312,
  24157. bottom: 9.4 / 1457.88
  24158. }
  24159. },
  24160. back: {
  24161. height: math.unit(9, "feet"),
  24162. weight: math.unit(350, "lb"),
  24163. name: "Back",
  24164. image: {
  24165. source: "./media/characters/pepper/back.svg",
  24166. extra: 1423 / 1300,
  24167. bottom: 4.6 / 1429
  24168. }
  24169. },
  24170. maw: {
  24171. height: math.unit(0.932, "feet"),
  24172. name: "Maw",
  24173. image: {
  24174. source: "./media/characters/pepper/maw.svg"
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(9, "feet"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24188. {
  24189. front: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(150, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/maelstrom/front.svg",
  24195. extra: 2100 / 1883,
  24196. bottom: 94 / 2196.7
  24197. }
  24198. },
  24199. },
  24200. [
  24201. {
  24202. name: "Less Kaiju",
  24203. height: math.unit(200, "feet")
  24204. },
  24205. {
  24206. name: "Kaiju",
  24207. height: math.unit(400, "feet"),
  24208. default: true
  24209. },
  24210. {
  24211. name: "Kaiju-er",
  24212. height: math.unit(600, "feet")
  24213. },
  24214. ]
  24215. ))
  24216. characterMakers.push(() => makeCharacter(
  24217. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24218. {
  24219. front: {
  24220. height: math.unit(6 + 5 / 12, "feet"),
  24221. weight: math.unit(180, "lb"),
  24222. name: "Front",
  24223. image: {
  24224. source: "./media/characters/lexir/front.svg",
  24225. extra: 180 / 172,
  24226. bottom: 12 / 192
  24227. }
  24228. },
  24229. back: {
  24230. height: math.unit(6 + 5 / 12, "feet"),
  24231. weight: math.unit(180, "lb"),
  24232. name: "Back",
  24233. image: {
  24234. source: "./media/characters/lexir/back.svg",
  24235. extra: 1273/1201,
  24236. bottom: 39/1312
  24237. }
  24238. },
  24239. },
  24240. [
  24241. {
  24242. name: "Very Smal",
  24243. height: math.unit(1, "nm")
  24244. },
  24245. {
  24246. name: "Normal",
  24247. height: math.unit(6 + 5 / 12, "feet"),
  24248. default: true
  24249. },
  24250. {
  24251. name: "Macro",
  24252. height: math.unit(1, "mile")
  24253. },
  24254. {
  24255. name: "Megamacro",
  24256. height: math.unit(50, "miles")
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(1.5, "meters"),
  24265. weight: math.unit(100, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/maksio/front.svg",
  24269. extra: 1549 / 1531,
  24270. bottom: 123.7 / 1674.5429
  24271. }
  24272. },
  24273. back: {
  24274. height: math.unit(1.5, "meters"),
  24275. weight: math.unit(100, "lb"),
  24276. name: "Back",
  24277. image: {
  24278. source: "./media/characters/maksio/back.svg",
  24279. extra: 1541 / 1509,
  24280. bottom: 97 / 1639
  24281. }
  24282. },
  24283. hand: {
  24284. height: math.unit(0.621, "feet"),
  24285. name: "Hand",
  24286. image: {
  24287. source: "./media/characters/maksio/hand.svg"
  24288. }
  24289. },
  24290. foot: {
  24291. height: math.unit(1.611, "feet"),
  24292. name: "Foot",
  24293. image: {
  24294. source: "./media/characters/maksio/foot.svg"
  24295. }
  24296. },
  24297. },
  24298. [
  24299. {
  24300. name: "Shrunken",
  24301. height: math.unit(10, "cm")
  24302. },
  24303. {
  24304. name: "Normal",
  24305. height: math.unit(150, "cm"),
  24306. default: true
  24307. },
  24308. ]
  24309. ))
  24310. characterMakers.push(() => makeCharacter(
  24311. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24312. {
  24313. front: {
  24314. height: math.unit(100, "feet"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/erza-bear/front.svg",
  24318. extra: 2449 / 2390,
  24319. bottom: 46 / 2494
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(100, "feet"),
  24324. name: "Back",
  24325. image: {
  24326. source: "./media/characters/erza-bear/back.svg",
  24327. extra: 2489 / 2430,
  24328. bottom: 85.4 / 2480
  24329. }
  24330. },
  24331. tail: {
  24332. height: math.unit(42, "feet"),
  24333. name: "Tail",
  24334. image: {
  24335. source: "./media/characters/erza-bear/tail.svg"
  24336. }
  24337. },
  24338. tongue: {
  24339. height: math.unit(8, "feet"),
  24340. name: "Tongue",
  24341. image: {
  24342. source: "./media/characters/erza-bear/tongue.svg"
  24343. }
  24344. },
  24345. dick: {
  24346. height: math.unit(10.5, "feet"),
  24347. name: "Dick",
  24348. image: {
  24349. source: "./media/characters/erza-bear/dick.svg"
  24350. }
  24351. },
  24352. dickVertical: {
  24353. height: math.unit(16.9, "feet"),
  24354. name: "Dick (Vertical)",
  24355. image: {
  24356. source: "./media/characters/erza-bear/dick-vertical.svg"
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Macro",
  24363. height: math.unit(100, "feet"),
  24364. default: true
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24370. {
  24371. front: {
  24372. height: math.unit(172, "cm"),
  24373. weight: math.unit(73, "kg"),
  24374. name: "Front",
  24375. image: {
  24376. source: "./media/characters/violet-flor/front.svg",
  24377. extra: 1530 / 1442,
  24378. bottom: 61.9 / 1588.8
  24379. }
  24380. },
  24381. back: {
  24382. height: math.unit(180, "cm"),
  24383. weight: math.unit(73, "kg"),
  24384. name: "Back",
  24385. image: {
  24386. source: "./media/characters/violet-flor/back.svg",
  24387. extra: 1692 / 1630,
  24388. bottom: 20 / 1712
  24389. }
  24390. },
  24391. },
  24392. [
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(172, "cm"),
  24396. default: true
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(6, "feet"),
  24405. weight: math.unit(220, "lb"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/lynn-rhea/front.svg",
  24409. extra: 310 / 273
  24410. }
  24411. },
  24412. back: {
  24413. height: math.unit(6, "feet"),
  24414. weight: math.unit(220, "lb"),
  24415. name: "Back",
  24416. image: {
  24417. source: "./media/characters/lynn-rhea/back.svg",
  24418. extra: 310 / 273
  24419. }
  24420. },
  24421. dicks: {
  24422. height: math.unit(0.9, "feet"),
  24423. name: "Dicks",
  24424. image: {
  24425. source: "./media/characters/lynn-rhea/dicks.svg"
  24426. }
  24427. },
  24428. slit: {
  24429. height: math.unit(0.4, "feet"),
  24430. name: "Slit",
  24431. image: {
  24432. source: "./media/characters/lynn-rhea/slit.svg"
  24433. }
  24434. },
  24435. },
  24436. [
  24437. {
  24438. name: "Micro",
  24439. height: math.unit(1, "inch")
  24440. },
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(60, "feet"),
  24444. default: true
  24445. },
  24446. {
  24447. name: "Megamacro",
  24448. height: math.unit(2, "miles")
  24449. },
  24450. {
  24451. name: "Gigamacro",
  24452. height: math.unit(3, "earths")
  24453. },
  24454. {
  24455. name: "Galactic",
  24456. height: math.unit(0.8, "galaxies")
  24457. },
  24458. ]
  24459. ))
  24460. characterMakers.push(() => makeCharacter(
  24461. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24462. {
  24463. front: {
  24464. height: math.unit(1600, "feet"),
  24465. weight: math.unit(85758785169, "kg"),
  24466. name: "Front",
  24467. image: {
  24468. source: "./media/characters/valathos/front.svg",
  24469. extra: 1451 / 1339
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(1600, "feet"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(7 + 5 / 12, "feet"),
  24486. weight: math.unit(300, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/azula/front.svg",
  24490. extra: 3208 / 2880,
  24491. bottom: 80.2 / 3277
  24492. }
  24493. },
  24494. back: {
  24495. height: math.unit(7 + 5 / 12, "feet"),
  24496. weight: math.unit(300, "lb"),
  24497. name: "Back",
  24498. image: {
  24499. source: "./media/characters/azula/back.svg",
  24500. extra: 3169 / 2822,
  24501. bottom: 150.6 / 3321
  24502. }
  24503. },
  24504. },
  24505. [
  24506. {
  24507. name: "Normal",
  24508. height: math.unit(7 + 5 / 12, "feet"),
  24509. default: true
  24510. },
  24511. {
  24512. name: "Big",
  24513. height: math.unit(20, "feet")
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(5 + 1 / 12, "feet"),
  24522. weight: math.unit(110, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/rupert/front.svg",
  24526. extra: 1549 / 1495,
  24527. bottom: 54.2 / 1604.4
  24528. }
  24529. },
  24530. },
  24531. [
  24532. {
  24533. name: "Normal",
  24534. height: math.unit(5 + 1 / 12, "feet"),
  24535. default: true
  24536. },
  24537. ]
  24538. ))
  24539. characterMakers.push(() => makeCharacter(
  24540. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24541. {
  24542. front: {
  24543. height: math.unit(8 + 4 / 12, "feet"),
  24544. weight: math.unit(350, "lb"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/sheera-castellar/front.svg",
  24548. extra: 1957 / 1894,
  24549. bottom: 26.97 / 1975.017
  24550. }
  24551. },
  24552. side: {
  24553. height: math.unit(8 + 4 / 12, "feet"),
  24554. weight: math.unit(350, "lb"),
  24555. name: "Side",
  24556. image: {
  24557. source: "./media/characters/sheera-castellar/side.svg",
  24558. extra: 1957 / 1894
  24559. }
  24560. },
  24561. back: {
  24562. height: math.unit(8 + 4 / 12, "feet"),
  24563. weight: math.unit(350, "lb"),
  24564. name: "Back",
  24565. image: {
  24566. source: "./media/characters/sheera-castellar/back.svg",
  24567. extra: 1957 / 1894
  24568. }
  24569. },
  24570. angled: {
  24571. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24572. weight: math.unit(350, "lb"),
  24573. name: "Angled",
  24574. image: {
  24575. source: "./media/characters/sheera-castellar/angled.svg",
  24576. extra: 1807 / 1707,
  24577. bottom: 68 / 1875
  24578. }
  24579. },
  24580. genitals: {
  24581. height: math.unit(2.2, "feet"),
  24582. name: "Genitals",
  24583. image: {
  24584. source: "./media/characters/sheera-castellar/genitals.svg"
  24585. }
  24586. },
  24587. taur: {
  24588. height: math.unit(10 + 6/12, "feet"),
  24589. name: "Taur",
  24590. image: {
  24591. source: "./media/characters/sheera-castellar/taur.svg",
  24592. extra: 2017/1909,
  24593. bottom: 185/2202
  24594. }
  24595. },
  24596. },
  24597. [
  24598. {
  24599. name: "Normal",
  24600. height: math.unit(8 + 4 / 12, "feet")
  24601. },
  24602. {
  24603. name: "Macro",
  24604. height: math.unit(150, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Macro+",
  24609. height: math.unit(800, "feet")
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(6, "feet"),
  24618. weight: math.unit(150, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/jaipur/front.svg",
  24622. extra: 3860 / 3731,
  24623. bottom: 287 / 4140
  24624. }
  24625. },
  24626. back: {
  24627. height: math.unit(6, "feet"),
  24628. weight: math.unit(150, "lb"),
  24629. name: "Back",
  24630. image: {
  24631. source: "./media/characters/jaipur/back.svg",
  24632. extra: 1637/1561,
  24633. bottom: 154/1791
  24634. }
  24635. },
  24636. },
  24637. [
  24638. {
  24639. name: "Normal",
  24640. height: math.unit(1.85, "meters"),
  24641. default: true
  24642. },
  24643. {
  24644. name: "Macro",
  24645. height: math.unit(150, "meters")
  24646. },
  24647. {
  24648. name: "Macro+",
  24649. height: math.unit(0.5, "miles")
  24650. },
  24651. {
  24652. name: "Macro++",
  24653. height: math.unit(2.5, "miles")
  24654. },
  24655. {
  24656. name: "Macro+++",
  24657. height: math.unit(12, "miles")
  24658. },
  24659. {
  24660. name: "Macro++++",
  24661. height: math.unit(120, "miles")
  24662. },
  24663. {
  24664. name: "Macro+++++",
  24665. height: math.unit(1200, "miles")
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(6, "feet"),
  24674. weight: math.unit(150, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/sheila-wolf/front.svg",
  24678. extra: 1931 / 1808,
  24679. bottom: 29.5 / 1960
  24680. }
  24681. },
  24682. dick: {
  24683. height: math.unit(1.464, "feet"),
  24684. name: "Dick",
  24685. image: {
  24686. source: "./media/characters/sheila-wolf/dick.svg"
  24687. }
  24688. },
  24689. muzzle: {
  24690. height: math.unit(0.513, "feet"),
  24691. name: "Muzzle",
  24692. image: {
  24693. source: "./media/characters/sheila-wolf/muzzle.svg"
  24694. }
  24695. },
  24696. },
  24697. [
  24698. {
  24699. name: "Macro",
  24700. height: math.unit(70, "feet"),
  24701. default: true
  24702. },
  24703. ]
  24704. ))
  24705. characterMakers.push(() => makeCharacter(
  24706. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24707. {
  24708. front: {
  24709. height: math.unit(32, "meters"),
  24710. weight: math.unit(300000, "kg"),
  24711. name: "Front",
  24712. image: {
  24713. source: "./media/characters/almor/front.svg",
  24714. extra: 1408 / 1322,
  24715. bottom: 94.6 / 1506.5
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Macro",
  24722. height: math.unit(32, "meters"),
  24723. default: true
  24724. },
  24725. ]
  24726. ))
  24727. characterMakers.push(() => makeCharacter(
  24728. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24729. {
  24730. front: {
  24731. height: math.unit(7, "feet"),
  24732. weight: math.unit(200, "lb"),
  24733. name: "Front",
  24734. image: {
  24735. source: "./media/characters/silver/front.svg",
  24736. extra: 472.1 / 450.5,
  24737. bottom: 26.5 / 499.424
  24738. }
  24739. },
  24740. },
  24741. [
  24742. {
  24743. name: "Normal",
  24744. height: math.unit(7, "feet"),
  24745. default: true
  24746. },
  24747. {
  24748. name: "Macro",
  24749. height: math.unit(800, "feet")
  24750. },
  24751. {
  24752. name: "Megamacro",
  24753. height: math.unit(250, "miles")
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24759. {
  24760. front: {
  24761. height: math.unit(6, "feet"),
  24762. weight: math.unit(150, "lb"),
  24763. name: "Front",
  24764. image: {
  24765. source: "./media/characters/pliskin/front.svg",
  24766. extra: 1469 / 1359,
  24767. bottom: 70 / 1540
  24768. }
  24769. },
  24770. },
  24771. [
  24772. {
  24773. name: "Micro",
  24774. height: math.unit(3, "inches")
  24775. },
  24776. {
  24777. name: "Normal",
  24778. height: math.unit(5 + 11 / 12, "feet"),
  24779. default: true
  24780. },
  24781. {
  24782. name: "Macro",
  24783. height: math.unit(120, "feet")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24789. {
  24790. front: {
  24791. height: math.unit(6, "feet"),
  24792. weight: math.unit(150, "lb"),
  24793. name: "Front",
  24794. image: {
  24795. source: "./media/characters/sammy/front.svg",
  24796. extra: 1193 / 1089,
  24797. bottom: 30.5 / 1226
  24798. }
  24799. },
  24800. },
  24801. [
  24802. {
  24803. name: "Macro",
  24804. height: math.unit(1700, "feet"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Examacro",
  24809. height: math.unit(2.5e9, "lightyears")
  24810. },
  24811. ]
  24812. ))
  24813. characterMakers.push(() => makeCharacter(
  24814. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24815. {
  24816. front: {
  24817. height: math.unit(21, "meters"),
  24818. weight: math.unit(12, "tonnes"),
  24819. name: "Front",
  24820. image: {
  24821. source: "./media/characters/kuru/front.svg",
  24822. extra: 4301 / 3785,
  24823. bottom: 371.3 / 4691
  24824. }
  24825. },
  24826. },
  24827. [
  24828. {
  24829. name: "Macro",
  24830. height: math.unit(21, "meters"),
  24831. default: true
  24832. },
  24833. ]
  24834. ))
  24835. characterMakers.push(() => makeCharacter(
  24836. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24837. {
  24838. front: {
  24839. height: math.unit(23, "meters"),
  24840. weight: math.unit(12.2, "tonnes"),
  24841. name: "Front",
  24842. image: {
  24843. source: "./media/characters/rakka/front.svg",
  24844. extra: 4670 / 4169,
  24845. bottom: 301 / 4968.7
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Macro",
  24852. height: math.unit(23, "meters"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(6, "feet"),
  24862. weight: math.unit(150, "lb"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/rhys-feline/front.svg",
  24866. extra: 2488 / 2308,
  24867. bottom: 35.67 / 2519.19
  24868. }
  24869. },
  24870. },
  24871. [
  24872. {
  24873. name: "Really Small",
  24874. height: math.unit(1, "nm")
  24875. },
  24876. {
  24877. name: "Micro",
  24878. height: math.unit(4, "inches")
  24879. },
  24880. {
  24881. name: "Normal",
  24882. height: math.unit(4 + 10 / 12, "feet"),
  24883. default: true
  24884. },
  24885. {
  24886. name: "Macro",
  24887. height: math.unit(100, "feet")
  24888. },
  24889. {
  24890. name: "Megamacto",
  24891. height: math.unit(50, "miles")
  24892. },
  24893. ]
  24894. ))
  24895. characterMakers.push(() => makeCharacter(
  24896. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24897. {
  24898. side: {
  24899. height: math.unit(30, "feet"),
  24900. weight: math.unit(35000, "kg"),
  24901. name: "Side",
  24902. image: {
  24903. source: "./media/characters/alydar/side.svg",
  24904. extra: 234 / 222,
  24905. bottom: 6.5 / 241
  24906. }
  24907. },
  24908. front: {
  24909. height: math.unit(30, "feet"),
  24910. weight: math.unit(35000, "kg"),
  24911. name: "Front",
  24912. image: {
  24913. source: "./media/characters/alydar/front.svg",
  24914. extra: 223.37 / 210.2,
  24915. bottom: 22.3 / 246.76
  24916. }
  24917. },
  24918. top: {
  24919. height: math.unit(64.54, "feet"),
  24920. weight: math.unit(35000, "kg"),
  24921. name: "Top",
  24922. image: {
  24923. source: "./media/characters/alydar/top.svg"
  24924. }
  24925. },
  24926. anthro: {
  24927. height: math.unit(30, "feet"),
  24928. weight: math.unit(9000, "kg"),
  24929. name: "Anthro",
  24930. image: {
  24931. source: "./media/characters/alydar/anthro.svg",
  24932. extra: 432 / 421,
  24933. bottom: 7.18 / 440
  24934. }
  24935. },
  24936. maw: {
  24937. height: math.unit(11.693, "feet"),
  24938. name: "Maw",
  24939. image: {
  24940. source: "./media/characters/alydar/maw.svg"
  24941. }
  24942. },
  24943. head: {
  24944. height: math.unit(11.693, "feet"),
  24945. name: "Head",
  24946. image: {
  24947. source: "./media/characters/alydar/head.svg"
  24948. }
  24949. },
  24950. headAlt: {
  24951. height: math.unit(12.861, "feet"),
  24952. name: "Head (Alt)",
  24953. image: {
  24954. source: "./media/characters/alydar/head-alt.svg"
  24955. }
  24956. },
  24957. wing: {
  24958. height: math.unit(20.712, "feet"),
  24959. name: "Wing",
  24960. image: {
  24961. source: "./media/characters/alydar/wing.svg"
  24962. }
  24963. },
  24964. wingFeather: {
  24965. height: math.unit(9.662, "feet"),
  24966. name: "Wing Feather",
  24967. image: {
  24968. source: "./media/characters/alydar/wing-feather.svg"
  24969. }
  24970. },
  24971. countourFeather: {
  24972. height: math.unit(4.154, "feet"),
  24973. name: "Contour Feather",
  24974. image: {
  24975. source: "./media/characters/alydar/contour-feather.svg"
  24976. }
  24977. },
  24978. },
  24979. [
  24980. {
  24981. name: "Diplomatic",
  24982. height: math.unit(13, "feet"),
  24983. default: true
  24984. },
  24985. {
  24986. name: "Small",
  24987. height: math.unit(30, "feet")
  24988. },
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(95, "feet"),
  24992. default: true
  24993. },
  24994. {
  24995. name: "Large",
  24996. height: math.unit(285, "feet")
  24997. },
  24998. {
  24999. name: "Incomprehensible",
  25000. height: math.unit(450, "megameters")
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25006. {
  25007. side: {
  25008. height: math.unit(11, "feet"),
  25009. weight: math.unit(1750, "kg"),
  25010. name: "Side",
  25011. image: {
  25012. source: "./media/characters/selicia/side.svg",
  25013. extra: 440 / 396,
  25014. bottom: 24.8 / 465.979
  25015. }
  25016. },
  25017. maw: {
  25018. height: math.unit(4.665, "feet"),
  25019. name: "Maw",
  25020. image: {
  25021. source: "./media/characters/selicia/maw.svg"
  25022. }
  25023. },
  25024. },
  25025. [
  25026. {
  25027. name: "Normal",
  25028. height: math.unit(11, "feet"),
  25029. default: true
  25030. },
  25031. ]
  25032. ))
  25033. characterMakers.push(() => makeCharacter(
  25034. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25035. {
  25036. side: {
  25037. height: math.unit(2 + 6 / 12, "feet"),
  25038. weight: math.unit(30, "lb"),
  25039. name: "Side",
  25040. image: {
  25041. source: "./media/characters/layla/side.svg",
  25042. extra: 244 / 188,
  25043. bottom: 18.2 / 262.1
  25044. }
  25045. },
  25046. back: {
  25047. height: math.unit(2 + 6 / 12, "feet"),
  25048. weight: math.unit(30, "lb"),
  25049. name: "Back",
  25050. image: {
  25051. source: "./media/characters/layla/back.svg",
  25052. extra: 308 / 241.5,
  25053. bottom: 8.9 / 316.8
  25054. }
  25055. },
  25056. cumming: {
  25057. height: math.unit(2 + 6 / 12, "feet"),
  25058. weight: math.unit(30, "lb"),
  25059. name: "Cumming",
  25060. image: {
  25061. source: "./media/characters/layla/cumming.svg",
  25062. extra: 342 / 279,
  25063. bottom: 595 / 938
  25064. }
  25065. },
  25066. dickFlaccid: {
  25067. height: math.unit(2.595, "feet"),
  25068. name: "Flaccid Genitals",
  25069. image: {
  25070. source: "./media/characters/layla/dick-flaccid.svg"
  25071. }
  25072. },
  25073. dickErect: {
  25074. height: math.unit(2.359, "feet"),
  25075. name: "Erect Genitals",
  25076. image: {
  25077. source: "./media/characters/layla/dick-erect.svg"
  25078. }
  25079. },
  25080. dragon: {
  25081. height: math.unit(40, "feet"),
  25082. name: "Dragon",
  25083. image: {
  25084. source: "./media/characters/layla/dragon.svg",
  25085. extra: 610/535,
  25086. bottom: 367/977
  25087. }
  25088. },
  25089. taur: {
  25090. height: math.unit(30, "feet"),
  25091. name: "Taur",
  25092. image: {
  25093. source: "./media/characters/layla/taur.svg",
  25094. extra: 1268/1199,
  25095. bottom: 112/1380
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Micro",
  25102. height: math.unit(1, "inch")
  25103. },
  25104. {
  25105. name: "Small",
  25106. height: math.unit(1, "foot")
  25107. },
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(2 + 6 / 12, "feet"),
  25111. default: true
  25112. },
  25113. {
  25114. name: "Macro",
  25115. height: math.unit(200, "feet")
  25116. },
  25117. {
  25118. name: "Megamacro",
  25119. height: math.unit(1000, "miles")
  25120. },
  25121. {
  25122. name: "Planetary",
  25123. height: math.unit(8000, "miles")
  25124. },
  25125. {
  25126. name: "True Layla",
  25127. height: math.unit(200000 * 7, "multiverses")
  25128. },
  25129. ]
  25130. ))
  25131. characterMakers.push(() => makeCharacter(
  25132. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25133. {
  25134. back: {
  25135. height: math.unit(10.5, "feet"),
  25136. weight: math.unit(800, "lb"),
  25137. name: "Back",
  25138. image: {
  25139. source: "./media/characters/knox/back.svg",
  25140. extra: 1486 / 1089,
  25141. bottom: 107 / 1601.4
  25142. }
  25143. },
  25144. side: {
  25145. height: math.unit(10.5, "feet"),
  25146. weight: math.unit(800, "lb"),
  25147. name: "Side",
  25148. image: {
  25149. source: "./media/characters/knox/side.svg",
  25150. extra: 244 / 218,
  25151. bottom: 14 / 260
  25152. }
  25153. },
  25154. },
  25155. [
  25156. {
  25157. name: "Compact",
  25158. height: math.unit(10.5, "feet"),
  25159. default: true
  25160. },
  25161. {
  25162. name: "Dynamax",
  25163. height: math.unit(210, "feet")
  25164. },
  25165. {
  25166. name: "Full Macro",
  25167. height: math.unit(850, "feet")
  25168. },
  25169. ]
  25170. ))
  25171. characterMakers.push(() => makeCharacter(
  25172. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25173. {
  25174. front: {
  25175. height: math.unit(28, "feet"),
  25176. weight: math.unit(10500, "lb"),
  25177. name: "Front",
  25178. image: {
  25179. source: "./media/characters/kayda/front.svg",
  25180. extra: 1536 / 1428,
  25181. bottom: 68.7 / 1603
  25182. }
  25183. },
  25184. back: {
  25185. height: math.unit(28, "feet"),
  25186. weight: math.unit(10500, "lb"),
  25187. name: "Back",
  25188. image: {
  25189. source: "./media/characters/kayda/back.svg",
  25190. extra: 1557 / 1464,
  25191. bottom: 39.5 / 1597.49
  25192. }
  25193. },
  25194. dick: {
  25195. height: math.unit(3.858, "feet"),
  25196. name: "Dick",
  25197. image: {
  25198. source: "./media/characters/kayda/dick.svg"
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Macro",
  25205. height: math.unit(28, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(10 + 11 / 12, "feet"),
  25215. weight: math.unit(1400, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/brian/front.svg",
  25219. extra: 737 / 692,
  25220. bottom: 55.4 / 785
  25221. }
  25222. },
  25223. },
  25224. [
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(10 + 11 / 12, "feet"),
  25228. default: true
  25229. },
  25230. ]
  25231. ))
  25232. characterMakers.push(() => makeCharacter(
  25233. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25234. {
  25235. front: {
  25236. height: math.unit(5 + 8 / 12, "feet"),
  25237. weight: math.unit(140, "lb"),
  25238. name: "Front",
  25239. image: {
  25240. source: "./media/characters/khemri/front.svg",
  25241. extra: 4780 / 4059,
  25242. bottom: 80.1 / 4859.25
  25243. }
  25244. },
  25245. },
  25246. [
  25247. {
  25248. name: "Micro",
  25249. height: math.unit(6, "inches")
  25250. },
  25251. {
  25252. name: "Normal",
  25253. height: math.unit(5 + 8 / 12, "feet"),
  25254. default: true
  25255. },
  25256. ]
  25257. ))
  25258. characterMakers.push(() => makeCharacter(
  25259. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25260. {
  25261. front: {
  25262. height: math.unit(13, "feet"),
  25263. weight: math.unit(1700, "lb"),
  25264. name: "Front",
  25265. image: {
  25266. source: "./media/characters/felix-braveheart/front.svg",
  25267. extra: 1222 / 1157,
  25268. bottom: 53.2 / 1280
  25269. }
  25270. },
  25271. back: {
  25272. height: math.unit(13, "feet"),
  25273. weight: math.unit(1700, "lb"),
  25274. name: "Back",
  25275. image: {
  25276. source: "./media/characters/felix-braveheart/back.svg",
  25277. extra: 1277 / 1203,
  25278. bottom: 50.2 / 1327
  25279. }
  25280. },
  25281. feral: {
  25282. height: math.unit(6, "feet"),
  25283. weight: math.unit(400, "lb"),
  25284. name: "Feral",
  25285. image: {
  25286. source: "./media/characters/felix-braveheart/feral.svg",
  25287. extra: 682 / 625,
  25288. bottom: 6.9 / 688
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(13, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25302. {
  25303. side: {
  25304. height: math.unit(5 + 11 / 12, "feet"),
  25305. weight: math.unit(1400, "lb"),
  25306. name: "Side",
  25307. image: {
  25308. source: "./media/characters/shadow-blade/side.svg",
  25309. extra: 1726 / 1267,
  25310. bottom: 58.4 / 1785
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(5 + 11 / 12, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(1 + 6 / 12, "feet"),
  25327. weight: math.unit(25, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/karla-halldor/front.svg",
  25331. extra: 1459 / 1383,
  25332. bottom: 12 / 1472
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Normal",
  25339. height: math.unit(1 + 6 / 12, "feet"),
  25340. default: true
  25341. },
  25342. ]
  25343. ))
  25344. characterMakers.push(() => makeCharacter(
  25345. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25346. {
  25347. front: {
  25348. height: math.unit(6 + 2 / 12, "feet"),
  25349. weight: math.unit(160, "lb"),
  25350. name: "Front",
  25351. image: {
  25352. source: "./media/characters/ariam/front.svg",
  25353. extra: 1073/976,
  25354. bottom: 52/1125
  25355. }
  25356. },
  25357. back: {
  25358. height: math.unit(6 + 2/12, "feet"),
  25359. weight: math.unit(160, "lb"),
  25360. name: "Back",
  25361. image: {
  25362. source: "./media/characters/ariam/back.svg",
  25363. extra: 1103/1023,
  25364. bottom: 9/1112
  25365. }
  25366. },
  25367. dressed: {
  25368. height: math.unit(6 + 2/12, "feet"),
  25369. weight: math.unit(160, "lb"),
  25370. name: "Dressed",
  25371. image: {
  25372. source: "./media/characters/ariam/dressed.svg",
  25373. extra: 1099/1009,
  25374. bottom: 25/1124
  25375. }
  25376. },
  25377. squatting: {
  25378. height: math.unit(4.1, "feet"),
  25379. weight: math.unit(160, "lb"),
  25380. name: "Squatting",
  25381. image: {
  25382. source: "./media/characters/ariam/squatting.svg",
  25383. extra: 2617 / 2112,
  25384. bottom: 61.2 / 2681,
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Normal",
  25391. height: math.unit(6 + 2 / 12, "feet"),
  25392. default: true
  25393. },
  25394. {
  25395. name: "Normal+",
  25396. height: math.unit(4, "meters")
  25397. },
  25398. {
  25399. name: "Macro",
  25400. height: math.unit(50, "meters")
  25401. },
  25402. {
  25403. name: "Macro+",
  25404. height: math.unit(100, "meters")
  25405. },
  25406. {
  25407. name: "Megamacro",
  25408. height: math.unit(20, "km")
  25409. },
  25410. {
  25411. name: "Caretaker",
  25412. height: math.unit(444, "megameters")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(1.67, "meters"),
  25421. weight: math.unit(140, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25425. extra: 438 / 410,
  25426. bottom: 0.75 / 439
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Shrunken",
  25433. height: math.unit(7.6, "cm")
  25434. },
  25435. {
  25436. name: "Human Scale",
  25437. height: math.unit(1.67, "meters")
  25438. },
  25439. {
  25440. name: "Wolxi Scale",
  25441. height: math.unit(36.7, "meters"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(1.73, "meters"),
  25451. weight: math.unit(240, "lb"),
  25452. name: "Front",
  25453. image: {
  25454. source: "./media/characters/izue-two-mothers/front.svg",
  25455. extra: 469 / 437,
  25456. bottom: 1.24 / 470.6
  25457. }
  25458. },
  25459. },
  25460. [
  25461. {
  25462. name: "Shrunken",
  25463. height: math.unit(7.86, "cm")
  25464. },
  25465. {
  25466. name: "Human Scale",
  25467. height: math.unit(1.73, "meters")
  25468. },
  25469. {
  25470. name: "Wolxi Scale",
  25471. height: math.unit(38, "meters"),
  25472. default: true
  25473. },
  25474. ]
  25475. ))
  25476. characterMakers.push(() => makeCharacter(
  25477. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25478. {
  25479. front: {
  25480. height: math.unit(1.55, "meters"),
  25481. weight: math.unit(120, "lb"),
  25482. name: "Front",
  25483. image: {
  25484. source: "./media/characters/teeku-love-shack/front.svg",
  25485. extra: 387 / 362,
  25486. bottom: 1.51 / 388
  25487. }
  25488. },
  25489. },
  25490. [
  25491. {
  25492. name: "Shrunken",
  25493. height: math.unit(7, "cm")
  25494. },
  25495. {
  25496. name: "Human Scale",
  25497. height: math.unit(1.55, "meters")
  25498. },
  25499. {
  25500. name: "Wolxi Scale",
  25501. height: math.unit(34.1, "meters"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(1.83, "meters"),
  25511. weight: math.unit(135, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/dejma-the-red/front.svg",
  25515. extra: 480 / 458,
  25516. bottom: 1.8 / 482
  25517. }
  25518. },
  25519. },
  25520. [
  25521. {
  25522. name: "Shrunken",
  25523. height: math.unit(8.3, "cm")
  25524. },
  25525. {
  25526. name: "Human Scale",
  25527. height: math.unit(1.83, "meters")
  25528. },
  25529. {
  25530. name: "Wolxi Scale",
  25531. height: math.unit(40, "meters"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(1.78, "meters"),
  25541. weight: math.unit(65, "kg"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/aki/front.svg",
  25545. extra: 452 / 415
  25546. }
  25547. },
  25548. frontNsfw: {
  25549. height: math.unit(1.78, "meters"),
  25550. weight: math.unit(65, "kg"),
  25551. name: "Front (NSFW)",
  25552. image: {
  25553. source: "./media/characters/aki/front-nsfw.svg",
  25554. extra: 452 / 415
  25555. }
  25556. },
  25557. back: {
  25558. height: math.unit(1.78, "meters"),
  25559. weight: math.unit(65, "kg"),
  25560. name: "Back",
  25561. image: {
  25562. source: "./media/characters/aki/back.svg",
  25563. extra: 452 / 415
  25564. }
  25565. },
  25566. rump: {
  25567. height: math.unit(2.05, "feet"),
  25568. name: "Rump",
  25569. image: {
  25570. source: "./media/characters/aki/rump.svg"
  25571. }
  25572. },
  25573. dick: {
  25574. height: math.unit(0.95, "feet"),
  25575. name: "Dick",
  25576. image: {
  25577. source: "./media/characters/aki/dick.svg"
  25578. }
  25579. },
  25580. },
  25581. [
  25582. {
  25583. name: "Micro",
  25584. height: math.unit(15, "cm")
  25585. },
  25586. {
  25587. name: "Normal",
  25588. height: math.unit(178, "cm"),
  25589. default: true
  25590. },
  25591. {
  25592. name: "Macro",
  25593. height: math.unit(214, "m")
  25594. },
  25595. {
  25596. name: "Macro+",
  25597. height: math.unit(534, "m")
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(5 + 5 / 12, "feet"),
  25606. weight: math.unit(120, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/ari/front.svg",
  25610. extra: 1550/1471,
  25611. bottom: 39/1589
  25612. }
  25613. },
  25614. },
  25615. [
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(5 + 5 / 12, "feet")
  25619. },
  25620. {
  25621. name: "Macro",
  25622. height: math.unit(100, "feet"),
  25623. default: true
  25624. },
  25625. {
  25626. name: "Megamacro",
  25627. height: math.unit(100, "miles")
  25628. },
  25629. {
  25630. name: "Gigamacro",
  25631. height: math.unit(80000, "miles")
  25632. },
  25633. ]
  25634. ))
  25635. characterMakers.push(() => makeCharacter(
  25636. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25637. {
  25638. side: {
  25639. height: math.unit(9, "feet"),
  25640. weight: math.unit(400, "kg"),
  25641. name: "Side",
  25642. image: {
  25643. source: "./media/characters/bolt/side.svg",
  25644. extra: 1126 / 896,
  25645. bottom: 60 / 1187.3,
  25646. }
  25647. },
  25648. },
  25649. [
  25650. {
  25651. name: "Micro",
  25652. height: math.unit(5, "inches")
  25653. },
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(9, "feet"),
  25657. default: true
  25658. },
  25659. {
  25660. name: "Macro",
  25661. height: math.unit(700, "feet")
  25662. },
  25663. {
  25664. name: "Max Size",
  25665. height: math.unit(1.52e22, "yottameters")
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(4.3, "meters"),
  25674. weight: math.unit(3, "tons"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/draekon-sylviar/front.svg",
  25678. extra: 2072/1512,
  25679. bottom: 74/2146
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(4.3, "meters"),
  25684. weight: math.unit(3, "tons"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/draekon-sylviar/back.svg",
  25688. extra: 1639/1483,
  25689. bottom: 41/1680
  25690. }
  25691. },
  25692. feral: {
  25693. height: math.unit(1.15, "meters"),
  25694. weight: math.unit(3, "tons"),
  25695. name: "Feral",
  25696. image: {
  25697. source: "./media/characters/draekon-sylviar/feral.svg",
  25698. extra: 1033/395,
  25699. bottom: 130/1163
  25700. }
  25701. },
  25702. maw: {
  25703. height: math.unit(1.3, "meters"),
  25704. name: "Maw",
  25705. image: {
  25706. source: "./media/characters/draekon-sylviar/maw.svg"
  25707. }
  25708. },
  25709. mawSeparated: {
  25710. height: math.unit(1.53, "meters"),
  25711. name: "Separated Maw",
  25712. image: {
  25713. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25714. }
  25715. },
  25716. tail: {
  25717. height: math.unit(1.15, "meters"),
  25718. name: "Tail",
  25719. image: {
  25720. source: "./media/characters/draekon-sylviar/tail.svg"
  25721. }
  25722. },
  25723. tailDick: {
  25724. height: math.unit(1.15, "meters"),
  25725. name: "Tail (Dick)",
  25726. image: {
  25727. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25728. }
  25729. },
  25730. tailDickSeparated: {
  25731. height: math.unit(1.19, "meters"),
  25732. name: "Tail (Separated Dick)",
  25733. image: {
  25734. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25735. }
  25736. },
  25737. slit: {
  25738. height: math.unit(1, "meters"),
  25739. name: "Slit",
  25740. image: {
  25741. source: "./media/characters/draekon-sylviar/slit.svg"
  25742. }
  25743. },
  25744. dick: {
  25745. height: math.unit(1.15, "meters"),
  25746. name: "Dick",
  25747. image: {
  25748. source: "./media/characters/draekon-sylviar/dick.svg"
  25749. }
  25750. },
  25751. dickSeparated: {
  25752. height: math.unit(1.1, "meters"),
  25753. name: "Separated Dick",
  25754. image: {
  25755. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25756. }
  25757. },
  25758. sheath: {
  25759. height: math.unit(1.15, "meters"),
  25760. name: "Sheath",
  25761. image: {
  25762. source: "./media/characters/draekon-sylviar/sheath.svg"
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Small",
  25769. height: math.unit(4.53 / 2, "meters"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Normal",
  25774. height: math.unit(4.53, "meters"),
  25775. default: true
  25776. },
  25777. {
  25778. name: "Large",
  25779. height: math.unit(4.53 * 2, "meters"),
  25780. },
  25781. ]
  25782. ))
  25783. characterMakers.push(() => makeCharacter(
  25784. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25785. {
  25786. front: {
  25787. height: math.unit(6 + 2 / 12, "feet"),
  25788. weight: math.unit(180, "lb"),
  25789. name: "Front",
  25790. image: {
  25791. source: "./media/characters/brawler/front.svg",
  25792. extra: 3301 / 3027,
  25793. bottom: 138 / 3439
  25794. }
  25795. },
  25796. },
  25797. [
  25798. {
  25799. name: "Normal",
  25800. height: math.unit(6 + 2 / 12, "feet"),
  25801. default: true
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(11, "feet"),
  25810. weight: math.unit(1000, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/alex/front.svg",
  25814. bottom: 44.5 / 620
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Micro",
  25821. height: math.unit(5, "inches")
  25822. },
  25823. {
  25824. name: "Normal",
  25825. height: math.unit(11, "feet"),
  25826. default: true
  25827. },
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(9.5e9, "feet")
  25831. },
  25832. {
  25833. name: "Max Size",
  25834. height: math.unit(1.4e283, "yottameters")
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25840. {
  25841. female: {
  25842. height: math.unit(29.9, "m"),
  25843. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25844. name: "Female",
  25845. image: {
  25846. source: "./media/characters/zenari/female.svg",
  25847. extra: 3281.6 / 3217,
  25848. bottom: 72.2 / 3353
  25849. }
  25850. },
  25851. male: {
  25852. height: math.unit(27.7, "m"),
  25853. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25854. name: "Male",
  25855. image: {
  25856. source: "./media/characters/zenari/male.svg",
  25857. extra: 3008 / 2991,
  25858. bottom: 54.6 / 3069
  25859. }
  25860. },
  25861. },
  25862. [
  25863. {
  25864. name: "Macro",
  25865. height: math.unit(29.7, "meters"),
  25866. default: true
  25867. },
  25868. ]
  25869. ))
  25870. characterMakers.push(() => makeCharacter(
  25871. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25872. {
  25873. female: {
  25874. height: math.unit(23.8, "m"),
  25875. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25876. name: "Female",
  25877. image: {
  25878. source: "./media/characters/mactarian/female.svg",
  25879. extra: 2662 / 2569,
  25880. bottom: 73 / 2736
  25881. }
  25882. },
  25883. male: {
  25884. height: math.unit(23.8, "m"),
  25885. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25886. name: "Male",
  25887. image: {
  25888. source: "./media/characters/mactarian/male.svg",
  25889. extra: 2673 / 2600,
  25890. bottom: 76 / 2750
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Macro",
  25897. height: math.unit(23.8, "meters"),
  25898. default: true
  25899. },
  25900. ]
  25901. ))
  25902. characterMakers.push(() => makeCharacter(
  25903. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25904. {
  25905. female: {
  25906. height: math.unit(19.3, "m"),
  25907. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25908. name: "Female",
  25909. image: {
  25910. source: "./media/characters/umok/female.svg",
  25911. extra: 2186 / 2078,
  25912. bottom: 87 / 2277
  25913. }
  25914. },
  25915. male: {
  25916. height: math.unit(19.5, "m"),
  25917. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25918. name: "Male",
  25919. image: {
  25920. source: "./media/characters/umok/male.svg",
  25921. extra: 2233 / 2140,
  25922. bottom: 24.4 / 2258
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Macro",
  25929. height: math.unit(19.3, "meters"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25936. {
  25937. female: {
  25938. height: math.unit(26.15, "m"),
  25939. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25940. name: "Female",
  25941. image: {
  25942. source: "./media/characters/joraxian/female.svg",
  25943. extra: 2912 / 2824,
  25944. bottom: 36 / 2956
  25945. }
  25946. },
  25947. male: {
  25948. height: math.unit(25.4, "m"),
  25949. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25950. name: "Male",
  25951. image: {
  25952. source: "./media/characters/joraxian/male.svg",
  25953. extra: 2877 / 2721,
  25954. bottom: 82 / 2967
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Macro",
  25961. height: math.unit(26.15, "meters"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25968. {
  25969. female: {
  25970. height: math.unit(21.6, "m"),
  25971. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25972. name: "Female",
  25973. image: {
  25974. source: "./media/characters/sthara/female.svg",
  25975. extra: 2516 / 2347,
  25976. bottom: 21.5 / 2537
  25977. }
  25978. },
  25979. male: {
  25980. height: math.unit(24, "m"),
  25981. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25982. name: "Male",
  25983. image: {
  25984. source: "./media/characters/sthara/male.svg",
  25985. extra: 2732 / 2607,
  25986. bottom: 23 / 2732
  25987. }
  25988. },
  25989. },
  25990. [
  25991. {
  25992. name: "Macro",
  25993. height: math.unit(21.6, "meters"),
  25994. default: true
  25995. },
  25996. ]
  25997. ))
  25998. characterMakers.push(() => makeCharacter(
  25999. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26000. {
  26001. front: {
  26002. height: math.unit(6 + 4 / 12, "feet"),
  26003. weight: math.unit(175, "lb"),
  26004. name: "Front",
  26005. image: {
  26006. source: "./media/characters/luka-bryzant/front.svg",
  26007. extra: 311 / 289,
  26008. bottom: 4 / 315
  26009. }
  26010. },
  26011. back: {
  26012. height: math.unit(6 + 4 / 12, "feet"),
  26013. weight: math.unit(175, "lb"),
  26014. name: "Back",
  26015. image: {
  26016. source: "./media/characters/luka-bryzant/back.svg",
  26017. extra: 311 / 289,
  26018. bottom: 3.8 / 313.7
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Micro",
  26025. height: math.unit(10, "inches")
  26026. },
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(6 + 4 / 12, "feet"),
  26030. default: true
  26031. },
  26032. {
  26033. name: "Large",
  26034. height: math.unit(12, "feet")
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26040. {
  26041. front: {
  26042. height: math.unit(5 + 7 / 12, "feet"),
  26043. weight: math.unit(185, "lb"),
  26044. name: "Front",
  26045. image: {
  26046. source: "./media/characters/aman-aquila/front.svg",
  26047. extra: 1013 / 976,
  26048. bottom: 45.6 / 1057
  26049. }
  26050. },
  26051. side: {
  26052. height: math.unit(5 + 7 / 12, "feet"),
  26053. weight: math.unit(185, "lb"),
  26054. name: "Side",
  26055. image: {
  26056. source: "./media/characters/aman-aquila/side.svg",
  26057. extra: 1054 / 1011,
  26058. bottom: 15 / 1070
  26059. }
  26060. },
  26061. back: {
  26062. height: math.unit(5 + 7 / 12, "feet"),
  26063. weight: math.unit(185, "lb"),
  26064. name: "Back",
  26065. image: {
  26066. source: "./media/characters/aman-aquila/back.svg",
  26067. extra: 1026 / 970,
  26068. bottom: 12 / 1039
  26069. }
  26070. },
  26071. head: {
  26072. height: math.unit(1.211, "feet"),
  26073. name: "Head",
  26074. image: {
  26075. source: "./media/characters/aman-aquila/head.svg",
  26076. }
  26077. },
  26078. },
  26079. [
  26080. {
  26081. name: "Minimicro",
  26082. height: math.unit(0.057, "inches")
  26083. },
  26084. {
  26085. name: "Micro",
  26086. height: math.unit(7, "inches")
  26087. },
  26088. {
  26089. name: "Mini",
  26090. height: math.unit(3 + 7 / 12, "feet")
  26091. },
  26092. {
  26093. name: "Normal",
  26094. height: math.unit(5 + 7 / 12, "feet"),
  26095. default: true
  26096. },
  26097. {
  26098. name: "Macro",
  26099. height: math.unit(157 + 7 / 12, "feet")
  26100. },
  26101. {
  26102. name: "Megamacro",
  26103. height: math.unit(1557 + 7 / 12, "feet")
  26104. },
  26105. {
  26106. name: "Gigamacro",
  26107. height: math.unit(15557 + 7 / 12, "feet")
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(3 + 2 / 12, "inches"),
  26116. weight: math.unit(0.3, "ounces"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/hiphae/front.svg",
  26120. extra: 1931 / 1683,
  26121. bottom: 24 / 1955
  26122. }
  26123. },
  26124. },
  26125. [
  26126. {
  26127. name: "Normal",
  26128. height: math.unit(3 + 1 / 2, "inches"),
  26129. default: true
  26130. },
  26131. ]
  26132. ))
  26133. characterMakers.push(() => makeCharacter(
  26134. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26135. {
  26136. front: {
  26137. height: math.unit(5 + 10 / 12, "feet"),
  26138. weight: math.unit(165, "lb"),
  26139. name: "Front",
  26140. image: {
  26141. source: "./media/characters/nicky/front.svg",
  26142. extra: 3144 / 2886,
  26143. bottom: 45.6 / 3192
  26144. }
  26145. },
  26146. back: {
  26147. height: math.unit(5 + 10 / 12, "feet"),
  26148. weight: math.unit(165, "lb"),
  26149. name: "Back",
  26150. image: {
  26151. source: "./media/characters/nicky/back.svg",
  26152. extra: 3055 / 2804,
  26153. bottom: 28.4 / 3087
  26154. }
  26155. },
  26156. frontclothed: {
  26157. height: math.unit(5 + 10 / 12, "feet"),
  26158. weight: math.unit(165, "lb"),
  26159. name: "Front-clothed",
  26160. image: {
  26161. source: "./media/characters/nicky/front-clothed.svg",
  26162. extra: 3184.9 / 2926.9,
  26163. bottom: 86.5 / 3239.9
  26164. }
  26165. },
  26166. foot: {
  26167. height: math.unit(1.16, "feet"),
  26168. name: "Foot",
  26169. image: {
  26170. source: "./media/characters/nicky/foot.svg"
  26171. }
  26172. },
  26173. feet: {
  26174. height: math.unit(1.34, "feet"),
  26175. name: "Feet",
  26176. image: {
  26177. source: "./media/characters/nicky/feet.svg"
  26178. }
  26179. },
  26180. maw: {
  26181. height: math.unit(0.9, "feet"),
  26182. name: "Maw",
  26183. image: {
  26184. source: "./media/characters/nicky/maw.svg"
  26185. }
  26186. },
  26187. },
  26188. [
  26189. {
  26190. name: "Normal",
  26191. height: math.unit(5 + 10 / 12, "feet"),
  26192. default: true
  26193. },
  26194. {
  26195. name: "Macro",
  26196. height: math.unit(60, "feet")
  26197. },
  26198. {
  26199. name: "Megamacro",
  26200. height: math.unit(1, "mile")
  26201. },
  26202. ]
  26203. ))
  26204. characterMakers.push(() => makeCharacter(
  26205. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26206. {
  26207. side: {
  26208. height: math.unit(10, "feet"),
  26209. weight: math.unit(600, "lb"),
  26210. name: "Side",
  26211. image: {
  26212. source: "./media/characters/blair/side.svg",
  26213. bottom: 16.6 / 475,
  26214. extra: 458 / 431
  26215. }
  26216. },
  26217. },
  26218. [
  26219. {
  26220. name: "Micro",
  26221. height: math.unit(8, "inches")
  26222. },
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(10, "feet"),
  26226. default: true
  26227. },
  26228. {
  26229. name: "Macro",
  26230. height: math.unit(180, "feet")
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(5 + 4 / 12, "feet"),
  26239. weight: math.unit(125, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/fisher/front.svg",
  26243. extra: 444 / 390,
  26244. bottom: 2 / 444.8
  26245. }
  26246. },
  26247. },
  26248. [
  26249. {
  26250. name: "Micro",
  26251. height: math.unit(4, "inches")
  26252. },
  26253. {
  26254. name: "Normal",
  26255. height: math.unit(5 + 4 / 12, "feet"),
  26256. default: true
  26257. },
  26258. {
  26259. name: "Macro",
  26260. height: math.unit(100, "feet")
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26266. {
  26267. front: {
  26268. height: math.unit(6.71, "feet"),
  26269. weight: math.unit(200, "lb"),
  26270. preyCapacity: math.unit(1000000, "people"),
  26271. name: "Front",
  26272. image: {
  26273. source: "./media/characters/gliss/front.svg",
  26274. extra: 2347 / 2231,
  26275. bottom: 113 / 2462
  26276. }
  26277. },
  26278. hammerspaceSize: {
  26279. height: math.unit(6.71 * 717, "feet"),
  26280. weight: math.unit(200, "lb"),
  26281. preyCapacity: math.unit(1000000, "people"),
  26282. name: "Hammerspace Size",
  26283. image: {
  26284. source: "./media/characters/gliss/front.svg",
  26285. extra: 2347 / 2231,
  26286. bottom: 113 / 2462
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(6.71, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26300. {
  26301. side: {
  26302. height: math.unit(1.44, "m"),
  26303. weight: math.unit(80, "kg"),
  26304. name: "Side",
  26305. image: {
  26306. source: "./media/characters/dune-anderson/side.svg",
  26307. bottom: 49 / 1426
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Wolf-sized",
  26314. height: math.unit(1.44, "meters")
  26315. },
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(5.05, "meters"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Big",
  26323. height: math.unit(14.4, "meters")
  26324. },
  26325. {
  26326. name: "Huge",
  26327. height: math.unit(144, "meters")
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(7, "feet"),
  26336. weight: math.unit(425, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/hind/front.svg",
  26340. extra: 2091 / 1860,
  26341. bottom: 129 / 2220
  26342. }
  26343. },
  26344. back: {
  26345. height: math.unit(7, "feet"),
  26346. weight: math.unit(425, "lb"),
  26347. name: "Back",
  26348. image: {
  26349. source: "./media/characters/hind/back.svg",
  26350. extra: 2091 / 1860,
  26351. bottom: 24.6 / 2309
  26352. }
  26353. },
  26354. tail: {
  26355. height: math.unit(2.8, "feet"),
  26356. name: "Tail",
  26357. image: {
  26358. source: "./media/characters/hind/tail.svg"
  26359. }
  26360. },
  26361. head: {
  26362. height: math.unit(2.55, "feet"),
  26363. name: "Head",
  26364. image: {
  26365. source: "./media/characters/hind/head.svg"
  26366. }
  26367. },
  26368. },
  26369. [
  26370. {
  26371. name: "XS",
  26372. height: math.unit(0.7, "feet")
  26373. },
  26374. {
  26375. name: "Normal",
  26376. height: math.unit(7, "feet"),
  26377. default: true
  26378. },
  26379. {
  26380. name: "XL",
  26381. height: math.unit(70, "feet")
  26382. },
  26383. ]
  26384. ))
  26385. characterMakers.push(() => makeCharacter(
  26386. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26387. {
  26388. front: {
  26389. height: math.unit(2.1, "meters"),
  26390. weight: math.unit(150, "lb"),
  26391. name: "Front",
  26392. image: {
  26393. source: "./media/characters/tharquench-sizestealer/front.svg",
  26394. extra: 1605/1470,
  26395. bottom: 36/1641
  26396. }
  26397. },
  26398. frontAlt: {
  26399. height: math.unit(2.1, "meters"),
  26400. weight: math.unit(150, "lb"),
  26401. name: "Front (Alt)",
  26402. image: {
  26403. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26404. extra: 2318 / 2063,
  26405. bottom: 93.4 / 2410
  26406. }
  26407. },
  26408. },
  26409. [
  26410. {
  26411. name: "Nano",
  26412. height: math.unit(1, "mm")
  26413. },
  26414. {
  26415. name: "Micro",
  26416. height: math.unit(1, "cm")
  26417. },
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(2.1, "meters"),
  26421. default: true
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(7 + 5 / 12, "feet"),
  26430. weight: math.unit(357, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/solex-draconov/front.svg",
  26434. extra: 1993 / 1865,
  26435. bottom: 117 / 2111
  26436. }
  26437. },
  26438. },
  26439. [
  26440. {
  26441. name: "Natural Height",
  26442. height: math.unit(7 + 5 / 12, "feet"),
  26443. default: true
  26444. },
  26445. {
  26446. name: "Macro",
  26447. height: math.unit(350, "feet")
  26448. },
  26449. {
  26450. name: "Macro+",
  26451. height: math.unit(1000, "feet")
  26452. },
  26453. {
  26454. name: "Megamacro",
  26455. height: math.unit(20, "km")
  26456. },
  26457. {
  26458. name: "Megamacro+",
  26459. height: math.unit(1000, "km")
  26460. },
  26461. {
  26462. name: "Gigamacro",
  26463. height: math.unit(2.5, "Gm")
  26464. },
  26465. {
  26466. name: "Teramacro",
  26467. height: math.unit(15, "Tm")
  26468. },
  26469. {
  26470. name: "Galactic",
  26471. height: math.unit(30, "Zm")
  26472. },
  26473. {
  26474. name: "Universal",
  26475. height: math.unit(21000, "Ym")
  26476. },
  26477. {
  26478. name: "Omniversal",
  26479. height: math.unit(9.861e50, "Ym")
  26480. },
  26481. {
  26482. name: "Existential",
  26483. height: math.unit(1e300, "meters")
  26484. },
  26485. ]
  26486. ))
  26487. characterMakers.push(() => makeCharacter(
  26488. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26489. {
  26490. side: {
  26491. height: math.unit(25, "feet"),
  26492. weight: math.unit(90000, "lb"),
  26493. name: "Side",
  26494. image: {
  26495. source: "./media/characters/mandarax/side.svg",
  26496. extra: 614 / 332,
  26497. bottom: 55 / 630
  26498. }
  26499. },
  26500. lounging: {
  26501. height: math.unit(15.4, "feet"),
  26502. weight: math.unit(90000, "lb"),
  26503. name: "Lounging",
  26504. image: {
  26505. source: "./media/characters/mandarax/lounging.svg",
  26506. extra: 817/609,
  26507. bottom: 685/1502
  26508. }
  26509. },
  26510. head: {
  26511. height: math.unit(11.4, "feet"),
  26512. name: "Head",
  26513. image: {
  26514. source: "./media/characters/mandarax/head.svg"
  26515. }
  26516. },
  26517. belly: {
  26518. height: math.unit(33, "feet"),
  26519. name: "Belly",
  26520. preyCapacity: math.unit(500, "people"),
  26521. image: {
  26522. source: "./media/characters/mandarax/belly.svg"
  26523. }
  26524. },
  26525. dick: {
  26526. height: math.unit(8.46, "feet"),
  26527. name: "Dick",
  26528. image: {
  26529. source: "./media/characters/mandarax/dick.svg"
  26530. }
  26531. },
  26532. top: {
  26533. height: math.unit(28, "meters"),
  26534. name: "Top",
  26535. image: {
  26536. source: "./media/characters/mandarax/top.svg"
  26537. }
  26538. },
  26539. },
  26540. [
  26541. {
  26542. name: "Normal",
  26543. height: math.unit(25, "feet"),
  26544. default: true
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(5, "feet"),
  26553. weight: math.unit(90, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/pixil/front.svg",
  26557. extra: 2000 / 1618,
  26558. bottom: 12.3 / 2011
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Normal",
  26565. height: math.unit(5, "feet"),
  26566. default: true
  26567. },
  26568. {
  26569. name: "Megamacro",
  26570. height: math.unit(10, "miles"),
  26571. },
  26572. ]
  26573. ))
  26574. characterMakers.push(() => makeCharacter(
  26575. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26576. {
  26577. front: {
  26578. height: math.unit(7 + 2 / 12, "feet"),
  26579. weight: math.unit(200, "lb"),
  26580. name: "Front",
  26581. image: {
  26582. source: "./media/characters/angel/front.svg",
  26583. extra: 1830 / 1737,
  26584. bottom: 22.6 / 1854,
  26585. }
  26586. },
  26587. },
  26588. [
  26589. {
  26590. name: "Normal",
  26591. height: math.unit(7 + 2 / 12, "feet"),
  26592. default: true
  26593. },
  26594. {
  26595. name: "Macro",
  26596. height: math.unit(1000, "feet")
  26597. },
  26598. {
  26599. name: "Megamacro",
  26600. height: math.unit(2, "miles")
  26601. },
  26602. {
  26603. name: "Gigamacro",
  26604. height: math.unit(20, "earths")
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(5, "feet"),
  26613. weight: math.unit(180, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/mekana/front.svg",
  26617. extra: 1671 / 1605,
  26618. bottom: 3.5 / 1691
  26619. }
  26620. },
  26621. side: {
  26622. height: math.unit(5, "feet"),
  26623. weight: math.unit(180, "lb"),
  26624. name: "Side",
  26625. image: {
  26626. source: "./media/characters/mekana/side.svg",
  26627. extra: 1671 / 1605,
  26628. bottom: 3.5 / 1691
  26629. }
  26630. },
  26631. back: {
  26632. height: math.unit(5, "feet"),
  26633. weight: math.unit(180, "lb"),
  26634. name: "Back",
  26635. image: {
  26636. source: "./media/characters/mekana/back.svg",
  26637. extra: 1671 / 1605,
  26638. bottom: 3.5 / 1691
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Normal",
  26645. height: math.unit(5, "feet"),
  26646. default: true
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26652. {
  26653. front: {
  26654. height: math.unit(4 + 6 / 12, "feet"),
  26655. weight: math.unit(80, "lb"),
  26656. name: "Front",
  26657. image: {
  26658. source: "./media/characters/pixie/front.svg",
  26659. extra: 1924 / 1825,
  26660. bottom: 22.4 / 1946
  26661. }
  26662. },
  26663. },
  26664. [
  26665. {
  26666. name: "Normal",
  26667. height: math.unit(4 + 6 / 12, "feet"),
  26668. default: true
  26669. },
  26670. {
  26671. name: "Macro",
  26672. height: math.unit(40, "feet")
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26678. {
  26679. front: {
  26680. height: math.unit(2.1, "meters"),
  26681. weight: math.unit(200, "lb"),
  26682. name: "Front",
  26683. image: {
  26684. source: "./media/characters/the-lascivious/front.svg",
  26685. extra: 1 / 0.893,
  26686. bottom: 3.5 / 573.7
  26687. }
  26688. },
  26689. },
  26690. [
  26691. {
  26692. name: "Human Scale",
  26693. height: math.unit(2.1, "meters")
  26694. },
  26695. {
  26696. name: "Wolxi Scale",
  26697. height: math.unit(46.2, "m"),
  26698. default: true
  26699. },
  26700. {
  26701. name: "Boinker of Buildings",
  26702. height: math.unit(10, "km")
  26703. },
  26704. {
  26705. name: "Shagger of Skyscrapers",
  26706. height: math.unit(40, "km")
  26707. },
  26708. {
  26709. name: "Banger of Boroughs",
  26710. height: math.unit(4000, "km")
  26711. },
  26712. {
  26713. name: "Screwer of States",
  26714. height: math.unit(100000, "km")
  26715. },
  26716. {
  26717. name: "Pounder of Planets",
  26718. height: math.unit(2000000, "km")
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26724. {
  26725. front: {
  26726. height: math.unit(6, "feet"),
  26727. weight: math.unit(150, "lb"),
  26728. name: "Front",
  26729. image: {
  26730. source: "./media/characters/aj/front.svg",
  26731. extra: 2039 / 1562,
  26732. bottom: 40 / 2079
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(11 + 6 / 12, "feet"),
  26740. default: true
  26741. },
  26742. {
  26743. name: "Megamacro",
  26744. height: math.unit(60, "megameters")
  26745. },
  26746. ]
  26747. ))
  26748. characterMakers.push(() => makeCharacter(
  26749. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26750. {
  26751. side: {
  26752. height: math.unit(31 + 8 / 12, "feet"),
  26753. weight: math.unit(75000, "kg"),
  26754. name: "Side",
  26755. image: {
  26756. source: "./media/characters/koros/side.svg",
  26757. extra: 1442 / 1297,
  26758. bottom: 122.7 / 1562
  26759. }
  26760. },
  26761. dicksKingsCrown: {
  26762. height: math.unit(6, "feet"),
  26763. name: "Dicks (King's Crown)",
  26764. image: {
  26765. source: "./media/characters/koros/dicks-kings-crown.svg"
  26766. }
  26767. },
  26768. dicksTailSet: {
  26769. height: math.unit(3, "feet"),
  26770. name: "Dicks (Tail Set)",
  26771. image: {
  26772. source: "./media/characters/koros/dicks-tail-set.svg"
  26773. }
  26774. },
  26775. dickCumming: {
  26776. height: math.unit(7.98, "feet"),
  26777. name: "Dick (Cumming)",
  26778. image: {
  26779. source: "./media/characters/koros/dick-cumming.svg"
  26780. }
  26781. },
  26782. dicksBack: {
  26783. height: math.unit(5.9, "feet"),
  26784. name: "Dicks (Back)",
  26785. image: {
  26786. source: "./media/characters/koros/dicks-back.svg"
  26787. }
  26788. },
  26789. dicksFront: {
  26790. height: math.unit(3.72, "feet"),
  26791. name: "Dicks (Front)",
  26792. image: {
  26793. source: "./media/characters/koros/dicks-front.svg"
  26794. }
  26795. },
  26796. dicksPeeking: {
  26797. height: math.unit(3.0, "feet"),
  26798. name: "Dicks (Peeking)",
  26799. image: {
  26800. source: "./media/characters/koros/dicks-peeking.svg"
  26801. }
  26802. },
  26803. eye: {
  26804. height: math.unit(1.7, "feet"),
  26805. name: "Eye",
  26806. image: {
  26807. source: "./media/characters/koros/eye.svg"
  26808. }
  26809. },
  26810. headFront: {
  26811. height: math.unit(11.69, "feet"),
  26812. name: "Head (Front)",
  26813. image: {
  26814. source: "./media/characters/koros/head-front.svg"
  26815. }
  26816. },
  26817. headSide: {
  26818. height: math.unit(14, "feet"),
  26819. name: "Head (Side)",
  26820. image: {
  26821. source: "./media/characters/koros/head-side.svg"
  26822. }
  26823. },
  26824. leg: {
  26825. height: math.unit(17, "feet"),
  26826. name: "Leg",
  26827. image: {
  26828. source: "./media/characters/koros/leg.svg"
  26829. }
  26830. },
  26831. mawSide: {
  26832. height: math.unit(12.8, "feet"),
  26833. name: "Maw (Side)",
  26834. image: {
  26835. source: "./media/characters/koros/maw-side.svg"
  26836. }
  26837. },
  26838. mawSpitting: {
  26839. height: math.unit(17, "feet"),
  26840. name: "Maw (Spitting)",
  26841. image: {
  26842. source: "./media/characters/koros/maw-spitting.svg"
  26843. }
  26844. },
  26845. slit: {
  26846. height: math.unit(2.8, "feet"),
  26847. name: "Slit",
  26848. image: {
  26849. source: "./media/characters/koros/slit.svg"
  26850. }
  26851. },
  26852. stomach: {
  26853. height: math.unit(6.8, "feet"),
  26854. preyCapacity: math.unit(20, "people"),
  26855. name: "Stomach",
  26856. image: {
  26857. source: "./media/characters/koros/stomach.svg"
  26858. }
  26859. },
  26860. wingspanBottom: {
  26861. height: math.unit(114, "feet"),
  26862. name: "Wingspan (Bottom)",
  26863. image: {
  26864. source: "./media/characters/koros/wingspan-bottom.svg"
  26865. }
  26866. },
  26867. wingspanTop: {
  26868. height: math.unit(104, "feet"),
  26869. name: "Wingspan (Top)",
  26870. image: {
  26871. source: "./media/characters/koros/wingspan-top.svg"
  26872. }
  26873. },
  26874. },
  26875. [
  26876. {
  26877. name: "Normal",
  26878. height: math.unit(31 + 8 / 12, "feet"),
  26879. default: true
  26880. },
  26881. ]
  26882. ))
  26883. characterMakers.push(() => makeCharacter(
  26884. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26885. {
  26886. front: {
  26887. height: math.unit(18 + 5 / 12, "feet"),
  26888. weight: math.unit(3750, "kg"),
  26889. name: "Front",
  26890. image: {
  26891. source: "./media/characters/vexx/front.svg",
  26892. extra: 426 / 396,
  26893. bottom: 31.5 / 458
  26894. }
  26895. },
  26896. maw: {
  26897. height: math.unit(6, "feet"),
  26898. name: "Maw",
  26899. image: {
  26900. source: "./media/characters/vexx/maw.svg"
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Normal",
  26907. height: math.unit(18 + 5 / 12, "feet"),
  26908. default: true
  26909. },
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(17 + 6 / 12, "feet"),
  26917. weight: math.unit(150, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/baadra/front.svg",
  26921. extra: 1694/1553,
  26922. bottom: 179/1873
  26923. }
  26924. },
  26925. frontAlt: {
  26926. height: math.unit(17 + 6 / 12, "feet"),
  26927. weight: math.unit(150, "lb"),
  26928. name: "Front (Alt)",
  26929. image: {
  26930. source: "./media/characters/baadra/front-alt.svg",
  26931. extra: 3137 / 2890,
  26932. bottom: 168.4 / 3305
  26933. }
  26934. },
  26935. back: {
  26936. height: math.unit(17 + 6 / 12, "feet"),
  26937. weight: math.unit(150, "lb"),
  26938. name: "Back",
  26939. image: {
  26940. source: "./media/characters/baadra/back.svg",
  26941. extra: 3142 / 2890,
  26942. bottom: 220 / 3371
  26943. }
  26944. },
  26945. head: {
  26946. height: math.unit(5.45, "feet"),
  26947. name: "Head",
  26948. image: {
  26949. source: "./media/characters/baadra/head.svg"
  26950. }
  26951. },
  26952. headAngry: {
  26953. height: math.unit(4.95, "feet"),
  26954. name: "Head (Angry)",
  26955. image: {
  26956. source: "./media/characters/baadra/head-angry.svg"
  26957. }
  26958. },
  26959. headOpen: {
  26960. height: math.unit(6, "feet"),
  26961. name: "Head (Open)",
  26962. image: {
  26963. source: "./media/characters/baadra/head-open.svg"
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(17 + 6 / 12, "feet"),
  26971. default: true
  26972. },
  26973. ]
  26974. ))
  26975. characterMakers.push(() => makeCharacter(
  26976. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26977. {
  26978. front: {
  26979. height: math.unit(7 + 3 / 12, "feet"),
  26980. weight: math.unit(180, "lb"),
  26981. name: "Front",
  26982. image: {
  26983. source: "./media/characters/juri/front.svg",
  26984. extra: 1401 / 1237,
  26985. bottom: 18.5 / 1418
  26986. }
  26987. },
  26988. side: {
  26989. height: math.unit(7 + 3 / 12, "feet"),
  26990. weight: math.unit(180, "lb"),
  26991. name: "Side",
  26992. image: {
  26993. source: "./media/characters/juri/side.svg",
  26994. extra: 1424 / 1242,
  26995. bottom: 18.5 / 1447
  26996. }
  26997. },
  26998. sitting: {
  26999. height: math.unit(6, "feet"),
  27000. weight: math.unit(180, "lb"),
  27001. name: "Sitting",
  27002. image: {
  27003. source: "./media/characters/juri/sitting.svg",
  27004. extra: 1270 / 1143,
  27005. bottom: 100 / 1343
  27006. }
  27007. },
  27008. back: {
  27009. height: math.unit(7 + 3 / 12, "feet"),
  27010. weight: math.unit(180, "lb"),
  27011. name: "Back",
  27012. image: {
  27013. source: "./media/characters/juri/back.svg",
  27014. extra: 1377 / 1240,
  27015. bottom: 23.7 / 1405
  27016. }
  27017. },
  27018. maw: {
  27019. height: math.unit(2.8, "feet"),
  27020. name: "Maw",
  27021. image: {
  27022. source: "./media/characters/juri/maw.svg"
  27023. }
  27024. },
  27025. stomach: {
  27026. height: math.unit(0.89, "feet"),
  27027. preyCapacity: math.unit(4, "liters"),
  27028. name: "Stomach",
  27029. image: {
  27030. source: "./media/characters/juri/stomach.svg"
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Normal",
  27037. height: math.unit(7 + 3 / 12, "feet"),
  27038. default: true
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27044. {
  27045. fox: {
  27046. height: math.unit(5 + 6 / 12, "feet"),
  27047. weight: math.unit(140, "lb"),
  27048. name: "Fox",
  27049. image: {
  27050. source: "./media/characters/maxene-sita/fox.svg",
  27051. extra: 146 / 138,
  27052. bottom: 2.1 / 148.19
  27053. }
  27054. },
  27055. foxLaying: {
  27056. height: math.unit(1.70, "feet"),
  27057. weight: math.unit(140, "lb"),
  27058. name: "Fox (Laying)",
  27059. image: {
  27060. source: "./media/characters/maxene-sita/fox-laying.svg",
  27061. extra: 910 / 572,
  27062. bottom: 71 / 981
  27063. }
  27064. },
  27065. kitsune: {
  27066. height: math.unit(10, "feet"),
  27067. weight: math.unit(800, "lb"),
  27068. name: "Kitsune",
  27069. image: {
  27070. source: "./media/characters/maxene-sita/kitsune.svg",
  27071. extra: 185 / 176,
  27072. bottom: 4.7 / 189.9
  27073. }
  27074. },
  27075. hellhound: {
  27076. height: math.unit(10, "feet"),
  27077. weight: math.unit(700, "lb"),
  27078. name: "Hellhound",
  27079. image: {
  27080. source: "./media/characters/maxene-sita/hellhound.svg",
  27081. extra: 1600 / 1545,
  27082. bottom: 81 / 1681
  27083. }
  27084. },
  27085. },
  27086. [
  27087. {
  27088. name: "Normal",
  27089. height: math.unit(5 + 6 / 12, "feet"),
  27090. default: true
  27091. },
  27092. ]
  27093. ))
  27094. characterMakers.push(() => makeCharacter(
  27095. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27096. {
  27097. front: {
  27098. height: math.unit(3 + 4 / 12, "feet"),
  27099. weight: math.unit(70, "lb"),
  27100. name: "Front",
  27101. image: {
  27102. source: "./media/characters/maia/front.svg",
  27103. extra: 227 / 219.5,
  27104. bottom: 40 / 267
  27105. }
  27106. },
  27107. back: {
  27108. height: math.unit(3 + 4 / 12, "feet"),
  27109. weight: math.unit(70, "lb"),
  27110. name: "Back",
  27111. image: {
  27112. source: "./media/characters/maia/back.svg",
  27113. extra: 237 / 225
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(3 + 4 / 12, "feet"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(5 + 10 / 12, "feet"),
  27130. weight: math.unit(197, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/jabaro/front.svg",
  27134. extra: 225 / 216,
  27135. bottom: 5.06 / 230
  27136. }
  27137. },
  27138. back: {
  27139. height: math.unit(5 + 10 / 12, "feet"),
  27140. weight: math.unit(197, "lb"),
  27141. name: "Back",
  27142. image: {
  27143. source: "./media/characters/jabaro/back.svg",
  27144. extra: 225 / 219,
  27145. bottom: 1.9 / 227
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(5 + 10 / 12, "feet"),
  27153. default: true
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(5 + 8 / 12, "feet"),
  27162. weight: math.unit(139, "lb"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/risa/front.svg",
  27166. extra: 270 / 260,
  27167. bottom: 11.2 / 282
  27168. }
  27169. },
  27170. back: {
  27171. height: math.unit(5 + 8 / 12, "feet"),
  27172. weight: math.unit(139, "lb"),
  27173. name: "Back",
  27174. image: {
  27175. source: "./media/characters/risa/back.svg",
  27176. extra: 264 / 255,
  27177. bottom: 4 / 268
  27178. }
  27179. },
  27180. },
  27181. [
  27182. {
  27183. name: "Normal",
  27184. height: math.unit(5 + 8 / 12, "feet"),
  27185. default: true
  27186. },
  27187. ]
  27188. ))
  27189. characterMakers.push(() => makeCharacter(
  27190. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27191. {
  27192. front: {
  27193. height: math.unit(2 + 11 / 12, "feet"),
  27194. weight: math.unit(30, "lb"),
  27195. name: "Front",
  27196. image: {
  27197. source: "./media/characters/weatley/front.svg",
  27198. bottom: 10.7 / 414,
  27199. extra: 403.5 / 362
  27200. }
  27201. },
  27202. back: {
  27203. height: math.unit(2 + 11 / 12, "feet"),
  27204. weight: math.unit(30, "lb"),
  27205. name: "Back",
  27206. image: {
  27207. source: "./media/characters/weatley/back.svg",
  27208. bottom: 10.7 / 414,
  27209. extra: 403.5 / 362
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(2 + 11 / 12, "feet"),
  27217. default: true
  27218. },
  27219. ]
  27220. ))
  27221. characterMakers.push(() => makeCharacter(
  27222. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27223. {
  27224. front: {
  27225. height: math.unit(5 + 2 / 12, "feet"),
  27226. weight: math.unit(50, "kg"),
  27227. name: "Front",
  27228. image: {
  27229. source: "./media/characters/mercury-crescent/front.svg",
  27230. extra: 1088 / 1033,
  27231. bottom: 18.9 / 1109
  27232. }
  27233. },
  27234. },
  27235. [
  27236. {
  27237. name: "Normal",
  27238. height: math.unit(5 + 2 / 12, "feet"),
  27239. default: true
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(2, "feet"),
  27248. weight: math.unit(15, "kg"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/diamond-jones/front.svg",
  27252. extra: 727/723,
  27253. bottom: 46/773
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(2, "feet"),
  27261. default: true
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(3, "feet"),
  27270. weight: math.unit(30, "kg"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/sweet-bit/front.svg",
  27274. extra: 675 / 567,
  27275. bottom: 27.7 / 703
  27276. }
  27277. },
  27278. },
  27279. [
  27280. {
  27281. name: "Normal",
  27282. height: math.unit(3, "feet"),
  27283. default: true
  27284. },
  27285. ]
  27286. ))
  27287. characterMakers.push(() => makeCharacter(
  27288. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27289. {
  27290. side: {
  27291. height: math.unit(9.178, "feet"),
  27292. weight: math.unit(500, "lb"),
  27293. name: "Side",
  27294. image: {
  27295. source: "./media/characters/umbrazen/side.svg",
  27296. extra: 1730 / 1473,
  27297. bottom: 34.6 / 1765
  27298. }
  27299. },
  27300. },
  27301. [
  27302. {
  27303. name: "Normal",
  27304. height: math.unit(9.178, "feet"),
  27305. default: true
  27306. },
  27307. ]
  27308. ))
  27309. characterMakers.push(() => makeCharacter(
  27310. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27311. {
  27312. front: {
  27313. height: math.unit(10, "feet"),
  27314. weight: math.unit(750, "lb"),
  27315. name: "Front",
  27316. image: {
  27317. source: "./media/characters/arlist/front.svg",
  27318. extra: 961 / 778,
  27319. bottom: 6.2 / 986
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(10, "feet"),
  27327. default: true
  27328. },
  27329. ]
  27330. ))
  27331. characterMakers.push(() => makeCharacter(
  27332. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27333. {
  27334. front: {
  27335. height: math.unit(5 + 1 / 12, "feet"),
  27336. weight: math.unit(110, "lb"),
  27337. name: "Front",
  27338. image: {
  27339. source: "./media/characters/aradel/front.svg",
  27340. extra: 324 / 303,
  27341. bottom: 3.6 / 329.4
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Normal",
  27348. height: math.unit(5 + 1 / 12, "feet"),
  27349. default: true
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27355. {
  27356. dressed: {
  27357. height: math.unit(3 + 8 / 12, "feet"),
  27358. weight: math.unit(50, "lb"),
  27359. name: "Dressed",
  27360. image: {
  27361. source: "./media/characters/serryn/dressed.svg",
  27362. extra: 1792 / 1656,
  27363. bottom: 43.5 / 1840
  27364. }
  27365. },
  27366. nude: {
  27367. height: math.unit(3 + 8 / 12, "feet"),
  27368. weight: math.unit(50, "lb"),
  27369. name: "Nude",
  27370. image: {
  27371. source: "./media/characters/serryn/nude.svg",
  27372. extra: 1792 / 1656,
  27373. bottom: 43.5 / 1840
  27374. }
  27375. },
  27376. },
  27377. [
  27378. {
  27379. name: "Normal",
  27380. height: math.unit(3 + 8 / 12, "feet"),
  27381. default: true
  27382. },
  27383. ]
  27384. ))
  27385. characterMakers.push(() => makeCharacter(
  27386. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27387. {
  27388. front: {
  27389. height: math.unit(7 + 10 / 12, "feet"),
  27390. weight: math.unit(255, "lb"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/xavier-thyme/front.svg",
  27394. extra: 3733 / 3642,
  27395. bottom: 131 / 3869
  27396. }
  27397. },
  27398. frontRaven: {
  27399. height: math.unit(7 + 10 / 12, "feet"),
  27400. weight: math.unit(255, "lb"),
  27401. name: "Front (Raven)",
  27402. image: {
  27403. source: "./media/characters/xavier-thyme/front-raven.svg",
  27404. extra: 4385 / 3642,
  27405. bottom: 131 / 4517
  27406. }
  27407. },
  27408. },
  27409. [
  27410. {
  27411. name: "Normal",
  27412. height: math.unit(7 + 10 / 12, "feet"),
  27413. default: true
  27414. },
  27415. ]
  27416. ))
  27417. characterMakers.push(() => makeCharacter(
  27418. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27419. {
  27420. front: {
  27421. height: math.unit(1.6, "m"),
  27422. weight: math.unit(50, "kg"),
  27423. name: "Front",
  27424. image: {
  27425. source: "./media/characters/kiki/front.svg",
  27426. extra: 4682 / 3610,
  27427. bottom: 115 / 4777
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Normal",
  27434. height: math.unit(1.6, "meters"),
  27435. default: true
  27436. },
  27437. ]
  27438. ))
  27439. characterMakers.push(() => makeCharacter(
  27440. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27441. {
  27442. front: {
  27443. height: math.unit(50, "m"),
  27444. weight: math.unit(500, "tonnes"),
  27445. name: "Front",
  27446. image: {
  27447. source: "./media/characters/ryoko/front.svg",
  27448. extra: 4632 / 3926,
  27449. bottom: 193 / 4823
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(50, "meters"),
  27457. default: true
  27458. },
  27459. ]
  27460. ))
  27461. characterMakers.push(() => makeCharacter(
  27462. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27463. {
  27464. front: {
  27465. height: math.unit(30, "m"),
  27466. weight: math.unit(22, "tonnes"),
  27467. name: "Front",
  27468. image: {
  27469. source: "./media/characters/elio/front.svg",
  27470. extra: 4582 / 3720,
  27471. bottom: 236 / 4828
  27472. }
  27473. },
  27474. },
  27475. [
  27476. {
  27477. name: "Normal",
  27478. height: math.unit(30, "meters"),
  27479. default: true
  27480. },
  27481. ]
  27482. ))
  27483. characterMakers.push(() => makeCharacter(
  27484. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27485. {
  27486. front: {
  27487. height: math.unit(6 + 3 / 12, "feet"),
  27488. weight: math.unit(120, "lb"),
  27489. name: "Front",
  27490. image: {
  27491. source: "./media/characters/azura/front.svg",
  27492. extra: 1149 / 1135,
  27493. bottom: 45 / 1194
  27494. }
  27495. },
  27496. frontClothed: {
  27497. height: math.unit(6 + 3 / 12, "feet"),
  27498. weight: math.unit(120, "lb"),
  27499. name: "Front (Clothed)",
  27500. image: {
  27501. source: "./media/characters/azura/front-clothed.svg",
  27502. extra: 1149 / 1135,
  27503. bottom: 45 / 1194
  27504. }
  27505. },
  27506. },
  27507. [
  27508. {
  27509. name: "Normal",
  27510. height: math.unit(6 + 3 / 12, "feet"),
  27511. default: true
  27512. },
  27513. {
  27514. name: "Macro",
  27515. height: math.unit(20 + 6 / 12, "feet")
  27516. },
  27517. {
  27518. name: "Megamacro",
  27519. height: math.unit(12, "miles")
  27520. },
  27521. {
  27522. name: "Gigamacro",
  27523. height: math.unit(10000, "miles")
  27524. },
  27525. {
  27526. name: "Teramacro",
  27527. height: math.unit(900000, "miles")
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27533. {
  27534. front: {
  27535. height: math.unit(12, "feet"),
  27536. weight: math.unit(1, "ton"),
  27537. capacity: math.unit(660000, "gallons"),
  27538. name: "Front",
  27539. image: {
  27540. source: "./media/characters/zeus/front.svg",
  27541. extra: 5005 / 4717,
  27542. bottom: 363 / 5388
  27543. }
  27544. },
  27545. },
  27546. [
  27547. {
  27548. name: "Normal",
  27549. height: math.unit(12, "feet")
  27550. },
  27551. {
  27552. name: "Preferred Size",
  27553. height: math.unit(0.5, "miles"),
  27554. default: true
  27555. },
  27556. {
  27557. name: "Giga Horse",
  27558. height: math.unit(300, "miles")
  27559. },
  27560. {
  27561. name: "Riding Planets",
  27562. height: math.unit(30, "megameters")
  27563. },
  27564. {
  27565. name: "Cosmic Giant",
  27566. height: math.unit(3, "zettameters")
  27567. },
  27568. {
  27569. name: "Breeding God",
  27570. height: math.unit(9.92e22, "yottameters")
  27571. },
  27572. ]
  27573. ))
  27574. characterMakers.push(() => makeCharacter(
  27575. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27576. {
  27577. side: {
  27578. height: math.unit(9, "feet"),
  27579. weight: math.unit(1500, "kg"),
  27580. name: "Side",
  27581. image: {
  27582. source: "./media/characters/fang/side.svg",
  27583. extra: 924 / 866,
  27584. bottom: 47.5 / 972.3
  27585. }
  27586. },
  27587. },
  27588. [
  27589. {
  27590. name: "Normal",
  27591. height: math.unit(9, "feet"),
  27592. default: true
  27593. },
  27594. {
  27595. name: "Macro",
  27596. height: math.unit(75 + 6 / 12, "feet")
  27597. },
  27598. {
  27599. name: "Teramacro",
  27600. height: math.unit(50000, "miles")
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(10, "feet"),
  27609. weight: math.unit(2, "tons"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/rekhit/front.svg",
  27613. extra: 2796 / 2590,
  27614. bottom: 225 / 3022
  27615. }
  27616. },
  27617. },
  27618. [
  27619. {
  27620. name: "Normal",
  27621. height: math.unit(10, "feet"),
  27622. default: true
  27623. },
  27624. {
  27625. name: "Macro",
  27626. height: math.unit(500, "feet")
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(7 + 6.451 / 12, "feet"),
  27635. weight: math.unit(310, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/dahlia-verrick/front.svg",
  27639. extra: 1488 / 1365,
  27640. bottom: 6.2 / 1495
  27641. }
  27642. },
  27643. back: {
  27644. height: math.unit(7 + 6.451 / 12, "feet"),
  27645. weight: math.unit(310, "lb"),
  27646. name: "Back",
  27647. image: {
  27648. source: "./media/characters/dahlia-verrick/back.svg",
  27649. extra: 1472 / 1351,
  27650. bottom: 5.28 / 1477
  27651. }
  27652. },
  27653. frontBusiness: {
  27654. height: math.unit(7 + 6.451 / 12, "feet"),
  27655. weight: math.unit(200, "lb"),
  27656. name: "Front (Business)",
  27657. image: {
  27658. source: "./media/characters/dahlia-verrick/front-business.svg",
  27659. extra: 1478 / 1381,
  27660. bottom: 5.5 / 1484
  27661. }
  27662. },
  27663. frontCasual: {
  27664. height: math.unit(7 + 6.451 / 12, "feet"),
  27665. weight: math.unit(200, "lb"),
  27666. name: "Front (Casual)",
  27667. image: {
  27668. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27669. extra: 1478 / 1381,
  27670. bottom: 5.5 / 1484
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Travel-Sized",
  27677. height: math.unit(7.45, "inches")
  27678. },
  27679. {
  27680. name: "Normal",
  27681. height: math.unit(7 + 6.451 / 12, "feet"),
  27682. default: true
  27683. },
  27684. {
  27685. name: "Hitting the Town",
  27686. height: math.unit(37 + 8 / 12, "feet")
  27687. },
  27688. {
  27689. name: "Stomp in the Suburbs",
  27690. height: math.unit(964 + 9.728 / 12, "feet")
  27691. },
  27692. {
  27693. name: "Sit on the City",
  27694. height: math.unit(61747 + 10.592 / 12, "feet")
  27695. },
  27696. {
  27697. name: "Glomp the Globe",
  27698. height: math.unit(252919327 + 4.832 / 12, "feet")
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(6 + 4 / 12, "feet"),
  27707. weight: math.unit(320, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/balina-mahigan/front.svg",
  27711. extra: 447 / 428,
  27712. bottom: 18 / 466
  27713. }
  27714. },
  27715. back: {
  27716. height: math.unit(6 + 4 / 12, "feet"),
  27717. weight: math.unit(320, "lb"),
  27718. name: "Back",
  27719. image: {
  27720. source: "./media/characters/balina-mahigan/back.svg",
  27721. extra: 445 / 428,
  27722. bottom: 4.07 / 448
  27723. }
  27724. },
  27725. arm: {
  27726. height: math.unit(1.88, "feet"),
  27727. name: "Arm",
  27728. image: {
  27729. source: "./media/characters/balina-mahigan/arm.svg"
  27730. }
  27731. },
  27732. backPort: {
  27733. height: math.unit(0.685, "feet"),
  27734. name: "Back Port",
  27735. image: {
  27736. source: "./media/characters/balina-mahigan/back-port.svg"
  27737. }
  27738. },
  27739. hoofpaw: {
  27740. height: math.unit(1.41, "feet"),
  27741. name: "Hoofpaw",
  27742. image: {
  27743. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27744. }
  27745. },
  27746. leftHandBack: {
  27747. height: math.unit(0.938, "feet"),
  27748. name: "Left Hand (Back)",
  27749. image: {
  27750. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27751. }
  27752. },
  27753. leftHandFront: {
  27754. height: math.unit(0.938, "feet"),
  27755. name: "Left Hand (Front)",
  27756. image: {
  27757. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27758. }
  27759. },
  27760. rightHandBack: {
  27761. height: math.unit(0.95, "feet"),
  27762. name: "Right Hand (Back)",
  27763. image: {
  27764. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27765. }
  27766. },
  27767. rightHandFront: {
  27768. height: math.unit(0.95, "feet"),
  27769. name: "Right Hand (Front)",
  27770. image: {
  27771. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Normal",
  27778. height: math.unit(6 + 4 / 12, "feet"),
  27779. default: true
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27785. {
  27786. front: {
  27787. height: math.unit(6, "feet"),
  27788. weight: math.unit(320, "lb"),
  27789. name: "Front",
  27790. image: {
  27791. source: "./media/characters/balina-mejeri/front.svg",
  27792. extra: 517 / 488,
  27793. bottom: 44.2 / 561
  27794. }
  27795. },
  27796. },
  27797. [
  27798. {
  27799. name: "Normal",
  27800. height: math.unit(6 + 4 / 12, "feet")
  27801. },
  27802. {
  27803. name: "Business",
  27804. height: math.unit(155, "feet"),
  27805. default: true
  27806. },
  27807. ]
  27808. ))
  27809. characterMakers.push(() => makeCharacter(
  27810. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27811. {
  27812. kneeling: {
  27813. height: math.unit(6 + 4 / 12, "feet"),
  27814. weight: math.unit(300 * 20, "lb"),
  27815. name: "Kneeling",
  27816. image: {
  27817. source: "./media/characters/balbarian/kneeling.svg",
  27818. extra: 922 / 862,
  27819. bottom: 42.4 / 965
  27820. }
  27821. },
  27822. },
  27823. [
  27824. {
  27825. name: "Normal",
  27826. height: math.unit(6 + 4 / 12, "feet")
  27827. },
  27828. {
  27829. name: "Treasured",
  27830. height: math.unit(18 + 9 / 12, "feet"),
  27831. default: true
  27832. },
  27833. {
  27834. name: "Macro",
  27835. height: math.unit(900, "feet")
  27836. },
  27837. ]
  27838. ))
  27839. characterMakers.push(() => makeCharacter(
  27840. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27841. {
  27842. front: {
  27843. height: math.unit(6 + 4 / 12, "feet"),
  27844. weight: math.unit(325, "lb"),
  27845. name: "Front",
  27846. image: {
  27847. source: "./media/characters/balina-amarini/front.svg",
  27848. extra: 415 / 403,
  27849. bottom: 19 / 433.4
  27850. }
  27851. },
  27852. back: {
  27853. height: math.unit(6 + 4 / 12, "feet"),
  27854. weight: math.unit(325, "lb"),
  27855. name: "Back",
  27856. image: {
  27857. source: "./media/characters/balina-amarini/back.svg",
  27858. extra: 415 / 403,
  27859. bottom: 13.5 / 432
  27860. }
  27861. },
  27862. overdrive: {
  27863. height: math.unit(6 + 4 / 12, "feet"),
  27864. weight: math.unit(400, "lb"),
  27865. name: "Overdrive",
  27866. image: {
  27867. source: "./media/characters/balina-amarini/overdrive.svg",
  27868. extra: 269 / 259,
  27869. bottom: 12 / 282
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Boom",
  27876. height: math.unit(9 + 10 / 12, "feet"),
  27877. default: true
  27878. },
  27879. {
  27880. name: "Macro",
  27881. height: math.unit(280, "feet")
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27887. {
  27888. goddess: {
  27889. height: math.unit(600, "feet"),
  27890. weight: math.unit(2000000, "tons"),
  27891. name: "Goddess",
  27892. image: {
  27893. source: "./media/characters/lady-kubwa/goddess.svg",
  27894. extra: 1240.5 / 1223,
  27895. bottom: 22 / 1263
  27896. }
  27897. },
  27898. goddesser: {
  27899. height: math.unit(900, "feet"),
  27900. weight: math.unit(20000000, "lb"),
  27901. name: "Goddess-er",
  27902. image: {
  27903. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27904. extra: 899 / 888,
  27905. bottom: 12.6 / 912
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Macro",
  27912. height: math.unit(600, "feet"),
  27913. default: true
  27914. },
  27915. {
  27916. name: "Megamacro",
  27917. height: math.unit(250, "miles")
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27923. {
  27924. front: {
  27925. height: math.unit(7 + 7 / 12, "feet"),
  27926. weight: math.unit(250, "lb"),
  27927. name: "Front",
  27928. image: {
  27929. source: "./media/characters/tala-grovehorn/front.svg",
  27930. extra: 2636 / 2525,
  27931. bottom: 147 / 2781
  27932. }
  27933. },
  27934. back: {
  27935. height: math.unit(7 + 7 / 12, "feet"),
  27936. weight: math.unit(250, "lb"),
  27937. name: "Back",
  27938. image: {
  27939. source: "./media/characters/tala-grovehorn/back.svg",
  27940. extra: 2635 / 2539,
  27941. bottom: 100 / 2732.8
  27942. }
  27943. },
  27944. mouth: {
  27945. height: math.unit(1.15, "feet"),
  27946. name: "Mouth",
  27947. image: {
  27948. source: "./media/characters/tala-grovehorn/mouth.svg"
  27949. }
  27950. },
  27951. dick: {
  27952. height: math.unit(2.36, "feet"),
  27953. name: "Dick",
  27954. image: {
  27955. source: "./media/characters/tala-grovehorn/dick.svg"
  27956. }
  27957. },
  27958. slit: {
  27959. height: math.unit(0.61, "feet"),
  27960. name: "Slit",
  27961. image: {
  27962. source: "./media/characters/tala-grovehorn/slit.svg"
  27963. }
  27964. },
  27965. },
  27966. [
  27967. ]
  27968. ))
  27969. characterMakers.push(() => makeCharacter(
  27970. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27971. {
  27972. front: {
  27973. height: math.unit(7 + 7 / 12, "feet"),
  27974. weight: math.unit(225, "lb"),
  27975. name: "Front",
  27976. image: {
  27977. source: "./media/characters/epona/front.svg",
  27978. extra: 2445 / 2290,
  27979. bottom: 251 / 2696
  27980. }
  27981. },
  27982. back: {
  27983. height: math.unit(7 + 7 / 12, "feet"),
  27984. weight: math.unit(225, "lb"),
  27985. name: "Back",
  27986. image: {
  27987. source: "./media/characters/epona/back.svg",
  27988. extra: 2546 / 2408,
  27989. bottom: 44 / 2589
  27990. }
  27991. },
  27992. genitals: {
  27993. height: math.unit(1.5, "feet"),
  27994. name: "Genitals",
  27995. image: {
  27996. source: "./media/characters/epona/genitals.svg"
  27997. }
  27998. },
  27999. },
  28000. [
  28001. {
  28002. name: "Normal",
  28003. height: math.unit(7 + 7 / 12, "feet"),
  28004. default: true
  28005. },
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(7, "feet"),
  28013. weight: math.unit(518, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/avia-bloodbourn/front.svg",
  28017. extra: 1466 / 1350,
  28018. bottom: 65 / 1527
  28019. }
  28020. },
  28021. },
  28022. [
  28023. ]
  28024. ))
  28025. characterMakers.push(() => makeCharacter(
  28026. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28027. {
  28028. front: {
  28029. height: math.unit(9.35, "feet"),
  28030. weight: math.unit(600, "lb"),
  28031. name: "Front",
  28032. image: {
  28033. source: "./media/characters/amera/front.svg",
  28034. extra: 891 / 818,
  28035. bottom: 30 / 922.7
  28036. }
  28037. },
  28038. back: {
  28039. height: math.unit(9.35, "feet"),
  28040. weight: math.unit(600, "lb"),
  28041. name: "Back",
  28042. image: {
  28043. source: "./media/characters/amera/back.svg",
  28044. extra: 876 / 824,
  28045. bottom: 6.8 / 884
  28046. }
  28047. },
  28048. dick: {
  28049. height: math.unit(2.14, "feet"),
  28050. name: "Dick",
  28051. image: {
  28052. source: "./media/characters/amera/dick.svg"
  28053. }
  28054. },
  28055. },
  28056. [
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(9.35, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28066. {
  28067. kneeling: {
  28068. height: math.unit(3 + 4 / 12, "feet"),
  28069. weight: math.unit(90, "lb"),
  28070. name: "Kneeling",
  28071. image: {
  28072. source: "./media/characters/rosewen/kneeling.svg",
  28073. extra: 1835 / 1571,
  28074. bottom: 27.7 / 1862
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(3 + 4 / 12, "feet"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(5 + 10 / 12, "feet"),
  28091. weight: math.unit(200, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/sabah/front.svg",
  28095. extra: 849 / 763,
  28096. bottom: 33.9 / 881
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(5 + 10 / 12, "feet"),
  28104. default: true
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28110. {
  28111. front: {
  28112. height: math.unit(3 + 5 / 12, "feet"),
  28113. weight: math.unit(40, "kg"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/purple-flame/front.svg",
  28117. extra: 1577 / 1412,
  28118. bottom: 97 / 1694
  28119. }
  28120. },
  28121. frontDressed: {
  28122. height: math.unit(3 + 5 / 12, "feet"),
  28123. weight: math.unit(40, "kg"),
  28124. name: "Front (Dressed)",
  28125. image: {
  28126. source: "./media/characters/purple-flame/front-dressed.svg",
  28127. extra: 1577 / 1412,
  28128. bottom: 97 / 1694
  28129. }
  28130. },
  28131. headphones: {
  28132. height: math.unit(0.85, "feet"),
  28133. name: "Headphones",
  28134. image: {
  28135. source: "./media/characters/purple-flame/headphones.svg"
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Really Small",
  28142. height: math.unit(5, "cm")
  28143. },
  28144. {
  28145. name: "Micro",
  28146. height: math.unit(1 + 5 / 12, "feet")
  28147. },
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(3 + 5 / 12, "feet"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Minimacro",
  28155. height: math.unit(125, "feet")
  28156. },
  28157. {
  28158. name: "Macro",
  28159. height: math.unit(0.5, "miles")
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(50, "miles")
  28164. },
  28165. {
  28166. name: "Gigantic",
  28167. height: math.unit(750, "miles")
  28168. },
  28169. {
  28170. name: "Planetary",
  28171. height: math.unit(15000, "miles")
  28172. },
  28173. ]
  28174. ))
  28175. characterMakers.push(() => makeCharacter(
  28176. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28177. {
  28178. front: {
  28179. height: math.unit(14, "feet"),
  28180. weight: math.unit(959, "lb"),
  28181. name: "Front",
  28182. image: {
  28183. source: "./media/characters/arsenal/front.svg",
  28184. extra: 2357 / 2157,
  28185. bottom: 93 / 2458
  28186. }
  28187. },
  28188. },
  28189. [
  28190. {
  28191. name: "Normal",
  28192. height: math.unit(14, "feet"),
  28193. default: true
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(6, "feet"),
  28202. weight: math.unit(150, "lb"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/adira/front.svg",
  28206. extra: 1078 / 1029,
  28207. bottom: 87 / 1166
  28208. }
  28209. },
  28210. },
  28211. [
  28212. {
  28213. name: "Micro",
  28214. height: math.unit(4, "inches"),
  28215. default: true
  28216. },
  28217. {
  28218. name: "Macro",
  28219. height: math.unit(50, "feet")
  28220. },
  28221. ]
  28222. ))
  28223. characterMakers.push(() => makeCharacter(
  28224. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28225. {
  28226. front: {
  28227. height: math.unit(16, "feet"),
  28228. weight: math.unit(1000, "lb"),
  28229. name: "Front",
  28230. image: {
  28231. source: "./media/characters/grim/front.svg",
  28232. extra: 622 / 614,
  28233. bottom: 18.1 / 642
  28234. }
  28235. },
  28236. back: {
  28237. height: math.unit(16, "feet"),
  28238. weight: math.unit(1000, "lb"),
  28239. name: "Back",
  28240. image: {
  28241. source: "./media/characters/grim/back.svg",
  28242. extra: 610.6 / 602,
  28243. bottom: 40.8 / 652
  28244. }
  28245. },
  28246. hunched: {
  28247. height: math.unit(9.75, "feet"),
  28248. weight: math.unit(1000, "lb"),
  28249. name: "Hunched",
  28250. image: {
  28251. source: "./media/characters/grim/hunched.svg",
  28252. extra: 304 / 297,
  28253. bottom: 35.4 / 394
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(16, "feet"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(2.3, "meters"),
  28270. weight: math.unit(300, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/sinja/front-sfw.svg",
  28274. extra: 1393 / 1294,
  28275. bottom: 70 / 1463
  28276. }
  28277. },
  28278. frontNsfw: {
  28279. height: math.unit(2.3, "meters"),
  28280. weight: math.unit(300, "lb"),
  28281. name: "Front (NSFW)",
  28282. image: {
  28283. source: "./media/characters/sinja/front-nsfw.svg",
  28284. extra: 1393 / 1294,
  28285. bottom: 70 / 1463
  28286. }
  28287. },
  28288. back: {
  28289. height: math.unit(2.3, "meters"),
  28290. weight: math.unit(300, "lb"),
  28291. name: "Back",
  28292. image: {
  28293. source: "./media/characters/sinja/back.svg",
  28294. extra: 1393 / 1294,
  28295. bottom: 70 / 1463
  28296. }
  28297. },
  28298. head: {
  28299. height: math.unit(1.771, "feet"),
  28300. name: "Head",
  28301. image: {
  28302. source: "./media/characters/sinja/head.svg"
  28303. }
  28304. },
  28305. slit: {
  28306. height: math.unit(0.8, "feet"),
  28307. name: "Slit",
  28308. image: {
  28309. source: "./media/characters/sinja/slit.svg"
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(2.3, "meters")
  28317. },
  28318. {
  28319. name: "Macro",
  28320. height: math.unit(91, "meters"),
  28321. default: true
  28322. },
  28323. {
  28324. name: "Megamacro",
  28325. height: math.unit(91440, "meters")
  28326. },
  28327. {
  28328. name: "Gigamacro",
  28329. height: math.unit(60960000, "meters")
  28330. },
  28331. {
  28332. name: "Teramacro",
  28333. height: math.unit(9144000000, "meters")
  28334. },
  28335. ]
  28336. ))
  28337. characterMakers.push(() => makeCharacter(
  28338. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28339. {
  28340. front: {
  28341. height: math.unit(1.7, "meters"),
  28342. weight: math.unit(130, "lb"),
  28343. name: "Front",
  28344. image: {
  28345. source: "./media/characters/kyu/front.svg",
  28346. extra: 415 / 395,
  28347. bottom: 5 / 420
  28348. }
  28349. },
  28350. head: {
  28351. height: math.unit(1.75, "feet"),
  28352. name: "Head",
  28353. image: {
  28354. source: "./media/characters/kyu/head.svg"
  28355. }
  28356. },
  28357. foot: {
  28358. height: math.unit(0.81, "feet"),
  28359. name: "Foot",
  28360. image: {
  28361. source: "./media/characters/kyu/foot.svg"
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(1.7, "meters")
  28369. },
  28370. {
  28371. name: "Macro",
  28372. height: math.unit(131, "feet"),
  28373. default: true
  28374. },
  28375. {
  28376. name: "Megamacro",
  28377. height: math.unit(91440, "meters")
  28378. },
  28379. {
  28380. name: "Gigamacro",
  28381. height: math.unit(60960000, "meters")
  28382. },
  28383. {
  28384. name: "Teramacro",
  28385. height: math.unit(9144000000, "meters")
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(7 + 1 / 12, "feet"),
  28394. weight: math.unit(250, "lb"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/joey/front.svg",
  28398. extra: 1791 / 1537,
  28399. bottom: 28 / 1816
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Micro",
  28406. height: math.unit(3, "inches")
  28407. },
  28408. {
  28409. name: "Normal",
  28410. height: math.unit(7 + 1 / 12, "feet"),
  28411. default: true
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(165, "cm"),
  28420. weight: math.unit(140, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/sam-evans/front.svg",
  28424. extra: 3417 / 3230,
  28425. bottom: 41.3 / 3417
  28426. }
  28427. },
  28428. frontSixTails: {
  28429. height: math.unit(165, "cm"),
  28430. weight: math.unit(140, "lb"),
  28431. name: "Front-six-tails",
  28432. image: {
  28433. source: "./media/characters/sam-evans/front-six-tails.svg",
  28434. extra: 3417 / 3230,
  28435. bottom: 41.3 / 3417
  28436. }
  28437. },
  28438. back: {
  28439. height: math.unit(165, "cm"),
  28440. weight: math.unit(140, "lb"),
  28441. name: "Back",
  28442. image: {
  28443. source: "./media/characters/sam-evans/back.svg",
  28444. extra: 3227 / 3032,
  28445. bottom: 6.8 / 3234
  28446. }
  28447. },
  28448. face: {
  28449. height: math.unit(0.68, "feet"),
  28450. name: "Face",
  28451. image: {
  28452. source: "./media/characters/sam-evans/face.svg"
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Normal",
  28459. height: math.unit(165, "cm"),
  28460. default: true
  28461. },
  28462. {
  28463. name: "Macro",
  28464. height: math.unit(100, "meters")
  28465. },
  28466. {
  28467. name: "Macro+",
  28468. height: math.unit(800, "meters")
  28469. },
  28470. {
  28471. name: "Macro++",
  28472. height: math.unit(3, "km")
  28473. },
  28474. {
  28475. name: "Macro+++",
  28476. height: math.unit(30, "km")
  28477. },
  28478. ]
  28479. ))
  28480. characterMakers.push(() => makeCharacter(
  28481. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28482. {
  28483. front: {
  28484. height: math.unit(10, "feet"),
  28485. weight: math.unit(750, "lb"),
  28486. name: "Front",
  28487. image: {
  28488. source: "./media/characters/juliet-a/front.svg",
  28489. extra: 1766 / 1720,
  28490. bottom: 43 / 1809
  28491. }
  28492. },
  28493. back: {
  28494. height: math.unit(10, "feet"),
  28495. weight: math.unit(750, "lb"),
  28496. name: "Back",
  28497. image: {
  28498. source: "./media/characters/juliet-a/back.svg",
  28499. extra: 1781 / 1734,
  28500. bottom: 35 / 1810,
  28501. }
  28502. },
  28503. },
  28504. [
  28505. {
  28506. name: "Normal",
  28507. height: math.unit(10, "feet"),
  28508. default: true
  28509. },
  28510. {
  28511. name: "Dragon Form",
  28512. height: math.unit(250, "feet")
  28513. },
  28514. {
  28515. name: "Macro",
  28516. height: math.unit(1000, "feet")
  28517. },
  28518. {
  28519. name: "Megamacro",
  28520. height: math.unit(10000, "feet")
  28521. }
  28522. ]
  28523. ))
  28524. characterMakers.push(() => makeCharacter(
  28525. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28526. {
  28527. regular: {
  28528. height: math.unit(7 + 3 / 12, "feet"),
  28529. weight: math.unit(260, "lb"),
  28530. name: "Regular",
  28531. image: {
  28532. source: "./media/characters/wild/regular.svg",
  28533. extra: 97.45 / 92,
  28534. bottom: 6.8 / 104.3
  28535. }
  28536. },
  28537. biggums: {
  28538. height: math.unit(8 + 6 / 12, "feet"),
  28539. weight: math.unit(425, "lb"),
  28540. name: "Biggums",
  28541. image: {
  28542. source: "./media/characters/wild/biggums.svg",
  28543. extra: 97.45 / 92,
  28544. bottom: 7.5 / 132.34
  28545. }
  28546. },
  28547. mawRegular: {
  28548. height: math.unit(1.24, "feet"),
  28549. name: "Maw (Regular)",
  28550. image: {
  28551. source: "./media/characters/wild/maw.svg"
  28552. }
  28553. },
  28554. mawBiggums: {
  28555. height: math.unit(1.47, "feet"),
  28556. name: "Maw (Biggums)",
  28557. image: {
  28558. source: "./media/characters/wild/maw.svg"
  28559. }
  28560. },
  28561. },
  28562. [
  28563. {
  28564. name: "Normal",
  28565. height: math.unit(7 + 3 / 12, "feet"),
  28566. default: true
  28567. },
  28568. ]
  28569. ))
  28570. characterMakers.push(() => makeCharacter(
  28571. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28572. {
  28573. front: {
  28574. height: math.unit(2.5, "meters"),
  28575. weight: math.unit(200, "kg"),
  28576. name: "Front",
  28577. image: {
  28578. source: "./media/characters/vidar/front.svg",
  28579. extra: 2994 / 2795,
  28580. bottom: 56 / 3061
  28581. }
  28582. },
  28583. back: {
  28584. height: math.unit(2.5, "meters"),
  28585. weight: math.unit(200, "kg"),
  28586. name: "Back",
  28587. image: {
  28588. source: "./media/characters/vidar/back.svg",
  28589. extra: 3131 / 2928,
  28590. bottom: 13.5 / 3141.5
  28591. }
  28592. },
  28593. feral: {
  28594. height: math.unit(2.5, "meters"),
  28595. weight: math.unit(2000, "kg"),
  28596. name: "Feral",
  28597. image: {
  28598. source: "./media/characters/vidar/feral.svg",
  28599. extra: 2790 / 1765,
  28600. bottom: 6 / 2796
  28601. }
  28602. },
  28603. },
  28604. [
  28605. {
  28606. name: "Normal",
  28607. height: math.unit(2.5, "meters"),
  28608. default: true
  28609. },
  28610. {
  28611. name: "Macro",
  28612. height: math.unit(100, "meters")
  28613. },
  28614. ]
  28615. ))
  28616. characterMakers.push(() => makeCharacter(
  28617. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28618. {
  28619. front: {
  28620. height: math.unit(5 + 9 / 12, "feet"),
  28621. weight: math.unit(120, "lb"),
  28622. name: "Front",
  28623. image: {
  28624. source: "./media/characters/ash/front.svg",
  28625. extra: 2189 / 1961,
  28626. bottom: 5.2 / 2194
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Normal",
  28633. height: math.unit(5 + 9 / 12, "feet"),
  28634. default: true
  28635. },
  28636. ]
  28637. ))
  28638. characterMakers.push(() => makeCharacter(
  28639. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28640. {
  28641. front: {
  28642. height: math.unit(9, "feet"),
  28643. weight: math.unit(10000, "lb"),
  28644. name: "Front",
  28645. image: {
  28646. source: "./media/characters/gygabite/front.svg",
  28647. bottom: 31.7 / 537.8,
  28648. extra: 505 / 370
  28649. }
  28650. },
  28651. },
  28652. [
  28653. {
  28654. name: "Normal",
  28655. height: math.unit(9, "feet"),
  28656. default: true
  28657. },
  28658. ]
  28659. ))
  28660. characterMakers.push(() => makeCharacter(
  28661. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28662. {
  28663. front: {
  28664. height: math.unit(12, "feet"),
  28665. weight: math.unit(4000, "lb"),
  28666. name: "Front",
  28667. image: {
  28668. source: "./media/characters/p0tat0/front.svg",
  28669. extra: 1065 / 921,
  28670. bottom: 55.7 / 1121.25
  28671. }
  28672. },
  28673. },
  28674. [
  28675. {
  28676. name: "Normal",
  28677. height: math.unit(12, "feet"),
  28678. default: true
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28684. {
  28685. side: {
  28686. height: math.unit(6.5, "feet"),
  28687. weight: math.unit(800, "lb"),
  28688. name: "Side",
  28689. image: {
  28690. source: "./media/characters/dusk/side.svg",
  28691. extra: 615 / 373,
  28692. bottom: 53 / 664
  28693. }
  28694. },
  28695. sitting: {
  28696. height: math.unit(7, "feet"),
  28697. weight: math.unit(800, "lb"),
  28698. name: "Sitting",
  28699. image: {
  28700. source: "./media/characters/dusk/sitting.svg",
  28701. extra: 753 / 425,
  28702. bottom: 33 / 774
  28703. }
  28704. },
  28705. head: {
  28706. height: math.unit(6.1, "feet"),
  28707. name: "Head",
  28708. image: {
  28709. source: "./media/characters/dusk/head.svg"
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(7, "feet"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(15, "feet"),
  28726. weight: math.unit(7000, "lb"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/jay-direwolf/front.svg",
  28730. extra: 1810 / 1732,
  28731. bottom: 66 / 1892
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(15, "feet"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(4 + 9 / 12, "feet"),
  28748. weight: math.unit(130, "lb"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/anchovie/front.svg",
  28752. extra: 382 / 350,
  28753. bottom: 25 / 409
  28754. }
  28755. },
  28756. back: {
  28757. height: math.unit(4 + 9 / 12, "feet"),
  28758. weight: math.unit(130, "lb"),
  28759. name: "Back",
  28760. image: {
  28761. source: "./media/characters/anchovie/back.svg",
  28762. extra: 385 / 352,
  28763. bottom: 16.6 / 402
  28764. }
  28765. },
  28766. frontDressed: {
  28767. height: math.unit(4 + 9 / 12, "feet"),
  28768. weight: math.unit(130, "lb"),
  28769. name: "Front (Dressed)",
  28770. image: {
  28771. source: "./media/characters/anchovie/front-dressed.svg",
  28772. extra: 382 / 350,
  28773. bottom: 25 / 409
  28774. }
  28775. },
  28776. backDressed: {
  28777. height: math.unit(4 + 9 / 12, "feet"),
  28778. weight: math.unit(130, "lb"),
  28779. name: "Back (Dressed)",
  28780. image: {
  28781. source: "./media/characters/anchovie/back-dressed.svg",
  28782. extra: 385 / 352,
  28783. bottom: 16.6 / 402
  28784. }
  28785. },
  28786. },
  28787. [
  28788. {
  28789. name: "Micro",
  28790. height: math.unit(6.4, "inches")
  28791. },
  28792. {
  28793. name: "Normal",
  28794. height: math.unit(4 + 9 / 12, "feet"),
  28795. default: true
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28801. {
  28802. front: {
  28803. height: math.unit(2, "meters"),
  28804. weight: math.unit(180, "lb"),
  28805. name: "Front",
  28806. image: {
  28807. source: "./media/characters/acidrenamon/front.svg",
  28808. extra: 987 / 890,
  28809. bottom: 22.8 / 1009
  28810. }
  28811. },
  28812. back: {
  28813. height: math.unit(2, "meters"),
  28814. weight: math.unit(180, "lb"),
  28815. name: "Back",
  28816. image: {
  28817. source: "./media/characters/acidrenamon/back.svg",
  28818. extra: 983 / 891,
  28819. bottom: 8.4 / 992
  28820. }
  28821. },
  28822. head: {
  28823. height: math.unit(1.92, "feet"),
  28824. name: "Head",
  28825. image: {
  28826. source: "./media/characters/acidrenamon/head.svg"
  28827. }
  28828. },
  28829. rump: {
  28830. height: math.unit(1.72, "feet"),
  28831. name: "Rump",
  28832. image: {
  28833. source: "./media/characters/acidrenamon/rump.svg"
  28834. }
  28835. },
  28836. tail: {
  28837. height: math.unit(4.2, "feet"),
  28838. name: "Tail",
  28839. image: {
  28840. source: "./media/characters/acidrenamon/tail.svg"
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(2, "meters"),
  28848. default: true
  28849. },
  28850. {
  28851. name: "Minimacro",
  28852. height: math.unit(7, "meters")
  28853. },
  28854. {
  28855. name: "Macro",
  28856. height: math.unit(200, "meters")
  28857. },
  28858. {
  28859. name: "Gigamacro",
  28860. height: math.unit(0.2, "earths")
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(152, "feet"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/kenzie-lee/front.svg",
  28872. extra: 1869/1774,
  28873. bottom: 128/1997
  28874. }
  28875. },
  28876. side: {
  28877. height: math.unit(86, "feet"),
  28878. name: "Side",
  28879. image: {
  28880. source: "./media/characters/kenzie-lee/side.svg",
  28881. extra: 930/815,
  28882. bottom: 177/1107
  28883. }
  28884. },
  28885. paw: {
  28886. height: math.unit(15, "feet"),
  28887. name: "Paw",
  28888. image: {
  28889. source: "./media/characters/kenzie-lee/paw.svg"
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Kenzie Flea",
  28896. height: math.unit(2, "mm"),
  28897. default: true
  28898. },
  28899. {
  28900. name: "Micro",
  28901. height: math.unit(2, "inches")
  28902. },
  28903. {
  28904. name: "Normal",
  28905. height: math.unit(152, "feet")
  28906. },
  28907. {
  28908. name: "Megamacro",
  28909. height: math.unit(7, "miles")
  28910. },
  28911. {
  28912. name: "Gigamacro",
  28913. height: math.unit(8000, "miles")
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(6, "feet"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/withers/front.svg",
  28925. extra: 1935/1760,
  28926. bottom: 72/2007
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(6, "feet"),
  28931. name: "Back",
  28932. image: {
  28933. source: "./media/characters/withers/back.svg",
  28934. extra: 1944/1792,
  28935. bottom: 12/1956
  28936. }
  28937. },
  28938. dressed: {
  28939. height: math.unit(6, "feet"),
  28940. name: "Dressed",
  28941. image: {
  28942. source: "./media/characters/withers/dressed.svg",
  28943. extra: 1937/1765,
  28944. bottom: 73/2010
  28945. }
  28946. },
  28947. phase1: {
  28948. height: math.unit(1.1, "feet"),
  28949. name: "Phase 1",
  28950. image: {
  28951. source: "./media/characters/withers/phase-1.svg",
  28952. extra: 1885/1232,
  28953. bottom: 0/1885
  28954. }
  28955. },
  28956. phase2: {
  28957. height: math.unit(1.05, "feet"),
  28958. name: "Phase 2",
  28959. image: {
  28960. source: "./media/characters/withers/phase-2.svg",
  28961. extra: 1792/1090,
  28962. bottom: 0/1792
  28963. }
  28964. },
  28965. partyWipe: {
  28966. height: math.unit(1.1, "feet"),
  28967. name: "Party Wipe",
  28968. image: {
  28969. source: "./media/characters/withers/party-wipe.svg",
  28970. extra: 1864/1207,
  28971. bottom: 0/1864
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Macro",
  28978. height: math.unit(167, "feet"),
  28979. default: true
  28980. },
  28981. {
  28982. name: "Megamacro",
  28983. height: math.unit(15, "miles")
  28984. }
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28989. {
  28990. front: {
  28991. height: math.unit(6 + 7 / 12, "feet"),
  28992. weight: math.unit(250, "lb"),
  28993. name: "Front",
  28994. image: {
  28995. source: "./media/characters/nemoskii/front.svg",
  28996. extra: 2270 / 1734,
  28997. bottom: 86 / 2354
  28998. }
  28999. },
  29000. back: {
  29001. height: math.unit(6 + 7 / 12, "feet"),
  29002. weight: math.unit(250, "lb"),
  29003. name: "Back",
  29004. image: {
  29005. source: "./media/characters/nemoskii/back.svg",
  29006. extra: 1845 / 1788,
  29007. bottom: 10.5 / 1852
  29008. }
  29009. },
  29010. head: {
  29011. height: math.unit(1.31, "feet"),
  29012. name: "Head",
  29013. image: {
  29014. source: "./media/characters/nemoskii/head.svg"
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Micro",
  29021. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29022. },
  29023. {
  29024. name: "Normal",
  29025. height: math.unit(6 + 7 / 12, "feet"),
  29026. default: true
  29027. },
  29028. {
  29029. name: "Macro",
  29030. height: math.unit((6 + 7 / 12) * 150, "feet")
  29031. },
  29032. {
  29033. name: "Macro+",
  29034. height: math.unit((6 + 7 / 12) * 500, "feet")
  29035. },
  29036. {
  29037. name: "Megamacro",
  29038. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29039. },
  29040. ]
  29041. ))
  29042. characterMakers.push(() => makeCharacter(
  29043. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29044. {
  29045. front: {
  29046. height: math.unit(1, "mile"),
  29047. weight: math.unit(265261.9, "lb"),
  29048. name: "Front",
  29049. image: {
  29050. source: "./media/characters/shui/front.svg",
  29051. extra: 1633 / 1564,
  29052. bottom: 91.5 / 1726
  29053. }
  29054. },
  29055. },
  29056. [
  29057. {
  29058. name: "Macro",
  29059. height: math.unit(1, "mile"),
  29060. default: true
  29061. },
  29062. ]
  29063. ))
  29064. characterMakers.push(() => makeCharacter(
  29065. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29066. {
  29067. front: {
  29068. height: math.unit(12 + 6 / 12, "feet"),
  29069. weight: math.unit(1342, "lb"),
  29070. name: "Front",
  29071. image: {
  29072. source: "./media/characters/arokh-takakura/front.svg",
  29073. extra: 1089 / 1043,
  29074. bottom: 77.4 / 1176.7
  29075. }
  29076. },
  29077. back: {
  29078. height: math.unit(12 + 6 / 12, "feet"),
  29079. weight: math.unit(1342, "lb"),
  29080. name: "Back",
  29081. image: {
  29082. source: "./media/characters/arokh-takakura/back.svg",
  29083. extra: 1046 / 1019,
  29084. bottom: 102 / 1150
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Big",
  29091. height: math.unit(12 + 6 / 12, "feet"),
  29092. default: true
  29093. },
  29094. ]
  29095. ))
  29096. characterMakers.push(() => makeCharacter(
  29097. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29098. {
  29099. front: {
  29100. height: math.unit(5 + 6 / 12, "feet"),
  29101. weight: math.unit(150, "lb"),
  29102. name: "Front",
  29103. image: {
  29104. source: "./media/characters/theo/front.svg",
  29105. extra: 1184 / 1131,
  29106. bottom: 7.4 / 1191
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Micro",
  29113. height: math.unit(5, "inches")
  29114. },
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(5 + 6 / 12, "feet"),
  29118. default: true
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(5 + 9 / 12, "feet"),
  29127. weight: math.unit(130, "lb"),
  29128. name: "Front",
  29129. image: {
  29130. source: "./media/characters/cecelia-swift/front.svg",
  29131. extra: 502 / 484,
  29132. bottom: 23 / 523
  29133. }
  29134. },
  29135. back: {
  29136. height: math.unit(5 + 9 / 12, "feet"),
  29137. weight: math.unit(130, "lb"),
  29138. name: "Back",
  29139. image: {
  29140. source: "./media/characters/cecelia-swift/back.svg",
  29141. extra: 499 / 485,
  29142. bottom: 12 / 511
  29143. }
  29144. },
  29145. head: {
  29146. height: math.unit(0.90, "feet"),
  29147. name: "Head",
  29148. image: {
  29149. source: "./media/characters/cecelia-swift/head.svg"
  29150. }
  29151. },
  29152. rump: {
  29153. height: math.unit(1.75, "feet"),
  29154. name: "Rump",
  29155. image: {
  29156. source: "./media/characters/cecelia-swift/rump.svg"
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(5 + 9 / 12, "feet"),
  29164. default: true
  29165. },
  29166. {
  29167. name: "Big",
  29168. height: math.unit(50, "feet")
  29169. },
  29170. {
  29171. name: "Macro",
  29172. height: math.unit(100, "feet")
  29173. },
  29174. {
  29175. name: "Macro+",
  29176. height: math.unit(500, "feet")
  29177. },
  29178. {
  29179. name: "Macro++",
  29180. height: math.unit(1000, "feet")
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29186. {
  29187. front: {
  29188. height: math.unit(6, "feet"),
  29189. weight: math.unit(150, "lb"),
  29190. name: "Front",
  29191. image: {
  29192. source: "./media/characters/kaunan/front.svg",
  29193. extra: 2890 / 2523,
  29194. bottom: 49 / 2939
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Macro",
  29201. height: math.unit(150, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29208. {
  29209. dressed: {
  29210. height: math.unit(175, "cm"),
  29211. weight: math.unit(60, "kg"),
  29212. name: "Dressed",
  29213. image: {
  29214. source: "./media/characters/fei/dressed.svg",
  29215. extra: 1402/1278,
  29216. bottom: 27/1429
  29217. }
  29218. },
  29219. nude: {
  29220. height: math.unit(175, "cm"),
  29221. weight: math.unit(60, "kg"),
  29222. name: "Nude",
  29223. image: {
  29224. source: "./media/characters/fei/nude.svg",
  29225. extra: 1402/1278,
  29226. bottom: 27/1429
  29227. }
  29228. },
  29229. heels: {
  29230. height: math.unit(0.466, "feet"),
  29231. name: "Heels",
  29232. image: {
  29233. source: "./media/characters/fei/heels.svg",
  29234. extra: 156/152,
  29235. bottom: 28/184
  29236. }
  29237. },
  29238. },
  29239. [
  29240. {
  29241. name: "Mortal",
  29242. height: math.unit(175, "cm")
  29243. },
  29244. {
  29245. name: "Normal",
  29246. height: math.unit(3500, "m")
  29247. },
  29248. {
  29249. name: "Stroll",
  29250. height: math.unit(18.4, "km"),
  29251. default: true
  29252. },
  29253. {
  29254. name: "Showoff",
  29255. height: math.unit(175, "km")
  29256. },
  29257. ]
  29258. ))
  29259. characterMakers.push(() => makeCharacter(
  29260. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29261. {
  29262. front: {
  29263. height: math.unit(7, "feet"),
  29264. weight: math.unit(1000, "kg"),
  29265. name: "Front",
  29266. image: {
  29267. source: "./media/characters/edrax/front.svg",
  29268. extra: 2838 / 2550,
  29269. bottom: 130 / 2968
  29270. }
  29271. },
  29272. },
  29273. [
  29274. {
  29275. name: "Small",
  29276. height: math.unit(7, "feet")
  29277. },
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(1500, "meters")
  29281. },
  29282. {
  29283. name: "Mega",
  29284. height: math.unit(12000000, "km"),
  29285. default: true
  29286. },
  29287. {
  29288. name: "Megamacro",
  29289. height: math.unit(10600000, "lightyears")
  29290. },
  29291. {
  29292. name: "Hypermacro",
  29293. height: math.unit(256, "yottameters")
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(10, "feet"),
  29302. weight: math.unit(750, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/clove/front.svg",
  29306. extra: 1918/1751,
  29307. bottom: 52/1970
  29308. }
  29309. },
  29310. back: {
  29311. height: math.unit(10, "feet"),
  29312. weight: math.unit(750, "lb"),
  29313. name: "Back",
  29314. image: {
  29315. source: "./media/characters/clove/back.svg",
  29316. extra: 1912/1747,
  29317. bottom: 50/1962
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(10, "feet"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(4, "feet"),
  29334. weight: math.unit(50, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/alex-rabbit/front.svg",
  29338. extra: 507 / 458,
  29339. bottom: 18.5 / 527
  29340. }
  29341. },
  29342. back: {
  29343. height: math.unit(4, "feet"),
  29344. weight: math.unit(50, "lb"),
  29345. name: "Back",
  29346. image: {
  29347. source: "./media/characters/alex-rabbit/back.svg",
  29348. extra: 502 / 460,
  29349. bottom: 18.9 / 521
  29350. }
  29351. },
  29352. },
  29353. [
  29354. {
  29355. name: "Normal",
  29356. height: math.unit(4, "feet"),
  29357. default: true
  29358. },
  29359. ]
  29360. ))
  29361. characterMakers.push(() => makeCharacter(
  29362. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29363. {
  29364. front: {
  29365. height: math.unit(1 + 3 / 12, "feet"),
  29366. weight: math.unit(80, "lb"),
  29367. name: "Front",
  29368. image: {
  29369. source: "./media/characters/zander-rose/front.svg",
  29370. extra: 916 / 797,
  29371. bottom: 17 / 933
  29372. }
  29373. },
  29374. back: {
  29375. height: math.unit(1 + 3 / 12, "feet"),
  29376. weight: math.unit(80, "lb"),
  29377. name: "Back",
  29378. image: {
  29379. source: "./media/characters/zander-rose/back.svg",
  29380. extra: 903 / 779,
  29381. bottom: 31 / 934
  29382. }
  29383. },
  29384. },
  29385. [
  29386. {
  29387. name: "Normal",
  29388. height: math.unit(1 + 3 / 12, "feet"),
  29389. default: true
  29390. },
  29391. ]
  29392. ))
  29393. characterMakers.push(() => makeCharacter(
  29394. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29395. {
  29396. anthro: {
  29397. height: math.unit(6, "feet"),
  29398. weight: math.unit(150, "lb"),
  29399. name: "Anthro",
  29400. image: {
  29401. source: "./media/characters/razz/anthro.svg",
  29402. extra: 1437 / 1343,
  29403. bottom: 48 / 1485
  29404. }
  29405. },
  29406. feral: {
  29407. height: math.unit(6, "feet"),
  29408. weight: math.unit(150, "lb"),
  29409. name: "Feral",
  29410. image: {
  29411. source: "./media/characters/razz/feral.svg",
  29412. extra: 2569 / 1385,
  29413. bottom: 95 / 2664
  29414. }
  29415. },
  29416. },
  29417. [
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(6, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(9 + 4 / 12, "feet"),
  29430. weight: math.unit(500, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/morrigan/front.svg",
  29434. extra: 2707 / 2579,
  29435. bottom: 156 / 2863
  29436. }
  29437. },
  29438. },
  29439. [
  29440. {
  29441. name: "Normal",
  29442. height: math.unit(9 + 4 / 12, "feet"),
  29443. default: true
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(5, "stories"),
  29452. weight: math.unit(4000, "lb"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/jenene/front.svg",
  29456. extra: 1780 / 1710,
  29457. bottom: 57 / 1837
  29458. }
  29459. },
  29460. },
  29461. [
  29462. {
  29463. name: "Normal",
  29464. height: math.unit(5, "stories"),
  29465. default: true
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29471. {
  29472. taurSfw: {
  29473. height: math.unit(10, "meters"),
  29474. weight: math.unit(17500, "kg"),
  29475. name: "Taur",
  29476. image: {
  29477. source: "./media/characters/faey/taur-sfw.svg",
  29478. extra: 1200 / 968,
  29479. bottom: 41 / 1241
  29480. }
  29481. },
  29482. chestmaw: {
  29483. height: math.unit(2.01, "meters"),
  29484. name: "Chestmaw",
  29485. image: {
  29486. source: "./media/characters/faey/chestmaw.svg"
  29487. }
  29488. },
  29489. foot: {
  29490. height: math.unit(2.43, "meters"),
  29491. name: "Foot",
  29492. image: {
  29493. source: "./media/characters/faey/foot.svg"
  29494. }
  29495. },
  29496. jaws: {
  29497. height: math.unit(1.66, "meters"),
  29498. name: "Jaws",
  29499. image: {
  29500. source: "./media/characters/faey/jaws.svg"
  29501. }
  29502. },
  29503. tongues: {
  29504. height: math.unit(2.01, "meters"),
  29505. name: "Tongues",
  29506. image: {
  29507. source: "./media/characters/faey/tongues.svg"
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Small",
  29514. height: math.unit(10, "meters"),
  29515. default: true
  29516. },
  29517. {
  29518. name: "Big",
  29519. height: math.unit(500000, "km")
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29525. {
  29526. front: {
  29527. height: math.unit(7, "feet"),
  29528. weight: math.unit(275, "lb"),
  29529. name: "Front",
  29530. image: {
  29531. source: "./media/characters/roku/front.svg",
  29532. extra: 903 / 878,
  29533. bottom: 37 / 940
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Normal",
  29540. height: math.unit(7, "feet"),
  29541. default: true
  29542. },
  29543. {
  29544. name: "Macro",
  29545. height: math.unit(500, "feet")
  29546. },
  29547. {
  29548. name: "Megamacro",
  29549. height: math.unit(200, "miles")
  29550. },
  29551. ]
  29552. ))
  29553. characterMakers.push(() => makeCharacter(
  29554. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29555. {
  29556. front: {
  29557. height: math.unit(6 + 2 / 12, "feet"),
  29558. weight: math.unit(150, "lb"),
  29559. name: "Front",
  29560. image: {
  29561. source: "./media/characters/lira/front.svg",
  29562. extra: 1727 / 1605,
  29563. bottom: 26 / 1753
  29564. }
  29565. },
  29566. back: {
  29567. height: math.unit(6 + 2 / 12, "feet"),
  29568. weight: math.unit(150, "lb"),
  29569. name: "Back",
  29570. image: {
  29571. source: "./media/characters/lira/back.svg",
  29572. extra: 1713/1621,
  29573. bottom: 20/1733
  29574. }
  29575. },
  29576. hand: {
  29577. height: math.unit(0.75, "feet"),
  29578. name: "Hand",
  29579. image: {
  29580. source: "./media/characters/lira/hand.svg"
  29581. }
  29582. },
  29583. maw: {
  29584. height: math.unit(0.65, "feet"),
  29585. name: "Maw",
  29586. image: {
  29587. source: "./media/characters/lira/maw.svg"
  29588. }
  29589. },
  29590. pawDigi: {
  29591. height: math.unit(1.6, "feet"),
  29592. name: "Paw Digi",
  29593. image: {
  29594. source: "./media/characters/lira/paw-digi.svg"
  29595. }
  29596. },
  29597. pawPlanti: {
  29598. height: math.unit(1.4, "feet"),
  29599. name: "Paw Planti",
  29600. image: {
  29601. source: "./media/characters/lira/paw-planti.svg"
  29602. }
  29603. },
  29604. },
  29605. [
  29606. {
  29607. name: "Normal",
  29608. height: math.unit(6 + 2 / 12, "feet"),
  29609. default: true
  29610. },
  29611. {
  29612. name: "Macro",
  29613. height: math.unit(100, "feet")
  29614. },
  29615. {
  29616. name: "Macro²",
  29617. height: math.unit(1600, "feet")
  29618. },
  29619. {
  29620. name: "Planetary",
  29621. height: math.unit(20, "earths")
  29622. },
  29623. ]
  29624. ))
  29625. characterMakers.push(() => makeCharacter(
  29626. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29627. {
  29628. front: {
  29629. height: math.unit(6, "feet"),
  29630. weight: math.unit(150, "lb"),
  29631. name: "Front",
  29632. image: {
  29633. source: "./media/characters/hadjet/front.svg",
  29634. extra: 1480 / 1346,
  29635. bottom: 26 / 1506
  29636. }
  29637. },
  29638. frontNsfw: {
  29639. height: math.unit(6, "feet"),
  29640. weight: math.unit(150, "lb"),
  29641. name: "Front (NSFW)",
  29642. image: {
  29643. source: "./media/characters/hadjet/front-nsfw.svg",
  29644. extra: 1440 / 1358,
  29645. bottom: 52 / 1492
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(10, "stories"),
  29653. default: true
  29654. },
  29655. {
  29656. name: "Megamacro",
  29657. height: math.unit(1.5, "miles")
  29658. },
  29659. {
  29660. name: "Megamacro+",
  29661. height: math.unit(5, "miles")
  29662. },
  29663. ]
  29664. ))
  29665. characterMakers.push(() => makeCharacter(
  29666. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29667. {
  29668. side: {
  29669. height: math.unit(106, "feet"),
  29670. weight: math.unit(500, "tonnes"),
  29671. name: "Side",
  29672. image: {
  29673. source: "./media/characters/kodran/side.svg",
  29674. extra: 553 / 480,
  29675. bottom: 33 / 586
  29676. }
  29677. },
  29678. front: {
  29679. height: math.unit(132, "feet"),
  29680. weight: math.unit(500, "tonnes"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/kodran/front.svg",
  29684. extra: 667 / 643,
  29685. bottom: 42 / 709
  29686. }
  29687. },
  29688. flying: {
  29689. height: math.unit(350, "feet"),
  29690. weight: math.unit(500, "tonnes"),
  29691. name: "Flying",
  29692. image: {
  29693. source: "./media/characters/kodran/flying.svg"
  29694. }
  29695. },
  29696. foot: {
  29697. height: math.unit(33, "feet"),
  29698. name: "Foot",
  29699. image: {
  29700. source: "./media/characters/kodran/foot.svg"
  29701. }
  29702. },
  29703. footFront: {
  29704. height: math.unit(19, "feet"),
  29705. name: "Foot (Front)",
  29706. image: {
  29707. source: "./media/characters/kodran/foot-front.svg",
  29708. extra: 261 / 261,
  29709. bottom: 91 / 352
  29710. }
  29711. },
  29712. headFront: {
  29713. height: math.unit(53, "feet"),
  29714. name: "Head (Front)",
  29715. image: {
  29716. source: "./media/characters/kodran/head-front.svg"
  29717. }
  29718. },
  29719. headSide: {
  29720. height: math.unit(65, "feet"),
  29721. name: "Head (Side)",
  29722. image: {
  29723. source: "./media/characters/kodran/head-side.svg"
  29724. }
  29725. },
  29726. throat: {
  29727. height: math.unit(79, "feet"),
  29728. name: "Throat",
  29729. image: {
  29730. source: "./media/characters/kodran/throat.svg"
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Large",
  29737. height: math.unit(106, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29744. {
  29745. side: {
  29746. height: math.unit(11, "feet"),
  29747. weight: math.unit(150, "lb"),
  29748. name: "Side",
  29749. image: {
  29750. source: "./media/characters/pyxaron/side.svg",
  29751. extra: 305 / 195,
  29752. bottom: 17 / 322
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(11, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/meep/front.svg",
  29773. extra: 88 / 80,
  29774. bottom: 6 / 94
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Fun Sized",
  29781. height: math.unit(2, "inches"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Friend Sized",
  29786. height: math.unit(8, "inches")
  29787. },
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(15, "feet"),
  29795. weight: math.unit(2500, "lb"),
  29796. name: "Front",
  29797. image: {
  29798. source: "./media/characters/holly-rabbit/front.svg",
  29799. extra: 1433 / 1233,
  29800. bottom: 125 / 1558
  29801. }
  29802. },
  29803. dick: {
  29804. height: math.unit(4.6, "feet"),
  29805. name: "Dick",
  29806. image: {
  29807. source: "./media/characters/holly-rabbit/dick.svg"
  29808. }
  29809. },
  29810. },
  29811. [
  29812. {
  29813. name: "Normal",
  29814. height: math.unit(15, "feet"),
  29815. default: true
  29816. },
  29817. {
  29818. name: "Macro",
  29819. height: math.unit(250, "feet")
  29820. },
  29821. {
  29822. name: "Macro+",
  29823. height: math.unit(2500, "feet")
  29824. },
  29825. ]
  29826. ))
  29827. characterMakers.push(() => makeCharacter(
  29828. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29829. {
  29830. front: {
  29831. height: math.unit(3.02, "meters"),
  29832. weight: math.unit(500, "kg"),
  29833. name: "Front",
  29834. image: {
  29835. source: "./media/characters/drena/front.svg",
  29836. extra: 282 / 243,
  29837. bottom: 8 / 290
  29838. }
  29839. },
  29840. side: {
  29841. height: math.unit(3.02, "meters"),
  29842. weight: math.unit(500, "kg"),
  29843. name: "Side",
  29844. image: {
  29845. source: "./media/characters/drena/side.svg",
  29846. extra: 280 / 245,
  29847. bottom: 10 / 290
  29848. }
  29849. },
  29850. back: {
  29851. height: math.unit(3.02, "meters"),
  29852. weight: math.unit(500, "kg"),
  29853. name: "Back",
  29854. image: {
  29855. source: "./media/characters/drena/back.svg",
  29856. extra: 278 / 243,
  29857. bottom: 2 / 280
  29858. }
  29859. },
  29860. foot: {
  29861. height: math.unit(0.75, "meters"),
  29862. name: "Foot",
  29863. image: {
  29864. source: "./media/characters/drena/foot.svg"
  29865. }
  29866. },
  29867. maw: {
  29868. height: math.unit(0.82, "meters"),
  29869. name: "Maw",
  29870. image: {
  29871. source: "./media/characters/drena/maw.svg"
  29872. }
  29873. },
  29874. eating: {
  29875. height: math.unit(0.75, "meters"),
  29876. name: "Eating",
  29877. image: {
  29878. source: "./media/characters/drena/eating.svg"
  29879. }
  29880. },
  29881. rump: {
  29882. height: math.unit(0.93, "meters"),
  29883. name: "Rump",
  29884. image: {
  29885. source: "./media/characters/drena/rump.svg"
  29886. }
  29887. },
  29888. },
  29889. [
  29890. {
  29891. name: "Normal",
  29892. height: math.unit(3.02, "meters"),
  29893. default: true
  29894. },
  29895. ]
  29896. ))
  29897. characterMakers.push(() => makeCharacter(
  29898. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29899. {
  29900. front: {
  29901. height: math.unit(6 + 4 / 12, "feet"),
  29902. weight: math.unit(250, "lb"),
  29903. name: "Front",
  29904. image: {
  29905. source: "./media/characters/remmyzilla/front.svg",
  29906. extra: 4033 / 3588,
  29907. bottom: 123 / 4156
  29908. }
  29909. },
  29910. back: {
  29911. height: math.unit(6 + 4 / 12, "feet"),
  29912. weight: math.unit(250, "lb"),
  29913. name: "Back",
  29914. image: {
  29915. source: "./media/characters/remmyzilla/back.svg",
  29916. extra: 2687 / 2555,
  29917. bottom: 48 / 2735
  29918. }
  29919. },
  29920. paw: {
  29921. height: math.unit(1.73, "feet"),
  29922. name: "Paw",
  29923. image: {
  29924. source: "./media/characters/remmyzilla/paw.svg"
  29925. },
  29926. extraAttributes: {
  29927. "toeSize": {
  29928. name: "Toe Size",
  29929. power: 2,
  29930. type: "area",
  29931. base: math.unit(0.0035, "m^2")
  29932. },
  29933. "padSize": {
  29934. name: "Pad Size",
  29935. power: 2,
  29936. type: "area",
  29937. base: math.unit(0.015, "m^2")
  29938. },
  29939. "pawsize": {
  29940. name: "Paw Size",
  29941. power: 2,
  29942. type: "area",
  29943. base: math.unit(0.072, "m^2")
  29944. },
  29945. }
  29946. },
  29947. maw: {
  29948. height: math.unit(1.73, "feet"),
  29949. name: "Maw",
  29950. image: {
  29951. source: "./media/characters/remmyzilla/maw.svg"
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Normal",
  29958. height: math.unit(6 + 4 / 12, "feet")
  29959. },
  29960. {
  29961. name: "Minimacro",
  29962. height: math.unit(12 + 8 / 12, "feet")
  29963. },
  29964. {
  29965. name: "Normal",
  29966. height: math.unit(640, "feet"),
  29967. default: true
  29968. },
  29969. {
  29970. name: "Megamacro",
  29971. height: math.unit(6400, "feet")
  29972. },
  29973. {
  29974. name: "Gigamacro",
  29975. height: math.unit(64000, "miles")
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(2.5, "meters"),
  29984. weight: math.unit(300, "lb"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/lawrence/front.svg",
  29988. extra: 357 / 335,
  29989. bottom: 30 / 387
  29990. }
  29991. },
  29992. back: {
  29993. height: math.unit(2.5, "meters"),
  29994. weight: math.unit(300, "lb"),
  29995. name: "Back",
  29996. image: {
  29997. source: "./media/characters/lawrence/back.svg",
  29998. extra: 357 / 338,
  29999. bottom: 16 / 373
  30000. }
  30001. },
  30002. head: {
  30003. height: math.unit(0.9, "meter"),
  30004. name: "Head",
  30005. image: {
  30006. source: "./media/characters/lawrence/head.svg"
  30007. }
  30008. },
  30009. maw: {
  30010. height: math.unit(0.7, "meter"),
  30011. name: "Maw",
  30012. image: {
  30013. source: "./media/characters/lawrence/maw.svg"
  30014. }
  30015. },
  30016. footBottom: {
  30017. height: math.unit(0.5, "meter"),
  30018. name: "Foot (Bottom)",
  30019. image: {
  30020. source: "./media/characters/lawrence/foot-bottom.svg"
  30021. }
  30022. },
  30023. footTop: {
  30024. height: math.unit(0.5, "meter"),
  30025. name: "Foot (Top)",
  30026. image: {
  30027. source: "./media/characters/lawrence/foot-top.svg"
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(2.5, "meters"),
  30035. default: true
  30036. },
  30037. {
  30038. name: "Macro",
  30039. height: math.unit(95, "meters")
  30040. },
  30041. {
  30042. name: "Megamacro",
  30043. height: math.unit(150, "km")
  30044. },
  30045. ]
  30046. ))
  30047. characterMakers.push(() => makeCharacter(
  30048. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30049. {
  30050. front: {
  30051. height: math.unit(4.2, "meters"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/sydney/front.svg",
  30055. extra: 1323 / 1277,
  30056. bottom: 111 / 1434
  30057. }
  30058. },
  30059. },
  30060. [
  30061. {
  30062. name: "Normal",
  30063. height: math.unit(4.2, "meters"),
  30064. default: true
  30065. },
  30066. ]
  30067. ))
  30068. characterMakers.push(() => makeCharacter(
  30069. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30070. {
  30071. back: {
  30072. height: math.unit(201, "feet"),
  30073. name: "Back",
  30074. image: {
  30075. source: "./media/characters/jessica/back.svg",
  30076. extra: 273 / 259,
  30077. bottom: 7 / 280
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Normal",
  30084. height: math.unit(201, "feet"),
  30085. default: true
  30086. },
  30087. {
  30088. name: "Megamacro",
  30089. height: math.unit(8, "miles")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30095. {
  30096. side: {
  30097. height: math.unit(5.6, "m"),
  30098. weight: math.unit(8000, "kg"),
  30099. name: "Side",
  30100. image: {
  30101. source: "./media/characters/victoria/side.svg",
  30102. extra: 1542/1229,
  30103. bottom: 124/1666
  30104. }
  30105. },
  30106. maw: {
  30107. height: math.unit(7.14, "feet"),
  30108. name: "Maw",
  30109. image: {
  30110. source: "./media/characters/victoria/maw.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(5.6, "m"),
  30118. default: true
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30124. {
  30125. front: {
  30126. height: math.unit(5 + 6 / 12, "feet"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/cat/front.svg",
  30130. extra: 1449/1295,
  30131. bottom: 34/1483
  30132. },
  30133. form: "cat",
  30134. default: true
  30135. },
  30136. back: {
  30137. height: math.unit(5 + 6 / 12, "feet"),
  30138. name: "Back",
  30139. image: {
  30140. source: "./media/characters/cat/back.svg",
  30141. extra: 1466/1301,
  30142. bottom: 19/1485
  30143. },
  30144. form: "cat"
  30145. },
  30146. taur: {
  30147. height: math.unit(7, "feet"),
  30148. name: "Taur",
  30149. image: {
  30150. source: "./media/characters/cat/taur.svg",
  30151. extra: 1389/1233,
  30152. bottom: 83/1472
  30153. },
  30154. form: "taur",
  30155. default: true
  30156. },
  30157. lucarioFront: {
  30158. height: math.unit(4, "feet"),
  30159. name: "Lucario (Front)",
  30160. image: {
  30161. source: "./media/characters/cat/lucario-front.svg",
  30162. extra: 1149/1019,
  30163. bottom: 84/1233
  30164. },
  30165. form: "lucario",
  30166. default: true
  30167. },
  30168. lucarioBack: {
  30169. height: math.unit(4, "feet"),
  30170. name: "Lucario (Back)",
  30171. image: {
  30172. source: "./media/characters/cat/lucario-back.svg",
  30173. extra: 1190/1059,
  30174. bottom: 33/1223
  30175. },
  30176. form: "lucario"
  30177. },
  30178. megaLucario: {
  30179. height: math.unit(4, "feet"),
  30180. name: "Mega Lucario",
  30181. image: {
  30182. source: "./media/characters/cat/mega-lucario.svg",
  30183. extra: 1515 / 1319,
  30184. bottom: 63 / 1578
  30185. },
  30186. form: "lucario"
  30187. },
  30188. nickit: {
  30189. height: math.unit(2, "feet"),
  30190. name: "Nickit",
  30191. image: {
  30192. source: "./media/characters/cat/nickit.svg",
  30193. extra: 1980 / 1585,
  30194. bottom: 102 / 2082
  30195. },
  30196. form: "nickit",
  30197. default: true
  30198. },
  30199. lopunnyFront: {
  30200. height: math.unit(5, "feet"),
  30201. name: "Lopunny (Front)",
  30202. image: {
  30203. source: "./media/characters/cat/lopunny-front.svg",
  30204. extra: 1782 / 1469,
  30205. bottom: 38 / 1820
  30206. },
  30207. form: "lopunny",
  30208. default: true
  30209. },
  30210. lopunnyBack: {
  30211. height: math.unit(5, "feet"),
  30212. name: "Lopunny (Back)",
  30213. image: {
  30214. source: "./media/characters/cat/lopunny-back.svg",
  30215. extra: 1660 / 1490,
  30216. bottom: 25 / 1685
  30217. },
  30218. form: "lopunny"
  30219. },
  30220. },
  30221. [
  30222. {
  30223. name: "Really small",
  30224. height: math.unit(1, "nm")
  30225. },
  30226. {
  30227. name: "Micro",
  30228. height: math.unit(5, "inches")
  30229. },
  30230. {
  30231. name: "Normal",
  30232. height: math.unit(5 + 6 / 12, "feet"),
  30233. default: true
  30234. },
  30235. {
  30236. name: "Macro",
  30237. height: math.unit(50, "feet")
  30238. },
  30239. {
  30240. name: "Macro+",
  30241. height: math.unit(150, "feet")
  30242. },
  30243. {
  30244. name: "Megamacro",
  30245. height: math.unit(100, "miles")
  30246. },
  30247. ]
  30248. ))
  30249. characterMakers.push(() => makeCharacter(
  30250. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30251. {
  30252. front: {
  30253. height: math.unit(63.4, "meters"),
  30254. weight: math.unit(3.28349e+6, "kilograms"),
  30255. name: "Front",
  30256. image: {
  30257. source: "./media/characters/kirina-violet/front.svg",
  30258. extra: 2812 / 2725,
  30259. bottom: 0 / 2812
  30260. }
  30261. },
  30262. back: {
  30263. height: math.unit(63.4, "meters"),
  30264. weight: math.unit(3.28349e+6, "kilograms"),
  30265. name: "Back",
  30266. image: {
  30267. source: "./media/characters/kirina-violet/back.svg",
  30268. extra: 2812 / 2725,
  30269. bottom: 0 / 2812
  30270. }
  30271. },
  30272. mouth: {
  30273. height: math.unit(4.35, "meters"),
  30274. name: "Mouth",
  30275. image: {
  30276. source: "./media/characters/kirina-violet/mouth.svg"
  30277. }
  30278. },
  30279. paw: {
  30280. height: math.unit(5.6, "meters"),
  30281. name: "Paw",
  30282. image: {
  30283. source: "./media/characters/kirina-violet/paw.svg"
  30284. }
  30285. },
  30286. tail: {
  30287. height: math.unit(18, "meters"),
  30288. name: "Tail",
  30289. image: {
  30290. source: "./media/characters/kirina-violet/tail.svg"
  30291. }
  30292. },
  30293. },
  30294. [
  30295. {
  30296. name: "Macro",
  30297. height: math.unit(63.4, "meters"),
  30298. default: true
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(75, "feet"),
  30307. name: "Front",
  30308. image: {
  30309. source: "./media/characters/cat-gigachu/front.svg",
  30310. extra: 1239/1027,
  30311. bottom: 32/1271
  30312. }
  30313. },
  30314. back: {
  30315. height: math.unit(75, "feet"),
  30316. name: "Back",
  30317. image: {
  30318. source: "./media/characters/cat-gigachu/back.svg",
  30319. extra: 1229/1030,
  30320. bottom: 9/1238
  30321. }
  30322. },
  30323. },
  30324. [
  30325. {
  30326. name: "Dynamax",
  30327. height: math.unit(75, "feet"),
  30328. default: true
  30329. },
  30330. ]
  30331. ))
  30332. characterMakers.push(() => makeCharacter(
  30333. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30334. {
  30335. front: {
  30336. height: math.unit(6, "feet"),
  30337. weight: math.unit(150, "lb"),
  30338. name: "Front",
  30339. image: {
  30340. source: "./media/characters/sfaiyan/front.svg",
  30341. extra: 999 / 978,
  30342. bottom: 5 / 1004
  30343. }
  30344. },
  30345. },
  30346. [
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(1.82, "meters")
  30350. },
  30351. {
  30352. name: "Giant",
  30353. height: math.unit(2.27, "km"),
  30354. default: true
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30360. {
  30361. front: {
  30362. height: math.unit(179, "cm"),
  30363. weight: math.unit(100, "kg"),
  30364. name: "Front",
  30365. image: {
  30366. source: "./media/characters/raunehkeli/front.svg",
  30367. extra: 1934 / 1926,
  30368. bottom: 0 / 1934
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Normal",
  30375. height: math.unit(179, "cm")
  30376. },
  30377. {
  30378. name: "Maximum",
  30379. height: math.unit(575, "meters"),
  30380. default: true
  30381. },
  30382. ]
  30383. ))
  30384. characterMakers.push(() => makeCharacter(
  30385. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30386. {
  30387. front: {
  30388. height: math.unit(6, "feet"),
  30389. weight: math.unit(150, "lb"),
  30390. name: "Front",
  30391. image: {
  30392. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30393. extra: 2625 / 2518,
  30394. bottom: 60 / 2685
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Normal",
  30401. height: math.unit(6 + 2 / 12, "feet")
  30402. },
  30403. {
  30404. name: "Macro",
  30405. height: math.unit(1180, "feet"),
  30406. default: true
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30412. {
  30413. front: {
  30414. height: math.unit(5 + 6 / 12, "feet"),
  30415. weight: math.unit(108, "lb"),
  30416. name: "Front",
  30417. image: {
  30418. source: "./media/characters/lilith-zott/front.svg",
  30419. extra: 2510 / 2238,
  30420. bottom: 100 / 2610
  30421. }
  30422. },
  30423. frontDressed: {
  30424. height: math.unit(5 + 6 / 12, "feet"),
  30425. weight: math.unit(108, "lb"),
  30426. name: "Front (Dressed)",
  30427. image: {
  30428. source: "./media/characters/lilith-zott/front-dressed.svg",
  30429. extra: 2510 / 2238,
  30430. bottom: 100 / 2610
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(5 + 6 / 12, "feet")
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(1030, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(6, "feet"),
  30451. weight: math.unit(150, "lb"),
  30452. name: "Front",
  30453. image: {
  30454. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30455. extra: 2567 / 2435,
  30456. bottom: 39 / 2606
  30457. }
  30458. },
  30459. frontSuper: {
  30460. height: math.unit(6, "feet"),
  30461. name: "Front (Super)",
  30462. image: {
  30463. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30464. extra: 2567 / 2435,
  30465. bottom: 39 / 2606
  30466. }
  30467. },
  30468. },
  30469. [
  30470. {
  30471. name: "Normal",
  30472. height: math.unit(5 + 10 / 12, "feet")
  30473. },
  30474. {
  30475. name: "Macro",
  30476. height: math.unit(1100, "feet"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(100, "miles"),
  30486. name: "Front",
  30487. image: {
  30488. source: "./media/characters/sona/front.svg",
  30489. extra: 2433 / 2201,
  30490. bottom: 53 / 2486
  30491. }
  30492. },
  30493. foot: {
  30494. height: math.unit(16.1, "miles"),
  30495. name: "Foot",
  30496. image: {
  30497. source: "./media/characters/sona/foot.svg"
  30498. }
  30499. },
  30500. },
  30501. [
  30502. {
  30503. name: "Macro",
  30504. height: math.unit(100, "miles"),
  30505. default: true
  30506. },
  30507. ]
  30508. ))
  30509. characterMakers.push(() => makeCharacter(
  30510. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30511. {
  30512. front: {
  30513. height: math.unit(6, "feet"),
  30514. weight: math.unit(150, "lb"),
  30515. name: "Front",
  30516. image: {
  30517. source: "./media/characters/bailey/front.svg",
  30518. extra: 1778 / 1724,
  30519. bottom: 30 / 1808
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Micro",
  30526. height: math.unit(4, "inches")
  30527. },
  30528. {
  30529. name: "Normal",
  30530. height: math.unit(5 + 5 / 12, "feet"),
  30531. default: true
  30532. },
  30533. {
  30534. name: "Macro",
  30535. height: math.unit(250, "feet")
  30536. },
  30537. {
  30538. name: "Megamacro",
  30539. height: math.unit(100, "miles")
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30545. {
  30546. front: {
  30547. height: math.unit(5 + 2 / 12, "feet"),
  30548. weight: math.unit(120, "lb"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/snaps/front.svg",
  30552. extra: 2370 / 2177,
  30553. bottom: 48 / 2418
  30554. }
  30555. },
  30556. back: {
  30557. height: math.unit(5 + 2 / 12, "feet"),
  30558. weight: math.unit(120, "lb"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/snaps/back.svg",
  30562. extra: 2408 / 2258,
  30563. bottom: 15 / 2423
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Micro",
  30570. height: math.unit(9, "inches")
  30571. },
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(5 + 2 / 12, "feet"),
  30575. default: true
  30576. },
  30577. {
  30578. name: "Mini Macro",
  30579. height: math.unit(10, "feet")
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30585. {
  30586. front: {
  30587. height: math.unit(1.8, "meters"),
  30588. weight: math.unit(85, "kg"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/azteck/front.svg",
  30592. extra: 2815 / 2625,
  30593. bottom: 89 / 2904
  30594. }
  30595. },
  30596. back: {
  30597. height: math.unit(1.8, "meters"),
  30598. weight: math.unit(85, "kg"),
  30599. name: "Back",
  30600. image: {
  30601. source: "./media/characters/azteck/back.svg",
  30602. extra: 2856 / 2648,
  30603. bottom: 85 / 2941
  30604. }
  30605. },
  30606. frontDressed: {
  30607. height: math.unit(1.8, "meters"),
  30608. weight: math.unit(85, "kg"),
  30609. name: "Front (Dressed)",
  30610. image: {
  30611. source: "./media/characters/azteck/front-dressed.svg",
  30612. extra: 2147 / 2003,
  30613. bottom: 68 / 2215
  30614. }
  30615. },
  30616. head: {
  30617. height: math.unit(0.47, "meters"),
  30618. weight: math.unit(85, "kg"),
  30619. name: "Head",
  30620. image: {
  30621. source: "./media/characters/azteck/head.svg"
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Bite sized",
  30628. height: math.unit(16, "cm")
  30629. },
  30630. {
  30631. name: "Normal",
  30632. height: math.unit(1.8, "meters"),
  30633. default: true
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(6, "feet"),
  30642. weight: math.unit(150, "lb"),
  30643. name: "Front",
  30644. image: {
  30645. source: "./media/characters/pidge/front.svg",
  30646. extra: 1936/1820,
  30647. bottom: 0/1936
  30648. }
  30649. },
  30650. back: {
  30651. height: math.unit(6, "feet"),
  30652. weight: math.unit(150, "lb"),
  30653. name: "Back",
  30654. image: {
  30655. source: "./media/characters/pidge/back.svg",
  30656. extra: 1938/1843,
  30657. bottom: 0/1938
  30658. }
  30659. },
  30660. casual: {
  30661. height: math.unit(6, "feet"),
  30662. weight: math.unit(150, "lb"),
  30663. name: "Casual",
  30664. image: {
  30665. source: "./media/characters/pidge/casual.svg",
  30666. extra: 1936/1820,
  30667. bottom: 0/1936
  30668. }
  30669. },
  30670. tech: {
  30671. height: math.unit(6, "feet"),
  30672. weight: math.unit(150, "lb"),
  30673. name: "Tech",
  30674. image: {
  30675. source: "./media/characters/pidge/tech.svg",
  30676. extra: 1802/1682,
  30677. bottom: 0/1802
  30678. }
  30679. },
  30680. head: {
  30681. height: math.unit(1.61, "feet"),
  30682. name: "Head",
  30683. image: {
  30684. source: "./media/characters/pidge/head.svg"
  30685. }
  30686. },
  30687. collar: {
  30688. height: math.unit(0.82, "feet"),
  30689. name: "Collar",
  30690. image: {
  30691. source: "./media/characters/pidge/collar.svg"
  30692. }
  30693. },
  30694. },
  30695. [
  30696. {
  30697. name: "Macro",
  30698. height: math.unit(2, "mile"),
  30699. default: true
  30700. },
  30701. {
  30702. name: "PUPPY",
  30703. height: math.unit(20, "miles")
  30704. },
  30705. ]
  30706. ))
  30707. characterMakers.push(() => makeCharacter(
  30708. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30709. {
  30710. front: {
  30711. height: math.unit(6, "feet"),
  30712. weight: math.unit(150, "lb"),
  30713. name: "Front",
  30714. image: {
  30715. source: "./media/characters/en/front.svg",
  30716. extra: 1697 / 1563,
  30717. bottom: 103 / 1800
  30718. }
  30719. },
  30720. back: {
  30721. height: math.unit(6, "feet"),
  30722. weight: math.unit(150, "lb"),
  30723. name: "Back",
  30724. image: {
  30725. source: "./media/characters/en/back.svg",
  30726. extra: 1700 / 1570,
  30727. bottom: 51 / 1751
  30728. }
  30729. },
  30730. frontDressed: {
  30731. height: math.unit(6, "feet"),
  30732. weight: math.unit(150, "lb"),
  30733. name: "Front (Dressed)",
  30734. image: {
  30735. source: "./media/characters/en/front-dressed.svg",
  30736. extra: 1697 / 1563,
  30737. bottom: 103 / 1800
  30738. }
  30739. },
  30740. backDressed: {
  30741. height: math.unit(6, "feet"),
  30742. weight: math.unit(150, "lb"),
  30743. name: "Back (Dressed)",
  30744. image: {
  30745. source: "./media/characters/en/back-dressed.svg",
  30746. extra: 1700 / 1570,
  30747. bottom: 51 / 1751
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Macro",
  30754. height: math.unit(210, "feet"),
  30755. default: true
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(6, "feet"),
  30764. weight: math.unit(150, "lb"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/haze-orris/front.svg",
  30768. extra: 3975 / 3525,
  30769. bottom: 137 / 4112
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Micro",
  30776. height: math.unit(150, "mm"),
  30777. default: true
  30778. },
  30779. ]
  30780. ))
  30781. characterMakers.push(() => makeCharacter(
  30782. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30783. {
  30784. front: {
  30785. height: math.unit(6, "feet"),
  30786. weight: math.unit(150, "lb"),
  30787. name: "Front",
  30788. image: {
  30789. source: "./media/characters/casselene-yaro/front.svg",
  30790. extra: 4721 / 4541,
  30791. bottom: 82 / 4803
  30792. }
  30793. },
  30794. back: {
  30795. height: math.unit(6, "feet"),
  30796. weight: math.unit(150, "lb"),
  30797. name: "Back",
  30798. image: {
  30799. source: "./media/characters/casselene-yaro/back.svg",
  30800. extra: 4569 / 4377,
  30801. bottom: 69 / 4638
  30802. }
  30803. },
  30804. dressed: {
  30805. height: math.unit(6, "feet"),
  30806. weight: math.unit(150, "lb"),
  30807. name: "Dressed",
  30808. image: {
  30809. source: "./media/characters/casselene-yaro/dressed.svg",
  30810. extra: 4721 / 4541,
  30811. bottom: 82 / 4803
  30812. }
  30813. },
  30814. maw: {
  30815. height: math.unit(1, "feet"),
  30816. name: "Maw",
  30817. image: {
  30818. source: "./media/characters/casselene-yaro/maw.svg"
  30819. }
  30820. },
  30821. },
  30822. [
  30823. {
  30824. name: "Macro",
  30825. height: math.unit(190, "feet"),
  30826. default: true
  30827. },
  30828. ]
  30829. ))
  30830. characterMakers.push(() => makeCharacter(
  30831. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30832. {
  30833. front: {
  30834. height: math.unit(10, "feet"),
  30835. weight: math.unit(15015, "lb"),
  30836. name: "Front",
  30837. image: {
  30838. source: "./media/characters/platine/front.svg",
  30839. extra: 1741/1650,
  30840. bottom: 84/1825
  30841. }
  30842. },
  30843. side: {
  30844. height: math.unit(10, "feet"),
  30845. weight: math.unit(15015, "lb"),
  30846. name: "Side",
  30847. image: {
  30848. source: "./media/characters/platine/side.svg",
  30849. extra: 1790/1705,
  30850. bottom: 29/1819
  30851. }
  30852. },
  30853. },
  30854. [
  30855. {
  30856. name: "Normal",
  30857. height: math.unit(10, "feet"),
  30858. default: true
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(100, "feet")
  30863. },
  30864. {
  30865. name: "Megamacro",
  30866. height: math.unit(1000, "feet")
  30867. },
  30868. ]
  30869. ))
  30870. characterMakers.push(() => makeCharacter(
  30871. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30872. {
  30873. front: {
  30874. height: math.unit(15 + 5 / 12, "feet"),
  30875. weight: math.unit(4600, "lb"),
  30876. name: "Front",
  30877. image: {
  30878. source: "./media/characters/neapolitan-ananassa/front.svg",
  30879. extra: 2903 / 2736,
  30880. bottom: 0 / 2903
  30881. }
  30882. },
  30883. side: {
  30884. height: math.unit(15 + 5 / 12, "feet"),
  30885. weight: math.unit(4600, "lb"),
  30886. name: "Side",
  30887. image: {
  30888. source: "./media/characters/neapolitan-ananassa/side.svg",
  30889. extra: 2925 / 2719,
  30890. bottom: 0 / 2925
  30891. }
  30892. },
  30893. back: {
  30894. height: math.unit(15 + 5 / 12, "feet"),
  30895. weight: math.unit(4600, "lb"),
  30896. name: "Back",
  30897. image: {
  30898. source: "./media/characters/neapolitan-ananassa/back.svg",
  30899. extra: 2903 / 2736,
  30900. bottom: 0 / 2903
  30901. }
  30902. },
  30903. },
  30904. [
  30905. {
  30906. name: "Normal",
  30907. height: math.unit(15 + 5 / 12, "feet"),
  30908. default: true
  30909. },
  30910. {
  30911. name: "Post-Millenium",
  30912. height: math.unit(35 + 5 / 12, "feet")
  30913. },
  30914. {
  30915. name: "Post-Era",
  30916. height: math.unit(450 + 5 / 12, "feet")
  30917. },
  30918. ]
  30919. ))
  30920. characterMakers.push(() => makeCharacter(
  30921. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30922. {
  30923. front: {
  30924. height: math.unit(300, "meters"),
  30925. weight: math.unit(125000, "tonnes"),
  30926. name: "Front",
  30927. image: {
  30928. source: "./media/characters/pazuzu/front.svg",
  30929. extra: 877 / 794,
  30930. bottom: 47 / 924
  30931. }
  30932. },
  30933. },
  30934. [
  30935. {
  30936. name: "Macro",
  30937. height: math.unit(300, "meters"),
  30938. default: true
  30939. },
  30940. ]
  30941. ))
  30942. characterMakers.push(() => makeCharacter(
  30943. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30944. {
  30945. side: {
  30946. height: math.unit(10 + 7 / 12, "feet"),
  30947. weight: math.unit(2.5, "tons"),
  30948. name: "Side",
  30949. image: {
  30950. source: "./media/characters/aasha/side.svg",
  30951. extra: 1345 / 1245,
  30952. bottom: 111 / 1456
  30953. }
  30954. },
  30955. back: {
  30956. height: math.unit(10 + 7 / 12, "feet"),
  30957. weight: math.unit(2.5, "tons"),
  30958. name: "Back",
  30959. image: {
  30960. source: "./media/characters/aasha/back.svg",
  30961. extra: 1133 / 1057,
  30962. bottom: 257 / 1390
  30963. }
  30964. },
  30965. },
  30966. [
  30967. {
  30968. name: "Normal",
  30969. height: math.unit(10 + 7 / 12, "feet"),
  30970. default: true
  30971. },
  30972. ]
  30973. ))
  30974. characterMakers.push(() => makeCharacter(
  30975. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30976. {
  30977. front: {
  30978. height: math.unit(6 + 3 / 12, "feet"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/nevan/front.svg",
  30982. extra: 704 / 704,
  30983. bottom: 28 / 732
  30984. }
  30985. },
  30986. back: {
  30987. height: math.unit(6 + 3 / 12, "feet"),
  30988. name: "Back",
  30989. image: {
  30990. source: "./media/characters/nevan/back.svg",
  30991. extra: 714 / 714,
  30992. bottom: 21 / 735
  30993. }
  30994. },
  30995. frontFlaccid: {
  30996. height: math.unit(6 + 3 / 12, "feet"),
  30997. name: "Front (Flaccid)",
  30998. image: {
  30999. source: "./media/characters/nevan/front-flaccid.svg",
  31000. extra: 704 / 704,
  31001. bottom: 28 / 732
  31002. }
  31003. },
  31004. frontErect: {
  31005. height: math.unit(6 + 3 / 12, "feet"),
  31006. name: "Front (Erect)",
  31007. image: {
  31008. source: "./media/characters/nevan/front-erect.svg",
  31009. extra: 704 / 704,
  31010. bottom: 28 / 732
  31011. }
  31012. },
  31013. backFlaccid: {
  31014. height: math.unit(6 + 3 / 12, "feet"),
  31015. name: "Back (Flaccid)",
  31016. image: {
  31017. source: "./media/characters/nevan/back-flaccid.svg",
  31018. extra: 714 / 714,
  31019. bottom: 21 / 735
  31020. }
  31021. },
  31022. },
  31023. [
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(6 + 3 / 12, "feet"),
  31027. default: true
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(4, "feet"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/arhan/front.svg",
  31039. extra: 3368 / 3133,
  31040. bottom: 0 / 3368
  31041. }
  31042. },
  31043. side: {
  31044. height: math.unit(4, "feet"),
  31045. name: "Side",
  31046. image: {
  31047. source: "./media/characters/arhan/side.svg",
  31048. extra: 3347 / 3105,
  31049. bottom: 0 / 3347
  31050. }
  31051. },
  31052. tongue: {
  31053. height: math.unit(1.42, "feet"),
  31054. name: "Tongue",
  31055. image: {
  31056. source: "./media/characters/arhan/tongue.svg"
  31057. }
  31058. },
  31059. head: {
  31060. height: math.unit(0.85, "feet"),
  31061. name: "Head",
  31062. image: {
  31063. source: "./media/characters/arhan/head.svg"
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(4, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(5 + 7.5 / 12, "feet"),
  31080. weight: math.unit(120, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/digi-duncan/front.svg",
  31084. extra: 330 / 326,
  31085. bottom: 16 / 346
  31086. }
  31087. },
  31088. side: {
  31089. height: math.unit(5 + 7.5 / 12, "feet"),
  31090. weight: math.unit(120, "lb"),
  31091. name: "Side",
  31092. image: {
  31093. source: "./media/characters/digi-duncan/side.svg",
  31094. extra: 341 / 337,
  31095. bottom: 1 / 342
  31096. }
  31097. },
  31098. back: {
  31099. height: math.unit(5 + 7.5 / 12, "feet"),
  31100. weight: math.unit(120, "lb"),
  31101. name: "Back",
  31102. image: {
  31103. source: "./media/characters/digi-duncan/back.svg",
  31104. extra: 330 / 326,
  31105. bottom: 12 / 342
  31106. }
  31107. },
  31108. },
  31109. [
  31110. {
  31111. name: "Speck",
  31112. height: math.unit(0.25, "mm")
  31113. },
  31114. {
  31115. name: "Micro",
  31116. height: math.unit(5, "mm")
  31117. },
  31118. {
  31119. name: "Tiny",
  31120. height: math.unit(0.5, "inches"),
  31121. default: true
  31122. },
  31123. {
  31124. name: "Human",
  31125. height: math.unit(5 + 7.5 / 12, "feet")
  31126. },
  31127. {
  31128. name: "Minigiant",
  31129. height: math.unit(8 + 5.25, "feet")
  31130. },
  31131. {
  31132. name: "Giant",
  31133. height: math.unit(2000, "feet")
  31134. },
  31135. {
  31136. name: "Mega",
  31137. height: math.unit(371.1, "miles")
  31138. },
  31139. ]
  31140. ))
  31141. characterMakers.push(() => makeCharacter(
  31142. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31143. {
  31144. front: {
  31145. height: math.unit(2, "meters"),
  31146. weight: math.unit(350, "kg"),
  31147. name: "Front",
  31148. image: {
  31149. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31150. extra: 898 / 838,
  31151. bottom: 9 / 907
  31152. }
  31153. },
  31154. },
  31155. [
  31156. {
  31157. name: "Micro",
  31158. height: math.unit(8, "meters")
  31159. },
  31160. {
  31161. name: "Normal",
  31162. height: math.unit(50, "meters"),
  31163. default: true
  31164. },
  31165. {
  31166. name: "Macro",
  31167. height: math.unit(500, "meters")
  31168. },
  31169. ]
  31170. ))
  31171. characterMakers.push(() => makeCharacter(
  31172. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31173. {
  31174. front: {
  31175. height: math.unit(6 + 6 / 12, "feet"),
  31176. name: "Front",
  31177. image: {
  31178. source: "./media/characters/khardesh/front.svg",
  31179. extra: 1788/1596,
  31180. bottom: 66/1854
  31181. }
  31182. },
  31183. back: {
  31184. height: math.unit(6 + 6 / 12, "feet"),
  31185. name: "Back",
  31186. image: {
  31187. source: "./media/characters/khardesh/back.svg",
  31188. extra: 1781/1584,
  31189. bottom: 68/1849
  31190. }
  31191. },
  31192. },
  31193. [
  31194. {
  31195. name: "Normal",
  31196. height: math.unit(6 + 6 / 12, "feet"),
  31197. default: true
  31198. },
  31199. {
  31200. name: "Normal+",
  31201. height: math.unit(4, "meters")
  31202. },
  31203. {
  31204. name: "Macro",
  31205. height: math.unit(50, "meters")
  31206. },
  31207. {
  31208. name: "Macro+",
  31209. height: math.unit(100, "meters")
  31210. },
  31211. {
  31212. name: "Megamacro",
  31213. height: math.unit(20, "km")
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(6, "feet"),
  31222. weight: math.unit(150, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/kosho/front.svg",
  31226. extra: 1847 / 1847,
  31227. bottom: 86 / 1933
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Second-stage micro",
  31234. height: math.unit(0.5, "inches")
  31235. },
  31236. {
  31237. name: "First-stage micro",
  31238. height: math.unit(6, "inches")
  31239. },
  31240. {
  31241. name: "Normal",
  31242. height: math.unit(6, "feet"),
  31243. default: true
  31244. },
  31245. {
  31246. name: "First-stage macro",
  31247. height: math.unit(72, "feet")
  31248. },
  31249. {
  31250. name: "Second-stage macro",
  31251. height: math.unit(864, "feet")
  31252. },
  31253. ]
  31254. ))
  31255. characterMakers.push(() => makeCharacter(
  31256. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31257. {
  31258. normal: {
  31259. height: math.unit(4 + 6 / 12, "feet"),
  31260. name: "Normal",
  31261. image: {
  31262. source: "./media/characters/hydra/normal.svg",
  31263. extra: 2833 / 2634,
  31264. bottom: 68 / 2901
  31265. }
  31266. },
  31267. smol: {
  31268. height: math.unit(0.705, "inches"),
  31269. name: "Smol",
  31270. image: {
  31271. source: "./media/characters/hydra/smol.svg",
  31272. extra: 2715 / 2540,
  31273. bottom: 0 / 2715
  31274. }
  31275. },
  31276. },
  31277. [
  31278. {
  31279. name: "Normal",
  31280. height: math.unit(4 + 6 / 12, "feet"),
  31281. default: true
  31282. }
  31283. ]
  31284. ))
  31285. characterMakers.push(() => makeCharacter(
  31286. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31287. {
  31288. front: {
  31289. height: math.unit(0.6, "cm"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/daz/front.svg",
  31293. extra: 1682 / 1164,
  31294. bottom: 42 / 1724
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(0.6, "cm"),
  31302. default: true
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(6, "feet"),
  31311. weight: math.unit(235, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/theo-pangolin/front.svg",
  31315. extra: 1996 / 1969,
  31316. bottom: 115 / 2111
  31317. }
  31318. },
  31319. back: {
  31320. height: math.unit(6, "feet"),
  31321. weight: math.unit(235, "lb"),
  31322. name: "Back",
  31323. image: {
  31324. source: "./media/characters/theo-pangolin/back.svg",
  31325. extra: 1979 / 1979,
  31326. bottom: 40 / 2019
  31327. }
  31328. },
  31329. feral: {
  31330. height: math.unit(2, "feet"),
  31331. weight: math.unit(30, "lb"),
  31332. name: "Feral",
  31333. image: {
  31334. source: "./media/characters/theo-pangolin/feral.svg",
  31335. extra: 803 / 791,
  31336. bottom: 181 / 984
  31337. }
  31338. },
  31339. footFive: {
  31340. height: math.unit(1.43, "feet"),
  31341. name: "Foot (Five Toes)",
  31342. image: {
  31343. source: "./media/characters/theo-pangolin/foot-five.svg"
  31344. }
  31345. },
  31346. footFour: {
  31347. height: math.unit(1.43, "feet"),
  31348. name: "Foot (Four Toes)",
  31349. image: {
  31350. source: "./media/characters/theo-pangolin/foot-four.svg"
  31351. }
  31352. },
  31353. handFour: {
  31354. height: math.unit(0.81, "feet"),
  31355. name: "Hand (Four Fingers)",
  31356. image: {
  31357. source: "./media/characters/theo-pangolin/hand-four.svg"
  31358. }
  31359. },
  31360. handThree: {
  31361. height: math.unit(0.81, "feet"),
  31362. name: "Hand (Three Fingers)",
  31363. image: {
  31364. source: "./media/characters/theo-pangolin/hand-three.svg"
  31365. }
  31366. },
  31367. headFront: {
  31368. height: math.unit(1.37, "feet"),
  31369. name: "Head (Front)",
  31370. image: {
  31371. source: "./media/characters/theo-pangolin/head-front.svg"
  31372. }
  31373. },
  31374. headSide: {
  31375. height: math.unit(1.43, "feet"),
  31376. name: "Head (Side)",
  31377. image: {
  31378. source: "./media/characters/theo-pangolin/head-side.svg"
  31379. }
  31380. },
  31381. tongue: {
  31382. height: math.unit(2.29, "feet"),
  31383. name: "Tongue",
  31384. image: {
  31385. source: "./media/characters/theo-pangolin/tongue.svg"
  31386. }
  31387. },
  31388. },
  31389. [
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(6, "feet")
  31393. },
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(400, "feet"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(6, "inches"),
  31406. weight: math.unit(0.036, "kg"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/renée/front.svg",
  31410. extra: 900 / 886,
  31411. bottom: 8 / 908
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Nano",
  31418. height: math.unit(1, "nm")
  31419. },
  31420. {
  31421. name: "Micro",
  31422. height: math.unit(1, "mm")
  31423. },
  31424. {
  31425. name: "Normal",
  31426. height: math.unit(6, "inches")
  31427. },
  31428. {
  31429. name: "Macro",
  31430. height: math.unit(2000, "feet"),
  31431. default: true
  31432. },
  31433. {
  31434. name: "Megamacro",
  31435. height: math.unit(2, "km")
  31436. },
  31437. {
  31438. name: "Gigamacro",
  31439. height: math.unit(2000, "km")
  31440. },
  31441. {
  31442. name: "Teramacro",
  31443. height: math.unit(250000, "km")
  31444. },
  31445. ]
  31446. ))
  31447. characterMakers.push(() => makeCharacter(
  31448. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31449. {
  31450. front: {
  31451. height: math.unit(4, "meters"),
  31452. weight: math.unit(150, "kg"),
  31453. name: "Front",
  31454. image: {
  31455. source: "./media/characters/caledvwlch/front.svg",
  31456. extra: 1760 / 1551,
  31457. bottom: 28 / 1788
  31458. }
  31459. },
  31460. side: {
  31461. height: math.unit(4, "meters"),
  31462. weight: math.unit(150, "kg"),
  31463. name: "Side",
  31464. image: {
  31465. source: "./media/characters/caledvwlch/side.svg",
  31466. extra: 1605 / 1536,
  31467. bottom: 31 / 1636
  31468. }
  31469. },
  31470. back: {
  31471. height: math.unit(4, "meters"),
  31472. weight: math.unit(150, "kg"),
  31473. name: "Back",
  31474. image: {
  31475. source: "./media/characters/caledvwlch/back.svg",
  31476. extra: 1635 / 1565,
  31477. bottom: 27 / 1662
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "\"Incognito\"",
  31484. height: math.unit(4, "meters")
  31485. },
  31486. {
  31487. name: "Small rampage",
  31488. height: math.unit(600, "meters")
  31489. },
  31490. {
  31491. name: "Mega",
  31492. height: math.unit(30, "km")
  31493. },
  31494. {
  31495. name: "Home-size",
  31496. height: math.unit(50, "km"),
  31497. default: true
  31498. },
  31499. {
  31500. name: "Giga",
  31501. height: math.unit(300, "km")
  31502. },
  31503. {
  31504. name: "Lounging",
  31505. height: math.unit(11000, "km")
  31506. },
  31507. {
  31508. name: "Planet snacking",
  31509. height: math.unit(2000000, "km")
  31510. },
  31511. ]
  31512. ))
  31513. characterMakers.push(() => makeCharacter(
  31514. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31515. {
  31516. front: {
  31517. height: math.unit(6, "feet"),
  31518. weight: math.unit(215, "lb"),
  31519. name: "Front",
  31520. image: {
  31521. source: "./media/characters/sapphire-svell/front.svg",
  31522. extra: 495 / 455,
  31523. bottom: 20 / 515
  31524. }
  31525. },
  31526. back: {
  31527. height: math.unit(6, "feet"),
  31528. weight: math.unit(216, "lb"),
  31529. name: "Back",
  31530. image: {
  31531. source: "./media/characters/sapphire-svell/back.svg",
  31532. extra: 497 / 477,
  31533. bottom: 7 / 504
  31534. }
  31535. },
  31536. maw: {
  31537. height: math.unit(1.57, "feet"),
  31538. name: "Maw",
  31539. image: {
  31540. source: "./media/characters/sapphire-svell/maw.svg"
  31541. }
  31542. },
  31543. foot: {
  31544. height: math.unit(1.07, "feet"),
  31545. name: "Foot",
  31546. image: {
  31547. source: "./media/characters/sapphire-svell/foot.svg"
  31548. }
  31549. },
  31550. toering: {
  31551. height: math.unit(1.7, "inch"),
  31552. name: "Toering",
  31553. image: {
  31554. source: "./media/characters/sapphire-svell/toering.svg"
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Normal",
  31561. height: math.unit(300, "feet"),
  31562. default: true
  31563. },
  31564. {
  31565. name: "Augmented",
  31566. height: math.unit(1250, "feet")
  31567. },
  31568. {
  31569. name: "Unleashed",
  31570. height: math.unit(3000, "feet")
  31571. },
  31572. ]
  31573. ))
  31574. characterMakers.push(() => makeCharacter(
  31575. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31576. {
  31577. side: {
  31578. height: math.unit(2 + 3 / 12, "feet"),
  31579. weight: math.unit(110, "lb"),
  31580. name: "Side",
  31581. image: {
  31582. source: "./media/characters/glitch-flux/side.svg",
  31583. extra: 997 / 805,
  31584. bottom: 20 / 1017
  31585. }
  31586. },
  31587. },
  31588. [
  31589. {
  31590. name: "Normal",
  31591. height: math.unit(2 + 3 / 12, "feet"),
  31592. default: true
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(4, "meters"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/mid/front.svg",
  31604. extra: 507 / 476,
  31605. bottom: 17 / 524
  31606. }
  31607. },
  31608. back: {
  31609. height: math.unit(4, "meters"),
  31610. name: "Back",
  31611. image: {
  31612. source: "./media/characters/mid/back.svg",
  31613. extra: 519 / 487,
  31614. bottom: 7 / 526
  31615. }
  31616. },
  31617. stuck: {
  31618. height: math.unit(2.2, "meters"),
  31619. name: "Stuck",
  31620. image: {
  31621. source: "./media/characters/mid/stuck.svg",
  31622. extra: 1951 / 1869,
  31623. bottom: 88 / 2039
  31624. }
  31625. }
  31626. },
  31627. [
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(4, "meters"),
  31631. default: true
  31632. },
  31633. {
  31634. name: "Big",
  31635. height: math.unit(10, "meters")
  31636. },
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(800, "meters")
  31640. },
  31641. {
  31642. name: "Megamacro",
  31643. height: math.unit(100, "km")
  31644. },
  31645. {
  31646. name: "Overgrown",
  31647. height: math.unit(1, "parsec")
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(2.5, "meters"),
  31656. weight: math.unit(225, "kg"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/iris/front.svg",
  31660. extra: 3348 / 3251,
  31661. bottom: 205 / 3553
  31662. }
  31663. },
  31664. maw: {
  31665. height: math.unit(0.56, "meter"),
  31666. name: "Maw",
  31667. image: {
  31668. source: "./media/characters/iris/maw.svg"
  31669. }
  31670. },
  31671. },
  31672. [
  31673. {
  31674. name: "Mewter cat",
  31675. height: math.unit(1.2, "meters")
  31676. },
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(2.5, "meters"),
  31680. default: true
  31681. },
  31682. {
  31683. name: "Minimacro",
  31684. height: math.unit(18, "feet")
  31685. },
  31686. {
  31687. name: "Macro",
  31688. height: math.unit(140, "feet")
  31689. },
  31690. {
  31691. name: "Macro+",
  31692. height: math.unit(180, "meters")
  31693. },
  31694. {
  31695. name: "Megamacro",
  31696. height: math.unit(2746, "meters")
  31697. },
  31698. ]
  31699. ))
  31700. characterMakers.push(() => makeCharacter(
  31701. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31702. {
  31703. front: {
  31704. height: math.unit(6, "feet"),
  31705. weight: math.unit(135, "lb"),
  31706. name: "Front",
  31707. image: {
  31708. source: "./media/characters/axel/front.svg",
  31709. extra: 908 / 908,
  31710. bottom: 58 / 966
  31711. }
  31712. },
  31713. side: {
  31714. height: math.unit(6, "feet"),
  31715. weight: math.unit(135, "lb"),
  31716. name: "Side",
  31717. image: {
  31718. source: "./media/characters/axel/side.svg",
  31719. extra: 958 / 958,
  31720. bottom: 11 / 969
  31721. }
  31722. },
  31723. back: {
  31724. height: math.unit(6, "feet"),
  31725. weight: math.unit(135, "lb"),
  31726. name: "Back",
  31727. image: {
  31728. source: "./media/characters/axel/back.svg",
  31729. extra: 887 / 887,
  31730. bottom: 34 / 921
  31731. }
  31732. },
  31733. head: {
  31734. height: math.unit(1.07, "feet"),
  31735. name: "Head",
  31736. image: {
  31737. source: "./media/characters/axel/head.svg"
  31738. }
  31739. },
  31740. beak: {
  31741. height: math.unit(1.4, "feet"),
  31742. name: "Beak",
  31743. image: {
  31744. source: "./media/characters/axel/beak.svg"
  31745. }
  31746. },
  31747. beakSide: {
  31748. height: math.unit(1.4, "feet"),
  31749. name: "Beak Side",
  31750. image: {
  31751. source: "./media/characters/axel/beak-side.svg"
  31752. }
  31753. },
  31754. sheath: {
  31755. height: math.unit(0.5, "feet"),
  31756. name: "Sheath",
  31757. image: {
  31758. source: "./media/characters/axel/sheath.svg"
  31759. }
  31760. },
  31761. dick: {
  31762. height: math.unit(0.98, "feet"),
  31763. name: "Dick",
  31764. image: {
  31765. source: "./media/characters/axel/dick.svg"
  31766. }
  31767. },
  31768. },
  31769. [
  31770. {
  31771. name: "Macro",
  31772. height: math.unit(68, "meters"),
  31773. default: true
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31779. {
  31780. front: {
  31781. height: math.unit(3.5, "meters"),
  31782. weight: math.unit(1200, "kg"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/joanna/front.svg",
  31786. extra: 1596 / 1488,
  31787. bottom: 29 / 1625
  31788. }
  31789. },
  31790. back: {
  31791. height: math.unit(3.5, "meters"),
  31792. weight: math.unit(1200, "kg"),
  31793. name: "Back",
  31794. image: {
  31795. source: "./media/characters/joanna/back.svg",
  31796. extra: 1594 / 1495,
  31797. bottom: 26 / 1620
  31798. }
  31799. },
  31800. frontShorts: {
  31801. height: math.unit(3.5, "meters"),
  31802. weight: math.unit(1200, "kg"),
  31803. name: "Front (Shorts)",
  31804. image: {
  31805. source: "./media/characters/joanna/front-shorts.svg",
  31806. extra: 1596 / 1488,
  31807. bottom: 29 / 1625
  31808. }
  31809. },
  31810. frontBiker: {
  31811. height: math.unit(3.5, "meters"),
  31812. weight: math.unit(1200, "kg"),
  31813. name: "Front (Biker)",
  31814. image: {
  31815. source: "./media/characters/joanna/front-biker.svg",
  31816. extra: 1596 / 1488,
  31817. bottom: 29 / 1625
  31818. }
  31819. },
  31820. backBiker: {
  31821. height: math.unit(3.5, "meters"),
  31822. weight: math.unit(1200, "kg"),
  31823. name: "Back (Biker)",
  31824. image: {
  31825. source: "./media/characters/joanna/back-biker.svg",
  31826. extra: 1594 / 1495,
  31827. bottom: 88 / 1682
  31828. }
  31829. },
  31830. bikeLeft: {
  31831. height: math.unit(2.4, "meters"),
  31832. weight: math.unit(1600, "kg"),
  31833. name: "Bike (Left)",
  31834. image: {
  31835. source: "./media/characters/joanna/bike-left.svg",
  31836. extra: 720 / 720,
  31837. bottom: 8 / 728
  31838. }
  31839. },
  31840. bikeRight: {
  31841. height: math.unit(2.4, "meters"),
  31842. weight: math.unit(1600, "kg"),
  31843. name: "Bike (Right)",
  31844. image: {
  31845. source: "./media/characters/joanna/bike-right.svg",
  31846. extra: 720 / 720,
  31847. bottom: 8 / 728
  31848. }
  31849. },
  31850. },
  31851. [
  31852. {
  31853. name: "Incognito",
  31854. height: math.unit(3.5, "meters")
  31855. },
  31856. {
  31857. name: "Casual Big",
  31858. height: math.unit(200, "meters")
  31859. },
  31860. {
  31861. name: "Macro",
  31862. height: math.unit(600, "meters")
  31863. },
  31864. {
  31865. name: "Original",
  31866. height: math.unit(20, "km"),
  31867. default: true
  31868. },
  31869. {
  31870. name: "Giga",
  31871. height: math.unit(400, "km")
  31872. },
  31873. {
  31874. name: "Lounging",
  31875. height: math.unit(1500, "km")
  31876. },
  31877. {
  31878. name: "Planetary",
  31879. height: math.unit(200000, "km")
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(6, "feet"),
  31888. weight: math.unit(150, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/hugo-sigil/front.svg",
  31892. extra: 522 / 500,
  31893. bottom: 2 / 524
  31894. }
  31895. },
  31896. back: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(150, "lb"),
  31899. name: "Back",
  31900. image: {
  31901. source: "./media/characters/hugo-sigil/back.svg",
  31902. extra: 519 / 495,
  31903. bottom: 5 / 524
  31904. }
  31905. },
  31906. maw: {
  31907. height: math.unit(1.4, "feet"),
  31908. weight: math.unit(150, "lb"),
  31909. name: "Maw",
  31910. image: {
  31911. source: "./media/characters/hugo-sigil/maw.svg"
  31912. }
  31913. },
  31914. feet: {
  31915. height: math.unit(1.56, "feet"),
  31916. weight: math.unit(150, "lb"),
  31917. name: "Feet",
  31918. image: {
  31919. source: "./media/characters/hugo-sigil/feet.svg",
  31920. extra: 177 / 177,
  31921. bottom: 12 / 189
  31922. }
  31923. },
  31924. },
  31925. [
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(6, "feet")
  31929. },
  31930. {
  31931. name: "Macro",
  31932. height: math.unit(200, "feet"),
  31933. default: true
  31934. },
  31935. ]
  31936. ))
  31937. characterMakers.push(() => makeCharacter(
  31938. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31939. {
  31940. front: {
  31941. height: math.unit(6, "feet"),
  31942. weight: math.unit(150, "lb"),
  31943. name: "Front",
  31944. image: {
  31945. source: "./media/characters/peri/front.svg",
  31946. extra: 2354 / 2233,
  31947. bottom: 49 / 2403
  31948. }
  31949. },
  31950. },
  31951. [
  31952. {
  31953. name: "Really Small",
  31954. height: math.unit(1, "nm")
  31955. },
  31956. {
  31957. name: "Micro",
  31958. height: math.unit(4, "inches")
  31959. },
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(7, "inches"),
  31963. default: true
  31964. },
  31965. {
  31966. name: "Macro",
  31967. height: math.unit(400, "feet")
  31968. },
  31969. {
  31970. name: "Megamacro",
  31971. height: math.unit(100, "miles")
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31977. {
  31978. frontSlim: {
  31979. height: math.unit(7, "feet"),
  31980. name: "Front (Slim)",
  31981. image: {
  31982. source: "./media/characters/issilora/front-slim.svg",
  31983. extra: 529 / 449,
  31984. bottom: 53 / 582
  31985. }
  31986. },
  31987. sideSlim: {
  31988. height: math.unit(7, "feet"),
  31989. name: "Side (Slim)",
  31990. image: {
  31991. source: "./media/characters/issilora/side-slim.svg",
  31992. extra: 570 / 480,
  31993. bottom: 30 / 600
  31994. }
  31995. },
  31996. backSlim: {
  31997. height: math.unit(7, "feet"),
  31998. name: "Back (Slim)",
  31999. image: {
  32000. source: "./media/characters/issilora/back-slim.svg",
  32001. extra: 537 / 455,
  32002. bottom: 46 / 583
  32003. }
  32004. },
  32005. frontBuff: {
  32006. height: math.unit(7, "feet"),
  32007. name: "Front (Buff)",
  32008. image: {
  32009. source: "./media/characters/issilora/front-buff.svg",
  32010. extra: 2310 / 2035,
  32011. bottom: 335 / 2645
  32012. }
  32013. },
  32014. head: {
  32015. height: math.unit(1.94, "feet"),
  32016. name: "Head",
  32017. image: {
  32018. source: "./media/characters/issilora/head.svg"
  32019. }
  32020. },
  32021. },
  32022. [
  32023. {
  32024. name: "Minimum",
  32025. height: math.unit(7, "feet")
  32026. },
  32027. {
  32028. name: "Comfortable",
  32029. height: math.unit(17, "feet")
  32030. },
  32031. {
  32032. name: "Fun Size",
  32033. height: math.unit(47, "feet")
  32034. },
  32035. {
  32036. name: "Natural Macro",
  32037. height: math.unit(137, "feet"),
  32038. default: true
  32039. },
  32040. {
  32041. name: "Maximum Kaiju",
  32042. height: math.unit(397, "feet")
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32048. {
  32049. front: {
  32050. height: math.unit(50 + 9/12, "feet"),
  32051. weight: math.unit(32.8, "tons"),
  32052. name: "Front",
  32053. image: {
  32054. source: "./media/characters/irb'iiritaahn/front.svg",
  32055. extra: 1878/1826,
  32056. bottom: 326/2204
  32057. }
  32058. },
  32059. back: {
  32060. height: math.unit(50 + 9/12, "feet"),
  32061. weight: math.unit(32.8, "tons"),
  32062. name: "Back",
  32063. image: {
  32064. source: "./media/characters/irb'iiritaahn/back.svg",
  32065. extra: 2052/2018,
  32066. bottom: 152/2204
  32067. }
  32068. },
  32069. head: {
  32070. height: math.unit(12.86, "feet"),
  32071. name: "Head",
  32072. image: {
  32073. source: "./media/characters/irb'iiritaahn/head.svg"
  32074. }
  32075. },
  32076. maw: {
  32077. height: math.unit(9.66, "feet"),
  32078. name: "Maw",
  32079. image: {
  32080. source: "./media/characters/irb'iiritaahn/maw.svg"
  32081. }
  32082. },
  32083. frontDick: {
  32084. height: math.unit(8.78461, "feet"),
  32085. name: "Front Dick",
  32086. image: {
  32087. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32088. }
  32089. },
  32090. rearDick: {
  32091. height: math.unit(8.78461, "feet"),
  32092. name: "Rear Dick",
  32093. image: {
  32094. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32095. }
  32096. },
  32097. rearDickUnfolded: {
  32098. height: math.unit(8.78, "feet"),
  32099. name: "Rear Dick (Unfolded)",
  32100. image: {
  32101. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32102. }
  32103. },
  32104. wings: {
  32105. height: math.unit(43, "feet"),
  32106. name: "Wings",
  32107. image: {
  32108. source: "./media/characters/irb'iiritaahn/wings.svg"
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Macro",
  32115. height: math.unit(50 + 9/12, "feet"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32122. {
  32123. front: {
  32124. height: math.unit(205, "cm"),
  32125. weight: math.unit(102, "kg"),
  32126. name: "Front",
  32127. image: {
  32128. source: "./media/characters/irbisgreif/front.svg",
  32129. extra: 785/706,
  32130. bottom: 13/798
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(205, "cm"),
  32135. weight: math.unit(102, "kg"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/irbisgreif/back.svg",
  32139. extra: 713/701,
  32140. bottom: 26/739
  32141. }
  32142. },
  32143. frontDressed: {
  32144. height: math.unit(216, "cm"),
  32145. weight: math.unit(102, "kg"),
  32146. name: "Front-dressed",
  32147. image: {
  32148. source: "./media/characters/irbisgreif/front-dressed.svg",
  32149. extra: 902/776,
  32150. bottom: 14/916
  32151. }
  32152. },
  32153. sideDressed: {
  32154. height: math.unit(195, "cm"),
  32155. weight: math.unit(102, "kg"),
  32156. name: "Side-dressed",
  32157. image: {
  32158. source: "./media/characters/irbisgreif/side-dressed.svg",
  32159. extra: 788/688,
  32160. bottom: 21/809
  32161. }
  32162. },
  32163. backDressed: {
  32164. height: math.unit(216, "cm"),
  32165. weight: math.unit(102, "kg"),
  32166. name: "Back-dressed",
  32167. image: {
  32168. source: "./media/characters/irbisgreif/back-dressed.svg",
  32169. extra: 901/783,
  32170. bottom: 10/911
  32171. }
  32172. },
  32173. dick: {
  32174. height: math.unit(0.49, "feet"),
  32175. name: "Dick",
  32176. image: {
  32177. source: "./media/characters/irbisgreif/dick.svg"
  32178. }
  32179. },
  32180. wingTop: {
  32181. height: math.unit(1.93 , "feet"),
  32182. name: "Wing-top",
  32183. image: {
  32184. source: "./media/characters/irbisgreif/wing-top.svg"
  32185. }
  32186. },
  32187. wingBottom: {
  32188. height: math.unit(1.93 , "feet"),
  32189. name: "Wing-bottom",
  32190. image: {
  32191. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32192. }
  32193. },
  32194. },
  32195. [
  32196. {
  32197. name: "Normal",
  32198. height: math.unit(216, "cm"),
  32199. default: true
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32205. {
  32206. front: {
  32207. height: math.unit(6, "feet"),
  32208. weight: math.unit(150, "lb"),
  32209. name: "Front",
  32210. image: {
  32211. source: "./media/characters/pride/front.svg",
  32212. extra: 1299/1230,
  32213. bottom: 18/1317
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(7, "feet")
  32221. },
  32222. {
  32223. name: "Mini-macro",
  32224. height: math.unit(11, "feet")
  32225. },
  32226. {
  32227. name: "Macro",
  32228. height: math.unit(15, "meters"),
  32229. default: true
  32230. },
  32231. {
  32232. name: "Macro+",
  32233. height: math.unit(40, "meters")
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32239. {
  32240. front: {
  32241. height: math.unit(4 + 2 / 12, "feet"),
  32242. weight: math.unit(95, "lb"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/vaelophis-nyx/front.svg",
  32246. extra: 2532/2330,
  32247. bottom: 0/2532
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(4 + 2 / 12, "feet"),
  32252. weight: math.unit(95, "lb"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/vaelophis-nyx/back.svg",
  32256. extra: 2484/2361,
  32257. bottom: 0/2484
  32258. }
  32259. },
  32260. feralSide: {
  32261. height: math.unit(2 + 1/12, "feet"),
  32262. weight: math.unit(20, "lb"),
  32263. name: "Feral (Side)",
  32264. image: {
  32265. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32266. extra: 1721/1581,
  32267. bottom: 70/1791
  32268. }
  32269. },
  32270. feralLazing: {
  32271. height: math.unit(1.08, "feet"),
  32272. weight: math.unit(20, "lb"),
  32273. name: "Feral (Lazing)",
  32274. image: {
  32275. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32276. extra: 822/822,
  32277. bottom: 248/1070
  32278. }
  32279. },
  32280. ear: {
  32281. height: math.unit(0.416, "feet"),
  32282. name: "Ear",
  32283. image: {
  32284. source: "./media/characters/vaelophis-nyx/ear.svg"
  32285. }
  32286. },
  32287. eye: {
  32288. height: math.unit(0.0748, "feet"),
  32289. name: "Eye",
  32290. image: {
  32291. source: "./media/characters/vaelophis-nyx/eye.svg"
  32292. }
  32293. },
  32294. mouth: {
  32295. height: math.unit(0.378, "feet"),
  32296. name: "Mouth",
  32297. image: {
  32298. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32299. }
  32300. },
  32301. spade: {
  32302. height: math.unit(0.55, "feet"),
  32303. name: "Spade",
  32304. image: {
  32305. source: "./media/characters/vaelophis-nyx/spade.svg"
  32306. }
  32307. },
  32308. },
  32309. [
  32310. {
  32311. name: "Normal",
  32312. height: math.unit(4 + 2/12, "feet"),
  32313. default: true
  32314. },
  32315. ]
  32316. ))
  32317. characterMakers.push(() => makeCharacter(
  32318. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32319. {
  32320. front: {
  32321. height: math.unit(7, "feet"),
  32322. weight: math.unit(231, "lb"),
  32323. name: "Front",
  32324. image: {
  32325. source: "./media/characters/flux/front.svg",
  32326. extra: 919/871,
  32327. bottom: 0/919
  32328. }
  32329. },
  32330. back: {
  32331. height: math.unit(7, "feet"),
  32332. weight: math.unit(231, "lb"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/flux/back.svg",
  32336. extra: 1040/992,
  32337. bottom: 0/1040
  32338. }
  32339. },
  32340. frontDressed: {
  32341. height: math.unit(7, "feet"),
  32342. weight: math.unit(231, "lb"),
  32343. name: "Front (Dressed)",
  32344. image: {
  32345. source: "./media/characters/flux/front-dressed.svg",
  32346. extra: 919/871,
  32347. bottom: 0/919
  32348. }
  32349. },
  32350. feralSide: {
  32351. height: math.unit(5, "feet"),
  32352. weight: math.unit(150, "lb"),
  32353. name: "Feral (Side)",
  32354. image: {
  32355. source: "./media/characters/flux/feral-side.svg",
  32356. extra: 598/528,
  32357. bottom: 28/626
  32358. }
  32359. },
  32360. head: {
  32361. height: math.unit(1.585, "feet"),
  32362. name: "Head",
  32363. image: {
  32364. source: "./media/characters/flux/head.svg"
  32365. }
  32366. },
  32367. headSide: {
  32368. height: math.unit(1.74, "feet"),
  32369. name: "Head (Side)",
  32370. image: {
  32371. source: "./media/characters/flux/head-side.svg"
  32372. }
  32373. },
  32374. headSideFire: {
  32375. height: math.unit(1.76, "feet"),
  32376. name: "Head (Side, Fire)",
  32377. image: {
  32378. source: "./media/characters/flux/head-side-fire.svg"
  32379. }
  32380. },
  32381. },
  32382. [
  32383. {
  32384. name: "Normal",
  32385. height: math.unit(7, "feet"),
  32386. default: true
  32387. },
  32388. ]
  32389. ))
  32390. characterMakers.push(() => makeCharacter(
  32391. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32392. {
  32393. front: {
  32394. height: math.unit(9, "feet"),
  32395. weight: math.unit(1012, "lb"),
  32396. name: "Front",
  32397. image: {
  32398. source: "./media/characters/ulfra-lupae/front.svg",
  32399. extra: 1083/1011,
  32400. bottom: 67/1150
  32401. }
  32402. },
  32403. },
  32404. [
  32405. {
  32406. name: "Micro",
  32407. height: math.unit(6, "inches")
  32408. },
  32409. {
  32410. name: "Socializing",
  32411. height: math.unit(6 + 5/12, "feet")
  32412. },
  32413. {
  32414. name: "Normal",
  32415. height: math.unit(9, "feet"),
  32416. default: true
  32417. },
  32418. {
  32419. name: "Macro",
  32420. height: math.unit(150, "feet")
  32421. },
  32422. ]
  32423. ))
  32424. characterMakers.push(() => makeCharacter(
  32425. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32426. {
  32427. front: {
  32428. height: math.unit(5 + 2/12, "feet"),
  32429. weight: math.unit(120, "lb"),
  32430. name: "Front",
  32431. image: {
  32432. source: "./media/characters/timber/front.svg",
  32433. extra: 2814/2705,
  32434. bottom: 181/2995
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Normal",
  32441. height: math.unit(5 + 2/12, "feet"),
  32442. default: true
  32443. },
  32444. ]
  32445. ))
  32446. characterMakers.push(() => makeCharacter(
  32447. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32448. {
  32449. front: {
  32450. height: math.unit(9, "feet"),
  32451. name: "Front",
  32452. image: {
  32453. source: "./media/characters/nicki/front.svg",
  32454. extra: 1240/990,
  32455. bottom: 45/1285
  32456. },
  32457. form: "anthro",
  32458. default: true
  32459. },
  32460. side: {
  32461. height: math.unit(9, "feet"),
  32462. name: "Side",
  32463. image: {
  32464. source: "./media/characters/nicki/side.svg",
  32465. extra: 1047/973,
  32466. bottom: 61/1108
  32467. },
  32468. form: "anthro"
  32469. },
  32470. back: {
  32471. height: math.unit(9, "feet"),
  32472. name: "Back",
  32473. image: {
  32474. source: "./media/characters/nicki/back.svg",
  32475. extra: 1006/965,
  32476. bottom: 39/1045
  32477. },
  32478. form: "anthro"
  32479. },
  32480. taur: {
  32481. height: math.unit(15, "feet"),
  32482. name: "Taur",
  32483. image: {
  32484. source: "./media/characters/nicki/taur.svg",
  32485. extra: 1592/1347,
  32486. bottom: 0/1592
  32487. },
  32488. form: "taur",
  32489. default: true
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(9, "feet"),
  32496. form: "anthro",
  32497. default: true
  32498. },
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(15, "feet"),
  32502. form: "taur",
  32503. default: true
  32504. }
  32505. ],
  32506. {
  32507. "anthro": {
  32508. name: "Anthro",
  32509. default: true
  32510. },
  32511. "taur": {
  32512. name: "Taur"
  32513. }
  32514. }
  32515. ))
  32516. characterMakers.push(() => makeCharacter(
  32517. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32518. {
  32519. front: {
  32520. height: math.unit(7 + 10/12, "feet"),
  32521. weight: math.unit(3.5, "tons"),
  32522. name: "Front",
  32523. image: {
  32524. source: "./media/characters/lee/front.svg",
  32525. extra: 1773/1615,
  32526. bottom: 86/1859
  32527. }
  32528. },
  32529. hand: {
  32530. height: math.unit(1.78, "feet"),
  32531. name: "Hand",
  32532. image: {
  32533. source: "./media/characters/lee/hand.svg"
  32534. }
  32535. },
  32536. maw: {
  32537. height: math.unit(1.18, "feet"),
  32538. name: "Maw",
  32539. image: {
  32540. source: "./media/characters/lee/maw.svg"
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(7 + 10/12, "feet"),
  32548. default: true
  32549. },
  32550. ]
  32551. ))
  32552. characterMakers.push(() => makeCharacter(
  32553. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32554. {
  32555. front: {
  32556. height: math.unit(9, "feet"),
  32557. name: "Front",
  32558. image: {
  32559. source: "./media/characters/guti/front.svg",
  32560. extra: 4551/4355,
  32561. bottom: 123/4674
  32562. }
  32563. },
  32564. tongue: {
  32565. height: math.unit(1, "feet"),
  32566. name: "Tongue",
  32567. image: {
  32568. source: "./media/characters/guti/tongue.svg"
  32569. }
  32570. },
  32571. paw: {
  32572. height: math.unit(1.18, "feet"),
  32573. name: "Paw",
  32574. image: {
  32575. source: "./media/characters/guti/paw.svg"
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Normal",
  32582. height: math.unit(9, "feet"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32589. {
  32590. side: {
  32591. height: math.unit(5, "meters"),
  32592. name: "Side",
  32593. image: {
  32594. source: "./media/characters/vesper/side.svg",
  32595. extra: 1605/1518,
  32596. bottom: 0/1605
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Small",
  32603. height: math.unit(5, "meters")
  32604. },
  32605. {
  32606. name: "Sage",
  32607. height: math.unit(100, "meters"),
  32608. default: true
  32609. },
  32610. {
  32611. name: "Fun Size",
  32612. height: math.unit(600, "meters")
  32613. },
  32614. {
  32615. name: "Goddess",
  32616. height: math.unit(20000, "km")
  32617. },
  32618. {
  32619. name: "Maximum",
  32620. height: math.unit(5, "galaxies")
  32621. },
  32622. ]
  32623. ))
  32624. characterMakers.push(() => makeCharacter(
  32625. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32626. {
  32627. front: {
  32628. height: math.unit(6 + 3/12, "feet"),
  32629. weight: math.unit(190, "lb"),
  32630. name: "Front",
  32631. image: {
  32632. source: "./media/characters/gawain/front.svg",
  32633. extra: 2222/2139,
  32634. bottom: 90/2312
  32635. }
  32636. },
  32637. back: {
  32638. height: math.unit(6 + 3/12, "feet"),
  32639. weight: math.unit(190, "lb"),
  32640. name: "Back",
  32641. image: {
  32642. source: "./media/characters/gawain/back.svg",
  32643. extra: 2199/2111,
  32644. bottom: 73/2272
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(6 + 3/12, "feet"),
  32652. default: true
  32653. },
  32654. ]
  32655. ))
  32656. characterMakers.push(() => makeCharacter(
  32657. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32658. {
  32659. side: {
  32660. height: math.unit(3.5, "meters"),
  32661. weight: math.unit(16000, "lb"),
  32662. name: "Side",
  32663. image: {
  32664. source: "./media/characters/dascalti/side.svg",
  32665. extra: 392/273,
  32666. bottom: 47/439
  32667. }
  32668. },
  32669. breath: {
  32670. height: math.unit(7.4, "feet"),
  32671. name: "Breath",
  32672. image: {
  32673. source: "./media/characters/dascalti/breath.svg"
  32674. }
  32675. },
  32676. fed: {
  32677. height: math.unit(3.6, "meters"),
  32678. weight: math.unit(16000, "lb"),
  32679. name: "Fed",
  32680. image: {
  32681. source: "./media/characters/dascalti/fed.svg",
  32682. extra: 1419/820,
  32683. bottom: 95/1514
  32684. }
  32685. },
  32686. },
  32687. [
  32688. {
  32689. name: "Normal",
  32690. height: math.unit(3.5, "meters"),
  32691. default: true
  32692. },
  32693. ]
  32694. ))
  32695. characterMakers.push(() => makeCharacter(
  32696. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32697. {
  32698. front: {
  32699. height: math.unit(3 + 5/12, "feet"),
  32700. name: "Front",
  32701. image: {
  32702. source: "./media/characters/mauve/front.svg",
  32703. extra: 1126/1033,
  32704. bottom: 65/1191
  32705. }
  32706. },
  32707. side: {
  32708. height: math.unit(3 + 5/12, "feet"),
  32709. name: "Side",
  32710. image: {
  32711. source: "./media/characters/mauve/side.svg",
  32712. extra: 1089/1001,
  32713. bottom: 29/1118
  32714. }
  32715. },
  32716. back: {
  32717. height: math.unit(3 + 5/12, "feet"),
  32718. name: "Back",
  32719. image: {
  32720. source: "./media/characters/mauve/back.svg",
  32721. extra: 1173/1053,
  32722. bottom: 109/1282
  32723. }
  32724. },
  32725. },
  32726. [
  32727. {
  32728. name: "Normal",
  32729. height: math.unit(3 + 5/12, "feet"),
  32730. default: true
  32731. },
  32732. ]
  32733. ))
  32734. characterMakers.push(() => makeCharacter(
  32735. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32736. {
  32737. front: {
  32738. height: math.unit(6 + 3/12, "feet"),
  32739. weight: math.unit(430, "lb"),
  32740. name: "Front",
  32741. image: {
  32742. source: "./media/characters/carlos/front.svg",
  32743. extra: 1964/1913,
  32744. bottom: 70/2034
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(6 + 3/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32758. {
  32759. back: {
  32760. height: math.unit(5 + 10/12, "feet"),
  32761. weight: math.unit(200, "lb"),
  32762. name: "Back",
  32763. image: {
  32764. source: "./media/characters/jax/back.svg",
  32765. extra: 764/739,
  32766. bottom: 25/789
  32767. }
  32768. },
  32769. },
  32770. [
  32771. {
  32772. name: "Normal",
  32773. height: math.unit(5 + 10/12, "feet"),
  32774. default: true
  32775. },
  32776. ]
  32777. ))
  32778. characterMakers.push(() => makeCharacter(
  32779. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32780. {
  32781. front: {
  32782. height: math.unit(8, "feet"),
  32783. weight: math.unit(250, "lb"),
  32784. name: "Front",
  32785. image: {
  32786. source: "./media/characters/eikthynir/front.svg",
  32787. extra: 1332/1166,
  32788. bottom: 82/1414
  32789. }
  32790. },
  32791. back: {
  32792. height: math.unit(8, "feet"),
  32793. weight: math.unit(250, "lb"),
  32794. name: "Back",
  32795. image: {
  32796. source: "./media/characters/eikthynir/back.svg",
  32797. extra: 1342/1190,
  32798. bottom: 19/1361
  32799. }
  32800. },
  32801. dick: {
  32802. height: math.unit(2.35, "feet"),
  32803. name: "Dick",
  32804. image: {
  32805. source: "./media/characters/eikthynir/dick.svg"
  32806. }
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(8, "feet"),
  32813. default: true
  32814. },
  32815. ]
  32816. ))
  32817. characterMakers.push(() => makeCharacter(
  32818. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32819. {
  32820. front: {
  32821. height: math.unit(99, "meters"),
  32822. weight: math.unit(13000, "tons"),
  32823. name: "Front",
  32824. image: {
  32825. source: "./media/characters/zlmos/front.svg",
  32826. extra: 2202/1992,
  32827. bottom: 315/2517
  32828. }
  32829. },
  32830. },
  32831. [
  32832. {
  32833. name: "Macro",
  32834. height: math.unit(99, "meters"),
  32835. default: true
  32836. },
  32837. ]
  32838. ))
  32839. characterMakers.push(() => makeCharacter(
  32840. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32841. {
  32842. front: {
  32843. height: math.unit(6 + 5/12, "feet"),
  32844. name: "Front",
  32845. image: {
  32846. source: "./media/characters/purri/front.svg",
  32847. extra: 1698/1610,
  32848. bottom: 32/1730
  32849. }
  32850. },
  32851. frontAlt: {
  32852. height: math.unit(6 + 5/12, "feet"),
  32853. name: "Front (Alt)",
  32854. image: {
  32855. source: "./media/characters/purri/front-alt.svg",
  32856. extra: 450/420,
  32857. bottom: 26/476
  32858. }
  32859. },
  32860. boots: {
  32861. height: math.unit(5.5, "feet"),
  32862. name: "Boots",
  32863. image: {
  32864. source: "./media/characters/purri/boots.svg",
  32865. extra: 905/853,
  32866. bottom: 18/923
  32867. }
  32868. },
  32869. lying: {
  32870. height: math.unit(2, "feet"),
  32871. name: "Lying",
  32872. image: {
  32873. source: "./media/characters/purri/lying.svg",
  32874. extra: 940/843,
  32875. bottom: 146/1086
  32876. }
  32877. },
  32878. devious: {
  32879. height: math.unit(1.77, "feet"),
  32880. name: "Devious",
  32881. image: {
  32882. source: "./media/characters/purri/devious.svg",
  32883. extra: 1440/1155,
  32884. bottom: 147/1587
  32885. }
  32886. },
  32887. bean: {
  32888. height: math.unit(1.94, "feet"),
  32889. name: "Bean",
  32890. image: {
  32891. source: "./media/characters/purri/bean.svg"
  32892. }
  32893. },
  32894. },
  32895. [
  32896. {
  32897. name: "Micro",
  32898. height: math.unit(1, "mm")
  32899. },
  32900. {
  32901. name: "Normal",
  32902. height: math.unit(6 + 5/12, "feet"),
  32903. default: true
  32904. },
  32905. {
  32906. name: "Macro :3c",
  32907. height: math.unit(2, "miles")
  32908. },
  32909. ]
  32910. ))
  32911. characterMakers.push(() => makeCharacter(
  32912. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32913. {
  32914. front: {
  32915. height: math.unit(6 + 2/12, "feet"),
  32916. weight: math.unit(250, "lb"),
  32917. name: "Front",
  32918. image: {
  32919. source: "./media/characters/moonlight/front.svg",
  32920. extra: 1044/908,
  32921. bottom: 56/1100
  32922. }
  32923. },
  32924. feral: {
  32925. height: math.unit(3 + 1/12, "feet"),
  32926. weight: math.unit(50, "kg"),
  32927. name: "Feral",
  32928. image: {
  32929. source: "./media/characters/moonlight/feral.svg",
  32930. extra: 3705/2791,
  32931. bottom: 145/3850
  32932. }
  32933. },
  32934. paw: {
  32935. height: math.unit(1, "feet"),
  32936. name: "Paw",
  32937. image: {
  32938. source: "./media/characters/moonlight/paw.svg"
  32939. }
  32940. },
  32941. paws: {
  32942. height: math.unit(0.98, "feet"),
  32943. name: "Paws",
  32944. image: {
  32945. source: "./media/characters/moonlight/paws.svg",
  32946. extra: 939/939,
  32947. bottom: 50/989
  32948. }
  32949. },
  32950. mouth: {
  32951. height: math.unit(0.48, "feet"),
  32952. name: "Mouth",
  32953. image: {
  32954. source: "./media/characters/moonlight/mouth.svg"
  32955. }
  32956. },
  32957. dick: {
  32958. height: math.unit(1.46, "feet"),
  32959. name: "Dick",
  32960. image: {
  32961. source: "./media/characters/moonlight/dick.svg"
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(6 + 2/12, "feet"),
  32969. default: true
  32970. },
  32971. {
  32972. name: "Macro",
  32973. height: math.unit(300, "feet")
  32974. },
  32975. {
  32976. name: "Macro+",
  32977. height: math.unit(1, "mile")
  32978. },
  32979. {
  32980. name: "Mt. Moon",
  32981. height: math.unit(5, "miles")
  32982. },
  32983. {
  32984. name: "Megamacro",
  32985. height: math.unit(15, "miles")
  32986. },
  32987. ]
  32988. ))
  32989. characterMakers.push(() => makeCharacter(
  32990. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32991. {
  32992. back: {
  32993. height: math.unit(6, "feet"),
  32994. weight: math.unit(150, "lb"),
  32995. name: "Back",
  32996. image: {
  32997. source: "./media/characters/sylen/back.svg",
  32998. extra: 1335/1273,
  32999. bottom: 107/1442
  33000. }
  33001. },
  33002. },
  33003. [
  33004. {
  33005. name: "Normal",
  33006. height: math.unit(5 + 5/12, "feet")
  33007. },
  33008. {
  33009. name: "Megamacro",
  33010. height: math.unit(3, "miles"),
  33011. default: true
  33012. },
  33013. ]
  33014. ))
  33015. characterMakers.push(() => makeCharacter(
  33016. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33017. {
  33018. front: {
  33019. height: math.unit(6, "feet"),
  33020. weight: math.unit(190, "lb"),
  33021. name: "Front",
  33022. image: {
  33023. source: "./media/characters/huttser/front.svg",
  33024. extra: 1152/1058,
  33025. bottom: 23/1175
  33026. }
  33027. },
  33028. side: {
  33029. height: math.unit(6, "feet"),
  33030. weight: math.unit(190, "lb"),
  33031. name: "Side",
  33032. image: {
  33033. source: "./media/characters/huttser/side.svg",
  33034. extra: 1174/1065,
  33035. bottom: 18/1192
  33036. }
  33037. },
  33038. back: {
  33039. height: math.unit(6, "feet"),
  33040. weight: math.unit(190, "lb"),
  33041. name: "Back",
  33042. image: {
  33043. source: "./media/characters/huttser/back.svg",
  33044. extra: 1158/1056,
  33045. bottom: 12/1170
  33046. }
  33047. },
  33048. },
  33049. [
  33050. ]
  33051. ))
  33052. characterMakers.push(() => makeCharacter(
  33053. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33054. {
  33055. side: {
  33056. height: math.unit(12 + 9/12, "feet"),
  33057. weight: math.unit(15000, "lb"),
  33058. name: "Side",
  33059. image: {
  33060. source: "./media/characters/faan/side.svg",
  33061. extra: 2747/2697,
  33062. bottom: 0/2747
  33063. }
  33064. },
  33065. front: {
  33066. height: math.unit(12 + 9/12, "feet"),
  33067. weight: math.unit(15000, "lb"),
  33068. name: "Front",
  33069. image: {
  33070. source: "./media/characters/faan/front.svg",
  33071. extra: 607/571,
  33072. bottom: 24/631
  33073. }
  33074. },
  33075. head: {
  33076. height: math.unit(2.85, "feet"),
  33077. name: "Head",
  33078. image: {
  33079. source: "./media/characters/faan/head.svg"
  33080. }
  33081. },
  33082. headAlt: {
  33083. height: math.unit(3.13, "feet"),
  33084. name: "Head-alt",
  33085. image: {
  33086. source: "./media/characters/faan/head-alt.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(12 + 9/12, "feet"),
  33094. default: true
  33095. },
  33096. ]
  33097. ))
  33098. characterMakers.push(() => makeCharacter(
  33099. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33100. {
  33101. front: {
  33102. height: math.unit(6, "feet"),
  33103. weight: math.unit(300, "lb"),
  33104. name: "Front",
  33105. image: {
  33106. source: "./media/characters/tanio/front.svg",
  33107. extra: 711/673,
  33108. bottom: 25/736
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(6, "feet"),
  33116. default: true
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(3, "inches"),
  33125. name: "Front",
  33126. image: {
  33127. source: "./media/characters/noboru/front.svg",
  33128. extra: 1039/932,
  33129. bottom: 18/1057
  33130. }
  33131. },
  33132. },
  33133. [
  33134. {
  33135. name: "Micro",
  33136. height: math.unit(3, "inches"),
  33137. default: true
  33138. },
  33139. ]
  33140. ))
  33141. characterMakers.push(() => makeCharacter(
  33142. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33143. {
  33144. front: {
  33145. height: math.unit(1.85, "meters"),
  33146. weight: math.unit(80, "kg"),
  33147. name: "Front",
  33148. image: {
  33149. source: "./media/characters/daniel-barrett/front.svg",
  33150. extra: 355/337,
  33151. bottom: 9/364
  33152. }
  33153. },
  33154. },
  33155. [
  33156. {
  33157. name: "Pico",
  33158. height: math.unit(0.0433, "mm")
  33159. },
  33160. {
  33161. name: "Nano",
  33162. height: math.unit(1.5, "mm")
  33163. },
  33164. {
  33165. name: "Micro",
  33166. height: math.unit(5.3, "cm"),
  33167. default: true
  33168. },
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(1.85, "meters")
  33172. },
  33173. {
  33174. name: "Macro",
  33175. height: math.unit(64.7, "meters")
  33176. },
  33177. {
  33178. name: "Megamacro",
  33179. height: math.unit(2.26, "km")
  33180. },
  33181. {
  33182. name: "Gigamacro",
  33183. height: math.unit(79, "km")
  33184. },
  33185. {
  33186. name: "Teramacro",
  33187. height: math.unit(2765, "km")
  33188. },
  33189. {
  33190. name: "Petamacro",
  33191. height: math.unit(96678, "km")
  33192. },
  33193. ]
  33194. ))
  33195. characterMakers.push(() => makeCharacter(
  33196. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33197. {
  33198. front: {
  33199. height: math.unit(30, "meters"),
  33200. weight: math.unit(400, "tons"),
  33201. name: "Front",
  33202. image: {
  33203. source: "./media/characters/zeel/front.svg",
  33204. extra: 2599/2599,
  33205. bottom: 226/2825
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Macro",
  33212. height: math.unit(30, "meters"),
  33213. default: true
  33214. },
  33215. ]
  33216. ))
  33217. characterMakers.push(() => makeCharacter(
  33218. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33219. {
  33220. front: {
  33221. height: math.unit(6 + 7/12, "feet"),
  33222. weight: math.unit(210, "lb"),
  33223. name: "Front",
  33224. image: {
  33225. source: "./media/characters/tarn/front.svg",
  33226. extra: 3517/3220,
  33227. bottom: 91/3608
  33228. }
  33229. },
  33230. back: {
  33231. height: math.unit(6 + 7/12, "feet"),
  33232. weight: math.unit(210, "lb"),
  33233. name: "Back",
  33234. image: {
  33235. source: "./media/characters/tarn/back.svg",
  33236. extra: 3566/3241,
  33237. bottom: 34/3600
  33238. }
  33239. },
  33240. dick: {
  33241. height: math.unit(1.65, "feet"),
  33242. name: "Dick",
  33243. image: {
  33244. source: "./media/characters/tarn/dick.svg"
  33245. }
  33246. },
  33247. paw: {
  33248. height: math.unit(1.80, "feet"),
  33249. name: "Paw",
  33250. image: {
  33251. source: "./media/characters/tarn/paw.svg"
  33252. }
  33253. },
  33254. tongue: {
  33255. height: math.unit(0.97, "feet"),
  33256. name: "Tongue",
  33257. image: {
  33258. source: "./media/characters/tarn/tongue.svg"
  33259. }
  33260. },
  33261. },
  33262. [
  33263. {
  33264. name: "Micro",
  33265. height: math.unit(4, "inches")
  33266. },
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(6 + 7/12, "feet"),
  33270. default: true
  33271. },
  33272. {
  33273. name: "Macro",
  33274. height: math.unit(300, "feet")
  33275. },
  33276. ]
  33277. ))
  33278. characterMakers.push(() => makeCharacter(
  33279. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33280. {
  33281. front: {
  33282. height: math.unit(5 + 7/12, "feet"),
  33283. weight: math.unit(80, "kg"),
  33284. name: "Front",
  33285. image: {
  33286. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33287. extra: 3023/2865,
  33288. bottom: 33/3056
  33289. }
  33290. },
  33291. back: {
  33292. height: math.unit(5 + 7/12, "feet"),
  33293. weight: math.unit(80, "kg"),
  33294. name: "Back",
  33295. image: {
  33296. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33297. extra: 3020/2886,
  33298. bottom: 30/3050
  33299. }
  33300. },
  33301. dick: {
  33302. height: math.unit(0.98, "feet"),
  33303. name: "Dick",
  33304. image: {
  33305. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33306. }
  33307. },
  33308. anatomy: {
  33309. height: math.unit(2.86, "feet"),
  33310. name: "Anatomy",
  33311. image: {
  33312. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Really Small",
  33319. height: math.unit(2, "inches")
  33320. },
  33321. {
  33322. name: "Micro",
  33323. height: math.unit(5.583, "inches")
  33324. },
  33325. {
  33326. name: "Normal",
  33327. height: math.unit(5 + 7/12, "feet"),
  33328. default: true
  33329. },
  33330. {
  33331. name: "Macro",
  33332. height: math.unit(67, "feet")
  33333. },
  33334. {
  33335. name: "Megamacro",
  33336. height: math.unit(134, "feet")
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33342. {
  33343. front: {
  33344. height: math.unit(9, "feet"),
  33345. weight: math.unit(120, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/sally/front.svg",
  33349. extra: 1506/1349,
  33350. bottom: 66/1572
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(9, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(8, "feet"),
  33367. weight: math.unit(900, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/owen/front.svg",
  33371. extra: 1761/1657,
  33372. bottom: 74/1835
  33373. }
  33374. },
  33375. side: {
  33376. height: math.unit(8, "feet"),
  33377. weight: math.unit(900, "lb"),
  33378. name: "Side",
  33379. image: {
  33380. source: "./media/characters/owen/side.svg",
  33381. extra: 1797/1734,
  33382. bottom: 30/1827
  33383. }
  33384. },
  33385. back: {
  33386. height: math.unit(8, "feet"),
  33387. weight: math.unit(900, "lb"),
  33388. name: "Back",
  33389. image: {
  33390. source: "./media/characters/owen/back.svg",
  33391. extra: 1796/1706,
  33392. bottom: 59/1855
  33393. }
  33394. },
  33395. maw: {
  33396. height: math.unit(1.76, "feet"),
  33397. name: "Maw",
  33398. image: {
  33399. source: "./media/characters/owen/maw.svg"
  33400. }
  33401. },
  33402. },
  33403. [
  33404. {
  33405. name: "Normal",
  33406. height: math.unit(8, "feet"),
  33407. default: true
  33408. },
  33409. ]
  33410. ))
  33411. characterMakers.push(() => makeCharacter(
  33412. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33413. {
  33414. front: {
  33415. height: math.unit(4, "feet"),
  33416. weight: math.unit(400, "lb"),
  33417. name: "Front",
  33418. image: {
  33419. source: "./media/characters/ryth/front.svg",
  33420. extra: 1920/1748,
  33421. bottom: 42/1962
  33422. }
  33423. },
  33424. back: {
  33425. height: math.unit(4, "feet"),
  33426. weight: math.unit(400, "lb"),
  33427. name: "Back",
  33428. image: {
  33429. source: "./media/characters/ryth/back.svg",
  33430. extra: 1897/1690,
  33431. bottom: 89/1986
  33432. }
  33433. },
  33434. mouth: {
  33435. height: math.unit(1.39, "feet"),
  33436. name: "Mouth",
  33437. image: {
  33438. source: "./media/characters/ryth/mouth.svg"
  33439. }
  33440. },
  33441. tailmaw: {
  33442. height: math.unit(1.23, "feet"),
  33443. name: "Tailmaw",
  33444. image: {
  33445. source: "./media/characters/ryth/tailmaw.svg"
  33446. }
  33447. },
  33448. goia: {
  33449. height: math.unit(4, "meters"),
  33450. weight: math.unit(10800, "lb"),
  33451. name: "Goia",
  33452. image: {
  33453. source: "./media/characters/ryth/goia.svg",
  33454. extra: 745/640,
  33455. bottom: 107/852
  33456. }
  33457. },
  33458. goiaFront: {
  33459. height: math.unit(4, "meters"),
  33460. weight: math.unit(10800, "lb"),
  33461. name: "Goia (Front)",
  33462. image: {
  33463. source: "./media/characters/ryth/goia-front.svg",
  33464. extra: 750/586,
  33465. bottom: 114/864
  33466. }
  33467. },
  33468. goiaMaw: {
  33469. height: math.unit(5.55, "feet"),
  33470. name: "Goia Maw",
  33471. image: {
  33472. source: "./media/characters/ryth/goia-maw.svg"
  33473. }
  33474. },
  33475. goiaForepaw: {
  33476. height: math.unit(3.5, "feet"),
  33477. name: "Goia Forepaw",
  33478. image: {
  33479. source: "./media/characters/ryth/goia-forepaw.svg"
  33480. }
  33481. },
  33482. goiaHindpaw: {
  33483. height: math.unit(5.55, "feet"),
  33484. name: "Goia Hindpaw",
  33485. image: {
  33486. source: "./media/characters/ryth/goia-hindpaw.svg"
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(4, "feet"),
  33494. default: true
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(7, "feet"),
  33503. weight: math.unit(180, "lb"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/necrolance/front.svg",
  33507. extra: 1062/947,
  33508. bottom: 41/1103
  33509. }
  33510. },
  33511. back: {
  33512. height: math.unit(7, "feet"),
  33513. weight: math.unit(180, "lb"),
  33514. name: "Back",
  33515. image: {
  33516. source: "./media/characters/necrolance/back.svg",
  33517. extra: 1045/984,
  33518. bottom: 14/1059
  33519. }
  33520. },
  33521. wing: {
  33522. height: math.unit(2.67, "feet"),
  33523. name: "Wing",
  33524. image: {
  33525. source: "./media/characters/necrolance/wing.svg"
  33526. }
  33527. },
  33528. },
  33529. [
  33530. {
  33531. name: "Normal",
  33532. height: math.unit(7, "feet"),
  33533. default: true
  33534. },
  33535. ]
  33536. ))
  33537. characterMakers.push(() => makeCharacter(
  33538. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33539. {
  33540. front: {
  33541. height: math.unit(76, "meters"),
  33542. weight: math.unit(30000, "tons"),
  33543. name: "Front",
  33544. image: {
  33545. source: "./media/characters/tyler/front.svg",
  33546. extra: 1640/1640,
  33547. bottom: 114/1754
  33548. }
  33549. },
  33550. },
  33551. [
  33552. {
  33553. name: "Macro",
  33554. height: math.unit(76, "meters"),
  33555. default: true
  33556. },
  33557. ]
  33558. ))
  33559. characterMakers.push(() => makeCharacter(
  33560. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33561. {
  33562. front: {
  33563. height: math.unit(4 + 11/12, "feet"),
  33564. weight: math.unit(132, "lb"),
  33565. name: "Front",
  33566. image: {
  33567. source: "./media/characters/icey/front.svg",
  33568. extra: 2750/2550,
  33569. bottom: 33/2783
  33570. }
  33571. },
  33572. back: {
  33573. height: math.unit(4 + 11/12, "feet"),
  33574. weight: math.unit(132, "lb"),
  33575. name: "Back",
  33576. image: {
  33577. source: "./media/characters/icey/back.svg",
  33578. extra: 2624/2481,
  33579. bottom: 35/2659
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(4 + 11/12, "feet"),
  33587. default: true
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(100, "feet"),
  33596. weight: math.unit(0, "lb"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/smile/front.svg",
  33600. extra: 2983/2912,
  33601. bottom: 162/3145
  33602. }
  33603. },
  33604. back: {
  33605. height: math.unit(100, "feet"),
  33606. weight: math.unit(0, "lb"),
  33607. name: "Back",
  33608. image: {
  33609. source: "./media/characters/smile/back.svg",
  33610. extra: 3143/3031,
  33611. bottom: 91/3234
  33612. }
  33613. },
  33614. head: {
  33615. height: math.unit(26.3, "feet"),
  33616. weight: math.unit(0, "lb"),
  33617. name: "Head",
  33618. image: {
  33619. source: "./media/characters/smile/head.svg"
  33620. }
  33621. },
  33622. collar: {
  33623. height: math.unit(5.3, "feet"),
  33624. weight: math.unit(0, "lb"),
  33625. name: "Collar",
  33626. image: {
  33627. source: "./media/characters/smile/collar.svg"
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Macro",
  33634. height: math.unit(100, "feet"),
  33635. default: true
  33636. },
  33637. ]
  33638. ))
  33639. characterMakers.push(() => makeCharacter(
  33640. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33641. {
  33642. dragon: {
  33643. height: math.unit(26, "feet"),
  33644. weight: math.unit(36, "tons"),
  33645. name: "Dragon",
  33646. image: {
  33647. source: "./media/characters/arimphae/dragon.svg",
  33648. extra: 1574/983,
  33649. bottom: 357/1931
  33650. }
  33651. },
  33652. drake: {
  33653. height: math.unit(9, "feet"),
  33654. weight: math.unit(1.5, "tons"),
  33655. name: "Drake",
  33656. image: {
  33657. source: "./media/characters/arimphae/drake.svg",
  33658. extra: 1120/925,
  33659. bottom: 435/1555
  33660. }
  33661. },
  33662. },
  33663. [
  33664. {
  33665. name: "Small",
  33666. height: math.unit(26*5/9, "feet")
  33667. },
  33668. {
  33669. name: "Normal",
  33670. height: math.unit(26, "feet"),
  33671. default: true
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33677. {
  33678. front: {
  33679. height: math.unit(8 + 9/12, "feet"),
  33680. name: "Front",
  33681. image: {
  33682. source: "./media/characters/xander/front.svg",
  33683. extra: 1237/974,
  33684. bottom: 94/1331
  33685. }
  33686. },
  33687. },
  33688. [
  33689. {
  33690. name: "Normal",
  33691. height: math.unit(8 + 9/12, "feet"),
  33692. default: true
  33693. },
  33694. {
  33695. name: "Gaze Grabber",
  33696. height: math.unit(13 + 8/12, "feet")
  33697. },
  33698. {
  33699. name: "Jaw Dropper",
  33700. height: math.unit(27, "feet")
  33701. },
  33702. {
  33703. name: "Show Stopper",
  33704. height: math.unit(136, "feet")
  33705. },
  33706. {
  33707. name: "Superstar",
  33708. height: math.unit(1.9e6, "miles")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33714. {
  33715. side: {
  33716. height: math.unit(2100, "feet"),
  33717. name: "Side",
  33718. image: {
  33719. source: "./media/characters/osiris/side.svg",
  33720. extra: 1105/939,
  33721. bottom: 167/1272
  33722. }
  33723. },
  33724. },
  33725. [
  33726. {
  33727. name: "Macro",
  33728. height: math.unit(2100, "feet"),
  33729. default: true
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33735. {
  33736. front: {
  33737. height: math.unit(6 + 8/12, "feet"),
  33738. weight: math.unit(225, "lb"),
  33739. name: "Front",
  33740. image: {
  33741. source: "./media/characters/rhys-londe/front.svg",
  33742. extra: 2258/2141,
  33743. bottom: 188/2446
  33744. }
  33745. },
  33746. back: {
  33747. height: math.unit(6 + 8/12, "feet"),
  33748. weight: math.unit(225, "lb"),
  33749. name: "Back",
  33750. image: {
  33751. source: "./media/characters/rhys-londe/back.svg",
  33752. extra: 2237/2137,
  33753. bottom: 63/2300
  33754. }
  33755. },
  33756. frontNsfw: {
  33757. height: math.unit(6 + 8/12, "feet"),
  33758. weight: math.unit(225, "lb"),
  33759. name: "Front (NSFW)",
  33760. image: {
  33761. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33762. extra: 2258/2141,
  33763. bottom: 188/2446
  33764. }
  33765. },
  33766. backNsfw: {
  33767. height: math.unit(6 + 8/12, "feet"),
  33768. weight: math.unit(225, "lb"),
  33769. name: "Back (NSFW)",
  33770. image: {
  33771. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33772. extra: 2237/2137,
  33773. bottom: 63/2300
  33774. }
  33775. },
  33776. dick: {
  33777. height: math.unit(30, "inches"),
  33778. name: "Dick",
  33779. image: {
  33780. source: "./media/characters/rhys-londe/dick.svg"
  33781. }
  33782. },
  33783. maw: {
  33784. height: math.unit(1.6, "feet"),
  33785. name: "Maw",
  33786. image: {
  33787. source: "./media/characters/rhys-londe/maw.svg"
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(6 + 8/12, "feet"),
  33795. default: true
  33796. },
  33797. ]
  33798. ))
  33799. characterMakers.push(() => makeCharacter(
  33800. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33801. {
  33802. front: {
  33803. height: math.unit(3 + 10/12, "feet"),
  33804. weight: math.unit(90, "lb"),
  33805. name: "Front",
  33806. image: {
  33807. source: "./media/characters/taivas-ensim/front.svg",
  33808. extra: 1327/1216,
  33809. bottom: 96/1423
  33810. }
  33811. },
  33812. back: {
  33813. height: math.unit(3 + 10/12, "feet"),
  33814. weight: math.unit(90, "lb"),
  33815. name: "Back",
  33816. image: {
  33817. source: "./media/characters/taivas-ensim/back.svg",
  33818. extra: 1355/1247,
  33819. bottom: 11/1366
  33820. }
  33821. },
  33822. frontNsfw: {
  33823. height: math.unit(3 + 10/12, "feet"),
  33824. weight: math.unit(90, "lb"),
  33825. name: "Front (NSFW)",
  33826. image: {
  33827. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33828. extra: 1327/1216,
  33829. bottom: 96/1423
  33830. }
  33831. },
  33832. backNsfw: {
  33833. height: math.unit(3 + 10/12, "feet"),
  33834. weight: math.unit(90, "lb"),
  33835. name: "Back (NSFW)",
  33836. image: {
  33837. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33838. extra: 1355/1247,
  33839. bottom: 11/1366
  33840. }
  33841. },
  33842. },
  33843. [
  33844. {
  33845. name: "Normal",
  33846. height: math.unit(3 + 10/12, "feet"),
  33847. default: true
  33848. },
  33849. ]
  33850. ))
  33851. characterMakers.push(() => makeCharacter(
  33852. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33853. {
  33854. front: {
  33855. height: math.unit(9 + 6/12, "feet"),
  33856. weight: math.unit(940, "lb"),
  33857. name: "Front",
  33858. image: {
  33859. source: "./media/characters/byliss/front.svg",
  33860. extra: 1327/1290,
  33861. bottom: 82/1409
  33862. }
  33863. },
  33864. back: {
  33865. height: math.unit(9 + 6/12, "feet"),
  33866. weight: math.unit(940, "lb"),
  33867. name: "Back",
  33868. image: {
  33869. source: "./media/characters/byliss/back.svg",
  33870. extra: 1376/1349,
  33871. bottom: 9/1385
  33872. }
  33873. },
  33874. frontNsfw: {
  33875. height: math.unit(9 + 6/12, "feet"),
  33876. weight: math.unit(940, "lb"),
  33877. name: "Front (NSFW)",
  33878. image: {
  33879. source: "./media/characters/byliss/front-nsfw.svg",
  33880. extra: 1327/1290,
  33881. bottom: 82/1409
  33882. }
  33883. },
  33884. backNsfw: {
  33885. height: math.unit(9 + 6/12, "feet"),
  33886. weight: math.unit(940, "lb"),
  33887. name: "Back (NSFW)",
  33888. image: {
  33889. source: "./media/characters/byliss/back-nsfw.svg",
  33890. extra: 1376/1349,
  33891. bottom: 9/1385
  33892. }
  33893. },
  33894. },
  33895. [
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(9 + 6/12, "feet"),
  33899. default: true
  33900. },
  33901. ]
  33902. ))
  33903. characterMakers.push(() => makeCharacter(
  33904. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33905. {
  33906. front: {
  33907. height: math.unit(5 + 2/12, "feet"),
  33908. weight: math.unit(200, "lb"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/noraly/front.svg",
  33912. extra: 4985/4773,
  33913. bottom: 150/5135
  33914. }
  33915. },
  33916. full: {
  33917. height: math.unit(5 + 2/12, "feet"),
  33918. weight: math.unit(164, "lb"),
  33919. name: "Full",
  33920. image: {
  33921. source: "./media/characters/noraly/full.svg",
  33922. extra: 1114/1059,
  33923. bottom: 35/1149
  33924. }
  33925. },
  33926. fuller: {
  33927. height: math.unit(5 + 2/12, "feet"),
  33928. weight: math.unit(230, "lb"),
  33929. name: "Fuller",
  33930. image: {
  33931. source: "./media/characters/noraly/fuller.svg",
  33932. extra: 1114/1059,
  33933. bottom: 35/1149
  33934. }
  33935. },
  33936. fullest: {
  33937. height: math.unit(5 + 2/12, "feet"),
  33938. weight: math.unit(300, "lb"),
  33939. name: "Fullest",
  33940. image: {
  33941. source: "./media/characters/noraly/fullest.svg",
  33942. extra: 1114/1059,
  33943. bottom: 35/1149
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(5 + 2/12, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33957. {
  33958. front: {
  33959. height: math.unit(5 + 2/12, "feet"),
  33960. weight: math.unit(210, "lb"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/pera/front.svg",
  33964. extra: 1560/1531,
  33965. bottom: 165/1725
  33966. }
  33967. },
  33968. back: {
  33969. height: math.unit(5 + 2/12, "feet"),
  33970. weight: math.unit(210, "lb"),
  33971. name: "Back",
  33972. image: {
  33973. source: "./media/characters/pera/back.svg",
  33974. extra: 1523/1493,
  33975. bottom: 152/1675
  33976. }
  33977. },
  33978. dick: {
  33979. height: math.unit(2.4, "feet"),
  33980. name: "Dick",
  33981. image: {
  33982. source: "./media/characters/pera/dick.svg"
  33983. }
  33984. },
  33985. },
  33986. [
  33987. {
  33988. name: "Normal",
  33989. height: math.unit(5 + 2/12, "feet"),
  33990. default: true
  33991. },
  33992. ]
  33993. ))
  33994. characterMakers.push(() => makeCharacter(
  33995. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33996. {
  33997. front: {
  33998. height: math.unit(12, "feet"),
  33999. weight: math.unit(3200, "lb"),
  34000. name: "Front",
  34001. image: {
  34002. source: "./media/characters/julian/front.svg",
  34003. extra: 2962/2701,
  34004. bottom: 184/3146
  34005. }
  34006. },
  34007. maw: {
  34008. height: math.unit(5.35, "feet"),
  34009. name: "Maw",
  34010. image: {
  34011. source: "./media/characters/julian/maw.svg"
  34012. }
  34013. },
  34014. paw: {
  34015. height: math.unit(3.07, "feet"),
  34016. name: "Paw",
  34017. image: {
  34018. source: "./media/characters/julian/paw.svg"
  34019. }
  34020. },
  34021. },
  34022. [
  34023. {
  34024. name: "Default",
  34025. height: math.unit(12, "feet"),
  34026. default: true
  34027. },
  34028. {
  34029. name: "Big",
  34030. height: math.unit(50, "feet")
  34031. },
  34032. {
  34033. name: "Really Big",
  34034. height: math.unit(1, "mile")
  34035. },
  34036. {
  34037. name: "Extremely Big",
  34038. height: math.unit(100, "miles")
  34039. },
  34040. {
  34041. name: "Planet Hugger",
  34042. height: math.unit(200, "megameters")
  34043. },
  34044. {
  34045. name: "Unreasonably Big",
  34046. height: math.unit(1e300, "meters")
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34052. {
  34053. solgooleo: {
  34054. height: math.unit(4, "meters"),
  34055. weight: math.unit(6000*1.5, "kg"),
  34056. volume: math.unit(6000, "liters"),
  34057. name: "Solgooleo",
  34058. image: {
  34059. source: "./media/characters/pi/solgooleo.svg",
  34060. extra: 388/331,
  34061. bottom: 29/417
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Normal",
  34068. height: math.unit(4, "meters"),
  34069. default: true
  34070. },
  34071. ]
  34072. ))
  34073. characterMakers.push(() => makeCharacter(
  34074. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34075. {
  34076. front: {
  34077. height: math.unit(8, "feet"),
  34078. weight: math.unit(4, "tons"),
  34079. name: "Front",
  34080. image: {
  34081. source: "./media/characters/shaun/front.svg",
  34082. extra: 503/495,
  34083. bottom: 20/523
  34084. }
  34085. },
  34086. back: {
  34087. height: math.unit(8, "feet"),
  34088. weight: math.unit(4, "tons"),
  34089. name: "Back",
  34090. image: {
  34091. source: "./media/characters/shaun/back.svg",
  34092. extra: 487/480,
  34093. bottom: 20/507
  34094. }
  34095. },
  34096. },
  34097. [
  34098. {
  34099. name: "Lorg",
  34100. height: math.unit(8, "feet"),
  34101. default: true
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34107. {
  34108. frontAnthro: {
  34109. height: math.unit(7, "feet"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/sini/front-anthro.svg",
  34113. extra: 726/678,
  34114. bottom: 35/761
  34115. },
  34116. form: "anthro",
  34117. default: true
  34118. },
  34119. backAnthro: {
  34120. height: math.unit(7, "feet"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/sini/back-anthro.svg",
  34124. extra: 743/701,
  34125. bottom: 12/755
  34126. },
  34127. form: "anthro",
  34128. },
  34129. frontAnthroNsfw: {
  34130. height: math.unit(7, "feet"),
  34131. name: "Front (NSFW)",
  34132. image: {
  34133. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34134. extra: 726/678,
  34135. bottom: 35/761
  34136. },
  34137. form: "anthro"
  34138. },
  34139. backAnthroNsfw: {
  34140. height: math.unit(7, "feet"),
  34141. name: "Back (NSFW)",
  34142. image: {
  34143. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34144. extra: 743/701,
  34145. bottom: 12/755
  34146. },
  34147. form: "anthro",
  34148. },
  34149. mawAnthro: {
  34150. height: math.unit(2.14, "feet"),
  34151. name: "Maw",
  34152. image: {
  34153. source: "./media/characters/sini/maw-anthro.svg"
  34154. },
  34155. form: "anthro"
  34156. },
  34157. dick: {
  34158. height: math.unit(1.45, "feet"),
  34159. name: "Dick",
  34160. image: {
  34161. source: "./media/characters/sini/dick-anthro.svg"
  34162. },
  34163. form: "anthro"
  34164. },
  34165. feral: {
  34166. height: math.unit(16, "feet"),
  34167. name: "Feral",
  34168. image: {
  34169. source: "./media/characters/sini/feral.svg",
  34170. extra: 814/605,
  34171. bottom: 11/825
  34172. },
  34173. form: "feral",
  34174. default: true
  34175. },
  34176. feralNsfw: {
  34177. height: math.unit(16, "feet"),
  34178. name: "Feral (NSFW)",
  34179. image: {
  34180. source: "./media/characters/sini/feral-nsfw.svg",
  34181. extra: 814/605,
  34182. bottom: 11/825
  34183. },
  34184. form: "feral"
  34185. },
  34186. mawFeral: {
  34187. height: math.unit(5.66, "feet"),
  34188. name: "Maw",
  34189. image: {
  34190. source: "./media/characters/sini/maw-feral.svg"
  34191. },
  34192. form: "feral",
  34193. },
  34194. pawFeral: {
  34195. height: math.unit(5.17, "feet"),
  34196. name: "Paw",
  34197. image: {
  34198. source: "./media/characters/sini/paw-feral.svg"
  34199. },
  34200. form: "feral",
  34201. },
  34202. rumpFeral: {
  34203. height: math.unit(13.11, "feet"),
  34204. name: "Rump",
  34205. image: {
  34206. source: "./media/characters/sini/rump-feral.svg"
  34207. },
  34208. form: "feral",
  34209. },
  34210. dickFeral: {
  34211. height: math.unit(1, "feet"),
  34212. name: "Dick",
  34213. image: {
  34214. source: "./media/characters/sini/dick-feral.svg"
  34215. },
  34216. form: "feral",
  34217. },
  34218. eyeFeral: {
  34219. height: math.unit(1.23, "feet"),
  34220. name: "Eye",
  34221. image: {
  34222. source: "./media/characters/sini/eye-feral.svg"
  34223. },
  34224. form: "feral",
  34225. },
  34226. },
  34227. [
  34228. {
  34229. name: "Normal",
  34230. height: math.unit(7, "feet"),
  34231. default: true,
  34232. form: "anthro"
  34233. },
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(16, "feet"),
  34237. default: true,
  34238. form: "feral"
  34239. },
  34240. ],
  34241. {
  34242. "anthro": {
  34243. name: "Anthro",
  34244. default: true
  34245. },
  34246. "feral": {
  34247. name: "Feral",
  34248. }
  34249. }
  34250. ))
  34251. characterMakers.push(() => makeCharacter(
  34252. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34253. {
  34254. side: {
  34255. height: math.unit(47.2, "meters"),
  34256. weight: math.unit(10000, "tons"),
  34257. name: "Side",
  34258. image: {
  34259. source: "./media/characters/raylldo/side.svg",
  34260. extra: 2363/642,
  34261. bottom: 221/2584
  34262. }
  34263. },
  34264. top: {
  34265. height: math.unit(240, "meters"),
  34266. weight: math.unit(10000, "tons"),
  34267. name: "Top",
  34268. image: {
  34269. source: "./media/characters/raylldo/top.svg"
  34270. }
  34271. },
  34272. bottom: {
  34273. height: math.unit(240, "meters"),
  34274. weight: math.unit(10000, "tons"),
  34275. name: "Bottom",
  34276. image: {
  34277. source: "./media/characters/raylldo/bottom.svg"
  34278. }
  34279. },
  34280. head: {
  34281. height: math.unit(38.6, "meters"),
  34282. name: "Head",
  34283. image: {
  34284. source: "./media/characters/raylldo/head.svg",
  34285. extra: 1335/1112,
  34286. bottom: 0/1335
  34287. }
  34288. },
  34289. maw: {
  34290. height: math.unit(16.37, "meters"),
  34291. name: "Maw",
  34292. image: {
  34293. source: "./media/characters/raylldo/maw.svg",
  34294. extra: 883/660,
  34295. bottom: 0/883
  34296. },
  34297. extraAttributes: {
  34298. preyCapacity: {
  34299. name: "Capacity",
  34300. power: 3,
  34301. type: "volume",
  34302. base: math.unit(1000, "people")
  34303. },
  34304. tongueSize: {
  34305. name: "Tongue Size",
  34306. power: 2,
  34307. type: "area",
  34308. base: math.unit(21, "m^2")
  34309. }
  34310. }
  34311. },
  34312. forepaw: {
  34313. height: math.unit(18, "meters"),
  34314. name: "Forepaw",
  34315. image: {
  34316. source: "./media/characters/raylldo/forepaw.svg"
  34317. }
  34318. },
  34319. hindpaw: {
  34320. height: math.unit(23, "meters"),
  34321. name: "Hindpaw",
  34322. image: {
  34323. source: "./media/characters/raylldo/hindpaw.svg"
  34324. }
  34325. },
  34326. genitals: {
  34327. height: math.unit(42, "meters"),
  34328. name: "Genitals",
  34329. image: {
  34330. source: "./media/characters/raylldo/genitals.svg"
  34331. }
  34332. },
  34333. },
  34334. [
  34335. {
  34336. name: "Normal",
  34337. height: math.unit(47.2, "meters"),
  34338. default: true
  34339. },
  34340. ]
  34341. ))
  34342. characterMakers.push(() => makeCharacter(
  34343. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34344. {
  34345. anthroFront: {
  34346. height: math.unit(9, "feet"),
  34347. weight: math.unit(600, "lb"),
  34348. name: "Anthro (Front)",
  34349. image: {
  34350. source: "./media/characters/glint/anthro-front.svg",
  34351. extra: 1097/1018,
  34352. bottom: 28/1125
  34353. }
  34354. },
  34355. anthroBack: {
  34356. height: math.unit(9, "feet"),
  34357. weight: math.unit(600, "lb"),
  34358. name: "Anthro (Back)",
  34359. image: {
  34360. source: "./media/characters/glint/anthro-back.svg",
  34361. extra: 1154/997,
  34362. bottom: 36/1190
  34363. }
  34364. },
  34365. feral: {
  34366. height: math.unit(11, "feet"),
  34367. weight: math.unit(50000, "lb"),
  34368. name: "Feral",
  34369. image: {
  34370. source: "./media/characters/glint/feral.svg",
  34371. extra: 3035/1585,
  34372. bottom: 1169/4204
  34373. }
  34374. },
  34375. dickAnthro: {
  34376. height: math.unit(0.7, "meters"),
  34377. name: "Dick (Anthro)",
  34378. image: {
  34379. source: "./media/characters/glint/dick-anthro.svg"
  34380. }
  34381. },
  34382. dickFeral: {
  34383. height: math.unit(2.65, "meters"),
  34384. name: "Dick (Feral)",
  34385. image: {
  34386. source: "./media/characters/glint/dick-feral.svg"
  34387. }
  34388. },
  34389. slitHidden: {
  34390. height: math.unit(5.85, "meters"),
  34391. name: "Slit (Hidden)",
  34392. image: {
  34393. source: "./media/characters/glint/slit-hidden.svg"
  34394. }
  34395. },
  34396. slitErect: {
  34397. height: math.unit(5.85, "meters"),
  34398. name: "Slit (Erect)",
  34399. image: {
  34400. source: "./media/characters/glint/slit-erect.svg"
  34401. }
  34402. },
  34403. mawAnthro: {
  34404. height: math.unit(0.63, "meters"),
  34405. name: "Maw (Anthro)",
  34406. image: {
  34407. source: "./media/characters/glint/maw.svg"
  34408. }
  34409. },
  34410. mawFeral: {
  34411. height: math.unit(2.89, "meters"),
  34412. name: "Maw (Feral)",
  34413. image: {
  34414. source: "./media/characters/glint/maw.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Normal",
  34421. height: math.unit(9, "feet"),
  34422. default: true
  34423. },
  34424. ]
  34425. ))
  34426. characterMakers.push(() => makeCharacter(
  34427. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34428. {
  34429. side: {
  34430. height: math.unit(15, "feet"),
  34431. weight: math.unit(5000, "kg"),
  34432. name: "Side",
  34433. image: {
  34434. source: "./media/characters/kairne/side.svg",
  34435. extra: 979/811,
  34436. bottom: 13/992
  34437. }
  34438. },
  34439. front: {
  34440. height: math.unit(15, "feet"),
  34441. weight: math.unit(5000, "kg"),
  34442. name: "Front",
  34443. image: {
  34444. source: "./media/characters/kairne/front.svg",
  34445. extra: 908/814,
  34446. bottom: 26/934
  34447. }
  34448. },
  34449. sideNsfw: {
  34450. height: math.unit(15, "feet"),
  34451. weight: math.unit(5000, "kg"),
  34452. name: "Side (NSFW)",
  34453. image: {
  34454. source: "./media/characters/kairne/side-nsfw.svg",
  34455. extra: 979/811,
  34456. bottom: 13/992
  34457. }
  34458. },
  34459. frontNsfw: {
  34460. height: math.unit(15, "feet"),
  34461. weight: math.unit(5000, "kg"),
  34462. name: "Front (NSFW)",
  34463. image: {
  34464. source: "./media/characters/kairne/front-nsfw.svg",
  34465. extra: 908/814,
  34466. bottom: 26/934
  34467. }
  34468. },
  34469. dickCaged: {
  34470. height: math.unit(0.65, "meters"),
  34471. name: "Dick-caged",
  34472. image: {
  34473. source: "./media/characters/kairne/dick-caged.svg"
  34474. }
  34475. },
  34476. dick: {
  34477. height: math.unit(0.79, "meters"),
  34478. name: "Dick",
  34479. image: {
  34480. source: "./media/characters/kairne/dick.svg"
  34481. }
  34482. },
  34483. genitals: {
  34484. height: math.unit(1.29, "meters"),
  34485. name: "Genitals",
  34486. image: {
  34487. source: "./media/characters/kairne/genitals.svg"
  34488. }
  34489. },
  34490. maw: {
  34491. height: math.unit(1.73, "meters"),
  34492. name: "Maw",
  34493. image: {
  34494. source: "./media/characters/kairne/maw.svg"
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(15, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(5 + 8/12, "feet"),
  34511. weight: math.unit(139, "lb"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/biscuit-jackal/front.svg",
  34515. extra: 2106/1961,
  34516. bottom: 58/2164
  34517. }
  34518. },
  34519. back: {
  34520. height: math.unit(5 + 8/12, "feet"),
  34521. weight: math.unit(139, "lb"),
  34522. name: "Back",
  34523. image: {
  34524. source: "./media/characters/biscuit-jackal/back.svg",
  34525. extra: 2132/1976,
  34526. bottom: 57/2189
  34527. }
  34528. },
  34529. werejackal: {
  34530. height: math.unit(6 + 3/12, "feet"),
  34531. weight: math.unit(188, "lb"),
  34532. name: "Werejackal",
  34533. image: {
  34534. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34535. extra: 2373/2178,
  34536. bottom: 53/2426
  34537. }
  34538. },
  34539. },
  34540. [
  34541. {
  34542. name: "Normal",
  34543. height: math.unit(5 + 8/12, "feet"),
  34544. default: true
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(140, "cm"),
  34553. weight: math.unit(45, "kg"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/tayra-white/front.svg",
  34557. extra: 2229/2192,
  34558. bottom: 75/2304
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(140, "cm"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34572. {
  34573. front: {
  34574. height: math.unit(4 + 5/12, "feet"),
  34575. name: "Front",
  34576. image: {
  34577. source: "./media/characters/scoop/front.svg",
  34578. extra: 1257/1136,
  34579. bottom: 69/1326
  34580. }
  34581. },
  34582. back: {
  34583. height: math.unit(4 + 5/12, "feet"),
  34584. name: "Back",
  34585. image: {
  34586. source: "./media/characters/scoop/back.svg",
  34587. extra: 1321/1152,
  34588. bottom: 32/1353
  34589. }
  34590. },
  34591. maw: {
  34592. height: math.unit(0.68, "feet"),
  34593. name: "Maw",
  34594. image: {
  34595. source: "./media/characters/scoop/maw.svg"
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Really Small",
  34602. height: math.unit(1, "mm")
  34603. },
  34604. {
  34605. name: "Micro",
  34606. height: math.unit(1, "inch")
  34607. },
  34608. {
  34609. name: "Normal",
  34610. height: math.unit(4 + 5/12, "feet"),
  34611. default: true
  34612. },
  34613. {
  34614. name: "Macro",
  34615. height: math.unit(200, "feet")
  34616. },
  34617. {
  34618. name: "Megamacro",
  34619. height: math.unit(3240, "feet")
  34620. },
  34621. {
  34622. name: "Teramacro",
  34623. height: math.unit(2500, "miles")
  34624. },
  34625. ]
  34626. ))
  34627. characterMakers.push(() => makeCharacter(
  34628. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34629. {
  34630. front: {
  34631. height: math.unit(15 + 7/12, "feet"),
  34632. weight: math.unit(1150, "tons"),
  34633. name: "Front",
  34634. image: {
  34635. source: "./media/characters/saphinara/front.svg",
  34636. extra: 1837/1643,
  34637. bottom: 84/1921
  34638. },
  34639. form: "normal",
  34640. default: true
  34641. },
  34642. side: {
  34643. height: math.unit(15 + 7/12, "feet"),
  34644. weight: math.unit(1150, "tons"),
  34645. name: "Side",
  34646. image: {
  34647. source: "./media/characters/saphinara/side.svg",
  34648. extra: 605/547,
  34649. bottom: 6/611
  34650. },
  34651. form: "normal"
  34652. },
  34653. back: {
  34654. height: math.unit(15 + 7/12, "feet"),
  34655. weight: math.unit(1150, "tons"),
  34656. name: "Back",
  34657. image: {
  34658. source: "./media/characters/saphinara/back.svg",
  34659. extra: 591/531,
  34660. bottom: 13/604
  34661. },
  34662. form: "normal"
  34663. },
  34664. frontTail: {
  34665. height: math.unit(15 + 7/12, "feet"),
  34666. weight: math.unit(1150, "tons"),
  34667. name: "Front (Full Tail)",
  34668. image: {
  34669. source: "./media/characters/saphinara/front-tail.svg",
  34670. extra: 2256/1630,
  34671. bottom: 261/2517
  34672. },
  34673. form: "normal"
  34674. },
  34675. insides: {
  34676. height: math.unit(11.92, "feet"),
  34677. name: "Insides",
  34678. image: {
  34679. source: "./media/characters/saphinara/insides.svg"
  34680. },
  34681. form: "normal"
  34682. },
  34683. head: {
  34684. height: math.unit(4.17, "feet"),
  34685. name: "Head",
  34686. image: {
  34687. source: "./media/characters/saphinara/head.svg"
  34688. },
  34689. form: "normal"
  34690. },
  34691. tongue: {
  34692. height: math.unit(4.60, "feet"),
  34693. name: "Tongue",
  34694. image: {
  34695. source: "./media/characters/saphinara/tongue.svg"
  34696. },
  34697. form: "normal"
  34698. },
  34699. headEnraged: {
  34700. height: math.unit(5.55, "feet"),
  34701. name: "Head (Enraged)",
  34702. image: {
  34703. source: "./media/characters/saphinara/head-enraged.svg"
  34704. },
  34705. form: "normal"
  34706. },
  34707. wings: {
  34708. height: math.unit(11.95, "feet"),
  34709. name: "Wings",
  34710. image: {
  34711. source: "./media/characters/saphinara/wings.svg"
  34712. },
  34713. form: "normal"
  34714. },
  34715. feathers: {
  34716. height: math.unit(8.92, "feet"),
  34717. name: "Feathers",
  34718. image: {
  34719. source: "./media/characters/saphinara/feathers.svg"
  34720. },
  34721. form: "normal"
  34722. },
  34723. shackles: {
  34724. height: math.unit(2, "feet"),
  34725. name: "Shackles",
  34726. image: {
  34727. source: "./media/characters/saphinara/shackles.svg"
  34728. },
  34729. form: "normal"
  34730. },
  34731. eyes: {
  34732. height: math.unit(1.331, "feet"),
  34733. name: "Eyes",
  34734. image: {
  34735. source: "./media/characters/saphinara/eyes.svg"
  34736. },
  34737. form: "normal"
  34738. },
  34739. eyesEnraged: {
  34740. height: math.unit(1.331, "feet"),
  34741. name: "Eyes (Enraged)",
  34742. image: {
  34743. source: "./media/characters/saphinara/eyes-enraged.svg"
  34744. },
  34745. form: "normal"
  34746. },
  34747. trueFormSide: {
  34748. height: math.unit(200, "feet"),
  34749. weight: math.unit(1e7, "tons"),
  34750. name: "Side",
  34751. image: {
  34752. source: "./media/characters/saphinara/true-form-side.svg",
  34753. extra: 1399/770,
  34754. bottom: 97/1496
  34755. },
  34756. form: "true-form",
  34757. default: true
  34758. },
  34759. trueFormMaw: {
  34760. height: math.unit(71.5, "feet"),
  34761. name: "Maw",
  34762. image: {
  34763. source: "./media/characters/saphinara/true-form-maw.svg",
  34764. extra: 2302/1453,
  34765. bottom: 0/2302
  34766. },
  34767. form: "true-form"
  34768. },
  34769. meowberusSide: {
  34770. height: math.unit(75, "feet"),
  34771. weight: math.unit(180000, "kg"),
  34772. preyCapacity: math.unit(50000, "people"),
  34773. name: "Side",
  34774. image: {
  34775. source: "./media/characters/saphinara/meowberus-side.svg",
  34776. extra: 1400/711,
  34777. bottom: 126/1526
  34778. },
  34779. form: "meowberus",
  34780. extraAttributes: {
  34781. "pawArea": {
  34782. name: "Paw Size",
  34783. power: 2,
  34784. type: "area",
  34785. base: math.unit(35, "m^2")
  34786. }
  34787. }
  34788. },
  34789. },
  34790. [
  34791. {
  34792. name: "Normal",
  34793. height: math.unit(15 + 7/12, "feet"),
  34794. default: true,
  34795. form: "normal"
  34796. },
  34797. {
  34798. name: "Angry",
  34799. height: math.unit(30 + 6/12, "feet"),
  34800. form: "normal"
  34801. },
  34802. {
  34803. name: "Enraged",
  34804. height: math.unit(102 + 1/12, "feet"),
  34805. form: "normal"
  34806. },
  34807. {
  34808. name: "True",
  34809. height: math.unit(200, "feet"),
  34810. default: true,
  34811. form: "true-form"
  34812. },
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(75, "feet"),
  34816. default: true,
  34817. form: "meowberus"
  34818. },
  34819. ],
  34820. {
  34821. "normal": {
  34822. name: "Normal",
  34823. default: true
  34824. },
  34825. "true-form": {
  34826. name: "True Form"
  34827. },
  34828. "meowberus": {
  34829. name: "Meowberus",
  34830. },
  34831. }
  34832. ))
  34833. characterMakers.push(() => makeCharacter(
  34834. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34835. {
  34836. front: {
  34837. height: math.unit(6 + 8/12, "feet"),
  34838. weight: math.unit(300, "lb"),
  34839. name: "Front",
  34840. image: {
  34841. source: "./media/characters/jrain/front.svg",
  34842. extra: 3039/2865,
  34843. bottom: 399/3438
  34844. }
  34845. },
  34846. back: {
  34847. height: math.unit(6 + 8/12, "feet"),
  34848. weight: math.unit(300, "lb"),
  34849. name: "Back",
  34850. image: {
  34851. source: "./media/characters/jrain/back.svg",
  34852. extra: 3089/2938,
  34853. bottom: 172/3261
  34854. }
  34855. },
  34856. head: {
  34857. height: math.unit(2.14, "feet"),
  34858. name: "Head",
  34859. image: {
  34860. source: "./media/characters/jrain/head.svg"
  34861. }
  34862. },
  34863. maw: {
  34864. height: math.unit(1.77, "feet"),
  34865. name: "Maw",
  34866. image: {
  34867. source: "./media/characters/jrain/maw.svg"
  34868. }
  34869. },
  34870. leftHand: {
  34871. height: math.unit(1.1, "feet"),
  34872. name: "Left Hand",
  34873. image: {
  34874. source: "./media/characters/jrain/left-hand.svg"
  34875. }
  34876. },
  34877. rightHand: {
  34878. height: math.unit(1.1, "feet"),
  34879. name: "Right Hand",
  34880. image: {
  34881. source: "./media/characters/jrain/right-hand.svg"
  34882. }
  34883. },
  34884. eye: {
  34885. height: math.unit(0.35, "feet"),
  34886. name: "Eye",
  34887. image: {
  34888. source: "./media/characters/jrain/eye.svg"
  34889. }
  34890. },
  34891. },
  34892. [
  34893. {
  34894. name: "Normal",
  34895. height: math.unit(6 + 8/12, "feet"),
  34896. default: true
  34897. },
  34898. {
  34899. name: "Casually Large",
  34900. height: math.unit(25, "feet")
  34901. },
  34902. {
  34903. name: "Giant",
  34904. height: math.unit(100, "feet")
  34905. },
  34906. {
  34907. name: "Kaiju",
  34908. height: math.unit(300, "feet")
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34914. {
  34915. dragon: {
  34916. height: math.unit(5, "meters"),
  34917. name: "Dragon",
  34918. image: {
  34919. source: "./media/characters/sabrina/dragon.svg",
  34920. extra: 3670 / 2365,
  34921. bottom: 333 / 4003
  34922. }
  34923. },
  34924. gryphon: {
  34925. height: math.unit(3, "meters"),
  34926. name: "Gryphon",
  34927. image: {
  34928. source: "./media/characters/sabrina/gryphon.svg",
  34929. extra: 1576 / 945,
  34930. bottom: 71 / 1647
  34931. }
  34932. },
  34933. snake: {
  34934. height: math.unit(12, "meters"),
  34935. name: "Snake",
  34936. image: {
  34937. source: "./media/characters/sabrina/snake.svg",
  34938. extra: 1758 / 1320,
  34939. bottom: 186 / 1944
  34940. }
  34941. },
  34942. collar: {
  34943. height: math.unit(1.86, "meters"),
  34944. name: "Collar",
  34945. image: {
  34946. source: "./media/characters/sabrina/collar.svg"
  34947. }
  34948. },
  34949. eye: {
  34950. height: math.unit(0.53, "meters"),
  34951. name: "Eye",
  34952. image: {
  34953. source: "./media/characters/sabrina/eye.svg"
  34954. }
  34955. },
  34956. foot: {
  34957. height: math.unit(1.86, "meters"),
  34958. name: "Foot",
  34959. image: {
  34960. source: "./media/characters/sabrina/foot.svg"
  34961. }
  34962. },
  34963. hand: {
  34964. height: math.unit(1.32, "meters"),
  34965. name: "Hand",
  34966. image: {
  34967. source: "./media/characters/sabrina/hand.svg"
  34968. }
  34969. },
  34970. head: {
  34971. height: math.unit(2.44, "meters"),
  34972. name: "Head",
  34973. image: {
  34974. source: "./media/characters/sabrina/head.svg"
  34975. }
  34976. },
  34977. headAngry: {
  34978. height: math.unit(2.44, "meters"),
  34979. name: "Head (Angry))",
  34980. image: {
  34981. source: "./media/characters/sabrina/head-angry.svg"
  34982. }
  34983. },
  34984. maw: {
  34985. height: math.unit(1.65, "meters"),
  34986. name: "Maw",
  34987. image: {
  34988. source: "./media/characters/sabrina/maw.svg"
  34989. }
  34990. },
  34991. spikes: {
  34992. height: math.unit(1.69, "meters"),
  34993. name: "Spikes",
  34994. image: {
  34995. source: "./media/characters/sabrina/spikes.svg"
  34996. }
  34997. },
  34998. stomach: {
  34999. height: math.unit(1.15, "meters"),
  35000. name: "Stomach",
  35001. image: {
  35002. source: "./media/characters/sabrina/stomach.svg"
  35003. }
  35004. },
  35005. tongue: {
  35006. height: math.unit(1.27, "meters"),
  35007. name: "Tongue",
  35008. image: {
  35009. source: "./media/characters/sabrina/tongue.svg"
  35010. }
  35011. },
  35012. wingDorsal: {
  35013. height: math.unit(4.85, "meters"),
  35014. name: "Wing (Dorsal)",
  35015. image: {
  35016. source: "./media/characters/sabrina/wing-dorsal.svg"
  35017. }
  35018. },
  35019. wingVentral: {
  35020. height: math.unit(4.85, "meters"),
  35021. name: "Wing (Ventral)",
  35022. image: {
  35023. source: "./media/characters/sabrina/wing-ventral.svg"
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Normal",
  35030. height: math.unit(5, "meters"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35037. {
  35038. frontMaid: {
  35039. height: math.unit(5 + 5/12, "feet"),
  35040. weight: math.unit(130, "lb"),
  35041. name: "Front (Maid)",
  35042. image: {
  35043. source: "./media/characters/midnight-tales/front-maid.svg",
  35044. extra: 489/454,
  35045. bottom: 61/550
  35046. }
  35047. },
  35048. frontFormal: {
  35049. height: math.unit(5 + 5/12, "feet"),
  35050. weight: math.unit(130, "lb"),
  35051. name: "Front (Formal)",
  35052. image: {
  35053. source: "./media/characters/midnight-tales/front-formal.svg",
  35054. extra: 489/454,
  35055. bottom: 61/550
  35056. }
  35057. },
  35058. back: {
  35059. height: math.unit(5 + 5/12, "feet"),
  35060. weight: math.unit(130, "lb"),
  35061. name: "Back",
  35062. image: {
  35063. source: "./media/characters/midnight-tales/back.svg",
  35064. extra: 498/456,
  35065. bottom: 33/531
  35066. }
  35067. },
  35068. frontBeast: {
  35069. height: math.unit(40, "feet"),
  35070. weight: math.unit(64000, "lb"),
  35071. name: "Front (Beast)",
  35072. image: {
  35073. source: "./media/characters/midnight-tales/front-beast.svg",
  35074. extra: 927/860,
  35075. bottom: 53/980
  35076. }
  35077. },
  35078. backBeast: {
  35079. height: math.unit(40, "feet"),
  35080. weight: math.unit(64000, "lb"),
  35081. name: "Back (Beast)",
  35082. image: {
  35083. source: "./media/characters/midnight-tales/back-beast.svg",
  35084. extra: 929/855,
  35085. bottom: 16/945
  35086. }
  35087. },
  35088. footBeast: {
  35089. height: math.unit(6.7, "feet"),
  35090. name: "Foot (Beast)",
  35091. image: {
  35092. source: "./media/characters/midnight-tales/foot-beast.svg"
  35093. }
  35094. },
  35095. headBeast: {
  35096. height: math.unit(8, "feet"),
  35097. name: "Head (Beast)",
  35098. image: {
  35099. source: "./media/characters/midnight-tales/head-beast.svg"
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(5 + 5 / 12, "feet"),
  35107. default: true
  35108. },
  35109. {
  35110. name: "Macro",
  35111. height: math.unit(25, "feet")
  35112. },
  35113. ]
  35114. ))
  35115. characterMakers.push(() => makeCharacter(
  35116. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35117. {
  35118. front: {
  35119. height: math.unit(5 + 10/12, "feet"),
  35120. name: "Front",
  35121. image: {
  35122. source: "./media/characters/argon/front.svg",
  35123. extra: 2009/1935,
  35124. bottom: 118/2127
  35125. }
  35126. },
  35127. back: {
  35128. height: math.unit(5 + 10/12, "feet"),
  35129. name: "Back",
  35130. image: {
  35131. source: "./media/characters/argon/back.svg",
  35132. extra: 2047/1992,
  35133. bottom: 20/2067
  35134. }
  35135. },
  35136. frontDressed: {
  35137. height: math.unit(5 + 10/12, "feet"),
  35138. name: "Front (Dressed)",
  35139. image: {
  35140. source: "./media/characters/argon/front-dressed.svg",
  35141. extra: 2009/1935,
  35142. bottom: 118/2127
  35143. }
  35144. },
  35145. },
  35146. [
  35147. {
  35148. name: "Normal",
  35149. height: math.unit(5 + 10/12, "feet"),
  35150. default: true
  35151. },
  35152. ]
  35153. ))
  35154. characterMakers.push(() => makeCharacter(
  35155. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35156. {
  35157. front: {
  35158. height: math.unit(8 + 6/12, "feet"),
  35159. weight: math.unit(1150, "lb"),
  35160. name: "Front",
  35161. image: {
  35162. source: "./media/characters/kichi/front.svg",
  35163. extra: 1267/1164,
  35164. bottom: 61/1328
  35165. }
  35166. },
  35167. back: {
  35168. height: math.unit(8 + 6/12, "feet"),
  35169. weight: math.unit(1150, "lb"),
  35170. name: "Back",
  35171. image: {
  35172. source: "./media/characters/kichi/back.svg",
  35173. extra: 1273/1166,
  35174. bottom: 33/1306
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Normal",
  35181. height: math.unit(8 + 6/12, "feet"),
  35182. default: true
  35183. },
  35184. ]
  35185. ))
  35186. characterMakers.push(() => makeCharacter(
  35187. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35188. {
  35189. front: {
  35190. height: math.unit(6, "feet"),
  35191. weight: math.unit(210, "lb"),
  35192. name: "Front",
  35193. image: {
  35194. source: "./media/characters/manetel-greyscale/front.svg",
  35195. extra: 350/312,
  35196. bottom: 8/358
  35197. }
  35198. },
  35199. },
  35200. [
  35201. {
  35202. name: "Micro",
  35203. height: math.unit(2, "inches")
  35204. },
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(6, "feet"),
  35208. default: true
  35209. },
  35210. {
  35211. name: "Minimacro",
  35212. height: math.unit(17, "feet")
  35213. },
  35214. {
  35215. name: "Macro",
  35216. height: math.unit(117, "feet")
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35222. {
  35223. side: {
  35224. height: math.unit(5 + 1/12, "feet"),
  35225. weight: math.unit(418, "lb"),
  35226. name: "Side",
  35227. image: {
  35228. source: "./media/characters/softpurr/side.svg",
  35229. extra: 1993/1945,
  35230. bottom: 134/2127
  35231. }
  35232. },
  35233. front: {
  35234. height: math.unit(5 + 1/12, "feet"),
  35235. weight: math.unit(418, "lb"),
  35236. name: "Front",
  35237. image: {
  35238. source: "./media/characters/softpurr/front.svg",
  35239. extra: 1950/1856,
  35240. bottom: 174/2124
  35241. }
  35242. },
  35243. paw: {
  35244. height: math.unit(1, "feet"),
  35245. name: "Paw",
  35246. image: {
  35247. source: "./media/characters/softpurr/paw.svg"
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(5 + 1/12, "feet"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35261. {
  35262. front: {
  35263. height: math.unit(260, "meters"),
  35264. name: "Front",
  35265. image: {
  35266. source: "./media/characters/anahita/front.svg",
  35267. extra: 665/635,
  35268. bottom: 89/754
  35269. }
  35270. },
  35271. },
  35272. [
  35273. {
  35274. name: "Macro",
  35275. height: math.unit(260, "meters"),
  35276. default: true
  35277. },
  35278. ]
  35279. ))
  35280. characterMakers.push(() => makeCharacter(
  35281. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35282. {
  35283. front: {
  35284. height: math.unit(4 + 10/12, "feet"),
  35285. weight: math.unit(160, "lb"),
  35286. name: "Front",
  35287. image: {
  35288. source: "./media/characters/chip-mouse/front.svg",
  35289. extra: 3528/3408,
  35290. bottom: 0/3528
  35291. }
  35292. },
  35293. frontNsfw: {
  35294. height: math.unit(4 + 10/12, "feet"),
  35295. weight: math.unit(160, "lb"),
  35296. name: "Front (NSFW)",
  35297. image: {
  35298. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35299. extra: 3528/3408,
  35300. bottom: 0/3528
  35301. }
  35302. },
  35303. },
  35304. [
  35305. {
  35306. name: "Normal",
  35307. height: math.unit(4 + 10/12, "feet"),
  35308. default: true
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35314. {
  35315. side: {
  35316. height: math.unit(10, "feet"),
  35317. weight: math.unit(14000, "lb"),
  35318. name: "Side",
  35319. image: {
  35320. source: "./media/characters/kremm/side.svg",
  35321. extra: 1390/1053,
  35322. bottom: 90/1480
  35323. }
  35324. },
  35325. gut: {
  35326. height: math.unit(5.8, "feet"),
  35327. name: "Gut",
  35328. image: {
  35329. source: "./media/characters/kremm/gut.svg"
  35330. }
  35331. },
  35332. ass: {
  35333. height: math.unit(6.1, "feet"),
  35334. name: "Ass",
  35335. image: {
  35336. source: "./media/characters/kremm/ass.svg"
  35337. }
  35338. },
  35339. jaws: {
  35340. height: math.unit(2.2, "feet"),
  35341. name: "Jaws",
  35342. image: {
  35343. source: "./media/characters/kremm/jaws.svg"
  35344. }
  35345. },
  35346. dick: {
  35347. height: math.unit(4.26, "feet"),
  35348. name: "Dick",
  35349. image: {
  35350. source: "./media/characters/kremm/dick.svg"
  35351. }
  35352. },
  35353. },
  35354. [
  35355. {
  35356. name: "Normal",
  35357. height: math.unit(10, "feet"),
  35358. default: true
  35359. },
  35360. ]
  35361. ))
  35362. characterMakers.push(() => makeCharacter(
  35363. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35364. {
  35365. front: {
  35366. height: math.unit(30, "stories"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/kai/front.svg",
  35370. extra: 1892/1718,
  35371. bottom: 162/2054
  35372. }
  35373. },
  35374. },
  35375. [
  35376. {
  35377. name: "Macro",
  35378. height: math.unit(30, "stories"),
  35379. default: true
  35380. },
  35381. ]
  35382. ))
  35383. characterMakers.push(() => makeCharacter(
  35384. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35385. {
  35386. front: {
  35387. height: math.unit(6 + 4/12, "feet"),
  35388. weight: math.unit(145, "lb"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/sykes/front.svg",
  35392. extra: 1321 / 1187,
  35393. bottom: 66 / 1387
  35394. }
  35395. },
  35396. back: {
  35397. height: math.unit(6 + 4/12, "feet"),
  35398. weight: math.unit(145, "lb"),
  35399. name: "Back",
  35400. image: {
  35401. source: "./media/characters/sykes/back.svg",
  35402. extra: 1326/1181,
  35403. bottom: 31/1357
  35404. }
  35405. },
  35406. traditionalOutfit: {
  35407. height: math.unit(6 + 4/12, "feet"),
  35408. weight: math.unit(145, "lb"),
  35409. name: "Traditional Outfit",
  35410. image: {
  35411. source: "./media/characters/sykes/traditional-outfit.svg",
  35412. extra: 1321 / 1187,
  35413. bottom: 66 / 1387
  35414. }
  35415. },
  35416. adventureOutfit: {
  35417. height: math.unit(6 + 4/12, "feet"),
  35418. weight: math.unit(145, "lb"),
  35419. name: "Adventure Outfit",
  35420. image: {
  35421. source: "./media/characters/sykes/adventure-outfit.svg",
  35422. extra: 1321 / 1187,
  35423. bottom: 66 / 1387
  35424. }
  35425. },
  35426. handLeft: {
  35427. height: math.unit(0.9, "feet"),
  35428. name: "Hand (Left)",
  35429. image: {
  35430. source: "./media/characters/sykes/hand-left.svg"
  35431. }
  35432. },
  35433. handRight: {
  35434. height: math.unit(0.839, "feet"),
  35435. name: "Hand (Right)",
  35436. image: {
  35437. source: "./media/characters/sykes/hand-right.svg"
  35438. }
  35439. },
  35440. leftFoot: {
  35441. height: math.unit(1.2, "feet"),
  35442. name: "Foot (Left)",
  35443. image: {
  35444. source: "./media/characters/sykes/foot-left.svg"
  35445. }
  35446. },
  35447. rightFoot: {
  35448. height: math.unit(1.2, "feet"),
  35449. name: "Foot (Right)",
  35450. image: {
  35451. source: "./media/characters/sykes/foot-right.svg"
  35452. }
  35453. },
  35454. maw: {
  35455. height: math.unit(1.93, "feet"),
  35456. name: "Maw",
  35457. image: {
  35458. source: "./media/characters/sykes/maw.svg"
  35459. }
  35460. },
  35461. teeth: {
  35462. height: math.unit(0.51, "feet"),
  35463. name: "Teeth",
  35464. image: {
  35465. source: "./media/characters/sykes/teeth.svg"
  35466. }
  35467. },
  35468. tongue: {
  35469. height: math.unit(2.13, "feet"),
  35470. name: "Tongue",
  35471. image: {
  35472. source: "./media/characters/sykes/tongue.svg"
  35473. }
  35474. },
  35475. uvula: {
  35476. height: math.unit(0.16, "feet"),
  35477. name: "Uvula",
  35478. image: {
  35479. source: "./media/characters/sykes/uvula.svg"
  35480. }
  35481. },
  35482. collar: {
  35483. height: math.unit(0.287, "feet"),
  35484. name: "Collar",
  35485. image: {
  35486. source: "./media/characters/sykes/collar.svg"
  35487. }
  35488. },
  35489. tail: {
  35490. height: math.unit(3.8, "feet"),
  35491. name: "Tail",
  35492. image: {
  35493. source: "./media/characters/sykes/tail.svg"
  35494. }
  35495. },
  35496. },
  35497. [
  35498. {
  35499. name: "Shrunken",
  35500. height: math.unit(5, "inches")
  35501. },
  35502. {
  35503. name: "Normal",
  35504. height: math.unit(6 + 4 / 12, "feet"),
  35505. default: true
  35506. },
  35507. {
  35508. name: "Big",
  35509. height: math.unit(15, "feet")
  35510. },
  35511. ]
  35512. ))
  35513. characterMakers.push(() => makeCharacter(
  35514. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35515. {
  35516. front: {
  35517. height: math.unit(5 + 8/12, "feet"),
  35518. weight: math.unit(190, "lb"),
  35519. name: "Front",
  35520. image: {
  35521. source: "./media/characters/oven-otter/front.svg",
  35522. extra: 1809/1740,
  35523. bottom: 181/1990
  35524. }
  35525. },
  35526. back: {
  35527. height: math.unit(5 + 8/12, "feet"),
  35528. weight: math.unit(190, "lb"),
  35529. name: "Back",
  35530. image: {
  35531. source: "./media/characters/oven-otter/back.svg",
  35532. extra: 1709/1635,
  35533. bottom: 118/1827
  35534. }
  35535. },
  35536. hand: {
  35537. height: math.unit(1.07, "feet"),
  35538. name: "Hand",
  35539. image: {
  35540. source: "./media/characters/oven-otter/hand.svg"
  35541. }
  35542. },
  35543. beans: {
  35544. height: math.unit(1.74, "feet"),
  35545. name: "Beans",
  35546. image: {
  35547. source: "./media/characters/oven-otter/beans.svg"
  35548. }
  35549. },
  35550. },
  35551. [
  35552. {
  35553. name: "Micro",
  35554. height: math.unit(0.5, "inches")
  35555. },
  35556. {
  35557. name: "Normal",
  35558. height: math.unit(5 + 8/12, "feet"),
  35559. default: true
  35560. },
  35561. {
  35562. name: "Macro",
  35563. height: math.unit(250, "feet")
  35564. },
  35565. {
  35566. name: "Really High",
  35567. height: math.unit(420, "feet")
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(5, "meters"),
  35576. weight: math.unit(292000000000000, "kg"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/devourer/front.svg",
  35580. extra: 1800/1733,
  35581. bottom: 211/2011
  35582. }
  35583. },
  35584. maw: {
  35585. height: math.unit(1.1, "meter"),
  35586. name: "Maw",
  35587. image: {
  35588. source: "./media/characters/devourer/maw.svg"
  35589. }
  35590. },
  35591. },
  35592. [
  35593. {
  35594. name: "Small",
  35595. height: math.unit(3, "meters")
  35596. },
  35597. {
  35598. name: "Large",
  35599. height: math.unit(5, "meters"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35606. {
  35607. front: {
  35608. height: math.unit(6, "feet"),
  35609. weight: math.unit(400, "lb"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/ellarby/front.svg",
  35613. extra: 1909/1763,
  35614. bottom: 80/1989
  35615. }
  35616. },
  35617. back: {
  35618. height: math.unit(6, "feet"),
  35619. weight: math.unit(400, "lb"),
  35620. name: "Back",
  35621. image: {
  35622. source: "./media/characters/ellarby/back.svg",
  35623. extra: 1914/1784,
  35624. bottom: 172/2086
  35625. }
  35626. },
  35627. },
  35628. [
  35629. {
  35630. name: "Mischief",
  35631. height: math.unit(18, "inches")
  35632. },
  35633. {
  35634. name: "Trouble",
  35635. height: math.unit(12, "feet")
  35636. },
  35637. {
  35638. name: "Havoc",
  35639. height: math.unit(200, "feet"),
  35640. default: true
  35641. },
  35642. {
  35643. name: "Pandemonium",
  35644. height: math.unit(1, "mile")
  35645. },
  35646. {
  35647. name: "Catastrophe",
  35648. height: math.unit(100, "miles")
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35654. {
  35655. front: {
  35656. height: math.unit(4.7, "meters"),
  35657. weight: math.unit(6500, "kg"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/vex/front.svg",
  35661. extra: 1288/1140,
  35662. bottom: 100/1388
  35663. }
  35664. },
  35665. },
  35666. [
  35667. {
  35668. name: "Normal",
  35669. height: math.unit(4.7, "meters"),
  35670. default: true
  35671. },
  35672. ]
  35673. ))
  35674. characterMakers.push(() => makeCharacter(
  35675. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35676. {
  35677. normal: {
  35678. height: math.unit(6, "feet"),
  35679. weight: math.unit(350, "lb"),
  35680. name: "Normal",
  35681. image: {
  35682. source: "./media/characters/teshy/normal.svg",
  35683. extra: 1795/1735,
  35684. bottom: 16/1811
  35685. }
  35686. },
  35687. monsterFront: {
  35688. height: math.unit(12, "feet"),
  35689. weight: math.unit(4700, "lb"),
  35690. name: "Monster (Front)",
  35691. image: {
  35692. source: "./media/characters/teshy/monster-front.svg",
  35693. extra: 2042/2034,
  35694. bottom: 128/2170
  35695. }
  35696. },
  35697. monsterSide: {
  35698. height: math.unit(12, "feet"),
  35699. weight: math.unit(4700, "lb"),
  35700. name: "Monster (Side)",
  35701. image: {
  35702. source: "./media/characters/teshy/monster-side.svg",
  35703. extra: 2067/2056,
  35704. bottom: 70/2137
  35705. }
  35706. },
  35707. monsterBack: {
  35708. height: math.unit(12, "feet"),
  35709. weight: math.unit(4700, "lb"),
  35710. name: "Monster (Back)",
  35711. image: {
  35712. source: "./media/characters/teshy/monster-back.svg",
  35713. extra: 1921/1914,
  35714. bottom: 171/2092
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(6, "feet"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(6, "feet"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/ramey/front.svg",
  35734. extra: 790/787,
  35735. bottom: 27/817
  35736. }
  35737. },
  35738. },
  35739. [
  35740. {
  35741. name: "Normal",
  35742. height: math.unit(6, "feet"),
  35743. default: true
  35744. },
  35745. ]
  35746. ))
  35747. characterMakers.push(() => makeCharacter(
  35748. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35749. {
  35750. front: {
  35751. height: math.unit(5 + 5/12, "feet"),
  35752. weight: math.unit(120, "lb"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/phirae/front.svg",
  35756. extra: 2491/2436,
  35757. bottom: 38/2529
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(5 + 5/12, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35771. {
  35772. front: {
  35773. height: math.unit(5 + 3/12, "feet"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/stagglas/front.svg",
  35777. extra: 962/882,
  35778. bottom: 53/1015
  35779. }
  35780. },
  35781. feral: {
  35782. height: math.unit(335, "cm"),
  35783. name: "Feral",
  35784. image: {
  35785. source: "./media/characters/stagglas/feral.svg",
  35786. extra: 1732/1090,
  35787. bottom: 48/1780
  35788. }
  35789. },
  35790. },
  35791. [
  35792. {
  35793. name: "Normal",
  35794. height: math.unit(5 + 3/12, "feet"),
  35795. default: true
  35796. },
  35797. ]
  35798. ))
  35799. characterMakers.push(() => makeCharacter(
  35800. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35801. {
  35802. front: {
  35803. height: math.unit(5 + 4/12, "feet"),
  35804. weight: math.unit(145, "lb"),
  35805. name: "Front",
  35806. image: {
  35807. source: "./media/characters/starra/front.svg",
  35808. extra: 1790/1691,
  35809. bottom: 91/1881
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(5 + 4/12, "feet"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35823. {
  35824. front: {
  35825. height: math.unit(2.2, "meters"),
  35826. name: "Front",
  35827. image: {
  35828. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35829. extra: 1194/1005,
  35830. bottom: 25/1219
  35831. }
  35832. },
  35833. },
  35834. [
  35835. {
  35836. name: "Normal",
  35837. height: math.unit(2.2, "meters"),
  35838. default: true
  35839. },
  35840. ]
  35841. ))
  35842. characterMakers.push(() => makeCharacter(
  35843. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35844. {
  35845. side: {
  35846. height: math.unit(8 + 2/12, "feet"),
  35847. weight: math.unit(1240, "lb"),
  35848. name: "Side",
  35849. image: {
  35850. source: "./media/characters/mika-valentine/side.svg",
  35851. extra: 2670/2501,
  35852. bottom: 250/2920
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(8 + 2/12, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(7 + 2/12, "feet"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/xoltol/front.svg",
  35872. extra: 2212/2124,
  35873. bottom: 84/2296
  35874. }
  35875. },
  35876. side: {
  35877. height: math.unit(7 + 2/12, "feet"),
  35878. name: "Side",
  35879. image: {
  35880. source: "./media/characters/xoltol/side.svg",
  35881. extra: 2273/2197,
  35882. bottom: 26/2299
  35883. }
  35884. },
  35885. hand: {
  35886. height: math.unit(2.5, "feet"),
  35887. name: "Hand",
  35888. image: {
  35889. source: "./media/characters/xoltol/hand.svg"
  35890. }
  35891. },
  35892. },
  35893. [
  35894. {
  35895. name: "Small-ish",
  35896. height: math.unit(5 + 11/12, "feet")
  35897. },
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(7 + 2/12, "feet")
  35901. },
  35902. {
  35903. name: "\"Macro\"",
  35904. height: math.unit(14 + 9/12, "feet"),
  35905. default: true
  35906. },
  35907. {
  35908. name: "Alternate Height",
  35909. height: math.unit(20, "feet")
  35910. },
  35911. {
  35912. name: "Actually Macro",
  35913. height: math.unit(100, "feet")
  35914. },
  35915. ]
  35916. ))
  35917. characterMakers.push(() => makeCharacter(
  35918. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35919. {
  35920. front: {
  35921. height: math.unit(5 + 2/12, "feet"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/kotetsu-redwood/front.svg",
  35925. extra: 1053/942,
  35926. bottom: 60/1113
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(5 + 2/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(2.4, "meters"),
  35943. weight: math.unit(125, "kg"),
  35944. name: "Front",
  35945. image: {
  35946. source: "./media/characters/lilith/front.svg",
  35947. extra: 1590/1513,
  35948. bottom: 203/1793
  35949. }
  35950. },
  35951. },
  35952. [
  35953. {
  35954. name: "Humanoid",
  35955. height: math.unit(2.4, "meters")
  35956. },
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(6, "meters"),
  35960. default: true
  35961. },
  35962. {
  35963. name: "Largest",
  35964. height: math.unit(55, "meters")
  35965. },
  35966. ]
  35967. ))
  35968. characterMakers.push(() => makeCharacter(
  35969. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35970. {
  35971. front: {
  35972. height: math.unit(8 + 4/12, "feet"),
  35973. weight: math.unit(535, "lb"),
  35974. name: "Front",
  35975. image: {
  35976. source: "./media/characters/beh'kah-bolger/front.svg",
  35977. extra: 1660/1603,
  35978. bottom: 37/1697
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(8 + 4/12, "feet"),
  35986. default: true
  35987. },
  35988. {
  35989. name: "Kaiju",
  35990. height: math.unit(250, "feet")
  35991. },
  35992. {
  35993. name: "Still Growing",
  35994. height: math.unit(10, "miles")
  35995. },
  35996. {
  35997. name: "Continental",
  35998. height: math.unit(5000, "miles")
  35999. },
  36000. {
  36001. name: "Final Form",
  36002. height: math.unit(2500000, "miles")
  36003. },
  36004. ]
  36005. ))
  36006. characterMakers.push(() => makeCharacter(
  36007. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36008. {
  36009. front: {
  36010. height: math.unit(7 + 2/12, "feet"),
  36011. weight: math.unit(230, "kg"),
  36012. name: "Front",
  36013. image: {
  36014. source: "./media/characters/tatyana-milewska/front.svg",
  36015. extra: 1199/1150,
  36016. bottom: 86/1285
  36017. }
  36018. },
  36019. },
  36020. [
  36021. {
  36022. name: "Normal",
  36023. height: math.unit(7 + 2/12, "feet"),
  36024. default: true
  36025. },
  36026. {
  36027. name: "Big",
  36028. height: math.unit(12, "feet")
  36029. },
  36030. {
  36031. name: "Minimacro",
  36032. height: math.unit(20, "feet")
  36033. },
  36034. {
  36035. name: "Macro",
  36036. height: math.unit(120, "feet")
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36042. {
  36043. front: {
  36044. height: math.unit(7 + 8/12, "feet"),
  36045. weight: math.unit(152, "kg"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/helen-arri/front.svg",
  36049. extra: 440/423,
  36050. bottom: 14/454
  36051. }
  36052. },
  36053. back: {
  36054. height: math.unit(7 + 8/12, "feet"),
  36055. weight: math.unit(152, "kg"),
  36056. name: "Back",
  36057. image: {
  36058. source: "./media/characters/helen-arri/back.svg",
  36059. extra: 443/426,
  36060. bottom: 8/451
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(7 + 8/12, "feet"),
  36068. default: true
  36069. },
  36070. {
  36071. name: "Big",
  36072. height: math.unit(14, "feet")
  36073. },
  36074. {
  36075. name: "Minimacro",
  36076. height: math.unit(24, "feet")
  36077. },
  36078. {
  36079. name: "Macro",
  36080. height: math.unit(140, "feet")
  36081. },
  36082. ]
  36083. ))
  36084. characterMakers.push(() => makeCharacter(
  36085. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36086. {
  36087. front: {
  36088. height: math.unit(6, "meters"),
  36089. name: "Front",
  36090. image: {
  36091. source: "./media/characters/ehanu-rehu/front.svg",
  36092. extra: 1800/1800,
  36093. bottom: 59/1859
  36094. }
  36095. },
  36096. },
  36097. [
  36098. {
  36099. name: "Normal",
  36100. height: math.unit(6, "meters"),
  36101. default: true
  36102. },
  36103. ]
  36104. ))
  36105. characterMakers.push(() => makeCharacter(
  36106. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36107. {
  36108. front: {
  36109. height: math.unit(7 + 3/12, "feet"),
  36110. name: "Front",
  36111. image: {
  36112. source: "./media/characters/renholder/front.svg",
  36113. extra: 3096/2960,
  36114. bottom: 250/3346
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal Bat",
  36121. height: math.unit(7 + 3/12, "feet"),
  36122. default: true
  36123. },
  36124. {
  36125. name: "Slightly Tall Bat",
  36126. height: math.unit(100, "feet")
  36127. },
  36128. {
  36129. name: "Big Bat",
  36130. height: math.unit(1000, "feet")
  36131. },
  36132. {
  36133. name: "City-Sized Bat",
  36134. height: math.unit(200000, "feet")
  36135. },
  36136. {
  36137. name: "Bigger Bat",
  36138. height: math.unit(10000, "miles")
  36139. },
  36140. {
  36141. name: "Solar Sized Bat",
  36142. height: math.unit(100, "AU")
  36143. },
  36144. {
  36145. name: "Galactic Bat",
  36146. height: math.unit(200000, "lightyears")
  36147. },
  36148. {
  36149. name: "Universally Known Bat",
  36150. height: math.unit(1, "universe")
  36151. },
  36152. ]
  36153. ))
  36154. characterMakers.push(() => makeCharacter(
  36155. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36156. {
  36157. front: {
  36158. height: math.unit(6 + 11/12, "feet"),
  36159. weight: math.unit(250, "lb"),
  36160. name: "Front",
  36161. image: {
  36162. source: "./media/characters/cookiecat/front.svg",
  36163. extra: 893/827,
  36164. bottom: 14/907
  36165. }
  36166. },
  36167. },
  36168. [
  36169. {
  36170. name: "Micro",
  36171. height: math.unit(3, "inches")
  36172. },
  36173. {
  36174. name: "Normal",
  36175. height: math.unit(6 + 11/12, "feet"),
  36176. default: true
  36177. },
  36178. {
  36179. name: "Macro",
  36180. height: math.unit(100, "feet")
  36181. },
  36182. {
  36183. name: "Macro+",
  36184. height: math.unit(404, "feet")
  36185. },
  36186. {
  36187. name: "Megamacro",
  36188. height: math.unit(165, "miles")
  36189. },
  36190. {
  36191. name: "Planetary",
  36192. height: math.unit(4600, "miles")
  36193. },
  36194. ]
  36195. ))
  36196. characterMakers.push(() => makeCharacter(
  36197. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36198. {
  36199. front: {
  36200. height: math.unit(10 + 3/12, "feet"),
  36201. weight: math.unit(1500, "lb"),
  36202. name: "Front",
  36203. image: {
  36204. source: "./media/characters/tux-kusanagi/front.svg",
  36205. extra: 944/840,
  36206. bottom: 39/983
  36207. }
  36208. },
  36209. back: {
  36210. height: math.unit(10 + 3/12, "feet"),
  36211. weight: math.unit(1500, "lb"),
  36212. name: "Back",
  36213. image: {
  36214. source: "./media/characters/tux-kusanagi/back.svg",
  36215. extra: 941/842,
  36216. bottom: 28/969
  36217. }
  36218. },
  36219. rump: {
  36220. height: math.unit(5.25, "feet"),
  36221. name: "Rump",
  36222. image: {
  36223. source: "./media/characters/tux-kusanagi/rump.svg"
  36224. }
  36225. },
  36226. beak: {
  36227. height: math.unit(1.54, "feet"),
  36228. name: "Beak",
  36229. image: {
  36230. source: "./media/characters/tux-kusanagi/beak.svg"
  36231. }
  36232. },
  36233. },
  36234. [
  36235. {
  36236. name: "Normal",
  36237. height: math.unit(10 + 3/12, "feet"),
  36238. default: true
  36239. },
  36240. ]
  36241. ))
  36242. characterMakers.push(() => makeCharacter(
  36243. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36244. {
  36245. front: {
  36246. height: math.unit(58, "feet"),
  36247. weight: math.unit(200, "tons"),
  36248. name: "Front",
  36249. image: {
  36250. source: "./media/characters/uzarmazari/front.svg",
  36251. extra: 1575/1455,
  36252. bottom: 152/1727
  36253. }
  36254. },
  36255. back: {
  36256. height: math.unit(58, "feet"),
  36257. weight: math.unit(200, "tons"),
  36258. name: "Back",
  36259. image: {
  36260. source: "./media/characters/uzarmazari/back.svg",
  36261. extra: 1585/1510,
  36262. bottom: 157/1742
  36263. }
  36264. },
  36265. head: {
  36266. height: math.unit(26, "feet"),
  36267. name: "Head",
  36268. image: {
  36269. source: "./media/characters/uzarmazari/head.svg"
  36270. }
  36271. },
  36272. },
  36273. [
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(58, "feet"),
  36277. default: true
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36283. {
  36284. side: {
  36285. height: math.unit(15, "feet"),
  36286. name: "Side",
  36287. image: {
  36288. source: "./media/characters/akitu/side.svg",
  36289. extra: 1421/1321,
  36290. bottom: 157/1578
  36291. }
  36292. },
  36293. front: {
  36294. height: math.unit(15, "feet"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/akitu/front.svg",
  36298. extra: 1435/1326,
  36299. bottom: 232/1667
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(15, "feet"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(10 + 8/12, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/azalie-croixland/front.svg",
  36319. extra: 1972/1856,
  36320. bottom: 31/2003
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Original Height",
  36327. height: math.unit(5 + 4/12, "feet")
  36328. },
  36329. {
  36330. name: "Normal Height",
  36331. height: math.unit(10 + 8/12, "feet"),
  36332. default: true
  36333. },
  36334. ]
  36335. ))
  36336. characterMakers.push(() => makeCharacter(
  36337. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36338. {
  36339. side: {
  36340. height: math.unit(7 + 1/12, "feet"),
  36341. weight: math.unit(245, "lb"),
  36342. name: "Side",
  36343. image: {
  36344. source: "./media/characters/kavus-kazian/side.svg",
  36345. extra: 349/342,
  36346. bottom: 15/364
  36347. }
  36348. },
  36349. },
  36350. [
  36351. {
  36352. name: "Normal",
  36353. height: math.unit(7 + 1/12, "feet"),
  36354. default: true
  36355. },
  36356. ]
  36357. ))
  36358. characterMakers.push(() => makeCharacter(
  36359. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36360. {
  36361. normalFront: {
  36362. height: math.unit(5 + 11/12, "feet"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/moonlight-rose/normal-front.svg",
  36366. extra: 1980/1825,
  36367. bottom: 18/1998
  36368. },
  36369. form: "normal",
  36370. default: true
  36371. },
  36372. normalBack: {
  36373. height: math.unit(5 + 11/12, "feet"),
  36374. name: "Back",
  36375. image: {
  36376. source: "./media/characters/moonlight-rose/normal-back.svg",
  36377. extra: 2010/1839,
  36378. bottom: 10/2020
  36379. },
  36380. form: "normal"
  36381. },
  36382. demonFront: {
  36383. height: math.unit(1.5, "earths"),
  36384. name: "Front",
  36385. image: {
  36386. source: "./media/characters/moonlight-rose/demon.svg",
  36387. extra: 1400/1294,
  36388. bottom: 45/1445
  36389. },
  36390. form: "demon",
  36391. default: true
  36392. },
  36393. terraFront: {
  36394. height: math.unit(1.5, "earths"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/moonlight-rose/terra.svg"
  36398. },
  36399. form: "terra",
  36400. default: true
  36401. },
  36402. jupiterFront: {
  36403. height: math.unit(69911*2, "km"),
  36404. name: "Front",
  36405. image: {
  36406. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36407. extra: 1367/1286,
  36408. bottom: 55/1422
  36409. },
  36410. form: "jupiter",
  36411. default: true
  36412. },
  36413. neptuneFront: {
  36414. height: math.unit(24622*2, "feet"),
  36415. name: "Front",
  36416. image: {
  36417. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36418. extra: 1851/1712,
  36419. bottom: 0/1851
  36420. },
  36421. form: "neptune",
  36422. default: true
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "\"Natural\" Height",
  36428. height: math.unit(5 + 11/12, "feet"),
  36429. form: "normal"
  36430. },
  36431. {
  36432. name: "Smallest comfortable size",
  36433. height: math.unit(40, "meters"),
  36434. form: "normal"
  36435. },
  36436. {
  36437. name: "Common size",
  36438. height: math.unit(50, "km"),
  36439. form: "normal",
  36440. default: true
  36441. },
  36442. {
  36443. name: "Normal",
  36444. height: math.unit(1.5, "earths"),
  36445. form: "demon",
  36446. default: true
  36447. },
  36448. {
  36449. name: "Universal",
  36450. height: math.unit(15, "universes"),
  36451. form: "demon"
  36452. },
  36453. {
  36454. name: "Earth",
  36455. height: math.unit(1.5, "earths"),
  36456. form: "terra",
  36457. default: true
  36458. },
  36459. {
  36460. name: "Super Earth",
  36461. height: math.unit(67.5, "earths"),
  36462. form: "terra"
  36463. },
  36464. {
  36465. name: "Doesn't fit in a solar system...",
  36466. height: math.unit(1, "galaxy"),
  36467. form: "terra"
  36468. },
  36469. {
  36470. name: "Saturn",
  36471. height: math.unit(58232*2, "km"),
  36472. form: "jupiter"
  36473. },
  36474. {
  36475. name: "Jupiter",
  36476. height: math.unit(69911*2, "km"),
  36477. form: "jupiter",
  36478. default: true
  36479. },
  36480. {
  36481. name: "HD 100546 b",
  36482. height: math.unit(482938, "km"),
  36483. form: "jupiter"
  36484. },
  36485. {
  36486. name: "Enceladus",
  36487. height: math.unit(513*2, "km"),
  36488. form: "neptune"
  36489. },
  36490. {
  36491. name: "Europe",
  36492. height: math.unit(1560*2, "km"),
  36493. form: "neptune"
  36494. },
  36495. {
  36496. name: "Neptune",
  36497. height: math.unit(24622*2, "km"),
  36498. form: "neptune",
  36499. default: true
  36500. },
  36501. {
  36502. name: "CoRoT-9b",
  36503. height: math.unit(75067*2, "km"),
  36504. form: "neptune"
  36505. },
  36506. ],
  36507. {
  36508. "normal": {
  36509. name: "Normal",
  36510. default: true
  36511. },
  36512. "demon": {
  36513. name: "Demon"
  36514. },
  36515. "terra": {
  36516. name: "Terra"
  36517. },
  36518. "jupiter": {
  36519. name: "Jupiter"
  36520. },
  36521. "neptune": {
  36522. name: "Neptune"
  36523. }
  36524. }
  36525. ))
  36526. characterMakers.push(() => makeCharacter(
  36527. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36528. {
  36529. front: {
  36530. height: math.unit(16, "feet"),
  36531. weight: math.unit(610, "kg"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/huckle/front.svg",
  36535. extra: 1731/1625,
  36536. bottom: 33/1764
  36537. }
  36538. },
  36539. back: {
  36540. height: math.unit(16, "feet"),
  36541. weight: math.unit(610, "kg"),
  36542. name: "Back",
  36543. image: {
  36544. source: "./media/characters/huckle/back.svg",
  36545. extra: 1738/1651,
  36546. bottom: 37/1775
  36547. }
  36548. },
  36549. laughing: {
  36550. height: math.unit(3.75, "feet"),
  36551. name: "Laughing",
  36552. image: {
  36553. source: "./media/characters/huckle/laughing.svg"
  36554. }
  36555. },
  36556. angry: {
  36557. height: math.unit(4.15, "feet"),
  36558. name: "Angry",
  36559. image: {
  36560. source: "./media/characters/huckle/angry.svg"
  36561. }
  36562. },
  36563. },
  36564. [
  36565. {
  36566. name: "Normal",
  36567. height: math.unit(16, "feet"),
  36568. default: true
  36569. },
  36570. {
  36571. name: "Mini Macro",
  36572. height: math.unit(463, "feet")
  36573. },
  36574. {
  36575. name: "Macro",
  36576. height: math.unit(1680, "meters")
  36577. },
  36578. {
  36579. name: "Mega Macro",
  36580. height: math.unit(175, "km")
  36581. },
  36582. {
  36583. name: "Terra Macro",
  36584. height: math.unit(32, "gigameters")
  36585. },
  36586. {
  36587. name: "Multiverse+",
  36588. height: math.unit(2.56e23, "yottameters")
  36589. },
  36590. ]
  36591. ))
  36592. characterMakers.push(() => makeCharacter(
  36593. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36594. {
  36595. front: {
  36596. height: math.unit(6 + 9/12, "feet"),
  36597. weight: math.unit(280, "lb"),
  36598. name: "Front",
  36599. image: {
  36600. source: "./media/characters/candy/front.svg",
  36601. extra: 234/217,
  36602. bottom: 11/245
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Really Small",
  36609. height: math.unit(0.1, "nm")
  36610. },
  36611. {
  36612. name: "Micro",
  36613. height: math.unit(2, "inches")
  36614. },
  36615. {
  36616. name: "Normal",
  36617. height: math.unit(6 + 9/12, "feet"),
  36618. default: true
  36619. },
  36620. {
  36621. name: "Small Macro",
  36622. height: math.unit(69, "feet")
  36623. },
  36624. {
  36625. name: "Macro",
  36626. height: math.unit(160, "feet")
  36627. },
  36628. {
  36629. name: "Megamacro",
  36630. height: math.unit(22000, "miles")
  36631. },
  36632. {
  36633. name: "Gigamacro",
  36634. height: math.unit(50000, "miles")
  36635. },
  36636. ]
  36637. ))
  36638. characterMakers.push(() => makeCharacter(
  36639. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36640. {
  36641. front: {
  36642. height: math.unit(4, "feet"),
  36643. weight: math.unit(90, "lb"),
  36644. name: "Front",
  36645. image: {
  36646. source: "./media/characters/joey-mcdonald/front.svg",
  36647. extra: 1059/852,
  36648. bottom: 33/1092
  36649. }
  36650. },
  36651. back: {
  36652. height: math.unit(4, "feet"),
  36653. weight: math.unit(90, "lb"),
  36654. name: "Back",
  36655. image: {
  36656. source: "./media/characters/joey-mcdonald/back.svg",
  36657. extra: 1077/879,
  36658. bottom: 5/1082
  36659. }
  36660. },
  36661. frontKobold: {
  36662. height: math.unit(4, "feet"),
  36663. weight: math.unit(100, "lb"),
  36664. name: "Front-kobold",
  36665. image: {
  36666. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36667. extra: 1480/1367,
  36668. bottom: 0/1480
  36669. }
  36670. },
  36671. backKobold: {
  36672. height: math.unit(4, "feet"),
  36673. weight: math.unit(100, "lb"),
  36674. name: "Back-kobold",
  36675. image: {
  36676. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36677. extra: 1449/1361,
  36678. bottom: 0/1449
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(4, "feet"),
  36686. default: true
  36687. },
  36688. ]
  36689. ))
  36690. characterMakers.push(() => makeCharacter(
  36691. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36692. {
  36693. front: {
  36694. height: math.unit(12 + 6/12, "feet"),
  36695. name: "Front",
  36696. image: {
  36697. source: "./media/characters/kass-lockheed/front.svg",
  36698. extra: 354/343,
  36699. bottom: 9/363
  36700. }
  36701. },
  36702. back: {
  36703. height: math.unit(12 + 6/12, "feet"),
  36704. name: "Back",
  36705. image: {
  36706. source: "./media/characters/kass-lockheed/back.svg",
  36707. extra: 364/352,
  36708. bottom: 3/367
  36709. }
  36710. },
  36711. dick: {
  36712. height: math.unit(3.12, "feet"),
  36713. name: "Dick",
  36714. image: {
  36715. source: "./media/characters/kass-lockheed/dick.svg"
  36716. }
  36717. },
  36718. head: {
  36719. height: math.unit(2.6, "feet"),
  36720. name: "Head",
  36721. image: {
  36722. source: "./media/characters/kass-lockheed/head.svg"
  36723. }
  36724. },
  36725. bleh: {
  36726. height: math.unit(2.85, "feet"),
  36727. name: "Bleh",
  36728. image: {
  36729. source: "./media/characters/kass-lockheed/bleh.svg"
  36730. }
  36731. },
  36732. smug: {
  36733. height: math.unit(2.85, "feet"),
  36734. name: "Smug",
  36735. image: {
  36736. source: "./media/characters/kass-lockheed/smug.svg"
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(12 + 6/12, "feet"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36750. {
  36751. front: {
  36752. height: math.unit(6 + 2/12, "feet"),
  36753. name: "Front",
  36754. image: {
  36755. source: "./media/characters/taylor/front.svg",
  36756. extra: 639/495,
  36757. bottom: 12/651
  36758. }
  36759. },
  36760. },
  36761. [
  36762. {
  36763. name: "Normal",
  36764. height: math.unit(6 + 2/12, "feet"),
  36765. default: true
  36766. },
  36767. {
  36768. name: "Big",
  36769. height: math.unit(15, "feet")
  36770. },
  36771. {
  36772. name: "Lorg",
  36773. height: math.unit(80, "feet")
  36774. },
  36775. {
  36776. name: "Too Lorg",
  36777. height: math.unit(120, "feet")
  36778. },
  36779. ]
  36780. ))
  36781. characterMakers.push(() => makeCharacter(
  36782. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36783. {
  36784. front: {
  36785. height: math.unit(15, "feet"),
  36786. name: "Front",
  36787. image: {
  36788. source: "./media/characters/kaizer/front.svg",
  36789. extra: 1612/1436,
  36790. bottom: 43/1655
  36791. }
  36792. },
  36793. },
  36794. [
  36795. {
  36796. name: "Normal",
  36797. height: math.unit(15, "feet"),
  36798. default: true
  36799. },
  36800. ]
  36801. ))
  36802. characterMakers.push(() => makeCharacter(
  36803. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36804. {
  36805. front: {
  36806. height: math.unit(2, "feet"),
  36807. weight: math.unit(30, "lb"),
  36808. name: "Front",
  36809. image: {
  36810. source: "./media/characters/sandy/front.svg",
  36811. extra: 1439/1307,
  36812. bottom: 194/1633
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(2, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(3, "feet"),
  36829. name: "Front",
  36830. image: {
  36831. source: "./media/characters/mellvi/front.svg",
  36832. extra: 1831/1630,
  36833. bottom: 58/1889
  36834. }
  36835. },
  36836. },
  36837. [
  36838. {
  36839. name: "Normal",
  36840. height: math.unit(3, "feet"),
  36841. default: true
  36842. },
  36843. ]
  36844. ))
  36845. characterMakers.push(() => makeCharacter(
  36846. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36847. {
  36848. front: {
  36849. height: math.unit(5 + 11/12, "feet"),
  36850. weight: math.unit(200, "lb"),
  36851. name: "Front",
  36852. image: {
  36853. source: "./media/characters/shirou/front.svg",
  36854. extra: 2491/2383,
  36855. bottom: 189/2680
  36856. }
  36857. },
  36858. back: {
  36859. height: math.unit(5 + 11/12, "feet"),
  36860. weight: math.unit(200, "lb"),
  36861. name: "Back",
  36862. image: {
  36863. source: "./media/characters/shirou/back.svg",
  36864. extra: 2554/2450,
  36865. bottom: 76/2630
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(5 + 11/12, "feet"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(6 + 3/12, "feet"),
  36882. weight: math.unit(177, "lb"),
  36883. name: "Front",
  36884. image: {
  36885. source: "./media/characters/noryu/front.svg",
  36886. extra: 973/885,
  36887. bottom: 10/983
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(6 + 3/12, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(5 + 6/12, "feet"),
  36904. weight: math.unit(170, "lb"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/mevolas-rubenido/front.svg",
  36908. extra: 2109/1901,
  36909. bottom: 96/2205
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(5 + 6/12, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(100, "feet"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/dee/front.svg",
  36929. extra: 2153/2036,
  36930. bottom: 59/2212
  36931. }
  36932. },
  36933. back: {
  36934. height: math.unit(100, "feet"),
  36935. name: "Back",
  36936. image: {
  36937. source: "./media/characters/dee/back.svg",
  36938. extra: 2183/2058,
  36939. bottom: 75/2258
  36940. }
  36941. },
  36942. foot: {
  36943. height: math.unit(19.43, "feet"),
  36944. name: "Foot",
  36945. image: {
  36946. source: "./media/characters/dee/foot.svg"
  36947. }
  36948. },
  36949. hoof: {
  36950. height: math.unit(20.6, "feet"),
  36951. name: "Hoof",
  36952. image: {
  36953. source: "./media/characters/dee/hoof.svg"
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Macro",
  36960. height: math.unit(100, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(5 + 6/12, "feet"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/teh/front.svg",
  36973. extra: 1002/847,
  36974. bottom: 62/1064
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(5 + 6/12, "feet"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36988. {
  36989. side: {
  36990. height: math.unit(6 + 1/12, "feet"),
  36991. weight: math.unit(204, "lb"),
  36992. name: "Side",
  36993. image: {
  36994. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36995. extra: 974/775,
  36996. bottom: 169/1143
  36997. }
  36998. },
  36999. sitting: {
  37000. height: math.unit(6 + 2/12, "feet"),
  37001. weight: math.unit(204, "lb"),
  37002. name: "Sitting",
  37003. image: {
  37004. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37005. extra: 1175/964,
  37006. bottom: 378/1553
  37007. }
  37008. },
  37009. },
  37010. [
  37011. {
  37012. name: "Normal",
  37013. height: math.unit(6 + 1/12, "feet"),
  37014. default: true
  37015. },
  37016. ]
  37017. ))
  37018. characterMakers.push(() => makeCharacter(
  37019. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37020. {
  37021. front: {
  37022. height: math.unit(6, "inches"),
  37023. name: "Front",
  37024. image: {
  37025. source: "./media/characters/tululi/front.svg",
  37026. extra: 1997/1876,
  37027. bottom: 20/2017
  37028. }
  37029. },
  37030. },
  37031. [
  37032. {
  37033. name: "Normal",
  37034. height: math.unit(6, "inches"),
  37035. default: true
  37036. },
  37037. ]
  37038. ))
  37039. characterMakers.push(() => makeCharacter(
  37040. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37041. {
  37042. front: {
  37043. height: math.unit(4 + 1/12, "feet"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/star/front.svg",
  37047. extra: 1493/1189,
  37048. bottom: 48/1541
  37049. }
  37050. },
  37051. },
  37052. [
  37053. {
  37054. name: "Normal",
  37055. height: math.unit(4 + 1/12, "feet"),
  37056. default: true
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(6 + 3/12, "feet"),
  37065. name: "Front",
  37066. image: {
  37067. source: "./media/characters/comet/front.svg",
  37068. extra: 1681/1462,
  37069. bottom: 26/1707
  37070. }
  37071. },
  37072. },
  37073. [
  37074. {
  37075. name: "Normal",
  37076. height: math.unit(6 + 3/12, "feet"),
  37077. default: true
  37078. },
  37079. ]
  37080. ))
  37081. characterMakers.push(() => makeCharacter(
  37082. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37083. {
  37084. front: {
  37085. height: math.unit(950, "feet"),
  37086. name: "Front",
  37087. image: {
  37088. source: "./media/characters/vortex/front.svg",
  37089. extra: 1497/1434,
  37090. bottom: 56/1553
  37091. }
  37092. },
  37093. maw: {
  37094. height: math.unit(285, "feet"),
  37095. name: "Maw",
  37096. image: {
  37097. source: "./media/characters/vortex/maw.svg"
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Macro",
  37104. height: math.unit(950, "feet"),
  37105. default: true
  37106. },
  37107. ]
  37108. ))
  37109. characterMakers.push(() => makeCharacter(
  37110. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37111. {
  37112. front: {
  37113. height: math.unit(600, "feet"),
  37114. weight: math.unit(0.02, "grams"),
  37115. name: "Front",
  37116. image: {
  37117. source: "./media/characters/doodle/front.svg",
  37118. extra: 1578/1413,
  37119. bottom: 37/1615
  37120. }
  37121. },
  37122. },
  37123. [
  37124. {
  37125. name: "Macro",
  37126. height: math.unit(600, "feet"),
  37127. default: true
  37128. },
  37129. ]
  37130. ))
  37131. characterMakers.push(() => makeCharacter(
  37132. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37133. {
  37134. front: {
  37135. height: math.unit(6 + 6/12, "feet"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/jai/front.svg",
  37139. extra: 1645/1534,
  37140. bottom: 115/1760
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(6 + 6/12, "feet"),
  37148. default: true
  37149. },
  37150. ]
  37151. ))
  37152. characterMakers.push(() => makeCharacter(
  37153. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37154. {
  37155. front: {
  37156. height: math.unit(6 + 8/12, "feet"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/pixel/front.svg",
  37160. extra: 1900/1735,
  37161. bottom: 63/1963
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(6 + 8/12, "feet"),
  37169. default: true
  37170. },
  37171. ]
  37172. ))
  37173. characterMakers.push(() => makeCharacter(
  37174. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37175. {
  37176. back: {
  37177. height: math.unit(4 + 1/12, "feet"),
  37178. weight: math.unit(75, "lb"),
  37179. name: "Back",
  37180. image: {
  37181. source: "./media/characters/rhett/back.svg",
  37182. extra: 930/878,
  37183. bottom: 25/955
  37184. }
  37185. },
  37186. front: {
  37187. height: math.unit(4 + 1/12, "feet"),
  37188. weight: math.unit(75, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/rhett/front.svg",
  37192. extra: 1682/1586,
  37193. bottom: 92/1774
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Micro",
  37200. height: math.unit(8, "inches")
  37201. },
  37202. {
  37203. name: "Tiny",
  37204. height: math.unit(2, "feet")
  37205. },
  37206. {
  37207. name: "Normal",
  37208. height: math.unit(4 + 1/12, "feet"),
  37209. default: true
  37210. },
  37211. ]
  37212. ))
  37213. characterMakers.push(() => makeCharacter(
  37214. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37215. {
  37216. front: {
  37217. height: math.unit(3 + 3/12, "feet"),
  37218. name: "Front",
  37219. image: {
  37220. source: "./media/characters/penny/front.svg",
  37221. extra: 1406/1311,
  37222. bottom: 26/1432
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "Normal",
  37229. height: math.unit(3 + 3/12, "feet"),
  37230. default: true
  37231. },
  37232. ]
  37233. ))
  37234. characterMakers.push(() => makeCharacter(
  37235. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37236. {
  37237. front: {
  37238. height: math.unit(4 + 11/12, "feet"),
  37239. name: "Front",
  37240. image: {
  37241. source: "./media/characters/monty/front.svg",
  37242. extra: 1479/1209,
  37243. bottom: 0/1479
  37244. }
  37245. },
  37246. },
  37247. [
  37248. {
  37249. name: "Normal",
  37250. height: math.unit(4 + 11/12, "feet"),
  37251. default: true
  37252. },
  37253. ]
  37254. ))
  37255. characterMakers.push(() => makeCharacter(
  37256. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37257. {
  37258. front: {
  37259. height: math.unit(8 + 4/12, "feet"),
  37260. name: "Front",
  37261. image: {
  37262. source: "./media/characters/sterling/front.svg",
  37263. extra: 1420/1236,
  37264. bottom: 27/1447
  37265. }
  37266. },
  37267. },
  37268. [
  37269. {
  37270. name: "Normal",
  37271. height: math.unit(8 + 4/12, "feet"),
  37272. default: true
  37273. },
  37274. ]
  37275. ))
  37276. characterMakers.push(() => makeCharacter(
  37277. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37278. {
  37279. front: {
  37280. height: math.unit(15, "feet"),
  37281. name: "Front",
  37282. image: {
  37283. source: "./media/characters/marble/front.svg",
  37284. extra: 973/937,
  37285. bottom: 32/1005
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(15, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37299. {
  37300. front: {
  37301. height: math.unit(3, "inches"),
  37302. name: "Front",
  37303. image: {
  37304. source: "./media/characters/powder/front.svg",
  37305. extra: 1504/1334,
  37306. bottom: 518/2022
  37307. }
  37308. },
  37309. },
  37310. [
  37311. {
  37312. name: "Normal",
  37313. height: math.unit(3, "inches"),
  37314. default: true
  37315. },
  37316. ]
  37317. ))
  37318. characterMakers.push(() => makeCharacter(
  37319. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37320. {
  37321. front: {
  37322. height: math.unit(4 + 5/12, "feet"),
  37323. name: "Front",
  37324. image: {
  37325. source: "./media/characters/joey-raccoon/front.svg",
  37326. extra: 1273/1197,
  37327. bottom: 0/1273
  37328. }
  37329. },
  37330. },
  37331. [
  37332. {
  37333. name: "Normal",
  37334. height: math.unit(4 + 5/12, "feet"),
  37335. default: true
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(8 + 4/12, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/vick/front.svg",
  37347. extra: 2187/2118,
  37348. bottom: 47/2234
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(8 + 4/12, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(5 + 5/12, "feet"),
  37365. name: "Front",
  37366. image: {
  37367. source: "./media/characters/mitsy/front.svg",
  37368. extra: 1842/1695,
  37369. bottom: 0/1842
  37370. }
  37371. },
  37372. },
  37373. [
  37374. {
  37375. name: "Normal",
  37376. height: math.unit(5 + 5/12, "feet"),
  37377. default: true
  37378. },
  37379. ]
  37380. ))
  37381. characterMakers.push(() => makeCharacter(
  37382. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37383. {
  37384. front: {
  37385. height: math.unit(6 + 3/12, "feet"),
  37386. name: "Front",
  37387. image: {
  37388. source: "./media/characters/silvy/front.svg",
  37389. extra: 1995/1836,
  37390. bottom: 225/2220
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Normal",
  37397. height: math.unit(6 + 3/12, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37404. {
  37405. front: {
  37406. height: math.unit(3 + 8/12, "feet"),
  37407. name: "Front",
  37408. image: {
  37409. source: "./media/characters/rodney/front.svg",
  37410. extra: 1956/1747,
  37411. bottom: 31/1987
  37412. }
  37413. },
  37414. frontDressed: {
  37415. height: math.unit(2.9, "feet"),
  37416. name: "Front (Dressed)",
  37417. image: {
  37418. source: "./media/characters/rodney/front-dressed.svg",
  37419. extra: 1382/1241,
  37420. bottom: 385/1767
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(3 + 8/12, "feet"),
  37428. default: true
  37429. },
  37430. ]
  37431. ))
  37432. characterMakers.push(() => makeCharacter(
  37433. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37434. {
  37435. front: {
  37436. height: math.unit(5 + 9/12, "feet"),
  37437. weight: math.unit(194, "lbs"),
  37438. name: "Front",
  37439. image: {
  37440. source: "./media/characters/zakail-sudekai/front.svg",
  37441. extra: 2696/2533,
  37442. bottom: 248/2944
  37443. }
  37444. },
  37445. maw: {
  37446. height: math.unit(1.35, "feet"),
  37447. name: "Maw",
  37448. image: {
  37449. source: "./media/characters/zakail-sudekai/maw.svg"
  37450. }
  37451. },
  37452. },
  37453. [
  37454. {
  37455. name: "Normal",
  37456. height: math.unit(5 + 9/12, "feet"),
  37457. default: true
  37458. },
  37459. ]
  37460. ))
  37461. characterMakers.push(() => makeCharacter(
  37462. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37463. {
  37464. front: {
  37465. height: math.unit(8 + 4/12, "feet"),
  37466. weight: math.unit(1200, "lb"),
  37467. name: "Front",
  37468. image: {
  37469. source: "./media/characters/eleanor/front.svg",
  37470. extra: 1226/1192,
  37471. bottom: 52/1278
  37472. }
  37473. },
  37474. back: {
  37475. height: math.unit(8 + 4/12, "feet"),
  37476. weight: math.unit(1200, "lb"),
  37477. name: "Back",
  37478. image: {
  37479. source: "./media/characters/eleanor/back.svg",
  37480. extra: 1242/1184,
  37481. bottom: 60/1302
  37482. }
  37483. },
  37484. head: {
  37485. height: math.unit(2.62, "feet"),
  37486. name: "Head",
  37487. image: {
  37488. source: "./media/characters/eleanor/head.svg"
  37489. }
  37490. },
  37491. },
  37492. [
  37493. {
  37494. name: "Normal",
  37495. height: math.unit(8 + 4/12, "feet"),
  37496. default: true
  37497. },
  37498. ]
  37499. ))
  37500. characterMakers.push(() => makeCharacter(
  37501. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37502. {
  37503. front: {
  37504. height: math.unit(8 + 4/12, "feet"),
  37505. weight: math.unit(750, "lb"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/tanya/front.svg",
  37509. extra: 1749/1615,
  37510. bottom: 33/1782
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Normal",
  37517. height: math.unit(8 + 4/12, "feet"),
  37518. default: true
  37519. },
  37520. ]
  37521. ))
  37522. characterMakers.push(() => makeCharacter(
  37523. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37524. {
  37525. front: {
  37526. height: math.unit(5, "feet"),
  37527. weight: math.unit(225, "lb"),
  37528. name: "Front",
  37529. image: {
  37530. source: "./media/characters/cindy/front.svg",
  37531. extra: 1320/1250,
  37532. bottom: 42/1362
  37533. }
  37534. },
  37535. frontDressed: {
  37536. height: math.unit(5, "feet"),
  37537. weight: math.unit(225, "lb"),
  37538. name: "Front (Dressed)",
  37539. image: {
  37540. source: "./media/characters/cindy/front-dressed.svg",
  37541. extra: 1320/1250,
  37542. bottom: 42/1362
  37543. }
  37544. },
  37545. back: {
  37546. height: math.unit(5, "feet"),
  37547. weight: math.unit(225, "lb"),
  37548. name: "Back",
  37549. image: {
  37550. source: "./media/characters/cindy/back.svg",
  37551. extra: 1384/1346,
  37552. bottom: 14/1398
  37553. }
  37554. },
  37555. },
  37556. [
  37557. {
  37558. name: "Normal",
  37559. height: math.unit(5, "feet"),
  37560. default: true
  37561. },
  37562. ]
  37563. ))
  37564. characterMakers.push(() => makeCharacter(
  37565. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37566. {
  37567. front: {
  37568. height: math.unit(6 + 9/12, "feet"),
  37569. weight: math.unit(440, "lb"),
  37570. name: "Front",
  37571. image: {
  37572. source: "./media/characters/wilbur-owen/front.svg",
  37573. extra: 1575/1448,
  37574. bottom: 72/1647
  37575. }
  37576. },
  37577. back: {
  37578. height: math.unit(6 + 9/12, "feet"),
  37579. weight: math.unit(440, "lb"),
  37580. name: "Back",
  37581. image: {
  37582. source: "./media/characters/wilbur-owen/back.svg",
  37583. extra: 1578/1445,
  37584. bottom: 36/1614
  37585. }
  37586. },
  37587. },
  37588. [
  37589. {
  37590. name: "Normal",
  37591. height: math.unit(6 + 9/12, "feet"),
  37592. default: true
  37593. },
  37594. ]
  37595. ))
  37596. characterMakers.push(() => makeCharacter(
  37597. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37598. {
  37599. front: {
  37600. height: math.unit(6 + 5/12, "feet"),
  37601. weight: math.unit(650, "lb"),
  37602. name: "Front",
  37603. image: {
  37604. source: "./media/characters/keegan/front.svg",
  37605. extra: 2387/2198,
  37606. bottom: 33/2420
  37607. }
  37608. },
  37609. side: {
  37610. height: math.unit(6 + 5/12, "feet"),
  37611. weight: math.unit(650, "lb"),
  37612. name: "Side",
  37613. image: {
  37614. source: "./media/characters/keegan/side.svg",
  37615. extra: 2390/2202,
  37616. bottom: 47/2437
  37617. }
  37618. },
  37619. back: {
  37620. height: math.unit(6 + 5/12, "feet"),
  37621. weight: math.unit(650, "lb"),
  37622. name: "Back",
  37623. image: {
  37624. source: "./media/characters/keegan/back.svg",
  37625. extra: 2418/2268,
  37626. bottom: 15/2433
  37627. }
  37628. },
  37629. frontSfw: {
  37630. height: math.unit(6 + 5/12, "feet"),
  37631. weight: math.unit(650, "lb"),
  37632. name: "Front (SFW)",
  37633. image: {
  37634. source: "./media/characters/keegan/front-sfw.svg",
  37635. extra: 2387/2198,
  37636. bottom: 33/2420
  37637. }
  37638. },
  37639. beans: {
  37640. height: math.unit(1.85, "feet"),
  37641. name: "Beans",
  37642. image: {
  37643. source: "./media/characters/keegan/beans.svg"
  37644. }
  37645. },
  37646. },
  37647. [
  37648. {
  37649. name: "Normal",
  37650. height: math.unit(6 + 5/12, "feet"),
  37651. default: true
  37652. },
  37653. ]
  37654. ))
  37655. characterMakers.push(() => makeCharacter(
  37656. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37657. {
  37658. front: {
  37659. height: math.unit(9, "feet"),
  37660. name: "Front",
  37661. image: {
  37662. source: "./media/characters/colton/front.svg",
  37663. extra: 1589/1326,
  37664. bottom: 139/1728
  37665. }
  37666. },
  37667. },
  37668. [
  37669. {
  37670. name: "Normal",
  37671. height: math.unit(9, "feet"),
  37672. default: true
  37673. },
  37674. ]
  37675. ))
  37676. characterMakers.push(() => makeCharacter(
  37677. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37678. {
  37679. front: {
  37680. height: math.unit(2 + 9/12, "feet"),
  37681. name: "Front",
  37682. image: {
  37683. source: "./media/characters/bora/front.svg",
  37684. extra: 1265/1250,
  37685. bottom: 24/1289
  37686. }
  37687. },
  37688. },
  37689. [
  37690. {
  37691. name: "Normal",
  37692. height: math.unit(2 + 9/12, "feet"),
  37693. default: true
  37694. },
  37695. ]
  37696. ))
  37697. characterMakers.push(() => makeCharacter(
  37698. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37699. {
  37700. front: {
  37701. height: math.unit(8, "feet"),
  37702. name: "Front",
  37703. image: {
  37704. source: "./media/characters/myu-myu/front.svg",
  37705. extra: 1949/1857,
  37706. bottom: 90/2039
  37707. }
  37708. },
  37709. },
  37710. [
  37711. {
  37712. name: "Normal",
  37713. height: math.unit(8, "feet"),
  37714. default: true
  37715. },
  37716. {
  37717. name: "Big",
  37718. height: math.unit(15, "feet")
  37719. },
  37720. {
  37721. name: "BIG",
  37722. height: math.unit(25, "feet")
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37728. {
  37729. side: {
  37730. height: math.unit(7 + 5/12, "feet"),
  37731. weight: math.unit(2800, "lb"),
  37732. name: "Side",
  37733. image: {
  37734. source: "./media/characters/haloren/side.svg",
  37735. extra: 1793/409,
  37736. bottom: 59/1852
  37737. }
  37738. },
  37739. frontPaw: {
  37740. height: math.unit(2.36, "feet"),
  37741. name: "Front paw",
  37742. image: {
  37743. source: "./media/characters/haloren/front-paw.svg"
  37744. }
  37745. },
  37746. hindPaw: {
  37747. height: math.unit(3.18, "feet"),
  37748. name: "Hind paw",
  37749. image: {
  37750. source: "./media/characters/haloren/hind-paw.svg"
  37751. }
  37752. },
  37753. maw: {
  37754. height: math.unit(5.05, "feet"),
  37755. name: "Maw",
  37756. image: {
  37757. source: "./media/characters/haloren/maw.svg"
  37758. }
  37759. },
  37760. dick: {
  37761. height: math.unit(2.90, "feet"),
  37762. name: "Dick",
  37763. image: {
  37764. source: "./media/characters/haloren/dick.svg"
  37765. }
  37766. },
  37767. },
  37768. [
  37769. {
  37770. name: "Normal",
  37771. height: math.unit(7 + 5/12, "feet"),
  37772. default: true
  37773. },
  37774. {
  37775. name: "Enhanced",
  37776. height: math.unit(14 + 3/12, "feet")
  37777. },
  37778. ]
  37779. ))
  37780. characterMakers.push(() => makeCharacter(
  37781. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37782. {
  37783. front: {
  37784. height: math.unit(171, "cm"),
  37785. name: "Front",
  37786. image: {
  37787. source: "./media/characters/kimmy/front.svg",
  37788. extra: 1491/1435,
  37789. bottom: 53/1544
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Small",
  37796. height: math.unit(9, "cm")
  37797. },
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(171, "cm"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(8, "feet"),
  37810. weight: math.unit(300, "lb"),
  37811. name: "Front",
  37812. image: {
  37813. source: "./media/characters/galeboomer/front.svg",
  37814. extra: 4651/4415,
  37815. bottom: 162/4813
  37816. }
  37817. },
  37818. back: {
  37819. height: math.unit(8, "feet"),
  37820. weight: math.unit(300, "lb"),
  37821. name: "Back",
  37822. image: {
  37823. source: "./media/characters/galeboomer/back.svg",
  37824. extra: 4544/4314,
  37825. bottom: 16/4560
  37826. }
  37827. },
  37828. frontAlt: {
  37829. height: math.unit(8, "feet"),
  37830. weight: math.unit(300, "lb"),
  37831. name: "Front (Alt)",
  37832. image: {
  37833. source: "./media/characters/galeboomer/front-alt.svg",
  37834. extra: 4458/4228,
  37835. bottom: 68/4526
  37836. }
  37837. },
  37838. maw: {
  37839. height: math.unit(1.2, "feet"),
  37840. name: "Maw",
  37841. image: {
  37842. source: "./media/characters/galeboomer/maw.svg"
  37843. }
  37844. },
  37845. },
  37846. [
  37847. {
  37848. name: "Normal",
  37849. height: math.unit(8, "feet"),
  37850. default: true
  37851. },
  37852. ]
  37853. ))
  37854. characterMakers.push(() => makeCharacter(
  37855. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37856. {
  37857. front: {
  37858. height: math.unit(5 + 9/12, "feet"),
  37859. weight: math.unit(120, "lb"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/chyr/front.svg",
  37863. extra: 1323/1254,
  37864. bottom: 63/1386
  37865. }
  37866. },
  37867. back: {
  37868. height: math.unit(5 + 9/12, "feet"),
  37869. weight: math.unit(120, "lb"),
  37870. name: "Back",
  37871. image: {
  37872. source: "./media/characters/chyr/back.svg",
  37873. extra: 1323/1252,
  37874. bottom: 48/1371
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(5 + 9/12, "feet"),
  37882. default: true
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(7, "feet"),
  37891. weight: math.unit(310, "lb"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/solarus/front.svg",
  37895. extra: 2415/2021,
  37896. bottom: 103/2518
  37897. }
  37898. },
  37899. back: {
  37900. height: math.unit(7, "feet"),
  37901. weight: math.unit(310, "lb"),
  37902. name: "Back",
  37903. image: {
  37904. source: "./media/characters/solarus/back.svg",
  37905. extra: 2463/2089,
  37906. bottom: 79/2542
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(7, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(16, "feet"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37926. extra: 1844/1780,
  37927. bottom: 58/1902
  37928. }
  37929. },
  37930. winterCoat: {
  37931. height: math.unit(16, "feet"),
  37932. name: "Winter Coat",
  37933. image: {
  37934. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37935. extra: 1807/1775,
  37936. bottom: 69/1876
  37937. }
  37938. },
  37939. },
  37940. [
  37941. {
  37942. name: "Normal",
  37943. height: math.unit(16, "feet"),
  37944. default: true
  37945. },
  37946. {
  37947. name: "Chicago Size",
  37948. height: math.unit(560, "feet")
  37949. },
  37950. ]
  37951. ))
  37952. characterMakers.push(() => makeCharacter(
  37953. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37954. {
  37955. front: {
  37956. height: math.unit(11 + 6/12, "feet"),
  37957. weight: math.unit(1366, "lb"),
  37958. name: "Front",
  37959. image: {
  37960. source: "./media/characters/lexor/front.svg",
  37961. extra: 1560/1481,
  37962. bottom: 211/1771
  37963. }
  37964. },
  37965. back: {
  37966. height: math.unit(11 + 6/12, "feet"),
  37967. weight: math.unit(1366, "lb"),
  37968. name: "Back",
  37969. image: {
  37970. source: "./media/characters/lexor/back.svg",
  37971. extra: 1614/1533,
  37972. bottom: 76/1690
  37973. }
  37974. },
  37975. maw: {
  37976. height: math.unit(3, "feet"),
  37977. name: "Maw",
  37978. image: {
  37979. source: "./media/characters/lexor/maw.svg"
  37980. }
  37981. },
  37982. dick: {
  37983. height: math.unit(2.59, "feet"),
  37984. name: "Dick",
  37985. image: {
  37986. source: "./media/characters/lexor/dick.svg"
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(11 + 6/12, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(5 + 8/12, "feet"),
  38003. name: "Front",
  38004. image: {
  38005. source: "./media/characters/magnum/front.svg",
  38006. extra: 942/855,
  38007. bottom: 26/968
  38008. }
  38009. },
  38010. },
  38011. [
  38012. {
  38013. name: "Normal",
  38014. height: math.unit(5 + 8/12, "feet"),
  38015. default: true
  38016. },
  38017. ]
  38018. ))
  38019. characterMakers.push(() => makeCharacter(
  38020. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38021. {
  38022. front: {
  38023. height: math.unit(18 + 4/12, "feet"),
  38024. weight: math.unit(1500, "kg"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/solas-sharpsman/front.svg",
  38028. extra: 1698/1589,
  38029. bottom: 0/1698
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(18 + 4/12, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38043. {
  38044. front: {
  38045. height: math.unit(5 + 5/12, "feet"),
  38046. weight: math.unit(180, "lb"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/october/front.svg",
  38050. extra: 1800/1650,
  38051. bottom: 0/1800
  38052. }
  38053. },
  38054. frontNsfw: {
  38055. height: math.unit(5 + 5/12, "feet"),
  38056. weight: math.unit(180, "lb"),
  38057. name: "Front (NSFW)",
  38058. image: {
  38059. source: "./media/characters/october/front-nsfw.svg",
  38060. extra: 1392/1307,
  38061. bottom: 42/1434
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(5 + 5/12, "feet"),
  38069. default: true
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(8 + 6/12, "feet"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/essynkardi/front.svg",
  38081. extra: 1914/1846,
  38082. bottom: 22/1936
  38083. }
  38084. },
  38085. },
  38086. [
  38087. {
  38088. name: "Normal",
  38089. height: math.unit(8 + 6/12, "feet"),
  38090. default: true
  38091. },
  38092. ]
  38093. ))
  38094. characterMakers.push(() => makeCharacter(
  38095. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38096. {
  38097. front: {
  38098. height: math.unit(6 + 6/12, "feet"),
  38099. weight: math.unit(7, "lb"),
  38100. name: "Front",
  38101. image: {
  38102. source: "./media/characters/icky/front.svg",
  38103. extra: 813/782,
  38104. bottom: 66/879
  38105. }
  38106. },
  38107. back: {
  38108. height: math.unit(6 + 6/12, "feet"),
  38109. weight: math.unit(7, "lb"),
  38110. name: "Back",
  38111. image: {
  38112. source: "./media/characters/icky/back.svg",
  38113. extra: 754/735,
  38114. bottom: 56/810
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(6 + 6/12, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(15, "feet"),
  38131. name: "Front",
  38132. image: {
  38133. source: "./media/characters/rojas/front.svg",
  38134. extra: 1462/1408,
  38135. bottom: 95/1557
  38136. }
  38137. },
  38138. back: {
  38139. height: math.unit(15, "feet"),
  38140. name: "Back",
  38141. image: {
  38142. source: "./media/characters/rojas/back.svg",
  38143. extra: 1023/954,
  38144. bottom: 28/1051
  38145. }
  38146. },
  38147. },
  38148. [
  38149. {
  38150. name: "Normal",
  38151. height: math.unit(15, "feet"),
  38152. default: true
  38153. },
  38154. ]
  38155. ))
  38156. characterMakers.push(() => makeCharacter(
  38157. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38158. {
  38159. frontHuman: {
  38160. height: math.unit(5 + 7/12, "feet"),
  38161. name: "Front (Human)",
  38162. image: {
  38163. source: "./media/characters/alek-dryagan/front-human.svg",
  38164. extra: 1687/1667,
  38165. bottom: 69/1756
  38166. }
  38167. },
  38168. backHuman: {
  38169. height: math.unit(5 + 7/12, "feet"),
  38170. name: "Back (Human)",
  38171. image: {
  38172. source: "./media/characters/alek-dryagan/back-human.svg",
  38173. extra: 1670/1649,
  38174. bottom: 65/1735
  38175. }
  38176. },
  38177. frontDemi: {
  38178. height: math.unit(65, "feet"),
  38179. name: "Front (Demi)",
  38180. image: {
  38181. source: "./media/characters/alek-dryagan/front-demi.svg",
  38182. extra: 1669/1642,
  38183. bottom: 49/1718
  38184. }
  38185. },
  38186. backDemi: {
  38187. height: math.unit(65, "feet"),
  38188. name: "Back (Demi)",
  38189. image: {
  38190. source: "./media/characters/alek-dryagan/back-demi.svg",
  38191. extra: 1658/1637,
  38192. bottom: 40/1698
  38193. }
  38194. },
  38195. mawHuman: {
  38196. height: math.unit(0.3, "feet"),
  38197. name: "Maw (Human)",
  38198. image: {
  38199. source: "./media/characters/alek-dryagan/maw-human.svg"
  38200. }
  38201. },
  38202. mawDemi: {
  38203. height: math.unit(3.8, "feet"),
  38204. name: "Maw (Demi)",
  38205. image: {
  38206. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Normal",
  38213. height: math.unit(5 + 7/12, "feet"),
  38214. default: true
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38220. {
  38221. frontHuman: {
  38222. height: math.unit(5 + 2/12, "feet"),
  38223. name: "Front (Human)",
  38224. image: {
  38225. source: "./media/characters/gen/front-human.svg",
  38226. extra: 1627/1538,
  38227. bottom: 71/1698
  38228. }
  38229. },
  38230. backHuman: {
  38231. height: math.unit(5 + 2/12, "feet"),
  38232. name: "Back (Human)",
  38233. image: {
  38234. source: "./media/characters/gen/back-human.svg",
  38235. extra: 1638/1548,
  38236. bottom: 69/1707
  38237. }
  38238. },
  38239. frontDemi: {
  38240. height: math.unit(5 + 2/12, "feet"),
  38241. name: "Front (Demi)",
  38242. image: {
  38243. source: "./media/characters/gen/front-demi.svg",
  38244. extra: 1627/1538,
  38245. bottom: 71/1698
  38246. }
  38247. },
  38248. backDemi: {
  38249. height: math.unit(5 + 2/12, "feet"),
  38250. name: "Back (Demi)",
  38251. image: {
  38252. source: "./media/characters/gen/back-demi.svg",
  38253. extra: 1638/1548,
  38254. bottom: 69/1707
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(5 + 2/12, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38268. {
  38269. frontImp: {
  38270. height: math.unit(1 + 11/12, "feet"),
  38271. name: "Front (Imp)",
  38272. image: {
  38273. source: "./media/characters/max-kobold/front-imp.svg",
  38274. extra: 1238/1134,
  38275. bottom: 81/1319
  38276. }
  38277. },
  38278. backImp: {
  38279. height: math.unit(1 + 11/12, "feet"),
  38280. name: "Back (Imp)",
  38281. image: {
  38282. source: "./media/characters/max-kobold/back-imp.svg",
  38283. extra: 1334/1175,
  38284. bottom: 34/1368
  38285. }
  38286. },
  38287. frontDemi: {
  38288. height: math.unit(5 + 9/12, "feet"),
  38289. name: "Front (Demi)",
  38290. image: {
  38291. source: "./media/characters/max-kobold/front-demi.svg",
  38292. extra: 1715/1685,
  38293. bottom: 54/1769
  38294. }
  38295. },
  38296. backDemi: {
  38297. height: math.unit(5 + 9/12, "feet"),
  38298. name: "Back (Demi)",
  38299. image: {
  38300. source: "./media/characters/max-kobold/back-demi.svg",
  38301. extra: 1752/1729,
  38302. bottom: 41/1793
  38303. }
  38304. },
  38305. handImp: {
  38306. height: math.unit(0.45, "feet"),
  38307. name: "Hand (Imp)",
  38308. image: {
  38309. source: "./media/characters/max-kobold/hand.svg"
  38310. }
  38311. },
  38312. pawImp: {
  38313. height: math.unit(0.46, "feet"),
  38314. name: "Paw (Imp)",
  38315. image: {
  38316. source: "./media/characters/max-kobold/paw.svg"
  38317. }
  38318. },
  38319. handDemi: {
  38320. height: math.unit(0.80, "feet"),
  38321. name: "Hand (Demi)",
  38322. image: {
  38323. source: "./media/characters/max-kobold/hand.svg"
  38324. }
  38325. },
  38326. pawDemi: {
  38327. height: math.unit(1.1, "feet"),
  38328. name: "Paw (Demi)",
  38329. image: {
  38330. source: "./media/characters/max-kobold/paw.svg"
  38331. }
  38332. },
  38333. headImp: {
  38334. height: math.unit(1.33, "feet"),
  38335. name: "Head (Imp)",
  38336. image: {
  38337. source: "./media/characters/max-kobold/head-imp.svg"
  38338. }
  38339. },
  38340. mawImp: {
  38341. height: math.unit(0.75, "feet"),
  38342. name: "Maw (Imp)",
  38343. image: {
  38344. source: "./media/characters/max-kobold/maw-imp.svg"
  38345. }
  38346. },
  38347. mawDemi: {
  38348. height: math.unit(0.42, "feet"),
  38349. name: "Maw (Demi)",
  38350. image: {
  38351. source: "./media/characters/max-kobold/maw-demi.svg"
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(1 + 11/12, "feet"),
  38359. default: true
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38365. {
  38366. front: {
  38367. height: math.unit(7 + 5/12, "feet"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/carbon/front.svg",
  38371. extra: 1754/1689,
  38372. bottom: 65/1819
  38373. }
  38374. },
  38375. back: {
  38376. height: math.unit(7 + 5/12, "feet"),
  38377. name: "Back",
  38378. image: {
  38379. source: "./media/characters/carbon/back.svg",
  38380. extra: 1762/1695,
  38381. bottom: 24/1786
  38382. }
  38383. },
  38384. frontGigantamax: {
  38385. height: math.unit(150, "feet"),
  38386. name: "Front (Gigantamax)",
  38387. image: {
  38388. source: "./media/characters/carbon/front-gigantamax.svg",
  38389. extra: 1826/1669,
  38390. bottom: 59/1885
  38391. }
  38392. },
  38393. backGigantamax: {
  38394. height: math.unit(150, "feet"),
  38395. name: "Back (Gigantamax)",
  38396. image: {
  38397. source: "./media/characters/carbon/back-gigantamax.svg",
  38398. extra: 1796/1653,
  38399. bottom: 53/1849
  38400. }
  38401. },
  38402. maw: {
  38403. height: math.unit(0.48, "feet"),
  38404. name: "Maw",
  38405. image: {
  38406. source: "./media/characters/carbon/maw.svg"
  38407. }
  38408. },
  38409. mawGigantamax: {
  38410. height: math.unit(7.5, "feet"),
  38411. name: "Maw (Gigantamax)",
  38412. image: {
  38413. source: "./media/characters/carbon/maw-gigantamax.svg"
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(7 + 5/12, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(6, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/maverick/front.svg",
  38433. extra: 1672/1661,
  38434. bottom: 85/1757
  38435. }
  38436. },
  38437. back: {
  38438. height: math.unit(6, "feet"),
  38439. name: "Back",
  38440. image: {
  38441. source: "./media/characters/maverick/back.svg",
  38442. extra: 1642/1631,
  38443. bottom: 38/1680
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(6, "feet"),
  38451. default: true
  38452. },
  38453. ]
  38454. ))
  38455. characterMakers.push(() => makeCharacter(
  38456. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38457. {
  38458. front: {
  38459. height: math.unit(15, "feet"),
  38460. weight: math.unit(615, "lb"),
  38461. name: "Front",
  38462. image: {
  38463. source: "./media/characters/grockle/front.svg",
  38464. extra: 1535/1427,
  38465. bottom: 56/1591
  38466. }
  38467. },
  38468. },
  38469. [
  38470. {
  38471. name: "Normal",
  38472. height: math.unit(15, "feet"),
  38473. default: true
  38474. },
  38475. {
  38476. name: "Large",
  38477. height: math.unit(150, "feet")
  38478. },
  38479. {
  38480. name: "Macro",
  38481. height: math.unit(1876, "feet")
  38482. },
  38483. {
  38484. name: "Mega Macro",
  38485. height: math.unit(121940, "feet")
  38486. },
  38487. {
  38488. name: "Giga Macro",
  38489. height: math.unit(750, "km")
  38490. },
  38491. {
  38492. name: "Tera Macro",
  38493. height: math.unit(750000, "km")
  38494. },
  38495. {
  38496. name: "Galactic",
  38497. height: math.unit(1.4e5, "km")
  38498. },
  38499. {
  38500. name: "Godlike",
  38501. height: math.unit(9.8e280, "galaxies")
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(11, "meters"),
  38510. weight: math.unit(20, "tonnes"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/alistair/front.svg",
  38514. extra: 1265/1009,
  38515. bottom: 93/1358
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(11, "meters"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38529. {
  38530. front: {
  38531. height: math.unit(5 + 8/12, "feet"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/haruka/front.svg",
  38535. extra: 2012/1952,
  38536. bottom: 0/2012
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(5 + 8/12, "feet"),
  38544. default: true
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38550. {
  38551. back: {
  38552. height: math.unit(9, "feet"),
  38553. name: "Back",
  38554. image: {
  38555. source: "./media/characters/vivian-sylveon/back.svg",
  38556. extra: 1853/1714,
  38557. bottom: 0/1853
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(9, "feet"),
  38565. default: true
  38566. },
  38567. {
  38568. name: "Macro",
  38569. height: math.unit(500, "feet")
  38570. },
  38571. {
  38572. name: "Megamacro",
  38573. height: math.unit(600, "miles")
  38574. },
  38575. {
  38576. name: "Gigamacro",
  38577. height: math.unit(30000, "miles")
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38583. {
  38584. anthro: {
  38585. height: math.unit(5 + 10/12, "feet"),
  38586. weight: math.unit(100, "lb"),
  38587. name: "Anthro",
  38588. image: {
  38589. source: "./media/characters/daiki/anthro.svg",
  38590. extra: 1115/1027,
  38591. bottom: 69/1184
  38592. }
  38593. },
  38594. feral: {
  38595. height: math.unit(200, "feet"),
  38596. name: "Feral",
  38597. image: {
  38598. source: "./media/characters/daiki/feral.svg",
  38599. extra: 1256/313,
  38600. bottom: 39/1295
  38601. }
  38602. },
  38603. feralHead: {
  38604. height: math.unit(171, "feet"),
  38605. name: "Feral Head",
  38606. image: {
  38607. source: "./media/characters/daiki/feral-head.svg"
  38608. }
  38609. },
  38610. manaDragon: {
  38611. height: math.unit(170, "meters"),
  38612. name: "Mana-dragon",
  38613. image: {
  38614. source: "./media/characters/daiki/mana-dragon.svg",
  38615. extra: 763/420,
  38616. bottom: 97/860
  38617. }
  38618. },
  38619. },
  38620. [
  38621. {
  38622. name: "Normal",
  38623. height: math.unit(5 + 10/12, "feet"),
  38624. default: true
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38630. {
  38631. fullyEquippedFront: {
  38632. height: math.unit(3 + 1/12, "feet"),
  38633. weight: math.unit(24, "lb"),
  38634. name: "Fully Equipped (Front)",
  38635. image: {
  38636. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38637. extra: 687/605,
  38638. bottom: 18/705
  38639. }
  38640. },
  38641. fullyEquippedBack: {
  38642. height: math.unit(3 + 1/12, "feet"),
  38643. weight: math.unit(24, "lb"),
  38644. name: "Fully Equipped (Back)",
  38645. image: {
  38646. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38647. extra: 689/590,
  38648. bottom: 18/707
  38649. }
  38650. },
  38651. dailyWear: {
  38652. height: math.unit(3 + 1/12, "feet"),
  38653. weight: math.unit(24, "lb"),
  38654. name: "Daily Wear",
  38655. image: {
  38656. source: "./media/characters/tea-spot/daily-wear.svg",
  38657. extra: 701/620,
  38658. bottom: 21/722
  38659. }
  38660. },
  38661. maidWork: {
  38662. height: math.unit(3 + 1/12, "feet"),
  38663. weight: math.unit(24, "lb"),
  38664. name: "Maid Work",
  38665. image: {
  38666. source: "./media/characters/tea-spot/maid-work.svg",
  38667. extra: 693/609,
  38668. bottom: 15/708
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(3 + 1/12, "feet"),
  38676. default: true
  38677. },
  38678. ]
  38679. ))
  38680. characterMakers.push(() => makeCharacter(
  38681. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38682. {
  38683. front: {
  38684. height: math.unit(175, "cm"),
  38685. weight: math.unit(75, "kg"),
  38686. name: "Front",
  38687. image: {
  38688. source: "./media/characters/chee/front.svg",
  38689. extra: 1796/1740,
  38690. bottom: 40/1836
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Micro-Micro",
  38697. height: math.unit(1, "nm")
  38698. },
  38699. {
  38700. name: "Micro-erst",
  38701. height: math.unit(1, "micrometer")
  38702. },
  38703. {
  38704. name: "Micro-er",
  38705. height: math.unit(1, "cm")
  38706. },
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(175, "cm"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Macro",
  38714. height: math.unit(100, "m")
  38715. },
  38716. {
  38717. name: "Macro-er",
  38718. height: math.unit(1, "km")
  38719. },
  38720. {
  38721. name: "Macro-erst",
  38722. height: math.unit(10, "km")
  38723. },
  38724. {
  38725. name: "Macro-Macro",
  38726. height: math.unit(100, "km")
  38727. },
  38728. ]
  38729. ))
  38730. characterMakers.push(() => makeCharacter(
  38731. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38732. {
  38733. front: {
  38734. height: math.unit(11 + 9/12, "feet"),
  38735. weight: math.unit(935, "lb"),
  38736. name: "Front",
  38737. image: {
  38738. source: "./media/characters/kingsley/front.svg",
  38739. extra: 1803/1674,
  38740. bottom: 127/1930
  38741. }
  38742. },
  38743. frontNude: {
  38744. height: math.unit(11 + 9/12, "feet"),
  38745. weight: math.unit(935, "lb"),
  38746. name: "Front (Nude)",
  38747. image: {
  38748. source: "./media/characters/kingsley/front-nude.svg",
  38749. extra: 1803/1674,
  38750. bottom: 127/1930
  38751. }
  38752. },
  38753. },
  38754. [
  38755. {
  38756. name: "Normal",
  38757. height: math.unit(11 + 9/12, "feet"),
  38758. default: true
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38764. {
  38765. side: {
  38766. height: math.unit(9, "feet"),
  38767. name: "Side",
  38768. image: {
  38769. source: "./media/characters/rymel/side.svg",
  38770. extra: 792/469,
  38771. bottom: 121/913
  38772. }
  38773. },
  38774. maw: {
  38775. height: math.unit(2.4, "meters"),
  38776. name: "Maw",
  38777. image: {
  38778. source: "./media/characters/rymel/maw.svg"
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "House Drake",
  38785. height: math.unit(2, "feet")
  38786. },
  38787. {
  38788. name: "Reduced",
  38789. height: math.unit(4.5, "feet")
  38790. },
  38791. {
  38792. name: "Normal",
  38793. height: math.unit(9, "feet"),
  38794. default: true
  38795. },
  38796. ]
  38797. ))
  38798. characterMakers.push(() => makeCharacter(
  38799. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38800. {
  38801. front: {
  38802. height: math.unit(1.74, "meters"),
  38803. weight: math.unit(55, "kg"),
  38804. name: "Front",
  38805. image: {
  38806. source: "./media/characters/rubus/front.svg",
  38807. extra: 1894/1742,
  38808. bottom: 44/1938
  38809. }
  38810. },
  38811. },
  38812. [
  38813. {
  38814. name: "Normal",
  38815. height: math.unit(1.74, "meters"),
  38816. default: true
  38817. },
  38818. ]
  38819. ))
  38820. characterMakers.push(() => makeCharacter(
  38821. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38822. {
  38823. front: {
  38824. height: math.unit(5 + 2/12, "feet"),
  38825. weight: math.unit(112, "lb"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/cassie-kingston/front.svg",
  38829. extra: 1438/1390,
  38830. bottom: 47/1485
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(5 + 2/12, "feet"),
  38838. default: true
  38839. },
  38840. {
  38841. name: "Macro",
  38842. height: math.unit(128, "feet")
  38843. },
  38844. {
  38845. name: "Megamacro",
  38846. height: math.unit(2.56, "miles")
  38847. },
  38848. ]
  38849. ))
  38850. characterMakers.push(() => makeCharacter(
  38851. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38852. {
  38853. front: {
  38854. height: math.unit(7, "feet"),
  38855. name: "Front",
  38856. image: {
  38857. source: "./media/characters/fox/front.svg",
  38858. extra: 1798/1703,
  38859. bottom: 55/1853
  38860. }
  38861. },
  38862. back: {
  38863. height: math.unit(7, "feet"),
  38864. name: "Back",
  38865. image: {
  38866. source: "./media/characters/fox/back.svg",
  38867. extra: 1748/1649,
  38868. bottom: 32/1780
  38869. }
  38870. },
  38871. head: {
  38872. height: math.unit(1.95, "feet"),
  38873. name: "Head",
  38874. image: {
  38875. source: "./media/characters/fox/head.svg"
  38876. }
  38877. },
  38878. dick: {
  38879. height: math.unit(1.33, "feet"),
  38880. name: "Dick",
  38881. image: {
  38882. source: "./media/characters/fox/dick.svg"
  38883. }
  38884. },
  38885. foot: {
  38886. height: math.unit(1, "feet"),
  38887. name: "Foot",
  38888. image: {
  38889. source: "./media/characters/fox/foot.svg"
  38890. }
  38891. },
  38892. paw: {
  38893. height: math.unit(0.92, "feet"),
  38894. name: "Paw",
  38895. image: {
  38896. source: "./media/characters/fox/paw.svg"
  38897. }
  38898. },
  38899. },
  38900. [
  38901. {
  38902. name: "Small",
  38903. height: math.unit(3, "inches")
  38904. },
  38905. {
  38906. name: "\"Realistic\"",
  38907. height: math.unit(7, "feet")
  38908. },
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(150, "feet"),
  38912. default: true
  38913. },
  38914. {
  38915. name: "BIG",
  38916. height: math.unit(1200, "feet")
  38917. },
  38918. {
  38919. name: "👀",
  38920. height: math.unit(5, "miles")
  38921. },
  38922. {
  38923. name: "👀👀👀",
  38924. height: math.unit(64, "miles")
  38925. },
  38926. ]
  38927. ))
  38928. characterMakers.push(() => makeCharacter(
  38929. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38930. {
  38931. front: {
  38932. height: math.unit(625, "feet"),
  38933. name: "Front",
  38934. image: {
  38935. source: "./media/characters/asonja-rossa/front.svg",
  38936. extra: 1833/1686,
  38937. bottom: 24/1857
  38938. }
  38939. },
  38940. back: {
  38941. height: math.unit(625, "feet"),
  38942. name: "Back",
  38943. image: {
  38944. source: "./media/characters/asonja-rossa/back.svg",
  38945. extra: 1852/1753,
  38946. bottom: 26/1878
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Macro",
  38953. height: math.unit(625, "feet"),
  38954. default: true
  38955. },
  38956. ]
  38957. ))
  38958. characterMakers.push(() => makeCharacter(
  38959. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38960. {
  38961. side: {
  38962. height: math.unit(8, "feet"),
  38963. name: "Side",
  38964. image: {
  38965. source: "./media/characters/rezukii/side.svg",
  38966. extra: 979/542,
  38967. bottom: 87/1066
  38968. }
  38969. },
  38970. sitting: {
  38971. height: math.unit(14.6, "feet"),
  38972. name: "Sitting",
  38973. image: {
  38974. source: "./media/characters/rezukii/sitting.svg",
  38975. extra: 1023/813,
  38976. bottom: 45/1068
  38977. }
  38978. },
  38979. },
  38980. [
  38981. {
  38982. name: "Tiny",
  38983. height: math.unit(2, "feet")
  38984. },
  38985. {
  38986. name: "Smol",
  38987. height: math.unit(4, "feet")
  38988. },
  38989. {
  38990. name: "Normal",
  38991. height: math.unit(8, "feet"),
  38992. default: true
  38993. },
  38994. {
  38995. name: "Big",
  38996. height: math.unit(12, "feet")
  38997. },
  38998. {
  38999. name: "Macro",
  39000. height: math.unit(30, "feet")
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(14, "feet"),
  39009. weight: math.unit(9.5, "tonnes"),
  39010. name: "Front",
  39011. image: {
  39012. source: "./media/characters/dawnheart/front.svg",
  39013. extra: 2792/2675,
  39014. bottom: 64/2856
  39015. }
  39016. },
  39017. },
  39018. [
  39019. {
  39020. name: "Normal",
  39021. height: math.unit(14, "feet"),
  39022. default: true
  39023. },
  39024. ]
  39025. ))
  39026. characterMakers.push(() => makeCharacter(
  39027. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39028. {
  39029. front: {
  39030. height: math.unit(1.7, "m"),
  39031. name: "Front",
  39032. image: {
  39033. source: "./media/characters/gladi/front.svg",
  39034. extra: 1460/1362,
  39035. bottom: 19/1479
  39036. }
  39037. },
  39038. back: {
  39039. height: math.unit(1.7, "m"),
  39040. name: "Back",
  39041. image: {
  39042. source: "./media/characters/gladi/back.svg",
  39043. extra: 1459/1357,
  39044. bottom: 12/1471
  39045. }
  39046. },
  39047. feral: {
  39048. height: math.unit(2.05, "m"),
  39049. name: "Feral",
  39050. image: {
  39051. source: "./media/characters/gladi/feral.svg",
  39052. extra: 821/557,
  39053. bottom: 91/912
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Shortest",
  39060. height: math.unit(70, "cm")
  39061. },
  39062. {
  39063. name: "Normal",
  39064. height: math.unit(1.7, "m")
  39065. },
  39066. {
  39067. name: "Macro",
  39068. height: math.unit(10, "m"),
  39069. default: true
  39070. },
  39071. {
  39072. name: "Tallest",
  39073. height: math.unit(200, "m")
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(5 + 7/12, "feet"),
  39082. weight: math.unit(2, "tons"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/erdno/front.svg",
  39086. extra: 1234/1129,
  39087. bottom: 35/1269
  39088. }
  39089. },
  39090. angled: {
  39091. height: math.unit(5 + 7/12, "feet"),
  39092. weight: math.unit(2, "tons"),
  39093. name: "Angled",
  39094. image: {
  39095. source: "./media/characters/erdno/angled.svg",
  39096. extra: 1185/1139,
  39097. bottom: 36/1221
  39098. }
  39099. },
  39100. side: {
  39101. height: math.unit(5 + 7/12, "feet"),
  39102. weight: math.unit(2, "tons"),
  39103. name: "Side",
  39104. image: {
  39105. source: "./media/characters/erdno/side.svg",
  39106. extra: 1191/1144,
  39107. bottom: 40/1231
  39108. }
  39109. },
  39110. back: {
  39111. height: math.unit(5 + 7/12, "feet"),
  39112. weight: math.unit(2, "tons"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/erdno/back.svg",
  39116. extra: 1202/1146,
  39117. bottom: 17/1219
  39118. }
  39119. },
  39120. frontNsfw: {
  39121. height: math.unit(5 + 7/12, "feet"),
  39122. weight: math.unit(2, "tons"),
  39123. name: "Front (NSFW)",
  39124. image: {
  39125. source: "./media/characters/erdno/front-nsfw.svg",
  39126. extra: 1234/1129,
  39127. bottom: 35/1269
  39128. }
  39129. },
  39130. angledNsfw: {
  39131. height: math.unit(5 + 7/12, "feet"),
  39132. weight: math.unit(2, "tons"),
  39133. name: "Angled (NSFW)",
  39134. image: {
  39135. source: "./media/characters/erdno/angled-nsfw.svg",
  39136. extra: 1185/1139,
  39137. bottom: 36/1221
  39138. }
  39139. },
  39140. sideNsfw: {
  39141. height: math.unit(5 + 7/12, "feet"),
  39142. weight: math.unit(2, "tons"),
  39143. name: "Side (NSFW)",
  39144. image: {
  39145. source: "./media/characters/erdno/side-nsfw.svg",
  39146. extra: 1191/1144,
  39147. bottom: 40/1231
  39148. }
  39149. },
  39150. backNsfw: {
  39151. height: math.unit(5 + 7/12, "feet"),
  39152. weight: math.unit(2, "tons"),
  39153. name: "Back (NSFW)",
  39154. image: {
  39155. source: "./media/characters/erdno/back-nsfw.svg",
  39156. extra: 1202/1146,
  39157. bottom: 17/1219
  39158. }
  39159. },
  39160. frontHyper: {
  39161. height: math.unit(5 + 7/12, "feet"),
  39162. weight: math.unit(2, "tons"),
  39163. name: "Front (Hyper)",
  39164. image: {
  39165. source: "./media/characters/erdno/front-hyper.svg",
  39166. extra: 1298/1136,
  39167. bottom: 35/1333
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Normal",
  39174. height: math.unit(5 + 7/12, "feet"),
  39175. default: true
  39176. },
  39177. {
  39178. name: "Big",
  39179. height: math.unit(5.7, "meters")
  39180. },
  39181. {
  39182. name: "Macro",
  39183. height: math.unit(5.7, "kilometers")
  39184. },
  39185. {
  39186. name: "Megamacro",
  39187. height: math.unit(5.7, "earths")
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(5 + 10/12, "feet"),
  39196. weight: math.unit(150, "lb"),
  39197. name: "Front",
  39198. image: {
  39199. source: "./media/characters/jamie/front.svg",
  39200. extra: 1908/1768,
  39201. bottom: 19/1927
  39202. }
  39203. },
  39204. },
  39205. [
  39206. {
  39207. name: "Minimum",
  39208. height: math.unit(2, "cm")
  39209. },
  39210. {
  39211. name: "Micro",
  39212. height: math.unit(3, "inches")
  39213. },
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(5 + 10/12, "feet"),
  39217. default: true
  39218. },
  39219. {
  39220. name: "Macro",
  39221. height: math.unit(150, "feet")
  39222. },
  39223. {
  39224. name: "Megamacro",
  39225. height: math.unit(10000, "m")
  39226. },
  39227. ]
  39228. ))
  39229. characterMakers.push(() => makeCharacter(
  39230. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39231. {
  39232. front: {
  39233. height: math.unit(2, "meters"),
  39234. weight: math.unit(100, "kg"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/shiron/front.svg",
  39238. extra: 2103/1985,
  39239. bottom: 98/2201
  39240. }
  39241. },
  39242. back: {
  39243. height: math.unit(2, "meters"),
  39244. weight: math.unit(100, "kg"),
  39245. name: "Back",
  39246. image: {
  39247. source: "./media/characters/shiron/back.svg",
  39248. extra: 2110/2015,
  39249. bottom: 89/2199
  39250. }
  39251. },
  39252. hand: {
  39253. height: math.unit(0.96, "feet"),
  39254. name: "Hand",
  39255. image: {
  39256. source: "./media/characters/shiron/hand.svg"
  39257. }
  39258. },
  39259. foot: {
  39260. height: math.unit(1.464, "feet"),
  39261. name: "Foot",
  39262. image: {
  39263. source: "./media/characters/shiron/foot.svg"
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Normal",
  39270. height: math.unit(2, "meters")
  39271. },
  39272. {
  39273. name: "Macro",
  39274. height: math.unit(500, "meters"),
  39275. default: true
  39276. },
  39277. {
  39278. name: "Megamacro",
  39279. height: math.unit(20, "km")
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(6, "feet"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/sam/front.svg",
  39291. extra: 849/826,
  39292. bottom: 19/868
  39293. }
  39294. },
  39295. },
  39296. [
  39297. {
  39298. name: "Normal",
  39299. height: math.unit(6, "feet"),
  39300. default: true
  39301. },
  39302. ]
  39303. ))
  39304. characterMakers.push(() => makeCharacter(
  39305. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39306. {
  39307. front: {
  39308. height: math.unit(8 + 4/12, "feet"),
  39309. weight: math.unit(122, "kg"),
  39310. name: "Front",
  39311. image: {
  39312. source: "./media/characters/namori-kurogawa/front.svg",
  39313. extra: 1894/1576,
  39314. bottom: 34/1928
  39315. }
  39316. },
  39317. },
  39318. [
  39319. {
  39320. name: "Normal",
  39321. height: math.unit(8 + 4/12, "feet"),
  39322. default: true
  39323. },
  39324. ]
  39325. ))
  39326. characterMakers.push(() => makeCharacter(
  39327. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39328. {
  39329. front: {
  39330. height: math.unit(9, "feet"),
  39331. weight: math.unit(621, "lb"),
  39332. name: "Front",
  39333. image: {
  39334. source: "./media/characters/unmru/front.svg",
  39335. extra: 1853/1747,
  39336. bottom: 73/1926
  39337. }
  39338. },
  39339. side: {
  39340. height: math.unit(9, "feet"),
  39341. weight: math.unit(621, "lb"),
  39342. name: "Side",
  39343. image: {
  39344. source: "./media/characters/unmru/side.svg",
  39345. extra: 1781/1671,
  39346. bottom: 127/1908
  39347. }
  39348. },
  39349. back: {
  39350. height: math.unit(9, "feet"),
  39351. weight: math.unit(621, "lb"),
  39352. name: "Back",
  39353. image: {
  39354. source: "./media/characters/unmru/back.svg",
  39355. extra: 1894/1765,
  39356. bottom: 75/1969
  39357. }
  39358. },
  39359. dick: {
  39360. height: math.unit(3, "feet"),
  39361. weight: math.unit(35, "lb"),
  39362. name: "Dick",
  39363. image: {
  39364. source: "./media/characters/unmru/dick.svg"
  39365. }
  39366. },
  39367. },
  39368. [
  39369. {
  39370. name: "Normal",
  39371. height: math.unit(9, "feet")
  39372. },
  39373. {
  39374. name: "Natural",
  39375. height: math.unit(27, "feet"),
  39376. default: true
  39377. },
  39378. {
  39379. name: "Giant",
  39380. height: math.unit(90, "feet")
  39381. },
  39382. {
  39383. name: "Kaiju",
  39384. height: math.unit(270, "feet")
  39385. },
  39386. {
  39387. name: "Macro",
  39388. height: math.unit(900, "feet")
  39389. },
  39390. {
  39391. name: "Macro+",
  39392. height: math.unit(2700, "feet")
  39393. },
  39394. {
  39395. name: "Megamacro",
  39396. height: math.unit(9000, "feet")
  39397. },
  39398. {
  39399. name: "City-Crushing",
  39400. height: math.unit(27000, "feet")
  39401. },
  39402. {
  39403. name: "Mountain-Mashing",
  39404. height: math.unit(90000, "feet")
  39405. },
  39406. {
  39407. name: "Earth-Eclipsing",
  39408. height: math.unit(2.7e8, "feet")
  39409. },
  39410. {
  39411. name: "Sol-Swallowing",
  39412. height: math.unit(9e10, "feet")
  39413. },
  39414. {
  39415. name: "Majoris-Munching",
  39416. height: math.unit(2.7e13, "feet")
  39417. },
  39418. ]
  39419. ))
  39420. characterMakers.push(() => makeCharacter(
  39421. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39422. {
  39423. front: {
  39424. height: math.unit(1, "inch"),
  39425. name: "Front",
  39426. image: {
  39427. source: "./media/characters/squeaks-mouse/front.svg",
  39428. extra: 352/308,
  39429. bottom: 25/377
  39430. }
  39431. },
  39432. },
  39433. [
  39434. {
  39435. name: "Micro",
  39436. height: math.unit(1, "inch"),
  39437. default: true
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39443. {
  39444. side: {
  39445. height: math.unit(35, "feet"),
  39446. name: "Side",
  39447. image: {
  39448. source: "./media/characters/sayko/side.svg",
  39449. extra: 1697/1021,
  39450. bottom: 82/1779
  39451. }
  39452. },
  39453. head: {
  39454. height: math.unit(16, "feet"),
  39455. name: "Head",
  39456. image: {
  39457. source: "./media/characters/sayko/head.svg"
  39458. }
  39459. },
  39460. forepaw: {
  39461. height: math.unit(7.85, "feet"),
  39462. name: "Forepaw",
  39463. image: {
  39464. source: "./media/characters/sayko/forepaw.svg"
  39465. }
  39466. },
  39467. hindpaw: {
  39468. height: math.unit(8.8, "feet"),
  39469. name: "Hindpaw",
  39470. image: {
  39471. source: "./media/characters/sayko/hindpaw.svg"
  39472. }
  39473. },
  39474. },
  39475. [
  39476. {
  39477. name: "Normal",
  39478. height: math.unit(35, "feet"),
  39479. default: true
  39480. },
  39481. {
  39482. name: "Colossus",
  39483. height: math.unit(100, "meters")
  39484. },
  39485. {
  39486. name: "\"Small\" Deity",
  39487. height: math.unit(1, "km")
  39488. },
  39489. {
  39490. name: "\"Large\" Deity",
  39491. height: math.unit(15, "km")
  39492. },
  39493. ]
  39494. ))
  39495. characterMakers.push(() => makeCharacter(
  39496. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39497. {
  39498. front: {
  39499. height: math.unit(6, "feet"),
  39500. weight: math.unit(250, "lb"),
  39501. name: "Front",
  39502. image: {
  39503. source: "./media/characters/mukiro/front.svg",
  39504. extra: 1368/1310,
  39505. bottom: 34/1402
  39506. }
  39507. },
  39508. },
  39509. [
  39510. {
  39511. name: "Normal",
  39512. height: math.unit(6, "feet"),
  39513. default: true
  39514. },
  39515. ]
  39516. ))
  39517. characterMakers.push(() => makeCharacter(
  39518. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39519. {
  39520. front: {
  39521. height: math.unit(12 + 4/12, "feet"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39525. extra: 1346/1311,
  39526. bottom: 65/1411
  39527. }
  39528. },
  39529. },
  39530. [
  39531. {
  39532. name: "Base",
  39533. height: math.unit(12 + 4/12, "feet"),
  39534. default: true
  39535. },
  39536. {
  39537. name: "Macro",
  39538. height: math.unit(150, "feet")
  39539. },
  39540. {
  39541. name: "Mega",
  39542. height: math.unit(2, "miles")
  39543. },
  39544. {
  39545. name: "Demi God",
  39546. height: math.unit(4, "AU")
  39547. },
  39548. {
  39549. name: "God Size",
  39550. height: math.unit(1, "universe")
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(3 + 3/12, "feet"),
  39559. weight: math.unit(88, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/trey/front.svg",
  39563. extra: 1815/1509,
  39564. bottom: 60/1875
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Normal",
  39571. height: math.unit(3 + 3/12, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39578. {
  39579. front: {
  39580. height: math.unit(4, "meters"),
  39581. name: "Front",
  39582. image: {
  39583. source: "./media/characters/adelonda/front.svg",
  39584. extra: 1077/982,
  39585. bottom: 39/1116
  39586. }
  39587. },
  39588. back: {
  39589. height: math.unit(4, "meters"),
  39590. name: "Back",
  39591. image: {
  39592. source: "./media/characters/adelonda/back.svg",
  39593. extra: 1105/1003,
  39594. bottom: 25/1130
  39595. }
  39596. },
  39597. feral: {
  39598. height: math.unit(40/1.5, "meters"),
  39599. name: "Feral",
  39600. image: {
  39601. source: "./media/characters/adelonda/feral.svg",
  39602. extra: 597/271,
  39603. bottom: 387/984
  39604. }
  39605. },
  39606. },
  39607. [
  39608. {
  39609. name: "Normal",
  39610. height: math.unit(4, "meters"),
  39611. default: true
  39612. },
  39613. ]
  39614. ))
  39615. characterMakers.push(() => makeCharacter(
  39616. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39617. {
  39618. front: {
  39619. height: math.unit(8 + 4/12, "feet"),
  39620. weight: math.unit(670, "lb"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/acadiel/front.svg",
  39624. extra: 1901/1595,
  39625. bottom: 142/2043
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Normal",
  39632. height: math.unit(8 + 4/12, "feet"),
  39633. default: true
  39634. },
  39635. {
  39636. name: "Macro",
  39637. height: math.unit(200, "feet")
  39638. },
  39639. ]
  39640. ))
  39641. characterMakers.push(() => makeCharacter(
  39642. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39643. {
  39644. front: {
  39645. height: math.unit(6 + 2/12, "feet"),
  39646. weight: math.unit(185, "lb"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/kayne-ein/front.svg",
  39650. extra: 1780/1560,
  39651. bottom: 81/1861
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(6 + 2/12, "feet"),
  39659. default: true
  39660. },
  39661. {
  39662. name: "Transformation Stage",
  39663. height: math.unit(15, "feet")
  39664. },
  39665. {
  39666. name: "Macro",
  39667. height: math.unit(150, "feet")
  39668. },
  39669. {
  39670. name: "Earth's Shadow",
  39671. height: math.unit(6200, "miles")
  39672. },
  39673. {
  39674. name: "Universal Demon",
  39675. height: math.unit(28e9, "parsecs")
  39676. },
  39677. {
  39678. name: "Multiverse God",
  39679. height: math.unit(3, "multiverses")
  39680. },
  39681. ]
  39682. ))
  39683. characterMakers.push(() => makeCharacter(
  39684. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39685. {
  39686. front: {
  39687. height: math.unit(5 + 5/12, "feet"),
  39688. name: "Front",
  39689. image: {
  39690. source: "./media/characters/fawn/front.svg",
  39691. extra: 1873/1731,
  39692. bottom: 95/1968
  39693. }
  39694. },
  39695. back: {
  39696. height: math.unit(5 + 5/12, "feet"),
  39697. name: "Back",
  39698. image: {
  39699. source: "./media/characters/fawn/back.svg",
  39700. extra: 1813/1700,
  39701. bottom: 14/1827
  39702. }
  39703. },
  39704. hoof: {
  39705. height: math.unit(1.45, "feet"),
  39706. name: "Hoof",
  39707. image: {
  39708. source: "./media/characters/fawn/hoof.svg"
  39709. }
  39710. },
  39711. },
  39712. [
  39713. {
  39714. name: "Normal",
  39715. height: math.unit(5 + 5/12, "feet"),
  39716. default: true
  39717. },
  39718. ]
  39719. ))
  39720. characterMakers.push(() => makeCharacter(
  39721. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39722. {
  39723. front: {
  39724. height: math.unit(2 + 5/12, "feet"),
  39725. name: "Front",
  39726. image: {
  39727. source: "./media/characters/orion/front.svg",
  39728. extra: 1366/1304,
  39729. bottom: 43/1409
  39730. }
  39731. },
  39732. paw: {
  39733. height: math.unit(0.52, "feet"),
  39734. name: "Paw",
  39735. image: {
  39736. source: "./media/characters/orion/paw.svg"
  39737. }
  39738. },
  39739. },
  39740. [
  39741. {
  39742. name: "Normal",
  39743. height: math.unit(2 + 5/12, "feet"),
  39744. default: true
  39745. },
  39746. ]
  39747. ))
  39748. characterMakers.push(() => makeCharacter(
  39749. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39750. {
  39751. front: {
  39752. height: math.unit(5 + 10/12, "feet"),
  39753. name: "Front",
  39754. image: {
  39755. source: "./media/characters/vera/front.svg",
  39756. extra: 1680/1575,
  39757. bottom: 49/1729
  39758. }
  39759. },
  39760. back: {
  39761. height: math.unit(5 + 10/12, "feet"),
  39762. name: "Back",
  39763. image: {
  39764. source: "./media/characters/vera/back.svg",
  39765. extra: 1700/1588,
  39766. bottom: 18/1718
  39767. }
  39768. },
  39769. arcanine: {
  39770. height: math.unit(6 + 8/12, "feet"),
  39771. name: "Arcanine",
  39772. image: {
  39773. source: "./media/characters/vera/arcanine.svg",
  39774. extra: 1590/1511,
  39775. bottom: 71/1661
  39776. }
  39777. },
  39778. maw: {
  39779. height: math.unit(0.82, "feet"),
  39780. name: "Maw",
  39781. image: {
  39782. source: "./media/characters/vera/maw.svg"
  39783. }
  39784. },
  39785. mawArcanine: {
  39786. height: math.unit(0.97, "feet"),
  39787. name: "Maw (Arcanine)",
  39788. image: {
  39789. source: "./media/characters/vera/maw-arcanine.svg"
  39790. }
  39791. },
  39792. paw: {
  39793. height: math.unit(0.75, "feet"),
  39794. name: "Paw",
  39795. image: {
  39796. source: "./media/characters/vera/paw.svg"
  39797. }
  39798. },
  39799. pawprint: {
  39800. height: math.unit(0.52, "feet"),
  39801. name: "Pawprint",
  39802. image: {
  39803. source: "./media/characters/vera/pawprint.svg"
  39804. }
  39805. },
  39806. },
  39807. [
  39808. {
  39809. name: "Normal",
  39810. height: math.unit(5 + 10/12, "feet"),
  39811. default: true
  39812. },
  39813. {
  39814. name: "Macro",
  39815. height: math.unit(75, "feet")
  39816. },
  39817. ]
  39818. ))
  39819. characterMakers.push(() => makeCharacter(
  39820. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39821. {
  39822. front: {
  39823. height: math.unit(4, "feet"),
  39824. weight: math.unit(40, "lb"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/orvan-rabbit/front.svg",
  39828. extra: 1896/1642,
  39829. bottom: 29/1925
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Normal",
  39836. height: math.unit(4, "feet"),
  39837. default: true
  39838. },
  39839. ]
  39840. ))
  39841. characterMakers.push(() => makeCharacter(
  39842. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39843. {
  39844. front: {
  39845. height: math.unit(6, "feet"),
  39846. weight: math.unit(168, "lb"),
  39847. name: "Front",
  39848. image: {
  39849. source: "./media/characters/lisa/front.svg",
  39850. extra: 2065/1867,
  39851. bottom: 46/2111
  39852. }
  39853. },
  39854. back: {
  39855. height: math.unit(6, "feet"),
  39856. weight: math.unit(168, "lb"),
  39857. name: "Back",
  39858. image: {
  39859. source: "./media/characters/lisa/back.svg",
  39860. extra: 1982/1838,
  39861. bottom: 29/2011
  39862. }
  39863. },
  39864. maw: {
  39865. height: math.unit(0.81, "feet"),
  39866. name: "Maw",
  39867. image: {
  39868. source: "./media/characters/lisa/maw.svg"
  39869. }
  39870. },
  39871. paw: {
  39872. height: math.unit(0.9, "feet"),
  39873. name: "Paw",
  39874. image: {
  39875. source: "./media/characters/lisa/paw.svg"
  39876. }
  39877. },
  39878. caribousune: {
  39879. height: math.unit(7 + 2/12, "feet"),
  39880. weight: math.unit(268, "lb"),
  39881. name: "Caribousune",
  39882. image: {
  39883. source: "./media/characters/lisa/caribousune.svg",
  39884. extra: 1843/1633,
  39885. bottom: 29/1872
  39886. }
  39887. },
  39888. frontCaribousune: {
  39889. height: math.unit(7 + 2/12, "feet"),
  39890. weight: math.unit(268, "lb"),
  39891. name: "Front (Caribousune)",
  39892. image: {
  39893. source: "./media/characters/lisa/front-caribousune.svg",
  39894. extra: 1818/1638,
  39895. bottom: 52/1870
  39896. }
  39897. },
  39898. sideCaribousune: {
  39899. height: math.unit(7 + 2/12, "feet"),
  39900. weight: math.unit(268, "lb"),
  39901. name: "Side (Caribousune)",
  39902. image: {
  39903. source: "./media/characters/lisa/side-caribousune.svg",
  39904. extra: 1851/1635,
  39905. bottom: 16/1867
  39906. }
  39907. },
  39908. backCaribousune: {
  39909. height: math.unit(7 + 2/12, "feet"),
  39910. weight: math.unit(268, "lb"),
  39911. name: "Back (Caribousune)",
  39912. image: {
  39913. source: "./media/characters/lisa/back-caribousune.svg",
  39914. extra: 1801/1604,
  39915. bottom: 44/1845
  39916. }
  39917. },
  39918. caribou: {
  39919. height: math.unit(7 + 2/12, "feet"),
  39920. weight: math.unit(268, "lb"),
  39921. name: "Caribou",
  39922. image: {
  39923. source: "./media/characters/lisa/caribou.svg",
  39924. extra: 1843/1633,
  39925. bottom: 29/1872
  39926. }
  39927. },
  39928. frontCaribou: {
  39929. height: math.unit(7 + 2/12, "feet"),
  39930. weight: math.unit(268, "lb"),
  39931. name: "Front (Caribou)",
  39932. image: {
  39933. source: "./media/characters/lisa/front-caribou.svg",
  39934. extra: 1818/1638,
  39935. bottom: 52/1870
  39936. }
  39937. },
  39938. sideCaribou: {
  39939. height: math.unit(7 + 2/12, "feet"),
  39940. weight: math.unit(268, "lb"),
  39941. name: "Side (Caribou)",
  39942. image: {
  39943. source: "./media/characters/lisa/side-caribou.svg",
  39944. extra: 1851/1635,
  39945. bottom: 16/1867
  39946. }
  39947. },
  39948. backCaribou: {
  39949. height: math.unit(7 + 2/12, "feet"),
  39950. weight: math.unit(268, "lb"),
  39951. name: "Back (Caribou)",
  39952. image: {
  39953. source: "./media/characters/lisa/back-caribou.svg",
  39954. extra: 1801/1604,
  39955. bottom: 44/1845
  39956. }
  39957. },
  39958. mawCaribou: {
  39959. height: math.unit(1.45, "feet"),
  39960. name: "Maw (Caribou)",
  39961. image: {
  39962. source: "./media/characters/lisa/maw-caribou.svg"
  39963. }
  39964. },
  39965. mawCaribousune: {
  39966. height: math.unit(1.45, "feet"),
  39967. name: "Maw (Caribousune)",
  39968. image: {
  39969. source: "./media/characters/lisa/maw-caribousune.svg"
  39970. }
  39971. },
  39972. pawCaribousune: {
  39973. height: math.unit(1.61, "feet"),
  39974. name: "Paw (Caribou)",
  39975. image: {
  39976. source: "./media/characters/lisa/paw-caribousune.svg"
  39977. }
  39978. },
  39979. },
  39980. [
  39981. {
  39982. name: "Normal",
  39983. height: math.unit(6, "feet")
  39984. },
  39985. {
  39986. name: "God Size",
  39987. height: math.unit(72, "feet"),
  39988. default: true
  39989. },
  39990. {
  39991. name: "Towering",
  39992. height: math.unit(288, "feet")
  39993. },
  39994. {
  39995. name: "City Size",
  39996. height: math.unit(48384, "feet")
  39997. },
  39998. {
  39999. name: "Continental",
  40000. height: math.unit(4200, "miles")
  40001. },
  40002. {
  40003. name: "Planet Eater",
  40004. height: math.unit(42, "earths")
  40005. },
  40006. {
  40007. name: "Star Swallower",
  40008. height: math.unit(42, "solarradii")
  40009. },
  40010. {
  40011. name: "System Swallower",
  40012. height: math.unit(84000, "AU")
  40013. },
  40014. {
  40015. name: "Galaxy Gobbler",
  40016. height: math.unit(42, "galaxies")
  40017. },
  40018. {
  40019. name: "Universe Devourer",
  40020. height: math.unit(42, "universes")
  40021. },
  40022. {
  40023. name: "Multiverse Muncher",
  40024. height: math.unit(42, "multiverses")
  40025. },
  40026. ]
  40027. ))
  40028. characterMakers.push(() => makeCharacter(
  40029. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40030. {
  40031. front: {
  40032. height: math.unit(36, "feet"),
  40033. name: "Front",
  40034. image: {
  40035. source: "./media/characters/shadow-rat/front.svg",
  40036. extra: 1845/1758,
  40037. bottom: 83/1928
  40038. }
  40039. },
  40040. },
  40041. [
  40042. {
  40043. name: "Macro",
  40044. height: math.unit(36, "feet"),
  40045. default: true
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40051. {
  40052. side: {
  40053. height: math.unit(8, "feet"),
  40054. weight: math.unit(2630, "lb"),
  40055. name: "Side",
  40056. image: {
  40057. source: "./media/characters/torallia/side.svg",
  40058. extra: 2164/2021,
  40059. bottom: 371/2535
  40060. }
  40061. },
  40062. },
  40063. [
  40064. {
  40065. name: "Mortal Interaction",
  40066. height: math.unit(8, "feet")
  40067. },
  40068. {
  40069. name: "Natural",
  40070. height: math.unit(24, "feet"),
  40071. default: true
  40072. },
  40073. {
  40074. name: "Giant",
  40075. height: math.unit(80, "feet")
  40076. },
  40077. {
  40078. name: "Kaiju",
  40079. height: math.unit(240, "feet")
  40080. },
  40081. {
  40082. name: "Macro",
  40083. height: math.unit(800, "feet")
  40084. },
  40085. {
  40086. name: "Macro+",
  40087. height: math.unit(2400, "feet")
  40088. },
  40089. {
  40090. name: "Macro++",
  40091. height: math.unit(8000, "feet")
  40092. },
  40093. {
  40094. name: "City-Crushing",
  40095. height: math.unit(24000, "feet")
  40096. },
  40097. {
  40098. name: "Mountain-Mashing",
  40099. height: math.unit(80000, "feet")
  40100. },
  40101. {
  40102. name: "District Demolisher",
  40103. height: math.unit(240000, "feet")
  40104. },
  40105. {
  40106. name: "Tri-County Terror",
  40107. height: math.unit(800000, "feet")
  40108. },
  40109. {
  40110. name: "State Smasher",
  40111. height: math.unit(2.4e6, "feet")
  40112. },
  40113. {
  40114. name: "Nation Nemesis",
  40115. height: math.unit(8e6, "feet")
  40116. },
  40117. {
  40118. name: "Continent Cracker",
  40119. height: math.unit(2.4e7, "feet")
  40120. },
  40121. {
  40122. name: "Planet-Pillaging",
  40123. height: math.unit(8e7, "feet")
  40124. },
  40125. {
  40126. name: "Earth-Eclipsing",
  40127. height: math.unit(2.4e8, "feet")
  40128. },
  40129. {
  40130. name: "Jovian-Jostling",
  40131. height: math.unit(8e8, "feet")
  40132. },
  40133. {
  40134. name: "Gas Giant Gulper",
  40135. height: math.unit(2.4e9, "feet")
  40136. },
  40137. {
  40138. name: "Astral Annihilator",
  40139. height: math.unit(8e9, "feet")
  40140. },
  40141. {
  40142. name: "Celestial Conqueror",
  40143. height: math.unit(2.4e10, "feet")
  40144. },
  40145. {
  40146. name: "Sol-Swallowing",
  40147. height: math.unit(8e10, "feet")
  40148. },
  40149. {
  40150. name: "Hunter of the Heavens",
  40151. height: math.unit(2.4e13, "feet")
  40152. },
  40153. ]
  40154. ))
  40155. characterMakers.push(() => makeCharacter(
  40156. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40157. {
  40158. front: {
  40159. height: math.unit(6 + 8/12, "feet"),
  40160. weight: math.unit(250, "kilograms"),
  40161. volume: math.unit(28, "liters"),
  40162. name: "Front",
  40163. image: {
  40164. source: "./media/characters/rebecca-pawlson/front.svg",
  40165. extra: 1737/1596,
  40166. bottom: 107/1844
  40167. }
  40168. },
  40169. back: {
  40170. height: math.unit(6 + 8/12, "feet"),
  40171. weight: math.unit(250, "kilograms"),
  40172. volume: math.unit(28, "liters"),
  40173. name: "Back",
  40174. image: {
  40175. source: "./media/characters/rebecca-pawlson/back.svg",
  40176. extra: 1702/1523,
  40177. bottom: 86/1788
  40178. }
  40179. },
  40180. },
  40181. [
  40182. {
  40183. name: "Normal",
  40184. height: math.unit(6 + 8/12, "feet")
  40185. },
  40186. {
  40187. name: "Mini Macro",
  40188. height: math.unit(10, "feet"),
  40189. default: true
  40190. },
  40191. {
  40192. name: "Macro",
  40193. height: math.unit(100, "feet")
  40194. },
  40195. {
  40196. name: "Mega Macro",
  40197. height: math.unit(2500, "feet")
  40198. },
  40199. {
  40200. name: "Giga Macro",
  40201. height: math.unit(50, "miles")
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40207. {
  40208. front: {
  40209. height: math.unit(7 + 6/12, "feet"),
  40210. weight: math.unit(600, "lb"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/moxie-nova/front.svg",
  40214. extra: 1734/1652,
  40215. bottom: 41/1775
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Normal",
  40222. height: math.unit(7 + 6/12, "feet"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40229. {
  40230. goat: {
  40231. height: math.unit(4, "feet"),
  40232. weight: math.unit(180, "lb"),
  40233. name: "Goat",
  40234. image: {
  40235. source: "./media/characters/tiffany/goat.svg",
  40236. extra: 1845/1595,
  40237. bottom: 106/1951
  40238. }
  40239. },
  40240. front: {
  40241. height: math.unit(5, "feet"),
  40242. weight: math.unit(150, "lb"),
  40243. name: "Foxcoon",
  40244. image: {
  40245. source: "./media/characters/tiffany/foxcoon.svg",
  40246. extra: 1941/1845,
  40247. bottom: 58/1999
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(5, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40261. {
  40262. front: {
  40263. height: math.unit(8, "feet"),
  40264. weight: math.unit(300, "lb"),
  40265. name: "Front",
  40266. image: {
  40267. source: "./media/characters/raxinath/front.svg",
  40268. extra: 1407/1309,
  40269. bottom: 39/1446
  40270. }
  40271. },
  40272. back: {
  40273. height: math.unit(8, "feet"),
  40274. weight: math.unit(300, "lb"),
  40275. name: "Back",
  40276. image: {
  40277. source: "./media/characters/raxinath/back.svg",
  40278. extra: 1405/1315,
  40279. bottom: 9/1414
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Speck",
  40286. height: math.unit(0.5, "nm")
  40287. },
  40288. {
  40289. name: "Micro",
  40290. height: math.unit(3, "inches")
  40291. },
  40292. {
  40293. name: "Kobold",
  40294. height: math.unit(3, "feet")
  40295. },
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(8, "feet"),
  40299. default: true
  40300. },
  40301. {
  40302. name: "Giant",
  40303. height: math.unit(50, "feet")
  40304. },
  40305. {
  40306. name: "Macro",
  40307. height: math.unit(1000, "feet")
  40308. },
  40309. {
  40310. name: "Megamacro",
  40311. height: math.unit(1, "mile")
  40312. },
  40313. ]
  40314. ))
  40315. characterMakers.push(() => makeCharacter(
  40316. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40317. {
  40318. front: {
  40319. height: math.unit(10, "feet"),
  40320. weight: math.unit(1442, "lb"),
  40321. name: "Front",
  40322. image: {
  40323. source: "./media/characters/mal-dragon/front.svg",
  40324. extra: 1515/1444,
  40325. bottom: 113/1628
  40326. }
  40327. },
  40328. back: {
  40329. height: math.unit(10, "feet"),
  40330. weight: math.unit(1442, "lb"),
  40331. name: "Back",
  40332. image: {
  40333. source: "./media/characters/mal-dragon/back.svg",
  40334. extra: 1527/1434,
  40335. bottom: 25/1552
  40336. }
  40337. },
  40338. },
  40339. [
  40340. {
  40341. name: "Mortal Interaction",
  40342. height: math.unit(10, "feet"),
  40343. default: true
  40344. },
  40345. {
  40346. name: "Large",
  40347. height: math.unit(30, "feet")
  40348. },
  40349. {
  40350. name: "Kaiju",
  40351. height: math.unit(300, "feet")
  40352. },
  40353. {
  40354. name: "Megamacro",
  40355. height: math.unit(10000, "feet")
  40356. },
  40357. {
  40358. name: "Continent Cracker",
  40359. height: math.unit(30000000, "feet")
  40360. },
  40361. {
  40362. name: "Sol-Swallowing",
  40363. height: math.unit(1e11, "feet")
  40364. },
  40365. {
  40366. name: "Light Universal",
  40367. height: math.unit(5, "universes")
  40368. },
  40369. {
  40370. name: "Universe Atoms",
  40371. height: math.unit(1.829e9, "universes")
  40372. },
  40373. {
  40374. name: "Light Multiversal",
  40375. height: math.unit(5, "multiverses")
  40376. },
  40377. {
  40378. name: "Multiverse Atoms",
  40379. height: math.unit(1.829e9, "multiverses")
  40380. },
  40381. {
  40382. name: "Fabric of Time",
  40383. height: math.unit(1e262, "multiverses")
  40384. },
  40385. ]
  40386. ))
  40387. characterMakers.push(() => makeCharacter(
  40388. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40389. {
  40390. front: {
  40391. height: math.unit(9, "feet"),
  40392. weight: math.unit(1050, "lb"),
  40393. name: "Front",
  40394. image: {
  40395. source: "./media/characters/tabitha/front.svg",
  40396. extra: 2083/1994,
  40397. bottom: 68/2151
  40398. }
  40399. },
  40400. },
  40401. [
  40402. {
  40403. name: "Baseline",
  40404. height: math.unit(9, "feet"),
  40405. default: true
  40406. },
  40407. {
  40408. name: "Giant",
  40409. height: math.unit(90, "feet")
  40410. },
  40411. {
  40412. name: "Macro",
  40413. height: math.unit(900, "feet")
  40414. },
  40415. {
  40416. name: "Megamacro",
  40417. height: math.unit(9000, "feet")
  40418. },
  40419. {
  40420. name: "City-Crushing",
  40421. height: math.unit(27000, "feet")
  40422. },
  40423. {
  40424. name: "Mountain-Mashing",
  40425. height: math.unit(90000, "feet")
  40426. },
  40427. {
  40428. name: "Nation Nemesis",
  40429. height: math.unit(9e6, "feet")
  40430. },
  40431. {
  40432. name: "Continent Cracker",
  40433. height: math.unit(27e6, "feet")
  40434. },
  40435. {
  40436. name: "Earth-Eclipsing",
  40437. height: math.unit(2.7e8, "feet")
  40438. },
  40439. {
  40440. name: "Gas Giant Gulper",
  40441. height: math.unit(2.7e9, "feet")
  40442. },
  40443. {
  40444. name: "Sol-Swallowing",
  40445. height: math.unit(9e10, "feet")
  40446. },
  40447. {
  40448. name: "Galaxy Gulper",
  40449. height: math.unit(9, "galaxies")
  40450. },
  40451. {
  40452. name: "Cosmos Churner",
  40453. height: math.unit(9, "universes")
  40454. },
  40455. ]
  40456. ))
  40457. characterMakers.push(() => makeCharacter(
  40458. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40459. {
  40460. front: {
  40461. height: math.unit(160, "cm"),
  40462. weight: math.unit(55, "kg"),
  40463. name: "Front",
  40464. image: {
  40465. source: "./media/characters/tow/front.svg",
  40466. extra: 1751/1722,
  40467. bottom: 74/1825
  40468. }
  40469. },
  40470. },
  40471. [
  40472. {
  40473. name: "Norm",
  40474. height: math.unit(160, "cm")
  40475. },
  40476. {
  40477. name: "Casual",
  40478. height: math.unit(3200, "m"),
  40479. default: true
  40480. },
  40481. {
  40482. name: "Show-Off",
  40483. height: math.unit(160, "km")
  40484. },
  40485. ]
  40486. ))
  40487. characterMakers.push(() => makeCharacter(
  40488. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40489. {
  40490. front: {
  40491. height: math.unit(7 + 11/12, "feet"),
  40492. weight: math.unit(342.8, "lb"),
  40493. name: "Front",
  40494. image: {
  40495. source: "./media/characters/vivian-orca-dragon/front.svg",
  40496. extra: 1890/1865,
  40497. bottom: 28/1918
  40498. }
  40499. },
  40500. },
  40501. [
  40502. {
  40503. name: "Micro",
  40504. height: math.unit(5, "inches")
  40505. },
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(7 + 11/12, "feet"),
  40509. default: true
  40510. },
  40511. {
  40512. name: "Macro",
  40513. height: math.unit(395 + 7/12, "feet")
  40514. },
  40515. ]
  40516. ))
  40517. characterMakers.push(() => makeCharacter(
  40518. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40519. {
  40520. side: {
  40521. height: math.unit(10, "feet"),
  40522. weight: math.unit(1442, "lb"),
  40523. name: "Side",
  40524. image: {
  40525. source: "./media/characters/lotherakon/side.svg",
  40526. extra: 1604/1497,
  40527. bottom: 89/1693
  40528. }
  40529. },
  40530. },
  40531. [
  40532. {
  40533. name: "Mortal Interaction",
  40534. height: math.unit(10, "feet")
  40535. },
  40536. {
  40537. name: "Large",
  40538. height: math.unit(30, "feet"),
  40539. default: true
  40540. },
  40541. {
  40542. name: "Giant",
  40543. height: math.unit(100, "feet")
  40544. },
  40545. {
  40546. name: "Kaiju",
  40547. height: math.unit(300, "feet")
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(1000, "feet")
  40552. },
  40553. {
  40554. name: "Macro+",
  40555. height: math.unit(3000, "feet")
  40556. },
  40557. {
  40558. name: "Megamacro",
  40559. height: math.unit(10000, "feet")
  40560. },
  40561. {
  40562. name: "City-Crushing",
  40563. height: math.unit(30000, "feet")
  40564. },
  40565. {
  40566. name: "Continent Cracker",
  40567. height: math.unit(30e6, "feet")
  40568. },
  40569. {
  40570. name: "Earth Eclipsing",
  40571. height: math.unit(3e8, "feet")
  40572. },
  40573. {
  40574. name: "Gas Giant Gulper",
  40575. height: math.unit(3e9, "feet")
  40576. },
  40577. {
  40578. name: "Sol-Swallowing",
  40579. height: math.unit(1e11, "feet")
  40580. },
  40581. {
  40582. name: "System Swallower",
  40583. height: math.unit(3e14, "feet")
  40584. },
  40585. {
  40586. name: "Galaxy Gulper",
  40587. height: math.unit(10, "galaxies")
  40588. },
  40589. {
  40590. name: "Light Universal",
  40591. height: math.unit(5, "universes")
  40592. },
  40593. {
  40594. name: "Universe Palm",
  40595. height: math.unit(20, "universes")
  40596. },
  40597. {
  40598. name: "Light Multiversal",
  40599. height: math.unit(5, "multiverses")
  40600. },
  40601. {
  40602. name: "Multiverse Palm",
  40603. height: math.unit(20, "multiverses")
  40604. },
  40605. {
  40606. name: "Inferno Incarnate",
  40607. height: math.unit(1e7, "multiverses")
  40608. },
  40609. ]
  40610. ))
  40611. characterMakers.push(() => makeCharacter(
  40612. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40613. {
  40614. front: {
  40615. height: math.unit(8, "feet"),
  40616. weight: math.unit(1200, "lb"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/malithee/front.svg",
  40620. extra: 1675/1640,
  40621. bottom: 162/1837
  40622. }
  40623. },
  40624. },
  40625. [
  40626. {
  40627. name: "Mortal Interaction",
  40628. height: math.unit(8, "feet"),
  40629. default: true
  40630. },
  40631. {
  40632. name: "Large",
  40633. height: math.unit(24, "feet")
  40634. },
  40635. {
  40636. name: "Kaiju",
  40637. height: math.unit(240, "feet")
  40638. },
  40639. {
  40640. name: "Megamacro",
  40641. height: math.unit(8000, "feet")
  40642. },
  40643. {
  40644. name: "Continent Cracker",
  40645. height: math.unit(24e6, "feet")
  40646. },
  40647. {
  40648. name: "Earth-Eclipsing",
  40649. height: math.unit(2.4e8, "feet")
  40650. },
  40651. {
  40652. name: "Sol-Swallowing",
  40653. height: math.unit(8e10, "feet")
  40654. },
  40655. {
  40656. name: "Galaxy Gulper",
  40657. height: math.unit(8, "galaxies")
  40658. },
  40659. {
  40660. name: "Light Universal",
  40661. height: math.unit(4, "universes")
  40662. },
  40663. {
  40664. name: "Universe Atoms",
  40665. height: math.unit(1.829e9, "universes")
  40666. },
  40667. {
  40668. name: "Light Multiversal",
  40669. height: math.unit(4, "multiverses")
  40670. },
  40671. {
  40672. name: "Multiverse Atoms",
  40673. height: math.unit(1.829e9, "multiverses")
  40674. },
  40675. {
  40676. name: "Nigh-Omnipresence",
  40677. height: math.unit(8e261, "multiverses")
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40683. {
  40684. front: {
  40685. height: math.unit(10, "feet"),
  40686. weight: math.unit(1500, "lb"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/miles-thestia/front.svg",
  40690. extra: 1812/1727,
  40691. bottom: 86/1898
  40692. }
  40693. },
  40694. back: {
  40695. height: math.unit(10, "feet"),
  40696. weight: math.unit(1500, "lb"),
  40697. name: "Back",
  40698. image: {
  40699. source: "./media/characters/miles-thestia/back.svg",
  40700. extra: 1799/1690,
  40701. bottom: 47/1846
  40702. }
  40703. },
  40704. frontNsfw: {
  40705. height: math.unit(10, "feet"),
  40706. weight: math.unit(1500, "lb"),
  40707. name: "Front (NSFW)",
  40708. image: {
  40709. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40710. extra: 1812/1727,
  40711. bottom: 86/1898
  40712. }
  40713. },
  40714. },
  40715. [
  40716. {
  40717. name: "Mini-Macro",
  40718. height: math.unit(10, "feet"),
  40719. default: true
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(25, "feet"),
  40728. name: "Front",
  40729. image: {
  40730. source: "./media/characters/titan-s-wulf/front.svg",
  40731. extra: 1560/1484,
  40732. bottom: 76/1636
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Smallest",
  40739. height: math.unit(25, "feet"),
  40740. default: true
  40741. },
  40742. {
  40743. name: "Normal",
  40744. height: math.unit(200, "feet")
  40745. },
  40746. {
  40747. name: "Macro",
  40748. height: math.unit(200000, "feet")
  40749. },
  40750. {
  40751. name: "Multiversal Original",
  40752. height: math.unit(10000, "multiverses")
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(8, "feet"),
  40761. weight: math.unit(553, "lb"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/tawendeh/front.svg",
  40765. extra: 2365/2268,
  40766. bottom: 83/2448
  40767. }
  40768. },
  40769. frontClothed: {
  40770. height: math.unit(8, "feet"),
  40771. weight: math.unit(553, "lb"),
  40772. name: "Front (Clothed)",
  40773. image: {
  40774. source: "./media/characters/tawendeh/front-clothed.svg",
  40775. extra: 2365/2268,
  40776. bottom: 83/2448
  40777. }
  40778. },
  40779. back: {
  40780. height: math.unit(8, "feet"),
  40781. weight: math.unit(553, "lb"),
  40782. name: "Back",
  40783. image: {
  40784. source: "./media/characters/tawendeh/back.svg",
  40785. extra: 2397/2294,
  40786. bottom: 42/2439
  40787. }
  40788. },
  40789. },
  40790. [
  40791. {
  40792. name: "Mortal Interaction",
  40793. height: math.unit(8, "feet"),
  40794. default: true
  40795. },
  40796. {
  40797. name: "Giant",
  40798. height: math.unit(80, "feet")
  40799. },
  40800. {
  40801. name: "Macro",
  40802. height: math.unit(800, "feet")
  40803. },
  40804. {
  40805. name: "Megamacro",
  40806. height: math.unit(8000, "feet")
  40807. },
  40808. {
  40809. name: "City-Crushing",
  40810. height: math.unit(24000, "feet")
  40811. },
  40812. {
  40813. name: "Mountain-Mashing",
  40814. height: math.unit(80000, "feet")
  40815. },
  40816. {
  40817. name: "Nation Nemesis",
  40818. height: math.unit(8e6, "feet")
  40819. },
  40820. {
  40821. name: "Continent Cracker",
  40822. height: math.unit(24e6, "feet")
  40823. },
  40824. {
  40825. name: "Earth-Eclipsing",
  40826. height: math.unit(2.4e8, "feet")
  40827. },
  40828. {
  40829. name: "Gas Giant Gulper",
  40830. height: math.unit(2.4e9, "feet")
  40831. },
  40832. {
  40833. name: "Sol-Swallowing",
  40834. height: math.unit(8e10, "feet")
  40835. },
  40836. {
  40837. name: "Galaxy Gulper",
  40838. height: math.unit(8, "galaxies")
  40839. },
  40840. {
  40841. name: "Cosmos Churner",
  40842. height: math.unit(8, "universes")
  40843. },
  40844. {
  40845. name: "Omnipotent Otter",
  40846. height: math.unit(80, "universes")
  40847. },
  40848. ]
  40849. ))
  40850. characterMakers.push(() => makeCharacter(
  40851. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40852. {
  40853. front: {
  40854. height: math.unit(2.6, "meters"),
  40855. weight: math.unit(900, "kg"),
  40856. name: "Front",
  40857. image: {
  40858. source: "./media/characters/neesha/front.svg",
  40859. extra: 1803/1653,
  40860. bottom: 128/1931
  40861. }
  40862. },
  40863. },
  40864. [
  40865. {
  40866. name: "Normal",
  40867. height: math.unit(2.6, "meters"),
  40868. default: true
  40869. },
  40870. {
  40871. name: "Macro",
  40872. height: math.unit(50, "meters")
  40873. },
  40874. ]
  40875. ))
  40876. characterMakers.push(() => makeCharacter(
  40877. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40878. {
  40879. front: {
  40880. height: math.unit(5, "feet"),
  40881. weight: math.unit(185, "lb"),
  40882. name: "Front",
  40883. image: {
  40884. source: "./media/characters/kyera/front.svg",
  40885. extra: 1875/1790,
  40886. bottom: 96/1971
  40887. }
  40888. },
  40889. },
  40890. [
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(5, "feet"),
  40894. default: true
  40895. },
  40896. ]
  40897. ))
  40898. characterMakers.push(() => makeCharacter(
  40899. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40900. {
  40901. front: {
  40902. height: math.unit(7 + 6/12, "feet"),
  40903. weight: math.unit(540, "lb"),
  40904. name: "Front",
  40905. image: {
  40906. source: "./media/characters/yuko/front.svg",
  40907. extra: 1282/1222,
  40908. bottom: 101/1383
  40909. }
  40910. },
  40911. frontClothed: {
  40912. height: math.unit(7 + 6/12, "feet"),
  40913. weight: math.unit(540, "lb"),
  40914. name: "Front (Clothed)",
  40915. image: {
  40916. source: "./media/characters/yuko/front-clothed.svg",
  40917. extra: 1282/1222,
  40918. bottom: 101/1383
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Normal",
  40925. height: math.unit(7 + 6/12, "feet"),
  40926. default: true
  40927. },
  40928. {
  40929. name: "Macro",
  40930. height: math.unit(26 + 9/12, "feet")
  40931. },
  40932. {
  40933. name: "Megamacro",
  40934. height: math.unit(300, "feet")
  40935. },
  40936. {
  40937. name: "Gigamacro",
  40938. height: math.unit(5000, "feet")
  40939. },
  40940. {
  40941. name: "Planetary",
  40942. height: math.unit(10000, "miles")
  40943. },
  40944. ]
  40945. ))
  40946. characterMakers.push(() => makeCharacter(
  40947. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40948. {
  40949. front: {
  40950. height: math.unit(8 + 2/12, "feet"),
  40951. weight: math.unit(600, "lb"),
  40952. name: "Front",
  40953. image: {
  40954. source: "./media/characters/deam-nitrel/front.svg",
  40955. extra: 1308/1234,
  40956. bottom: 125/1433
  40957. }
  40958. },
  40959. },
  40960. [
  40961. {
  40962. name: "Normal",
  40963. height: math.unit(8 + 2/12, "feet"),
  40964. default: true
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(6.1, "feet"),
  40973. weight: math.unit(180, "lb"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/skyress/front.svg",
  40977. extra: 1045/915,
  40978. bottom: 28/1073
  40979. }
  40980. },
  40981. maw: {
  40982. height: math.unit(1, "feet"),
  40983. name: "Maw",
  40984. image: {
  40985. source: "./media/characters/skyress/maw.svg"
  40986. }
  40987. },
  40988. },
  40989. [
  40990. {
  40991. name: "Normal",
  40992. height: math.unit(6.1, "feet"),
  40993. default: true
  40994. },
  40995. {
  40996. name: "Macro",
  40997. height: math.unit(200, "feet")
  40998. },
  40999. ]
  41000. ))
  41001. characterMakers.push(() => makeCharacter(
  41002. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41003. {
  41004. front: {
  41005. height: math.unit(4 + 2/12, "feet"),
  41006. weight: math.unit(40, "kg"),
  41007. name: "Front",
  41008. image: {
  41009. source: "./media/characters/amethyst-jones/front.svg",
  41010. extra: 1220/1150,
  41011. bottom: 101/1321
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Normal",
  41018. height: math.unit(4 + 2/12, "feet"),
  41019. default: true
  41020. },
  41021. ]
  41022. ))
  41023. characterMakers.push(() => makeCharacter(
  41024. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41025. {
  41026. front: {
  41027. height: math.unit(1.7, "m"),
  41028. weight: math.unit(135, "lb"),
  41029. name: "Front",
  41030. image: {
  41031. source: "./media/characters/jade/front.svg",
  41032. extra: 1818/1767,
  41033. bottom: 32/1850
  41034. }
  41035. },
  41036. back: {
  41037. height: math.unit(1.7, "m"),
  41038. weight: math.unit(135, "lb"),
  41039. name: "Back",
  41040. image: {
  41041. source: "./media/characters/jade/back.svg",
  41042. extra: 1869/1809,
  41043. bottom: 35/1904
  41044. }
  41045. },
  41046. hand: {
  41047. height: math.unit(0.24, "m"),
  41048. name: "Hand",
  41049. image: {
  41050. source: "./media/characters/jade/hand.svg"
  41051. }
  41052. },
  41053. foot: {
  41054. height: math.unit(0.263, "m"),
  41055. name: "Foot",
  41056. image: {
  41057. source: "./media/characters/jade/foot.svg"
  41058. }
  41059. },
  41060. dick: {
  41061. height: math.unit(0.47, "m"),
  41062. name: "Dick",
  41063. image: {
  41064. source: "./media/characters/jade/dick.svg"
  41065. }
  41066. },
  41067. },
  41068. [
  41069. {
  41070. name: "Micro",
  41071. height: math.unit(22, "cm")
  41072. },
  41073. {
  41074. name: "Normal",
  41075. height: math.unit(1.7, "m"),
  41076. default: true
  41077. },
  41078. {
  41079. name: "Macro",
  41080. height: math.unit(152, "m")
  41081. },
  41082. ]
  41083. ))
  41084. characterMakers.push(() => makeCharacter(
  41085. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41086. {
  41087. front: {
  41088. height: math.unit(100, "miles"),
  41089. weight: math.unit(20000, "tons"),
  41090. name: "Front",
  41091. image: {
  41092. source: "./media/characters/cookie/front.svg",
  41093. extra: 1125/1070,
  41094. bottom: 30/1155
  41095. }
  41096. },
  41097. },
  41098. [
  41099. {
  41100. name: "Big",
  41101. height: math.unit(50, "feet")
  41102. },
  41103. {
  41104. name: "Macro",
  41105. height: math.unit(100, "miles"),
  41106. default: true
  41107. },
  41108. {
  41109. name: "Megamacro",
  41110. height: math.unit(90000, "miles")
  41111. },
  41112. ]
  41113. ))
  41114. characterMakers.push(() => makeCharacter(
  41115. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41116. {
  41117. front: {
  41118. height: math.unit(6, "feet"),
  41119. weight: math.unit(145, "lb"),
  41120. name: "Front",
  41121. image: {
  41122. source: "./media/characters/farzian/front.svg",
  41123. extra: 1902/1693,
  41124. bottom: 108/2010
  41125. }
  41126. },
  41127. },
  41128. [
  41129. {
  41130. name: "Macro",
  41131. height: math.unit(500, "feet"),
  41132. default: true
  41133. },
  41134. ]
  41135. ))
  41136. characterMakers.push(() => makeCharacter(
  41137. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41138. {
  41139. front: {
  41140. height: math.unit(3 + 6/12, "feet"),
  41141. weight: math.unit(50, "lb"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/kimberly-tilson/front.svg",
  41145. extra: 1400/1322,
  41146. bottom: 36/1436
  41147. }
  41148. },
  41149. back: {
  41150. height: math.unit(3 + 6/12, "feet"),
  41151. weight: math.unit(50, "lb"),
  41152. name: "Back",
  41153. image: {
  41154. source: "./media/characters/kimberly-tilson/back.svg",
  41155. extra: 1370/1307,
  41156. bottom: 20/1390
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Normal",
  41163. height: math.unit(3 + 6/12, "feet"),
  41164. default: true
  41165. },
  41166. ]
  41167. ))
  41168. characterMakers.push(() => makeCharacter(
  41169. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41170. {
  41171. front: {
  41172. height: math.unit(1148, "feet"),
  41173. weight: math.unit(34057, "lb"),
  41174. name: "Front",
  41175. image: {
  41176. source: "./media/characters/harthos/front.svg",
  41177. extra: 1391/1339,
  41178. bottom: 13/1404
  41179. }
  41180. },
  41181. },
  41182. [
  41183. {
  41184. name: "Macro",
  41185. height: math.unit(1148, "feet"),
  41186. default: true
  41187. },
  41188. ]
  41189. ))
  41190. characterMakers.push(() => makeCharacter(
  41191. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41192. {
  41193. front: {
  41194. height: math.unit(15, "feet"),
  41195. name: "Front",
  41196. image: {
  41197. source: "./media/characters/hypatia/front.svg",
  41198. extra: 1653/1591,
  41199. bottom: 79/1732
  41200. }
  41201. },
  41202. },
  41203. [
  41204. {
  41205. name: "Normal",
  41206. height: math.unit(15, "feet")
  41207. },
  41208. {
  41209. name: "Small",
  41210. height: math.unit(300, "feet")
  41211. },
  41212. {
  41213. name: "Macro",
  41214. height: math.unit(2500, "feet"),
  41215. default: true
  41216. },
  41217. {
  41218. name: "Mega Macro",
  41219. height: math.unit(1500, "miles")
  41220. },
  41221. {
  41222. name: "Giga Macro",
  41223. height: math.unit(1.5e6, "miles")
  41224. },
  41225. ]
  41226. ))
  41227. characterMakers.push(() => makeCharacter(
  41228. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41229. {
  41230. front: {
  41231. height: math.unit(6, "feet"),
  41232. weight: math.unit(200, "lb"),
  41233. name: "Front",
  41234. image: {
  41235. source: "./media/characters/wulver/front.svg",
  41236. extra: 1724/1632,
  41237. bottom: 130/1854
  41238. }
  41239. },
  41240. frontNsfw: {
  41241. height: math.unit(6, "feet"),
  41242. weight: math.unit(200, "lb"),
  41243. name: "Front (NSFW)",
  41244. image: {
  41245. source: "./media/characters/wulver/front-nsfw.svg",
  41246. extra: 1724/1632,
  41247. bottom: 130/1854
  41248. }
  41249. },
  41250. },
  41251. [
  41252. {
  41253. name: "Human-Sized",
  41254. height: math.unit(6, "feet")
  41255. },
  41256. {
  41257. name: "Normal",
  41258. height: math.unit(4, "meters"),
  41259. default: true
  41260. },
  41261. {
  41262. name: "Large",
  41263. height: math.unit(6, "m")
  41264. },
  41265. ]
  41266. ))
  41267. characterMakers.push(() => makeCharacter(
  41268. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41269. {
  41270. front: {
  41271. height: math.unit(7, "feet"),
  41272. name: "Front",
  41273. image: {
  41274. source: "./media/characters/maru/front.svg",
  41275. extra: 1595/1570,
  41276. bottom: 0/1595
  41277. }
  41278. },
  41279. },
  41280. [
  41281. {
  41282. name: "Normal",
  41283. height: math.unit(7, "feet"),
  41284. default: true
  41285. },
  41286. {
  41287. name: "Macro",
  41288. height: math.unit(700, "feet")
  41289. },
  41290. {
  41291. name: "Mega Macro",
  41292. height: math.unit(25, "miles")
  41293. },
  41294. ]
  41295. ))
  41296. characterMakers.push(() => makeCharacter(
  41297. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41298. {
  41299. front: {
  41300. height: math.unit(6, "feet"),
  41301. weight: math.unit(170, "lb"),
  41302. name: "Front",
  41303. image: {
  41304. source: "./media/characters/xenon/front.svg",
  41305. extra: 1376/1305,
  41306. bottom: 56/1432
  41307. }
  41308. },
  41309. back: {
  41310. height: math.unit(6, "feet"),
  41311. weight: math.unit(170, "lb"),
  41312. name: "Back",
  41313. image: {
  41314. source: "./media/characters/xenon/back.svg",
  41315. extra: 1328/1259,
  41316. bottom: 95/1423
  41317. }
  41318. },
  41319. maw: {
  41320. height: math.unit(0.52, "feet"),
  41321. name: "Maw",
  41322. image: {
  41323. source: "./media/characters/xenon/maw.svg"
  41324. }
  41325. },
  41326. hand: {
  41327. height: math.unit(0.82, "feet"),
  41328. name: "Hand",
  41329. image: {
  41330. source: "./media/characters/xenon/hand.svg"
  41331. }
  41332. },
  41333. foot: {
  41334. height: math.unit(1.13, "feet"),
  41335. name: "Foot",
  41336. image: {
  41337. source: "./media/characters/xenon/foot.svg"
  41338. }
  41339. },
  41340. },
  41341. [
  41342. {
  41343. name: "Micro",
  41344. height: math.unit(0.8, "inches")
  41345. },
  41346. {
  41347. name: "Normal",
  41348. height: math.unit(6, "feet")
  41349. },
  41350. {
  41351. name: "Macro",
  41352. height: math.unit(50, "feet"),
  41353. default: true
  41354. },
  41355. {
  41356. name: "Macro+",
  41357. height: math.unit(250, "feet")
  41358. },
  41359. {
  41360. name: "Megamacro",
  41361. height: math.unit(1500, "feet")
  41362. },
  41363. ]
  41364. ))
  41365. characterMakers.push(() => makeCharacter(
  41366. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41367. {
  41368. front: {
  41369. height: math.unit(7 + 5/12, "feet"),
  41370. name: "Front",
  41371. image: {
  41372. source: "./media/characters/zane/front.svg",
  41373. extra: 1260/1203,
  41374. bottom: 94/1354
  41375. }
  41376. },
  41377. back: {
  41378. height: math.unit(5.05, "feet"),
  41379. name: "Back",
  41380. image: {
  41381. source: "./media/characters/zane/back.svg",
  41382. extra: 893/829,
  41383. bottom: 30/923
  41384. }
  41385. },
  41386. werewolf: {
  41387. height: math.unit(11, "feet"),
  41388. name: "Werewolf",
  41389. image: {
  41390. source: "./media/characters/zane/werewolf.svg",
  41391. extra: 1383/1323,
  41392. bottom: 89/1472
  41393. }
  41394. },
  41395. foot: {
  41396. height: math.unit(1.46, "feet"),
  41397. name: "Foot",
  41398. image: {
  41399. source: "./media/characters/zane/foot.svg"
  41400. }
  41401. },
  41402. footFront: {
  41403. height: math.unit(0.784, "feet"),
  41404. name: "Foot (Front)",
  41405. image: {
  41406. source: "./media/characters/zane/foot-front.svg"
  41407. }
  41408. },
  41409. dick: {
  41410. height: math.unit(1.95, "feet"),
  41411. name: "Dick",
  41412. image: {
  41413. source: "./media/characters/zane/dick.svg"
  41414. }
  41415. },
  41416. dickWerewolf: {
  41417. height: math.unit(3.77, "feet"),
  41418. name: "Dick (Werewolf)",
  41419. image: {
  41420. source: "./media/characters/zane/dick.svg"
  41421. }
  41422. },
  41423. },
  41424. [
  41425. {
  41426. name: "Normal",
  41427. height: math.unit(7 + 5/12, "feet"),
  41428. default: true
  41429. },
  41430. ]
  41431. ))
  41432. characterMakers.push(() => makeCharacter(
  41433. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41434. {
  41435. front: {
  41436. height: math.unit(6 + 2/12, "feet"),
  41437. weight: math.unit(284, "lb"),
  41438. name: "Front",
  41439. image: {
  41440. source: "./media/characters/benni-desparque/front.svg",
  41441. extra: 1353/1126,
  41442. bottom: 69/1422
  41443. }
  41444. },
  41445. },
  41446. [
  41447. {
  41448. name: "Civilian",
  41449. height: math.unit(6 + 2/12, "feet")
  41450. },
  41451. {
  41452. name: "Normal",
  41453. height: math.unit(98, "feet"),
  41454. default: true
  41455. },
  41456. {
  41457. name: "Kaiju Fighter",
  41458. height: math.unit(268, "feet")
  41459. },
  41460. ]
  41461. ))
  41462. characterMakers.push(() => makeCharacter(
  41463. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41464. {
  41465. front: {
  41466. height: math.unit(5, "feet"),
  41467. weight: math.unit(105, "lb"),
  41468. name: "Front",
  41469. image: {
  41470. source: "./media/characters/maxine/front.svg",
  41471. extra: 1386/1250,
  41472. bottom: 71/1457
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(5, "feet"),
  41480. default: true
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41486. {
  41487. front: {
  41488. height: math.unit(11 + 7/12, "feet"),
  41489. weight: math.unit(9576, "lb"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/scaly/front.svg",
  41493. extra: 888/867,
  41494. bottom: 36/924
  41495. }
  41496. },
  41497. },
  41498. [
  41499. {
  41500. name: "Normal",
  41501. height: math.unit(11 + 7/12, "feet"),
  41502. default: true
  41503. },
  41504. ]
  41505. ))
  41506. characterMakers.push(() => makeCharacter(
  41507. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41508. {
  41509. front: {
  41510. height: math.unit(6 + 3/12, "feet"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/saelria/front.svg",
  41514. extra: 1243/1138,
  41515. bottom: 46/1289
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Micro",
  41522. height: math.unit(6, "inches"),
  41523. },
  41524. {
  41525. name: "Normal",
  41526. height: math.unit(6 + 3/12, "feet"),
  41527. default: true
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(25, "feet")
  41532. },
  41533. ]
  41534. ))
  41535. characterMakers.push(() => makeCharacter(
  41536. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41537. {
  41538. front: {
  41539. height: math.unit(80, "meters"),
  41540. weight: math.unit(7000, "tonnes"),
  41541. name: "Front",
  41542. image: {
  41543. source: "./media/characters/tef/front.svg",
  41544. extra: 2036/1991,
  41545. bottom: 54/2090
  41546. }
  41547. },
  41548. back: {
  41549. height: math.unit(80, "meters"),
  41550. weight: math.unit(7000, "tonnes"),
  41551. name: "Back",
  41552. image: {
  41553. source: "./media/characters/tef/back.svg",
  41554. extra: 2036/1991,
  41555. bottom: 54/2090
  41556. }
  41557. },
  41558. },
  41559. [
  41560. {
  41561. name: "Macro",
  41562. height: math.unit(80, "meters"),
  41563. default: true
  41564. },
  41565. ]
  41566. ))
  41567. characterMakers.push(() => makeCharacter(
  41568. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41569. {
  41570. front: {
  41571. height: math.unit(13, "feet"),
  41572. weight: math.unit(6, "tons"),
  41573. name: "Front",
  41574. image: {
  41575. source: "./media/characters/rover/front.svg",
  41576. extra: 1233/1156,
  41577. bottom: 50/1283
  41578. }
  41579. },
  41580. back: {
  41581. height: math.unit(13, "feet"),
  41582. weight: math.unit(6, "tons"),
  41583. name: "Back",
  41584. image: {
  41585. source: "./media/characters/rover/back.svg",
  41586. extra: 1327/1258,
  41587. bottom: 39/1366
  41588. }
  41589. },
  41590. },
  41591. [
  41592. {
  41593. name: "Normal",
  41594. height: math.unit(13, "feet"),
  41595. default: true
  41596. },
  41597. {
  41598. name: "Macro",
  41599. height: math.unit(1300, "feet")
  41600. },
  41601. {
  41602. name: "Megamacro",
  41603. height: math.unit(1300, "miles")
  41604. },
  41605. {
  41606. name: "Gigamacro",
  41607. height: math.unit(1300000, "miles")
  41608. },
  41609. ]
  41610. ))
  41611. characterMakers.push(() => makeCharacter(
  41612. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41613. {
  41614. front: {
  41615. height: math.unit(6, "feet"),
  41616. weight: math.unit(150, "lb"),
  41617. name: "Front",
  41618. image: {
  41619. source: "./media/characters/ariz/front.svg",
  41620. extra: 1401/1346,
  41621. bottom: 5/1406
  41622. }
  41623. },
  41624. },
  41625. [
  41626. {
  41627. name: "Normal",
  41628. height: math.unit(10, "feet"),
  41629. default: true
  41630. },
  41631. ]
  41632. ))
  41633. characterMakers.push(() => makeCharacter(
  41634. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41635. {
  41636. front: {
  41637. height: math.unit(6, "feet"),
  41638. weight: math.unit(140, "lb"),
  41639. name: "Front",
  41640. image: {
  41641. source: "./media/characters/sigrun/front.svg",
  41642. extra: 1418/1359,
  41643. bottom: 27/1445
  41644. }
  41645. },
  41646. },
  41647. [
  41648. {
  41649. name: "Macro",
  41650. height: math.unit(35, "feet"),
  41651. default: true
  41652. },
  41653. ]
  41654. ))
  41655. characterMakers.push(() => makeCharacter(
  41656. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41657. {
  41658. front: {
  41659. height: math.unit(6, "feet"),
  41660. weight: math.unit(150, "lb"),
  41661. name: "Front",
  41662. image: {
  41663. source: "./media/characters/numin/front.svg",
  41664. extra: 1433/1388,
  41665. bottom: 12/1445
  41666. }
  41667. },
  41668. },
  41669. [
  41670. {
  41671. name: "Macro",
  41672. height: math.unit(21.5, "km"),
  41673. default: true
  41674. },
  41675. ]
  41676. ))
  41677. characterMakers.push(() => makeCharacter(
  41678. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41679. {
  41680. front: {
  41681. height: math.unit(6, "feet"),
  41682. weight: math.unit(463, "lb"),
  41683. name: "Front",
  41684. image: {
  41685. source: "./media/characters/melwa/front.svg",
  41686. extra: 1307/1248,
  41687. bottom: 93/1400
  41688. }
  41689. },
  41690. },
  41691. [
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(50, "meters"),
  41695. default: true
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(325, "feet"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/zorkaiju/front.svg",
  41707. extra: 1955/1814,
  41708. bottom: 40/1995
  41709. }
  41710. },
  41711. frontExtended: {
  41712. height: math.unit(325, "feet"),
  41713. name: "Front (Extended)",
  41714. image: {
  41715. source: "./media/characters/zorkaiju/front-extended.svg",
  41716. extra: 1955/1814,
  41717. bottom: 40/1995
  41718. }
  41719. },
  41720. side: {
  41721. height: math.unit(325, "feet"),
  41722. name: "Side",
  41723. image: {
  41724. source: "./media/characters/zorkaiju/side.svg",
  41725. extra: 1495/1396,
  41726. bottom: 17/1512
  41727. }
  41728. },
  41729. sideExtended: {
  41730. height: math.unit(325, "feet"),
  41731. name: "Side (Extended)",
  41732. image: {
  41733. source: "./media/characters/zorkaiju/side-extended.svg",
  41734. extra: 1495/1396,
  41735. bottom: 17/1512
  41736. }
  41737. },
  41738. back: {
  41739. height: math.unit(325, "feet"),
  41740. name: "Back",
  41741. image: {
  41742. source: "./media/characters/zorkaiju/back.svg",
  41743. extra: 1959/1821,
  41744. bottom: 31/1990
  41745. }
  41746. },
  41747. backExtended: {
  41748. height: math.unit(325, "feet"),
  41749. name: "Back (Extended)",
  41750. image: {
  41751. source: "./media/characters/zorkaiju/back-extended.svg",
  41752. extra: 1959/1821,
  41753. bottom: 31/1990
  41754. }
  41755. },
  41756. hand: {
  41757. height: math.unit(58.4, "feet"),
  41758. name: "Hand",
  41759. image: {
  41760. source: "./media/characters/zorkaiju/hand.svg"
  41761. }
  41762. },
  41763. handExtended: {
  41764. height: math.unit(61.4, "feet"),
  41765. name: "Hand (Extended)",
  41766. image: {
  41767. source: "./media/characters/zorkaiju/hand-extended.svg"
  41768. }
  41769. },
  41770. foot: {
  41771. height: math.unit(95, "feet"),
  41772. name: "Foot",
  41773. image: {
  41774. source: "./media/characters/zorkaiju/foot.svg"
  41775. }
  41776. },
  41777. leftArm: {
  41778. height: math.unit(59, "feet"),
  41779. name: "Left Arm",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/left-arm.svg"
  41782. }
  41783. },
  41784. rightArm: {
  41785. height: math.unit(59, "feet"),
  41786. name: "Right Arm",
  41787. image: {
  41788. source: "./media/characters/zorkaiju/right-arm.svg"
  41789. }
  41790. },
  41791. leftArmExtended: {
  41792. height: math.unit(59 * 1.033546, "feet"),
  41793. name: "Left Arm (Extended)",
  41794. image: {
  41795. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41796. }
  41797. },
  41798. rightArmExtended: {
  41799. height: math.unit(59 * 1.0496, "feet"),
  41800. name: "Right Arm (Extended)",
  41801. image: {
  41802. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41803. }
  41804. },
  41805. tail: {
  41806. height: math.unit(104, "feet"),
  41807. name: "Tail",
  41808. image: {
  41809. source: "./media/characters/zorkaiju/tail.svg"
  41810. }
  41811. },
  41812. tailExtended: {
  41813. height: math.unit(104, "feet"),
  41814. name: "Tail (Extended)",
  41815. image: {
  41816. source: "./media/characters/zorkaiju/tail-extended.svg"
  41817. }
  41818. },
  41819. tailBottom: {
  41820. height: math.unit(104, "feet"),
  41821. name: "Tail Bottom",
  41822. image: {
  41823. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41824. }
  41825. },
  41826. crystal: {
  41827. height: math.unit(27.54, "feet"),
  41828. name: "Crystal",
  41829. image: {
  41830. source: "./media/characters/zorkaiju/crystal.svg"
  41831. }
  41832. },
  41833. },
  41834. [
  41835. {
  41836. name: "Kaiju",
  41837. height: math.unit(325, "feet"),
  41838. default: true
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(6 + 1/12, "feet"),
  41847. weight: math.unit(115, "lb"),
  41848. name: "Front",
  41849. image: {
  41850. source: "./media/characters/bailey-belfry/front.svg",
  41851. extra: 1240/1121,
  41852. bottom: 101/1341
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(6 + 1/12, "feet"),
  41860. default: true
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41866. {
  41867. side: {
  41868. height: math.unit(4, "meters"),
  41869. weight: math.unit(250, "kg"),
  41870. name: "Side",
  41871. image: {
  41872. source: "./media/characters/blacky/side.svg",
  41873. extra: 1027/919,
  41874. bottom: 43/1070
  41875. }
  41876. },
  41877. maw: {
  41878. height: math.unit(1, "meters"),
  41879. name: "Maw",
  41880. image: {
  41881. source: "./media/characters/blacky/maw.svg"
  41882. }
  41883. },
  41884. paw: {
  41885. height: math.unit(1, "meters"),
  41886. name: "Paw",
  41887. image: {
  41888. source: "./media/characters/blacky/paw.svg"
  41889. }
  41890. },
  41891. },
  41892. [
  41893. {
  41894. name: "Normal",
  41895. height: math.unit(4, "meters"),
  41896. default: true
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(170, "cm"),
  41905. weight: math.unit(66, "kg"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/thux-ei/front.svg",
  41909. extra: 1109/1011,
  41910. bottom: 8/1117
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Normal",
  41917. height: math.unit(170, "cm"),
  41918. default: true
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(5, "feet"),
  41927. weight: math.unit(120, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/roxanne-voltaire/front.svg",
  41931. extra: 1901/1779,
  41932. bottom: 53/1954
  41933. }
  41934. },
  41935. },
  41936. [
  41937. {
  41938. name: "Normal",
  41939. height: math.unit(5, "feet"),
  41940. default: true
  41941. },
  41942. {
  41943. name: "Giant",
  41944. height: math.unit(50, "feet")
  41945. },
  41946. {
  41947. name: "Titan",
  41948. height: math.unit(500, "feet")
  41949. },
  41950. {
  41951. name: "Macro",
  41952. height: math.unit(5000, "feet")
  41953. },
  41954. {
  41955. name: "Megamacro",
  41956. height: math.unit(50000, "feet")
  41957. },
  41958. {
  41959. name: "Gigamacro",
  41960. height: math.unit(500000, "feet")
  41961. },
  41962. {
  41963. name: "Teramacro",
  41964. height: math.unit(5e6, "feet")
  41965. },
  41966. ]
  41967. ))
  41968. characterMakers.push(() => makeCharacter(
  41969. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41970. {
  41971. front: {
  41972. height: math.unit(6 + 2/12, "feet"),
  41973. name: "Front",
  41974. image: {
  41975. source: "./media/characters/squeaks/front.svg",
  41976. extra: 1823/1768,
  41977. bottom: 138/1961
  41978. }
  41979. },
  41980. },
  41981. [
  41982. {
  41983. name: "Micro",
  41984. height: math.unit(0.5, "inches")
  41985. },
  41986. {
  41987. name: "Normal",
  41988. height: math.unit(6 + 2/12, "feet"),
  41989. default: true
  41990. },
  41991. {
  41992. name: "Macro",
  41993. height: math.unit(600, "feet")
  41994. },
  41995. ]
  41996. ))
  41997. characterMakers.push(() => makeCharacter(
  41998. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41999. {
  42000. front: {
  42001. height: math.unit(1.72, "meters"),
  42002. name: "Front",
  42003. image: {
  42004. source: "./media/characters/archinger/front.svg",
  42005. extra: 1861/1675,
  42006. bottom: 125/1986
  42007. }
  42008. },
  42009. back: {
  42010. height: math.unit(1.72, "meters"),
  42011. name: "Back",
  42012. image: {
  42013. source: "./media/characters/archinger/back.svg",
  42014. extra: 1844/1701,
  42015. bottom: 104/1948
  42016. }
  42017. },
  42018. cock: {
  42019. height: math.unit(0.59, "feet"),
  42020. name: "Cock",
  42021. image: {
  42022. source: "./media/characters/archinger/cock.svg"
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Normal",
  42029. height: math.unit(1.72, "meters"),
  42030. default: true
  42031. },
  42032. {
  42033. name: "Macro",
  42034. height: math.unit(84, "meters")
  42035. },
  42036. {
  42037. name: "Macro+",
  42038. height: math.unit(112, "meters")
  42039. },
  42040. {
  42041. name: "Macro++",
  42042. height: math.unit(960, "meters")
  42043. },
  42044. {
  42045. name: "Macro+++",
  42046. height: math.unit(4, "km")
  42047. },
  42048. {
  42049. name: "Macro++++",
  42050. height: math.unit(48, "km")
  42051. },
  42052. {
  42053. name: "Macro+++++",
  42054. height: math.unit(4500, "km")
  42055. },
  42056. ]
  42057. ))
  42058. characterMakers.push(() => makeCharacter(
  42059. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42060. {
  42061. front: {
  42062. height: math.unit(5 + 5/12, "feet"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/alsnapz/front.svg",
  42066. extra: 1157/1065,
  42067. bottom: 42/1199
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(5 + 5/12, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42081. {
  42082. side: {
  42083. height: math.unit(3.2, "earths"),
  42084. name: "Side",
  42085. image: {
  42086. source: "./media/characters/mag/side.svg",
  42087. extra: 1331/1008,
  42088. bottom: 52/1383
  42089. }
  42090. },
  42091. wing: {
  42092. height: math.unit(1.94, "earths"),
  42093. name: "Wing",
  42094. image: {
  42095. source: "./media/characters/mag/wing.svg"
  42096. }
  42097. },
  42098. dick: {
  42099. height: math.unit(1.8, "earths"),
  42100. name: "Dick",
  42101. image: {
  42102. source: "./media/characters/mag/dick.svg"
  42103. }
  42104. },
  42105. ass: {
  42106. height: math.unit(1.33, "earths"),
  42107. name: "Ass",
  42108. image: {
  42109. source: "./media/characters/mag/ass.svg"
  42110. }
  42111. },
  42112. head: {
  42113. height: math.unit(1.1, "earths"),
  42114. name: "Head",
  42115. image: {
  42116. source: "./media/characters/mag/head.svg"
  42117. }
  42118. },
  42119. maw: {
  42120. height: math.unit(1.62, "earths"),
  42121. name: "Maw",
  42122. image: {
  42123. source: "./media/characters/mag/maw.svg"
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Small",
  42130. height: math.unit(162, "feet")
  42131. },
  42132. {
  42133. name: "Normal",
  42134. height: math.unit(3.2, "earths"),
  42135. default: true
  42136. },
  42137. ]
  42138. ))
  42139. characterMakers.push(() => makeCharacter(
  42140. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42141. {
  42142. front: {
  42143. height: math.unit(512, "feet"),
  42144. weight: math.unit(63509, "tonnes"),
  42145. name: "Front",
  42146. image: {
  42147. source: "./media/characters/vorrel-harroc/front.svg",
  42148. extra: 1075/1063,
  42149. bottom: 62/1137
  42150. }
  42151. },
  42152. },
  42153. [
  42154. {
  42155. name: "Normal",
  42156. height: math.unit(10, "feet")
  42157. },
  42158. {
  42159. name: "Macro",
  42160. height: math.unit(512, "feet"),
  42161. default: true
  42162. },
  42163. {
  42164. name: "Megamacro",
  42165. height: math.unit(256, "miles")
  42166. },
  42167. {
  42168. name: "Gigamacro",
  42169. height: math.unit(4096, "miles")
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42175. {
  42176. side: {
  42177. height: math.unit(50, "feet"),
  42178. name: "Side",
  42179. image: {
  42180. source: "./media/characters/froimar/side.svg",
  42181. extra: 855/638,
  42182. bottom: 99/954
  42183. }
  42184. },
  42185. },
  42186. [
  42187. {
  42188. name: "Macro",
  42189. height: math.unit(50, "feet"),
  42190. default: true
  42191. },
  42192. ]
  42193. ))
  42194. characterMakers.push(() => makeCharacter(
  42195. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42196. {
  42197. front: {
  42198. height: math.unit(210, "miles"),
  42199. name: "Front",
  42200. image: {
  42201. source: "./media/characters/timothy/front.svg",
  42202. extra: 1007/943,
  42203. bottom: 62/1069
  42204. }
  42205. },
  42206. frontSkirt: {
  42207. height: math.unit(210, "miles"),
  42208. name: "Front (Skirt)",
  42209. image: {
  42210. source: "./media/characters/timothy/front-skirt.svg",
  42211. extra: 1007/943,
  42212. bottom: 62/1069
  42213. }
  42214. },
  42215. frontCoat: {
  42216. height: math.unit(210, "miles"),
  42217. name: "Front (Coat)",
  42218. image: {
  42219. source: "./media/characters/timothy/front-coat.svg",
  42220. extra: 1007/943,
  42221. bottom: 62/1069
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Macro",
  42228. height: math.unit(210, "miles"),
  42229. default: true
  42230. },
  42231. {
  42232. name: "Megamacro",
  42233. height: math.unit(210000, "miles")
  42234. },
  42235. ]
  42236. ))
  42237. characterMakers.push(() => makeCharacter(
  42238. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42239. {
  42240. front: {
  42241. height: math.unit(188, "feet"),
  42242. name: "Front",
  42243. image: {
  42244. source: "./media/characters/pyotr/front.svg",
  42245. extra: 1912/1826,
  42246. bottom: 18/1930
  42247. }
  42248. },
  42249. },
  42250. [
  42251. {
  42252. name: "Macro",
  42253. height: math.unit(188, "feet"),
  42254. default: true
  42255. },
  42256. {
  42257. name: "Megamacro",
  42258. height: math.unit(8, "miles")
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42264. {
  42265. side: {
  42266. height: math.unit(10, "feet"),
  42267. weight: math.unit(4500, "lb"),
  42268. name: "Side",
  42269. image: {
  42270. source: "./media/characters/ackart/side.svg",
  42271. extra: 1776/1668,
  42272. bottom: 116/1892
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(10, "feet"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42286. {
  42287. side: {
  42288. height: math.unit(21, "feet"),
  42289. name: "Side",
  42290. image: {
  42291. source: "./media/characters/nolow/side.svg",
  42292. extra: 1484/1434,
  42293. bottom: 85/1569
  42294. }
  42295. },
  42296. sideErect: {
  42297. height: math.unit(21, "feet"),
  42298. name: "Side-erect",
  42299. image: {
  42300. source: "./media/characters/nolow/side-erect.svg",
  42301. extra: 1484/1434,
  42302. bottom: 85/1569
  42303. }
  42304. },
  42305. },
  42306. [
  42307. {
  42308. name: "Regular",
  42309. height: math.unit(12, "feet")
  42310. },
  42311. {
  42312. name: "Big Chee",
  42313. height: math.unit(21, "feet"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42320. {
  42321. front: {
  42322. height: math.unit(7, "feet"),
  42323. weight: math.unit(250, "lb"),
  42324. name: "Front",
  42325. image: {
  42326. source: "./media/characters/nines/front.svg",
  42327. extra: 1741/1607,
  42328. bottom: 41/1782
  42329. }
  42330. },
  42331. side: {
  42332. height: math.unit(7, "feet"),
  42333. weight: math.unit(250, "lb"),
  42334. name: "Side",
  42335. image: {
  42336. source: "./media/characters/nines/side.svg",
  42337. extra: 1854/1735,
  42338. bottom: 93/1947
  42339. }
  42340. },
  42341. back: {
  42342. height: math.unit(7, "feet"),
  42343. weight: math.unit(250, "lb"),
  42344. name: "Back",
  42345. image: {
  42346. source: "./media/characters/nines/back.svg",
  42347. extra: 1748/1615,
  42348. bottom: 20/1768
  42349. }
  42350. },
  42351. },
  42352. [
  42353. {
  42354. name: "Megamacro",
  42355. height: math.unit(99, "km"),
  42356. default: true
  42357. },
  42358. ]
  42359. ))
  42360. characterMakers.push(() => makeCharacter(
  42361. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42362. {
  42363. front: {
  42364. height: math.unit(5 + 10/12, "feet"),
  42365. weight: math.unit(210, "lb"),
  42366. name: "Front",
  42367. image: {
  42368. source: "./media/characters/zenith/front.svg",
  42369. extra: 1531/1452,
  42370. bottom: 198/1729
  42371. }
  42372. },
  42373. back: {
  42374. height: math.unit(5 + 10/12, "feet"),
  42375. weight: math.unit(210, "lb"),
  42376. name: "Back",
  42377. image: {
  42378. source: "./media/characters/zenith/back.svg",
  42379. extra: 1571/1487,
  42380. bottom: 75/1646
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(5 + 10/12, "feet"),
  42388. default: true
  42389. }
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(4, "feet"),
  42397. weight: math.unit(60, "lb"),
  42398. name: "Front",
  42399. image: {
  42400. source: "./media/characters/jasper/front.svg",
  42401. extra: 1450/1379,
  42402. bottom: 19/1469
  42403. }
  42404. },
  42405. },
  42406. [
  42407. {
  42408. name: "Normal",
  42409. height: math.unit(4, "feet"),
  42410. default: true
  42411. },
  42412. ]
  42413. ))
  42414. characterMakers.push(() => makeCharacter(
  42415. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42416. {
  42417. front: {
  42418. height: math.unit(6 + 5/12, "feet"),
  42419. weight: math.unit(290, "lb"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/tiberius-thyben/front.svg",
  42423. extra: 757/739,
  42424. bottom: 39/796
  42425. }
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Micro",
  42431. height: math.unit(1.5, "inches")
  42432. },
  42433. {
  42434. name: "Normal",
  42435. height: math.unit(6 + 5/12, "feet"),
  42436. default: true
  42437. },
  42438. {
  42439. name: "Macro",
  42440. height: math.unit(300, "feet")
  42441. },
  42442. ]
  42443. ))
  42444. characterMakers.push(() => makeCharacter(
  42445. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42446. {
  42447. front: {
  42448. height: math.unit(5 + 6/12, "feet"),
  42449. weight: math.unit(60, "kg"),
  42450. name: "Front",
  42451. image: {
  42452. source: "./media/characters/sabre/front.svg",
  42453. extra: 738/671,
  42454. bottom: 27/765
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Teeny",
  42461. height: math.unit(2, "inches")
  42462. },
  42463. {
  42464. name: "Smol",
  42465. height: math.unit(8, "inches")
  42466. },
  42467. {
  42468. name: "Normal",
  42469. height: math.unit(5 + 6/12, "feet"),
  42470. default: true
  42471. },
  42472. {
  42473. name: "Mini-Macro",
  42474. height: math.unit(15, "feet")
  42475. },
  42476. {
  42477. name: "Macro",
  42478. height: math.unit(50, "feet")
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(6 + 4/12, "feet"),
  42487. weight: math.unit(170, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/charlie/front.svg",
  42491. extra: 1348/1228,
  42492. bottom: 15/1363
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(1700, "meters"),
  42500. default: true
  42501. },
  42502. {
  42503. name: "MegaMacro",
  42504. height: math.unit(20400, "meters")
  42505. },
  42506. ]
  42507. ))
  42508. characterMakers.push(() => makeCharacter(
  42509. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42510. {
  42511. front: {
  42512. height: math.unit(6 + 3/12, "feet"),
  42513. weight: math.unit(185, "lb"),
  42514. name: "Front",
  42515. image: {
  42516. source: "./media/characters/susan-grant/front.svg",
  42517. extra: 1351/1327,
  42518. bottom: 26/1377
  42519. }
  42520. },
  42521. },
  42522. [
  42523. {
  42524. name: "Normal",
  42525. height: math.unit(6 + 3/12, "feet"),
  42526. default: true
  42527. },
  42528. {
  42529. name: "Macro",
  42530. height: math.unit(225, "feet")
  42531. },
  42532. {
  42533. name: "Macro+",
  42534. height: math.unit(900, "feet")
  42535. },
  42536. {
  42537. name: "MegaMacro",
  42538. height: math.unit(14400, "feet")
  42539. },
  42540. ]
  42541. ))
  42542. characterMakers.push(() => makeCharacter(
  42543. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42544. {
  42545. front: {
  42546. height: math.unit(5 + 4/12, "feet"),
  42547. weight: math.unit(110, "lb"),
  42548. name: "Front",
  42549. image: {
  42550. source: "./media/characters/axel-isanov/front.svg",
  42551. extra: 1096/1065,
  42552. bottom: 13/1109
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Normal",
  42559. height: math.unit(5 + 4/12, "feet"),
  42560. default: true
  42561. },
  42562. ]
  42563. ))
  42564. characterMakers.push(() => makeCharacter(
  42565. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42566. {
  42567. front: {
  42568. height: math.unit(9, "feet"),
  42569. weight: math.unit(467, "lb"),
  42570. name: "Front",
  42571. image: {
  42572. source: "./media/characters/necahual/front.svg",
  42573. extra: 920/873,
  42574. bottom: 26/946
  42575. }
  42576. },
  42577. back: {
  42578. height: math.unit(9, "feet"),
  42579. weight: math.unit(467, "lb"),
  42580. name: "Back",
  42581. image: {
  42582. source: "./media/characters/necahual/back.svg",
  42583. extra: 930/884,
  42584. bottom: 16/946
  42585. }
  42586. },
  42587. frontUnderwear: {
  42588. height: math.unit(9, "feet"),
  42589. weight: math.unit(467, "lb"),
  42590. name: "Front (Underwear)",
  42591. image: {
  42592. source: "./media/characters/necahual/front-underwear.svg",
  42593. extra: 920/873,
  42594. bottom: 26/946
  42595. }
  42596. },
  42597. frontDressed: {
  42598. height: math.unit(9, "feet"),
  42599. weight: math.unit(467, "lb"),
  42600. name: "Front (Dressed)",
  42601. image: {
  42602. source: "./media/characters/necahual/front-dressed.svg",
  42603. extra: 920/873,
  42604. bottom: 26/946
  42605. }
  42606. },
  42607. },
  42608. [
  42609. {
  42610. name: "Comprsesed",
  42611. height: math.unit(9, "feet")
  42612. },
  42613. {
  42614. name: "Natural",
  42615. height: math.unit(15, "feet"),
  42616. default: true
  42617. },
  42618. {
  42619. name: "Boosted",
  42620. height: math.unit(50, "feet")
  42621. },
  42622. {
  42623. name: "Boosted+",
  42624. height: math.unit(150, "feet")
  42625. },
  42626. {
  42627. name: "Max",
  42628. height: math.unit(500, "feet")
  42629. },
  42630. ]
  42631. ))
  42632. characterMakers.push(() => makeCharacter(
  42633. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42634. {
  42635. front: {
  42636. height: math.unit(22 + 1/12, "feet"),
  42637. weight: math.unit(3200, "lb"),
  42638. name: "Front",
  42639. image: {
  42640. source: "./media/characters/theo-acacia/front.svg",
  42641. extra: 1796/1741,
  42642. bottom: 83/1879
  42643. }
  42644. },
  42645. frontUnderwear: {
  42646. height: math.unit(22 + 1/12, "feet"),
  42647. weight: math.unit(3200, "lb"),
  42648. name: "Front (Underwear)",
  42649. image: {
  42650. source: "./media/characters/theo-acacia/front-underwear.svg",
  42651. extra: 1796/1741,
  42652. bottom: 83/1879
  42653. }
  42654. },
  42655. frontNude: {
  42656. height: math.unit(22 + 1/12, "feet"),
  42657. weight: math.unit(3200, "lb"),
  42658. name: "Front (Nude)",
  42659. image: {
  42660. source: "./media/characters/theo-acacia/front-nude.svg",
  42661. extra: 1796/1741,
  42662. bottom: 83/1879
  42663. }
  42664. },
  42665. },
  42666. [
  42667. {
  42668. name: "Normal",
  42669. height: math.unit(22 + 1/12, "feet"),
  42670. default: true
  42671. },
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42676. {
  42677. front: {
  42678. height: math.unit(20, "feet"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/astra/front.svg",
  42682. extra: 1850/1714,
  42683. bottom: 106/1956
  42684. }
  42685. },
  42686. frontUndressed: {
  42687. height: math.unit(20, "feet"),
  42688. name: "Front (Undressed)",
  42689. image: {
  42690. source: "./media/characters/astra/front-undressed.svg",
  42691. extra: 1926/1749,
  42692. bottom: 0/1926
  42693. }
  42694. },
  42695. hand: {
  42696. height: math.unit(1.53, "feet"),
  42697. name: "Hand",
  42698. image: {
  42699. source: "./media/characters/astra/hand.svg"
  42700. }
  42701. },
  42702. paw: {
  42703. height: math.unit(1.53, "feet"),
  42704. name: "Paw",
  42705. image: {
  42706. source: "./media/characters/astra/paw.svg"
  42707. }
  42708. },
  42709. },
  42710. [
  42711. {
  42712. name: "Smallest",
  42713. height: math.unit(20, "feet")
  42714. },
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(1e9, "miles"),
  42718. default: true
  42719. },
  42720. {
  42721. name: "Larger",
  42722. height: math.unit(5, "multiverses")
  42723. },
  42724. {
  42725. name: "Largest",
  42726. height: math.unit(1e9, "multiverses")
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42732. {
  42733. front: {
  42734. height: math.unit(8, "feet"),
  42735. name: "Front",
  42736. image: {
  42737. source: "./media/characters/breanna/front.svg",
  42738. extra: 1912/1632,
  42739. bottom: 33/1945
  42740. }
  42741. },
  42742. },
  42743. [
  42744. {
  42745. name: "Smallest",
  42746. height: math.unit(8, "feet")
  42747. },
  42748. {
  42749. name: "Normal",
  42750. height: math.unit(1, "mile"),
  42751. default: true
  42752. },
  42753. {
  42754. name: "Maximum",
  42755. height: math.unit(1500000000000, "lightyears")
  42756. },
  42757. ]
  42758. ))
  42759. characterMakers.push(() => makeCharacter(
  42760. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42761. {
  42762. front: {
  42763. height: math.unit(5 + 11/12, "feet"),
  42764. weight: math.unit(155, "lb"),
  42765. name: "Front",
  42766. image: {
  42767. source: "./media/characters/cai/front.svg",
  42768. extra: 1823/1702,
  42769. bottom: 32/1855
  42770. }
  42771. },
  42772. back: {
  42773. height: math.unit(5 + 11/12, "feet"),
  42774. weight: math.unit(155, "lb"),
  42775. name: "Back",
  42776. image: {
  42777. source: "./media/characters/cai/back.svg",
  42778. extra: 1809/1708,
  42779. bottom: 31/1840
  42780. }
  42781. },
  42782. },
  42783. [
  42784. {
  42785. name: "Normal",
  42786. height: math.unit(5 + 11/12, "feet"),
  42787. default: true
  42788. },
  42789. {
  42790. name: "Big",
  42791. height: math.unit(15, "feet")
  42792. },
  42793. {
  42794. name: "Macro",
  42795. height: math.unit(200, "feet")
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(5 + 6/12, "feet"),
  42804. weight: math.unit(160, "lb"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42808. extra: 1227/1174,
  42809. bottom: 37/1264
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Macro",
  42816. height: math.unit(444, "meters"),
  42817. default: true
  42818. },
  42819. ]
  42820. ))
  42821. characterMakers.push(() => makeCharacter(
  42822. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42823. {
  42824. front: {
  42825. height: math.unit(18 + 7/12, "feet"),
  42826. name: "Front",
  42827. image: {
  42828. source: "./media/characters/rex/front.svg",
  42829. extra: 1941/1807,
  42830. bottom: 66/2007
  42831. }
  42832. },
  42833. back: {
  42834. height: math.unit(18 + 7/12, "feet"),
  42835. name: "Back",
  42836. image: {
  42837. source: "./media/characters/rex/back.svg",
  42838. extra: 1937/1822,
  42839. bottom: 42/1979
  42840. }
  42841. },
  42842. boot: {
  42843. height: math.unit(3.45, "feet"),
  42844. name: "Boot",
  42845. image: {
  42846. source: "./media/characters/rex/boot.svg"
  42847. }
  42848. },
  42849. paw: {
  42850. height: math.unit(4.17, "feet"),
  42851. name: "Paw",
  42852. image: {
  42853. source: "./media/characters/rex/paw.svg"
  42854. }
  42855. },
  42856. head: {
  42857. height: math.unit(6.728, "feet"),
  42858. name: "Head",
  42859. image: {
  42860. source: "./media/characters/rex/head.svg"
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Nano",
  42867. height: math.unit(18 + 7/12, "feet")
  42868. },
  42869. {
  42870. name: "Micro",
  42871. height: math.unit(1.5, "megameters")
  42872. },
  42873. {
  42874. name: "Normal",
  42875. height: math.unit(440, "megameters"),
  42876. default: true
  42877. },
  42878. {
  42879. name: "Macro",
  42880. height: math.unit(2.5, "gigameters")
  42881. },
  42882. {
  42883. name: "Gigamacro",
  42884. height: math.unit(2, "galaxies")
  42885. },
  42886. ]
  42887. ))
  42888. characterMakers.push(() => makeCharacter(
  42889. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42890. {
  42891. side: {
  42892. height: math.unit(32, "feet"),
  42893. weight: math.unit(250000, "lb"),
  42894. name: "Side",
  42895. image: {
  42896. source: "./media/characters/silverwing/side.svg",
  42897. extra: 1100/1019,
  42898. bottom: 204/1304
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(32, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(6 + 6/12, "feet"),
  42915. weight: math.unit(350, "lb"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/tristan-hawthorne/front.svg",
  42919. extra: 1159/1124,
  42920. bottom: 37/1196
  42921. },
  42922. form: "labrador",
  42923. default: true
  42924. },
  42925. skunkFront: {
  42926. height: math.unit(4 + 6/12, "feet"),
  42927. weight: math.unit(120, "lb"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42931. extra: 1609/1551,
  42932. bottom: 169/1778
  42933. },
  42934. form: "skunk",
  42935. default: true
  42936. },
  42937. },
  42938. [
  42939. {
  42940. name: "Normal",
  42941. height: math.unit(6 + 6/12, "feet"),
  42942. form: "labrador",
  42943. default: true
  42944. },
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(4 + 6/12, "feet"),
  42948. form: "skunk",
  42949. default: true
  42950. },
  42951. ],
  42952. {
  42953. "labrador": {
  42954. name: "Labrador",
  42955. default: true
  42956. },
  42957. "skunk": {
  42958. name: "Skunk"
  42959. }
  42960. }
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42964. {
  42965. front: {
  42966. height: math.unit(5 + 11/12, "feet"),
  42967. weight: math.unit(190, "lb"),
  42968. name: "Front",
  42969. image: {
  42970. source: "./media/characters/mizu/front.svg",
  42971. extra: 1988/1788,
  42972. bottom: 14/2002
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(5 + 11/12, "feet"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42986. {
  42987. front: {
  42988. height: math.unit(1.7, "feet"),
  42989. weight: math.unit(50, "lb"),
  42990. name: "Front",
  42991. image: {
  42992. source: "./media/characters/dechroma/front.svg",
  42993. extra: 1095/859,
  42994. bottom: 64/1159
  42995. }
  42996. },
  42997. },
  42998. [
  42999. {
  43000. name: "Normal",
  43001. height: math.unit(1.7, "feet"),
  43002. default: true
  43003. },
  43004. ]
  43005. ))
  43006. characterMakers.push(() => makeCharacter(
  43007. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43008. {
  43009. side: {
  43010. height: math.unit(30, "feet"),
  43011. name: "Side",
  43012. image: {
  43013. source: "./media/characters/veluren-thanazel/side.svg",
  43014. extra: 1611/633,
  43015. bottom: 118/1729
  43016. }
  43017. },
  43018. front: {
  43019. height: math.unit(30, "feet"),
  43020. name: "Front",
  43021. image: {
  43022. source: "./media/characters/veluren-thanazel/front.svg",
  43023. extra: 1486/636,
  43024. bottom: 238/1724
  43025. }
  43026. },
  43027. head: {
  43028. height: math.unit(21.4, "feet"),
  43029. name: "Head",
  43030. image: {
  43031. source: "./media/characters/veluren-thanazel/head.svg"
  43032. }
  43033. },
  43034. genitals: {
  43035. height: math.unit(19.4, "feet"),
  43036. name: "Genitals",
  43037. image: {
  43038. source: "./media/characters/veluren-thanazel/genitals.svg"
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Social",
  43045. height: math.unit(6, "feet")
  43046. },
  43047. {
  43048. name: "Play",
  43049. height: math.unit(12, "feet")
  43050. },
  43051. {
  43052. name: "True",
  43053. height: math.unit(30, "feet"),
  43054. default: true
  43055. },
  43056. ]
  43057. ))
  43058. characterMakers.push(() => makeCharacter(
  43059. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43060. {
  43061. front: {
  43062. height: math.unit(7 + 6/12, "feet"),
  43063. weight: math.unit(500, "kg"),
  43064. name: "Front",
  43065. image: {
  43066. source: "./media/characters/arcturas/front.svg",
  43067. extra: 1700/1500,
  43068. bottom: 145/1845
  43069. }
  43070. },
  43071. },
  43072. [
  43073. {
  43074. name: "Normal",
  43075. height: math.unit(7 + 6/12, "feet"),
  43076. default: true
  43077. },
  43078. ]
  43079. ))
  43080. characterMakers.push(() => makeCharacter(
  43081. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43082. {
  43083. side: {
  43084. height: math.unit(6, "feet"),
  43085. weight: math.unit(2, "tons"),
  43086. name: "Side",
  43087. image: {
  43088. source: "./media/characters/vitaen/side.svg",
  43089. extra: 1157/617,
  43090. bottom: 122/1279
  43091. }
  43092. },
  43093. },
  43094. [
  43095. {
  43096. name: "Normal",
  43097. height: math.unit(6, "feet"),
  43098. default: true
  43099. },
  43100. ]
  43101. ))
  43102. characterMakers.push(() => makeCharacter(
  43103. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43104. {
  43105. front: {
  43106. height: math.unit(19, "feet"),
  43107. name: "Front",
  43108. image: {
  43109. source: "./media/characters/fia-dreamweaver/front.svg",
  43110. extra: 1630/1504,
  43111. bottom: 25/1655
  43112. }
  43113. },
  43114. },
  43115. [
  43116. {
  43117. name: "Normal",
  43118. height: math.unit(19, "feet"),
  43119. default: true
  43120. },
  43121. ]
  43122. ))
  43123. characterMakers.push(() => makeCharacter(
  43124. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43125. {
  43126. front: {
  43127. height: math.unit(5 + 4/12, "feet"),
  43128. name: "Front",
  43129. image: {
  43130. source: "./media/characters/artan/front.svg",
  43131. extra: 1618/1535,
  43132. bottom: 46/1664
  43133. }
  43134. },
  43135. back: {
  43136. height: math.unit(5 + 4/12, "feet"),
  43137. name: "Back",
  43138. image: {
  43139. source: "./media/characters/artan/back.svg",
  43140. extra: 1618/1543,
  43141. bottom: 31/1649
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Normal",
  43148. height: math.unit(5 + 4/12, "feet"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43155. {
  43156. side: {
  43157. height: math.unit(182, "cm"),
  43158. weight: math.unit(1000, "lb"),
  43159. name: "Side",
  43160. image: {
  43161. source: "./media/characters/silver-dragon/side.svg",
  43162. extra: 710/287,
  43163. bottom: 88/798
  43164. }
  43165. },
  43166. },
  43167. [
  43168. {
  43169. name: "Normal",
  43170. height: math.unit(182, "cm"),
  43171. default: true
  43172. },
  43173. ]
  43174. ))
  43175. characterMakers.push(() => makeCharacter(
  43176. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43177. {
  43178. side: {
  43179. height: math.unit(6 + 6/12, "feet"),
  43180. weight: math.unit(1.5, "tons"),
  43181. name: "Side",
  43182. image: {
  43183. source: "./media/characters/zephyr/side.svg",
  43184. extra: 1433/586,
  43185. bottom: 109/1542
  43186. }
  43187. },
  43188. },
  43189. [
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(6 + 6/12, "feet"),
  43193. default: true
  43194. },
  43195. ]
  43196. ))
  43197. characterMakers.push(() => makeCharacter(
  43198. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43199. {
  43200. side: {
  43201. height: math.unit(1, "feet"),
  43202. name: "Side",
  43203. image: {
  43204. source: "./media/characters/vixye/side.svg",
  43205. extra: 632/541,
  43206. bottom: 0/632
  43207. }
  43208. },
  43209. },
  43210. [
  43211. {
  43212. name: "Normal",
  43213. height: math.unit(1, "feet"),
  43214. default: true
  43215. },
  43216. {
  43217. name: "True",
  43218. height: math.unit(1e15, "multiverses")
  43219. },
  43220. ]
  43221. ))
  43222. characterMakers.push(() => makeCharacter(
  43223. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43224. {
  43225. front: {
  43226. height: math.unit(8 + 2/12, "feet"),
  43227. weight: math.unit(650, "lb"),
  43228. name: "Front",
  43229. image: {
  43230. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43231. extra: 1174/1137,
  43232. bottom: 82/1256
  43233. }
  43234. },
  43235. back: {
  43236. height: math.unit(8 + 2/12, "feet"),
  43237. weight: math.unit(650, "lb"),
  43238. name: "Back",
  43239. image: {
  43240. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43241. extra: 1204/1157,
  43242. bottom: 46/1250
  43243. }
  43244. },
  43245. },
  43246. [
  43247. {
  43248. name: "Wildform",
  43249. height: math.unit(8 + 2/12, "feet"),
  43250. default: true
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(18, "feet"),
  43259. name: "Front",
  43260. image: {
  43261. source: "./media/characters/cyphin/front.svg",
  43262. extra: 970/886,
  43263. bottom: 42/1012
  43264. }
  43265. },
  43266. back: {
  43267. height: math.unit(18, "feet"),
  43268. name: "Back",
  43269. image: {
  43270. source: "./media/characters/cyphin/back.svg",
  43271. extra: 1009/894,
  43272. bottom: 24/1033
  43273. }
  43274. },
  43275. head: {
  43276. height: math.unit(5.05, "feet"),
  43277. name: "Head",
  43278. image: {
  43279. source: "./media/characters/cyphin/head.svg"
  43280. }
  43281. },
  43282. tailbud: {
  43283. height: math.unit(5, "feet"),
  43284. name: "Tailbud",
  43285. image: {
  43286. source: "./media/characters/cyphin/tailbud.svg"
  43287. }
  43288. },
  43289. },
  43290. [
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43295. {
  43296. side: {
  43297. height: math.unit(10, "feet"),
  43298. weight: math.unit(6, "tons"),
  43299. name: "Side",
  43300. image: {
  43301. source: "./media/characters/raijin/side.svg",
  43302. extra: 1529/613,
  43303. bottom: 337/1866
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(10, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43317. {
  43318. side: {
  43319. height: math.unit(9, "feet"),
  43320. name: "Side",
  43321. image: {
  43322. source: "./media/characters/nilghais/side.svg",
  43323. extra: 1047/744,
  43324. bottom: 91/1138
  43325. }
  43326. },
  43327. head: {
  43328. height: math.unit(3.14, "feet"),
  43329. name: "Head",
  43330. image: {
  43331. source: "./media/characters/nilghais/head.svg"
  43332. }
  43333. },
  43334. mouth: {
  43335. height: math.unit(4.6, "feet"),
  43336. name: "Mouth",
  43337. image: {
  43338. source: "./media/characters/nilghais/mouth.svg"
  43339. }
  43340. },
  43341. wings: {
  43342. height: math.unit(24, "feet"),
  43343. name: "Wings",
  43344. image: {
  43345. source: "./media/characters/nilghais/wings.svg"
  43346. }
  43347. },
  43348. ass: {
  43349. height: math.unit(6.12, "feet"),
  43350. name: "Ass",
  43351. image: {
  43352. source: "./media/characters/nilghais/ass.svg"
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Normal",
  43359. height: math.unit(9, "feet"),
  43360. default: true
  43361. },
  43362. ]
  43363. ))
  43364. characterMakers.push(() => makeCharacter(
  43365. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43366. {
  43367. regular: {
  43368. height: math.unit(16 + 2/12, "feet"),
  43369. weight: math.unit(2300, "lb"),
  43370. name: "Regular",
  43371. image: {
  43372. source: "./media/characters/zolgar/regular.svg",
  43373. extra: 1246/1004,
  43374. bottom: 124/1370
  43375. }
  43376. },
  43377. boxers: {
  43378. height: math.unit(16 + 2/12, "feet"),
  43379. weight: math.unit(2300, "lb"),
  43380. name: "Boxers",
  43381. image: {
  43382. source: "./media/characters/zolgar/boxers.svg",
  43383. extra: 1246/1004,
  43384. bottom: 124/1370
  43385. }
  43386. },
  43387. armored: {
  43388. height: math.unit(16 + 2/12, "feet"),
  43389. weight: math.unit(2300, "lb"),
  43390. name: "Armored",
  43391. image: {
  43392. source: "./media/characters/zolgar/armored.svg",
  43393. extra: 1246/1004,
  43394. bottom: 124/1370
  43395. }
  43396. },
  43397. goth: {
  43398. height: math.unit(16 + 2/12, "feet"),
  43399. weight: math.unit(2300, "lb"),
  43400. name: "Goth",
  43401. image: {
  43402. source: "./media/characters/zolgar/goth.svg",
  43403. extra: 1246/1004,
  43404. bottom: 124/1370
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Shrunken Down",
  43411. height: math.unit(9 + 2/12, "feet")
  43412. },
  43413. {
  43414. name: "Normal",
  43415. height: math.unit(16 + 2/12, "feet"),
  43416. default: true
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(6, "feet"),
  43425. weight: math.unit(168, "lb"),
  43426. name: "Front",
  43427. image: {
  43428. source: "./media/characters/luca/front.svg",
  43429. extra: 841/667,
  43430. bottom: 102/943
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(6, "feet"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43444. {
  43445. side: {
  43446. height: math.unit(7 + 3/12, "feet"),
  43447. weight: math.unit(312, "lb"),
  43448. name: "Side",
  43449. image: {
  43450. source: "./media/characters/zezo/side.svg",
  43451. extra: 1192/1067,
  43452. bottom: 63/1255
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(7 + 3/12, "feet"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(5 + 5/12, "feet"),
  43469. weight: math.unit(170, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/mayso/front.svg",
  43473. extra: 1215/1108,
  43474. bottom: 16/1231
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Normal",
  43481. height: math.unit(5 + 5/12, "feet"),
  43482. default: true
  43483. },
  43484. ]
  43485. ))
  43486. characterMakers.push(() => makeCharacter(
  43487. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43488. {
  43489. front: {
  43490. height: math.unit(4 + 3/12, "feet"),
  43491. weight: math.unit(80, "lb"),
  43492. name: "Front",
  43493. image: {
  43494. source: "./media/characters/hess/front.svg",
  43495. extra: 1200/1123,
  43496. bottom: 16/1216
  43497. }
  43498. },
  43499. },
  43500. [
  43501. {
  43502. name: "Normal",
  43503. height: math.unit(4 + 3/12, "feet"),
  43504. default: true
  43505. },
  43506. ]
  43507. ))
  43508. characterMakers.push(() => makeCharacter(
  43509. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43510. {
  43511. front: {
  43512. height: math.unit(1.9, "meters"),
  43513. name: "Front",
  43514. image: {
  43515. source: "./media/characters/ashgar/front.svg",
  43516. extra: 1177/1146,
  43517. bottom: 99/1276
  43518. }
  43519. },
  43520. back: {
  43521. height: math.unit(1.9, "meters"),
  43522. name: "Back",
  43523. image: {
  43524. source: "./media/characters/ashgar/back.svg",
  43525. extra: 1201/1183,
  43526. bottom: 53/1254
  43527. }
  43528. },
  43529. feral: {
  43530. height: math.unit(1.4, "meters"),
  43531. name: "Feral",
  43532. image: {
  43533. source: "./media/characters/ashgar/feral.svg",
  43534. extra: 370/345,
  43535. bottom: 45/415
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Normal",
  43542. height: math.unit(1.9, "meters"),
  43543. default: true
  43544. },
  43545. ]
  43546. ))
  43547. characterMakers.push(() => makeCharacter(
  43548. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43549. {
  43550. regular: {
  43551. height: math.unit(6, "feet"),
  43552. weight: math.unit(220, "lb"),
  43553. name: "Regular",
  43554. image: {
  43555. source: "./media/characters/phillip/regular.svg",
  43556. extra: 1373/1277,
  43557. bottom: 75/1448
  43558. }
  43559. },
  43560. dressed: {
  43561. height: math.unit(6, "feet"),
  43562. weight: math.unit(220, "lb"),
  43563. name: "Dressed",
  43564. image: {
  43565. source: "./media/characters/phillip/dressed.svg",
  43566. extra: 1373/1277,
  43567. bottom: 75/1448
  43568. }
  43569. },
  43570. paw: {
  43571. height: math.unit(1.44, "feet"),
  43572. name: "Paw",
  43573. image: {
  43574. source: "./media/characters/phillip/paw.svg"
  43575. }
  43576. },
  43577. },
  43578. [
  43579. {
  43580. name: "Normal",
  43581. height: math.unit(6, "feet"),
  43582. default: true
  43583. },
  43584. ]
  43585. ))
  43586. characterMakers.push(() => makeCharacter(
  43587. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43588. {
  43589. side: {
  43590. height: math.unit(42, "feet"),
  43591. name: "Side",
  43592. image: {
  43593. source: "./media/characters/uvula/side.svg",
  43594. extra: 683/586,
  43595. bottom: 60/743
  43596. }
  43597. },
  43598. front: {
  43599. height: math.unit(42, "feet"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/uvula/front.svg",
  43603. extra: 705/613,
  43604. bottom: 54/759
  43605. }
  43606. },
  43607. maw: {
  43608. height: math.unit(23.5, "feet"),
  43609. name: "Maw",
  43610. image: {
  43611. source: "./media/characters/uvula/maw.svg"
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Original Size",
  43618. height: math.unit(14, "inches")
  43619. },
  43620. {
  43621. name: "Human Size",
  43622. height: math.unit(6, "feet")
  43623. },
  43624. {
  43625. name: "Big",
  43626. height: math.unit(42, "feet"),
  43627. default: true
  43628. },
  43629. {
  43630. name: "Bigger",
  43631. height: math.unit(100, "feet")
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43637. {
  43638. front: {
  43639. height: math.unit(5 + 11/12, "feet"),
  43640. name: "Front",
  43641. image: {
  43642. source: "./media/characters/lannah/front.svg",
  43643. extra: 1208/1113,
  43644. bottom: 97/1305
  43645. }
  43646. },
  43647. },
  43648. [
  43649. {
  43650. name: "Normal",
  43651. height: math.unit(5 + 11/12, "feet"),
  43652. default: true
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43658. {
  43659. front: {
  43660. height: math.unit(6 + 3/12, "feet"),
  43661. weight: math.unit(3.5, "tons"),
  43662. name: "Front",
  43663. image: {
  43664. source: "./media/characters/emberflame/front.svg",
  43665. extra: 1198/672,
  43666. bottom: 82/1280
  43667. }
  43668. },
  43669. side: {
  43670. height: math.unit(6 + 3/12, "feet"),
  43671. weight: math.unit(3.5, "tons"),
  43672. name: "Side",
  43673. image: {
  43674. source: "./media/characters/emberflame/side.svg",
  43675. extra: 938/527,
  43676. bottom: 56/994
  43677. }
  43678. },
  43679. },
  43680. [
  43681. {
  43682. name: "Normal",
  43683. height: math.unit(6 + 3/12, "feet"),
  43684. default: true
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43690. {
  43691. side: {
  43692. height: math.unit(17.5, "feet"),
  43693. weight: math.unit(35, "tons"),
  43694. name: "Side",
  43695. image: {
  43696. source: "./media/characters/sophie-ambrose/side.svg",
  43697. extra: 1573/1242,
  43698. bottom: 71/1644
  43699. }
  43700. },
  43701. maw: {
  43702. height: math.unit(7.4, "feet"),
  43703. name: "Maw",
  43704. image: {
  43705. source: "./media/characters/sophie-ambrose/maw.svg"
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(17.5, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43719. {
  43720. front: {
  43721. height: math.unit(280, "feet"),
  43722. weight: math.unit(550, "tons"),
  43723. name: "Front",
  43724. image: {
  43725. source: "./media/characters/king-mugi/front.svg",
  43726. extra: 1102/947,
  43727. bottom: 104/1206
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "King Mugi",
  43734. height: math.unit(280, "feet"),
  43735. default: true
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43741. {
  43742. front: {
  43743. height: math.unit(64, "meters"),
  43744. name: "Front",
  43745. image: {
  43746. source: "./media/characters/nova-fox/front.svg",
  43747. extra: 1310/1246,
  43748. bottom: 65/1375
  43749. }
  43750. },
  43751. },
  43752. [
  43753. {
  43754. name: "Macro",
  43755. height: math.unit(64, "meters"),
  43756. default: true
  43757. },
  43758. ]
  43759. ))
  43760. characterMakers.push(() => makeCharacter(
  43761. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43762. {
  43763. front: {
  43764. height: math.unit(6 + 3/12, "feet"),
  43765. weight: math.unit(170, "lb"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/sam-bat/front.svg",
  43769. extra: 1601/1411,
  43770. bottom: 125/1726
  43771. }
  43772. },
  43773. back: {
  43774. height: math.unit(6 + 3/12, "feet"),
  43775. weight: math.unit(170, "lb"),
  43776. name: "Back",
  43777. image: {
  43778. source: "./media/characters/sam-bat/back.svg",
  43779. extra: 1577/1405,
  43780. bottom: 58/1635
  43781. }
  43782. },
  43783. },
  43784. [
  43785. {
  43786. name: "Normal",
  43787. height: math.unit(6 + 3/12, "feet"),
  43788. default: true
  43789. },
  43790. ]
  43791. ))
  43792. characterMakers.push(() => makeCharacter(
  43793. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43794. {
  43795. front: {
  43796. height: math.unit(59, "feet"),
  43797. weight: math.unit(40000, "lb"),
  43798. name: "Front",
  43799. image: {
  43800. source: "./media/characters/inari/front.svg",
  43801. extra: 1884/1350,
  43802. bottom: 95/1979
  43803. }
  43804. },
  43805. },
  43806. [
  43807. {
  43808. name: "Gigantamax",
  43809. height: math.unit(59, "feet"),
  43810. default: true
  43811. },
  43812. ]
  43813. ))
  43814. characterMakers.push(() => makeCharacter(
  43815. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43816. {
  43817. front: {
  43818. height: math.unit(5 + 8/12, "feet"),
  43819. name: "Front",
  43820. image: {
  43821. source: "./media/characters/elizabeth/front.svg",
  43822. extra: 1395/1298,
  43823. bottom: 54/1449
  43824. }
  43825. },
  43826. mouth: {
  43827. height: math.unit(1.97, "feet"),
  43828. name: "Mouth",
  43829. image: {
  43830. source: "./media/characters/elizabeth/mouth.svg"
  43831. }
  43832. },
  43833. foot: {
  43834. height: math.unit(1.17, "feet"),
  43835. name: "Foot",
  43836. image: {
  43837. source: "./media/characters/elizabeth/foot.svg"
  43838. }
  43839. },
  43840. },
  43841. [
  43842. {
  43843. name: "Normal",
  43844. height: math.unit(5 + 8/12, "feet"),
  43845. default: true
  43846. },
  43847. {
  43848. name: "Minimacro",
  43849. height: math.unit(18, "feet")
  43850. },
  43851. {
  43852. name: "Macro",
  43853. height: math.unit(180, "feet")
  43854. },
  43855. ]
  43856. ))
  43857. characterMakers.push(() => makeCharacter(
  43858. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43859. {
  43860. front: {
  43861. height: math.unit(5 + 2/12, "feet"),
  43862. name: "Front",
  43863. image: {
  43864. source: "./media/characters/october-gossamer/front.svg",
  43865. extra: 505/454,
  43866. bottom: 7/512
  43867. }
  43868. },
  43869. back: {
  43870. height: math.unit(5 + 2/12, "feet"),
  43871. name: "Back",
  43872. image: {
  43873. source: "./media/characters/october-gossamer/back.svg",
  43874. extra: 501/454,
  43875. bottom: 11/512
  43876. }
  43877. },
  43878. },
  43879. [
  43880. {
  43881. name: "Normal",
  43882. height: math.unit(5 + 2/12, "feet"),
  43883. default: true
  43884. },
  43885. ]
  43886. ))
  43887. characterMakers.push(() => makeCharacter(
  43888. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43889. {
  43890. front: {
  43891. height: math.unit(5, "feet"),
  43892. name: "Front",
  43893. image: {
  43894. source: "./media/characters/epiglottis/front.svg",
  43895. extra: 923/849,
  43896. bottom: 17/940
  43897. }
  43898. },
  43899. },
  43900. [
  43901. {
  43902. name: "Original Size",
  43903. height: math.unit(10, "inches")
  43904. },
  43905. {
  43906. name: "Human Size",
  43907. height: math.unit(5, "feet"),
  43908. default: true
  43909. },
  43910. {
  43911. name: "Big",
  43912. height: math.unit(25, "feet")
  43913. },
  43914. {
  43915. name: "Bigger",
  43916. height: math.unit(50, "feet")
  43917. },
  43918. {
  43919. name: "oh lawd",
  43920. height: math.unit(75, "feet")
  43921. },
  43922. ]
  43923. ))
  43924. characterMakers.push(() => makeCharacter(
  43925. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43926. {
  43927. front: {
  43928. height: math.unit(2 + 4/12, "feet"),
  43929. weight: math.unit(60, "lb"),
  43930. name: "Front",
  43931. image: {
  43932. source: "./media/characters/lerm/front.svg",
  43933. extra: 796/790,
  43934. bottom: 79/875
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Normal",
  43941. height: math.unit(2 + 4/12, "feet"),
  43942. default: true
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(5.5, "feet"),
  43951. weight: math.unit(130, "lb"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/xena-nebadon/front.svg",
  43955. extra: 1828/1730,
  43956. bottom: 79/1907
  43957. }
  43958. },
  43959. },
  43960. [
  43961. {
  43962. name: "Tiny Puppy",
  43963. height: math.unit(3, "inches")
  43964. },
  43965. {
  43966. name: "Normal",
  43967. height: math.unit(5.5, "feet"),
  43968. default: true
  43969. },
  43970. {
  43971. name: "Lotta Lady",
  43972. height: math.unit(12, "feet")
  43973. },
  43974. {
  43975. name: "Pretty Big",
  43976. height: math.unit(100, "feet")
  43977. },
  43978. {
  43979. name: "Big",
  43980. height: math.unit(500, "feet")
  43981. },
  43982. {
  43983. name: "Skyscraper Toys",
  43984. height: math.unit(2500, "feet")
  43985. },
  43986. {
  43987. name: "Plane Catcher",
  43988. height: math.unit(8, "miles")
  43989. },
  43990. {
  43991. name: "Planet Toys",
  43992. height: math.unit(15, "earths")
  43993. },
  43994. {
  43995. name: "Stardust",
  43996. height: math.unit(0.25, "galaxies")
  43997. },
  43998. {
  43999. name: "Snacks",
  44000. height: math.unit(70, "universes")
  44001. },
  44002. ]
  44003. ))
  44004. characterMakers.push(() => makeCharacter(
  44005. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44006. {
  44007. front: {
  44008. height: math.unit(1.6, "meters"),
  44009. weight: math.unit(60, "kg"),
  44010. name: "Front",
  44011. image: {
  44012. source: "./media/characters/bounty/front.svg",
  44013. extra: 1426/1308,
  44014. bottom: 15/1441
  44015. }
  44016. },
  44017. back: {
  44018. height: math.unit(1.6, "meters"),
  44019. weight: math.unit(60, "kg"),
  44020. name: "Back",
  44021. image: {
  44022. source: "./media/characters/bounty/back.svg",
  44023. extra: 1417/1307,
  44024. bottom: 8/1425
  44025. }
  44026. },
  44027. },
  44028. [
  44029. {
  44030. name: "Normal",
  44031. height: math.unit(1.6, "meters"),
  44032. default: true
  44033. },
  44034. {
  44035. name: "Macro",
  44036. height: math.unit(300, "meters")
  44037. },
  44038. ]
  44039. ))
  44040. characterMakers.push(() => makeCharacter(
  44041. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44042. {
  44043. front: {
  44044. height: math.unit(2 + 8/12, "feet"),
  44045. weight: math.unit(15, "lb"),
  44046. name: "Front",
  44047. image: {
  44048. source: "./media/characters/mochi/front.svg",
  44049. extra: 1022/852,
  44050. bottom: 435/1457
  44051. }
  44052. },
  44053. back: {
  44054. height: math.unit(2 + 8/12, "feet"),
  44055. weight: math.unit(15, "lb"),
  44056. name: "Back",
  44057. image: {
  44058. source: "./media/characters/mochi/back.svg",
  44059. extra: 1335/1119,
  44060. bottom: 39/1374
  44061. }
  44062. },
  44063. bird: {
  44064. height: math.unit(2 + 8/12, "feet"),
  44065. weight: math.unit(15, "lb"),
  44066. name: "Bird",
  44067. image: {
  44068. source: "./media/characters/mochi/bird.svg",
  44069. extra: 1251/1113,
  44070. bottom: 178/1429
  44071. }
  44072. },
  44073. kaiju: {
  44074. height: math.unit(154, "feet"),
  44075. weight: math.unit(1e7, "lb"),
  44076. name: "Kaiju",
  44077. image: {
  44078. source: "./media/characters/mochi/kaiju.svg",
  44079. extra: 460/324,
  44080. bottom: 40/500
  44081. }
  44082. },
  44083. head: {
  44084. height: math.unit(1.21, "feet"),
  44085. name: "Head",
  44086. image: {
  44087. source: "./media/characters/mochi/head.svg"
  44088. }
  44089. },
  44090. alternateTail: {
  44091. height: math.unit(2 + 8/12, "feet"),
  44092. weight: math.unit(45, "lb"),
  44093. name: "Alternate Tail",
  44094. image: {
  44095. source: "./media/characters/mochi/alternate-tail.svg",
  44096. extra: 139/76,
  44097. bottom: 45/184
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Micro",
  44104. height: math.unit(2, "inches")
  44105. },
  44106. {
  44107. name: "Normal",
  44108. height: math.unit(2 + 8/12, "feet"),
  44109. default: true
  44110. },
  44111. {
  44112. name: "Macro",
  44113. height: math.unit(106, "feet")
  44114. },
  44115. ]
  44116. ))
  44117. characterMakers.push(() => makeCharacter(
  44118. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44119. {
  44120. front: {
  44121. height: math.unit(5.67, "feet"),
  44122. weight: math.unit(135, "lb"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/sarel/front.svg",
  44126. extra: 865/788,
  44127. bottom: 97/962
  44128. }
  44129. },
  44130. back: {
  44131. height: math.unit(5.67, "feet"),
  44132. weight: math.unit(135, "lb"),
  44133. name: "Back",
  44134. image: {
  44135. source: "./media/characters/sarel/back.svg",
  44136. extra: 857/777,
  44137. bottom: 32/889
  44138. }
  44139. },
  44140. chozoan: {
  44141. height: math.unit(5.67, "feet"),
  44142. weight: math.unit(135, "lb"),
  44143. name: "Chozoan",
  44144. image: {
  44145. source: "./media/characters/sarel/chozoan.svg",
  44146. extra: 865/788,
  44147. bottom: 97/962
  44148. }
  44149. },
  44150. current: {
  44151. height: math.unit(5.67, "feet"),
  44152. weight: math.unit(135, "lb"),
  44153. name: "Current",
  44154. image: {
  44155. source: "./media/characters/sarel/current.svg",
  44156. extra: 865/788,
  44157. bottom: 97/962
  44158. }
  44159. },
  44160. head: {
  44161. height: math.unit(1.77, "feet"),
  44162. name: "Head",
  44163. image: {
  44164. source: "./media/characters/sarel/head.svg"
  44165. }
  44166. },
  44167. claws: {
  44168. height: math.unit(1.8, "feet"),
  44169. name: "Claws",
  44170. image: {
  44171. source: "./media/characters/sarel/claws.svg"
  44172. }
  44173. },
  44174. clawsAlt: {
  44175. height: math.unit(1.8, "feet"),
  44176. name: "Claws-alt",
  44177. image: {
  44178. source: "./media/characters/sarel/claws-alt.svg"
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(5.67, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(5500, "feet"),
  44195. name: "Front",
  44196. image: {
  44197. source: "./media/characters/alyonia/front.svg",
  44198. extra: 1200/1135,
  44199. bottom: 29/1229
  44200. }
  44201. },
  44202. back: {
  44203. height: math.unit(5500, "feet"),
  44204. name: "Back",
  44205. image: {
  44206. source: "./media/characters/alyonia/back.svg",
  44207. extra: 1205/1138,
  44208. bottom: 10/1215
  44209. }
  44210. },
  44211. },
  44212. [
  44213. {
  44214. name: "Small",
  44215. height: math.unit(10, "feet")
  44216. },
  44217. {
  44218. name: "Macro",
  44219. height: math.unit(500, "feet")
  44220. },
  44221. {
  44222. name: "Mega Macro",
  44223. height: math.unit(5500, "feet"),
  44224. default: true
  44225. },
  44226. {
  44227. name: "Mega Macro+",
  44228. height: math.unit(500000, "feet")
  44229. },
  44230. {
  44231. name: "Giga Macro",
  44232. height: math.unit(3000, "miles")
  44233. },
  44234. {
  44235. name: "Tera Macro",
  44236. height: math.unit(2.8e6, "miles")
  44237. },
  44238. {
  44239. name: "Galactic",
  44240. height: math.unit(120000, "lightyears")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44246. {
  44247. werewolf: {
  44248. height: math.unit(8, "feet"),
  44249. weight: math.unit(425, "lb"),
  44250. name: "Werewolf",
  44251. image: {
  44252. source: "./media/characters/autumn/werewolf.svg",
  44253. extra: 2154/2031,
  44254. bottom: 160/2314
  44255. }
  44256. },
  44257. human: {
  44258. height: math.unit(5 + 8/12, "feet"),
  44259. weight: math.unit(150, "lb"),
  44260. name: "Human",
  44261. image: {
  44262. source: "./media/characters/autumn/human.svg",
  44263. extra: 1200/1149,
  44264. bottom: 30/1230
  44265. }
  44266. },
  44267. },
  44268. [
  44269. {
  44270. name: "Normal",
  44271. height: math.unit(8, "feet"),
  44272. default: true
  44273. },
  44274. ]
  44275. ))
  44276. characterMakers.push(() => makeCharacter(
  44277. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44278. {
  44279. front: {
  44280. height: math.unit(8 + 5/12, "feet"),
  44281. weight: math.unit(825, "lb"),
  44282. name: "Front",
  44283. image: {
  44284. source: "./media/characters/cobalt-charizard/front.svg",
  44285. extra: 1268/1155,
  44286. bottom: 122/1390
  44287. }
  44288. },
  44289. side: {
  44290. height: math.unit(8 + 5/12, "feet"),
  44291. weight: math.unit(825, "lb"),
  44292. name: "Side",
  44293. image: {
  44294. source: "./media/characters/cobalt-charizard/side.svg",
  44295. extra: 1348/1257,
  44296. bottom: 58/1406
  44297. }
  44298. },
  44299. gMax: {
  44300. height: math.unit(134 + 11/12, "feet"),
  44301. name: "G-Max",
  44302. image: {
  44303. source: "./media/characters/cobalt-charizard/g-max.svg",
  44304. extra: 1835/1541,
  44305. bottom: 151/1986
  44306. }
  44307. },
  44308. },
  44309. [
  44310. {
  44311. name: "Normal",
  44312. height: math.unit(8 + 5/12, "feet"),
  44313. default: true
  44314. },
  44315. ]
  44316. ))
  44317. characterMakers.push(() => makeCharacter(
  44318. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44319. {
  44320. front: {
  44321. height: math.unit(6 + 3/12, "feet"),
  44322. weight: math.unit(210, "lb"),
  44323. name: "Front",
  44324. image: {
  44325. source: "./media/characters/stella/front.svg",
  44326. extra: 3549/3335,
  44327. bottom: 51/3600
  44328. }
  44329. },
  44330. },
  44331. [
  44332. {
  44333. name: "Normal",
  44334. height: math.unit(6 + 3/12, "feet"),
  44335. default: true
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(5, "feet"),
  44344. weight: math.unit(90, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/riley-bishop/front.svg",
  44348. extra: 1450/1428,
  44349. bottom: 152/1602
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(5, "feet"),
  44357. default: true
  44358. },
  44359. ]
  44360. ))
  44361. characterMakers.push(() => makeCharacter(
  44362. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44363. {
  44364. side: {
  44365. height: math.unit(8 + 2/12, "feet"),
  44366. weight: math.unit(500, "kg"),
  44367. name: "Side",
  44368. image: {
  44369. source: "./media/characters/theo-arcanine/side.svg",
  44370. extra: 1342/1074,
  44371. bottom: 111/1453
  44372. }
  44373. },
  44374. },
  44375. [
  44376. {
  44377. name: "Normal",
  44378. height: math.unit(8 + 2/12, "feet"),
  44379. default: true
  44380. },
  44381. ]
  44382. ))
  44383. characterMakers.push(() => makeCharacter(
  44384. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44385. {
  44386. front: {
  44387. height: math.unit(4, "feet"),
  44388. name: "Front",
  44389. image: {
  44390. source: "./media/characters/kali/front.svg",
  44391. extra: 1921/1357,
  44392. bottom: 70/1991
  44393. }
  44394. },
  44395. },
  44396. [
  44397. {
  44398. name: "Normal",
  44399. height: math.unit(4, "feet"),
  44400. default: true
  44401. },
  44402. {
  44403. name: "Macro",
  44404. height: math.unit(32, "meters")
  44405. },
  44406. {
  44407. name: "Macro+",
  44408. height: math.unit(150, "meters")
  44409. },
  44410. {
  44411. name: "Megamacro",
  44412. height: math.unit(7500, "meters")
  44413. },
  44414. {
  44415. name: "Megamacro+",
  44416. height: math.unit(80, "kilometers")
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44422. {
  44423. side: {
  44424. height: math.unit(5 + 11/12, "feet"),
  44425. weight: math.unit(236, "lb"),
  44426. name: "Side",
  44427. image: {
  44428. source: "./media/characters/gapp/side.svg",
  44429. extra: 775/340,
  44430. bottom: 58/833
  44431. }
  44432. },
  44433. mouth: {
  44434. height: math.unit(2.98, "feet"),
  44435. name: "Mouth",
  44436. image: {
  44437. source: "./media/characters/gapp/mouth.svg"
  44438. }
  44439. },
  44440. },
  44441. [
  44442. {
  44443. name: "Normal",
  44444. height: math.unit(5 + 1/12, "feet"),
  44445. default: true
  44446. },
  44447. ]
  44448. ))
  44449. characterMakers.push(() => makeCharacter(
  44450. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44451. {
  44452. front: {
  44453. height: math.unit(6, "feet"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/persephone/front.svg",
  44457. extra: 1895/1717,
  44458. bottom: 96/1991
  44459. }
  44460. },
  44461. back: {
  44462. height: math.unit(6, "feet"),
  44463. name: "Back",
  44464. image: {
  44465. source: "./media/characters/persephone/back.svg",
  44466. extra: 1868/1679,
  44467. bottom: 26/1894
  44468. }
  44469. },
  44470. casual: {
  44471. height: math.unit(6, "feet"),
  44472. name: "Casual",
  44473. image: {
  44474. source: "./media/characters/persephone/casual.svg",
  44475. extra: 1713/1541,
  44476. bottom: 76/1789
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Human Size",
  44483. height: math.unit(6, "feet")
  44484. },
  44485. {
  44486. name: "Big Steppy",
  44487. height: math.unit(600, "meters"),
  44488. default: true
  44489. },
  44490. {
  44491. name: "Galaxy Brain",
  44492. height: math.unit(1, "zettameter")
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(1.85, "meters"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/riley-foxthing/front.svg",
  44504. extra: 1495/1354,
  44505. bottom: 122/1617
  44506. }
  44507. },
  44508. frontAlt: {
  44509. height: math.unit(1.85, "meters"),
  44510. name: "Front (Alt)",
  44511. image: {
  44512. source: "./media/characters/riley-foxthing/front-alt.svg",
  44513. extra: 1572/1389,
  44514. bottom: 116/1688
  44515. }
  44516. },
  44517. },
  44518. [
  44519. {
  44520. name: "Normal Sized",
  44521. height: math.unit(1.85, "meters"),
  44522. default: true
  44523. },
  44524. {
  44525. name: "Quite Sizable",
  44526. height: math.unit(5, "meters")
  44527. },
  44528. {
  44529. name: "Rather Large",
  44530. height: math.unit(20, "meters")
  44531. },
  44532. {
  44533. name: "Macro",
  44534. height: math.unit(450, "meters")
  44535. },
  44536. {
  44537. name: "Giga",
  44538. height: math.unit(5, "km")
  44539. },
  44540. ]
  44541. ))
  44542. characterMakers.push(() => makeCharacter(
  44543. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44544. {
  44545. front: {
  44546. height: math.unit(6, "feet"),
  44547. weight: math.unit(200, "lb"),
  44548. name: "Front",
  44549. image: {
  44550. source: "./media/characters/blizzard/front.svg",
  44551. extra: 1136/990,
  44552. bottom: 136/1272
  44553. }
  44554. },
  44555. back: {
  44556. height: math.unit(6, "feet"),
  44557. weight: math.unit(200, "lb"),
  44558. name: "Back",
  44559. image: {
  44560. source: "./media/characters/blizzard/back.svg",
  44561. extra: 1175/1034,
  44562. bottom: 97/1272
  44563. }
  44564. },
  44565. sitting: {
  44566. height: math.unit(3.725, "feet"),
  44567. weight: math.unit(200, "lb"),
  44568. name: "Sitting",
  44569. image: {
  44570. source: "./media/characters/blizzard/sitting.svg",
  44571. extra: 581/485,
  44572. bottom: 90/671
  44573. }
  44574. },
  44575. frontWizard: {
  44576. height: math.unit(7.9, "feet"),
  44577. weight: math.unit(200, "lb"),
  44578. name: "Front (Wizard)",
  44579. image: {
  44580. source: "./media/characters/blizzard/front-wizard.svg"
  44581. }
  44582. },
  44583. backWizard: {
  44584. height: math.unit(7.9, "feet"),
  44585. weight: math.unit(200, "lb"),
  44586. name: "Back (Wizard)",
  44587. image: {
  44588. source: "./media/characters/blizzard/back-wizard.svg"
  44589. }
  44590. },
  44591. frontNsfw: {
  44592. height: math.unit(6, "feet"),
  44593. weight: math.unit(200, "lb"),
  44594. name: "Front (NSFW)",
  44595. image: {
  44596. source: "./media/characters/blizzard/front-nsfw.svg",
  44597. extra: 1136/990,
  44598. bottom: 136/1272
  44599. }
  44600. },
  44601. backNsfw: {
  44602. height: math.unit(6, "feet"),
  44603. weight: math.unit(200, "lb"),
  44604. name: "Back (NSFW)",
  44605. image: {
  44606. source: "./media/characters/blizzard/back-nsfw.svg",
  44607. extra: 1175/1034,
  44608. bottom: 97/1272
  44609. }
  44610. },
  44611. sittingNsfw: {
  44612. height: math.unit(3.725, "feet"),
  44613. weight: math.unit(200, "lb"),
  44614. name: "Sitting (NSFW)",
  44615. image: {
  44616. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44617. extra: 581/485,
  44618. bottom: 90/671
  44619. }
  44620. },
  44621. wizardFrontNsfw: {
  44622. height: math.unit(7.9, "feet"),
  44623. weight: math.unit(200, "lb"),
  44624. name: "Wizard (Front, NSFW)",
  44625. image: {
  44626. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Normal",
  44633. height: math.unit(6, "feet"),
  44634. default: true
  44635. },
  44636. ]
  44637. ))
  44638. characterMakers.push(() => makeCharacter(
  44639. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44640. {
  44641. front: {
  44642. height: math.unit(5 + 2/12, "feet"),
  44643. name: "Front",
  44644. image: {
  44645. source: "./media/characters/lumi/front.svg",
  44646. extra: 1328/1268,
  44647. bottom: 103/1431
  44648. }
  44649. },
  44650. back: {
  44651. height: math.unit(5 + 2/12, "feet"),
  44652. name: "Back",
  44653. image: {
  44654. source: "./media/characters/lumi/back.svg",
  44655. extra: 1381/1327,
  44656. bottom: 43/1424
  44657. }
  44658. },
  44659. },
  44660. [
  44661. {
  44662. name: "Normal",
  44663. height: math.unit(5 + 2/12, "feet"),
  44664. default: true
  44665. },
  44666. ]
  44667. ))
  44668. characterMakers.push(() => makeCharacter(
  44669. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44670. {
  44671. front: {
  44672. height: math.unit(5 + 9/12, "feet"),
  44673. name: "Front",
  44674. image: {
  44675. source: "./media/characters/aliya-cotton/front.svg",
  44676. extra: 577/564,
  44677. bottom: 29/606
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(5 + 9/12, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44691. {
  44692. front: {
  44693. height: math.unit(2.7, "meters"),
  44694. weight: math.unit(25000, "lb"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/noah-luxray/front.svg",
  44698. extra: 1644/825,
  44699. bottom: 339/1983
  44700. }
  44701. },
  44702. side: {
  44703. height: math.unit(2.97, "meters"),
  44704. weight: math.unit(25000, "lb"),
  44705. name: "Side",
  44706. image: {
  44707. source: "./media/characters/noah-luxray/side.svg",
  44708. extra: 1319/650,
  44709. bottom: 163/1482
  44710. }
  44711. },
  44712. dick: {
  44713. height: math.unit(7.4, "feet"),
  44714. weight: math.unit(2500, "lb"),
  44715. name: "Dick",
  44716. image: {
  44717. source: "./media/characters/noah-luxray/dick.svg"
  44718. }
  44719. },
  44720. dickAlt: {
  44721. height: math.unit(10.83, "feet"),
  44722. weight: math.unit(2500, "lb"),
  44723. name: "Dick-alt",
  44724. image: {
  44725. source: "./media/characters/noah-luxray/dick-alt.svg"
  44726. }
  44727. },
  44728. },
  44729. [
  44730. {
  44731. name: "BIG",
  44732. height: math.unit(2.7, "meters"),
  44733. default: true
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44739. {
  44740. standing: {
  44741. height: math.unit(183, "cm"),
  44742. weight: math.unit(68, "kg"),
  44743. name: "Standing",
  44744. image: {
  44745. source: "./media/characters/arion/standing.svg",
  44746. extra: 1869/1807,
  44747. bottom: 93/1962
  44748. }
  44749. },
  44750. reclining: {
  44751. height: math.unit(70.5, "cm"),
  44752. weight: math.unit(68, "lb"),
  44753. name: "Reclining",
  44754. image: {
  44755. source: "./media/characters/arion/reclining.svg",
  44756. extra: 937/870,
  44757. bottom: 63/1000
  44758. }
  44759. },
  44760. },
  44761. [
  44762. {
  44763. name: "Colossus Size, Low",
  44764. height: math.unit(33, "meters"),
  44765. default: true
  44766. },
  44767. {
  44768. name: "Colossus Size, Mid",
  44769. height: math.unit(52, "meters")
  44770. },
  44771. {
  44772. name: "Colossus Size, High",
  44773. height: math.unit(60, "meters")
  44774. },
  44775. {
  44776. name: "Titan Size, Low",
  44777. height: math.unit(91, "meters"),
  44778. },
  44779. {
  44780. name: "Titan Size, Mid",
  44781. height: math.unit(122, "meters")
  44782. },
  44783. {
  44784. name: "Titan Size, High",
  44785. height: math.unit(162, "meters")
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(53, "meters"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/stellar-marbey/front.svg",
  44797. extra: 1913/1805,
  44798. bottom: 92/2005
  44799. }
  44800. },
  44801. back: {
  44802. height: math.unit(53, "meters"),
  44803. name: "Back",
  44804. image: {
  44805. source: "./media/characters/stellar-marbey/back.svg",
  44806. extra: 1960/1851,
  44807. bottom: 28/1988
  44808. }
  44809. },
  44810. mouth: {
  44811. height: math.unit(3.5, "meters"),
  44812. name: "Mouth",
  44813. image: {
  44814. source: "./media/characters/stellar-marbey/mouth.svg"
  44815. }
  44816. },
  44817. },
  44818. [
  44819. {
  44820. name: "Macro",
  44821. height: math.unit(53, "meters"),
  44822. default: true
  44823. },
  44824. ]
  44825. ))
  44826. characterMakers.push(() => makeCharacter(
  44827. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44828. {
  44829. front: {
  44830. height: math.unit(8 + 1/12, "feet"),
  44831. weight: math.unit(233, "lb"),
  44832. name: "Front",
  44833. image: {
  44834. source: "./media/characters/matsu/front.svg",
  44835. extra: 832/772,
  44836. bottom: 40/872
  44837. }
  44838. },
  44839. back: {
  44840. height: math.unit(8 + 1/12, "feet"),
  44841. weight: math.unit(233, "lb"),
  44842. name: "Back",
  44843. image: {
  44844. source: "./media/characters/matsu/back.svg",
  44845. extra: 839/780,
  44846. bottom: 47/886
  44847. }
  44848. },
  44849. },
  44850. [
  44851. {
  44852. name: "Normal",
  44853. height: math.unit(8 + 1/12, "feet"),
  44854. default: true
  44855. },
  44856. ]
  44857. ))
  44858. characterMakers.push(() => makeCharacter(
  44859. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44860. {
  44861. front: {
  44862. height: math.unit(4, "feet"),
  44863. weight: math.unit(148, "lb"),
  44864. name: "Front",
  44865. image: {
  44866. source: "./media/characters/thiz/front.svg",
  44867. extra: 1913/1748,
  44868. bottom: 62/1975
  44869. }
  44870. },
  44871. },
  44872. [
  44873. {
  44874. name: "Normal",
  44875. height: math.unit(4, "feet"),
  44876. default: true
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44882. {
  44883. front: {
  44884. height: math.unit(7 + 6/12, "feet"),
  44885. weight: math.unit(267, "lb"),
  44886. name: "Front",
  44887. image: {
  44888. source: "./media/characters/marcel/front.svg",
  44889. extra: 1221/1096,
  44890. bottom: 76/1297
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(7 + 6/12, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44904. {
  44905. side: {
  44906. height: math.unit(42, "meters"),
  44907. name: "Side",
  44908. image: {
  44909. source: "./media/characters/flake/side.svg",
  44910. extra: 1525/1306,
  44911. bottom: 209/1734
  44912. }
  44913. },
  44914. },
  44915. [
  44916. {
  44917. name: "Normal",
  44918. height: math.unit(42, "meters"),
  44919. default: true
  44920. },
  44921. ]
  44922. ))
  44923. characterMakers.push(() => makeCharacter(
  44924. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44925. {
  44926. dressed: {
  44927. height: math.unit(6 + 4/12, "feet"),
  44928. weight: math.unit(520, "lb"),
  44929. name: "Dressed",
  44930. image: {
  44931. source: "./media/characters/someonne/dressed.svg",
  44932. extra: 1020/1010,
  44933. bottom: 178/1198
  44934. }
  44935. },
  44936. undressed: {
  44937. height: math.unit(6 + 4/12, "feet"),
  44938. weight: math.unit(520, "lb"),
  44939. name: "Undressed",
  44940. image: {
  44941. source: "./media/characters/someonne/undressed.svg",
  44942. extra: 1019/1014,
  44943. bottom: 169/1188
  44944. }
  44945. },
  44946. },
  44947. [
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(6 + 4/12, "feet"),
  44951. default: true
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(3, "feet"),
  44960. weight: math.unit(30, "lb"),
  44961. name: "Front",
  44962. image: {
  44963. source: "./media/characters/till/front.svg",
  44964. extra: 892/823,
  44965. bottom: 55/947
  44966. }
  44967. },
  44968. },
  44969. [
  44970. {
  44971. name: "Normal",
  44972. height: math.unit(3, "feet"),
  44973. default: true
  44974. },
  44975. ]
  44976. ))
  44977. characterMakers.push(() => makeCharacter(
  44978. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44979. {
  44980. front: {
  44981. height: math.unit(9 + 8/12, "feet"),
  44982. weight: math.unit(800, "lb"),
  44983. name: "Front",
  44984. image: {
  44985. source: "./media/characters/sydney-heki/front.svg",
  44986. extra: 1360/1300,
  44987. bottom: 22/1382
  44988. }
  44989. },
  44990. back: {
  44991. height: math.unit(9 + 8/12, "feet"),
  44992. weight: math.unit(800, "lb"),
  44993. name: "Back",
  44994. image: {
  44995. source: "./media/characters/sydney-heki/back.svg",
  44996. extra: 1356/1293,
  44997. bottom: 12/1368
  44998. }
  44999. },
  45000. frontDressed: {
  45001. height: math.unit(9 + 8/12, "feet"),
  45002. weight: math.unit(800, "lb"),
  45003. name: "Front-dressed",
  45004. image: {
  45005. source: "./media/characters/sydney-heki/front-dressed.svg",
  45006. extra: 1360/1300,
  45007. bottom: 22/1382
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(9 + 8/12, "feet"),
  45015. default: true
  45016. },
  45017. {
  45018. name: "Macro",
  45019. height: math.unit(500, "feet")
  45020. },
  45021. {
  45022. name: "Megamacro",
  45023. height: math.unit(3.6, "miles")
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45029. {
  45030. front: {
  45031. height: math.unit(200, "cm"),
  45032. weight: math.unit(250, "lb"),
  45033. name: "Front",
  45034. image: {
  45035. source: "./media/characters/fowler-karlsson/front.svg",
  45036. extra: 897/845,
  45037. bottom: 123/1020
  45038. }
  45039. },
  45040. back: {
  45041. height: math.unit(200, "cm"),
  45042. weight: math.unit(250, "lb"),
  45043. name: "Back",
  45044. image: {
  45045. source: "./media/characters/fowler-karlsson/back.svg",
  45046. extra: 999/944,
  45047. bottom: 26/1025
  45048. }
  45049. },
  45050. dick: {
  45051. height: math.unit(1.92, "feet"),
  45052. weight: math.unit(150, "lb"),
  45053. name: "Dick",
  45054. image: {
  45055. source: "./media/characters/fowler-karlsson/dick.svg"
  45056. }
  45057. },
  45058. },
  45059. [
  45060. {
  45061. name: "Normal",
  45062. height: math.unit(200, "cm"),
  45063. default: true
  45064. },
  45065. {
  45066. name: "Smaller Macro",
  45067. height: math.unit(90, "m")
  45068. },
  45069. {
  45070. name: "Macro",
  45071. height: math.unit(150, "m")
  45072. },
  45073. {
  45074. name: "Bigger Macro",
  45075. height: math.unit(300, "m")
  45076. },
  45077. ]
  45078. ))
  45079. characterMakers.push(() => makeCharacter(
  45080. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45081. {
  45082. side: {
  45083. height: math.unit(8 + 2/12, "feet"),
  45084. weight: math.unit(1, "tonne"),
  45085. name: "Side",
  45086. image: {
  45087. source: "./media/characters/rylide/side.svg",
  45088. extra: 1318/1034,
  45089. bottom: 106/1424
  45090. }
  45091. },
  45092. sitting: {
  45093. height: math.unit(303, "cm"),
  45094. weight: math.unit(1, "tonne"),
  45095. name: "Sitting",
  45096. image: {
  45097. source: "./media/characters/rylide/sitting.svg",
  45098. extra: 1303/1103,
  45099. bottom: 36/1339
  45100. }
  45101. },
  45102. },
  45103. [
  45104. {
  45105. name: "Normal",
  45106. height: math.unit(8 + 2/12, "feet"),
  45107. default: true
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45113. {
  45114. front: {
  45115. height: math.unit(5 + 10/12, "feet"),
  45116. weight: math.unit(160, "lb"),
  45117. name: "Front",
  45118. image: {
  45119. source: "./media/characters/pudask/front.svg",
  45120. extra: 1616/1590,
  45121. bottom: 161/1777
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Ferret Height",
  45128. height: math.unit(2 + 5/12, "feet")
  45129. },
  45130. {
  45131. name: "Canon Height",
  45132. height: math.unit(5 + 10/12, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(3 + 6/12, "feet"),
  45142. weight: math.unit(60, "lb"),
  45143. name: "Front",
  45144. image: {
  45145. source: "./media/characters/ramita/front.svg",
  45146. extra: 1402/1232,
  45147. bottom: 62/1464
  45148. }
  45149. },
  45150. dressed: {
  45151. height: math.unit(3 + 6/12, "feet"),
  45152. weight: math.unit(60, "lb"),
  45153. name: "Dressed",
  45154. image: {
  45155. source: "./media/characters/ramita/dressed.svg",
  45156. extra: 1534/1249,
  45157. bottom: 50/1584
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Normal",
  45164. height: math.unit(3 + 6/12, "feet"),
  45165. default: true
  45166. },
  45167. ]
  45168. ))
  45169. characterMakers.push(() => makeCharacter(
  45170. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45171. {
  45172. front: {
  45173. height: math.unit(8, "feet"),
  45174. name: "Front",
  45175. image: {
  45176. source: "./media/characters/ark/front.svg",
  45177. extra: 772/693,
  45178. bottom: 45/817
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Normal",
  45185. height: math.unit(8, "feet"),
  45186. default: true
  45187. },
  45188. ]
  45189. ))
  45190. characterMakers.push(() => makeCharacter(
  45191. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45192. {
  45193. front: {
  45194. height: math.unit(6, "feet"),
  45195. weight: math.unit(250, "lb"),
  45196. volume: math.unit(5/8, "gallons"),
  45197. name: "Front",
  45198. image: {
  45199. source: "./media/characters/ludwig-horn/front.svg",
  45200. extra: 1782/1635,
  45201. bottom: 96/1878
  45202. }
  45203. },
  45204. back: {
  45205. height: math.unit(6, "feet"),
  45206. weight: math.unit(250, "lb"),
  45207. volume: math.unit(5/8, "gallons"),
  45208. name: "Back",
  45209. image: {
  45210. source: "./media/characters/ludwig-horn/back.svg",
  45211. extra: 1874/1729,
  45212. bottom: 27/1901
  45213. }
  45214. },
  45215. dick: {
  45216. height: math.unit(1.05, "feet"),
  45217. weight: math.unit(15, "lb"),
  45218. volume: math.unit(5/8, "gallons"),
  45219. name: "Dick",
  45220. image: {
  45221. source: "./media/characters/ludwig-horn/dick.svg"
  45222. }
  45223. },
  45224. },
  45225. [
  45226. {
  45227. name: "Small",
  45228. height: math.unit(6, "feet")
  45229. },
  45230. {
  45231. name: "Typical",
  45232. height: math.unit(12, "feet"),
  45233. default: true
  45234. },
  45235. {
  45236. name: "Building",
  45237. height: math.unit(80, "feet")
  45238. },
  45239. {
  45240. name: "Town",
  45241. height: math.unit(800, "feet")
  45242. },
  45243. {
  45244. name: "Kingdom",
  45245. height: math.unit(80000, "feet")
  45246. },
  45247. {
  45248. name: "Planet",
  45249. height: math.unit(8000000, "feet")
  45250. },
  45251. {
  45252. name: "Universe",
  45253. height: math.unit(8000000000, "feet")
  45254. },
  45255. {
  45256. name: "Transcended",
  45257. height: math.unit(8e27, "feet")
  45258. },
  45259. ]
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(5, "feet"),
  45266. weight: math.unit(50, "kg"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/biot-avery/front.svg",
  45270. extra: 1295/1232,
  45271. bottom: 86/1381
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Normal",
  45278. height: math.unit(5, "feet"),
  45279. default: true
  45280. },
  45281. ]
  45282. ))
  45283. characterMakers.push(() => makeCharacter(
  45284. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45285. {
  45286. front: {
  45287. height: math.unit(6, "feet"),
  45288. name: "Front",
  45289. image: {
  45290. source: "./media/characters/kitsune-kiro/front.svg",
  45291. extra: 1270/1158,
  45292. bottom: 42/1312
  45293. }
  45294. },
  45295. frontAlt: {
  45296. height: math.unit(6, "feet"),
  45297. name: "Front-alt",
  45298. image: {
  45299. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45300. extra: 1130/1081,
  45301. bottom: 36/1166
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Smol",
  45308. height: math.unit(3, "feet")
  45309. },
  45310. {
  45311. name: "Normal",
  45312. height: math.unit(6, "feet"),
  45313. default: true
  45314. },
  45315. ]
  45316. ))
  45317. characterMakers.push(() => makeCharacter(
  45318. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45319. {
  45320. front: {
  45321. height: math.unit(6, "feet"),
  45322. weight: math.unit(125, "lb"),
  45323. name: "Front",
  45324. image: {
  45325. source: "./media/characters/jack-thatcher/front.svg",
  45326. extra: 1474/1370,
  45327. bottom: 26/1500
  45328. }
  45329. },
  45330. back: {
  45331. height: math.unit(6, "feet"),
  45332. weight: math.unit(125, "lb"),
  45333. name: "Back",
  45334. image: {
  45335. source: "./media/characters/jack-thatcher/back.svg",
  45336. extra: 1489/1384,
  45337. bottom: 18/1507
  45338. }
  45339. },
  45340. },
  45341. [
  45342. {
  45343. name: "Normal",
  45344. height: math.unit(6, "feet"),
  45345. default: true
  45346. },
  45347. {
  45348. name: "Macro",
  45349. height: math.unit(75, "feet")
  45350. },
  45351. {
  45352. name: "Macro-er",
  45353. height: math.unit(250, "feet")
  45354. },
  45355. ]
  45356. ))
  45357. characterMakers.push(() => makeCharacter(
  45358. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45359. {
  45360. front: {
  45361. height: math.unit(7, "feet"),
  45362. weight: math.unit(110, "kg"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/max-hyper/front.svg",
  45366. extra: 1969/1881,
  45367. bottom: 49/2018
  45368. }
  45369. },
  45370. },
  45371. [
  45372. {
  45373. name: "Normal",
  45374. height: math.unit(7, "feet"),
  45375. default: true
  45376. },
  45377. ]
  45378. ))
  45379. characterMakers.push(() => makeCharacter(
  45380. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45381. {
  45382. front: {
  45383. height: math.unit(5 + 5/12, "feet"),
  45384. weight: math.unit(160, "lb"),
  45385. name: "Front",
  45386. image: {
  45387. source: "./media/characters/spook/front.svg",
  45388. extra: 794/791,
  45389. bottom: 54/848
  45390. }
  45391. },
  45392. back: {
  45393. height: math.unit(5 + 5/12, "feet"),
  45394. weight: math.unit(160, "lb"),
  45395. name: "Back",
  45396. image: {
  45397. source: "./media/characters/spook/back.svg",
  45398. extra: 812/798,
  45399. bottom: 32/844
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Normal",
  45406. height: math.unit(5 + 5/12, "feet"),
  45407. default: true
  45408. },
  45409. ]
  45410. ))
  45411. characterMakers.push(() => makeCharacter(
  45412. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45413. {
  45414. front: {
  45415. height: math.unit(18, "feet"),
  45416. name: "Front",
  45417. image: {
  45418. source: "./media/characters/xeaduulix/front.svg",
  45419. extra: 1380/1166,
  45420. bottom: 110/1490
  45421. }
  45422. },
  45423. back: {
  45424. height: math.unit(18, "feet"),
  45425. name: "Back",
  45426. image: {
  45427. source: "./media/characters/xeaduulix/back.svg",
  45428. extra: 1592/1170,
  45429. bottom: 128/1720
  45430. }
  45431. },
  45432. frontNsfw: {
  45433. height: math.unit(18, "feet"),
  45434. name: "Front (NSFW)",
  45435. image: {
  45436. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45437. extra: 1380/1166,
  45438. bottom: 110/1490
  45439. }
  45440. },
  45441. backNsfw: {
  45442. height: math.unit(18, "feet"),
  45443. name: "Back (NSFW)",
  45444. image: {
  45445. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45446. extra: 1592/1170,
  45447. bottom: 128/1720
  45448. }
  45449. },
  45450. },
  45451. [
  45452. {
  45453. name: "Normal",
  45454. height: math.unit(18, "feet"),
  45455. default: true
  45456. },
  45457. ]
  45458. ))
  45459. characterMakers.push(() => makeCharacter(
  45460. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45461. {
  45462. spreadWings: {
  45463. height: math.unit(20, "feet"),
  45464. name: "Spread Wings",
  45465. image: {
  45466. source: "./media/characters/fledge/spread-wings.svg",
  45467. extra: 693/635,
  45468. bottom: 26/719
  45469. }
  45470. },
  45471. front: {
  45472. height: math.unit(20, "feet"),
  45473. name: "Front",
  45474. image: {
  45475. source: "./media/characters/fledge/front.svg",
  45476. extra: 684/637,
  45477. bottom: 18/702
  45478. }
  45479. },
  45480. frontAlt: {
  45481. height: math.unit(20, "feet"),
  45482. name: "Front (Alt)",
  45483. image: {
  45484. source: "./media/characters/fledge/front-alt.svg",
  45485. extra: 708/664,
  45486. bottom: 13/721
  45487. }
  45488. },
  45489. back: {
  45490. height: math.unit(20, "feet"),
  45491. name: "Back",
  45492. image: {
  45493. source: "./media/characters/fledge/back.svg",
  45494. extra: 718/634,
  45495. bottom: 22/740
  45496. }
  45497. },
  45498. head: {
  45499. height: math.unit(5.55, "feet"),
  45500. name: "Head",
  45501. image: {
  45502. source: "./media/characters/fledge/head.svg"
  45503. }
  45504. },
  45505. headAlt: {
  45506. height: math.unit(5.1, "feet"),
  45507. name: "Head (Alt)",
  45508. image: {
  45509. source: "./media/characters/fledge/head-alt.svg"
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Small",
  45516. height: math.unit(6 + 2/12, "feet")
  45517. },
  45518. {
  45519. name: "Big",
  45520. height: math.unit(20, "feet"),
  45521. default: true
  45522. },
  45523. {
  45524. name: "Giant",
  45525. height: math.unit(100, "feet")
  45526. },
  45527. {
  45528. name: "Macro",
  45529. height: math.unit(200, "feet")
  45530. },
  45531. ]
  45532. ))
  45533. characterMakers.push(() => makeCharacter(
  45534. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45535. {
  45536. front: {
  45537. height: math.unit(1, "meter"),
  45538. name: "Front",
  45539. image: {
  45540. source: "./media/characters/atlas-morenai/front.svg",
  45541. extra: 1275/1043,
  45542. bottom: 19/1294
  45543. }
  45544. },
  45545. back: {
  45546. height: math.unit(1, "meter"),
  45547. name: "Back",
  45548. image: {
  45549. source: "./media/characters/atlas-morenai/back.svg",
  45550. extra: 1141/1001,
  45551. bottom: 25/1166
  45552. }
  45553. },
  45554. },
  45555. [
  45556. {
  45557. name: "Normal",
  45558. height: math.unit(1, "meter"),
  45559. default: true
  45560. },
  45561. {
  45562. name: "Magic-Infused",
  45563. height: math.unit(5, "meters")
  45564. },
  45565. ]
  45566. ))
  45567. characterMakers.push(() => makeCharacter(
  45568. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45569. {
  45570. front: {
  45571. height: math.unit(5, "meters"),
  45572. name: "Front",
  45573. image: {
  45574. source: "./media/characters/cintia/front.svg",
  45575. extra: 1312/1228,
  45576. bottom: 38/1350
  45577. }
  45578. },
  45579. back: {
  45580. height: math.unit(5, "meters"),
  45581. name: "Back",
  45582. image: {
  45583. source: "./media/characters/cintia/back.svg",
  45584. extra: 1260/1166,
  45585. bottom: 98/1358
  45586. }
  45587. },
  45588. frontDick: {
  45589. height: math.unit(5, "meters"),
  45590. name: "Front (Dick)",
  45591. image: {
  45592. source: "./media/characters/cintia/front-dick.svg",
  45593. extra: 1312/1228,
  45594. bottom: 38/1350
  45595. }
  45596. },
  45597. backDick: {
  45598. height: math.unit(5, "meters"),
  45599. name: "Back (Dick)",
  45600. image: {
  45601. source: "./media/characters/cintia/back-dick.svg",
  45602. extra: 1260/1166,
  45603. bottom: 98/1358
  45604. }
  45605. },
  45606. bust: {
  45607. height: math.unit(1.97, "meters"),
  45608. name: "Bust",
  45609. image: {
  45610. source: "./media/characters/cintia/bust.svg",
  45611. extra: 617/565,
  45612. bottom: 0/617
  45613. }
  45614. },
  45615. },
  45616. [
  45617. {
  45618. name: "Normal",
  45619. height: math.unit(5, "meters"),
  45620. default: true
  45621. },
  45622. ]
  45623. ))
  45624. characterMakers.push(() => makeCharacter(
  45625. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45626. {
  45627. side: {
  45628. height: math.unit(100, "feet"),
  45629. name: "Side",
  45630. image: {
  45631. source: "./media/characters/denora/side.svg",
  45632. extra: 875/803,
  45633. bottom: 9/884
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Standard",
  45640. height: math.unit(100, "feet"),
  45641. default: true
  45642. },
  45643. {
  45644. name: "Grand",
  45645. height: math.unit(1000, "feet")
  45646. },
  45647. {
  45648. name: "Conquering",
  45649. height: math.unit(10000, "feet")
  45650. },
  45651. ]
  45652. ))
  45653. characterMakers.push(() => makeCharacter(
  45654. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45655. {
  45656. dressed: {
  45657. height: math.unit(8 + 5/12, "feet"),
  45658. weight: math.unit(700, "lb"),
  45659. name: "Dressed",
  45660. image: {
  45661. source: "./media/characters/kiva/dressed.svg",
  45662. extra: 1102/1055,
  45663. bottom: 60/1162
  45664. }
  45665. },
  45666. nude: {
  45667. height: math.unit(8 + 5/12, "feet"),
  45668. weight: math.unit(700, "lb"),
  45669. name: "Nude",
  45670. image: {
  45671. source: "./media/characters/kiva/nude.svg",
  45672. extra: 1102/1055,
  45673. bottom: 60/1162
  45674. }
  45675. },
  45676. },
  45677. [
  45678. {
  45679. name: "Base Height",
  45680. height: math.unit(8 + 5/12, "feet"),
  45681. default: true
  45682. },
  45683. {
  45684. name: "Macro",
  45685. height: math.unit(100, "feet")
  45686. },
  45687. {
  45688. name: "Max",
  45689. height: math.unit(3280, "feet")
  45690. },
  45691. ]
  45692. ))
  45693. characterMakers.push(() => makeCharacter(
  45694. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45695. {
  45696. front: {
  45697. height: math.unit(6 + 8/12, "feet"),
  45698. weight: math.unit(250, "lb"),
  45699. name: "Front",
  45700. image: {
  45701. source: "./media/characters/ztragon/front.svg",
  45702. extra: 1825/1684,
  45703. bottom: 98/1923
  45704. }
  45705. },
  45706. },
  45707. [
  45708. {
  45709. name: "Normal",
  45710. height: math.unit(6 + 8/12, "feet"),
  45711. default: true
  45712. },
  45713. {
  45714. name: "Macro",
  45715. height: math.unit(80, "feet")
  45716. },
  45717. ]
  45718. ))
  45719. characterMakers.push(() => makeCharacter(
  45720. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45721. {
  45722. front: {
  45723. height: math.unit(10.4, "feet"),
  45724. weight: math.unit(2, "tons"),
  45725. name: "Front",
  45726. image: {
  45727. source: "./media/characters/yesenia/front.svg",
  45728. extra: 1479/1474,
  45729. bottom: 233/1712
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Normal",
  45736. height: math.unit(10.4, "feet"),
  45737. default: true
  45738. },
  45739. ]
  45740. ))
  45741. characterMakers.push(() => makeCharacter(
  45742. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45743. {
  45744. normal: {
  45745. height: math.unit(6 + 1/12, "feet"),
  45746. weight: math.unit(180, "lb"),
  45747. name: "Normal",
  45748. image: {
  45749. source: "./media/characters/leanne-lycheborne/normal.svg",
  45750. extra: 1748/1660,
  45751. bottom: 98/1846
  45752. }
  45753. },
  45754. were: {
  45755. height: math.unit(12, "feet"),
  45756. weight: math.unit(1600, "lb"),
  45757. name: "Were",
  45758. image: {
  45759. source: "./media/characters/leanne-lycheborne/were.svg",
  45760. extra: 1485/1432,
  45761. bottom: 66/1551
  45762. }
  45763. },
  45764. },
  45765. [
  45766. {
  45767. name: "Normal",
  45768. height: math.unit(6 + 1/12, "feet"),
  45769. default: true
  45770. },
  45771. ]
  45772. ))
  45773. characterMakers.push(() => makeCharacter(
  45774. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45775. {
  45776. side: {
  45777. height: math.unit(13, "feet"),
  45778. name: "Side",
  45779. image: {
  45780. source: "./media/characters/kira-tyler/side.svg",
  45781. extra: 693/393,
  45782. bottom: 58/751
  45783. }
  45784. },
  45785. },
  45786. [
  45787. {
  45788. name: "Normal",
  45789. height: math.unit(13, "feet"),
  45790. default: true
  45791. },
  45792. ]
  45793. ))
  45794. characterMakers.push(() => makeCharacter(
  45795. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45796. {
  45797. front: {
  45798. height: math.unit(10.3, "feet"),
  45799. weight: math.unit(150, "lb"),
  45800. name: "Front",
  45801. image: {
  45802. source: "./media/characters/blaze/front.svg",
  45803. extra: 1378/1286,
  45804. bottom: 172/1550
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Normal",
  45811. height: math.unit(10.3, "feet"),
  45812. default: true
  45813. },
  45814. ]
  45815. ))
  45816. characterMakers.push(() => makeCharacter(
  45817. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45818. {
  45819. side: {
  45820. height: math.unit(2, "meters"),
  45821. weight: math.unit(400, "kg"),
  45822. name: "Side",
  45823. image: {
  45824. source: "./media/characters/anu/side.svg",
  45825. extra: 506/394,
  45826. bottom: 18/524
  45827. }
  45828. },
  45829. },
  45830. [
  45831. {
  45832. name: "Humanoid",
  45833. height: math.unit(2, "meters")
  45834. },
  45835. {
  45836. name: "Normal",
  45837. height: math.unit(5, "meters"),
  45838. default: true
  45839. },
  45840. ]
  45841. ))
  45842. characterMakers.push(() => makeCharacter(
  45843. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45844. {
  45845. front: {
  45846. height: math.unit(5 + 5/12, "feet"),
  45847. weight: math.unit(170, "lb"),
  45848. name: "Front",
  45849. image: {
  45850. source: "./media/characters/synx-the-lynx/front.svg",
  45851. extra: 1893/1745,
  45852. bottom: 17/1910
  45853. }
  45854. },
  45855. side: {
  45856. height: math.unit(5 + 5/12, "feet"),
  45857. weight: math.unit(170, "lb"),
  45858. name: "Side",
  45859. image: {
  45860. source: "./media/characters/synx-the-lynx/side.svg",
  45861. extra: 1884/1740,
  45862. bottom: 39/1923
  45863. }
  45864. },
  45865. back: {
  45866. height: math.unit(5 + 5/12, "feet"),
  45867. weight: math.unit(170, "lb"),
  45868. name: "Back",
  45869. image: {
  45870. source: "./media/characters/synx-the-lynx/back.svg",
  45871. extra: 1903/1755,
  45872. bottom: 14/1917
  45873. }
  45874. },
  45875. },
  45876. [
  45877. {
  45878. name: "Normal",
  45879. height: math.unit(5 + 5/12, "feet"),
  45880. default: true
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45886. {
  45887. back: {
  45888. height: math.unit(15, "feet"),
  45889. name: "Back",
  45890. image: {
  45891. source: "./media/characters/nadezda-fex/back.svg",
  45892. extra: 1695/1481,
  45893. bottom: 25/1720
  45894. }
  45895. },
  45896. },
  45897. [
  45898. {
  45899. name: "Normal",
  45900. height: math.unit(15, "feet"),
  45901. default: true
  45902. },
  45903. {
  45904. name: "Macro",
  45905. height: math.unit(2.5, "miles")
  45906. },
  45907. {
  45908. name: "Goddess",
  45909. height: math.unit(2, "multiverses")
  45910. },
  45911. ]
  45912. ))
  45913. characterMakers.push(() => makeCharacter(
  45914. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45915. {
  45916. front: {
  45917. height: math.unit(216, "cm"),
  45918. name: "Front",
  45919. image: {
  45920. source: "./media/characters/lev/front.svg",
  45921. extra: 1728/1670,
  45922. bottom: 82/1810
  45923. }
  45924. },
  45925. back: {
  45926. height: math.unit(216, "cm"),
  45927. name: "Back",
  45928. image: {
  45929. source: "./media/characters/lev/back.svg",
  45930. extra: 1738/1675,
  45931. bottom: 24/1762
  45932. }
  45933. },
  45934. dressed: {
  45935. height: math.unit(216, "cm"),
  45936. name: "Dressed",
  45937. image: {
  45938. source: "./media/characters/lev/dressed.svg",
  45939. extra: 1397/1351,
  45940. bottom: 73/1470
  45941. }
  45942. },
  45943. head: {
  45944. height: math.unit(0.51, "meter"),
  45945. name: "Head",
  45946. image: {
  45947. source: "./media/characters/lev/head.svg"
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(216, "cm"),
  45955. default: true
  45956. },
  45957. {
  45958. name: "Relatively Macro",
  45959. height: math.unit(80, "meters")
  45960. },
  45961. {
  45962. name: "Megamacro",
  45963. height: math.unit(21600, "meters")
  45964. },
  45965. {
  45966. name: "Megamacro+",
  45967. height: math.unit(64800, "meters")
  45968. },
  45969. ]
  45970. ))
  45971. characterMakers.push(() => makeCharacter(
  45972. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45973. {
  45974. front: {
  45975. height: math.unit(2, "meters"),
  45976. weight: math.unit(80, "kg"),
  45977. name: "Front",
  45978. image: {
  45979. source: "./media/characters/moka/front.svg",
  45980. extra: 1337/1255,
  45981. bottom: 58/1395
  45982. }
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Micro",
  45988. height: math.unit(15, "cm")
  45989. },
  45990. {
  45991. name: "Normal",
  45992. height: math.unit(2, "meters"),
  45993. default: true
  45994. },
  45995. {
  45996. name: "Macro",
  45997. height: math.unit(20, "meters"),
  45998. },
  45999. ]
  46000. ))
  46001. characterMakers.push(() => makeCharacter(
  46002. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46003. {
  46004. front: {
  46005. height: math.unit(9, "feet"),
  46006. weight: math.unit(240, "lb"),
  46007. name: "Front",
  46008. image: {
  46009. source: "./media/characters/kuzco/front.svg",
  46010. extra: 1593/1487,
  46011. bottom: 32/1625
  46012. }
  46013. },
  46014. side: {
  46015. height: math.unit(9, "feet"),
  46016. weight: math.unit(240, "lb"),
  46017. name: "Side",
  46018. image: {
  46019. source: "./media/characters/kuzco/side.svg",
  46020. extra: 1575/1485,
  46021. bottom: 30/1605
  46022. }
  46023. },
  46024. back: {
  46025. height: math.unit(9, "feet"),
  46026. weight: math.unit(240, "lb"),
  46027. name: "Back",
  46028. image: {
  46029. source: "./media/characters/kuzco/back.svg",
  46030. extra: 1603/1514,
  46031. bottom: 14/1617
  46032. }
  46033. },
  46034. },
  46035. [
  46036. {
  46037. name: "Normal",
  46038. height: math.unit(9, "feet"),
  46039. default: true
  46040. },
  46041. ]
  46042. ))
  46043. characterMakers.push(() => makeCharacter(
  46044. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46045. {
  46046. side: {
  46047. height: math.unit(2, "meters"),
  46048. weight: math.unit(300, "kg"),
  46049. name: "Side",
  46050. image: {
  46051. source: "./media/characters/ceruleus/side.svg",
  46052. extra: 1068/974,
  46053. bottom: 126/1194
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(16, "meters"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(9, "feet"),
  46070. weight: math.unit(500, "kg"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/acouya/front.svg",
  46074. extra: 1660/1473,
  46075. bottom: 28/1688
  46076. }
  46077. },
  46078. },
  46079. [
  46080. {
  46081. name: "Normal",
  46082. height: math.unit(9, "feet"),
  46083. default: true
  46084. },
  46085. ]
  46086. ))
  46087. characterMakers.push(() => makeCharacter(
  46088. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46089. {
  46090. front: {
  46091. height: math.unit(5 + 6/12, "feet"),
  46092. weight: math.unit(195, "lb"),
  46093. name: "Front",
  46094. image: {
  46095. source: "./media/characters/vant/front.svg",
  46096. extra: 1396/1320,
  46097. bottom: 20/1416
  46098. }
  46099. },
  46100. back: {
  46101. height: math.unit(5 + 6/12, "feet"),
  46102. weight: math.unit(195, "lb"),
  46103. name: "Back",
  46104. image: {
  46105. source: "./media/characters/vant/back.svg",
  46106. extra: 1396/1320,
  46107. bottom: 20/1416
  46108. }
  46109. },
  46110. maw: {
  46111. height: math.unit(0.75, "feet"),
  46112. name: "Maw",
  46113. image: {
  46114. source: "./media/characters/vant/maw.svg"
  46115. }
  46116. },
  46117. paw: {
  46118. height: math.unit(1.07, "feet"),
  46119. name: "Paw",
  46120. image: {
  46121. source: "./media/characters/vant/paw.svg"
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Micro",
  46128. height: math.unit(0.25, "inches")
  46129. },
  46130. {
  46131. name: "Normal",
  46132. height: math.unit(5 + 6/12, "feet"),
  46133. default: true
  46134. },
  46135. {
  46136. name: "Macro",
  46137. height: math.unit(75, "feet")
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46143. {
  46144. front: {
  46145. height: math.unit(30, "meters"),
  46146. weight: math.unit(363, "tons"),
  46147. name: "Front",
  46148. image: {
  46149. source: "./media/characters/ahra/front.svg",
  46150. extra: 1914/1814,
  46151. bottom: 46/1960
  46152. }
  46153. },
  46154. },
  46155. [
  46156. {
  46157. name: "Macro",
  46158. height: math.unit(30, "meters"),
  46159. default: true
  46160. },
  46161. ]
  46162. ))
  46163. characterMakers.push(() => makeCharacter(
  46164. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46165. {
  46166. undressed: {
  46167. height: math.unit(2, "m"),
  46168. weight: math.unit(250, "kg"),
  46169. name: "Undressed",
  46170. image: {
  46171. source: "./media/characters/coriander/undressed.svg",
  46172. extra: 1757/1606,
  46173. bottom: 107/1864
  46174. }
  46175. },
  46176. dressed: {
  46177. height: math.unit(2, "m"),
  46178. weight: math.unit(250, "kg"),
  46179. name: "Dressed",
  46180. image: {
  46181. source: "./media/characters/coriander/dressed.svg",
  46182. extra: 1757/1606,
  46183. bottom: 107/1864
  46184. }
  46185. },
  46186. },
  46187. [
  46188. {
  46189. name: "Normal",
  46190. height: math.unit(4, "meters"),
  46191. default: true
  46192. },
  46193. {
  46194. name: "XL",
  46195. height: math.unit(6, "meters")
  46196. },
  46197. {
  46198. name: "XXL",
  46199. height: math.unit(8, "meters")
  46200. },
  46201. ]
  46202. ))
  46203. characterMakers.push(() => makeCharacter(
  46204. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46205. {
  46206. front: {
  46207. height: math.unit(6, "feet"),
  46208. name: "Front",
  46209. image: {
  46210. source: "./media/characters/syrinx/front.svg",
  46211. extra: 1557/1259,
  46212. bottom: 171/1728
  46213. }
  46214. },
  46215. },
  46216. [
  46217. {
  46218. name: "Normal",
  46219. height: math.unit(6 + 3/12, "feet"),
  46220. default: true
  46221. },
  46222. ]
  46223. ))
  46224. characterMakers.push(() => makeCharacter(
  46225. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46226. {
  46227. front: {
  46228. height: math.unit(11 + 6/12, "feet"),
  46229. weight: math.unit(1.5, "tons"),
  46230. name: "Front",
  46231. image: {
  46232. source: "./media/characters/bor/front.svg",
  46233. extra: 1189/1109,
  46234. bottom: 170/1359
  46235. }
  46236. },
  46237. },
  46238. [
  46239. {
  46240. name: "Normal",
  46241. height: math.unit(11 + 6/12, "feet"),
  46242. default: true
  46243. },
  46244. {
  46245. name: "Macro",
  46246. height: math.unit(32 + 9/12, "feet")
  46247. },
  46248. ]
  46249. ))
  46250. characterMakers.push(() => makeCharacter(
  46251. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46252. {
  46253. anthro: {
  46254. height: math.unit(9, "feet"),
  46255. weight: math.unit(2076, "lb"),
  46256. name: "Anthro",
  46257. image: {
  46258. source: "./media/characters/abacus/anthro.svg",
  46259. extra: 1540/1494,
  46260. bottom: 233/1773
  46261. }
  46262. },
  46263. pigeon: {
  46264. height: math.unit(1, "feet"),
  46265. name: "Pigeon",
  46266. image: {
  46267. source: "./media/characters/abacus/pigeon.svg",
  46268. extra: 528/525,
  46269. bottom: 46/574
  46270. }
  46271. },
  46272. },
  46273. [
  46274. {
  46275. name: "Normal",
  46276. height: math.unit(9, "feet"),
  46277. default: true
  46278. },
  46279. ]
  46280. ))
  46281. characterMakers.push(() => makeCharacter(
  46282. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46283. {
  46284. side: {
  46285. height: math.unit(6, "feet"),
  46286. name: "Side",
  46287. image: {
  46288. source: "./media/characters/delkhan/side.svg",
  46289. extra: 1884/1786,
  46290. bottom: 308/2192
  46291. }
  46292. },
  46293. head: {
  46294. height: math.unit(3.38, "feet"),
  46295. name: "Head",
  46296. image: {
  46297. source: "./media/characters/delkhan/head.svg"
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "Normal",
  46304. height: math.unit(72, "feet"),
  46305. default: true
  46306. },
  46307. {
  46308. name: "Giant",
  46309. height: math.unit(172, "feet")
  46310. },
  46311. ]
  46312. ))
  46313. characterMakers.push(() => makeCharacter(
  46314. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46315. {
  46316. standing: {
  46317. height: math.unit(6, "feet"),
  46318. name: "Standing",
  46319. image: {
  46320. source: "./media/characters/euchidat/standing.svg",
  46321. extra: 1612/1553,
  46322. bottom: 116/1728
  46323. }
  46324. },
  46325. leaning: {
  46326. height: math.unit(6, "feet"),
  46327. name: "Leaning",
  46328. image: {
  46329. source: "./media/characters/euchidat/leaning.svg",
  46330. extra: 1719/1674,
  46331. bottom: 27/1746
  46332. }
  46333. },
  46334. },
  46335. [
  46336. {
  46337. name: "Normal",
  46338. height: math.unit(175, "feet"),
  46339. default: true
  46340. },
  46341. {
  46342. name: "Megamacro",
  46343. height: math.unit(190, "miles")
  46344. },
  46345. {
  46346. name: "Gigamacro",
  46347. height: math.unit(190000, "miles")
  46348. },
  46349. ]
  46350. ))
  46351. characterMakers.push(() => makeCharacter(
  46352. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46353. {
  46354. front: {
  46355. height: math.unit(6, "feet"),
  46356. weight: math.unit(150, "lb"),
  46357. name: "Front",
  46358. image: {
  46359. source: "./media/characters/rebecca-stack/front.svg",
  46360. extra: 1256/1201,
  46361. bottom: 18/1274
  46362. }
  46363. },
  46364. },
  46365. [
  46366. {
  46367. name: "Normal",
  46368. height: math.unit(5 + 8/12, "feet"),
  46369. default: true
  46370. },
  46371. {
  46372. name: "Demolitionist",
  46373. height: math.unit(200, "feet")
  46374. },
  46375. {
  46376. name: "Out of Control",
  46377. height: math.unit(2, "miles")
  46378. },
  46379. {
  46380. name: "Giga",
  46381. height: math.unit(7200, "miles")
  46382. },
  46383. ]
  46384. ))
  46385. characterMakers.push(() => makeCharacter(
  46386. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46387. {
  46388. front: {
  46389. height: math.unit(6, "feet"),
  46390. weight: math.unit(150, "lb"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/jenny-cartwright/front.svg",
  46394. extra: 1384/1376,
  46395. bottom: 58/1442
  46396. }
  46397. },
  46398. },
  46399. [
  46400. {
  46401. name: "Normal",
  46402. height: math.unit(6 + 7/12, "feet"),
  46403. default: true
  46404. },
  46405. {
  46406. name: "Librarian",
  46407. height: math.unit(55, "feet")
  46408. },
  46409. {
  46410. name: "Sightseer",
  46411. height: math.unit(50, "miles")
  46412. },
  46413. {
  46414. name: "Giga",
  46415. height: math.unit(30000, "miles")
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46421. {
  46422. nude: {
  46423. height: math.unit(8, "feet"),
  46424. weight: math.unit(225, "lb"),
  46425. name: "Nude",
  46426. image: {
  46427. source: "./media/characters/marvy/nude.svg",
  46428. extra: 1900/1683,
  46429. bottom: 89/1989
  46430. }
  46431. },
  46432. dressed: {
  46433. height: math.unit(8, "feet"),
  46434. weight: math.unit(225, "lb"),
  46435. name: "Dressed",
  46436. image: {
  46437. source: "./media/characters/marvy/dressed.svg",
  46438. extra: 1900/1683,
  46439. bottom: 89/1989
  46440. }
  46441. },
  46442. head: {
  46443. height: math.unit(2.85, "feet"),
  46444. name: "Head",
  46445. image: {
  46446. source: "./media/characters/marvy/head.svg"
  46447. }
  46448. },
  46449. },
  46450. [
  46451. {
  46452. name: "Normal",
  46453. height: math.unit(8, "feet"),
  46454. default: true
  46455. },
  46456. ]
  46457. ))
  46458. characterMakers.push(() => makeCharacter(
  46459. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46460. {
  46461. front: {
  46462. height: math.unit(8, "feet"),
  46463. weight: math.unit(250, "lb"),
  46464. name: "Front",
  46465. image: {
  46466. source: "./media/characters/leah/front.svg",
  46467. extra: 1257/1149,
  46468. bottom: 109/1366
  46469. }
  46470. },
  46471. },
  46472. [
  46473. {
  46474. name: "Normal",
  46475. height: math.unit(8, "feet"),
  46476. default: true
  46477. },
  46478. {
  46479. name: "Minimacro",
  46480. height: math.unit(40, "feet")
  46481. },
  46482. {
  46483. name: "Macro",
  46484. height: math.unit(124, "feet")
  46485. },
  46486. {
  46487. name: "Megamacro",
  46488. height: math.unit(850, "feet")
  46489. },
  46490. ]
  46491. ))
  46492. characterMakers.push(() => makeCharacter(
  46493. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46494. {
  46495. side: {
  46496. height: math.unit(13 + 6/12, "feet"),
  46497. weight: math.unit(3200, "lb"),
  46498. name: "Side",
  46499. image: {
  46500. source: "./media/characters/alvir/side.svg",
  46501. extra: 896/589,
  46502. bottom: 26/922
  46503. }
  46504. },
  46505. },
  46506. [
  46507. {
  46508. name: "Normal",
  46509. height: math.unit(13 + 6/12, "feet"),
  46510. default: true
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(5 + 4/12, "feet"),
  46519. weight: math.unit(236, "lb"),
  46520. name: "Front",
  46521. image: {
  46522. source: "./media/characters/zaina-khalil/front.svg",
  46523. extra: 1533/1485,
  46524. bottom: 94/1627
  46525. }
  46526. },
  46527. side: {
  46528. height: math.unit(5 + 4/12, "feet"),
  46529. weight: math.unit(236, "lb"),
  46530. name: "Side",
  46531. image: {
  46532. source: "./media/characters/zaina-khalil/side.svg",
  46533. extra: 1537/1498,
  46534. bottom: 66/1603
  46535. }
  46536. },
  46537. back: {
  46538. height: math.unit(5 + 4/12, "feet"),
  46539. weight: math.unit(236, "lb"),
  46540. name: "Back",
  46541. image: {
  46542. source: "./media/characters/zaina-khalil/back.svg",
  46543. extra: 1546/1494,
  46544. bottom: 89/1635
  46545. }
  46546. },
  46547. },
  46548. [
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(5 + 4/12, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46558. {
  46559. side: {
  46560. height: math.unit(12, "feet"),
  46561. weight: math.unit(4000, "lb"),
  46562. name: "Side",
  46563. image: {
  46564. source: "./media/characters/terry/side.svg",
  46565. extra: 1518/1439,
  46566. bottom: 149/1667
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "Normal",
  46573. height: math.unit(12, "feet"),
  46574. default: true
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46580. {
  46581. front: {
  46582. height: math.unit(12, "feet"),
  46583. weight: math.unit(1500, "lb"),
  46584. name: "Front",
  46585. image: {
  46586. source: "./media/characters/kahea/front.svg",
  46587. extra: 1722/1617,
  46588. bottom: 179/1901
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(12, "feet"),
  46596. default: true
  46597. },
  46598. ]
  46599. ))
  46600. characterMakers.push(() => makeCharacter(
  46601. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46602. {
  46603. demonFront: {
  46604. height: math.unit(36, "feet"),
  46605. name: "Front",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-front.svg",
  46608. extra: 1705/1673,
  46609. bottom: 198/1903
  46610. },
  46611. form: "demon",
  46612. default: true
  46613. },
  46614. demonBack: {
  46615. height: math.unit(36, "feet"),
  46616. name: "Back",
  46617. image: {
  46618. source: "./media/characters/alex-xuria/demon-back.svg",
  46619. extra: 1725/1693,
  46620. bottom: 70/1795
  46621. },
  46622. form: "demon"
  46623. },
  46624. demonHead: {
  46625. height: math.unit(2.14, "meters"),
  46626. name: "Head",
  46627. image: {
  46628. source: "./media/characters/alex-xuria/demon-head.svg"
  46629. },
  46630. form: "demon"
  46631. },
  46632. demonHand: {
  46633. height: math.unit(1.61, "meters"),
  46634. name: "Hand",
  46635. image: {
  46636. source: "./media/characters/alex-xuria/demon-hand.svg"
  46637. },
  46638. form: "demon"
  46639. },
  46640. demonPaw: {
  46641. height: math.unit(1.35, "meters"),
  46642. name: "Paw",
  46643. image: {
  46644. source: "./media/characters/alex-xuria/demon-paw.svg"
  46645. },
  46646. form: "demon"
  46647. },
  46648. demonFoot: {
  46649. height: math.unit(2.2, "meters"),
  46650. name: "Foot",
  46651. image: {
  46652. source: "./media/characters/alex-xuria/demon-foot.svg"
  46653. },
  46654. form: "demon"
  46655. },
  46656. demonCock: {
  46657. height: math.unit(1.74, "meters"),
  46658. name: "Cock",
  46659. image: {
  46660. source: "./media/characters/alex-xuria/demon-cock.svg"
  46661. },
  46662. form: "demon"
  46663. },
  46664. demonTailClosed: {
  46665. height: math.unit(1.47, "meters"),
  46666. name: "Tail (Closed)",
  46667. image: {
  46668. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46669. },
  46670. form: "demon"
  46671. },
  46672. demonTailOpen: {
  46673. height: math.unit(2.85, "meters"),
  46674. name: "Tail (Open)",
  46675. image: {
  46676. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46677. },
  46678. form: "demon"
  46679. },
  46680. incubusFront: {
  46681. height: math.unit(12, "feet"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/alex-xuria/incubus-front.svg",
  46685. extra: 1754/1677,
  46686. bottom: 125/1879
  46687. },
  46688. form: "incubus",
  46689. default: true
  46690. },
  46691. incubusBack: {
  46692. height: math.unit(12, "feet"),
  46693. name: "Back",
  46694. image: {
  46695. source: "./media/characters/alex-xuria/incubus-back.svg",
  46696. extra: 1702/1647,
  46697. bottom: 30/1732
  46698. },
  46699. form: "incubus"
  46700. },
  46701. incubusHead: {
  46702. height: math.unit(3.45, "feet"),
  46703. name: "Head",
  46704. image: {
  46705. source: "./media/characters/alex-xuria/incubus-head.svg"
  46706. },
  46707. form: "incubus"
  46708. },
  46709. rabbitFront: {
  46710. height: math.unit(6, "feet"),
  46711. name: "Front",
  46712. image: {
  46713. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46714. extra: 1369/1349,
  46715. bottom: 45/1414
  46716. },
  46717. form: "rabbit",
  46718. default: true
  46719. },
  46720. rabbitSide: {
  46721. height: math.unit(6, "feet"),
  46722. name: "Side",
  46723. image: {
  46724. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46725. extra: 1370/1356,
  46726. bottom: 37/1407
  46727. },
  46728. form: "rabbit"
  46729. },
  46730. rabbitBack: {
  46731. height: math.unit(6, "feet"),
  46732. name: "Back",
  46733. image: {
  46734. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46735. extra: 1375/1358,
  46736. bottom: 43/1418
  46737. },
  46738. form: "rabbit"
  46739. },
  46740. },
  46741. [
  46742. {
  46743. name: "Normal",
  46744. height: math.unit(6, "feet"),
  46745. default: true,
  46746. form: "rabbit"
  46747. },
  46748. {
  46749. name: "Incubus",
  46750. height: math.unit(12, "feet"),
  46751. default: true,
  46752. form: "incubus"
  46753. },
  46754. {
  46755. name: "Demon",
  46756. height: math.unit(36, "feet"),
  46757. default: true,
  46758. form: "demon"
  46759. }
  46760. ],
  46761. {
  46762. "demon": {
  46763. name: "Demon",
  46764. default: true
  46765. },
  46766. "incubus": {
  46767. name: "Incubus",
  46768. },
  46769. "rabbit": {
  46770. name: "Rabbit"
  46771. }
  46772. }
  46773. ))
  46774. characterMakers.push(() => makeCharacter(
  46775. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46776. {
  46777. front: {
  46778. height: math.unit(7 + 5/12, "feet"),
  46779. weight: math.unit(510, "lb"),
  46780. name: "Front",
  46781. image: {
  46782. source: "./media/characters/syrup/front.svg",
  46783. extra: 932/916,
  46784. bottom: 26/958
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "Normal",
  46791. height: math.unit(7 + 5/12, "feet"),
  46792. default: true
  46793. },
  46794. {
  46795. name: "Big",
  46796. height: math.unit(50, "feet")
  46797. },
  46798. {
  46799. name: "Macro",
  46800. height: math.unit(300, "feet")
  46801. },
  46802. {
  46803. name: "Megamacro",
  46804. height: math.unit(1, "mile")
  46805. },
  46806. ]
  46807. ))
  46808. characterMakers.push(() => makeCharacter(
  46809. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46810. {
  46811. front: {
  46812. height: math.unit(6 + 9/12, "feet"),
  46813. name: "Front",
  46814. image: {
  46815. source: "./media/characters/zeimne/front.svg",
  46816. extra: 1969/1806,
  46817. bottom: 53/2022
  46818. }
  46819. },
  46820. },
  46821. [
  46822. {
  46823. name: "Normal",
  46824. height: math.unit(6 + 9/12, "feet"),
  46825. default: true
  46826. },
  46827. {
  46828. name: "Giant",
  46829. height: math.unit(550, "feet")
  46830. },
  46831. {
  46832. name: "Mega",
  46833. height: math.unit(3, "miles")
  46834. },
  46835. {
  46836. name: "Giga",
  46837. height: math.unit(250, "miles")
  46838. },
  46839. {
  46840. name: "Tera",
  46841. height: math.unit(1, "AU")
  46842. },
  46843. ]
  46844. ))
  46845. characterMakers.push(() => makeCharacter(
  46846. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46847. {
  46848. front: {
  46849. height: math.unit(5 + 2/12, "feet"),
  46850. name: "Front",
  46851. image: {
  46852. source: "./media/characters/grar/front.svg",
  46853. extra: 1331/1119,
  46854. bottom: 60/1391
  46855. }
  46856. },
  46857. back: {
  46858. height: math.unit(5 + 2/12, "feet"),
  46859. name: "Back",
  46860. image: {
  46861. source: "./media/characters/grar/back.svg",
  46862. extra: 1385/1169,
  46863. bottom: 23/1408
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(5 + 2/12, "feet"),
  46871. default: true
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46877. {
  46878. front: {
  46879. height: math.unit(13 + 7/12, "feet"),
  46880. weight: math.unit(2200, "lb"),
  46881. name: "Front",
  46882. image: {
  46883. source: "./media/characters/endraya/front.svg",
  46884. extra: 1289/1215,
  46885. bottom: 50/1339
  46886. }
  46887. },
  46888. nude: {
  46889. height: math.unit(13 + 7/12, "feet"),
  46890. weight: math.unit(2200, "lb"),
  46891. name: "Nude",
  46892. image: {
  46893. source: "./media/characters/endraya/nude.svg",
  46894. extra: 1247/1171,
  46895. bottom: 40/1287
  46896. }
  46897. },
  46898. head: {
  46899. height: math.unit(2.6, "feet"),
  46900. name: "Head",
  46901. image: {
  46902. source: "./media/characters/endraya/head.svg"
  46903. }
  46904. },
  46905. slit: {
  46906. height: math.unit(3.4, "feet"),
  46907. name: "Slit",
  46908. image: {
  46909. source: "./media/characters/endraya/slit.svg"
  46910. }
  46911. },
  46912. },
  46913. [
  46914. {
  46915. name: "Normal",
  46916. height: math.unit(13 + 7/12, "feet"),
  46917. default: true
  46918. },
  46919. {
  46920. name: "Macro",
  46921. height: math.unit(200, "feet")
  46922. },
  46923. ]
  46924. ))
  46925. characterMakers.push(() => makeCharacter(
  46926. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46927. {
  46928. front: {
  46929. height: math.unit(1.81, "meters"),
  46930. weight: math.unit(69, "kg"),
  46931. name: "Front",
  46932. image: {
  46933. source: "./media/characters/rodryana/front.svg",
  46934. extra: 2002/1921,
  46935. bottom: 53/2055
  46936. }
  46937. },
  46938. back: {
  46939. height: math.unit(1.81, "meters"),
  46940. weight: math.unit(69, "kg"),
  46941. name: "Back",
  46942. image: {
  46943. source: "./media/characters/rodryana/back.svg",
  46944. extra: 1993/1926,
  46945. bottom: 48/2041
  46946. }
  46947. },
  46948. maw: {
  46949. height: math.unit(0.19769417475, "meters"),
  46950. name: "Maw",
  46951. image: {
  46952. source: "./media/characters/rodryana/maw.svg"
  46953. }
  46954. },
  46955. slit: {
  46956. height: math.unit(0.31631067961, "meters"),
  46957. name: "Slit",
  46958. image: {
  46959. source: "./media/characters/rodryana/slit.svg"
  46960. }
  46961. },
  46962. },
  46963. [
  46964. {
  46965. name: "Normal",
  46966. height: math.unit(1.81, "meters")
  46967. },
  46968. {
  46969. name: "Mini Macro",
  46970. height: math.unit(181, "meters")
  46971. },
  46972. {
  46973. name: "Macro",
  46974. height: math.unit(452, "meters"),
  46975. default: true
  46976. },
  46977. {
  46978. name: "Mega Macro",
  46979. height: math.unit(1.375, "km")
  46980. },
  46981. {
  46982. name: "Giga Macro",
  46983. height: math.unit(13.575, "km")
  46984. },
  46985. ]
  46986. ))
  46987. characterMakers.push(() => makeCharacter(
  46988. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46989. {
  46990. front: {
  46991. height: math.unit(6, "feet"),
  46992. weight: math.unit(1000, "lb"),
  46993. name: "Front",
  46994. image: {
  46995. source: "./media/characters/asaya/front.svg",
  46996. extra: 1460/1200,
  46997. bottom: 71/1531
  46998. }
  46999. },
  47000. },
  47001. [
  47002. {
  47003. name: "Normal",
  47004. height: math.unit(8, "km"),
  47005. default: true
  47006. },
  47007. ]
  47008. ))
  47009. characterMakers.push(() => makeCharacter(
  47010. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47011. {
  47012. front: {
  47013. height: math.unit(3.5, "meters"),
  47014. name: "Front",
  47015. image: {
  47016. source: "./media/characters/sarzu-and-israz/front.svg",
  47017. extra: 1570/1558,
  47018. bottom: 150/1720
  47019. },
  47020. },
  47021. back: {
  47022. height: math.unit(3.5, "meters"),
  47023. name: "Back",
  47024. image: {
  47025. source: "./media/characters/sarzu-and-israz/back.svg",
  47026. extra: 1523/1509,
  47027. bottom: 132/1655
  47028. },
  47029. },
  47030. frontFemale: {
  47031. height: math.unit(3.5, "meters"),
  47032. name: "Front (Female)",
  47033. image: {
  47034. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47035. extra: 1570/1558,
  47036. bottom: 150/1720
  47037. },
  47038. },
  47039. frontHerm: {
  47040. height: math.unit(3.5, "meters"),
  47041. name: "Front (Herm)",
  47042. image: {
  47043. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47044. extra: 1570/1558,
  47045. bottom: 150/1720
  47046. },
  47047. },
  47048. },
  47049. [
  47050. {
  47051. name: "Normal",
  47052. height: math.unit(3.5, "meters"),
  47053. default: true,
  47054. },
  47055. {
  47056. name: "Macro",
  47057. height: math.unit(65.5, "meters"),
  47058. },
  47059. ],
  47060. ))
  47061. characterMakers.push(() => makeCharacter(
  47062. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47063. {
  47064. front: {
  47065. height: math.unit(6, "feet"),
  47066. weight: math.unit(250, "lb"),
  47067. name: "Front",
  47068. image: {
  47069. source: "./media/characters/zenimma/front.svg",
  47070. extra: 1346/1320,
  47071. bottom: 58/1404
  47072. }
  47073. },
  47074. back: {
  47075. height: math.unit(6, "feet"),
  47076. weight: math.unit(250, "lb"),
  47077. name: "Back",
  47078. image: {
  47079. source: "./media/characters/zenimma/back.svg",
  47080. extra: 1324/1308,
  47081. bottom: 44/1368
  47082. }
  47083. },
  47084. dick: {
  47085. height: math.unit(1.44, "feet"),
  47086. name: "Dick",
  47087. image: {
  47088. source: "./media/characters/zenimma/dick.svg"
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Canon Height",
  47095. height: math.unit(66, "miles"),
  47096. default: true
  47097. },
  47098. ]
  47099. ))
  47100. characterMakers.push(() => makeCharacter(
  47101. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47102. {
  47103. nude: {
  47104. height: math.unit(6, "feet"),
  47105. weight: math.unit(150, "lb"),
  47106. name: "Nude",
  47107. image: {
  47108. source: "./media/characters/shavon/nude.svg",
  47109. extra: 1242/1096,
  47110. bottom: 98/1340
  47111. }
  47112. },
  47113. dressed: {
  47114. height: math.unit(6, "feet"),
  47115. weight: math.unit(150, "lb"),
  47116. name: "Dressed",
  47117. image: {
  47118. source: "./media/characters/shavon/dressed.svg",
  47119. extra: 1242/1096,
  47120. bottom: 98/1340
  47121. }
  47122. },
  47123. },
  47124. [
  47125. {
  47126. name: "Macro",
  47127. height: math.unit(255, "feet"),
  47128. default: true
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47134. {
  47135. front: {
  47136. height: math.unit(6, "feet"),
  47137. name: "Front",
  47138. image: {
  47139. source: "./media/characters/steph/front.svg",
  47140. extra: 1430/1330,
  47141. bottom: 54/1484
  47142. }
  47143. },
  47144. },
  47145. [
  47146. {
  47147. name: "Normal",
  47148. height: math.unit(6, "feet"),
  47149. default: true
  47150. },
  47151. ]
  47152. ))
  47153. characterMakers.push(() => makeCharacter(
  47154. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47155. {
  47156. front: {
  47157. height: math.unit(9, "feet"),
  47158. weight: math.unit(400, "lb"),
  47159. name: "Front",
  47160. image: {
  47161. source: "./media/characters/kil'aman/front.svg",
  47162. extra: 1210/1159,
  47163. bottom: 109/1319
  47164. }
  47165. },
  47166. head: {
  47167. height: math.unit(2.14, "feet"),
  47168. name: "Head",
  47169. image: {
  47170. source: "./media/characters/kil'aman/head.svg"
  47171. }
  47172. },
  47173. maw: {
  47174. height: math.unit(1.21, "feet"),
  47175. name: "Maw",
  47176. image: {
  47177. source: "./media/characters/kil'aman/maw.svg"
  47178. }
  47179. },
  47180. foot: {
  47181. height: math.unit(1.7, "feet"),
  47182. name: "Foot",
  47183. image: {
  47184. source: "./media/characters/kil'aman/foot.svg"
  47185. }
  47186. },
  47187. dick: {
  47188. height: math.unit(2.1, "feet"),
  47189. name: "Dick",
  47190. image: {
  47191. source: "./media/characters/kil'aman/dick.svg"
  47192. }
  47193. },
  47194. },
  47195. [
  47196. {
  47197. name: "Normal",
  47198. height: math.unit(9, "feet")
  47199. },
  47200. {
  47201. name: "Canon Height",
  47202. height: math.unit(10, "miles"),
  47203. default: true
  47204. },
  47205. {
  47206. name: "Maximum",
  47207. height: math.unit(6e9, "miles")
  47208. },
  47209. ]
  47210. ))
  47211. characterMakers.push(() => makeCharacter(
  47212. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47213. {
  47214. front: {
  47215. height: math.unit(90, "feet"),
  47216. weight: math.unit(675000, "lb"),
  47217. name: "Front",
  47218. image: {
  47219. source: "./media/characters/qadan/front.svg",
  47220. extra: 1012/1004,
  47221. bottom: 78/1090
  47222. }
  47223. },
  47224. back: {
  47225. height: math.unit(90, "feet"),
  47226. weight: math.unit(675000, "lb"),
  47227. name: "Back",
  47228. image: {
  47229. source: "./media/characters/qadan/back.svg",
  47230. extra: 1042/1031,
  47231. bottom: 55/1097
  47232. }
  47233. },
  47234. armored: {
  47235. height: math.unit(90, "feet"),
  47236. weight: math.unit(675000, "lb"),
  47237. name: "Armored",
  47238. image: {
  47239. source: "./media/characters/qadan/armored.svg",
  47240. extra: 1047/1037,
  47241. bottom: 48/1095
  47242. }
  47243. },
  47244. },
  47245. [
  47246. {
  47247. name: "Normal",
  47248. height: math.unit(90, "feet"),
  47249. default: true
  47250. },
  47251. ]
  47252. ))
  47253. characterMakers.push(() => makeCharacter(
  47254. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47255. {
  47256. front: {
  47257. height: math.unit(6, "feet"),
  47258. weight: math.unit(225, "lb"),
  47259. name: "Front",
  47260. image: {
  47261. source: "./media/characters/brooke/front.svg",
  47262. extra: 1050/1010,
  47263. bottom: 66/1116
  47264. }
  47265. },
  47266. back: {
  47267. height: math.unit(6, "feet"),
  47268. weight: math.unit(225, "lb"),
  47269. name: "Back",
  47270. image: {
  47271. source: "./media/characters/brooke/back.svg",
  47272. extra: 1053/1013,
  47273. bottom: 41/1094
  47274. }
  47275. },
  47276. dressed: {
  47277. height: math.unit(6, "feet"),
  47278. weight: math.unit(225, "lb"),
  47279. name: "Dressed",
  47280. image: {
  47281. source: "./media/characters/brooke/dressed.svg",
  47282. extra: 1050/1010,
  47283. bottom: 66/1116
  47284. }
  47285. },
  47286. },
  47287. [
  47288. {
  47289. name: "Canon Height",
  47290. height: math.unit(500, "miles"),
  47291. default: true
  47292. },
  47293. ]
  47294. ))
  47295. characterMakers.push(() => makeCharacter(
  47296. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47297. {
  47298. front: {
  47299. height: math.unit(6 + 2/12, "feet"),
  47300. weight: math.unit(210, "lb"),
  47301. name: "Front",
  47302. image: {
  47303. source: "./media/characters/wubs/front.svg",
  47304. extra: 1345/1325,
  47305. bottom: 70/1415
  47306. }
  47307. },
  47308. back: {
  47309. height: math.unit(6 + 2/12, "feet"),
  47310. weight: math.unit(210, "lb"),
  47311. name: "Back",
  47312. image: {
  47313. source: "./media/characters/wubs/back.svg",
  47314. extra: 1296/1275,
  47315. bottom: 58/1354
  47316. }
  47317. },
  47318. },
  47319. [
  47320. {
  47321. name: "Normal",
  47322. height: math.unit(6 + 2/12, "feet"),
  47323. default: true
  47324. },
  47325. {
  47326. name: "Macro",
  47327. height: math.unit(1000, "feet")
  47328. },
  47329. {
  47330. name: "Megamacro",
  47331. height: math.unit(1, "mile")
  47332. },
  47333. ]
  47334. ))
  47335. characterMakers.push(() => makeCharacter(
  47336. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47337. {
  47338. front: {
  47339. height: math.unit(4, "feet"),
  47340. weight: math.unit(120, "lb"),
  47341. name: "Front",
  47342. image: {
  47343. source: "./media/characters/blue/front.svg",
  47344. extra: 1636/1525,
  47345. bottom: 43/1679
  47346. }
  47347. },
  47348. back: {
  47349. height: math.unit(4, "feet"),
  47350. weight: math.unit(120, "lb"),
  47351. name: "Back",
  47352. image: {
  47353. source: "./media/characters/blue/back.svg",
  47354. extra: 1660/1560,
  47355. bottom: 57/1717
  47356. }
  47357. },
  47358. paws: {
  47359. height: math.unit(0.826, "feet"),
  47360. name: "Paws",
  47361. image: {
  47362. source: "./media/characters/blue/paws.svg"
  47363. }
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Micro",
  47369. height: math.unit(3, "inches")
  47370. },
  47371. {
  47372. name: "Normal",
  47373. height: math.unit(4, "feet"),
  47374. default: true
  47375. },
  47376. {
  47377. name: "Femenine Form",
  47378. height: math.unit(14, "feet")
  47379. },
  47380. {
  47381. name: "Werebat Form",
  47382. height: math.unit(18, "feet")
  47383. },
  47384. ]
  47385. ))
  47386. characterMakers.push(() => makeCharacter(
  47387. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47388. {
  47389. female: {
  47390. height: math.unit(7 + 4/12, "feet"),
  47391. weight: math.unit(243, "lb"),
  47392. name: "Female",
  47393. image: {
  47394. source: "./media/characters/kaya/female.svg",
  47395. extra: 975/898,
  47396. bottom: 34/1009
  47397. }
  47398. },
  47399. herm: {
  47400. height: math.unit(7 + 4/12, "feet"),
  47401. weight: math.unit(243, "lb"),
  47402. name: "Herm",
  47403. image: {
  47404. source: "./media/characters/kaya/herm.svg",
  47405. extra: 975/898,
  47406. bottom: 34/1009
  47407. }
  47408. },
  47409. },
  47410. [
  47411. {
  47412. name: "Normal",
  47413. height: math.unit(7 + 4/12, "feet"),
  47414. default: true
  47415. },
  47416. ]
  47417. ))
  47418. characterMakers.push(() => makeCharacter(
  47419. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47420. {
  47421. female: {
  47422. height: math.unit(9 + 4/12, "feet"),
  47423. weight: math.unit(398, "lb"),
  47424. name: "Female",
  47425. image: {
  47426. source: "./media/characters/kassandra/female.svg",
  47427. extra: 908/839,
  47428. bottom: 61/969
  47429. }
  47430. },
  47431. intersex: {
  47432. height: math.unit(9 + 4/12, "feet"),
  47433. weight: math.unit(398, "lb"),
  47434. name: "Intersex",
  47435. image: {
  47436. source: "./media/characters/kassandra/intersex.svg",
  47437. extra: 908/839,
  47438. bottom: 61/969
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(9 + 4/12, "feet"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(3, "meters"),
  47455. name: "Front",
  47456. image: {
  47457. source: "./media/characters/amy/front.svg",
  47458. extra: 1380/1343,
  47459. bottom: 70/1450
  47460. }
  47461. },
  47462. back: {
  47463. height: math.unit(3, "meters"),
  47464. name: "Back",
  47465. image: {
  47466. source: "./media/characters/amy/back.svg",
  47467. extra: 1380/1347,
  47468. bottom: 66/1446
  47469. }
  47470. },
  47471. },
  47472. [
  47473. {
  47474. name: "Normal",
  47475. height: math.unit(3, "meters"),
  47476. default: true
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47482. {
  47483. side: {
  47484. height: math.unit(47, "cm"),
  47485. weight: math.unit(10.8, "kg"),
  47486. name: "Side",
  47487. image: {
  47488. source: "./media/characters/alphaschakal/side.svg",
  47489. extra: 1058/568,
  47490. bottom: 62/1120
  47491. }
  47492. },
  47493. back: {
  47494. height: math.unit(78, "cm"),
  47495. weight: math.unit(10.8, "kg"),
  47496. name: "Back",
  47497. image: {
  47498. source: "./media/characters/alphaschakal/back.svg",
  47499. extra: 1102/942,
  47500. bottom: 185/1287
  47501. }
  47502. },
  47503. head: {
  47504. height: math.unit(28, "cm"),
  47505. name: "Head",
  47506. image: {
  47507. source: "./media/characters/alphaschakal/head.svg",
  47508. extra: 696/508,
  47509. bottom: 0/696
  47510. }
  47511. },
  47512. paw: {
  47513. height: math.unit(16, "cm"),
  47514. name: "Paw",
  47515. image: {
  47516. source: "./media/characters/alphaschakal/paw.svg"
  47517. }
  47518. },
  47519. },
  47520. [
  47521. {
  47522. name: "Normal",
  47523. height: math.unit(47, "cm"),
  47524. default: true
  47525. },
  47526. {
  47527. name: "Macro",
  47528. height: math.unit(340, "cm")
  47529. },
  47530. ]
  47531. ))
  47532. characterMakers.push(() => makeCharacter(
  47533. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47534. {
  47535. front: {
  47536. height: math.unit(36, "earths"),
  47537. name: "Front",
  47538. image: {
  47539. source: "./media/characters/ecobyss/front.svg",
  47540. extra: 1282/1215,
  47541. bottom: 11/1293
  47542. }
  47543. },
  47544. back: {
  47545. height: math.unit(36, "earths"),
  47546. name: "Back",
  47547. image: {
  47548. source: "./media/characters/ecobyss/back.svg",
  47549. extra: 1291/1222,
  47550. bottom: 8/1299
  47551. }
  47552. },
  47553. },
  47554. [
  47555. {
  47556. name: "Normal",
  47557. height: math.unit(36, "earths"),
  47558. default: true
  47559. },
  47560. ]
  47561. ))
  47562. characterMakers.push(() => makeCharacter(
  47563. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47564. {
  47565. front: {
  47566. height: math.unit(12, "feet"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/vasuk/front.svg",
  47570. extra: 1326/1207,
  47571. bottom: 64/1390
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Normal",
  47578. height: math.unit(12, "feet"),
  47579. default: true
  47580. },
  47581. ]
  47582. ))
  47583. characterMakers.push(() => makeCharacter(
  47584. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47585. {
  47586. side: {
  47587. height: math.unit(100, "feet"),
  47588. name: "Side",
  47589. image: {
  47590. source: "./media/characters/linneaus/side.svg",
  47591. extra: 987/807,
  47592. bottom: 47/1034
  47593. }
  47594. },
  47595. },
  47596. [
  47597. {
  47598. name: "Macro",
  47599. height: math.unit(100, "feet"),
  47600. default: true
  47601. },
  47602. ]
  47603. ))
  47604. characterMakers.push(() => makeCharacter(
  47605. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47606. {
  47607. front: {
  47608. height: math.unit(8, "feet"),
  47609. weight: math.unit(1200, "lb"),
  47610. name: "Front",
  47611. image: {
  47612. source: "./media/characters/nyterious-daligdig/front.svg",
  47613. extra: 1284/1094,
  47614. bottom: 84/1368
  47615. }
  47616. },
  47617. back: {
  47618. height: math.unit(8, "feet"),
  47619. weight: math.unit(1200, "lb"),
  47620. name: "Back",
  47621. image: {
  47622. source: "./media/characters/nyterious-daligdig/back.svg",
  47623. extra: 1301/1121,
  47624. bottom: 129/1430
  47625. }
  47626. },
  47627. mouth: {
  47628. height: math.unit(1.464, "feet"),
  47629. name: "Mouth",
  47630. image: {
  47631. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47632. }
  47633. },
  47634. },
  47635. [
  47636. {
  47637. name: "Small",
  47638. height: math.unit(8, "feet"),
  47639. default: true
  47640. },
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(15, "feet")
  47644. },
  47645. {
  47646. name: "Macro",
  47647. height: math.unit(90, "feet")
  47648. },
  47649. ]
  47650. ))
  47651. characterMakers.push(() => makeCharacter(
  47652. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47653. {
  47654. front: {
  47655. height: math.unit(7 + 4/12, "feet"),
  47656. weight: math.unit(252, "lb"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/bandel/front.svg",
  47660. extra: 1946/1775,
  47661. bottom: 26/1972
  47662. }
  47663. },
  47664. back: {
  47665. height: math.unit(7 + 4/12, "feet"),
  47666. weight: math.unit(252, "lb"),
  47667. name: "Back",
  47668. image: {
  47669. source: "./media/characters/bandel/back.svg",
  47670. extra: 1940/1770,
  47671. bottom: 25/1965
  47672. }
  47673. },
  47674. maw: {
  47675. height: math.unit(2.15, "feet"),
  47676. name: "Maw",
  47677. image: {
  47678. source: "./media/characters/bandel/maw.svg"
  47679. }
  47680. },
  47681. stomach: {
  47682. height: math.unit(1.95, "feet"),
  47683. name: "Stomach",
  47684. image: {
  47685. source: "./media/characters/bandel/stomach.svg"
  47686. }
  47687. },
  47688. },
  47689. [
  47690. {
  47691. name: "Normal",
  47692. height: math.unit(7 + 4/12, "feet"),
  47693. default: true
  47694. },
  47695. ]
  47696. ))
  47697. characterMakers.push(() => makeCharacter(
  47698. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47699. {
  47700. front: {
  47701. height: math.unit(10 + 5/12, "feet"),
  47702. weight: math.unit(773.5, "kg"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/zed/front.svg",
  47706. extra: 987/941,
  47707. bottom: 52/1039
  47708. }
  47709. },
  47710. },
  47711. [
  47712. {
  47713. name: "Short",
  47714. height: math.unit(5 + 4/12, "feet")
  47715. },
  47716. {
  47717. name: "Average",
  47718. height: math.unit(10 + 5/12, "feet"),
  47719. default: true
  47720. },
  47721. {
  47722. name: "Mini-Macro",
  47723. height: math.unit(24 + 9/12, "feet")
  47724. },
  47725. {
  47726. name: "Macro",
  47727. height: math.unit(249, "feet")
  47728. },
  47729. {
  47730. name: "Mega-Macro",
  47731. height: math.unit(12490, "feet")
  47732. },
  47733. {
  47734. name: "Giga-Macro",
  47735. height: math.unit(24.9, "miles")
  47736. },
  47737. {
  47738. name: "Tera-Macro",
  47739. height: math.unit(24900, "miles")
  47740. },
  47741. {
  47742. name: "Cosmic Scale",
  47743. height: math.unit(38.9, "lightyears")
  47744. },
  47745. {
  47746. name: "Universal Scale",
  47747. height: math.unit(138e12, "lightyears")
  47748. },
  47749. ]
  47750. ))
  47751. characterMakers.push(() => makeCharacter(
  47752. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47753. {
  47754. front: {
  47755. height: math.unit(1561, "inches"),
  47756. name: "Front",
  47757. image: {
  47758. source: "./media/characters/ivan/front.svg",
  47759. extra: 1126/1071,
  47760. bottom: 26/1152
  47761. }
  47762. },
  47763. back: {
  47764. height: math.unit(1561, "inches"),
  47765. name: "Back",
  47766. image: {
  47767. source: "./media/characters/ivan/back.svg",
  47768. extra: 1134/1079,
  47769. bottom: 30/1164
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(1561, "inches"),
  47777. default: true
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(5 + 7/12, "feet"),
  47786. weight: math.unit(150, "lb"),
  47787. name: "Front",
  47788. image: {
  47789. source: "./media/characters/robin-arctic-hare/front.svg",
  47790. extra: 1148/974,
  47791. bottom: 20/1168
  47792. }
  47793. },
  47794. },
  47795. [
  47796. {
  47797. name: "Normal",
  47798. height: math.unit(5 + 7/12, "feet"),
  47799. default: true
  47800. },
  47801. ]
  47802. ))
  47803. characterMakers.push(() => makeCharacter(
  47804. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47805. {
  47806. side: {
  47807. height: math.unit(5, "feet"),
  47808. name: "Side",
  47809. image: {
  47810. source: "./media/characters/birch/side.svg",
  47811. extra: 985/796,
  47812. bottom: 111/1096
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(5, "feet"),
  47820. default: true
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(4, "feet"),
  47829. name: "Front",
  47830. image: {
  47831. source: "./media/characters/rasp/front.svg",
  47832. extra: 561/478,
  47833. bottom: 74/635
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(4, "feet"),
  47841. default: true
  47842. },
  47843. ]
  47844. ))
  47845. characterMakers.push(() => makeCharacter(
  47846. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47847. {
  47848. front: {
  47849. height: math.unit(4 + 6/12, "feet"),
  47850. name: "Front",
  47851. image: {
  47852. source: "./media/characters/agatha/front.svg",
  47853. extra: 947/933,
  47854. bottom: 42/989
  47855. }
  47856. },
  47857. back: {
  47858. height: math.unit(4 + 6/12, "feet"),
  47859. name: "Back",
  47860. image: {
  47861. source: "./media/characters/agatha/back.svg",
  47862. extra: 935/922,
  47863. bottom: 48/983
  47864. }
  47865. },
  47866. },
  47867. [
  47868. {
  47869. name: "Normal",
  47870. height: math.unit(4 + 6 /12, "feet"),
  47871. default: true
  47872. },
  47873. {
  47874. name: "Max Size",
  47875. height: math.unit(500, "feet")
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47881. {
  47882. side: {
  47883. height: math.unit(30, "feet"),
  47884. name: "Side",
  47885. image: {
  47886. source: "./media/characters/roggy/side.svg",
  47887. extra: 909/643,
  47888. bottom: 63/972
  47889. }
  47890. },
  47891. lounging: {
  47892. height: math.unit(20, "feet"),
  47893. name: "Lounging",
  47894. image: {
  47895. source: "./media/characters/roggy/lounging.svg",
  47896. extra: 643/479,
  47897. bottom: 145/788
  47898. }
  47899. },
  47900. handpaw: {
  47901. height: math.unit(13.1, "feet"),
  47902. name: "Handpaw",
  47903. image: {
  47904. source: "./media/characters/roggy/handpaw.svg"
  47905. }
  47906. },
  47907. footpaw: {
  47908. height: math.unit(15.8, "feet"),
  47909. name: "Footpaw",
  47910. image: {
  47911. source: "./media/characters/roggy/footpaw.svg"
  47912. }
  47913. },
  47914. },
  47915. [
  47916. {
  47917. name: "Menacing",
  47918. height: math.unit(30, "feet"),
  47919. default: true
  47920. },
  47921. ]
  47922. ))
  47923. characterMakers.push(() => makeCharacter(
  47924. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47925. {
  47926. front: {
  47927. height: math.unit(5 + 7/12, "feet"),
  47928. weight: math.unit(135, "lb"),
  47929. name: "Front",
  47930. image: {
  47931. source: "./media/characters/naomi/front.svg",
  47932. extra: 1209/1154,
  47933. bottom: 129/1338
  47934. }
  47935. },
  47936. back: {
  47937. height: math.unit(5 + 7/12, "feet"),
  47938. weight: math.unit(135, "lb"),
  47939. name: "Back",
  47940. image: {
  47941. source: "./media/characters/naomi/back.svg",
  47942. extra: 1252/1190,
  47943. bottom: 23/1275
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(5 + 7 /12, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47957. {
  47958. side: {
  47959. height: math.unit(35, "meters"),
  47960. name: "Side",
  47961. image: {
  47962. source: "./media/characters/kimpi/side.svg",
  47963. extra: 419/382,
  47964. bottom: 63/482
  47965. }
  47966. },
  47967. hand: {
  47968. height: math.unit(8.96, "meters"),
  47969. name: "Hand",
  47970. image: {
  47971. source: "./media/characters/kimpi/hand.svg"
  47972. }
  47973. },
  47974. },
  47975. [
  47976. {
  47977. name: "Normal",
  47978. height: math.unit(35, "meters"),
  47979. default: true
  47980. },
  47981. ]
  47982. ))
  47983. characterMakers.push(() => makeCharacter(
  47984. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47985. {
  47986. front: {
  47987. height: math.unit(4 + 4/12, "feet"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/pepper-purrloin/front.svg",
  47991. extra: 1141/1024,
  47992. bottom: 21/1162
  47993. }
  47994. },
  47995. },
  47996. [
  47997. {
  47998. name: "Normal",
  47999. height: math.unit(4 + 4/12, "feet"),
  48000. default: true
  48001. },
  48002. ]
  48003. ))
  48004. characterMakers.push(() => makeCharacter(
  48005. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48006. {
  48007. front: {
  48008. height: math.unit(6 + 2/12, "feet"),
  48009. name: "Front",
  48010. image: {
  48011. source: "./media/characters/raphael/front.svg",
  48012. extra: 1101/962,
  48013. bottom: 59/1160
  48014. }
  48015. },
  48016. },
  48017. [
  48018. {
  48019. name: "Normal",
  48020. height: math.unit(6 + 2/12, "feet"),
  48021. default: true
  48022. },
  48023. ]
  48024. ))
  48025. characterMakers.push(() => makeCharacter(
  48026. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48027. {
  48028. front: {
  48029. height: math.unit(6, "feet"),
  48030. weight: math.unit(150, "lb"),
  48031. name: "Front",
  48032. image: {
  48033. source: "./media/characters/victor-williams/front.svg",
  48034. extra: 1894/1825,
  48035. bottom: 67/1961
  48036. }
  48037. },
  48038. },
  48039. [
  48040. {
  48041. name: "Normal",
  48042. height: math.unit(6, "feet"),
  48043. default: true
  48044. },
  48045. ]
  48046. ))
  48047. characterMakers.push(() => makeCharacter(
  48048. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48049. {
  48050. front: {
  48051. height: math.unit(5 + 8/12, "feet"),
  48052. weight: math.unit(150, "lb"),
  48053. name: "Front",
  48054. image: {
  48055. source: "./media/characters/rachel/front.svg",
  48056. extra: 1902/1787,
  48057. bottom: 46/1948
  48058. }
  48059. },
  48060. },
  48061. [
  48062. {
  48063. name: "Base Height",
  48064. height: math.unit(5 + 8/12, "feet"),
  48065. default: true
  48066. },
  48067. {
  48068. name: "Macro",
  48069. height: math.unit(200, "feet")
  48070. },
  48071. {
  48072. name: "Mega Macro",
  48073. height: math.unit(1, "mile")
  48074. },
  48075. {
  48076. name: "Giga Macro",
  48077. height: math.unit(1500, "miles")
  48078. },
  48079. {
  48080. name: "Tera Macro",
  48081. height: math.unit(8000, "miles")
  48082. },
  48083. {
  48084. name: "Tera Macro+",
  48085. height: math.unit(2e5, "miles")
  48086. },
  48087. ]
  48088. ))
  48089. characterMakers.push(() => makeCharacter(
  48090. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48091. {
  48092. front: {
  48093. height: math.unit(6.5, "feet"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48097. extra: 860/819,
  48098. bottom: 307/1167
  48099. }
  48100. },
  48101. back: {
  48102. height: math.unit(6.5, "feet"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48106. extra: 880/837,
  48107. bottom: 395/1275
  48108. }
  48109. },
  48110. sleeping: {
  48111. height: math.unit(2.79, "feet"),
  48112. name: "Sleeping",
  48113. image: {
  48114. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48115. extra: 465/383,
  48116. bottom: 263/728
  48117. }
  48118. },
  48119. maw: {
  48120. height: math.unit(2.52, "feet"),
  48121. name: "Maw",
  48122. image: {
  48123. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(6.5, "feet"),
  48131. default: true
  48132. },
  48133. ]
  48134. ))
  48135. characterMakers.push(() => makeCharacter(
  48136. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48137. {
  48138. front: {
  48139. height: math.unit(5, "feet"),
  48140. name: "Front",
  48141. image: {
  48142. source: "./media/characters/nova-nerium/front.svg",
  48143. extra: 1548/1392,
  48144. bottom: 374/1922
  48145. }
  48146. },
  48147. back: {
  48148. height: math.unit(5, "feet"),
  48149. name: "Back",
  48150. image: {
  48151. source: "./media/characters/nova-nerium/back.svg",
  48152. extra: 1658/1468,
  48153. bottom: 257/1915
  48154. }
  48155. },
  48156. },
  48157. [
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(5, "feet"),
  48161. default: true
  48162. },
  48163. ]
  48164. ))
  48165. characterMakers.push(() => makeCharacter(
  48166. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48167. {
  48168. front: {
  48169. height: math.unit(5 + 4/12, "feet"),
  48170. name: "Front",
  48171. image: {
  48172. source: "./media/characters/ashe-pyriph/front.svg",
  48173. extra: 1935/1747,
  48174. bottom: 60/1995
  48175. }
  48176. },
  48177. },
  48178. [
  48179. {
  48180. name: "Normal",
  48181. height: math.unit(5 + 4/12, "feet"),
  48182. default: true
  48183. },
  48184. ]
  48185. ))
  48186. characterMakers.push(() => makeCharacter(
  48187. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48188. {
  48189. front: {
  48190. height: math.unit(8.7, "feet"),
  48191. name: "Front",
  48192. image: {
  48193. source: "./media/characters/flicker-wisp/front.svg",
  48194. extra: 1835/1613,
  48195. bottom: 449/2284
  48196. }
  48197. },
  48198. side: {
  48199. height: math.unit(8.7, "feet"),
  48200. name: "Side",
  48201. image: {
  48202. source: "./media/characters/flicker-wisp/side.svg",
  48203. extra: 1841/1642,
  48204. bottom: 336/2177
  48205. },
  48206. default: true
  48207. },
  48208. maw: {
  48209. height: math.unit(3.35, "feet"),
  48210. name: "Maw",
  48211. image: {
  48212. source: "./media/characters/flicker-wisp/maw.svg",
  48213. extra: 2338/1506,
  48214. bottom: 0/2338
  48215. }
  48216. },
  48217. ovipositor: {
  48218. height: math.unit(4.95, "feet"),
  48219. name: "Ovipositor",
  48220. image: {
  48221. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48222. }
  48223. },
  48224. egg: {
  48225. height: math.unit(0.385, "feet"),
  48226. weight: math.unit(2, "lb"),
  48227. name: "Egg",
  48228. image: {
  48229. source: "./media/characters/flicker-wisp/egg.svg"
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Normal",
  48236. height: math.unit(8.7, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48243. {
  48244. side: {
  48245. height: math.unit(11, "feet"),
  48246. name: "Side",
  48247. image: {
  48248. source: "./media/characters/faefnul/side.svg",
  48249. extra: 1100/1007,
  48250. bottom: 0/1100
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(11, "feet"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(6 + 2/12, "feet"),
  48267. name: "Front",
  48268. image: {
  48269. source: "./media/characters/shady/front.svg",
  48270. extra: 502/461,
  48271. bottom: 9/511
  48272. }
  48273. },
  48274. kneeling: {
  48275. height: math.unit(4.6, "feet"),
  48276. name: "Kneeling",
  48277. image: {
  48278. source: "./media/characters/shady/kneeling.svg",
  48279. extra: 1328/1219,
  48280. bottom: 117/1445
  48281. }
  48282. },
  48283. maw: {
  48284. height: math.unit(2, "feet"),
  48285. name: "Maw",
  48286. image: {
  48287. source: "./media/characters/shady/maw.svg"
  48288. }
  48289. },
  48290. },
  48291. [
  48292. {
  48293. name: "Nano",
  48294. height: math.unit(1, "mm")
  48295. },
  48296. {
  48297. name: "Micro",
  48298. height: math.unit(12, "mm")
  48299. },
  48300. {
  48301. name: "Tiny",
  48302. height: math.unit(3, "inches")
  48303. },
  48304. {
  48305. name: "Normal",
  48306. height: math.unit(6 + 2/12, "feet"),
  48307. default: true
  48308. },
  48309. {
  48310. name: "Big",
  48311. height: math.unit(15, "feet")
  48312. },
  48313. {
  48314. name: "Macro",
  48315. height: math.unit(150, "feet")
  48316. },
  48317. {
  48318. name: "Titanic",
  48319. height: math.unit(500, "feet")
  48320. },
  48321. ]
  48322. ))
  48323. characterMakers.push(() => makeCharacter(
  48324. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48325. {
  48326. front: {
  48327. height: math.unit(12, "feet"),
  48328. name: "Front",
  48329. image: {
  48330. source: "./media/characters/fenrir/front.svg",
  48331. extra: 968/875,
  48332. bottom: 22/990
  48333. }
  48334. },
  48335. },
  48336. [
  48337. {
  48338. name: "Big",
  48339. height: math.unit(12, "feet"),
  48340. default: true
  48341. },
  48342. ]
  48343. ))
  48344. characterMakers.push(() => makeCharacter(
  48345. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48346. {
  48347. front: {
  48348. height: math.unit(5 + 4/12, "feet"),
  48349. name: "Front",
  48350. image: {
  48351. source: "./media/characters/makar/front.svg",
  48352. extra: 1181/1112,
  48353. bottom: 78/1259
  48354. }
  48355. },
  48356. },
  48357. [
  48358. {
  48359. name: "Normal",
  48360. height: math.unit(5 + 4/12, "feet"),
  48361. default: true
  48362. },
  48363. ]
  48364. ))
  48365. characterMakers.push(() => makeCharacter(
  48366. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48367. {
  48368. front: {
  48369. height: math.unit(5 + 7/12, "feet"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/callow/front.svg",
  48373. extra: 1482/1304,
  48374. bottom: 23/1505
  48375. }
  48376. },
  48377. back: {
  48378. height: math.unit(5 + 7/12, "feet"),
  48379. name: "Back",
  48380. image: {
  48381. source: "./media/characters/callow/back.svg",
  48382. extra: 1484/1296,
  48383. bottom: 25/1509
  48384. }
  48385. },
  48386. },
  48387. [
  48388. {
  48389. name: "Micro",
  48390. height: math.unit(3, "inches"),
  48391. default: true
  48392. },
  48393. {
  48394. name: "Normal",
  48395. height: math.unit(5 + 7/12, "feet")
  48396. },
  48397. ]
  48398. ))
  48399. characterMakers.push(() => makeCharacter(
  48400. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48401. {
  48402. front: {
  48403. height: math.unit(6 + 2/12, "feet"),
  48404. name: "Front",
  48405. image: {
  48406. source: "./media/characters/natel/front.svg",
  48407. extra: 1833/1692,
  48408. bottom: 166/1999
  48409. }
  48410. },
  48411. },
  48412. [
  48413. {
  48414. name: "Normal",
  48415. height: math.unit(6 + 2/12, "feet"),
  48416. default: true
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48422. {
  48423. front: {
  48424. height: math.unit(1.75, "meters"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/misu/front.svg",
  48428. extra: 1690/1558,
  48429. bottom: 234/1924
  48430. }
  48431. },
  48432. back: {
  48433. height: math.unit(1.75, "meters"),
  48434. name: "Back",
  48435. image: {
  48436. source: "./media/characters/misu/back.svg",
  48437. extra: 1762/1618,
  48438. bottom: 146/1908
  48439. }
  48440. },
  48441. frontNude: {
  48442. height: math.unit(1.75, "meters"),
  48443. name: "Front (Nude)",
  48444. image: {
  48445. source: "./media/characters/misu/front-nude.svg",
  48446. extra: 1690/1558,
  48447. bottom: 234/1924
  48448. }
  48449. },
  48450. backNude: {
  48451. height: math.unit(1.75, "meters"),
  48452. name: "Back (Nude)",
  48453. image: {
  48454. source: "./media/characters/misu/back-nude.svg",
  48455. extra: 1762/1618,
  48456. bottom: 146/1908
  48457. }
  48458. },
  48459. frontErect: {
  48460. height: math.unit(1.75, "meters"),
  48461. name: "Front (Erect)",
  48462. image: {
  48463. source: "./media/characters/misu/front-erect.svg",
  48464. extra: 1690/1558,
  48465. bottom: 234/1924
  48466. }
  48467. },
  48468. maw: {
  48469. height: math.unit(0.47, "meters"),
  48470. name: "Maw",
  48471. image: {
  48472. source: "./media/characters/misu/maw.svg"
  48473. }
  48474. },
  48475. head: {
  48476. height: math.unit(0.35, "meters"),
  48477. name: "Head",
  48478. image: {
  48479. source: "./media/characters/misu/head.svg"
  48480. }
  48481. },
  48482. rear: {
  48483. height: math.unit(0.47, "meters"),
  48484. name: "Rear",
  48485. image: {
  48486. source: "./media/characters/misu/rear.svg"
  48487. }
  48488. },
  48489. },
  48490. [
  48491. {
  48492. name: "Normal",
  48493. height: math.unit(1.75, "meters")
  48494. },
  48495. {
  48496. name: "Not good for the people",
  48497. height: math.unit(42, "meters")
  48498. },
  48499. {
  48500. name: "Not good for the neighborhood",
  48501. height: math.unit(135, "meters")
  48502. },
  48503. {
  48504. name: "Bit bigger problem",
  48505. height: math.unit(380, "meters"),
  48506. default: true
  48507. },
  48508. {
  48509. name: "Not good for the city",
  48510. height: math.unit(1.5, "km")
  48511. },
  48512. {
  48513. name: "Not good for the county",
  48514. height: math.unit(5.5, "km")
  48515. },
  48516. {
  48517. name: "Not good for the state",
  48518. height: math.unit(25, "km")
  48519. },
  48520. {
  48521. name: "Not good for the country",
  48522. height: math.unit(125, "km")
  48523. },
  48524. {
  48525. name: "Not good for the continent",
  48526. height: math.unit(2100, "km")
  48527. },
  48528. {
  48529. name: "Not good for the planet",
  48530. height: math.unit(35000, "km")
  48531. },
  48532. {
  48533. name: "Just no",
  48534. height: math.unit(8.5e18, "km")
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(6.5, "feet"),
  48543. name: "Front",
  48544. image: {
  48545. source: "./media/characters/poppy/front.svg",
  48546. extra: 1878/1812,
  48547. bottom: 43/1921
  48548. }
  48549. },
  48550. feet: {
  48551. height: math.unit(1.06, "feet"),
  48552. name: "Feet",
  48553. image: {
  48554. source: "./media/characters/poppy/feet.svg",
  48555. extra: 1083/1083,
  48556. bottom: 87/1170
  48557. }
  48558. },
  48559. },
  48560. [
  48561. {
  48562. name: "Human",
  48563. height: math.unit(6.5, "feet")
  48564. },
  48565. {
  48566. name: "Default",
  48567. height: math.unit(300, "feet"),
  48568. default: true
  48569. },
  48570. {
  48571. name: "Huge",
  48572. height: math.unit(850, "feet")
  48573. },
  48574. {
  48575. name: "Mega",
  48576. height: math.unit(8000, "feet")
  48577. },
  48578. {
  48579. name: "Giga",
  48580. height: math.unit(300, "miles")
  48581. },
  48582. ]
  48583. ))
  48584. characterMakers.push(() => makeCharacter(
  48585. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48586. {
  48587. bipedal: {
  48588. height: math.unit(7, "feet"),
  48589. name: "Bipedal",
  48590. image: {
  48591. source: "./media/characters/zener/bipedal.svg",
  48592. extra: 874/805,
  48593. bottom: 109/983
  48594. }
  48595. },
  48596. quadrupedal: {
  48597. height: math.unit(4.64, "feet"),
  48598. name: "Quadrupedal",
  48599. image: {
  48600. source: "./media/characters/zener/quadrupedal.svg",
  48601. extra: 638/507,
  48602. bottom: 190/828
  48603. }
  48604. },
  48605. cock: {
  48606. height: math.unit(18, "inches"),
  48607. name: "Cock",
  48608. image: {
  48609. source: "./media/characters/zener/cock.svg"
  48610. }
  48611. },
  48612. },
  48613. [
  48614. {
  48615. name: "Normal",
  48616. height: math.unit(7, "feet"),
  48617. default: true
  48618. },
  48619. ]
  48620. ))
  48621. characterMakers.push(() => makeCharacter(
  48622. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48623. {
  48624. nude: {
  48625. height: math.unit(5 + 6/12, "feet"),
  48626. name: "Nude",
  48627. image: {
  48628. source: "./media/characters/charlie-dog/nude.svg",
  48629. extra: 768/734,
  48630. bottom: 26/794
  48631. }
  48632. },
  48633. dressed: {
  48634. height: math.unit(5 + 6/12, "feet"),
  48635. name: "Dressed",
  48636. image: {
  48637. source: "./media/characters/charlie-dog/dressed.svg",
  48638. extra: 768/734,
  48639. bottom: 26/794
  48640. }
  48641. },
  48642. },
  48643. [
  48644. {
  48645. name: "Normal",
  48646. height: math.unit(5 + 6/12, "feet"),
  48647. default: true
  48648. },
  48649. ]
  48650. ))
  48651. characterMakers.push(() => makeCharacter(
  48652. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48653. {
  48654. front: {
  48655. height: math.unit(6 + 4/12, "feet"),
  48656. name: "Front",
  48657. image: {
  48658. source: "./media/characters/ir'istrasz/front.svg",
  48659. extra: 1014/977,
  48660. bottom: 65/1079
  48661. }
  48662. },
  48663. back: {
  48664. height: math.unit(6 + 4/12, "feet"),
  48665. name: "Back",
  48666. image: {
  48667. source: "./media/characters/ir'istrasz/back.svg",
  48668. extra: 1024/992,
  48669. bottom: 34/1058
  48670. }
  48671. },
  48672. },
  48673. [
  48674. {
  48675. name: "Normal",
  48676. height: math.unit(6 + 4/12, "feet"),
  48677. default: true
  48678. },
  48679. ]
  48680. ))
  48681. characterMakers.push(() => makeCharacter(
  48682. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48683. {
  48684. front: {
  48685. height: math.unit(5 + 8/12, "feet"),
  48686. name: "Front",
  48687. image: {
  48688. source: "./media/characters/dee-ditto/front.svg",
  48689. extra: 1874/1785,
  48690. bottom: 68/1942
  48691. }
  48692. },
  48693. back: {
  48694. height: math.unit(5 + 8/12, "feet"),
  48695. name: "Back",
  48696. image: {
  48697. source: "./media/characters/dee-ditto/back.svg",
  48698. extra: 1870/1783,
  48699. bottom: 77/1947
  48700. }
  48701. },
  48702. },
  48703. [
  48704. {
  48705. name: "Normal",
  48706. height: math.unit(5 + 8/12, "feet"),
  48707. default: true
  48708. },
  48709. ]
  48710. ))
  48711. characterMakers.push(() => makeCharacter(
  48712. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48713. {
  48714. front: {
  48715. height: math.unit(7 + 6/12, "feet"),
  48716. name: "Front",
  48717. image: {
  48718. source: "./media/characters/fey/front.svg",
  48719. extra: 995/979,
  48720. bottom: 30/1025
  48721. }
  48722. },
  48723. back: {
  48724. height: math.unit(7 + 6/12, "feet"),
  48725. name: "Back",
  48726. image: {
  48727. source: "./media/characters/fey/back.svg",
  48728. extra: 1079/1008,
  48729. bottom: 5/1084
  48730. }
  48731. },
  48732. dressed: {
  48733. height: math.unit(7 + 6/12, "feet"),
  48734. name: "Dressed",
  48735. image: {
  48736. source: "./media/characters/fey/dressed.svg",
  48737. extra: 995/979,
  48738. bottom: 30/1025
  48739. }
  48740. },
  48741. },
  48742. [
  48743. {
  48744. name: "Normal",
  48745. height: math.unit(7 + 6/12, "feet"),
  48746. default: true
  48747. },
  48748. ]
  48749. ))
  48750. characterMakers.push(() => makeCharacter(
  48751. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48752. {
  48753. standing: {
  48754. height: math.unit(17, "feet"),
  48755. name: "Standing",
  48756. image: {
  48757. source: "./media/characters/aster/standing.svg",
  48758. extra: 1798/1598,
  48759. bottom: 117/1915
  48760. }
  48761. },
  48762. },
  48763. [
  48764. {
  48765. name: "Normal",
  48766. height: math.unit(17, "feet"),
  48767. default: true
  48768. },
  48769. {
  48770. name: "Homewrecker",
  48771. height: math.unit(95, "feet")
  48772. },
  48773. {
  48774. name: "Planet Devourer",
  48775. height: math.unit(1008000, "miles")
  48776. },
  48777. ]
  48778. ))
  48779. characterMakers.push(() => makeCharacter(
  48780. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48781. {
  48782. front: {
  48783. height: math.unit(6 + 5/12, "feet"),
  48784. weight: math.unit(265, "lb"),
  48785. name: "Front",
  48786. image: {
  48787. source: "./media/characters/devon-childs/front.svg",
  48788. extra: 1795/1721,
  48789. bottom: 41/1836
  48790. }
  48791. },
  48792. side: {
  48793. height: math.unit(6 + 5/12, "feet"),
  48794. weight: math.unit(265, "lb"),
  48795. name: "Side",
  48796. image: {
  48797. source: "./media/characters/devon-childs/side.svg",
  48798. extra: 1812/1738,
  48799. bottom: 30/1842
  48800. }
  48801. },
  48802. back: {
  48803. height: math.unit(6 + 5/12, "feet"),
  48804. weight: math.unit(265, "lb"),
  48805. name: "Back",
  48806. image: {
  48807. source: "./media/characters/devon-childs/back.svg",
  48808. extra: 1808/1735,
  48809. bottom: 23/1831
  48810. }
  48811. },
  48812. hand: {
  48813. height: math.unit(1.464, "feet"),
  48814. name: "Hand",
  48815. image: {
  48816. source: "./media/characters/devon-childs/hand.svg"
  48817. }
  48818. },
  48819. foot: {
  48820. height: math.unit(1.6, "feet"),
  48821. name: "Foot",
  48822. image: {
  48823. source: "./media/characters/devon-childs/foot.svg"
  48824. }
  48825. },
  48826. },
  48827. [
  48828. {
  48829. name: "Micro",
  48830. height: math.unit(7, "cm")
  48831. },
  48832. {
  48833. name: "Normal",
  48834. height: math.unit(6 + 5/12, "feet"),
  48835. default: true
  48836. },
  48837. {
  48838. name: "Macro",
  48839. height: math.unit(154, "feet")
  48840. },
  48841. ]
  48842. ))
  48843. characterMakers.push(() => makeCharacter(
  48844. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48845. {
  48846. front: {
  48847. height: math.unit(6, "feet"),
  48848. weight: math.unit(180, "lb"),
  48849. name: "Front",
  48850. image: {
  48851. source: "./media/characters/lydemox-vir/front.svg",
  48852. extra: 1632/1435,
  48853. bottom: 58/1690
  48854. }
  48855. },
  48856. frontSFW: {
  48857. height: math.unit(6, "feet"),
  48858. weight: math.unit(180, "lb"),
  48859. name: "Front (SFW)",
  48860. image: {
  48861. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48862. extra: 1632/1435,
  48863. bottom: 58/1690
  48864. }
  48865. },
  48866. back: {
  48867. height: math.unit(6, "feet"),
  48868. weight: math.unit(180, "lb"),
  48869. name: "Back",
  48870. image: {
  48871. source: "./media/characters/lydemox-vir/back.svg",
  48872. extra: 1593/1408,
  48873. bottom: 31/1624
  48874. }
  48875. },
  48876. paw: {
  48877. height: math.unit(1.85, "feet"),
  48878. name: "Paw",
  48879. image: {
  48880. source: "./media/characters/lydemox-vir/paw.svg"
  48881. }
  48882. },
  48883. dick: {
  48884. height: math.unit(1.8, "feet"),
  48885. name: "Dick",
  48886. image: {
  48887. source: "./media/characters/lydemox-vir/dick.svg"
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Macro",
  48894. height: math.unit(100, "feet"),
  48895. default: true
  48896. },
  48897. {
  48898. name: "Teramacro",
  48899. height: math.unit(1, "earth")
  48900. },
  48901. {
  48902. name: "Planetary",
  48903. height: math.unit(20, "earths")
  48904. },
  48905. ]
  48906. ))
  48907. characterMakers.push(() => makeCharacter(
  48908. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48909. {
  48910. front: {
  48911. height: math.unit(15 + 8/12, "feet"),
  48912. weight: math.unit(1237, "kg"),
  48913. name: "Front",
  48914. image: {
  48915. source: "./media/characters/mia/front.svg",
  48916. extra: 1573/1446,
  48917. bottom: 58/1631
  48918. }
  48919. },
  48920. },
  48921. [
  48922. {
  48923. name: "Small",
  48924. height: math.unit(9 + 5/12, "feet")
  48925. },
  48926. {
  48927. name: "Normal",
  48928. height: math.unit(15 + 8/12, "feet"),
  48929. default: true
  48930. },
  48931. ]
  48932. ))
  48933. characterMakers.push(() => makeCharacter(
  48934. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48935. {
  48936. front: {
  48937. height: math.unit(10 + 6/12, "feet"),
  48938. weight: math.unit(1.3, "tons"),
  48939. name: "Front",
  48940. image: {
  48941. source: "./media/characters/mr-graves/front.svg",
  48942. extra: 1779/1695,
  48943. bottom: 198/1977
  48944. }
  48945. },
  48946. },
  48947. [
  48948. {
  48949. name: "Normal",
  48950. height: math.unit(10 + 6 /12, "feet"),
  48951. default: true
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48957. {
  48958. dressedFront: {
  48959. height: math.unit(5 + 8/12, "feet"),
  48960. weight: math.unit(125, "lb"),
  48961. name: "Dressed (Front)",
  48962. image: {
  48963. source: "./media/characters/jess/dressed-front.svg",
  48964. extra: 1176/1152,
  48965. bottom: 42/1218
  48966. }
  48967. },
  48968. dressedSide: {
  48969. height: math.unit(5 + 8/12, "feet"),
  48970. weight: math.unit(125, "lb"),
  48971. name: "Dressed (Side)",
  48972. image: {
  48973. source: "./media/characters/jess/dressed-side.svg",
  48974. extra: 1204/1190,
  48975. bottom: 6/1210
  48976. }
  48977. },
  48978. nudeFront: {
  48979. height: math.unit(5 + 8/12, "feet"),
  48980. weight: math.unit(125, "lb"),
  48981. name: "Nude (Front)",
  48982. image: {
  48983. source: "./media/characters/jess/nude-front.svg",
  48984. extra: 1176/1152,
  48985. bottom: 42/1218
  48986. }
  48987. },
  48988. nudeSide: {
  48989. height: math.unit(5 + 8/12, "feet"),
  48990. weight: math.unit(125, "lb"),
  48991. name: "Nude (Side)",
  48992. image: {
  48993. source: "./media/characters/jess/nude-side.svg",
  48994. extra: 1204/1190,
  48995. bottom: 6/1210
  48996. }
  48997. },
  48998. organsFront: {
  48999. height: math.unit(2.83799342105, "feet"),
  49000. name: "Organs (Front)",
  49001. image: {
  49002. source: "./media/characters/jess/organs-front.svg"
  49003. }
  49004. },
  49005. organsSide: {
  49006. height: math.unit(2.64225290474, "feet"),
  49007. name: "Organs (Side)",
  49008. image: {
  49009. source: "./media/characters/jess/organs-side.svg"
  49010. }
  49011. },
  49012. digestiveTractFront: {
  49013. height: math.unit(2.8106580871, "feet"),
  49014. name: "Digestive Tract (Front)",
  49015. image: {
  49016. source: "./media/characters/jess/digestive-tract-front.svg"
  49017. }
  49018. },
  49019. digestiveTractSide: {
  49020. height: math.unit(2.54365045014, "feet"),
  49021. name: "Digestive Tract (Side)",
  49022. image: {
  49023. source: "./media/characters/jess/digestive-tract-side.svg"
  49024. }
  49025. },
  49026. respiratorySystemFront: {
  49027. height: math.unit(1.11196233456, "feet"),
  49028. name: "Respiratory System (Front)",
  49029. image: {
  49030. source: "./media/characters/jess/respiratory-system-front.svg"
  49031. }
  49032. },
  49033. respiratorySystemSide: {
  49034. height: math.unit(0.89327966297, "feet"),
  49035. name: "Respiratory System (Side)",
  49036. image: {
  49037. source: "./media/characters/jess/respiratory-system-side.svg"
  49038. }
  49039. },
  49040. urinaryTractFront: {
  49041. height: math.unit(1.16126356186, "feet"),
  49042. name: "Urinary Tract (Front)",
  49043. image: {
  49044. source: "./media/characters/jess/urinary-tract-front.svg"
  49045. }
  49046. },
  49047. urinaryTractSide: {
  49048. height: math.unit(1.20910039627, "feet"),
  49049. name: "Urinary Tract (Side)",
  49050. image: {
  49051. source: "./media/characters/jess/urinary-tract-side.svg"
  49052. }
  49053. },
  49054. reproductiveOrgansFront: {
  49055. height: math.unit(0.48422591566, "feet"),
  49056. name: "Reproductive Organs (Front)",
  49057. image: {
  49058. source: "./media/characters/jess/reproductive-organs-front.svg"
  49059. }
  49060. },
  49061. reproductiveOrgansSide: {
  49062. height: math.unit(0.61553314481, "feet"),
  49063. name: "Reproductive Organs (Side)",
  49064. image: {
  49065. source: "./media/characters/jess/reproductive-organs-side.svg"
  49066. }
  49067. },
  49068. breastsFront: {
  49069. height: math.unit(0.47690395121, "feet"),
  49070. name: "Breasts (Front)",
  49071. image: {
  49072. source: "./media/characters/jess/breasts-front.svg"
  49073. }
  49074. },
  49075. breastsSide: {
  49076. height: math.unit(0.30556998307, "feet"),
  49077. name: "Breasts (Side)",
  49078. image: {
  49079. source: "./media/characters/jess/breasts-side.svg"
  49080. }
  49081. },
  49082. heartFront: {
  49083. height: math.unit(0.53011022622, "feet"),
  49084. name: "Heart (Front)",
  49085. image: {
  49086. source: "./media/characters/jess/heart-front.svg"
  49087. }
  49088. },
  49089. heartSide: {
  49090. height: math.unit(0.51790695213, "feet"),
  49091. name: "Heart (Side)",
  49092. image: {
  49093. source: "./media/characters/jess/heart-side.svg"
  49094. }
  49095. },
  49096. earsAndNoseFront: {
  49097. height: math.unit(0.29385483995, "feet"),
  49098. name: "Ears and Nose (Front)",
  49099. image: {
  49100. source: "./media/characters/jess/ears-and-nose-front.svg"
  49101. }
  49102. },
  49103. earsAndNoseSide: {
  49104. height: math.unit(0.18109658741, "feet"),
  49105. name: "Ears and Nose (Side)",
  49106. image: {
  49107. source: "./media/characters/jess/ears-and-nose-side.svg"
  49108. }
  49109. },
  49110. },
  49111. [
  49112. {
  49113. name: "Normal",
  49114. height: math.unit(5 + 8/12, "feet"),
  49115. default: true
  49116. },
  49117. ]
  49118. ))
  49119. characterMakers.push(() => makeCharacter(
  49120. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49121. {
  49122. front: {
  49123. height: math.unit(6, "feet"),
  49124. weight: math.unit(6.64467e-7, "grams"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/wimpering/front.svg",
  49128. extra: 597/587,
  49129. bottom: 34/631
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Micro",
  49136. height: math.unit(0.4, "mm"),
  49137. default: true
  49138. },
  49139. ]
  49140. ))
  49141. characterMakers.push(() => makeCharacter(
  49142. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49143. {
  49144. front: {
  49145. height: math.unit(5 + 2/12, "feet"),
  49146. weight: math.unit(110, "lb"),
  49147. name: "Front",
  49148. image: {
  49149. source: "./media/characters/keltre/front.svg",
  49150. extra: 1099/1057,
  49151. bottom: 22/1121
  49152. }
  49153. },
  49154. back: {
  49155. height: math.unit(5 + 2/12, "feet"),
  49156. weight: math.unit(110, "lb"),
  49157. name: "Back",
  49158. image: {
  49159. source: "./media/characters/keltre/back.svg",
  49160. extra: 1095/1053,
  49161. bottom: 17/1112
  49162. }
  49163. },
  49164. dressed: {
  49165. height: math.unit(5 + 2/12, "feet"),
  49166. weight: math.unit(110, "lb"),
  49167. name: "Dressed",
  49168. image: {
  49169. source: "./media/characters/keltre/dressed.svg",
  49170. extra: 1099/1057,
  49171. bottom: 22/1121
  49172. }
  49173. },
  49174. winter: {
  49175. height: math.unit(5 + 2/12, "feet"),
  49176. weight: math.unit(110, "lb"),
  49177. name: "Winter",
  49178. image: {
  49179. source: "./media/characters/keltre/winter.svg",
  49180. extra: 1099/1057,
  49181. bottom: 22/1121
  49182. }
  49183. },
  49184. head: {
  49185. height: math.unit(1.61 * 0.86, "feet"),
  49186. name: "Head",
  49187. image: {
  49188. source: "./media/characters/keltre/head.svg",
  49189. extra: 534/421,
  49190. bottom: 0/534
  49191. }
  49192. },
  49193. hand: {
  49194. height: math.unit(1.3 * 0.86, "feet"),
  49195. name: "Hand",
  49196. image: {
  49197. source: "./media/characters/keltre/hand.svg"
  49198. }
  49199. },
  49200. foot: {
  49201. height: math.unit(1.8 * 0.86, "feet"),
  49202. name: "Foot",
  49203. image: {
  49204. source: "./media/characters/keltre/foot.svg"
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Fine",
  49211. height: math.unit(1, "inch")
  49212. },
  49213. {
  49214. name: "Dimnutive",
  49215. height: math.unit(4, "inches")
  49216. },
  49217. {
  49218. name: "Tiny",
  49219. height: math.unit(1, "foot")
  49220. },
  49221. {
  49222. name: "Small",
  49223. height: math.unit(3, "feet")
  49224. },
  49225. {
  49226. name: "Normal",
  49227. height: math.unit(5 + 2/12, "feet"),
  49228. default: true
  49229. },
  49230. ]
  49231. ))
  49232. characterMakers.push(() => makeCharacter(
  49233. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49234. {
  49235. front: {
  49236. height: math.unit(6 + 2/12, "feet"),
  49237. name: "Front",
  49238. image: {
  49239. source: "./media/characters/nox/front.svg",
  49240. extra: 1917/1830,
  49241. bottom: 74/1991
  49242. }
  49243. },
  49244. back: {
  49245. height: math.unit(6 + 2/12, "feet"),
  49246. name: "Back",
  49247. image: {
  49248. source: "./media/characters/nox/back.svg",
  49249. extra: 1896/1815,
  49250. bottom: 21/1917
  49251. }
  49252. },
  49253. head: {
  49254. height: math.unit(1.1, "feet"),
  49255. name: "Head",
  49256. image: {
  49257. source: "./media/characters/nox/head.svg",
  49258. extra: 874/704,
  49259. bottom: 0/874
  49260. }
  49261. },
  49262. tattoo: {
  49263. height: math.unit(0.729, "feet"),
  49264. name: "Tattoo",
  49265. image: {
  49266. source: "./media/characters/nox/tattoo.svg"
  49267. }
  49268. },
  49269. },
  49270. [
  49271. {
  49272. name: "Normal",
  49273. height: math.unit(6 + 2/12, "feet")
  49274. },
  49275. {
  49276. name: "Gigamacro",
  49277. height: math.unit(2, "earths"),
  49278. default: true
  49279. },
  49280. {
  49281. name: "Cosmic",
  49282. height: math.unit(867, "yottameters")
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49288. {
  49289. front: {
  49290. height: math.unit(6, "feet"),
  49291. weight: math.unit(150, "lb"),
  49292. name: "Front",
  49293. image: {
  49294. source: "./media/characters/caspian/front.svg",
  49295. extra: 1443/1359,
  49296. bottom: 0/1443
  49297. }
  49298. },
  49299. back: {
  49300. height: math.unit(6, "feet"),
  49301. weight: math.unit(150, "lb"),
  49302. name: "Back",
  49303. image: {
  49304. source: "./media/characters/caspian/back.svg",
  49305. extra: 1379/1309,
  49306. bottom: 0/1379
  49307. }
  49308. },
  49309. head: {
  49310. height: math.unit(0.9, "feet"),
  49311. name: "Head",
  49312. image: {
  49313. source: "./media/characters/caspian/head.svg",
  49314. extra: 692/492,
  49315. bottom: 0/692
  49316. }
  49317. },
  49318. headAlt: {
  49319. height: math.unit(0.95, "feet"),
  49320. name: "Head (Alt)",
  49321. image: {
  49322. source: "./media/characters/caspian/head-alt.svg",
  49323. extra: 668/508,
  49324. bottom: 0/668
  49325. }
  49326. },
  49327. hand: {
  49328. height: math.unit(0.8, "feet"),
  49329. name: "Hand",
  49330. image: {
  49331. source: "./media/characters/caspian/hand.svg"
  49332. }
  49333. },
  49334. paw: {
  49335. height: math.unit(0.95, "feet"),
  49336. name: "Paw",
  49337. image: {
  49338. source: "./media/characters/caspian/paw.svg"
  49339. }
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(162, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49352. {
  49353. front: {
  49354. height: math.unit(6, "feet"),
  49355. name: "Front",
  49356. image: {
  49357. source: "./media/characters/myra-aisling/front.svg",
  49358. extra: 1268/1166,
  49359. bottom: 73/1341
  49360. }
  49361. },
  49362. back: {
  49363. height: math.unit(6, "feet"),
  49364. name: "Back",
  49365. image: {
  49366. source: "./media/characters/myra-aisling/back.svg",
  49367. extra: 1249/1149,
  49368. bottom: 79/1328
  49369. }
  49370. },
  49371. dressed: {
  49372. height: math.unit(6, "feet"),
  49373. name: "Dressed",
  49374. image: {
  49375. source: "./media/characters/myra-aisling/dressed.svg",
  49376. extra: 1290/1189,
  49377. bottom: 47/1337
  49378. }
  49379. },
  49380. hand: {
  49381. height: math.unit(1.1, "feet"),
  49382. name: "Hand",
  49383. image: {
  49384. source: "./media/characters/myra-aisling/hand.svg"
  49385. }
  49386. },
  49387. paw: {
  49388. height: math.unit(1.23, "feet"),
  49389. name: "Paw",
  49390. image: {
  49391. source: "./media/characters/myra-aisling/paw.svg"
  49392. }
  49393. },
  49394. },
  49395. [
  49396. {
  49397. name: "Normal",
  49398. height: math.unit(160, "feet"),
  49399. default: true
  49400. },
  49401. ]
  49402. ))
  49403. characterMakers.push(() => makeCharacter(
  49404. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49405. {
  49406. front: {
  49407. height: math.unit(6, "feet"),
  49408. name: "Front",
  49409. image: {
  49410. source: "./media/characters/tenley-sidero/front.svg",
  49411. extra: 1365/1276,
  49412. bottom: 47/1412
  49413. }
  49414. },
  49415. back: {
  49416. height: math.unit(6, "feet"),
  49417. name: "Back",
  49418. image: {
  49419. source: "./media/characters/tenley-sidero/back.svg",
  49420. extra: 1383/1283,
  49421. bottom: 35/1418
  49422. }
  49423. },
  49424. dressed: {
  49425. height: math.unit(6, "feet"),
  49426. name: "Dressed",
  49427. image: {
  49428. source: "./media/characters/tenley-sidero/dressed.svg",
  49429. extra: 1364/1275,
  49430. bottom: 42/1406
  49431. }
  49432. },
  49433. head: {
  49434. height: math.unit(1.47, "feet"),
  49435. name: "Head",
  49436. image: {
  49437. source: "./media/characters/tenley-sidero/head.svg",
  49438. extra: 610/490,
  49439. bottom: 0/610
  49440. }
  49441. },
  49442. },
  49443. [
  49444. {
  49445. name: "Normal",
  49446. height: math.unit(154, "feet"),
  49447. default: true
  49448. },
  49449. ]
  49450. ))
  49451. characterMakers.push(() => makeCharacter(
  49452. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49453. {
  49454. front: {
  49455. height: math.unit(5, "inches"),
  49456. name: "Front",
  49457. image: {
  49458. source: "./media/characters/mallory/front.svg",
  49459. extra: 1919/1678,
  49460. bottom: 29/1948
  49461. }
  49462. },
  49463. hand: {
  49464. height: math.unit(0.73, "inches"),
  49465. name: "Hand",
  49466. image: {
  49467. source: "./media/characters/mallory/hand.svg"
  49468. }
  49469. },
  49470. paw: {
  49471. height: math.unit(0.68, "inches"),
  49472. name: "Paw",
  49473. image: {
  49474. source: "./media/characters/mallory/paw.svg"
  49475. }
  49476. },
  49477. },
  49478. [
  49479. {
  49480. name: "Small",
  49481. height: math.unit(5, "inches"),
  49482. default: true
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49488. {
  49489. naked: {
  49490. height: math.unit(6, "feet"),
  49491. name: "Naked",
  49492. image: {
  49493. source: "./media/characters/mab/naked.svg",
  49494. extra: 1855/1757,
  49495. bottom: 208/2063
  49496. }
  49497. },
  49498. outside: {
  49499. height: math.unit(6, "feet"),
  49500. name: "Outside",
  49501. image: {
  49502. source: "./media/characters/mab/outside.svg",
  49503. extra: 1855/1757,
  49504. bottom: 208/2063
  49505. }
  49506. },
  49507. party: {
  49508. height: math.unit(6, "feet"),
  49509. name: "Party",
  49510. image: {
  49511. source: "./media/characters/mab/party.svg",
  49512. extra: 1855/1757,
  49513. bottom: 208/2063
  49514. }
  49515. },
  49516. },
  49517. [
  49518. {
  49519. name: "Normal",
  49520. height: math.unit(165, "feet"),
  49521. default: true
  49522. },
  49523. ]
  49524. ))
  49525. characterMakers.push(() => makeCharacter(
  49526. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49527. {
  49528. feral: {
  49529. height: math.unit(12, "feet"),
  49530. weight: math.unit(20000, "lb"),
  49531. name: "Side",
  49532. image: {
  49533. source: "./media/characters/winter/feral.svg",
  49534. extra: 1286/943,
  49535. bottom: 112/1398
  49536. },
  49537. form: "feral",
  49538. default: true
  49539. },
  49540. feralNsfw: {
  49541. height: math.unit(12, "feet"),
  49542. weight: math.unit(20000, "lb"),
  49543. name: "Side (NSFW)",
  49544. image: {
  49545. source: "./media/characters/winter/feral-nsfw.svg",
  49546. extra: 1286/943,
  49547. bottom: 112/1398
  49548. },
  49549. form: "feral"
  49550. },
  49551. dick: {
  49552. height: math.unit(3.79, "feet"),
  49553. name: "Dick",
  49554. image: {
  49555. source: "./media/characters/winter/dick.svg"
  49556. },
  49557. form: "feral"
  49558. },
  49559. anthro: {
  49560. height: math.unit(12, "feet"),
  49561. weight: math.unit(10, "tons"),
  49562. name: "Anthro",
  49563. image: {
  49564. source: "./media/characters/winter/anthro.svg",
  49565. extra: 1701/1553,
  49566. bottom: 64/1765
  49567. },
  49568. form: "anthro",
  49569. default: true
  49570. },
  49571. },
  49572. [
  49573. {
  49574. name: "Big",
  49575. height: math.unit(12, "feet"),
  49576. default: true,
  49577. form: "feral"
  49578. },
  49579. {
  49580. name: "Big",
  49581. height: math.unit(12, "feet"),
  49582. default: true,
  49583. form: "anthro"
  49584. },
  49585. ],
  49586. {
  49587. "feral": {
  49588. name: "Feral",
  49589. default: true
  49590. },
  49591. "anthro": {
  49592. name: "Anthro"
  49593. }
  49594. }
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49598. {
  49599. front: {
  49600. height: math.unit(4.1, "inches"),
  49601. name: "Front",
  49602. image: {
  49603. source: "./media/characters/alto/front.svg",
  49604. extra: 736/627,
  49605. bottom: 90/826
  49606. }
  49607. },
  49608. },
  49609. [
  49610. {
  49611. name: "Normal",
  49612. height: math.unit(4.1, "inches"),
  49613. default: true
  49614. },
  49615. ]
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49619. {
  49620. sitting: {
  49621. height: math.unit(3, "feet"),
  49622. name: "Sitting",
  49623. image: {
  49624. source: "./media/characters/ratstrid-v/sitting.svg",
  49625. extra: 355/310,
  49626. bottom: 136/491
  49627. }
  49628. },
  49629. },
  49630. [
  49631. {
  49632. name: "Normal",
  49633. height: math.unit(3, "feet"),
  49634. default: true
  49635. },
  49636. ]
  49637. ))
  49638. characterMakers.push(() => makeCharacter(
  49639. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49640. {
  49641. back: {
  49642. height: math.unit(6, "feet"),
  49643. weight: math.unit(350, "lb"),
  49644. name: "Back",
  49645. image: {
  49646. source: "./media/characters/siz/back.svg",
  49647. extra: 1449/1274,
  49648. bottom: 13/1462
  49649. }
  49650. },
  49651. },
  49652. [
  49653. {
  49654. name: "Over-Overcompressed",
  49655. height: math.unit(8, "feet")
  49656. },
  49657. {
  49658. name: "Overcompressed",
  49659. height: math.unit(32, "feet")
  49660. },
  49661. {
  49662. name: "Compressed",
  49663. height: math.unit(128, "feet"),
  49664. default: true
  49665. },
  49666. {
  49667. name: "Half-Compressed",
  49668. height: math.unit(512, "feet")
  49669. },
  49670. {
  49671. name: "Quarter-Compressed",
  49672. height: math.unit(2048, "feet")
  49673. },
  49674. {
  49675. name: "Uncompressed?",
  49676. height: math.unit(8192, "feet")
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49682. {
  49683. front: {
  49684. height: math.unit(5 + 9/12, "feet"),
  49685. weight: math.unit(150, "lb"),
  49686. name: "Front",
  49687. image: {
  49688. source: "./media/characters/ven/front.svg",
  49689. extra: 1372/1320,
  49690. bottom: 73/1445
  49691. }
  49692. },
  49693. side: {
  49694. height: math.unit(5 + 9/12, "feet"),
  49695. weight: math.unit(1150, "lb"),
  49696. name: "Side",
  49697. image: {
  49698. source: "./media/characters/ven/side.svg",
  49699. extra: 1119/1070,
  49700. bottom: 42/1161
  49701. },
  49702. default: true
  49703. },
  49704. },
  49705. [
  49706. {
  49707. name: "Normal",
  49708. height: math.unit(5 + 9/12, "feet"),
  49709. default: true
  49710. },
  49711. ]
  49712. ))
  49713. characterMakers.push(() => makeCharacter(
  49714. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49715. {
  49716. front: {
  49717. height: math.unit(12, "feet"),
  49718. weight: math.unit(1000, "kg"),
  49719. name: "Front",
  49720. image: {
  49721. source: "./media/characters/maple/front.svg",
  49722. extra: 1193/1081,
  49723. bottom: 22/1215
  49724. }
  49725. },
  49726. },
  49727. [
  49728. {
  49729. name: "Compressed",
  49730. height: math.unit(7, "feet")
  49731. },
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(12, "feet"),
  49735. default: true
  49736. },
  49737. ]
  49738. ))
  49739. characterMakers.push(() => makeCharacter(
  49740. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49741. {
  49742. front: {
  49743. height: math.unit(9, "feet"),
  49744. weight: math.unit(1500, "lb"),
  49745. name: "Front",
  49746. image: {
  49747. source: "./media/characters/nora/front.svg",
  49748. extra: 1348/1286,
  49749. bottom: 218/1566
  49750. }
  49751. },
  49752. erect: {
  49753. height: math.unit(9, "feet"),
  49754. weight: math.unit(11500, "lb"),
  49755. name: "Erect",
  49756. image: {
  49757. source: "./media/characters/nora/erect.svg",
  49758. extra: 1488/1433,
  49759. bottom: 133/1621
  49760. }
  49761. },
  49762. },
  49763. [
  49764. {
  49765. name: "Normal",
  49766. height: math.unit(9, "feet"),
  49767. default: true
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(25, "feet"),
  49776. weight: math.unit(27500, "lb"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/north-caudin/front.svg",
  49780. extra: 1184/1082,
  49781. bottom: 23/1207
  49782. }
  49783. },
  49784. },
  49785. [
  49786. {
  49787. name: "Compressed",
  49788. height: math.unit(10, "feet")
  49789. },
  49790. {
  49791. name: "Normal",
  49792. height: math.unit(25, "feet"),
  49793. default: true
  49794. },
  49795. ]
  49796. ))
  49797. characterMakers.push(() => makeCharacter(
  49798. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49799. {
  49800. front: {
  49801. height: math.unit(9, "feet"),
  49802. weight: math.unit(1250, "lb"),
  49803. name: "Front",
  49804. image: {
  49805. source: "./media/characters/merrian/front.svg",
  49806. extra: 2393/2304,
  49807. bottom: 40/2433
  49808. }
  49809. },
  49810. },
  49811. [
  49812. {
  49813. name: "Normal",
  49814. height: math.unit(9, "feet"),
  49815. default: true
  49816. },
  49817. ]
  49818. ))
  49819. characterMakers.push(() => makeCharacter(
  49820. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49821. {
  49822. front: {
  49823. height: math.unit(9, "feet"),
  49824. weight: math.unit(1000, "lb"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/hazel/front.svg",
  49828. extra: 2351/2298,
  49829. bottom: 38/2389
  49830. }
  49831. },
  49832. },
  49833. [
  49834. {
  49835. name: "Normal",
  49836. height: math.unit(9, "feet"),
  49837. default: true
  49838. },
  49839. ]
  49840. ))
  49841. characterMakers.push(() => makeCharacter(
  49842. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49843. {
  49844. front: {
  49845. height: math.unit(13, "feet"),
  49846. weight: math.unit(3200, "lb"),
  49847. name: "Front",
  49848. image: {
  49849. source: "./media/characters/emma/front.svg",
  49850. extra: 2263/2029,
  49851. bottom: 68/2331
  49852. }
  49853. },
  49854. },
  49855. [
  49856. {
  49857. name: "Normal",
  49858. height: math.unit(13, "feet"),
  49859. default: true
  49860. },
  49861. ]
  49862. ))
  49863. characterMakers.push(() => makeCharacter(
  49864. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49865. {
  49866. front: {
  49867. height: math.unit(11 + 9/12, "feet"),
  49868. weight: math.unit(2500, "lb"),
  49869. name: "Front",
  49870. image: {
  49871. source: "./media/characters/ilumina/front.svg",
  49872. extra: 2248/2209,
  49873. bottom: 164/2412
  49874. }
  49875. },
  49876. },
  49877. [
  49878. {
  49879. name: "Normal",
  49880. height: math.unit(11 + 9/12, "feet"),
  49881. default: true
  49882. },
  49883. ]
  49884. ))
  49885. characterMakers.push(() => makeCharacter(
  49886. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49887. {
  49888. front: {
  49889. height: math.unit(8 + 10/12, "feet"),
  49890. weight: math.unit(1350, "lb"),
  49891. name: "Front",
  49892. image: {
  49893. source: "./media/characters/moonshine/front.svg",
  49894. extra: 2395/2288,
  49895. bottom: 40/2435
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Normal",
  49902. height: math.unit(8 + 10/12, "feet"),
  49903. default: true
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49909. {
  49910. front: {
  49911. height: math.unit(14, "feet"),
  49912. weight: math.unit(3400, "lb"),
  49913. name: "Front",
  49914. image: {
  49915. source: "./media/characters/aletia/front.svg",
  49916. extra: 1185/1052,
  49917. bottom: 21/1206
  49918. }
  49919. },
  49920. },
  49921. [
  49922. {
  49923. name: "Compressed",
  49924. height: math.unit(8, "feet")
  49925. },
  49926. {
  49927. name: "Normal",
  49928. height: math.unit(14, "feet"),
  49929. default: true
  49930. },
  49931. ]
  49932. ))
  49933. characterMakers.push(() => makeCharacter(
  49934. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49935. {
  49936. front: {
  49937. height: math.unit(17, "feet"),
  49938. weight: math.unit(6500, "lb"),
  49939. name: "Front",
  49940. image: {
  49941. source: "./media/characters/deidra/front.svg",
  49942. extra: 1201/1081,
  49943. bottom: 16/1217
  49944. }
  49945. },
  49946. },
  49947. [
  49948. {
  49949. name: "Compressed",
  49950. height: math.unit(9 + 6/12, "feet")
  49951. },
  49952. {
  49953. name: "Normal",
  49954. height: math.unit(17, "feet"),
  49955. default: true
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49961. {
  49962. front: {
  49963. height: math.unit(7 + 4/12, "feet"),
  49964. weight: math.unit(280, "lb"),
  49965. name: "Front",
  49966. image: {
  49967. source: "./media/characters/freki-yrmori/front.svg",
  49968. extra: 1286/1182,
  49969. bottom: 29/1315
  49970. }
  49971. },
  49972. maw: {
  49973. height: math.unit(0.9, "feet"),
  49974. name: "Maw",
  49975. image: {
  49976. source: "./media/characters/freki-yrmori/maw.svg"
  49977. }
  49978. },
  49979. },
  49980. [
  49981. {
  49982. name: "Normal",
  49983. height: math.unit(7 + 4/12, "feet"),
  49984. default: true
  49985. },
  49986. {
  49987. name: "Macro",
  49988. height: math.unit(38.5, "meters")
  49989. },
  49990. ]
  49991. ))
  49992. characterMakers.push(() => makeCharacter(
  49993. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49994. {
  49995. side: {
  49996. height: math.unit(47.2, "meters"),
  49997. weight: math.unit(10000, "tons"),
  49998. name: "Side",
  49999. image: {
  50000. source: "./media/characters/aetherios/side.svg",
  50001. extra: 2363/642,
  50002. bottom: 221/2584
  50003. }
  50004. },
  50005. top: {
  50006. height: math.unit(240, "meters"),
  50007. weight: math.unit(10000, "tons"),
  50008. name: "Top",
  50009. image: {
  50010. source: "./media/characters/aetherios/top.svg"
  50011. }
  50012. },
  50013. bottom: {
  50014. height: math.unit(240, "meters"),
  50015. weight: math.unit(10000, "tons"),
  50016. name: "Bottom",
  50017. image: {
  50018. source: "./media/characters/aetherios/bottom.svg"
  50019. }
  50020. },
  50021. head: {
  50022. height: math.unit(38.6, "meters"),
  50023. name: "Head",
  50024. image: {
  50025. source: "./media/characters/aetherios/head.svg",
  50026. extra: 1335/1112,
  50027. bottom: 0/1335
  50028. }
  50029. },
  50030. front: {
  50031. height: math.unit(29, "meters"),
  50032. name: "Front",
  50033. image: {
  50034. source: "./media/characters/aetherios/front.svg",
  50035. extra: 1266/953,
  50036. bottom: 158/1424
  50037. }
  50038. },
  50039. maw: {
  50040. height: math.unit(16.37, "meters"),
  50041. name: "Maw",
  50042. image: {
  50043. source: "./media/characters/aetherios/maw.svg",
  50044. extra: 748/637,
  50045. bottom: 0/748
  50046. },
  50047. extraAttributes: {
  50048. preyCapacity: {
  50049. name: "Capacity",
  50050. power: 3,
  50051. type: "volume",
  50052. base: math.unit(1000, "people")
  50053. },
  50054. tongueSize: {
  50055. name: "Tongue Size",
  50056. power: 2,
  50057. type: "area",
  50058. base: math.unit(21, "m^2")
  50059. }
  50060. }
  50061. },
  50062. forepaw: {
  50063. height: math.unit(18, "meters"),
  50064. name: "Forepaw",
  50065. image: {
  50066. source: "./media/characters/aetherios/forepaw.svg"
  50067. }
  50068. },
  50069. hindpaw: {
  50070. height: math.unit(23, "meters"),
  50071. name: "Hindpaw",
  50072. image: {
  50073. source: "./media/characters/aetherios/hindpaw.svg"
  50074. }
  50075. },
  50076. genitals: {
  50077. height: math.unit(42, "meters"),
  50078. name: "Genitals",
  50079. image: {
  50080. source: "./media/characters/aetherios/genitals.svg"
  50081. }
  50082. },
  50083. },
  50084. [
  50085. {
  50086. name: "Normal",
  50087. height: math.unit(47.2, "meters"),
  50088. default: true
  50089. },
  50090. {
  50091. name: "Macro",
  50092. height: math.unit(160, "meters")
  50093. },
  50094. {
  50095. name: "Mega",
  50096. height: math.unit(1.87, "km")
  50097. },
  50098. {
  50099. name: "Giga",
  50100. height: math.unit(40000, "km")
  50101. },
  50102. {
  50103. name: "Stellar",
  50104. height: math.unit(158000000, "km")
  50105. },
  50106. {
  50107. name: "Cosmic",
  50108. height: math.unit(9.46e12, "km")
  50109. },
  50110. ]
  50111. ))
  50112. characterMakers.push(() => makeCharacter(
  50113. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50114. {
  50115. front: {
  50116. height: math.unit(5 + 4/12, "feet"),
  50117. weight: math.unit(80, "lb"),
  50118. name: "Front",
  50119. image: {
  50120. source: "./media/characters/mizu-gieeg/front.svg",
  50121. extra: 850/709,
  50122. bottom: 52/902
  50123. }
  50124. },
  50125. back: {
  50126. height: math.unit(5 + 4/12, "feet"),
  50127. weight: math.unit(80, "lb"),
  50128. name: "Back",
  50129. image: {
  50130. source: "./media/characters/mizu-gieeg/back.svg",
  50131. extra: 882/745,
  50132. bottom: 25/907
  50133. }
  50134. },
  50135. },
  50136. [
  50137. {
  50138. name: "Normal",
  50139. height: math.unit(5 + 4/12, "feet"),
  50140. default: true
  50141. },
  50142. ]
  50143. ))
  50144. characterMakers.push(() => makeCharacter(
  50145. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50146. {
  50147. front: {
  50148. height: math.unit(6, "feet"),
  50149. name: "Front",
  50150. image: {
  50151. source: "./media/characters/roselle-st-papier/front.svg",
  50152. extra: 1430/1280,
  50153. bottom: 37/1467
  50154. }
  50155. },
  50156. back: {
  50157. height: math.unit(6, "feet"),
  50158. name: "Back",
  50159. image: {
  50160. source: "./media/characters/roselle-st-papier/back.svg",
  50161. extra: 1491/1296,
  50162. bottom: 23/1514
  50163. }
  50164. },
  50165. ear: {
  50166. height: math.unit(1.26, "feet"),
  50167. name: "Ear",
  50168. image: {
  50169. source: "./media/characters/roselle-st-papier/ear.svg"
  50170. }
  50171. },
  50172. },
  50173. [
  50174. {
  50175. name: "Normal",
  50176. height: math.unit(150, "feet"),
  50177. default: true
  50178. },
  50179. ]
  50180. ))
  50181. characterMakers.push(() => makeCharacter(
  50182. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50183. {
  50184. front: {
  50185. height: math.unit(1, "inches"),
  50186. name: "Front",
  50187. image: {
  50188. source: "./media/characters/valargent/front.svg",
  50189. extra: 1825/1694,
  50190. bottom: 62/1887
  50191. }
  50192. },
  50193. back: {
  50194. height: math.unit(1, "inches"),
  50195. name: "Back",
  50196. image: {
  50197. source: "./media/characters/valargent/back.svg",
  50198. extra: 1775/1682,
  50199. bottom: 88/1863
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Micro",
  50206. height: math.unit(1, "inch"),
  50207. default: true
  50208. },
  50209. ]
  50210. ))
  50211. characterMakers.push(() => makeCharacter(
  50212. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50213. {
  50214. front: {
  50215. height: math.unit(3.4, "meters"),
  50216. name: "Front",
  50217. image: {
  50218. source: "./media/characters/zarina/front.svg",
  50219. extra: 1733/1425,
  50220. bottom: 93/1826
  50221. }
  50222. },
  50223. squatting: {
  50224. height: math.unit(2.14, "meters"),
  50225. name: "Squatting",
  50226. image: {
  50227. source: "./media/characters/zarina/squatting.svg",
  50228. extra: 1073/788,
  50229. bottom: 63/1136
  50230. }
  50231. },
  50232. back: {
  50233. height: math.unit(2.14, "meters"),
  50234. name: "Back",
  50235. image: {
  50236. source: "./media/characters/zarina/back.svg",
  50237. extra: 1128/885,
  50238. bottom: 0/1128
  50239. }
  50240. },
  50241. },
  50242. [
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(3.4, "meters"),
  50246. default: true
  50247. },
  50248. {
  50249. name: "Big",
  50250. height: math.unit(5, "meters")
  50251. },
  50252. {
  50253. name: "Macro",
  50254. height: math.unit(110, "meters")
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50260. {
  50261. front: {
  50262. height: math.unit(7, "feet"),
  50263. name: "Front",
  50264. image: {
  50265. source: "./media/characters/ventus-astro-fox/front.svg",
  50266. extra: 1792/1623,
  50267. bottom: 28/1820
  50268. }
  50269. },
  50270. back: {
  50271. height: math.unit(7, "feet"),
  50272. name: "Back",
  50273. image: {
  50274. source: "./media/characters/ventus-astro-fox/back.svg",
  50275. extra: 1789/1620,
  50276. bottom: 31/1820
  50277. }
  50278. },
  50279. outfit: {
  50280. height: math.unit(7, "feet"),
  50281. name: "Outfit",
  50282. image: {
  50283. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50284. extra: 1054/925,
  50285. bottom: 15/1069
  50286. }
  50287. },
  50288. head: {
  50289. height: math.unit(1.12, "feet"),
  50290. name: "Head",
  50291. image: {
  50292. source: "./media/characters/ventus-astro-fox/head.svg",
  50293. extra: 866/504,
  50294. bottom: 0/866
  50295. }
  50296. },
  50297. hand: {
  50298. height: math.unit(1, "feet"),
  50299. name: "Hand",
  50300. image: {
  50301. source: "./media/characters/ventus-astro-fox/hand.svg"
  50302. }
  50303. },
  50304. paw: {
  50305. height: math.unit(1.5, "feet"),
  50306. name: "Paw",
  50307. image: {
  50308. source: "./media/characters/ventus-astro-fox/paw.svg"
  50309. }
  50310. },
  50311. },
  50312. [
  50313. {
  50314. name: "Normal",
  50315. height: math.unit(7, "feet"),
  50316. default: true
  50317. },
  50318. {
  50319. name: "Macro",
  50320. height: math.unit(200, "feet")
  50321. },
  50322. {
  50323. name: "Cosmic",
  50324. height: math.unit(3, "universes")
  50325. },
  50326. ]
  50327. ))
  50328. characterMakers.push(() => makeCharacter(
  50329. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50330. {
  50331. front: {
  50332. height: math.unit(3, "meters"),
  50333. weight: math.unit(7000, "lb"),
  50334. name: "Front",
  50335. image: {
  50336. source: "./media/characters/core-t/front.svg",
  50337. extra: 5729/4941,
  50338. bottom: 1129/6858
  50339. }
  50340. },
  50341. },
  50342. [
  50343. {
  50344. name: "Big",
  50345. height: math.unit(3, "meters"),
  50346. default: true
  50347. },
  50348. ]
  50349. ))
  50350. characterMakers.push(() => makeCharacter(
  50351. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50352. {
  50353. normal: {
  50354. height: math.unit(6 + 6/12, "feet"),
  50355. weight: math.unit(275, "lb"),
  50356. name: "Front",
  50357. image: {
  50358. source: "./media/characters/cadbunny/normal.svg",
  50359. extra: 1129/947,
  50360. bottom: 93/1222
  50361. },
  50362. default: true,
  50363. form: "normal"
  50364. },
  50365. gigantamax: {
  50366. height: math.unit(26, "feet"),
  50367. weight: math.unit(16000, "lb"),
  50368. name: "Front",
  50369. image: {
  50370. source: "./media/characters/cadbunny/gigantamax.svg",
  50371. extra: 1133/944,
  50372. bottom: 90/1223
  50373. },
  50374. default: true,
  50375. form: "gigantamax"
  50376. },
  50377. },
  50378. [
  50379. {
  50380. name: "Normal",
  50381. height: math.unit(6 + 6/12, "feet"),
  50382. default: true,
  50383. form: "normal"
  50384. },
  50385. {
  50386. name: "Small",
  50387. height: math.unit(26, "feet"),
  50388. default: true,
  50389. form: "gigantamax"
  50390. },
  50391. {
  50392. name: "Large",
  50393. height: math.unit(78, "feet"),
  50394. form: "gigantamax"
  50395. },
  50396. ],
  50397. {
  50398. "normal": {
  50399. name: "Normal",
  50400. default: true
  50401. },
  50402. "gigantamax": {
  50403. name: "Gigantamax"
  50404. }
  50405. }
  50406. ))
  50407. characterMakers.push(() => makeCharacter(
  50408. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50409. {
  50410. anthroFront: {
  50411. height: math.unit(8, "feet"),
  50412. weight: math.unit(300, "lb"),
  50413. name: "Front",
  50414. image: {
  50415. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50416. extra: 1272/1176,
  50417. bottom: 53/1325
  50418. },
  50419. form: "anthro",
  50420. default: true
  50421. },
  50422. feralSide: {
  50423. height: math.unit(4, "feet"),
  50424. weight: math.unit(250, "lb"),
  50425. name: "Side",
  50426. image: {
  50427. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50428. extra: 731/621,
  50429. bottom: 0/731
  50430. },
  50431. form: "feral",
  50432. default: true
  50433. },
  50434. },
  50435. [
  50436. {
  50437. name: "Regular",
  50438. height: math.unit(8, "feet"),
  50439. form: "anthro"
  50440. },
  50441. {
  50442. name: "Macro",
  50443. height: math.unit(250, "feet"),
  50444. form: "anthro",
  50445. default: true
  50446. },
  50447. {
  50448. name: "Regular",
  50449. height: math.unit(4, "feet"),
  50450. form: "feral"
  50451. },
  50452. {
  50453. name: "Macro",
  50454. height: math.unit(125, "feet"),
  50455. form: "feral",
  50456. default: true
  50457. },
  50458. ],
  50459. {
  50460. "anthro": {
  50461. name: "Anthro",
  50462. default: true
  50463. },
  50464. "feral": {
  50465. name: "Feral",
  50466. },
  50467. }
  50468. ))
  50469. characterMakers.push(() => makeCharacter(
  50470. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50471. {
  50472. front: {
  50473. height: math.unit(11 + 10/12, "feet"),
  50474. weight: math.unit(1587, "kg"),
  50475. name: "Front",
  50476. image: {
  50477. source: "./media/characters/maple-javira-dragon/front.svg",
  50478. extra: 1136/744,
  50479. bottom: 73/1209
  50480. }
  50481. },
  50482. side: {
  50483. height: math.unit(11 + 10/12, "feet"),
  50484. weight: math.unit(1587, "kg"),
  50485. name: "Side",
  50486. image: {
  50487. source: "./media/characters/maple-javira-dragon/side.svg",
  50488. extra: 712/505,
  50489. bottom: 17/729
  50490. }
  50491. },
  50492. head: {
  50493. height: math.unit(8.05, "feet"),
  50494. name: "Head",
  50495. image: {
  50496. source: "./media/characters/maple-javira-dragon/head.svg",
  50497. extra: 1420/1344,
  50498. bottom: 0/1420
  50499. }
  50500. },
  50501. },
  50502. [
  50503. {
  50504. name: "Normal",
  50505. height: math.unit(11 + 10/12, "feet"),
  50506. default: true
  50507. },
  50508. ]
  50509. ))
  50510. characterMakers.push(() => makeCharacter(
  50511. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50512. {
  50513. front: {
  50514. height: math.unit(117, "cm"),
  50515. weight: math.unit(50, "kg"),
  50516. name: "Front",
  50517. image: {
  50518. source: "./media/characters/sonia-wyverntail/front.svg",
  50519. extra: 708/592,
  50520. bottom: 25/733
  50521. }
  50522. },
  50523. },
  50524. [
  50525. {
  50526. name: "Normal",
  50527. height: math.unit(117, "cm"),
  50528. default: true
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(6 + 5/12, "feet"),
  50537. name: "Front",
  50538. image: {
  50539. source: "./media/characters/micah/front.svg",
  50540. extra: 1758/1546,
  50541. bottom: 214/1972
  50542. }
  50543. },
  50544. },
  50545. [
  50546. {
  50547. name: "Normal",
  50548. height: math.unit(6 + 5/12, "feet"),
  50549. default: true
  50550. },
  50551. ]
  50552. ))
  50553. characterMakers.push(() => makeCharacter(
  50554. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50555. {
  50556. front: {
  50557. height: math.unit(5 + 10/12, "feet"),
  50558. weight: math.unit(220, "lb"),
  50559. name: "Front",
  50560. image: {
  50561. source: "./media/characters/zarya/front.svg",
  50562. extra: 593/572,
  50563. bottom: 50/643
  50564. }
  50565. },
  50566. back: {
  50567. height: math.unit(5 + 10/12, "feet"),
  50568. weight: math.unit(220, "lb"),
  50569. name: "Back",
  50570. image: {
  50571. source: "./media/characters/zarya/back.svg",
  50572. extra: 603/582,
  50573. bottom: 38/641
  50574. }
  50575. },
  50576. },
  50577. [
  50578. {
  50579. name: "Normal",
  50580. height: math.unit(5 + 10/12, "feet"),
  50581. default: true
  50582. },
  50583. ]
  50584. ))
  50585. characterMakers.push(() => makeCharacter(
  50586. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50587. {
  50588. front: {
  50589. height: math.unit(7.5, "feet"),
  50590. name: "Front",
  50591. image: {
  50592. source: "./media/characters/sven-hatisson/front.svg",
  50593. extra: 917/857,
  50594. bottom: 42/959
  50595. }
  50596. },
  50597. back: {
  50598. height: math.unit(7.5, "feet"),
  50599. name: "Back",
  50600. image: {
  50601. source: "./media/characters/sven-hatisson/back.svg",
  50602. extra: 903/856,
  50603. bottom: 15/918
  50604. }
  50605. },
  50606. },
  50607. [
  50608. {
  50609. name: "Base Height",
  50610. height: math.unit(7.5, "feet")
  50611. },
  50612. {
  50613. name: "Usual Height",
  50614. height: math.unit(13.5, "feet"),
  50615. default: true
  50616. },
  50617. {
  50618. name: "Smaller Macro",
  50619. height: math.unit(85, "feet")
  50620. },
  50621. {
  50622. name: "Moderate Macro",
  50623. height: math.unit(320, "feet")
  50624. },
  50625. {
  50626. name: "Large Macro",
  50627. height: math.unit(1000, "feet")
  50628. },
  50629. {
  50630. name: "Largest Size",
  50631. height: math.unit(2, "miles")
  50632. },
  50633. ]
  50634. ))
  50635. characterMakers.push(() => makeCharacter(
  50636. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50637. {
  50638. side: {
  50639. height: math.unit(1.8, "meters"),
  50640. weight: math.unit(275, "kg"),
  50641. name: "Side",
  50642. image: {
  50643. source: "./media/characters/terra/side.svg",
  50644. extra: 1273/1147,
  50645. bottom: 0/1273
  50646. }
  50647. },
  50648. },
  50649. [
  50650. {
  50651. name: "Normal",
  50652. height: math.unit(16.2, "meters"),
  50653. default: true
  50654. },
  50655. ]
  50656. ))
  50657. characterMakers.push(() => makeCharacter(
  50658. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50659. {
  50660. borzoiFront: {
  50661. height: math.unit(6 + 9/12, "feet"),
  50662. name: "Front",
  50663. image: {
  50664. source: "./media/characters/rae/borzoi-front.svg",
  50665. extra: 1161/1098,
  50666. bottom: 31/1192
  50667. },
  50668. form: "borzoi",
  50669. default: true
  50670. },
  50671. werewolfFront: {
  50672. height: math.unit(8 + 7/12, "feet"),
  50673. name: "Front",
  50674. image: {
  50675. source: "./media/characters/rae/werewolf-front.svg",
  50676. extra: 1411/1334,
  50677. bottom: 127/1538
  50678. },
  50679. form: "werewolf",
  50680. default: true
  50681. },
  50682. },
  50683. [
  50684. {
  50685. name: "Normal",
  50686. height: math.unit(6 + 9/12, "feet"),
  50687. default: true,
  50688. form: "borzoi"
  50689. },
  50690. {
  50691. name: "Normal",
  50692. height: math.unit(8 + 7/12, "feet"),
  50693. default: true,
  50694. form: "werewolf"
  50695. },
  50696. ],
  50697. {
  50698. "borzoi": {
  50699. name: "Borzoi",
  50700. default: true
  50701. },
  50702. "werewolf": {
  50703. name: "Werewolf",
  50704. },
  50705. }
  50706. ))
  50707. characterMakers.push(() => makeCharacter(
  50708. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50709. {
  50710. front: {
  50711. height: math.unit(8 + 7/12, "feet"),
  50712. weight: math.unit(482, "lb"),
  50713. name: "Front",
  50714. image: {
  50715. source: "./media/characters/kit/front.svg",
  50716. extra: 1247/1103,
  50717. bottom: 41/1288
  50718. }
  50719. },
  50720. back: {
  50721. height: math.unit(8 + 7/12, "feet"),
  50722. weight: math.unit(482, "lb"),
  50723. name: "Back",
  50724. image: {
  50725. source: "./media/characters/kit/back.svg",
  50726. extra: 1252/1123,
  50727. bottom: 21/1273
  50728. }
  50729. },
  50730. paw: {
  50731. height: math.unit(1.46, "feet"),
  50732. name: "Paw",
  50733. image: {
  50734. source: "./media/characters/kit/paw.svg"
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Normal",
  50741. height: math.unit(2.61, "meters"),
  50742. default: true
  50743. },
  50744. {
  50745. name: "\"Tall\"",
  50746. height: math.unit(8.21, "meters")
  50747. },
  50748. {
  50749. name: "Tall",
  50750. height: math.unit(19.6, "meters")
  50751. },
  50752. {
  50753. name: "Very Tall",
  50754. height: math.unit(57.91, "meters")
  50755. },
  50756. {
  50757. name: "Semi-Macro",
  50758. height: math.unit(138.64, "meters")
  50759. },
  50760. {
  50761. name: "Macro",
  50762. height: math.unit(831.99, "meters")
  50763. },
  50764. {
  50765. name: "EX-Macro",
  50766. height: math.unit(96451121, "meters")
  50767. },
  50768. {
  50769. name: "S1-Omnipotent",
  50770. height: math.unit(4.42074e+9, "meters")
  50771. },
  50772. {
  50773. name: "S2-Omnipotent",
  50774. height: math.unit(9.42074e+17, "meters")
  50775. },
  50776. {
  50777. name: "Omnipotent",
  50778. height: math.unit(4.23112e+24, "meters")
  50779. },
  50780. {
  50781. name: "Hypergod",
  50782. height: math.unit(5.05176e+27, "meters")
  50783. },
  50784. {
  50785. name: "Hypergod-EX",
  50786. height: math.unit(9.45532e+49, "meters")
  50787. },
  50788. {
  50789. name: "Hypergod-SP",
  50790. height: math.unit(9.45532e+195, "meters")
  50791. },
  50792. ]
  50793. ))
  50794. characterMakers.push(() => makeCharacter(
  50795. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50796. {
  50797. side: {
  50798. height: math.unit(0.6, "meters"),
  50799. weight: math.unit(24, "kg"),
  50800. name: "Side",
  50801. image: {
  50802. source: "./media/characters/celeste/side.svg",
  50803. extra: 810/517,
  50804. bottom: 53/863
  50805. }
  50806. },
  50807. },
  50808. [
  50809. {
  50810. name: "Velociraptor",
  50811. height: math.unit(0.6, "meters"),
  50812. default: true
  50813. },
  50814. {
  50815. name: "Utahraptor",
  50816. height: math.unit(1.8, "meters")
  50817. },
  50818. {
  50819. name: "Gallimimus",
  50820. height: math.unit(4.0, "meters")
  50821. },
  50822. {
  50823. name: "Large",
  50824. height: math.unit(20, "meters")
  50825. },
  50826. {
  50827. name: "Planetary",
  50828. height: math.unit(50, "megameters")
  50829. },
  50830. {
  50831. name: "Stellar",
  50832. height: math.unit(1.5, "gigameters")
  50833. },
  50834. {
  50835. name: "Galactic",
  50836. height: math.unit(100, "exameters")
  50837. },
  50838. ]
  50839. ))
  50840. characterMakers.push(() => makeCharacter(
  50841. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50842. {
  50843. front: {
  50844. height: math.unit(6, "feet"),
  50845. weight: math.unit(210, "lb"),
  50846. name: "Front",
  50847. image: {
  50848. source: "./media/characters/glacia/front.svg",
  50849. extra: 958/901,
  50850. bottom: 45/1003
  50851. }
  50852. },
  50853. },
  50854. [
  50855. {
  50856. name: "Macro",
  50857. height: math.unit(1000, "meters"),
  50858. default: true
  50859. },
  50860. ]
  50861. ))
  50862. characterMakers.push(() => makeCharacter(
  50863. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50864. {
  50865. front: {
  50866. height: math.unit(4, "meters"),
  50867. name: "Front",
  50868. image: {
  50869. source: "./media/characters/giri/front.svg",
  50870. extra: 966/894,
  50871. bottom: 21/987
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Normal",
  50878. height: math.unit(4, "meters"),
  50879. default: true
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50885. {
  50886. back: {
  50887. height: math.unit(4, "feet"),
  50888. weight: math.unit(37, "lb"),
  50889. name: "Back",
  50890. image: {
  50891. source: "./media/characters/tin/back.svg",
  50892. extra: 845/780,
  50893. bottom: 28/873
  50894. }
  50895. },
  50896. },
  50897. [
  50898. {
  50899. name: "Normal",
  50900. height: math.unit(4, "feet"),
  50901. default: true
  50902. },
  50903. ]
  50904. ))
  50905. characterMakers.push(() => makeCharacter(
  50906. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50907. {
  50908. front: {
  50909. height: math.unit(25, "feet"),
  50910. name: "Front",
  50911. image: {
  50912. source: "./media/characters/cadenza-vivace/front.svg",
  50913. extra: 1842/1578,
  50914. bottom: 30/1872
  50915. }
  50916. },
  50917. },
  50918. [
  50919. {
  50920. name: "Macro",
  50921. height: math.unit(25, "feet"),
  50922. default: true
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(10, "feet"),
  50931. weight: math.unit(625, "kg"),
  50932. name: "Front",
  50933. image: {
  50934. source: "./media/characters/zain/front.svg",
  50935. extra: 1682/1498,
  50936. bottom: 223/1905
  50937. }
  50938. },
  50939. back: {
  50940. height: math.unit(10, "feet"),
  50941. weight: math.unit(625, "kg"),
  50942. name: "Back",
  50943. image: {
  50944. source: "./media/characters/zain/back.svg",
  50945. extra: 1814/1657,
  50946. bottom: 152/1966
  50947. }
  50948. },
  50949. head: {
  50950. height: math.unit(10, "feet"),
  50951. weight: math.unit(625, "kg"),
  50952. name: "Head",
  50953. image: {
  50954. source: "./media/characters/zain/head.svg",
  50955. extra: 1059/762,
  50956. bottom: 0/1059
  50957. }
  50958. },
  50959. },
  50960. [
  50961. {
  50962. name: "Normal",
  50963. height: math.unit(10, "feet"),
  50964. default: true
  50965. },
  50966. ]
  50967. ))
  50968. characterMakers.push(() => makeCharacter(
  50969. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50970. {
  50971. front: {
  50972. height: math.unit(6 + 5/12, "feet"),
  50973. weight: math.unit(750, "lb"),
  50974. name: "Front",
  50975. image: {
  50976. source: "./media/characters/ruchex/front.svg",
  50977. extra: 877/820,
  50978. bottom: 17/894
  50979. },
  50980. extraAttributes: {
  50981. "width": {
  50982. name: "Width",
  50983. power: 1,
  50984. type: "length",
  50985. base: math.unit(4.757, "feet")
  50986. },
  50987. }
  50988. },
  50989. },
  50990. [
  50991. {
  50992. name: "Normal",
  50993. height: math.unit(6 + 5/12, "feet"),
  50994. default: true
  50995. },
  50996. ]
  50997. ))
  50998. characterMakers.push(() => makeCharacter(
  50999. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51000. {
  51001. dressedFront: {
  51002. height: math.unit(191, "cm"),
  51003. weight: math.unit(80, "kg"),
  51004. name: "Front",
  51005. image: {
  51006. source: "./media/characters/buster/dressed-front.svg",
  51007. extra: 1022/973,
  51008. bottom: 69/1091
  51009. }
  51010. },
  51011. dressedBack: {
  51012. height: math.unit(191, "cm"),
  51013. weight: math.unit(80, "kg"),
  51014. name: "Back",
  51015. image: {
  51016. source: "./media/characters/buster/dressed-back.svg",
  51017. extra: 1018/970,
  51018. bottom: 55/1073
  51019. }
  51020. },
  51021. nudeFront: {
  51022. height: math.unit(191, "cm"),
  51023. weight: math.unit(80, "kg"),
  51024. name: "Front (Nude)",
  51025. image: {
  51026. source: "./media/characters/buster/nude-front.svg",
  51027. extra: 1022/973,
  51028. bottom: 69/1091
  51029. }
  51030. },
  51031. nudeBack: {
  51032. height: math.unit(191, "cm"),
  51033. weight: math.unit(80, "kg"),
  51034. name: "Back (Nude)",
  51035. image: {
  51036. source: "./media/characters/buster/nude-back.svg",
  51037. extra: 1018/970,
  51038. bottom: 55/1073
  51039. }
  51040. },
  51041. dick: {
  51042. height: math.unit(2.59, "feet"),
  51043. name: "Dick",
  51044. image: {
  51045. source: "./media/characters/buster/dick.svg"
  51046. }
  51047. },
  51048. ass: {
  51049. height: math.unit(1.2, "feet"),
  51050. name: "Ass",
  51051. image: {
  51052. source: "./media/characters/buster/ass.svg"
  51053. }
  51054. },
  51055. },
  51056. [
  51057. {
  51058. name: "Normal",
  51059. height: math.unit(191, "cm"),
  51060. default: true
  51061. },
  51062. ]
  51063. ))
  51064. characterMakers.push(() => makeCharacter(
  51065. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51066. {
  51067. side: {
  51068. height: math.unit(8.1, "feet"),
  51069. weight: math.unit(3500, "lb"),
  51070. name: "Side",
  51071. image: {
  51072. source: "./media/characters/sonya/side.svg",
  51073. extra: 1730/1317,
  51074. bottom: 86/1816
  51075. }
  51076. },
  51077. },
  51078. [
  51079. {
  51080. name: "Normal",
  51081. height: math.unit(8.1, "feet"),
  51082. default: true
  51083. },
  51084. ]
  51085. ))
  51086. characterMakers.push(() => makeCharacter(
  51087. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51088. {
  51089. front: {
  51090. height: math.unit(6, "feet"),
  51091. weight: math.unit(150, "lb"),
  51092. name: "Front",
  51093. image: {
  51094. source: "./media/characters/cadence-andrysiak/front.svg",
  51095. extra: 1164/1121,
  51096. bottom: 60/1224
  51097. }
  51098. },
  51099. back: {
  51100. height: math.unit(6, "feet"),
  51101. weight: math.unit(150, "lb"),
  51102. name: "Back",
  51103. image: {
  51104. source: "./media/characters/cadence-andrysiak/back.svg",
  51105. extra: 1200/1165,
  51106. bottom: 9/1209
  51107. }
  51108. },
  51109. dressed: {
  51110. height: math.unit(6, "feet"),
  51111. weight: math.unit(150, "lb"),
  51112. name: "Dressed",
  51113. image: {
  51114. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51115. extra: 1164/1121,
  51116. bottom: 60/1224
  51117. }
  51118. },
  51119. },
  51120. [
  51121. {
  51122. name: "Micro",
  51123. height: math.unit(1, "mm")
  51124. },
  51125. {
  51126. name: "Normal",
  51127. height: math.unit(6, "feet"),
  51128. default: true
  51129. },
  51130. ]
  51131. ))
  51132. characterMakers.push(() => makeCharacter(
  51133. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51134. {
  51135. front: {
  51136. height: math.unit(60, "inches"),
  51137. weight: math.unit(16, "lb"),
  51138. preyCapacity: math.unit(80, "liters"),
  51139. name: "Front",
  51140. image: {
  51141. source: "./media/characters/penny-lynx/front.svg",
  51142. extra: 1959/1769,
  51143. bottom: 49/2008
  51144. }
  51145. },
  51146. },
  51147. [
  51148. {
  51149. name: "Nokia",
  51150. height: math.unit(2, "inches")
  51151. },
  51152. {
  51153. name: "Desktop",
  51154. height: math.unit(24, "inches")
  51155. },
  51156. {
  51157. name: "TV",
  51158. height: math.unit(60, "inches")
  51159. },
  51160. {
  51161. name: "Jumbotron",
  51162. height: math.unit(12, "feet")
  51163. },
  51164. {
  51165. name: "Billboard",
  51166. height: math.unit(48, "feet"),
  51167. default: true
  51168. },
  51169. {
  51170. name: "IMAX",
  51171. height: math.unit(96, "feet")
  51172. },
  51173. {
  51174. name: "SINGULARITY",
  51175. height: math.unit(864938, "miles")
  51176. },
  51177. ]
  51178. ))
  51179. characterMakers.push(() => makeCharacter(
  51180. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51181. {
  51182. front: {
  51183. height: math.unit(5 + 4/12, "feet"),
  51184. weight: math.unit(230, "lb"),
  51185. name: "Front",
  51186. image: {
  51187. source: "./media/characters/sukebe/front.svg",
  51188. extra: 2130/2038,
  51189. bottom: 90/2220
  51190. }
  51191. },
  51192. back: {
  51193. height: math.unit(3.48, "feet"),
  51194. weight: math.unit(230, "lb"),
  51195. name: "Back",
  51196. image: {
  51197. source: "./media/characters/sukebe/back.svg",
  51198. extra: 1670/1604,
  51199. bottom: 0/1670
  51200. }
  51201. },
  51202. },
  51203. [
  51204. {
  51205. name: "Normal",
  51206. height: math.unit(5 + 4/12, "feet"),
  51207. default: true
  51208. },
  51209. ]
  51210. ))
  51211. characterMakers.push(() => makeCharacter(
  51212. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51213. {
  51214. front: {
  51215. height: math.unit(6, "feet"),
  51216. name: "Front",
  51217. image: {
  51218. source: "./media/characters/nylla/front.svg",
  51219. extra: 1868/1699,
  51220. bottom: 97/1965
  51221. }
  51222. },
  51223. back: {
  51224. height: math.unit(6, "feet"),
  51225. name: "Back",
  51226. image: {
  51227. source: "./media/characters/nylla/back.svg",
  51228. extra: 1889/1712,
  51229. bottom: 93/1982
  51230. }
  51231. },
  51232. frontNsfw: {
  51233. height: math.unit(6, "feet"),
  51234. name: "Front (NSFW)",
  51235. image: {
  51236. source: "./media/characters/nylla/front-nsfw.svg",
  51237. extra: 1868/1699,
  51238. bottom: 97/1965
  51239. },
  51240. extraAttributes: {
  51241. "dickLength": {
  51242. name: "Dick Length",
  51243. power: 1,
  51244. type: "length",
  51245. base: math.unit(1.4, "feet")
  51246. },
  51247. "cumVolume": {
  51248. name: "Cum Volume",
  51249. power: 3,
  51250. type: "volume",
  51251. base: math.unit(100, "mL")
  51252. },
  51253. }
  51254. },
  51255. backNsfw: {
  51256. height: math.unit(6, "feet"),
  51257. name: "Back (NSFW)",
  51258. image: {
  51259. source: "./media/characters/nylla/back-nsfw.svg",
  51260. extra: 1889/1712,
  51261. bottom: 93/1982
  51262. }
  51263. },
  51264. maw: {
  51265. height: math.unit(2.10, "feet"),
  51266. name: "Maw",
  51267. image: {
  51268. source: "./media/characters/nylla/maw.svg"
  51269. }
  51270. },
  51271. paws: {
  51272. height: math.unit(2.06, "feet"),
  51273. name: "Paws",
  51274. image: {
  51275. source: "./media/characters/nylla/paws.svg"
  51276. }
  51277. },
  51278. muzzle: {
  51279. height: math.unit(0.61, "feet"),
  51280. name: "Muzzle",
  51281. image: {
  51282. source: "./media/characters/nylla/muzzle.svg"
  51283. }
  51284. },
  51285. sheath: {
  51286. height: math.unit(1.305, "feet"),
  51287. name: "Sheath",
  51288. image: {
  51289. source: "./media/characters/nylla/sheath.svg"
  51290. }
  51291. },
  51292. },
  51293. [
  51294. {
  51295. name: "Micro",
  51296. height: math.unit(7.5, "inches")
  51297. },
  51298. {
  51299. name: "Normal",
  51300. height: math.unit(7, "feet"),
  51301. default: true
  51302. },
  51303. {
  51304. name: "Macro",
  51305. height: math.unit(60, "feet")
  51306. },
  51307. {
  51308. name: "Mega",
  51309. height: math.unit(200, "feet")
  51310. },
  51311. ]
  51312. ))
  51313. characterMakers.push(() => makeCharacter(
  51314. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51315. {
  51316. front: {
  51317. height: math.unit(10, "feet"),
  51318. weight: math.unit(2300, "lb"),
  51319. name: "Front",
  51320. image: {
  51321. source: "./media/characters/hunt3r/front.svg",
  51322. extra: 1909/1742,
  51323. bottom: 46/1955
  51324. }
  51325. },
  51326. },
  51327. [
  51328. {
  51329. name: "Normal",
  51330. height: math.unit(10, "feet"),
  51331. default: true
  51332. },
  51333. ]
  51334. ))
  51335. characterMakers.push(() => makeCharacter(
  51336. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51337. {
  51338. dressed: {
  51339. height: math.unit(11, "feet"),
  51340. weight: math.unit(18500, "lb"),
  51341. preyCapacity: math.unit(9, "people"),
  51342. name: "Dressed",
  51343. image: {
  51344. source: "./media/characters/cylphis/dressed.svg",
  51345. extra: 1028/1003,
  51346. bottom: 75/1103
  51347. },
  51348. },
  51349. undressed: {
  51350. height: math.unit(11, "feet"),
  51351. weight: math.unit(18500, "lb"),
  51352. preyCapacity: math.unit(9, "people"),
  51353. name: "Undressed",
  51354. image: {
  51355. source: "./media/characters/cylphis/undressed.svg",
  51356. extra: 1028/1003,
  51357. bottom: 75/1103
  51358. }
  51359. },
  51360. full: {
  51361. height: math.unit(11, "feet"),
  51362. weight: math.unit(18500 + 150*9, "lb"),
  51363. preyCapacity: math.unit(9, "people"),
  51364. name: "Full",
  51365. image: {
  51366. source: "./media/characters/cylphis/full.svg",
  51367. extra: 1028/1003,
  51368. bottom: 75/1103
  51369. }
  51370. },
  51371. },
  51372. [
  51373. {
  51374. name: "Small",
  51375. height: math.unit(8, "feet")
  51376. },
  51377. {
  51378. name: "Normal",
  51379. height: math.unit(11, "feet"),
  51380. default: true
  51381. },
  51382. ]
  51383. ))
  51384. characterMakers.push(() => makeCharacter(
  51385. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51386. {
  51387. front: {
  51388. height: math.unit(2 + 7/12, "feet"),
  51389. name: "Front",
  51390. image: {
  51391. source: "./media/characters/orishan/front.svg",
  51392. extra: 1058/1023,
  51393. bottom: 23/1081
  51394. }
  51395. },
  51396. back: {
  51397. height: math.unit(2 + 7/12, "feet"),
  51398. name: "Back",
  51399. image: {
  51400. source: "./media/characters/orishan/back.svg",
  51401. extra: 1058/1023,
  51402. bottom: 23/1081
  51403. }
  51404. },
  51405. },
  51406. [
  51407. {
  51408. name: "Micro",
  51409. height: math.unit(2, "cm")
  51410. },
  51411. {
  51412. name: "Normal",
  51413. height: math.unit(2 + 7/12, "feet"),
  51414. default: true
  51415. },
  51416. ]
  51417. ))
  51418. characterMakers.push(() => makeCharacter(
  51419. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51420. {
  51421. front: {
  51422. height: math.unit(3, "meters"),
  51423. weight: math.unit(508, "kg"),
  51424. name: "Front",
  51425. image: {
  51426. source: "./media/characters/seranis/front.svg",
  51427. extra: 1478/1454,
  51428. bottom: 41/1519
  51429. }
  51430. },
  51431. },
  51432. [
  51433. {
  51434. name: "Normal",
  51435. height: math.unit(3, "meters"),
  51436. default: true
  51437. },
  51438. {
  51439. name: "Macro",
  51440. height: math.unit(108, "meters")
  51441. },
  51442. {
  51443. name: "Megamacro",
  51444. height: math.unit(1250, "meters")
  51445. },
  51446. ]
  51447. ))
  51448. characterMakers.push(() => makeCharacter(
  51449. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51450. {
  51451. undressed: {
  51452. height: math.unit(5 + 3/12, "feet"),
  51453. name: "Undressed",
  51454. image: {
  51455. source: "./media/characters/ankou/undressed.svg",
  51456. extra: 1301/1213,
  51457. bottom: 87/1388
  51458. }
  51459. },
  51460. dressed: {
  51461. height: math.unit(5 + 3/12, "feet"),
  51462. name: "Dressed",
  51463. image: {
  51464. source: "./media/characters/ankou/dressed.svg",
  51465. extra: 1301/1213,
  51466. bottom: 87/1388
  51467. }
  51468. },
  51469. head: {
  51470. height: math.unit(1.61, "feet"),
  51471. name: "Head",
  51472. image: {
  51473. source: "./media/characters/ankou/head.svg"
  51474. }
  51475. },
  51476. },
  51477. [
  51478. {
  51479. name: "Normal",
  51480. height: math.unit(5 + 3/12, "feet"),
  51481. default: true
  51482. },
  51483. ]
  51484. ))
  51485. characterMakers.push(() => makeCharacter(
  51486. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51487. {
  51488. side: {
  51489. height: math.unit(6 + 3/12, "feet"),
  51490. weight: math.unit(200, "kg"),
  51491. name: "Side",
  51492. image: {
  51493. source: "./media/characters/juniper-skunktaur/side.svg",
  51494. extra: 1574/1229,
  51495. bottom: 38/1612
  51496. }
  51497. },
  51498. front: {
  51499. height: math.unit(6 + 3/12, "feet"),
  51500. weight: math.unit(200, "kg"),
  51501. name: "Front",
  51502. image: {
  51503. source: "./media/characters/juniper-skunktaur/front.svg",
  51504. extra: 1337/1278,
  51505. bottom: 22/1359
  51506. }
  51507. },
  51508. back: {
  51509. height: math.unit(6 + 3/12, "feet"),
  51510. weight: math.unit(200, "kg"),
  51511. name: "Back",
  51512. image: {
  51513. source: "./media/characters/juniper-skunktaur/back.svg",
  51514. extra: 1618/1273,
  51515. bottom: 13/1631
  51516. }
  51517. },
  51518. top: {
  51519. height: math.unit(2.62, "feet"),
  51520. weight: math.unit(200, "kg"),
  51521. name: "Top",
  51522. image: {
  51523. source: "./media/characters/juniper-skunktaur/top.svg"
  51524. }
  51525. },
  51526. },
  51527. [
  51528. {
  51529. name: "Normal",
  51530. height: math.unit(6 + 3/12, "feet"),
  51531. default: true
  51532. },
  51533. ]
  51534. ))
  51535. characterMakers.push(() => makeCharacter(
  51536. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51537. {
  51538. front: {
  51539. height: math.unit(20.5, "feet"),
  51540. name: "Front",
  51541. image: {
  51542. source: "./media/characters/rei/front.svg",
  51543. extra: 1349/1195,
  51544. bottom: 31/1380
  51545. }
  51546. },
  51547. back: {
  51548. height: math.unit(20.5, "feet"),
  51549. name: "Back",
  51550. image: {
  51551. source: "./media/characters/rei/back.svg",
  51552. extra: 1358/1204,
  51553. bottom: 22/1380
  51554. }
  51555. },
  51556. pawsDigi: {
  51557. height: math.unit(3.45, "feet"),
  51558. name: "Paws (Digi)",
  51559. image: {
  51560. source: "./media/characters/rei/paws-digi.svg"
  51561. }
  51562. },
  51563. pawsPlanti: {
  51564. height: math.unit(3.45, "feet"),
  51565. name: "Paws (Planti)",
  51566. image: {
  51567. source: "./media/characters/rei/paws-planti.svg"
  51568. }
  51569. },
  51570. },
  51571. [
  51572. {
  51573. name: "Normal",
  51574. height: math.unit(20.5, "feet"),
  51575. default: true
  51576. },
  51577. ]
  51578. ))
  51579. characterMakers.push(() => makeCharacter(
  51580. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51581. {
  51582. front: {
  51583. height: math.unit(5 + 11/12, "feet"),
  51584. name: "Front",
  51585. image: {
  51586. source: "./media/characters/carina/front.svg",
  51587. extra: 1720/1449,
  51588. bottom: 14/1734
  51589. }
  51590. },
  51591. back: {
  51592. height: math.unit(5 + 11/12, "feet"),
  51593. name: "Back",
  51594. image: {
  51595. source: "./media/characters/carina/back.svg",
  51596. extra: 1493/1445,
  51597. bottom: 17/1510
  51598. }
  51599. },
  51600. paw: {
  51601. height: math.unit(0.92, "feet"),
  51602. name: "Paw",
  51603. image: {
  51604. source: "./media/characters/carina/paw.svg"
  51605. }
  51606. },
  51607. },
  51608. [
  51609. {
  51610. name: "Normal",
  51611. height: math.unit(5 + 11/12, "feet"),
  51612. default: true
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51618. {
  51619. front: {
  51620. height: math.unit(4.88, "meters"),
  51621. name: "Front",
  51622. image: {
  51623. source: "./media/characters/maya/front.svg",
  51624. extra: 1222/1145,
  51625. bottom: 57/1279
  51626. }
  51627. },
  51628. },
  51629. [
  51630. {
  51631. name: "Normal",
  51632. height: math.unit(4.88, "meters"),
  51633. default: true
  51634. },
  51635. {
  51636. name: "Macro",
  51637. height: math.unit(38.1, "meters")
  51638. },
  51639. {
  51640. name: "Macro+",
  51641. height: math.unit(152.4, "meters")
  51642. },
  51643. {
  51644. name: "Macro++",
  51645. height: math.unit(16.09, "km")
  51646. },
  51647. {
  51648. name: "Mega-macro",
  51649. height: math.unit(700, "megameters")
  51650. },
  51651. ]
  51652. ))
  51653. characterMakers.push(() => makeCharacter(
  51654. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51655. {
  51656. front: {
  51657. height: math.unit(6 + 2/12, "feet"),
  51658. weight: math.unit(500, "lb"),
  51659. preyCapacity: math.unit(4, "people"),
  51660. name: "Front",
  51661. image: {
  51662. source: "./media/characters/yepir/front.svg"
  51663. }
  51664. },
  51665. side: {
  51666. height: math.unit(6 + 2/12, "feet"),
  51667. weight: math.unit(500, "lb"),
  51668. preyCapacity: math.unit(4, "people"),
  51669. name: "Side",
  51670. image: {
  51671. source: "./media/characters/yepir/side.svg"
  51672. }
  51673. },
  51674. paw: {
  51675. height: math.unit(1.05, "feet"),
  51676. name: "Paw",
  51677. image: {
  51678. source: "./media/characters/yepir/paw.svg"
  51679. }
  51680. },
  51681. },
  51682. [
  51683. {
  51684. name: "Normal",
  51685. height: math.unit(6 + 2/12, "feet"),
  51686. default: true
  51687. },
  51688. ]
  51689. ))
  51690. characterMakers.push(() => makeCharacter(
  51691. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51692. {
  51693. front: {
  51694. height: math.unit(5 + 4/12, "feet"),
  51695. name: "Front",
  51696. image: {
  51697. source: "./media/characters/russec/front.svg",
  51698. extra: 1926/1626,
  51699. bottom: 72/1998
  51700. }
  51701. },
  51702. back: {
  51703. height: math.unit(5 + 4/12, "feet"),
  51704. name: "Back",
  51705. image: {
  51706. source: "./media/characters/russec/back.svg",
  51707. extra: 1910/1591,
  51708. bottom: 48/1958
  51709. }
  51710. },
  51711. },
  51712. [
  51713. {
  51714. name: "Small",
  51715. height: math.unit(5 + 4/12, "feet")
  51716. },
  51717. {
  51718. name: "Normal",
  51719. height: math.unit(72, "feet"),
  51720. default: true
  51721. },
  51722. ]
  51723. ))
  51724. characterMakers.push(() => makeCharacter(
  51725. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51726. {
  51727. side: {
  51728. height: math.unit(12, "feet"),
  51729. name: "Side",
  51730. image: {
  51731. source: "./media/characters/cianus/side.svg",
  51732. extra: 808/526,
  51733. bottom: 61/869
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Normal",
  51740. height: math.unit(12, "feet"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51747. {
  51748. front: {
  51749. height: math.unit(9 + 6/12, "feet"),
  51750. weight: math.unit(300, "lb"),
  51751. name: "Front",
  51752. image: {
  51753. source: "./media/characters/ahab/front.svg",
  51754. extra: 1897/1868,
  51755. bottom: 121/2018
  51756. }
  51757. },
  51758. frontNsfw: {
  51759. height: math.unit(9 + 6/12, "feet"),
  51760. weight: math.unit(300, "lb"),
  51761. name: "Front-nsfw",
  51762. image: {
  51763. source: "./media/characters/ahab/front-nsfw.svg",
  51764. extra: 1897/1868,
  51765. bottom: 121/2018
  51766. }
  51767. },
  51768. },
  51769. [
  51770. {
  51771. name: "Normal",
  51772. height: math.unit(9 + 6/12, "feet")
  51773. },
  51774. {
  51775. name: "Macro",
  51776. height: math.unit(657, "feet"),
  51777. default: true
  51778. },
  51779. ]
  51780. ))
  51781. characterMakers.push(() => makeCharacter(
  51782. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51783. {
  51784. front: {
  51785. height: math.unit(2.69, "meters"),
  51786. weight: math.unit(132, "kg"),
  51787. name: "Front",
  51788. image: {
  51789. source: "./media/characters/aarkus/front.svg",
  51790. extra: 1400/1231,
  51791. bottom: 34/1434
  51792. }
  51793. },
  51794. back: {
  51795. height: math.unit(2.69, "meters"),
  51796. weight: math.unit(132, "kg"),
  51797. name: "Back",
  51798. image: {
  51799. source: "./media/characters/aarkus/back.svg",
  51800. extra: 1381/1218,
  51801. bottom: 30/1411
  51802. }
  51803. },
  51804. frontNsfw: {
  51805. height: math.unit(2.69, "meters"),
  51806. weight: math.unit(132, "kg"),
  51807. name: "Front (NSFW)",
  51808. image: {
  51809. source: "./media/characters/aarkus/front-nsfw.svg",
  51810. extra: 1400/1231,
  51811. bottom: 34/1434
  51812. }
  51813. },
  51814. foot: {
  51815. height: math.unit(1.45, "feet"),
  51816. name: "Foot",
  51817. image: {
  51818. source: "./media/characters/aarkus/foot.svg"
  51819. }
  51820. },
  51821. head: {
  51822. height: math.unit(2.85, "feet"),
  51823. name: "Head",
  51824. image: {
  51825. source: "./media/characters/aarkus/head.svg"
  51826. }
  51827. },
  51828. headAlt: {
  51829. height: math.unit(3.07, "feet"),
  51830. name: "Head (Alt)",
  51831. image: {
  51832. source: "./media/characters/aarkus/head-alt.svg"
  51833. }
  51834. },
  51835. mouth: {
  51836. height: math.unit(1.25, "feet"),
  51837. name: "Mouth",
  51838. image: {
  51839. source: "./media/characters/aarkus/mouth.svg"
  51840. }
  51841. },
  51842. dick: {
  51843. height: math.unit(1.77, "feet"),
  51844. name: "Dick",
  51845. image: {
  51846. source: "./media/characters/aarkus/dick.svg"
  51847. }
  51848. },
  51849. },
  51850. [
  51851. {
  51852. name: "Normal",
  51853. height: math.unit(2.69, "meters"),
  51854. default: true
  51855. },
  51856. {
  51857. name: "Macro",
  51858. height: math.unit(269, "meters")
  51859. },
  51860. {
  51861. name: "Macro+",
  51862. height: math.unit(672.5, "meters")
  51863. },
  51864. {
  51865. name: "Megamacro",
  51866. height: math.unit(2.017, "km")
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(23.47, "cm"),
  51875. weight: math.unit(600, "grams"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/diode/front.svg",
  51879. extra: 1778/1396,
  51880. bottom: 95/1873
  51881. }
  51882. },
  51883. side: {
  51884. height: math.unit(23.47, "cm"),
  51885. weight: math.unit(600, "grams"),
  51886. name: "Side",
  51887. image: {
  51888. source: "./media/characters/diode/side.svg",
  51889. extra: 1831/1404,
  51890. bottom: 86/1917
  51891. }
  51892. },
  51893. wings: {
  51894. height: math.unit(0.683, "feet"),
  51895. name: "Wings",
  51896. image: {
  51897. source: "./media/characters/diode/wings.svg"
  51898. }
  51899. },
  51900. },
  51901. [
  51902. {
  51903. name: "Normal",
  51904. height: math.unit(23.47, "cm"),
  51905. default: true
  51906. },
  51907. ]
  51908. ))
  51909. characterMakers.push(() => makeCharacter(
  51910. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51911. {
  51912. front: {
  51913. height: math.unit(6 + 3/12, "feet"),
  51914. weight: math.unit(250, "lb"),
  51915. name: "Front",
  51916. image: {
  51917. source: "./media/characters/reika/front.svg",
  51918. extra: 1120/1078,
  51919. bottom: 86/1206
  51920. }
  51921. },
  51922. },
  51923. [
  51924. {
  51925. name: "Normal",
  51926. height: math.unit(6 + 3/12, "feet"),
  51927. default: true
  51928. },
  51929. ]
  51930. ))
  51931. characterMakers.push(() => makeCharacter(
  51932. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51933. {
  51934. front: {
  51935. height: math.unit(16 + 8/12, "feet"),
  51936. weight: math.unit(9000, "lb"),
  51937. name: "Front",
  51938. image: {
  51939. source: "./media/characters/lokuto-takama/front.svg",
  51940. extra: 1774/1632,
  51941. bottom: 147/1921
  51942. },
  51943. extraAttributes: {
  51944. "bustWidth": {
  51945. name: "Bust Width",
  51946. power: 1,
  51947. type: "length",
  51948. base: math.unit(2.4, "meters")
  51949. },
  51950. "breastWeight": {
  51951. name: "Breast Weight",
  51952. power: 3,
  51953. type: "mass",
  51954. base: math.unit(1000, "kg")
  51955. },
  51956. }
  51957. },
  51958. },
  51959. [
  51960. {
  51961. name: "Normal",
  51962. height: math.unit(16 + 8/12, "feet"),
  51963. default: true
  51964. },
  51965. ]
  51966. ))
  51967. characterMakers.push(() => makeCharacter(
  51968. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51969. {
  51970. front: {
  51971. height: math.unit(10, "cm"),
  51972. weight: math.unit(850, "grams"),
  51973. name: "Front",
  51974. image: {
  51975. source: "./media/characters/owak-bone/front.svg",
  51976. extra: 1965/1801,
  51977. bottom: 31/1996
  51978. }
  51979. },
  51980. },
  51981. [
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(10, "cm"),
  51985. default: true
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51991. {
  51992. front: {
  51993. height: math.unit(2 + 6/12, "feet"),
  51994. weight: math.unit(9, "lb"),
  51995. name: "Front",
  51996. image: {
  51997. source: "./media/characters/muffin/front.svg",
  51998. extra: 1220/1195,
  51999. bottom: 84/1304
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(2 + 6/12, "feet"),
  52007. default: true
  52008. },
  52009. ]
  52010. ))
  52011. characterMakers.push(() => makeCharacter(
  52012. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52013. {
  52014. front: {
  52015. height: math.unit(7, "feet"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/chimera/front.svg",
  52019. extra: 1752/1614,
  52020. bottom: 68/1820
  52021. }
  52022. },
  52023. },
  52024. [
  52025. {
  52026. name: "Normal",
  52027. height: math.unit(7, "feet")
  52028. },
  52029. {
  52030. name: "Gigamacro",
  52031. height: math.unit(2.9, "gigameters"),
  52032. default: true
  52033. },
  52034. {
  52035. name: "Universal",
  52036. height: math.unit(1.56e26, "yottameters")
  52037. },
  52038. ]
  52039. ))
  52040. characterMakers.push(() => makeCharacter(
  52041. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52042. {
  52043. front: {
  52044. height: math.unit(3, "feet"),
  52045. weight: math.unit(20, "lb"),
  52046. name: "Front",
  52047. image: {
  52048. source: "./media/characters/kit-fennec-fox/front.svg",
  52049. extra: 1027/932,
  52050. bottom: 16/1043
  52051. }
  52052. },
  52053. back: {
  52054. height: math.unit(3, "feet"),
  52055. weight: math.unit(20, "lb"),
  52056. name: "Back",
  52057. image: {
  52058. source: "./media/characters/kit-fennec-fox/back.svg",
  52059. extra: 1027/932,
  52060. bottom: 16/1043
  52061. }
  52062. },
  52063. },
  52064. [
  52065. {
  52066. name: "Normal",
  52067. height: math.unit(3, "feet"),
  52068. default: true
  52069. },
  52070. ]
  52071. ))
  52072. characterMakers.push(() => makeCharacter(
  52073. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52074. {
  52075. front: {
  52076. height: math.unit(167, "cm"),
  52077. name: "Front",
  52078. image: {
  52079. source: "./media/characters/blue-otter/front.svg",
  52080. extra: 1951/1920,
  52081. bottom: 31/1982
  52082. }
  52083. },
  52084. },
  52085. [
  52086. {
  52087. name: "Otter-Sized",
  52088. height: math.unit(100, "cm")
  52089. },
  52090. {
  52091. name: "Normal",
  52092. height: math.unit(167, "cm"),
  52093. default: true
  52094. },
  52095. ]
  52096. ))
  52097. characterMakers.push(() => makeCharacter(
  52098. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52099. {
  52100. front: {
  52101. height: math.unit(4 + 4/12, "feet"),
  52102. name: "Front",
  52103. image: {
  52104. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52105. extra: 1072/1067,
  52106. bottom: 117/1189
  52107. }
  52108. },
  52109. back: {
  52110. height: math.unit(4 + 4/12, "feet"),
  52111. name: "Back",
  52112. image: {
  52113. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52114. extra: 1135/1129,
  52115. bottom: 57/1192
  52116. }
  52117. },
  52118. head: {
  52119. height: math.unit(1.77, "feet"),
  52120. name: "Head",
  52121. image: {
  52122. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Normal",
  52129. height: math.unit(4 + 4/12, "feet"),
  52130. default: true
  52131. },
  52132. ]
  52133. ))
  52134. characterMakers.push(() => makeCharacter(
  52135. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52136. {
  52137. front: {
  52138. height: math.unit(2, "inches"),
  52139. name: "Front",
  52140. image: {
  52141. source: "./media/characters/carley-hartford/front.svg",
  52142. extra: 1035/988,
  52143. bottom: 23/1058
  52144. }
  52145. },
  52146. back: {
  52147. height: math.unit(2, "inches"),
  52148. name: "Back",
  52149. image: {
  52150. source: "./media/characters/carley-hartford/back.svg",
  52151. extra: 1035/988,
  52152. bottom: 23/1058
  52153. }
  52154. },
  52155. dressed: {
  52156. height: math.unit(2, "inches"),
  52157. name: "Dressed",
  52158. image: {
  52159. source: "./media/characters/carley-hartford/dressed.svg",
  52160. extra: 651/620,
  52161. bottom: 0/651
  52162. }
  52163. },
  52164. },
  52165. [
  52166. {
  52167. name: "Micro",
  52168. height: math.unit(2, "inches"),
  52169. default: true
  52170. },
  52171. {
  52172. name: "Macro",
  52173. height: math.unit(6 + 3/12, "feet")
  52174. },
  52175. ]
  52176. ))
  52177. characterMakers.push(() => makeCharacter(
  52178. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52179. {
  52180. front: {
  52181. height: math.unit(2 + 3/12, "feet"),
  52182. weight: math.unit(15 + 7/16, "lb"),
  52183. name: "Front",
  52184. image: {
  52185. source: "./media/characters/duke/front.svg",
  52186. extra: 910/815,
  52187. bottom: 30/940
  52188. }
  52189. },
  52190. },
  52191. [
  52192. {
  52193. name: "Normal",
  52194. height: math.unit(2 + 3/12, "feet"),
  52195. default: true
  52196. },
  52197. ]
  52198. ))
  52199. characterMakers.push(() => makeCharacter(
  52200. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52201. {
  52202. front: {
  52203. height: math.unit(5 + 4/12, "feet"),
  52204. weight: math.unit(156, "lb"),
  52205. name: "Front",
  52206. image: {
  52207. source: "./media/characters/dein/front.svg",
  52208. extra: 855/815,
  52209. bottom: 48/903
  52210. }
  52211. },
  52212. side: {
  52213. height: math.unit(5 + 4/12, "feet"),
  52214. weight: math.unit(156, "lb"),
  52215. name: "side",
  52216. image: {
  52217. source: "./media/characters/dein/side.svg",
  52218. extra: 846/803,
  52219. bottom: 25/871
  52220. }
  52221. },
  52222. maw: {
  52223. height: math.unit(1.45, "feet"),
  52224. name: "Maw",
  52225. image: {
  52226. source: "./media/characters/dein/maw.svg"
  52227. }
  52228. },
  52229. },
  52230. [
  52231. {
  52232. name: "Ferret Sized",
  52233. height: math.unit(2 + 5/12, "feet")
  52234. },
  52235. {
  52236. name: "Normal",
  52237. height: math.unit(5 + 4/12, "feet"),
  52238. default: true
  52239. },
  52240. ]
  52241. ))
  52242. characterMakers.push(() => makeCharacter(
  52243. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52244. {
  52245. front: {
  52246. height: math.unit(84 + 8/12, "feet"),
  52247. weight: math.unit(942180, "lb"),
  52248. name: "Front",
  52249. image: {
  52250. source: "./media/characters/daurine-arima/front.svg",
  52251. extra: 1989/1782,
  52252. bottom: 37/2026
  52253. }
  52254. },
  52255. side: {
  52256. height: math.unit(84 + 8/12, "feet"),
  52257. weight: math.unit(942180, "lb"),
  52258. name: "Side",
  52259. image: {
  52260. source: "./media/characters/daurine-arima/side.svg",
  52261. extra: 1997/1790,
  52262. bottom: 21/2018
  52263. }
  52264. },
  52265. back: {
  52266. height: math.unit(84 + 8/12, "feet"),
  52267. weight: math.unit(942180, "lb"),
  52268. name: "Back",
  52269. image: {
  52270. source: "./media/characters/daurine-arima/back.svg",
  52271. extra: 1992/1800,
  52272. bottom: 12/2004
  52273. }
  52274. },
  52275. head: {
  52276. height: math.unit(15.5, "feet"),
  52277. name: "Head",
  52278. image: {
  52279. source: "./media/characters/daurine-arima/head.svg"
  52280. }
  52281. },
  52282. headAlt: {
  52283. height: math.unit(19.19, "feet"),
  52284. name: "Head (Alt)",
  52285. image: {
  52286. source: "./media/characters/daurine-arima/head-alt.svg"
  52287. }
  52288. },
  52289. },
  52290. [
  52291. {
  52292. name: "Minimum height",
  52293. height: math.unit(8 + 10/12, "feet")
  52294. },
  52295. {
  52296. name: "Comfort height",
  52297. height: math.unit(19 + 6 /12, "feet")
  52298. },
  52299. {
  52300. name: "\"Normal\" height",
  52301. height: math.unit(28 + 10/12, "feet")
  52302. },
  52303. {
  52304. name: "Base height",
  52305. height: math.unit(84 + 8/12, "feet"),
  52306. default: true
  52307. },
  52308. {
  52309. name: "Mini-macro",
  52310. height: math.unit(2360, "feet")
  52311. },
  52312. {
  52313. name: "Macro",
  52314. height: math.unit(10, "miles")
  52315. },
  52316. {
  52317. name: "Goddess",
  52318. height: math.unit(9.99e40, "yottameters")
  52319. },
  52320. ]
  52321. ))
  52322. characterMakers.push(() => makeCharacter(
  52323. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52324. {
  52325. front: {
  52326. height: math.unit(2.3, "meters"),
  52327. name: "Front",
  52328. image: {
  52329. source: "./media/characters/cilenomon/front.svg",
  52330. extra: 1963/1778,
  52331. bottom: 54/2017
  52332. }
  52333. },
  52334. },
  52335. [
  52336. {
  52337. name: "Normal",
  52338. height: math.unit(2.3, "meters"),
  52339. default: true
  52340. },
  52341. {
  52342. name: "Big",
  52343. height: math.unit(5, "meters")
  52344. },
  52345. {
  52346. name: "Macro",
  52347. height: math.unit(30, "meters")
  52348. },
  52349. {
  52350. name: "True",
  52351. height: math.unit(1, "universe")
  52352. },
  52353. ]
  52354. ))
  52355. characterMakers.push(() => makeCharacter(
  52356. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52357. {
  52358. front: {
  52359. height: math.unit(5, "feet"),
  52360. name: "Front",
  52361. image: {
  52362. source: "./media/characters/sen-mink/front.svg",
  52363. extra: 1727/1675,
  52364. bottom: 35/1762
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Normal",
  52371. height: math.unit(5, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(5.42999, "feet"),
  52381. weight: math.unit(100, "lb"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/ophois/front.svg",
  52385. extra: 1429/1286,
  52386. bottom: 60/1489
  52387. }
  52388. },
  52389. },
  52390. [
  52391. {
  52392. name: "Normal",
  52393. height: math.unit(5.42999, "feet"),
  52394. default: true
  52395. },
  52396. ]
  52397. ))
  52398. characterMakers.push(() => makeCharacter(
  52399. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52400. {
  52401. front: {
  52402. height: math.unit(2, "meters"),
  52403. name: "Front",
  52404. image: {
  52405. source: "./media/characters/riley/front.svg",
  52406. extra: 1779/1754,
  52407. bottom: 139/1918
  52408. }
  52409. },
  52410. },
  52411. [
  52412. {
  52413. name: "Normal",
  52414. height: math.unit(2, "meters"),
  52415. default: true
  52416. },
  52417. ]
  52418. ))
  52419. characterMakers.push(() => makeCharacter(
  52420. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52421. {
  52422. front: {
  52423. height: math.unit(6 + 2/12, "feet"),
  52424. weight: math.unit(195, "lb"),
  52425. preyCapacity: math.unit(6, "people"),
  52426. name: "Front",
  52427. image: {
  52428. source: "./media/characters/shuken-flash/front.svg",
  52429. extra: 1905/1739,
  52430. bottom: 65/1970
  52431. }
  52432. },
  52433. back: {
  52434. height: math.unit(6 + 2/12, "feet"),
  52435. weight: math.unit(195, "lb"),
  52436. preyCapacity: math.unit(6, "people"),
  52437. name: "Back",
  52438. image: {
  52439. source: "./media/characters/shuken-flash/back.svg",
  52440. extra: 1912/1751,
  52441. bottom: 13/1925
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(6 + 2/12, "feet"),
  52449. default: true
  52450. },
  52451. ]
  52452. ))
  52453. characterMakers.push(() => makeCharacter(
  52454. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52455. {
  52456. front: {
  52457. height: math.unit(5 + 9/12, "feet"),
  52458. weight: math.unit(150, "lb"),
  52459. name: "Front",
  52460. image: {
  52461. source: "./media/characters/plat/front.svg",
  52462. extra: 1816/1703,
  52463. bottom: 43/1859
  52464. }
  52465. },
  52466. side: {
  52467. height: math.unit(5 + 9/12, "feet"),
  52468. weight: math.unit(300, "lb"),
  52469. name: "Side",
  52470. image: {
  52471. source: "./media/characters/plat/side.svg",
  52472. extra: 1824/1699,
  52473. bottom: 18/1842
  52474. }
  52475. },
  52476. },
  52477. [
  52478. {
  52479. name: "Normal",
  52480. height: math.unit(5 + 9/12, "feet"),
  52481. default: true
  52482. },
  52483. ]
  52484. ))
  52485. characterMakers.push(() => makeCharacter(
  52486. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52487. {
  52488. front: {
  52489. height: math.unit(9, "feet"),
  52490. weight: math.unit(1800, "lb"),
  52491. name: "Front",
  52492. image: {
  52493. source: "./media/characters/elaine/front.svg",
  52494. extra: 1833/1354,
  52495. bottom: 25/1858
  52496. }
  52497. },
  52498. back: {
  52499. height: math.unit(8.8, "feet"),
  52500. weight: math.unit(1800, "lb"),
  52501. name: "Back",
  52502. image: {
  52503. source: "./media/characters/elaine/back.svg",
  52504. extra: 1641/1233,
  52505. bottom: 53/1694
  52506. }
  52507. },
  52508. },
  52509. [
  52510. {
  52511. name: "Normal",
  52512. height: math.unit(9, "feet"),
  52513. default: true
  52514. },
  52515. ]
  52516. ))
  52517. characterMakers.push(() => makeCharacter(
  52518. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52519. {
  52520. front: {
  52521. height: math.unit(17 + 9/12, "feet"),
  52522. weight: math.unit(8000, "lb"),
  52523. name: "Front",
  52524. image: {
  52525. source: "./media/characters/vera-raven/front.svg",
  52526. extra: 1457/1412,
  52527. bottom: 121/1578
  52528. }
  52529. },
  52530. side: {
  52531. height: math.unit(17 + 9/12, "feet"),
  52532. weight: math.unit(8000, "lb"),
  52533. name: "Side",
  52534. image: {
  52535. source: "./media/characters/vera-raven/side.svg",
  52536. extra: 1510/1464,
  52537. bottom: 54/1564
  52538. }
  52539. },
  52540. },
  52541. [
  52542. {
  52543. name: "Normal",
  52544. height: math.unit(17 + 9/12, "feet"),
  52545. default: true
  52546. },
  52547. ]
  52548. ))
  52549. characterMakers.push(() => makeCharacter(
  52550. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52551. {
  52552. dressed: {
  52553. height: math.unit(6 + 9/12, "feet"),
  52554. name: "Dressed",
  52555. image: {
  52556. source: "./media/characters/nakisha/dressed.svg",
  52557. extra: 1909/1757,
  52558. bottom: 48/1957
  52559. }
  52560. },
  52561. nude: {
  52562. height: math.unit(6 + 9/12, "feet"),
  52563. name: "Nude",
  52564. image: {
  52565. source: "./media/characters/nakisha/nude.svg",
  52566. extra: 1917/1765,
  52567. bottom: 34/1951
  52568. }
  52569. },
  52570. },
  52571. [
  52572. {
  52573. name: "Normal",
  52574. height: math.unit(6 + 9/12, "feet"),
  52575. default: true
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52581. {
  52582. front: {
  52583. height: math.unit(87, "meters"),
  52584. name: "Front",
  52585. image: {
  52586. source: "./media/characters/serafin/front.svg",
  52587. extra: 1919/1776,
  52588. bottom: 65/1984
  52589. }
  52590. },
  52591. },
  52592. [
  52593. {
  52594. name: "Normal",
  52595. height: math.unit(87, "meters"),
  52596. default: true
  52597. },
  52598. ]
  52599. ))
  52600. characterMakers.push(() => makeCharacter(
  52601. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52602. {
  52603. front: {
  52604. height: math.unit(6, "feet"),
  52605. weight: math.unit(150, "lb"),
  52606. name: "Front",
  52607. image: {
  52608. source: "./media/characters/poptart/front.svg",
  52609. extra: 615/583,
  52610. bottom: 23/638
  52611. }
  52612. },
  52613. back: {
  52614. height: math.unit(6, "feet"),
  52615. weight: math.unit(150, "lb"),
  52616. name: "Back",
  52617. image: {
  52618. source: "./media/characters/poptart/back.svg",
  52619. extra: 617/584,
  52620. bottom: 22/639
  52621. }
  52622. },
  52623. frontNsfw: {
  52624. height: math.unit(6, "feet"),
  52625. weight: math.unit(150, "lb"),
  52626. name: "Front (NSFW)",
  52627. image: {
  52628. source: "./media/characters/poptart/front-nsfw.svg",
  52629. extra: 615/583,
  52630. bottom: 23/638
  52631. }
  52632. },
  52633. backNsfw: {
  52634. height: math.unit(6, "feet"),
  52635. weight: math.unit(150, "lb"),
  52636. name: "Back (NSFW)",
  52637. image: {
  52638. source: "./media/characters/poptart/back-nsfw.svg",
  52639. extra: 617/584,
  52640. bottom: 22/639
  52641. }
  52642. },
  52643. hand: {
  52644. height: math.unit(1.14, "feet"),
  52645. name: "Hand",
  52646. image: {
  52647. source: "./media/characters/poptart/hand.svg"
  52648. }
  52649. },
  52650. foot: {
  52651. height: math.unit(1.5, "feet"),
  52652. name: "Foot",
  52653. image: {
  52654. source: "./media/characters/poptart/foot.svg"
  52655. }
  52656. },
  52657. },
  52658. [
  52659. {
  52660. name: "Normal",
  52661. height: math.unit(6, "feet"),
  52662. default: true
  52663. },
  52664. ]
  52665. ))
  52666. //characters
  52667. function makeCharacters() {
  52668. const results = [];
  52669. characterMakers.forEach(character => {
  52670. results.push(character());
  52671. });
  52672. return results;
  52673. }