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.
 
 
 

53700 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: 2309 / 2162,
  3001. bottom: 0.069
  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: 2403 / 2279,
  3011. bottom: 0.015
  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: 2373 / 2244,
  3021. bottom: 0.013
  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: "Front (Dressed)",
  3550. image: {
  3551. source: "./media/characters/sefer/front-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. ))
  3565. characterMakers.push(() => makeCharacter(
  3566. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3567. {
  3568. body: {
  3569. height: math.unit(2.2428, "meter"),
  3570. weight: math.unit(124.738, "kg"),
  3571. name: "Body",
  3572. image: {
  3573. extra: 1225 / 1050,
  3574. source: "./media/characters/north/front.svg"
  3575. }
  3576. }
  3577. },
  3578. [
  3579. {
  3580. name: "Micro",
  3581. height: math.unit(4, "inches")
  3582. },
  3583. {
  3584. name: "Macro",
  3585. height: math.unit(63, "meters")
  3586. },
  3587. {
  3588. name: "Megamacro",
  3589. height: math.unit(101, "miles"),
  3590. default: true
  3591. }
  3592. ]
  3593. ))
  3594. characterMakers.push(() => makeCharacter(
  3595. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3596. {
  3597. angled: {
  3598. height: math.unit(4, "meter"),
  3599. weight: math.unit(150, "kg"),
  3600. name: "Angled",
  3601. image: {
  3602. source: "./media/characters/talan/angled-sfw.svg",
  3603. bottom: 29 / 3734
  3604. }
  3605. },
  3606. angledNsfw: {
  3607. height: math.unit(4, "meter"),
  3608. weight: math.unit(150, "kg"),
  3609. name: "Angled (NSFW)",
  3610. image: {
  3611. source: "./media/characters/talan/angled-nsfw.svg",
  3612. bottom: 29 / 3734
  3613. }
  3614. },
  3615. frontNsfw: {
  3616. height: math.unit(4, "meter"),
  3617. weight: math.unit(150, "kg"),
  3618. name: "Front (NSFW)",
  3619. image: {
  3620. source: "./media/characters/talan/front-nsfw.svg",
  3621. bottom: 29 / 3734
  3622. }
  3623. },
  3624. sideNsfw: {
  3625. height: math.unit(4, "meter"),
  3626. weight: math.unit(150, "kg"),
  3627. name: "Side (NSFW)",
  3628. image: {
  3629. source: "./media/characters/talan/side-nsfw.svg",
  3630. bottom: 29 / 3734
  3631. }
  3632. },
  3633. back: {
  3634. height: math.unit(4, "meter"),
  3635. weight: math.unit(150, "kg"),
  3636. name: "Back",
  3637. image: {
  3638. source: "./media/characters/talan/back.svg"
  3639. }
  3640. },
  3641. dickBottom: {
  3642. height: math.unit(0.621, "meter"),
  3643. name: "Dick (Bottom)",
  3644. image: {
  3645. source: "./media/characters/talan/dick-bottom.svg"
  3646. }
  3647. },
  3648. dickTop: {
  3649. height: math.unit(0.621, "meter"),
  3650. name: "Dick (Top)",
  3651. image: {
  3652. source: "./media/characters/talan/dick-top.svg"
  3653. }
  3654. },
  3655. dickSide: {
  3656. height: math.unit(0.305, "meter"),
  3657. name: "Dick (Side)",
  3658. image: {
  3659. source: "./media/characters/talan/dick-side.svg"
  3660. }
  3661. },
  3662. dickFront: {
  3663. height: math.unit(0.305, "meter"),
  3664. name: "Dick (Front)",
  3665. image: {
  3666. source: "./media/characters/talan/dick-front.svg"
  3667. }
  3668. },
  3669. },
  3670. [
  3671. {
  3672. name: "Normal",
  3673. height: math.unit(4, "meters")
  3674. },
  3675. {
  3676. name: "Macro",
  3677. height: math.unit(100, "meters")
  3678. },
  3679. {
  3680. name: "Megamacro",
  3681. height: math.unit(2, "miles"),
  3682. default: true
  3683. },
  3684. {
  3685. name: "Gigamacro",
  3686. height: math.unit(5000, "miles")
  3687. },
  3688. {
  3689. name: "Teramacro",
  3690. height: math.unit(100, "parsecs")
  3691. }
  3692. ]
  3693. ))
  3694. characterMakers.push(() => makeCharacter(
  3695. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3696. {
  3697. front: {
  3698. height: math.unit(2, "meter"),
  3699. weight: math.unit(90, "kg"),
  3700. name: "Front",
  3701. image: {
  3702. source: "./media/characters/gael'rathus/front.svg"
  3703. }
  3704. },
  3705. frontAlt: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Front (alt)",
  3709. image: {
  3710. source: "./media/characters/gael'rathus/front-alt.svg"
  3711. }
  3712. },
  3713. frontAlt2: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Front (alt 2)",
  3717. image: {
  3718. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3719. }
  3720. }
  3721. },
  3722. [
  3723. {
  3724. name: "Normal",
  3725. height: math.unit(9, "feet"),
  3726. default: true
  3727. },
  3728. {
  3729. name: "Large",
  3730. height: math.unit(25, "feet")
  3731. },
  3732. {
  3733. name: "Macro",
  3734. height: math.unit(0.25, "miles")
  3735. },
  3736. {
  3737. name: "Megamacro",
  3738. height: math.unit(10, "miles")
  3739. }
  3740. ]
  3741. ))
  3742. characterMakers.push(() => makeCharacter(
  3743. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3744. {
  3745. side: {
  3746. height: math.unit(2, "meter"),
  3747. weight: math.unit(140, "kg"),
  3748. name: "Side",
  3749. image: {
  3750. source: "./media/characters/sosha/side.svg",
  3751. extra: 1170/1006,
  3752. bottom: 94/1264
  3753. }
  3754. },
  3755. maw: {
  3756. height: math.unit(2.87, "feet"),
  3757. name: "Maw",
  3758. image: {
  3759. source: "./media/characters/sosha/maw.svg",
  3760. extra: 966/865,
  3761. bottom: 0/966
  3762. }
  3763. },
  3764. cooch: {
  3765. height: math.unit(5.6, "feet"),
  3766. name: "Cooch",
  3767. image: {
  3768. source: "./media/characters/sosha/cooch.svg"
  3769. }
  3770. },
  3771. },
  3772. [
  3773. {
  3774. name: "Normal",
  3775. height: math.unit(12, "feet"),
  3776. default: true
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3782. {
  3783. side: {
  3784. height: math.unit(5 + 5 / 12, "feet"),
  3785. weight: math.unit(170, "kg"),
  3786. name: "Side",
  3787. image: {
  3788. source: "./media/characters/runnola/side.svg",
  3789. extra: 741 / 448,
  3790. bottom: 0.05
  3791. }
  3792. },
  3793. },
  3794. [
  3795. {
  3796. name: "Small",
  3797. height: math.unit(3, "feet")
  3798. },
  3799. {
  3800. name: "Normal",
  3801. height: math.unit(5 + 5 / 12, "feet"),
  3802. default: true
  3803. },
  3804. {
  3805. name: "Big",
  3806. height: math.unit(10, "feet")
  3807. },
  3808. ]
  3809. ))
  3810. characterMakers.push(() => makeCharacter(
  3811. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3812. {
  3813. front: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(50, "kg"),
  3816. name: "Front",
  3817. image: {
  3818. source: "./media/characters/kurribird/front.svg",
  3819. bottom: 0.015
  3820. }
  3821. },
  3822. frontAlt: {
  3823. height: math.unit(1.5, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front (Alt)",
  3826. image: {
  3827. source: "./media/characters/kurribird/front-alt.svg",
  3828. extra: 1.45
  3829. }
  3830. },
  3831. },
  3832. [
  3833. {
  3834. name: "Normal",
  3835. height: math.unit(7, "feet")
  3836. },
  3837. {
  3838. name: "Big",
  3839. height: math.unit(12, "feet"),
  3840. default: true
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(1500, "feet")
  3845. },
  3846. {
  3847. name: "Megamacro",
  3848. height: math.unit(2, "miles")
  3849. }
  3850. ]
  3851. ))
  3852. characterMakers.push(() => makeCharacter(
  3853. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3854. {
  3855. front: {
  3856. height: math.unit(2, "meter"),
  3857. weight: math.unit(80, "kg"),
  3858. name: "Front",
  3859. image: {
  3860. source: "./media/characters/elbial/front.svg",
  3861. extra: 1643 / 1556,
  3862. bottom: 60.2 / 1696
  3863. }
  3864. },
  3865. side: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(80, "kg"),
  3868. name: "Side",
  3869. image: {
  3870. source: "./media/characters/elbial/side.svg",
  3871. extra: 1601/1528,
  3872. bottom: 97/1698
  3873. }
  3874. },
  3875. back: {
  3876. height: math.unit(2, "meter"),
  3877. weight: math.unit(80, "kg"),
  3878. name: "Back",
  3879. image: {
  3880. source: "./media/characters/elbial/back.svg",
  3881. extra: 1653/1569,
  3882. bottom: 20/1673
  3883. }
  3884. },
  3885. frontDressed: {
  3886. height: math.unit(2, "meter"),
  3887. weight: math.unit(80, "kg"),
  3888. name: "Front (Dressed)",
  3889. image: {
  3890. source: "./media/characters/elbial/front-dressed.svg",
  3891. extra: 1638/1569,
  3892. bottom: 70/1708
  3893. }
  3894. },
  3895. genitals: {
  3896. height: math.unit(2 / 3.367, "meter"),
  3897. name: "Genitals",
  3898. image: {
  3899. source: "./media/characters/elbial/genitals.svg"
  3900. }
  3901. },
  3902. },
  3903. [
  3904. {
  3905. name: "Large",
  3906. height: math.unit(100, "feet")
  3907. },
  3908. {
  3909. name: "Macro",
  3910. height: math.unit(500, "feet"),
  3911. default: true
  3912. },
  3913. {
  3914. name: "Megamacro",
  3915. height: math.unit(10, "miles")
  3916. },
  3917. {
  3918. name: "Gigamacro",
  3919. height: math.unit(25000, "miles")
  3920. },
  3921. {
  3922. name: "Full-Size",
  3923. height: math.unit(8000000, "gigaparsecs")
  3924. }
  3925. ]
  3926. ))
  3927. characterMakers.push(() => makeCharacter(
  3928. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3929. {
  3930. front: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(60, "kg"),
  3933. name: "Front",
  3934. image: {
  3935. source: "./media/characters/noah/front.svg"
  3936. }
  3937. },
  3938. talons: {
  3939. height: math.unit(0.315, "meter"),
  3940. name: "Talons",
  3941. image: {
  3942. source: "./media/characters/noah/talons.svg"
  3943. }
  3944. }
  3945. },
  3946. [
  3947. {
  3948. name: "Large",
  3949. height: math.unit(50, "feet")
  3950. },
  3951. {
  3952. name: "Macro",
  3953. height: math.unit(750, "feet"),
  3954. default: true
  3955. },
  3956. {
  3957. name: "Megamacro",
  3958. height: math.unit(50, "miles")
  3959. },
  3960. {
  3961. name: "Gigamacro",
  3962. height: math.unit(100000, "miles")
  3963. },
  3964. {
  3965. name: "Full-Size",
  3966. height: math.unit(3000000000, "miles")
  3967. }
  3968. ]
  3969. ))
  3970. characterMakers.push(() => makeCharacter(
  3971. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3972. {
  3973. front: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(80, "kg"),
  3976. name: "Front",
  3977. image: {
  3978. source: "./media/characters/natalya/front.svg"
  3979. }
  3980. },
  3981. back: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(80, "kg"),
  3984. name: "Back",
  3985. image: {
  3986. source: "./media/characters/natalya/back.svg"
  3987. }
  3988. }
  3989. },
  3990. [
  3991. {
  3992. name: "Normal",
  3993. height: math.unit(150, "feet"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Megamacro",
  3998. height: math.unit(5, "miles")
  3999. },
  4000. {
  4001. name: "Full-Size",
  4002. height: math.unit(600, "kiloparsecs")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(50, "kg"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/erestrebah/front.svg",
  4015. extra: 1262/1162,
  4016. bottom: 96/1358
  4017. }
  4018. },
  4019. back: {
  4020. height: math.unit(2, "meter"),
  4021. weight: math.unit(50, "kg"),
  4022. name: "Back",
  4023. image: {
  4024. source: "./media/characters/erestrebah/back.svg",
  4025. extra: 1257/1139,
  4026. bottom: 13/1270
  4027. }
  4028. },
  4029. wing: {
  4030. height: math.unit(2, "meter"),
  4031. weight: math.unit(50, "kg"),
  4032. name: "Wing",
  4033. image: {
  4034. source: "./media/characters/erestrebah/wing.svg",
  4035. extra: 1262/1162,
  4036. bottom: 96/1358
  4037. }
  4038. },
  4039. mouth: {
  4040. height: math.unit(0.39, "feet"),
  4041. name: "Mouth",
  4042. image: {
  4043. source: "./media/characters/erestrebah/mouth.svg"
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(10, "feet")
  4051. },
  4052. {
  4053. name: "Large",
  4054. height: math.unit(50, "feet"),
  4055. default: true
  4056. },
  4057. {
  4058. name: "Macro",
  4059. height: math.unit(300, "feet")
  4060. },
  4061. {
  4062. name: "Macro+",
  4063. height: math.unit(750, "feet")
  4064. },
  4065. {
  4066. name: "Megamacro",
  4067. height: math.unit(3, "miles")
  4068. }
  4069. ]
  4070. ))
  4071. characterMakers.push(() => makeCharacter(
  4072. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4073. {
  4074. front: {
  4075. height: math.unit(2, "meter"),
  4076. weight: math.unit(80, "kg"),
  4077. name: "Front",
  4078. image: {
  4079. source: "./media/characters/jennifer/front.svg",
  4080. bottom: 0.11,
  4081. extra: 1.16
  4082. }
  4083. },
  4084. frontAlt: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(80, "kg"),
  4087. name: "Front (Alt)",
  4088. image: {
  4089. source: "./media/characters/jennifer/front-alt.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Canon Height",
  4096. height: math.unit(120, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Macro+",
  4101. height: math.unit(300, "feet")
  4102. },
  4103. {
  4104. name: "Megamacro",
  4105. height: math.unit(20000, "feet")
  4106. }
  4107. ]
  4108. ))
  4109. characterMakers.push(() => makeCharacter(
  4110. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4111. {
  4112. front: {
  4113. height: math.unit(2, "meter"),
  4114. weight: math.unit(50, "kg"),
  4115. name: "Front",
  4116. image: {
  4117. source: "./media/characters/kalista/front.svg",
  4118. extra: 1314/1145,
  4119. bottom: 101/1415
  4120. }
  4121. },
  4122. back: {
  4123. height: math.unit(2, "meter"),
  4124. weight: math.unit(50, "kg"),
  4125. name: "Back",
  4126. image: {
  4127. source: "./media/characters/kalista/back.svg",
  4128. extra: 1366 / 1156,
  4129. bottom: 33.9 / 1362.78
  4130. }
  4131. }
  4132. },
  4133. [
  4134. {
  4135. name: "Uncomfortably Small",
  4136. height: math.unit(10, "feet")
  4137. },
  4138. {
  4139. name: "Small",
  4140. height: math.unit(30, "feet")
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(100, "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Macro+",
  4149. height: math.unit(2000, "feet")
  4150. },
  4151. {
  4152. name: "True Form",
  4153. height: math.unit(8924, "miles")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(2, "meter"),
  4162. weight: math.unit(120, "kg"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/ggv/front.svg"
  4166. }
  4167. },
  4168. side: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(120, "kg"),
  4171. name: "Side",
  4172. image: {
  4173. source: "./media/characters/ggv/side.svg"
  4174. }
  4175. }
  4176. },
  4177. [
  4178. {
  4179. name: "Extremely Puny",
  4180. height: math.unit(9 + 5 / 12, "feet")
  4181. },
  4182. {
  4183. name: "Horribly Small",
  4184. height: math.unit(47.7, "miles"),
  4185. default: true
  4186. },
  4187. {
  4188. name: "Reasonably Sized",
  4189. height: math.unit(25000, "parsecs")
  4190. },
  4191. {
  4192. name: "Slightly Uncompressed",
  4193. height: math.unit(7.77e31, "parsecs")
  4194. },
  4195. {
  4196. name: "Omniversal",
  4197. height: math.unit(1e300, "meters")
  4198. },
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(2, "meter"),
  4206. weight: math.unit(75, "lb"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/napalm/front.svg"
  4210. }
  4211. },
  4212. back: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(75, "lb"),
  4215. name: "Back",
  4216. image: {
  4217. source: "./media/characters/napalm/back.svg"
  4218. }
  4219. }
  4220. },
  4221. [
  4222. {
  4223. name: "Standard",
  4224. height: math.unit(55, "feet"),
  4225. default: true
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4231. {
  4232. front: {
  4233. height: math.unit(7 + 5 / 6, "feet"),
  4234. weight: math.unit(325, "lb"),
  4235. name: "Front",
  4236. image: {
  4237. source: "./media/characters/asana/front.svg",
  4238. extra: 1133 / 1060,
  4239. bottom: 15.2 / 1148.6
  4240. }
  4241. },
  4242. back: {
  4243. height: math.unit(7 + 5 / 6, "feet"),
  4244. weight: math.unit(325, "lb"),
  4245. name: "Back",
  4246. image: {
  4247. source: "./media/characters/asana/back.svg",
  4248. extra: 1114 / 1043,
  4249. bottom: 5 / 1120
  4250. }
  4251. },
  4252. dressedDark: {
  4253. height: math.unit(7 + 5 / 6, "feet"),
  4254. weight: math.unit(325, "lb"),
  4255. name: "Dressed (Dark)",
  4256. image: {
  4257. source: "./media/characters/asana/dressed-dark.svg",
  4258. extra: 1133 / 1060,
  4259. bottom: 15.2 / 1148.6
  4260. }
  4261. },
  4262. dressedLight: {
  4263. height: math.unit(7 + 5 / 6, "feet"),
  4264. weight: math.unit(325, "lb"),
  4265. name: "Dressed (Light)",
  4266. image: {
  4267. source: "./media/characters/asana/dressed-light.svg",
  4268. extra: 1133 / 1060,
  4269. bottom: 15.2 / 1148.6
  4270. }
  4271. },
  4272. },
  4273. [
  4274. {
  4275. name: "Standard",
  4276. height: math.unit(7 + 5 / 6, "feet"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Large",
  4281. height: math.unit(10, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(2500, "meters")
  4286. },
  4287. {
  4288. name: "Megamacro",
  4289. height: math.unit(5e6, "meters")
  4290. },
  4291. {
  4292. name: "Examacro",
  4293. height: math.unit(5e12, "lightyears")
  4294. },
  4295. {
  4296. name: "Max Size",
  4297. height: math.unit(1e31, "lightyears")
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(60, "kg"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/ebony/front.svg",
  4310. bottom: 0.03,
  4311. extra: 1045 / 810 + 0.03
  4312. }
  4313. },
  4314. side: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(60, "kg"),
  4317. name: "Side",
  4318. image: {
  4319. source: "./media/characters/ebony/side.svg",
  4320. bottom: 0.03,
  4321. extra: 1045 / 810 + 0.03
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(60, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/ebony/back.svg",
  4330. bottom: 0.01,
  4331. extra: 1045 / 810 + 0.01
  4332. }
  4333. },
  4334. },
  4335. [
  4336. // TODO check why I did this lol
  4337. {
  4338. name: "Standard",
  4339. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Macro",
  4344. height: math.unit(200, "feet")
  4345. },
  4346. {
  4347. name: "Gigamacro",
  4348. height: math.unit(13000, "km")
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4354. {
  4355. front: {
  4356. height: math.unit(6, "feet"),
  4357. weight: math.unit(175, "lb"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/mountain/front.svg",
  4361. extra: 972 / 955,
  4362. bottom: 64 / 1036.6
  4363. }
  4364. },
  4365. back: {
  4366. height: math.unit(6, "feet"),
  4367. weight: math.unit(175, "lb"),
  4368. name: "Back",
  4369. image: {
  4370. source: "./media/characters/mountain/back.svg",
  4371. extra: 970 / 950,
  4372. bottom: 28.25 / 999
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Large",
  4379. height: math.unit(20, "meters")
  4380. },
  4381. {
  4382. name: "Macro",
  4383. height: math.unit(300, "meters")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(10000, "km"),
  4388. default: true
  4389. },
  4390. {
  4391. name: "Examacro",
  4392. height: math.unit(10e9, "lightyears")
  4393. }
  4394. ]
  4395. ))
  4396. characterMakers.push(() => makeCharacter(
  4397. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4398. {
  4399. front: {
  4400. height: math.unit(8, "feet"),
  4401. weight: math.unit(500, "lb"),
  4402. name: "Front",
  4403. image: {
  4404. source: "./media/characters/rick/front.svg"
  4405. }
  4406. }
  4407. },
  4408. [
  4409. {
  4410. name: "Normal",
  4411. height: math.unit(8, "feet"),
  4412. default: true
  4413. },
  4414. {
  4415. name: "Macro",
  4416. height: math.unit(5, "km")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4422. {
  4423. front: {
  4424. height: math.unit(8, "feet"),
  4425. weight: math.unit(120, "lb"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/ona/front.svg"
  4429. }
  4430. },
  4431. frontAlt: {
  4432. height: math.unit(8, "feet"),
  4433. weight: math.unit(120, "lb"),
  4434. name: "Front (Alt)",
  4435. image: {
  4436. source: "./media/characters/ona/front-alt.svg"
  4437. }
  4438. },
  4439. back: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(120, "lb"),
  4442. name: "Back",
  4443. image: {
  4444. source: "./media/characters/ona/back.svg"
  4445. }
  4446. },
  4447. foot: {
  4448. height: math.unit(1.1, "feet"),
  4449. name: "Foot",
  4450. image: {
  4451. source: "./media/characters/ona/foot.svg"
  4452. }
  4453. }
  4454. },
  4455. [
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(70, "km"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Gigamacro",
  4463. height: math.unit(681818, "miles")
  4464. },
  4465. {
  4466. name: "Examacro",
  4467. height: math.unit(3800000, "lightyears")
  4468. },
  4469. ]
  4470. ))
  4471. characterMakers.push(() => makeCharacter(
  4472. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4473. {
  4474. front: {
  4475. height: math.unit(12, "feet"),
  4476. weight: math.unit(3000, "lb"),
  4477. name: "Front",
  4478. image: {
  4479. source: "./media/characters/mech/front.svg",
  4480. extra: 2900 / 2770,
  4481. bottom: 110 / 3010
  4482. }
  4483. },
  4484. back: {
  4485. height: math.unit(12, "feet"),
  4486. weight: math.unit(3000, "lb"),
  4487. name: "Back",
  4488. image: {
  4489. source: "./media/characters/mech/back.svg",
  4490. extra: 3011 / 2890,
  4491. bottom: 94 / 3105
  4492. }
  4493. },
  4494. maw: {
  4495. height: math.unit(3.07, "feet"),
  4496. name: "Maw",
  4497. image: {
  4498. source: "./media/characters/mech/maw.svg"
  4499. }
  4500. },
  4501. head: {
  4502. height: math.unit(3.07, "feet"),
  4503. name: "Head",
  4504. image: {
  4505. source: "./media/characters/mech/head.svg"
  4506. }
  4507. },
  4508. dick: {
  4509. height: math.unit(1.43, "feet"),
  4510. name: "Dick",
  4511. image: {
  4512. source: "./media/characters/mech/dick.svg"
  4513. }
  4514. },
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(12, "feet")
  4520. },
  4521. {
  4522. name: "Macro",
  4523. height: math.unit(300, "feet"),
  4524. default: true
  4525. },
  4526. {
  4527. name: "Macro+",
  4528. height: math.unit(1500, "feet")
  4529. },
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4534. {
  4535. front: {
  4536. height: math.unit(1.3, "meter"),
  4537. weight: math.unit(30, "kg"),
  4538. name: "Front",
  4539. image: {
  4540. source: "./media/characters/gregory/front.svg",
  4541. }
  4542. }
  4543. },
  4544. [
  4545. {
  4546. name: "Normal",
  4547. height: math.unit(1.3, "meter"),
  4548. default: true
  4549. },
  4550. {
  4551. name: "Macro",
  4552. height: math.unit(20, "meter")
  4553. }
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4558. {
  4559. front: {
  4560. height: math.unit(2.8, "meter"),
  4561. weight: math.unit(200, "kg"),
  4562. name: "Front",
  4563. image: {
  4564. source: "./media/characters/elory/front.svg",
  4565. }
  4566. }
  4567. },
  4568. [
  4569. {
  4570. name: "Normal",
  4571. height: math.unit(2.8, "meter"),
  4572. default: true
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(38, "meter")
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4582. {
  4583. front: {
  4584. height: math.unit(470, "feet"),
  4585. weight: math.unit(924, "tons"),
  4586. name: "Front",
  4587. image: {
  4588. source: "./media/characters/angelpatamon/front.svg",
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Normal",
  4595. height: math.unit(470, "feet"),
  4596. default: true
  4597. },
  4598. {
  4599. name: "Deity Size I",
  4600. height: math.unit(28651.2, "km")
  4601. },
  4602. {
  4603. name: "Deity Size II",
  4604. height: math.unit(171907.2, "km")
  4605. }
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4610. {
  4611. side: {
  4612. height: math.unit(7.2, "meter"),
  4613. weight: math.unit(8.2, "tons"),
  4614. name: "Side",
  4615. image: {
  4616. source: "./media/characters/cryae/side.svg",
  4617. extra: 3500 / 1500
  4618. }
  4619. }
  4620. },
  4621. [
  4622. {
  4623. name: "Normal",
  4624. height: math.unit(7.2, "meter"),
  4625. default: true
  4626. }
  4627. ]
  4628. ))
  4629. characterMakers.push(() => makeCharacter(
  4630. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4631. {
  4632. front: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(175, "lb"),
  4635. name: "Front",
  4636. image: {
  4637. source: "./media/characters/xera/front.svg",
  4638. extra: 2377 / 1972,
  4639. bottom: 75.5 / 2452
  4640. }
  4641. },
  4642. side: {
  4643. height: math.unit(6, "feet"),
  4644. weight: math.unit(175, "lb"),
  4645. name: "Side",
  4646. image: {
  4647. source: "./media/characters/xera/side.svg",
  4648. extra: 2345 / 2019,
  4649. bottom: 39.7 / 2384
  4650. }
  4651. },
  4652. back: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(175, "lb"),
  4655. name: "Back",
  4656. image: {
  4657. source: "./media/characters/xera/back.svg",
  4658. extra: 2095 / 1984,
  4659. bottom: 67 / 2166
  4660. }
  4661. },
  4662. },
  4663. [
  4664. {
  4665. name: "Small",
  4666. height: math.unit(10, "feet")
  4667. },
  4668. {
  4669. name: "Macro",
  4670. height: math.unit(500, "meters"),
  4671. default: true
  4672. },
  4673. {
  4674. name: "Macro+",
  4675. height: math.unit(10, "km")
  4676. },
  4677. {
  4678. name: "Gigamacro",
  4679. height: math.unit(25000, "km")
  4680. },
  4681. {
  4682. name: "Teramacro",
  4683. height: math.unit(3e6, "km")
  4684. }
  4685. ]
  4686. ))
  4687. characterMakers.push(() => makeCharacter(
  4688. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4689. {
  4690. front: {
  4691. height: math.unit(6, "feet"),
  4692. weight: math.unit(175, "lb"),
  4693. name: "Front",
  4694. image: {
  4695. source: "./media/characters/nebula/front.svg",
  4696. extra: 2566 / 2362,
  4697. bottom: 81 / 2644
  4698. }
  4699. }
  4700. },
  4701. [
  4702. {
  4703. name: "Small",
  4704. height: math.unit(4.5, "meters")
  4705. },
  4706. {
  4707. name: "Macro",
  4708. height: math.unit(1500, "meters"),
  4709. default: true
  4710. },
  4711. {
  4712. name: "Megamacro",
  4713. height: math.unit(150, "km")
  4714. },
  4715. {
  4716. name: "Gigamacro",
  4717. height: math.unit(27000, "km")
  4718. }
  4719. ]
  4720. ))
  4721. characterMakers.push(() => makeCharacter(
  4722. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4723. {
  4724. front: {
  4725. height: math.unit(6, "feet"),
  4726. weight: math.unit(225, "lb"),
  4727. name: "Front",
  4728. image: {
  4729. source: "./media/characters/abysgar/front.svg",
  4730. extra: 1739/1614,
  4731. bottom: 71/1810
  4732. }
  4733. },
  4734. frontNsfw: {
  4735. height: math.unit(6, "feet"),
  4736. weight: math.unit(225, "lb"),
  4737. name: "Front (NSFW)",
  4738. image: {
  4739. source: "./media/characters/abysgar/front-nsfw.svg",
  4740. extra: 1739/1614,
  4741. bottom: 71/1810
  4742. }
  4743. },
  4744. back: {
  4745. height: math.unit(4.6, "feet"),
  4746. weight: math.unit(225, "lb"),
  4747. name: "Back",
  4748. image: {
  4749. source: "./media/characters/abysgar/back.svg",
  4750. extra: 1384/1327,
  4751. bottom: 0/1384
  4752. }
  4753. },
  4754. head: {
  4755. height: math.unit(1.25, "feet"),
  4756. name: "Head",
  4757. image: {
  4758. source: "./media/characters/abysgar/head.svg",
  4759. extra: 669/569,
  4760. bottom: 0/669
  4761. }
  4762. },
  4763. },
  4764. [
  4765. {
  4766. name: "Small",
  4767. height: math.unit(4.5, "meters")
  4768. },
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(1250, "meters"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Megamacro",
  4776. height: math.unit(125, "km")
  4777. },
  4778. {
  4779. name: "Gigamacro",
  4780. height: math.unit(26000, "km")
  4781. }
  4782. ]
  4783. ))
  4784. characterMakers.push(() => makeCharacter(
  4785. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4786. {
  4787. front: {
  4788. height: math.unit(6, "feet"),
  4789. weight: math.unit(180, "lb"),
  4790. name: "Front",
  4791. image: {
  4792. source: "./media/characters/yakuz/front.svg"
  4793. }
  4794. }
  4795. },
  4796. [
  4797. {
  4798. name: "Small",
  4799. height: math.unit(5, "meters")
  4800. },
  4801. {
  4802. name: "Macro",
  4803. height: math.unit(1500, "meters"),
  4804. default: true
  4805. },
  4806. {
  4807. name: "Megamacro",
  4808. height: math.unit(200, "km")
  4809. },
  4810. {
  4811. name: "Gigamacro",
  4812. height: math.unit(100000, "km")
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(175, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/mirova/front.svg",
  4825. extra: 3334 / 3071,
  4826. bottom: 42 / 3375.6
  4827. }
  4828. }
  4829. },
  4830. [
  4831. {
  4832. name: "Small",
  4833. height: math.unit(5, "meters")
  4834. },
  4835. {
  4836. name: "Macro",
  4837. height: math.unit(900, "meters"),
  4838. default: true
  4839. },
  4840. {
  4841. name: "Megamacro",
  4842. height: math.unit(135, "km")
  4843. },
  4844. {
  4845. name: "Gigamacro",
  4846. height: math.unit(20000, "km")
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4852. {
  4853. side: {
  4854. height: math.unit(28.35, "feet"),
  4855. weight: math.unit(99.75, "tons"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/asana-mech/side.svg",
  4859. extra: 923 / 699,
  4860. bottom: 50 / 975
  4861. }
  4862. },
  4863. chaingun: {
  4864. height: math.unit(7, "feet"),
  4865. weight: math.unit(2400, "lb"),
  4866. name: "Chaingun",
  4867. image: {
  4868. source: "./media/characters/asana-mech/chaingun.svg"
  4869. }
  4870. },
  4871. laser: {
  4872. height: math.unit(7.12, "feet"),
  4873. weight: math.unit(2000, "lb"),
  4874. name: "Laser",
  4875. image: {
  4876. source: "./media/characters/asana-mech/laser.svg"
  4877. }
  4878. },
  4879. },
  4880. [
  4881. {
  4882. name: "Normal",
  4883. height: math.unit(28.35, "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(2500, "feet")
  4889. },
  4890. {
  4891. name: "Megamacro",
  4892. height: math.unit(25, "miles")
  4893. },
  4894. {
  4895. name: "Examacro",
  4896. height: math.unit(6e8, "lightyears")
  4897. },
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(5, "meters"),
  4905. weight: math.unit(1000, "kg"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/asche/front.svg",
  4909. extra: 1258 / 1190,
  4910. bottom: 47 / 1305
  4911. }
  4912. },
  4913. frontUnderwear: {
  4914. height: math.unit(5, "meters"),
  4915. weight: math.unit(1000, "kg"),
  4916. name: "Front (Underwear)",
  4917. image: {
  4918. source: "./media/characters/asche/front-underwear.svg",
  4919. extra: 1258 / 1190,
  4920. bottom: 47 / 1305
  4921. }
  4922. },
  4923. frontDressed: {
  4924. height: math.unit(5, "meters"),
  4925. weight: math.unit(1000, "kg"),
  4926. name: "Front (Dressed)",
  4927. image: {
  4928. source: "./media/characters/asche/front-dressed.svg",
  4929. extra: 1258 / 1190,
  4930. bottom: 47 / 1305
  4931. }
  4932. },
  4933. frontArmor: {
  4934. height: math.unit(5, "meters"),
  4935. weight: math.unit(1000, "kg"),
  4936. name: "Front (Armored)",
  4937. image: {
  4938. source: "./media/characters/asche/front-armored.svg",
  4939. extra: 1374 / 1308,
  4940. bottom: 23 / 1397
  4941. }
  4942. },
  4943. mp724: {
  4944. height: math.unit(0.96, "meters"),
  4945. weight: math.unit(38, "kg"),
  4946. name: "H&K MP724",
  4947. image: {
  4948. source: "./media/characters/asche/h&k-mp724.svg"
  4949. }
  4950. },
  4951. side: {
  4952. height: math.unit(5, "meters"),
  4953. weight: math.unit(1000, "kg"),
  4954. name: "Side",
  4955. image: {
  4956. source: "./media/characters/asche/side.svg",
  4957. extra: 1717 / 1609,
  4958. bottom: 0.005
  4959. }
  4960. },
  4961. back: {
  4962. height: math.unit(5, "meters"),
  4963. weight: math.unit(1000, "kg"),
  4964. name: "Back",
  4965. image: {
  4966. source: "./media/characters/asche/back.svg",
  4967. extra: 1570 / 1501
  4968. }
  4969. },
  4970. },
  4971. [
  4972. {
  4973. name: "DEFCON 5",
  4974. height: math.unit(5, "meters")
  4975. },
  4976. {
  4977. name: "DEFCON 4",
  4978. height: math.unit(500, "meters"),
  4979. default: true
  4980. },
  4981. {
  4982. name: "DEFCON 3",
  4983. height: math.unit(5, "km")
  4984. },
  4985. {
  4986. name: "DEFCON 2",
  4987. height: math.unit(500, "km")
  4988. },
  4989. {
  4990. name: "DEFCON 1",
  4991. height: math.unit(500000, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 0",
  4995. height: math.unit(3, "gigaparsecs")
  4996. },
  4997. ]
  4998. ))
  4999. characterMakers.push(() => makeCharacter(
  5000. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5001. {
  5002. front: {
  5003. height: math.unit(2, "meters"),
  5004. weight: math.unit(76, "kg"),
  5005. name: "Front",
  5006. image: {
  5007. source: "./media/characters/gale/front.svg"
  5008. }
  5009. },
  5010. frontAlt1: {
  5011. height: math.unit(2, "meters"),
  5012. weight: math.unit(76, "kg"),
  5013. name: "Front (Alt 1)",
  5014. image: {
  5015. source: "./media/characters/gale/front-alt-1.svg"
  5016. }
  5017. },
  5018. frontAlt2: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(76, "kg"),
  5021. name: "Front (Alt 2)",
  5022. image: {
  5023. source: "./media/characters/gale/front-alt-2.svg"
  5024. }
  5025. },
  5026. },
  5027. [
  5028. {
  5029. name: "Normal",
  5030. height: math.unit(7, "feet")
  5031. },
  5032. {
  5033. name: "Macro",
  5034. height: math.unit(150, "feet"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Macro+",
  5039. height: math.unit(300, "feet")
  5040. },
  5041. ]
  5042. ))
  5043. characterMakers.push(() => makeCharacter(
  5044. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5045. {
  5046. front: {
  5047. height: math.unit(5 + 10/12, "feet"),
  5048. weight: math.unit(67, "kg"),
  5049. name: "Front",
  5050. image: {
  5051. source: "./media/characters/draylen/front.svg",
  5052. extra: 832/777,
  5053. bottom: 85/917
  5054. }
  5055. }
  5056. },
  5057. [
  5058. {
  5059. name: "Normal",
  5060. height: math.unit(5 + 10/12, "feet")
  5061. },
  5062. {
  5063. name: "Macro",
  5064. height: math.unit(150, "feet"),
  5065. default: true
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5071. {
  5072. front: {
  5073. height: math.unit(7 + 9 / 12, "feet"),
  5074. weight: math.unit(379, "lbs"),
  5075. name: "Front",
  5076. image: {
  5077. source: "./media/characters/chez/front.svg"
  5078. }
  5079. },
  5080. side: {
  5081. height: math.unit(7 + 9 / 12, "feet"),
  5082. weight: math.unit(379, "lbs"),
  5083. name: "Side",
  5084. image: {
  5085. source: "./media/characters/chez/side.svg"
  5086. }
  5087. }
  5088. },
  5089. [
  5090. {
  5091. name: "Normal",
  5092. height: math.unit(7 + 9 / 12, "feet"),
  5093. default: true
  5094. },
  5095. {
  5096. name: "God King",
  5097. height: math.unit(9750000, "meters")
  5098. }
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(275, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/kaylum/front.svg",
  5110. bottom: 0.01,
  5111. extra: 1166 / 1031
  5112. }
  5113. },
  5114. frontWingless: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(275, "lbs"),
  5117. name: "Front (Wingless)",
  5118. image: {
  5119. source: "./media/characters/kaylum/front-wingless.svg",
  5120. bottom: 0.01,
  5121. extra: 1117 / 1031
  5122. }
  5123. }
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(3.05, "meters")
  5129. },
  5130. {
  5131. name: "Master",
  5132. height: math.unit(5.5, "meters")
  5133. },
  5134. {
  5135. name: "Rampage",
  5136. height: math.unit(19, "meters")
  5137. },
  5138. {
  5139. name: "Macro Lite",
  5140. height: math.unit(37, "meters")
  5141. },
  5142. {
  5143. name: "Hyper Predator",
  5144. height: math.unit(61, "meters")
  5145. },
  5146. {
  5147. name: "Macro",
  5148. height: math.unit(138, "meters"),
  5149. default: true
  5150. }
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5155. {
  5156. front: {
  5157. height: math.unit(5 + 5 / 12, "feet"),
  5158. weight: math.unit(120, "lbs"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/geta/front.svg",
  5162. extra: 1003/933,
  5163. bottom: 21/1024
  5164. }
  5165. },
  5166. paw: {
  5167. height: math.unit(0.35, "feet"),
  5168. name: "Paw",
  5169. image: {
  5170. source: "./media/characters/geta/paw.svg"
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Micro",
  5177. height: math.unit(3, "inches"),
  5178. default: true
  5179. },
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(5 + 5 / 12, "feet")
  5183. }
  5184. ]
  5185. ))
  5186. characterMakers.push(() => makeCharacter(
  5187. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5188. {
  5189. front: {
  5190. height: math.unit(6, "feet"),
  5191. weight: math.unit(300, "lbs"),
  5192. name: "Front",
  5193. image: {
  5194. source: "./media/characters/tyrnn/front.svg"
  5195. }
  5196. }
  5197. },
  5198. [
  5199. {
  5200. name: "Main Height",
  5201. height: math.unit(355, "feet"),
  5202. default: true
  5203. },
  5204. {
  5205. name: "Fave. Height",
  5206. height: math.unit(2400, "feet")
  5207. }
  5208. ]
  5209. ))
  5210. characterMakers.push(() => makeCharacter(
  5211. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5212. {
  5213. front: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(300, "lbs"),
  5216. name: "Front",
  5217. image: {
  5218. source: "./media/characters/appledectomy/front.svg"
  5219. }
  5220. }
  5221. },
  5222. [
  5223. {
  5224. name: "Macro",
  5225. height: math.unit(2500, "feet")
  5226. },
  5227. {
  5228. name: "Megamacro",
  5229. height: math.unit(50, "miles"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Gigamacro",
  5234. height: math.unit(5000, "miles")
  5235. },
  5236. {
  5237. name: "Teramacro",
  5238. height: math.unit(250000, "miles")
  5239. },
  5240. ]
  5241. ))
  5242. characterMakers.push(() => makeCharacter(
  5243. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5244. {
  5245. front: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(200, "lbs"),
  5248. name: "Front",
  5249. image: {
  5250. source: "./media/characters/vulpes/front.svg",
  5251. extra: 573 / 543,
  5252. bottom: 0.033
  5253. }
  5254. },
  5255. side: {
  5256. height: math.unit(6, "feet"),
  5257. weight: math.unit(200, "lbs"),
  5258. name: "Side",
  5259. image: {
  5260. source: "./media/characters/vulpes/side.svg",
  5261. extra: 577 / 549,
  5262. bottom: 11 / 588
  5263. }
  5264. },
  5265. back: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(200, "lbs"),
  5268. name: "Back",
  5269. image: {
  5270. source: "./media/characters/vulpes/back.svg",
  5271. extra: 573 / 549,
  5272. bottom: 20 / 593
  5273. }
  5274. },
  5275. feet: {
  5276. height: math.unit(1.276, "feet"),
  5277. name: "Feet",
  5278. image: {
  5279. source: "./media/characters/vulpes/feet.svg"
  5280. }
  5281. },
  5282. maw: {
  5283. height: math.unit(1.18, "feet"),
  5284. name: "Maw",
  5285. image: {
  5286. source: "./media/characters/vulpes/maw.svg"
  5287. }
  5288. },
  5289. },
  5290. [
  5291. {
  5292. name: "Micro",
  5293. height: math.unit(2, "inches")
  5294. },
  5295. {
  5296. name: "Normal",
  5297. height: math.unit(6.3, "feet")
  5298. },
  5299. {
  5300. name: "Macro",
  5301. height: math.unit(850, "feet")
  5302. },
  5303. {
  5304. name: "Megamacro",
  5305. height: math.unit(7500, "feet"),
  5306. default: true
  5307. },
  5308. {
  5309. name: "Gigamacro",
  5310. height: math.unit(570000, "miles")
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(210, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/rain-fallen/front.svg"
  5323. }
  5324. },
  5325. side: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(210, "lbs"),
  5328. name: "Side",
  5329. image: {
  5330. source: "./media/characters/rain-fallen/side.svg"
  5331. }
  5332. },
  5333. back: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(210, "lbs"),
  5336. name: "Back",
  5337. image: {
  5338. source: "./media/characters/rain-fallen/back.svg"
  5339. }
  5340. },
  5341. feral: {
  5342. height: math.unit(9, "feet"),
  5343. weight: math.unit(700, "lbs"),
  5344. name: "Feral",
  5345. image: {
  5346. source: "./media/characters/rain-fallen/feral.svg"
  5347. }
  5348. },
  5349. },
  5350. [
  5351. {
  5352. name: "Meddling with Mortals",
  5353. height: math.unit(8 + 8/12, "feet")
  5354. },
  5355. {
  5356. name: "Normal",
  5357. height: math.unit(5, "meter")
  5358. },
  5359. {
  5360. name: "Macro",
  5361. height: math.unit(150, "meter"),
  5362. default: true
  5363. },
  5364. {
  5365. name: "Megamacro",
  5366. height: math.unit(278e6, "meter")
  5367. },
  5368. {
  5369. name: "Gigamacro",
  5370. height: math.unit(2e9, "meter")
  5371. },
  5372. {
  5373. name: "Teramacro",
  5374. height: math.unit(8e12, "meter")
  5375. },
  5376. {
  5377. name: "Devourer",
  5378. height: math.unit(14, "zettameters")
  5379. },
  5380. {
  5381. name: "Scarlet King",
  5382. height: math.unit(18, "yottameters")
  5383. },
  5384. {
  5385. name: "Void",
  5386. height: math.unit(1e88, "yottameters")
  5387. }
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5392. {
  5393. standing: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(180, "lbs"),
  5396. name: "Standing",
  5397. image: {
  5398. source: "./media/characters/zaakira/standing.svg",
  5399. extra: 1599/1504,
  5400. bottom: 39/1638
  5401. }
  5402. },
  5403. laying: {
  5404. height: math.unit(3.3, "feet"),
  5405. weight: math.unit(180, "lbs"),
  5406. name: "Laying",
  5407. image: {
  5408. source: "./media/characters/zaakira/laying.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(12, "feet")
  5416. },
  5417. {
  5418. name: "Macro",
  5419. height: math.unit(279, "feet"),
  5420. default: true
  5421. }
  5422. ]
  5423. ))
  5424. characterMakers.push(() => makeCharacter(
  5425. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5426. {
  5427. femSfw: {
  5428. height: math.unit(8, "feet"),
  5429. weight: math.unit(350, "lb"),
  5430. name: "Fem",
  5431. image: {
  5432. source: "./media/characters/sigvald/fem-sfw.svg",
  5433. extra: 182 / 164,
  5434. bottom: 8.7 / 190.5
  5435. }
  5436. },
  5437. femNsfw: {
  5438. height: math.unit(8, "feet"),
  5439. weight: math.unit(350, "lb"),
  5440. name: "Fem (NSFW)",
  5441. image: {
  5442. source: "./media/characters/sigvald/fem-nsfw.svg",
  5443. extra: 182 / 164,
  5444. bottom: 8.7 / 190.5
  5445. }
  5446. },
  5447. maleNsfw: {
  5448. height: math.unit(8, "feet"),
  5449. weight: math.unit(350, "lb"),
  5450. name: "Male (NSFW)",
  5451. image: {
  5452. source: "./media/characters/sigvald/male-nsfw.svg",
  5453. extra: 182 / 164,
  5454. bottom: 8.7 / 190.5
  5455. }
  5456. },
  5457. hermNsfw: {
  5458. height: math.unit(8, "feet"),
  5459. weight: math.unit(350, "lb"),
  5460. name: "Herm (NSFW)",
  5461. image: {
  5462. source: "./media/characters/sigvald/herm-nsfw.svg",
  5463. extra: 182 / 164,
  5464. bottom: 8.7 / 190.5
  5465. }
  5466. },
  5467. dick: {
  5468. height: math.unit(2.36, "feet"),
  5469. name: "Dick",
  5470. image: {
  5471. source: "./media/characters/sigvald/dick.svg"
  5472. }
  5473. },
  5474. eye: {
  5475. height: math.unit(0.31, "feet"),
  5476. name: "Eye",
  5477. image: {
  5478. source: "./media/characters/sigvald/eye.svg"
  5479. }
  5480. },
  5481. mouth: {
  5482. height: math.unit(0.92, "feet"),
  5483. name: "Mouth",
  5484. image: {
  5485. source: "./media/characters/sigvald/mouth.svg"
  5486. }
  5487. },
  5488. paws: {
  5489. height: math.unit(2.2, "feet"),
  5490. name: "Paws",
  5491. image: {
  5492. source: "./media/characters/sigvald/paws.svg"
  5493. }
  5494. }
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(8, "feet")
  5500. },
  5501. {
  5502. name: "Large",
  5503. height: math.unit(12, "feet")
  5504. },
  5505. {
  5506. name: "Larger",
  5507. height: math.unit(20, "feet")
  5508. },
  5509. {
  5510. name: "Macro",
  5511. height: math.unit(150, "feet")
  5512. },
  5513. {
  5514. name: "Macro+",
  5515. height: math.unit(200, "feet"),
  5516. default: true
  5517. },
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5522. {
  5523. side: {
  5524. height: math.unit(12, "feet"),
  5525. weight: math.unit(2000, "kg"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/scott/side.svg",
  5529. extra: 754 / 724,
  5530. bottom: 0.069
  5531. }
  5532. },
  5533. upright: {
  5534. height: math.unit(12, "feet"),
  5535. weight: math.unit(2000, "kg"),
  5536. name: "Upright",
  5537. image: {
  5538. source: "./media/characters/scott/upright.svg",
  5539. extra: 3881 / 3722,
  5540. bottom: 0.05
  5541. }
  5542. },
  5543. },
  5544. [
  5545. {
  5546. name: "Normal",
  5547. height: math.unit(12, "feet"),
  5548. default: true
  5549. },
  5550. ]
  5551. ))
  5552. characterMakers.push(() => makeCharacter(
  5553. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5554. {
  5555. side: {
  5556. height: math.unit(8, "meters"),
  5557. weight: math.unit(84755, "lbs"),
  5558. name: "Side",
  5559. image: {
  5560. source: "./media/characters/tobias/side.svg",
  5561. extra: 1474 / 1096,
  5562. bottom: 38.9 / 1513.1235
  5563. }
  5564. },
  5565. },
  5566. [
  5567. {
  5568. name: "Normal",
  5569. height: math.unit(8, "meters"),
  5570. default: true
  5571. },
  5572. ]
  5573. ))
  5574. characterMakers.push(() => makeCharacter(
  5575. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5576. {
  5577. front: {
  5578. height: math.unit(5.5, "feet"),
  5579. weight: math.unit(400, "lbs"),
  5580. name: "Front",
  5581. image: {
  5582. source: "./media/characters/kieran/front.svg",
  5583. extra: 2694 / 2364,
  5584. bottom: 217 / 2908
  5585. }
  5586. },
  5587. side: {
  5588. height: math.unit(5.5, "feet"),
  5589. weight: math.unit(400, "lbs"),
  5590. name: "Side",
  5591. image: {
  5592. source: "./media/characters/kieran/side.svg",
  5593. extra: 875 / 777,
  5594. bottom: 84.6 / 959
  5595. }
  5596. },
  5597. },
  5598. [
  5599. {
  5600. name: "Normal",
  5601. height: math.unit(5.5, "feet"),
  5602. default: true
  5603. },
  5604. ]
  5605. ))
  5606. characterMakers.push(() => makeCharacter(
  5607. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5608. {
  5609. side: {
  5610. height: math.unit(2, "meters"),
  5611. weight: math.unit(70, "kg"),
  5612. name: "Side",
  5613. image: {
  5614. source: "./media/characters/sanya/side.svg",
  5615. bottom: 0.02,
  5616. extra: 1.02
  5617. }
  5618. },
  5619. },
  5620. [
  5621. {
  5622. name: "Small",
  5623. height: math.unit(2, "meters")
  5624. },
  5625. {
  5626. name: "Normal",
  5627. height: math.unit(3, "meters")
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(16, "meters"),
  5632. default: true
  5633. },
  5634. ]
  5635. ))
  5636. characterMakers.push(() => makeCharacter(
  5637. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5638. {
  5639. front: {
  5640. height: math.unit(2, "meters"),
  5641. weight: math.unit(120, "kg"),
  5642. name: "Front",
  5643. image: {
  5644. source: "./media/characters/miranda/front.svg",
  5645. extra: 195 / 185,
  5646. bottom: 10.9 / 206.5
  5647. }
  5648. },
  5649. back: {
  5650. height: math.unit(2, "meters"),
  5651. weight: math.unit(120, "kg"),
  5652. name: "Back",
  5653. image: {
  5654. source: "./media/characters/miranda/back.svg",
  5655. extra: 201 / 193,
  5656. bottom: 2.3 / 203.7
  5657. }
  5658. },
  5659. },
  5660. [
  5661. {
  5662. name: "Normal",
  5663. height: math.unit(10, "feet"),
  5664. default: true
  5665. }
  5666. ]
  5667. ))
  5668. characterMakers.push(() => makeCharacter(
  5669. { name: "James", species: ["deer"], tags: ["anthro"] },
  5670. {
  5671. side: {
  5672. height: math.unit(2, "meters"),
  5673. weight: math.unit(100, "kg"),
  5674. name: "Front",
  5675. image: {
  5676. source: "./media/characters/james/front.svg",
  5677. extra: 10 / 8.5
  5678. }
  5679. },
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(8.5, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5691. {
  5692. side: {
  5693. height: math.unit(9.5, "feet"),
  5694. weight: math.unit(2500, "lbs"),
  5695. name: "Side",
  5696. image: {
  5697. source: "./media/characters/heather/side.svg"
  5698. }
  5699. },
  5700. },
  5701. [
  5702. {
  5703. name: "Normal",
  5704. height: math.unit(9.5, "feet"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5711. {
  5712. side: {
  5713. height: math.unit(6.5, "feet"),
  5714. weight: math.unit(400, "lbs"),
  5715. name: "Side",
  5716. image: {
  5717. source: "./media/characters/lukas/side.svg",
  5718. extra: 7.25 / 6.5
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(6.5, "feet"),
  5726. default: true
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5732. {
  5733. side: {
  5734. height: math.unit(5, "feet"),
  5735. weight: math.unit(3000, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/louise/side.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(5, "feet"),
  5746. default: true
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5752. {
  5753. side: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(150, "lbs"),
  5756. name: "Side",
  5757. image: {
  5758. source: "./media/characters/ramona/side.svg",
  5759. extra: 871/854,
  5760. bottom: 41/912
  5761. }
  5762. },
  5763. },
  5764. [
  5765. {
  5766. name: "Normal",
  5767. height: math.unit(6 + 4/12, "feet")
  5768. },
  5769. {
  5770. name: "Minimacro",
  5771. height: math.unit(5.3, "meters"),
  5772. default: true
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(20, "stories")
  5777. },
  5778. {
  5779. name: "Macro+",
  5780. height: math.unit(50, "stories")
  5781. },
  5782. ]
  5783. ))
  5784. characterMakers.push(() => makeCharacter(
  5785. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5786. {
  5787. standing: {
  5788. height: math.unit(5.75, "feet"),
  5789. weight: math.unit(160, "lbs"),
  5790. name: "Standing",
  5791. image: {
  5792. source: "./media/characters/deerpuff/standing.svg",
  5793. extra: 682 / 624
  5794. }
  5795. },
  5796. sitting: {
  5797. height: math.unit(5.75 / 1.79, "feet"),
  5798. weight: math.unit(160, "lbs"),
  5799. name: "Sitting",
  5800. image: {
  5801. source: "./media/characters/deerpuff/sitting.svg",
  5802. bottom: 44 / 400,
  5803. extra: 1
  5804. }
  5805. },
  5806. taurLaying: {
  5807. height: math.unit(6, "feet"),
  5808. weight: math.unit(400, "lbs"),
  5809. name: "Taur (Laying)",
  5810. image: {
  5811. source: "./media/characters/deerpuff/taur-laying.svg"
  5812. }
  5813. },
  5814. },
  5815. [
  5816. {
  5817. name: "Puffball",
  5818. height: math.unit(6, "inches")
  5819. },
  5820. {
  5821. name: "Normalpuff",
  5822. height: math.unit(5.75, "feet")
  5823. },
  5824. {
  5825. name: "Macropuff",
  5826. height: math.unit(1500, "feet"),
  5827. default: true
  5828. },
  5829. {
  5830. name: "Megapuff",
  5831. height: math.unit(500, "miles")
  5832. },
  5833. {
  5834. name: "Gigapuff",
  5835. height: math.unit(250000, "miles")
  5836. },
  5837. {
  5838. name: "Omegapuff",
  5839. height: math.unit(1000, "lightyears")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5845. {
  5846. stomping: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(170, "lbs"),
  5849. name: "Stomping",
  5850. image: {
  5851. source: "./media/characters/vivian/stomping.svg"
  5852. }
  5853. },
  5854. sitting: {
  5855. height: math.unit(6 / 1.75, "feet"),
  5856. weight: math.unit(170, "lbs"),
  5857. name: "Sitting",
  5858. image: {
  5859. source: "./media/characters/vivian/sitting.svg",
  5860. bottom: 1 / 6.4,
  5861. extra: 1,
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Normal",
  5868. height: math.unit(7, "feet"),
  5869. default: true
  5870. },
  5871. {
  5872. name: "Macro",
  5873. height: math.unit(10, "stories")
  5874. },
  5875. {
  5876. name: "Macro+",
  5877. height: math.unit(30, "stories")
  5878. },
  5879. {
  5880. name: "Megamacro",
  5881. height: math.unit(10, "miles")
  5882. },
  5883. {
  5884. name: "Megamacro+",
  5885. height: math.unit(2750000, "meters")
  5886. },
  5887. ]
  5888. ))
  5889. characterMakers.push(() => makeCharacter(
  5890. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5891. {
  5892. front: {
  5893. height: math.unit(6, "feet"),
  5894. weight: math.unit(160, "lbs"),
  5895. name: "Front",
  5896. image: {
  5897. source: "./media/characters/prince/front.svg",
  5898. extra: 3400 / 3000
  5899. }
  5900. },
  5901. jumping: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(160, "lbs"),
  5904. name: "Jumping",
  5905. image: {
  5906. source: "./media/characters/prince/jump.svg",
  5907. extra: 2555 / 2134
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Normal",
  5914. height: math.unit(7.75, "feet"),
  5915. default: true
  5916. },
  5917. {
  5918. name: "Not cute",
  5919. height: math.unit(17, "feet")
  5920. },
  5921. {
  5922. name: "I said NOT",
  5923. height: math.unit(91, "feet")
  5924. },
  5925. {
  5926. name: "Please stop",
  5927. height: math.unit(560, "feet")
  5928. },
  5929. {
  5930. name: "What have you done",
  5931. height: math.unit(2200, "feet")
  5932. },
  5933. {
  5934. name: "Deer God",
  5935. height: math.unit(3.6, "miles")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5941. {
  5942. standing: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(300, "lbs"),
  5945. name: "Standing",
  5946. image: {
  5947. source: "./media/characters/psymon/standing.svg",
  5948. extra: 1888 / 1810,
  5949. bottom: 0.05
  5950. }
  5951. },
  5952. slithering: {
  5953. height: math.unit(6, "feet"),
  5954. weight: math.unit(300, "lbs"),
  5955. name: "Slithering",
  5956. image: {
  5957. source: "./media/characters/psymon/slithering.svg",
  5958. extra: 1330 / 1224
  5959. }
  5960. },
  5961. slitheringAlt: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(300, "lbs"),
  5964. name: "Slithering (Alt)",
  5965. image: {
  5966. source: "./media/characters/psymon/slithering-alt.svg",
  5967. extra: 1330 / 1224
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(11.25, "feet"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Large",
  5979. height: math.unit(27, "feet")
  5980. },
  5981. {
  5982. name: "Giant",
  5983. height: math.unit(87, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(365, "feet")
  5988. },
  5989. {
  5990. name: "Megamacro",
  5991. height: math.unit(3, "miles")
  5992. },
  5993. {
  5994. name: "World Serpent",
  5995. height: math.unit(8000, "miles")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(6, "feet"),
  6004. weight: math.unit(180, "lbs"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/daimos/front.svg",
  6008. extra: 4160 / 3897,
  6009. bottom: 0.021
  6010. }
  6011. }
  6012. },
  6013. [
  6014. {
  6015. name: "Normal",
  6016. height: math.unit(8, "feet"),
  6017. default: true
  6018. },
  6019. {
  6020. name: "Big Dog",
  6021. height: math.unit(22, "feet")
  6022. },
  6023. {
  6024. name: "Macro",
  6025. height: math.unit(127, "feet")
  6026. },
  6027. {
  6028. name: "Megamacro",
  6029. height: math.unit(3600, "feet")
  6030. },
  6031. ]
  6032. ))
  6033. characterMakers.push(() => makeCharacter(
  6034. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6035. {
  6036. side: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Side",
  6040. image: {
  6041. source: "./media/characters/blake/side.svg",
  6042. extra: 1212 / 1120,
  6043. bottom: 0.05
  6044. }
  6045. },
  6046. crouched: {
  6047. height: math.unit(6 * 0.57, "feet"),
  6048. weight: math.unit(180, "lbs"),
  6049. name: "Crouched",
  6050. image: {
  6051. source: "./media/characters/blake/crouched.svg",
  6052. extra: 840 / 587,
  6053. bottom: 0.04
  6054. }
  6055. },
  6056. bent: {
  6057. height: math.unit(6 * 0.75, "feet"),
  6058. weight: math.unit(180, "lbs"),
  6059. name: "Bent",
  6060. image: {
  6061. source: "./media/characters/blake/bent.svg",
  6062. extra: 592 / 544,
  6063. bottom: 0.035
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(8 + 1 / 6, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Big Backside",
  6075. height: math.unit(37, "feet")
  6076. },
  6077. {
  6078. name: "Subway Shredder",
  6079. height: math.unit(72, "feet")
  6080. },
  6081. {
  6082. name: "City Carver",
  6083. height: math.unit(1675, "feet")
  6084. },
  6085. {
  6086. name: "Tectonic Tweaker",
  6087. height: math.unit(2300, "miles")
  6088. },
  6089. ]
  6090. ))
  6091. characterMakers.push(() => makeCharacter(
  6092. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6093. {
  6094. front: {
  6095. height: math.unit(6, "feet"),
  6096. weight: math.unit(180, "lbs"),
  6097. name: "Front",
  6098. image: {
  6099. source: "./media/characters/guisetto/front.svg",
  6100. extra: 856 / 817,
  6101. bottom: 0.06
  6102. }
  6103. },
  6104. airborne: {
  6105. height: math.unit(6, "feet"),
  6106. weight: math.unit(180, "lbs"),
  6107. name: "Airborne",
  6108. image: {
  6109. source: "./media/characters/guisetto/airborne.svg",
  6110. extra: 584 / 525
  6111. }
  6112. },
  6113. },
  6114. [
  6115. {
  6116. name: "Normal",
  6117. height: math.unit(10 + 11 / 12, "feet"),
  6118. default: true
  6119. },
  6120. {
  6121. name: "Large",
  6122. height: math.unit(35, "feet")
  6123. },
  6124. {
  6125. name: "Macro",
  6126. height: math.unit(475, "feet")
  6127. },
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(6, "feet"),
  6135. weight: math.unit(180, "lbs"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/luxor/front.svg",
  6139. extra: 2940 / 2152
  6140. }
  6141. },
  6142. back: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(180, "lbs"),
  6145. name: "Back",
  6146. image: {
  6147. source: "./media/characters/luxor/back.svg",
  6148. extra: 1083 / 960
  6149. }
  6150. },
  6151. },
  6152. [
  6153. {
  6154. name: "Normal",
  6155. height: math.unit(5 + 5 / 6, "feet"),
  6156. default: true
  6157. },
  6158. {
  6159. name: "Lamp",
  6160. height: math.unit(50, "feet")
  6161. },
  6162. {
  6163. name: "Lämp",
  6164. height: math.unit(300, "feet")
  6165. },
  6166. {
  6167. name: "The sun is a lamp",
  6168. height: math.unit(250000, "miles")
  6169. },
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6174. {
  6175. front: {
  6176. height: math.unit(6, "feet"),
  6177. weight: math.unit(50, "lbs"),
  6178. name: "Front",
  6179. image: {
  6180. source: "./media/characters/huoyan/front.svg"
  6181. }
  6182. },
  6183. side: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(180, "lbs"),
  6186. name: "Side",
  6187. image: {
  6188. source: "./media/characters/huoyan/side.svg"
  6189. }
  6190. },
  6191. },
  6192. [
  6193. {
  6194. name: "Chef",
  6195. height: math.unit(9, "feet")
  6196. },
  6197. {
  6198. name: "Normal",
  6199. height: math.unit(65, "feet"),
  6200. default: true
  6201. },
  6202. {
  6203. name: "Macro",
  6204. height: math.unit(780, "feet")
  6205. },
  6206. {
  6207. name: "Flaming Mountain",
  6208. height: math.unit(4.8, "miles")
  6209. },
  6210. {
  6211. name: "Celestial",
  6212. height: math.unit(765000, "miles")
  6213. },
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(5 + 3 / 4, "feet"),
  6221. weight: math.unit(120, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/tails/front.svg"
  6225. }
  6226. }
  6227. },
  6228. [
  6229. {
  6230. name: "Normal",
  6231. height: math.unit(5 + 3 / 4, "feet"),
  6232. default: true
  6233. }
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(4, "feet"),
  6241. weight: math.unit(50, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/rainy/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Macro",
  6251. height: math.unit(800, "feet"),
  6252. default: true
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(6, "feet"),
  6261. weight: math.unit(150, "lbs"),
  6262. name: "Front",
  6263. image: {
  6264. source: "./media/characters/rainier/front.svg"
  6265. }
  6266. }
  6267. },
  6268. [
  6269. {
  6270. name: "Micro",
  6271. height: math.unit(2, "mm"),
  6272. default: true
  6273. }
  6274. ]
  6275. ))
  6276. characterMakers.push(() => makeCharacter(
  6277. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6278. {
  6279. front: {
  6280. height: math.unit(8 + 4/12, "feet"),
  6281. weight: math.unit(450, "kilograms"),
  6282. volume: math.unit(5, "cups"),
  6283. name: "Front",
  6284. image: {
  6285. source: "./media/characters/andy-renard/front.svg",
  6286. extra: 1839/1726,
  6287. bottom: 134/1973
  6288. }
  6289. },
  6290. back: {
  6291. height: math.unit(8 + 4/12, "feet"),
  6292. weight: math.unit(450, "kilograms"),
  6293. volume: math.unit(5, "cups"),
  6294. name: "Back",
  6295. image: {
  6296. source: "./media/characters/andy-renard/back.svg",
  6297. extra: 1838/1710,
  6298. bottom: 105/1943
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Tall",
  6305. height: math.unit(8 + 4/12, "feet")
  6306. },
  6307. {
  6308. name: "Mini Macro",
  6309. height: math.unit(15, "feet"),
  6310. default: true
  6311. },
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(100, "feet")
  6315. },
  6316. {
  6317. name: "Mega Macro",
  6318. height: math.unit(1000, "feet")
  6319. },
  6320. {
  6321. name: "Giga Macro",
  6322. height: math.unit(10, "miles")
  6323. },
  6324. {
  6325. name: "God Macro",
  6326. height: math.unit(1, "multiverse")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(210, "lbs"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/cimmaron/front-sfw.svg",
  6339. extra: 701 / 676,
  6340. bottom: 0.046
  6341. }
  6342. },
  6343. back: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(210, "lbs"),
  6346. name: "Back",
  6347. image: {
  6348. source: "./media/characters/cimmaron/back-sfw.svg",
  6349. extra: 701 / 676,
  6350. bottom: 0.046
  6351. }
  6352. },
  6353. frontNsfw: {
  6354. height: math.unit(6, "feet"),
  6355. weight: math.unit(210, "lbs"),
  6356. name: "Front (NSFW)",
  6357. image: {
  6358. source: "./media/characters/cimmaron/front-nsfw.svg",
  6359. extra: 701 / 676,
  6360. bottom: 0.046
  6361. }
  6362. },
  6363. backNsfw: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(210, "lbs"),
  6366. name: "Back (NSFW)",
  6367. image: {
  6368. source: "./media/characters/cimmaron/back-nsfw.svg",
  6369. extra: 701 / 676,
  6370. bottom: 0.046
  6371. }
  6372. },
  6373. dick: {
  6374. height: math.unit(1.714, "feet"),
  6375. name: "Dick",
  6376. image: {
  6377. source: "./media/characters/cimmaron/dick.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Normal",
  6384. height: math.unit(6, "feet"),
  6385. default: true
  6386. },
  6387. {
  6388. name: "Macro Mayor",
  6389. height: math.unit(350, "meters")
  6390. },
  6391. ]
  6392. ))
  6393. characterMakers.push(() => makeCharacter(
  6394. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6395. {
  6396. front: {
  6397. height: math.unit(6, "feet"),
  6398. weight: math.unit(200, "lbs"),
  6399. name: "Front",
  6400. image: {
  6401. source: "./media/characters/akari/front.svg",
  6402. extra: 962 / 901,
  6403. bottom: 0.04
  6404. }
  6405. }
  6406. },
  6407. [
  6408. {
  6409. name: "Micro",
  6410. height: math.unit(5, "inches"),
  6411. default: true
  6412. },
  6413. {
  6414. name: "Normal",
  6415. height: math.unit(7, "feet")
  6416. },
  6417. ]
  6418. ))
  6419. characterMakers.push(() => makeCharacter(
  6420. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6421. {
  6422. front: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(140, "lbs"),
  6425. name: "Front",
  6426. image: {
  6427. source: "./media/characters/cynosura/front.svg",
  6428. extra: 896 / 847
  6429. }
  6430. },
  6431. back: {
  6432. height: math.unit(6, "feet"),
  6433. weight: math.unit(140, "lbs"),
  6434. name: "Back",
  6435. image: {
  6436. source: "./media/characters/cynosura/back.svg",
  6437. extra: 1365 / 1250
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Micro",
  6444. height: math.unit(4, "inches")
  6445. },
  6446. {
  6447. name: "Normal",
  6448. height: math.unit(5.75, "feet"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Tall",
  6453. height: math.unit(10, "feet")
  6454. },
  6455. {
  6456. name: "Big",
  6457. height: math.unit(20, "feet")
  6458. },
  6459. {
  6460. name: "Macro",
  6461. height: math.unit(50, "feet")
  6462. },
  6463. ]
  6464. ))
  6465. characterMakers.push(() => makeCharacter(
  6466. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6467. {
  6468. front: {
  6469. height: math.unit(13 + 2/12, "feet"),
  6470. weight: math.unit(800, "kg"),
  6471. name: "Front",
  6472. image: {
  6473. source: "./media/characters/gin/front.svg",
  6474. extra: 1312/1191,
  6475. bottom: 45/1357
  6476. }
  6477. },
  6478. mouth: {
  6479. height: math.unit(2.39 * 1.8, "feet"),
  6480. name: "Mouth",
  6481. image: {
  6482. source: "./media/characters/gin/mouth.svg"
  6483. }
  6484. },
  6485. hand: {
  6486. height: math.unit(1.57 * 2.19, "feet"),
  6487. name: "Hand",
  6488. image: {
  6489. source: "./media/characters/gin/hand.svg"
  6490. }
  6491. },
  6492. foot: {
  6493. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6494. name: "Foot",
  6495. image: {
  6496. source: "./media/characters/gin/foot.svg"
  6497. }
  6498. },
  6499. sole: {
  6500. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6501. name: "Sole",
  6502. image: {
  6503. source: "./media/characters/gin/sole.svg"
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Very Small",
  6510. height: math.unit(13 + 2 / 12, "feet")
  6511. },
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(600, "miles")
  6515. },
  6516. {
  6517. name: "Regular",
  6518. height: math.unit(20, "earths"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Macro",
  6523. height: math.unit(2.2, "solarradii")
  6524. },
  6525. {
  6526. name: "Teramacro",
  6527. height: math.unit(1.2, "galaxies")
  6528. },
  6529. {
  6530. name: "Omegamacro",
  6531. height: math.unit(200, "universes")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(6 + 1 / 6, "feet"),
  6540. weight: math.unit(178, "lbs"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/guy/front.svg"
  6544. }
  6545. }
  6546. },
  6547. [
  6548. {
  6549. name: "Normal",
  6550. height: math.unit(6 + 1 / 6, "feet"),
  6551. default: true
  6552. },
  6553. {
  6554. name: "Large",
  6555. height: math.unit(25 + 7 / 12, "feet")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(60 + 9 / 12, "feet")
  6560. },
  6561. {
  6562. name: "Macro+",
  6563. height: math.unit(246, "feet")
  6564. },
  6565. {
  6566. name: "Macro++",
  6567. height: math.unit(878, "feet")
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6573. {
  6574. front: {
  6575. height: math.unit(9, "feet"),
  6576. weight: math.unit(800, "lbs"),
  6577. name: "Front",
  6578. image: {
  6579. source: "./media/characters/tiberius/front.svg",
  6580. extra: 2295 / 2071
  6581. }
  6582. },
  6583. back: {
  6584. height: math.unit(9, "feet"),
  6585. weight: math.unit(800, "lbs"),
  6586. name: "Back",
  6587. image: {
  6588. source: "./media/characters/tiberius/back.svg",
  6589. extra: 2373 / 2160
  6590. }
  6591. },
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(9, "feet"),
  6597. default: true
  6598. }
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6603. {
  6604. front: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(600, "lbs"),
  6607. name: "Front",
  6608. image: {
  6609. source: "./media/characters/surgo/front.svg",
  6610. extra: 3591 / 2227
  6611. }
  6612. },
  6613. back: {
  6614. height: math.unit(6, "feet"),
  6615. weight: math.unit(600, "lbs"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/surgo/back.svg",
  6619. extra: 3557 / 2228
  6620. }
  6621. },
  6622. laying: {
  6623. height: math.unit(6 * 0.85, "feet"),
  6624. weight: math.unit(600, "lbs"),
  6625. name: "Laying",
  6626. image: {
  6627. source: "./media/characters/surgo/laying.svg"
  6628. }
  6629. },
  6630. },
  6631. [
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(6, "feet"),
  6635. default: true
  6636. }
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6641. {
  6642. side: {
  6643. height: math.unit(6, "feet"),
  6644. weight: math.unit(150, "lbs"),
  6645. name: "Side",
  6646. image: {
  6647. source: "./media/characters/cibus/side.svg",
  6648. extra: 800 / 400
  6649. }
  6650. },
  6651. },
  6652. [
  6653. {
  6654. name: "Normal",
  6655. height: math.unit(6, "feet"),
  6656. default: true
  6657. }
  6658. ]
  6659. ))
  6660. characterMakers.push(() => makeCharacter(
  6661. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6662. {
  6663. front: {
  6664. height: math.unit(6, "feet"),
  6665. weight: math.unit(240, "lbs"),
  6666. name: "Front",
  6667. image: {
  6668. source: "./media/characters/nibbles/front.svg"
  6669. }
  6670. },
  6671. side: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(240, "lbs"),
  6674. name: "Side",
  6675. image: {
  6676. source: "./media/characters/nibbles/side.svg"
  6677. }
  6678. },
  6679. },
  6680. [
  6681. {
  6682. name: "Normal",
  6683. height: math.unit(9, "feet"),
  6684. default: true
  6685. }
  6686. ]
  6687. ))
  6688. characterMakers.push(() => makeCharacter(
  6689. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6690. {
  6691. side: {
  6692. height: math.unit(5 + 1 / 6, "feet"),
  6693. weight: math.unit(130, "lbs"),
  6694. name: "Side",
  6695. image: {
  6696. source: "./media/characters/rikky/side.svg",
  6697. extra: 851 / 801
  6698. }
  6699. },
  6700. },
  6701. [
  6702. {
  6703. name: "Normal",
  6704. height: math.unit(5 + 1 / 6, "feet")
  6705. },
  6706. {
  6707. name: "Macro",
  6708. height: math.unit(152, "feet"),
  6709. default: true
  6710. },
  6711. {
  6712. name: "Megamacro",
  6713. height: math.unit(7, "miles")
  6714. }
  6715. ]
  6716. ))
  6717. characterMakers.push(() => makeCharacter(
  6718. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6719. {
  6720. side: {
  6721. height: math.unit(370, "cm"),
  6722. weight: math.unit(350, "lbs"),
  6723. name: "Side",
  6724. image: {
  6725. source: "./media/characters/malfressa/side.svg"
  6726. }
  6727. },
  6728. walking: {
  6729. height: math.unit(370, "cm"),
  6730. weight: math.unit(350, "lbs"),
  6731. name: "Walking",
  6732. image: {
  6733. source: "./media/characters/malfressa/walking.svg"
  6734. }
  6735. },
  6736. feral: {
  6737. height: math.unit(2500, "cm"),
  6738. weight: math.unit(100000, "lbs"),
  6739. name: "Feral",
  6740. image: {
  6741. source: "./media/characters/malfressa/feral.svg",
  6742. extra: 2108 / 837,
  6743. bottom: 0.02
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Normal",
  6750. height: math.unit(370, "cm")
  6751. },
  6752. {
  6753. name: "Macro",
  6754. height: math.unit(300, "meters"),
  6755. default: true
  6756. }
  6757. ]
  6758. ))
  6759. characterMakers.push(() => makeCharacter(
  6760. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6761. {
  6762. front: {
  6763. height: math.unit(6, "feet"),
  6764. weight: math.unit(60, "kg"),
  6765. name: "Front",
  6766. image: {
  6767. source: "./media/characters/jaro/front.svg",
  6768. extra: 845/817,
  6769. bottom: 45/890
  6770. }
  6771. },
  6772. back: {
  6773. height: math.unit(6, "feet"),
  6774. weight: math.unit(60, "kg"),
  6775. name: "Back",
  6776. image: {
  6777. source: "./media/characters/jaro/back.svg",
  6778. extra: 847/817,
  6779. bottom: 34/881
  6780. }
  6781. },
  6782. },
  6783. [
  6784. {
  6785. name: "Micro",
  6786. height: math.unit(7, "inches")
  6787. },
  6788. {
  6789. name: "Normal",
  6790. height: math.unit(5.5, "feet"),
  6791. default: true
  6792. },
  6793. {
  6794. name: "Minimacro",
  6795. height: math.unit(20, "feet")
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(200, "meters")
  6800. }
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6805. {
  6806. front: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(195, "lb"),
  6809. name: "Front",
  6810. image: {
  6811. source: "./media/characters/rogue/front.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(90, "feet"),
  6819. default: true
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6825. {
  6826. standing: {
  6827. height: math.unit(5 + 8 / 12, "feet"),
  6828. weight: math.unit(140, "lb"),
  6829. name: "Standing",
  6830. image: {
  6831. source: "./media/characters/piper/standing.svg",
  6832. extra: 1440/1284,
  6833. bottom: 66/1506
  6834. }
  6835. },
  6836. running: {
  6837. height: math.unit(5 + 8 / 12, "feet"),
  6838. weight: math.unit(140, "lb"),
  6839. name: "Running",
  6840. image: {
  6841. source: "./media/characters/piper/running.svg",
  6842. extra: 3948/3655,
  6843. bottom: 0/3948
  6844. }
  6845. },
  6846. sole: {
  6847. height: math.unit(0.81, "feet"),
  6848. weight: math.unit(2, "kg"),
  6849. name: "Sole",
  6850. image: {
  6851. source: "./media/characters/piper/sole.svg"
  6852. }
  6853. },
  6854. nipple: {
  6855. height: math.unit(0.25, "feet"),
  6856. weight: math.unit(1.5, "lb"),
  6857. name: "Nipple",
  6858. image: {
  6859. source: "./media/characters/piper/nipple.svg"
  6860. }
  6861. },
  6862. head: {
  6863. height: math.unit(1.1, "feet"),
  6864. name: "Head",
  6865. image: {
  6866. source: "./media/characters/piper/head.svg"
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Micro",
  6873. height: math.unit(2, "inches")
  6874. },
  6875. {
  6876. name: "Normal",
  6877. height: math.unit(5 + 8 / 12, "feet")
  6878. },
  6879. {
  6880. name: "Macro",
  6881. height: math.unit(250, "feet"),
  6882. default: true
  6883. },
  6884. {
  6885. name: "Megamacro",
  6886. height: math.unit(7, "miles")
  6887. },
  6888. ]
  6889. ))
  6890. characterMakers.push(() => makeCharacter(
  6891. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6892. {
  6893. front: {
  6894. height: math.unit(6, "feet"),
  6895. weight: math.unit(220, "lb"),
  6896. name: "Front",
  6897. image: {
  6898. source: "./media/characters/gemini/front.svg"
  6899. }
  6900. },
  6901. back: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(220, "lb"),
  6904. name: "Back",
  6905. image: {
  6906. source: "./media/characters/gemini/back.svg"
  6907. }
  6908. },
  6909. kneeling: {
  6910. height: math.unit(6 / 1.5, "feet"),
  6911. weight: math.unit(220, "lb"),
  6912. name: "Kneeling",
  6913. image: {
  6914. source: "./media/characters/gemini/kneeling.svg",
  6915. bottom: 0.02
  6916. }
  6917. },
  6918. },
  6919. [
  6920. {
  6921. name: "Macro",
  6922. height: math.unit(300, "meters"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Megamacro",
  6927. height: math.unit(6900, "meters")
  6928. },
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6933. {
  6934. anthro: {
  6935. height: math.unit(2.35, "meters"),
  6936. weight: math.unit(73, "kg"),
  6937. name: "Anthro",
  6938. image: {
  6939. source: "./media/characters/alicia/anthro.svg",
  6940. extra: 2571 / 2385,
  6941. bottom: 75 / 2648
  6942. }
  6943. },
  6944. paw: {
  6945. height: math.unit(1.32, "feet"),
  6946. name: "Paw",
  6947. image: {
  6948. source: "./media/characters/alicia/paw.svg"
  6949. }
  6950. },
  6951. feral: {
  6952. height: math.unit(1.69, "meters"),
  6953. weight: math.unit(73, "kg"),
  6954. name: "Feral",
  6955. image: {
  6956. source: "./media/characters/alicia/feral.svg",
  6957. extra: 2123 / 1715,
  6958. bottom: 222 / 2349
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(2.35, "meters")
  6966. },
  6967. {
  6968. name: "Macro",
  6969. height: math.unit(60, "meters"),
  6970. default: true
  6971. },
  6972. {
  6973. name: "Megamacro",
  6974. height: math.unit(10000, "kilometers")
  6975. },
  6976. ]
  6977. ))
  6978. characterMakers.push(() => makeCharacter(
  6979. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6980. {
  6981. front: {
  6982. height: math.unit(7, "feet"),
  6983. weight: math.unit(250, "lbs"),
  6984. name: "Front",
  6985. image: {
  6986. source: "./media/characters/archy/front.svg"
  6987. }
  6988. }
  6989. },
  6990. [
  6991. {
  6992. name: "Micro",
  6993. height: math.unit(1, "inch")
  6994. },
  6995. {
  6996. name: "Shorty",
  6997. height: math.unit(5, "feet")
  6998. },
  6999. {
  7000. name: "Normal",
  7001. height: math.unit(7, "feet")
  7002. },
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(600, "meters"),
  7006. default: true
  7007. },
  7008. {
  7009. name: "Megamacro",
  7010. height: math.unit(1, "mile")
  7011. },
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(1.65, "meters"),
  7019. weight: math.unit(74, "kg"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/berri/front.svg",
  7023. extra: 857 / 837,
  7024. bottom: 18 / 877
  7025. }
  7026. },
  7027. bum: {
  7028. height: math.unit(1.46, "feet"),
  7029. name: "Bum",
  7030. image: {
  7031. source: "./media/characters/berri/bum.svg"
  7032. }
  7033. },
  7034. mouth: {
  7035. height: math.unit(0.44, "feet"),
  7036. name: "Mouth",
  7037. image: {
  7038. source: "./media/characters/berri/mouth.svg"
  7039. }
  7040. },
  7041. paw: {
  7042. height: math.unit(0.826, "feet"),
  7043. name: "Paw",
  7044. image: {
  7045. source: "./media/characters/berri/paw.svg"
  7046. }
  7047. },
  7048. },
  7049. [
  7050. {
  7051. name: "Normal",
  7052. height: math.unit(1.65, "meters")
  7053. },
  7054. {
  7055. name: "Macro",
  7056. height: math.unit(60, "m"),
  7057. default: true
  7058. },
  7059. {
  7060. name: "Megamacro",
  7061. height: math.unit(9.213, "km")
  7062. },
  7063. {
  7064. name: "Planet Eater",
  7065. height: math.unit(489, "megameters")
  7066. },
  7067. {
  7068. name: "Teramacro",
  7069. height: math.unit(2471635000000, "meters")
  7070. },
  7071. {
  7072. name: "Examacro",
  7073. height: math.unit(8.0624e+26, "meters")
  7074. }
  7075. ]
  7076. ))
  7077. characterMakers.push(() => makeCharacter(
  7078. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7079. {
  7080. front: {
  7081. height: math.unit(1.72, "meters"),
  7082. weight: math.unit(68, "kg"),
  7083. name: "Front",
  7084. image: {
  7085. source: "./media/characters/lexi/front.svg"
  7086. }
  7087. }
  7088. },
  7089. [
  7090. {
  7091. name: "Very Smol",
  7092. height: math.unit(10, "mm")
  7093. },
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(6.8, "cm"),
  7097. default: true
  7098. },
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(1.72, "m")
  7102. }
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(1.69, "meters"),
  7110. weight: math.unit(68, "kg"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/martin/front.svg",
  7114. extra: 596 / 581
  7115. }
  7116. }
  7117. },
  7118. [
  7119. {
  7120. name: "Micro",
  7121. height: math.unit(6.85, "cm"),
  7122. default: true
  7123. },
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(1.69, "m")
  7127. }
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7132. {
  7133. front: {
  7134. height: math.unit(1.69, "meters"),
  7135. weight: math.unit(68, "kg"),
  7136. name: "Front",
  7137. image: {
  7138. source: "./media/characters/juno/front.svg"
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Micro",
  7145. height: math.unit(7, "cm")
  7146. },
  7147. {
  7148. name: "Normal",
  7149. height: math.unit(1.89, "m")
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(353, "meters"),
  7154. default: true
  7155. }
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(1.93, "meters"),
  7163. weight: math.unit(83, "kg"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/samantha/front.svg"
  7167. }
  7168. },
  7169. frontClothed: {
  7170. height: math.unit(1.93, "meters"),
  7171. weight: math.unit(83, "kg"),
  7172. name: "Front (Clothed)",
  7173. image: {
  7174. source: "./media/characters/samantha/front-clothed.svg"
  7175. }
  7176. },
  7177. back: {
  7178. height: math.unit(1.93, "meters"),
  7179. weight: math.unit(83, "kg"),
  7180. name: "Back",
  7181. image: {
  7182. source: "./media/characters/samantha/back.svg"
  7183. }
  7184. },
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(1.93, "m")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(74, "meters"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Macro+",
  7198. height: math.unit(223, "meters"),
  7199. },
  7200. {
  7201. name: "Megamacro",
  7202. height: math.unit(8381, "meters"),
  7203. },
  7204. {
  7205. name: "Megamacro+",
  7206. height: math.unit(12000, "kilometers")
  7207. },
  7208. ]
  7209. ))
  7210. characterMakers.push(() => makeCharacter(
  7211. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7212. {
  7213. front: {
  7214. height: math.unit(1.92, "meters"),
  7215. weight: math.unit(80, "kg"),
  7216. name: "Front",
  7217. image: {
  7218. source: "./media/characters/dr-clay/front.svg"
  7219. }
  7220. },
  7221. frontClothed: {
  7222. height: math.unit(1.92, "meters"),
  7223. weight: math.unit(80, "kg"),
  7224. name: "Front (Clothed)",
  7225. image: {
  7226. source: "./media/characters/dr-clay/front-clothed.svg"
  7227. }
  7228. }
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(1.92, "m")
  7234. },
  7235. {
  7236. name: "Macro",
  7237. height: math.unit(214, "meters"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro+",
  7242. height: math.unit(12.237, "meters"),
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(557, "megameters"),
  7247. },
  7248. {
  7249. name: "Unimaginable",
  7250. height: math.unit(120e9, "lightyears")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(2, "meters"),
  7259. weight: math.unit(80, "kg"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Teramacro",
  7269. height: math.unit(500000, "lightyears"),
  7270. default: true
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7276. {
  7277. crux: {
  7278. height: math.unit(2, "meters"),
  7279. weight: math.unit(150, "kg"),
  7280. name: "Crux",
  7281. image: {
  7282. source: "./media/characters/vemus/crux.svg",
  7283. extra: 1074/936,
  7284. bottom: 23/1097
  7285. }
  7286. },
  7287. skunkTanuki: {
  7288. height: math.unit(2, "meters"),
  7289. weight: math.unit(150, "kg"),
  7290. name: "Skunk-Tanuki",
  7291. image: {
  7292. source: "./media/characters/vemus/skunk-tanuki.svg",
  7293. extra: 926/893,
  7294. bottom: 20/946
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Normal",
  7301. height: math.unit(4, "meters"),
  7302. default: true
  7303. },
  7304. {
  7305. name: "Big",
  7306. height: math.unit(8, "meters")
  7307. },
  7308. {
  7309. name: "Macro",
  7310. height: math.unit(100, "meters")
  7311. },
  7312. {
  7313. name: "Macro+",
  7314. height: math.unit(1500, "meters")
  7315. },
  7316. {
  7317. name: "Stellar",
  7318. height: math.unit(14e8, "meters")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(2, "meters"),
  7327. weight: math.unit(70, "kg"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/beherit/front.svg",
  7331. extra: 1234/1109,
  7332. bottom: 55/1289
  7333. }
  7334. }
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(6, "feet")
  7340. },
  7341. {
  7342. name: "Lorg",
  7343. height: math.unit(25, "feet"),
  7344. default: true
  7345. },
  7346. {
  7347. name: "Lorger",
  7348. height: math.unit(75, "feet")
  7349. },
  7350. {
  7351. name: "Macro",
  7352. height: math.unit(200, "meters")
  7353. },
  7354. ]
  7355. ))
  7356. characterMakers.push(() => makeCharacter(
  7357. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7358. {
  7359. front: {
  7360. height: math.unit(2, "meters"),
  7361. weight: math.unit(150, "kg"),
  7362. name: "Front",
  7363. image: {
  7364. source: "./media/characters/everett/front.svg",
  7365. extra: 1017/866,
  7366. bottom: 86/1103
  7367. }
  7368. },
  7369. paw: {
  7370. height: math.unit(2 / 3.6, "meters"),
  7371. name: "Paw",
  7372. image: {
  7373. source: "./media/characters/everett/paw.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(15, "feet"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Lorg",
  7385. height: math.unit(70, "feet"),
  7386. default: true
  7387. },
  7388. {
  7389. name: "Lorger",
  7390. height: math.unit(250, "feet")
  7391. },
  7392. {
  7393. name: "Macro",
  7394. height: math.unit(500, "meters")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(2, "meters"),
  7403. weight: math.unit(86, "kg"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/rose/front.svg",
  7407. extra: 1785/1636,
  7408. bottom: 30/1815
  7409. },
  7410. form: "liom",
  7411. default: true
  7412. },
  7413. frontSporty: {
  7414. height: math.unit(2, "meters"),
  7415. weight: math.unit(86, "kg"),
  7416. name: "Front (Sporty)",
  7417. image: {
  7418. source: "./media/characters/rose/front-sporty.svg",
  7419. extra: 350/335,
  7420. bottom: 10/360
  7421. },
  7422. form: "liom"
  7423. },
  7424. frontAlt: {
  7425. height: math.unit(1.6, "meters"),
  7426. weight: math.unit(86, "kg"),
  7427. name: "Front (Alt)",
  7428. image: {
  7429. source: "./media/characters/rose/front-alt.svg",
  7430. extra: 299/283,
  7431. bottom: 3/302
  7432. },
  7433. form: "liom"
  7434. },
  7435. plush: {
  7436. height: math.unit(2, "meters"),
  7437. weight: math.unit(86/3, "kg"),
  7438. name: "Plush",
  7439. image: {
  7440. source: "./media/characters/rose/plush.svg",
  7441. extra: 361/337,
  7442. bottom: 11/372
  7443. },
  7444. form: "plush",
  7445. default: true
  7446. },
  7447. faeStanding: {
  7448. height: math.unit(10, "cm"),
  7449. weight: math.unit(10, "grams"),
  7450. name: "Standing",
  7451. image: {
  7452. source: "./media/characters/rose/fae-standing.svg",
  7453. extra: 1189/1060,
  7454. bottom: 27/1216
  7455. },
  7456. form: "fae",
  7457. default: true
  7458. },
  7459. faeSitting: {
  7460. height: math.unit(5, "cm"),
  7461. weight: math.unit(10, "grams"),
  7462. name: "Sitting",
  7463. image: {
  7464. source: "./media/characters/rose/fae-sitting.svg",
  7465. extra: 737/577,
  7466. bottom: 356/1093
  7467. },
  7468. form: "fae"
  7469. },
  7470. faePaw: {
  7471. height: math.unit(1.35, "cm"),
  7472. name: "Paw",
  7473. image: {
  7474. source: "./media/characters/rose/fae-paw.svg"
  7475. },
  7476. form: "fae"
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "True Micro",
  7482. height: math.unit(9, "cm"),
  7483. form: "liom"
  7484. },
  7485. {
  7486. name: "Micro",
  7487. height: math.unit(16, "cm"),
  7488. form: "liom"
  7489. },
  7490. {
  7491. name: "Normal",
  7492. height: math.unit(1.85, "meters"),
  7493. default: true,
  7494. form: "liom"
  7495. },
  7496. {
  7497. name: "Mini-Macro",
  7498. height: math.unit(5, "meters"),
  7499. form: "liom"
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(15, "meters"),
  7504. form: "liom"
  7505. },
  7506. {
  7507. name: "True Macro",
  7508. height: math.unit(40, "meters"),
  7509. form: "liom"
  7510. },
  7511. {
  7512. name: "City Scale",
  7513. height: math.unit(1, "km"),
  7514. form: "liom"
  7515. },
  7516. {
  7517. name: "Plushie",
  7518. height: math.unit(9, "cm"),
  7519. form: "plush",
  7520. default: true
  7521. },
  7522. {
  7523. name: "Fae",
  7524. height: math.unit(10, "cm"),
  7525. form: "fae",
  7526. default: true
  7527. },
  7528. ],
  7529. {
  7530. "liom": {
  7531. name: "Liom"
  7532. },
  7533. "plush": {
  7534. name: "Plush"
  7535. },
  7536. "fae": {
  7537. name: "Fae Fox",
  7538. default: true
  7539. }
  7540. }
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7544. {
  7545. front: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(350, "lbs"),
  7548. name: "Front",
  7549. image: {
  7550. source: "./media/characters/regal/front.svg"
  7551. }
  7552. },
  7553. back: {
  7554. height: math.unit(2, "meters"),
  7555. weight: math.unit(350, "lbs"),
  7556. name: "Back",
  7557. image: {
  7558. source: "./media/characters/regal/back.svg"
  7559. }
  7560. },
  7561. },
  7562. [
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(350, "feet"),
  7566. default: true
  7567. }
  7568. ]
  7569. ))
  7570. characterMakers.push(() => makeCharacter(
  7571. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7572. {
  7573. front: {
  7574. height: math.unit(4 + 11 / 12, "feet"),
  7575. weight: math.unit(100, "lbs"),
  7576. name: "Front",
  7577. image: {
  7578. source: "./media/characters/opal/front.svg"
  7579. }
  7580. },
  7581. frontAlt: {
  7582. height: math.unit(4 + 11 / 12, "feet"),
  7583. weight: math.unit(100, "lbs"),
  7584. name: "Front (Alt)",
  7585. image: {
  7586. source: "./media/characters/opal/front-alt.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Small",
  7593. height: math.unit(4 + 11 / 12, "feet")
  7594. },
  7595. {
  7596. name: "Normal",
  7597. height: math.unit(20, "feet"),
  7598. default: true
  7599. },
  7600. {
  7601. name: "Macro",
  7602. height: math.unit(120, "feet")
  7603. },
  7604. {
  7605. name: "Megamacro",
  7606. height: math.unit(80, "miles")
  7607. },
  7608. {
  7609. name: "True Size",
  7610. height: math.unit(100000, "lightyears")
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(6, "feet"),
  7619. weight: math.unit(200, "lbs"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/vector-wuff/front.svg"
  7623. }
  7624. }
  7625. },
  7626. [
  7627. {
  7628. name: "Normal",
  7629. height: math.unit(2.8, "meters")
  7630. },
  7631. {
  7632. name: "Macro",
  7633. height: math.unit(450, "meters"),
  7634. default: true
  7635. },
  7636. {
  7637. name: "Megamacro",
  7638. height: math.unit(15, "kilometers")
  7639. }
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(256, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/dannik/front.svg"
  7651. }
  7652. }
  7653. },
  7654. [
  7655. {
  7656. name: "Macro",
  7657. height: math.unit(69.57, "meters"),
  7658. default: true
  7659. },
  7660. ]
  7661. ))
  7662. characterMakers.push(() => makeCharacter(
  7663. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7664. {
  7665. front: {
  7666. height: math.unit(6, "feet"),
  7667. weight: math.unit(120, "lbs"),
  7668. name: "Front",
  7669. image: {
  7670. source: "./media/characters/azura-saharah/front.svg"
  7671. }
  7672. },
  7673. back: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(120, "lbs"),
  7676. name: "Back",
  7677. image: {
  7678. source: "./media/characters/azura-saharah/back.svg"
  7679. }
  7680. },
  7681. },
  7682. [
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(100, "feet"),
  7686. default: true
  7687. },
  7688. ]
  7689. ))
  7690. characterMakers.push(() => makeCharacter(
  7691. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7692. {
  7693. side: {
  7694. height: math.unit(5 + 4 / 12, "feet"),
  7695. weight: math.unit(163, "lbs"),
  7696. name: "Side",
  7697. image: {
  7698. source: "./media/characters/kennedy/side.svg"
  7699. }
  7700. }
  7701. },
  7702. [
  7703. {
  7704. name: "Standard Doggo",
  7705. height: math.unit(5 + 4 / 12, "feet")
  7706. },
  7707. {
  7708. name: "Big Doggo",
  7709. height: math.unit(25 + 3 / 12, "feet"),
  7710. default: true
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(5 + 5/12, "feet"),
  7719. weight: math.unit(100, "lbs"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/odios-de-lunar/front.svg",
  7723. extra: 1468/1323,
  7724. bottom: 22/1490
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Micro",
  7731. height: math.unit(3, "inches")
  7732. },
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(5.5, "feet"),
  7736. default: true
  7737. },
  7738. {
  7739. name: "Macro",
  7740. height: math.unit(100, "feet")
  7741. },
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7746. {
  7747. back: {
  7748. height: math.unit(6, "feet"),
  7749. weight: math.unit(220, "lbs"),
  7750. name: "Back",
  7751. image: {
  7752. source: "./media/characters/mandake/back.svg"
  7753. }
  7754. }
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(7, "feet"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Macro",
  7764. height: math.unit(78, "feet")
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(300, "meters")
  7769. },
  7770. {
  7771. name: "Macro++",
  7772. height: math.unit(2400, "feet")
  7773. },
  7774. {
  7775. name: "Megamacro",
  7776. height: math.unit(5167, "meters")
  7777. },
  7778. {
  7779. name: "Gigamacro",
  7780. height: math.unit(41769, "miles")
  7781. },
  7782. ]
  7783. ))
  7784. characterMakers.push(() => makeCharacter(
  7785. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7786. {
  7787. front: {
  7788. height: math.unit(6, "feet"),
  7789. weight: math.unit(120, "lbs"),
  7790. name: "Front",
  7791. image: {
  7792. source: "./media/characters/yozey/front.svg"
  7793. }
  7794. },
  7795. frontAlt: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(120, "lbs"),
  7798. name: "Front (Alt)",
  7799. image: {
  7800. source: "./media/characters/yozey/front-alt.svg"
  7801. }
  7802. },
  7803. side: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(120, "lbs"),
  7806. name: "Side",
  7807. image: {
  7808. source: "./media/characters/yozey/side.svg"
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(3, "inches"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(6, "feet")
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(103, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/valeska-voss/front.svg"
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Mini-Sized Sub",
  7839. height: math.unit(3.1, "inches")
  7840. },
  7841. {
  7842. name: "Mid-Sized Sub",
  7843. height: math.unit(6.2, "inches")
  7844. },
  7845. {
  7846. name: "Full-Sized Sub",
  7847. height: math.unit(9.3, "inches")
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(5 + 2 / 12, "foot"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(160, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/gene-zeta/front.svg",
  7865. extra: 3006 / 2826,
  7866. bottom: 182 / 3188
  7867. }
  7868. }
  7869. },
  7870. [
  7871. {
  7872. name: "Micro",
  7873. height: math.unit(6, "inches")
  7874. },
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(5 + 11 / 12, "foot"),
  7878. default: true
  7879. },
  7880. {
  7881. name: "Macro",
  7882. height: math.unit(140, "feet")
  7883. },
  7884. {
  7885. name: "Supercharged",
  7886. height: math.unit(2500, "feet")
  7887. },
  7888. ]
  7889. ))
  7890. characterMakers.push(() => makeCharacter(
  7891. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7892. {
  7893. front: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(350, "lbs"),
  7896. name: "Front",
  7897. image: {
  7898. source: "./media/characters/razinox/front.svg",
  7899. extra: 1686 / 1548,
  7900. bottom: 28.2 / 1868
  7901. }
  7902. },
  7903. back: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(350, "lbs"),
  7906. name: "Back",
  7907. image: {
  7908. source: "./media/characters/razinox/back.svg",
  7909. extra: 1660 / 1590,
  7910. bottom: 15 / 1665
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Normal",
  7917. height: math.unit(10 + 8 / 12, "foot")
  7918. },
  7919. {
  7920. name: "Minimacro",
  7921. height: math.unit(15, "foot")
  7922. },
  7923. {
  7924. name: "Macro",
  7925. height: math.unit(60, "foot"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(5, "miles")
  7931. },
  7932. {
  7933. name: "Gigamacro",
  7934. height: math.unit(6000, "miles")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(150, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/cobalt/front.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(8 + 1 / 12, "foot")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(111, "foot"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Supracosmic",
  7962. height: math.unit(1e42, "feet")
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(5, "inches"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/amanda/front.svg",
  7974. extra: 926/791,
  7975. bottom: 38/964
  7976. }
  7977. },
  7978. back: {
  7979. height: math.unit(5, "inches"),
  7980. name: "Back",
  7981. image: {
  7982. source: "./media/characters/amanda/back.svg",
  7983. extra: 909/805,
  7984. bottom: 43/952
  7985. }
  7986. },
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(5, "inches"),
  7992. default: true
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(2.75, "meters"),
  8001. weight: math.unit(1200, "lb"),
  8002. name: "Front",
  8003. image: {
  8004. source: "./media/characters/teal/front.svg",
  8005. extra: 2463 / 2320,
  8006. bottom: 166 / 2629
  8007. }
  8008. },
  8009. back: {
  8010. height: math.unit(2.75, "meters"),
  8011. weight: math.unit(1200, "lb"),
  8012. name: "Back",
  8013. image: {
  8014. source: "./media/characters/teal/back.svg",
  8015. extra: 2580 / 2489,
  8016. bottom: 151 / 2731
  8017. }
  8018. },
  8019. sitting: {
  8020. height: math.unit(1.9, "meters"),
  8021. weight: math.unit(1200, "lb"),
  8022. name: "Sitting",
  8023. image: {
  8024. source: "./media/characters/teal/sitting.svg",
  8025. extra: 623 / 590,
  8026. bottom: 121 / 744
  8027. }
  8028. },
  8029. standing: {
  8030. height: math.unit(2.75, "meters"),
  8031. weight: math.unit(1200, "lb"),
  8032. name: "Standing",
  8033. image: {
  8034. source: "./media/characters/teal/standing.svg",
  8035. extra: 923 / 893,
  8036. bottom: 60 / 983
  8037. }
  8038. },
  8039. stretching: {
  8040. height: math.unit(3.65, "meters"),
  8041. weight: math.unit(1200, "lb"),
  8042. name: "Stretching",
  8043. image: {
  8044. source: "./media/characters/teal/stretching.svg",
  8045. extra: 1276 / 1244,
  8046. bottom: 0 / 1276
  8047. }
  8048. },
  8049. legged: {
  8050. height: math.unit(1.3, "meters"),
  8051. weight: math.unit(100, "lb"),
  8052. name: "Legged",
  8053. image: {
  8054. source: "./media/characters/teal/legged.svg",
  8055. extra: 462 / 437,
  8056. bottom: 24 / 486
  8057. }
  8058. },
  8059. naga: {
  8060. height: math.unit(5.4, "meters"),
  8061. weight: math.unit(4000, "lb"),
  8062. name: "Naga",
  8063. image: {
  8064. source: "./media/characters/teal/naga.svg",
  8065. extra: 1902 / 1858,
  8066. bottom: 0 / 1902
  8067. }
  8068. },
  8069. hand: {
  8070. height: math.unit(0.52, "meters"),
  8071. name: "Hand",
  8072. image: {
  8073. source: "./media/characters/teal/hand.svg"
  8074. }
  8075. },
  8076. maw: {
  8077. height: math.unit(0.43, "meters"),
  8078. name: "Maw",
  8079. image: {
  8080. source: "./media/characters/teal/maw.svg"
  8081. }
  8082. },
  8083. slit: {
  8084. height: math.unit(0.25, "meters"),
  8085. name: "Slit",
  8086. image: {
  8087. source: "./media/characters/teal/slit.svg"
  8088. }
  8089. },
  8090. },
  8091. [
  8092. {
  8093. name: "Normal",
  8094. height: math.unit(2.75, "meters"),
  8095. default: true
  8096. },
  8097. {
  8098. name: "Macro",
  8099. height: math.unit(300, "feet")
  8100. },
  8101. {
  8102. name: "Macro+",
  8103. height: math.unit(2000, "feet")
  8104. },
  8105. ]
  8106. ))
  8107. characterMakers.push(() => makeCharacter(
  8108. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8109. {
  8110. frontCat: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(180, "lbs"),
  8113. name: "Front (Cat)",
  8114. image: {
  8115. source: "./media/characters/ravin-amulet/front-cat.svg"
  8116. }
  8117. },
  8118. frontCatAlt: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(180, "lbs"),
  8121. name: "Front (Alt, Cat)",
  8122. image: {
  8123. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8124. }
  8125. },
  8126. frontWerewolf: {
  8127. height: math.unit(6 * 1.2, "feet"),
  8128. weight: math.unit(225, "lbs"),
  8129. name: "Front (Werewolf)",
  8130. image: {
  8131. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8132. }
  8133. },
  8134. backWerewolf: {
  8135. height: math.unit(6 * 1.2, "feet"),
  8136. weight: math.unit(225, "lbs"),
  8137. name: "Back (Werewolf)",
  8138. image: {
  8139. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8140. }
  8141. },
  8142. },
  8143. [
  8144. {
  8145. name: "Nano",
  8146. height: math.unit(1, "micrometer")
  8147. },
  8148. {
  8149. name: "Micro",
  8150. height: math.unit(1, "inch")
  8151. },
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(6, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(60, "feet")
  8160. }
  8161. ]
  8162. ))
  8163. characterMakers.push(() => makeCharacter(
  8164. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8165. {
  8166. front: {
  8167. height: math.unit(6, "feet"),
  8168. weight: math.unit(165, "lbs"),
  8169. name: "Front",
  8170. image: {
  8171. source: "./media/characters/fluoresce/front.svg"
  8172. }
  8173. }
  8174. },
  8175. [
  8176. {
  8177. name: "Micro",
  8178. height: math.unit(6, "cm")
  8179. },
  8180. {
  8181. name: "Normal",
  8182. height: math.unit(5 + 7 / 12, "feet"),
  8183. default: true
  8184. },
  8185. {
  8186. name: "Macro",
  8187. height: math.unit(56, "feet")
  8188. },
  8189. {
  8190. name: "Megamacro",
  8191. height: math.unit(1.9, "miles")
  8192. },
  8193. ]
  8194. ))
  8195. characterMakers.push(() => makeCharacter(
  8196. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8197. {
  8198. front: {
  8199. height: math.unit(9 + 6 / 12, "feet"),
  8200. weight: math.unit(523, "lbs"),
  8201. name: "Side",
  8202. image: {
  8203. source: "./media/characters/aurora/side.svg"
  8204. }
  8205. }
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(9 + 6 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(96, "feet"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Macro+",
  8219. height: math.unit(243, "feet")
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(194, "cm"),
  8228. weight: math.unit(90, "kg"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/ranek/front.svg",
  8232. extra: 1862/1791,
  8233. bottom: 80/1942
  8234. }
  8235. },
  8236. back: {
  8237. height: math.unit(194, "cm"),
  8238. weight: math.unit(90, "kg"),
  8239. name: "Back",
  8240. image: {
  8241. source: "./media/characters/ranek/back.svg",
  8242. extra: 1853/1787,
  8243. bottom: 74/1927
  8244. }
  8245. },
  8246. feral: {
  8247. height: math.unit(30, "cm"),
  8248. weight: math.unit(1.6, "lbs"),
  8249. name: "Feral",
  8250. image: {
  8251. source: "./media/characters/ranek/feral.svg",
  8252. extra: 990/631,
  8253. bottom: 29/1019
  8254. }
  8255. },
  8256. },
  8257. [
  8258. {
  8259. name: "Normal",
  8260. height: math.unit(194, "cm"),
  8261. default: true
  8262. },
  8263. {
  8264. name: "Macro",
  8265. height: math.unit(100, "meters")
  8266. },
  8267. ]
  8268. ))
  8269. characterMakers.push(() => makeCharacter(
  8270. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8271. {
  8272. front: {
  8273. height: math.unit(5 + 6 / 12, "feet"),
  8274. weight: math.unit(153, "lbs"),
  8275. name: "Front",
  8276. image: {
  8277. source: "./media/characters/andrew-cooper/front.svg"
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Nano",
  8284. height: math.unit(1, "mm")
  8285. },
  8286. {
  8287. name: "Micro",
  8288. height: math.unit(2, "inches")
  8289. },
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(5 + 6 / 12, "feet"),
  8293. default: true
  8294. }
  8295. ]
  8296. ))
  8297. characterMakers.push(() => makeCharacter(
  8298. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8299. {
  8300. front: {
  8301. height: math.unit(6, "feet"),
  8302. weight: math.unit(180, "lbs"),
  8303. name: "Front",
  8304. image: {
  8305. source: "./media/characters/akane-sato/front.svg",
  8306. extra: 1219 / 1140
  8307. }
  8308. },
  8309. back: {
  8310. height: math.unit(6, "feet"),
  8311. weight: math.unit(180, "lbs"),
  8312. name: "Back",
  8313. image: {
  8314. source: "./media/characters/akane-sato/back.svg",
  8315. extra: 1219 / 1170
  8316. }
  8317. },
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(2.5, "meters")
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(250, "meters"),
  8327. default: true
  8328. },
  8329. {
  8330. name: "Megamacro",
  8331. height: math.unit(25, "km")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(65, "kg"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/rook/front.svg",
  8344. extra: 960 / 950
  8345. }
  8346. }
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(8.8, "feet")
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(88, "feet"),
  8356. default: true
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(8, "miles")
  8361. },
  8362. ]
  8363. ))
  8364. characterMakers.push(() => makeCharacter(
  8365. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8366. {
  8367. front: {
  8368. height: math.unit(12 + 2 / 12, "feet"),
  8369. weight: math.unit(808, "lbs"),
  8370. name: "Front",
  8371. image: {
  8372. source: "./media/characters/prodigy/front.svg"
  8373. }
  8374. }
  8375. },
  8376. [
  8377. {
  8378. name: "Normal",
  8379. height: math.unit(12 + 2 / 12, "feet"),
  8380. default: true
  8381. },
  8382. {
  8383. name: "Macro",
  8384. height: math.unit(143, "feet")
  8385. },
  8386. {
  8387. name: "Macro+",
  8388. height: math.unit(400, "feet")
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(225, "lbs"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/daniel/front.svg"
  8401. }
  8402. },
  8403. leaning: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(225, "lbs"),
  8406. name: "Leaning",
  8407. image: {
  8408. source: "./media/characters/daniel/leaning.svg"
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Macro",
  8415. height: math.unit(1000, "feet"),
  8416. default: true
  8417. },
  8418. ]
  8419. ))
  8420. characterMakers.push(() => makeCharacter(
  8421. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8422. {
  8423. front: {
  8424. height: math.unit(6, "feet"),
  8425. weight: math.unit(88, "lbs"),
  8426. name: "Front",
  8427. image: {
  8428. source: "./media/characters/chiros/front.svg",
  8429. extra: 306 / 226
  8430. }
  8431. },
  8432. side: {
  8433. height: math.unit(6, "feet"),
  8434. weight: math.unit(88, "lbs"),
  8435. name: "Side",
  8436. image: {
  8437. source: "./media/characters/chiros/side.svg",
  8438. extra: 306 / 226
  8439. }
  8440. },
  8441. },
  8442. [
  8443. {
  8444. name: "Normal",
  8445. height: math.unit(6, "cm"),
  8446. default: true
  8447. },
  8448. ]
  8449. ))
  8450. characterMakers.push(() => makeCharacter(
  8451. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8452. {
  8453. front: {
  8454. height: math.unit(6, "feet"),
  8455. weight: math.unit(100, "lbs"),
  8456. name: "Front",
  8457. image: {
  8458. source: "./media/characters/selka/front.svg",
  8459. extra: 947 / 887
  8460. }
  8461. }
  8462. },
  8463. [
  8464. {
  8465. name: "Normal",
  8466. height: math.unit(5, "cm"),
  8467. default: true
  8468. },
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(8 + 3 / 12, "feet"),
  8476. weight: math.unit(424, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/verin/front.svg",
  8480. extra: 1845 / 1550
  8481. }
  8482. },
  8483. frontArmored: {
  8484. height: math.unit(8 + 3 / 12, "feet"),
  8485. weight: math.unit(424, "lbs"),
  8486. name: "Front (Armored)",
  8487. image: {
  8488. source: "./media/characters/verin/front-armor.svg",
  8489. extra: 1845 / 1550,
  8490. bottom: 0.01
  8491. }
  8492. },
  8493. back: {
  8494. height: math.unit(8 + 3 / 12, "feet"),
  8495. weight: math.unit(424, "lbs"),
  8496. name: "Back",
  8497. image: {
  8498. source: "./media/characters/verin/back.svg",
  8499. bottom: 0.1,
  8500. extra: 1
  8501. }
  8502. },
  8503. foot: {
  8504. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8505. name: "Foot",
  8506. image: {
  8507. source: "./media/characters/verin/foot.svg"
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Normal",
  8514. height: math.unit(8 + 3 / 12, "feet")
  8515. },
  8516. {
  8517. name: "Minimacro",
  8518. height: math.unit(21, "feet"),
  8519. default: true
  8520. },
  8521. {
  8522. name: "Macro",
  8523. height: math.unit(626, "feet")
  8524. },
  8525. ]
  8526. ))
  8527. characterMakers.push(() => makeCharacter(
  8528. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8529. {
  8530. front: {
  8531. height: math.unit(2.718, "meters"),
  8532. weight: math.unit(150, "lbs"),
  8533. name: "Front",
  8534. image: {
  8535. source: "./media/characters/sovrim-terraquian/front.svg",
  8536. extra: 1752/1689,
  8537. bottom: 36/1788
  8538. }
  8539. },
  8540. back: {
  8541. height: math.unit(2.718, "meters"),
  8542. weight: math.unit(150, "lbs"),
  8543. name: "Back",
  8544. image: {
  8545. source: "./media/characters/sovrim-terraquian/back.svg",
  8546. extra: 1698/1657,
  8547. bottom: 58/1756
  8548. }
  8549. },
  8550. tongue: {
  8551. height: math.unit(2.865, "feet"),
  8552. name: "Tongue",
  8553. image: {
  8554. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8555. }
  8556. },
  8557. hand: {
  8558. height: math.unit(1.61, "feet"),
  8559. name: "Hand",
  8560. image: {
  8561. source: "./media/characters/sovrim-terraquian/hand.svg"
  8562. }
  8563. },
  8564. foot: {
  8565. height: math.unit(1.05, "feet"),
  8566. name: "Foot",
  8567. image: {
  8568. source: "./media/characters/sovrim-terraquian/foot.svg"
  8569. }
  8570. },
  8571. footAlt: {
  8572. height: math.unit(0.88, "feet"),
  8573. name: "Foot (Alt)",
  8574. image: {
  8575. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8576. }
  8577. },
  8578. },
  8579. [
  8580. {
  8581. name: "Micro",
  8582. height: math.unit(2, "inches")
  8583. },
  8584. {
  8585. name: "Small",
  8586. height: math.unit(1, "meter")
  8587. },
  8588. {
  8589. name: "Normal",
  8590. height: math.unit(Math.E, "meters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Macro",
  8595. height: math.unit(20, "meters")
  8596. },
  8597. {
  8598. name: "Macro+",
  8599. height: math.unit(400, "meters")
  8600. },
  8601. ]
  8602. ))
  8603. characterMakers.push(() => makeCharacter(
  8604. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8605. {
  8606. front: {
  8607. height: math.unit(7, "feet"),
  8608. weight: math.unit(489, "lbs"),
  8609. name: "Front",
  8610. image: {
  8611. source: "./media/characters/reece-silvermane/front.svg",
  8612. bottom: 0.02,
  8613. extra: 1
  8614. }
  8615. },
  8616. },
  8617. [
  8618. {
  8619. name: "Macro",
  8620. height: math.unit(1.5, "miles"),
  8621. default: true
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(6, "feet"),
  8630. weight: math.unit(78, "kg"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/kane/front.svg",
  8634. extra: 978 / 899
  8635. }
  8636. },
  8637. },
  8638. [
  8639. {
  8640. name: "Normal",
  8641. height: math.unit(2.1, "m"),
  8642. },
  8643. {
  8644. name: "Macro",
  8645. height: math.unit(1, "km"),
  8646. default: true
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(200, "kg"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/tegon/front.svg",
  8659. bottom: 0.01,
  8660. extra: 1
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(1, "inch")
  8668. },
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(6 + 3 / 12, "feet"),
  8672. default: true
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(300, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(69, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8686. {
  8687. side: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(2304, "lbs"),
  8690. name: "Side",
  8691. image: {
  8692. source: "./media/characters/arcturax/side.svg",
  8693. extra: 790 / 376,
  8694. bottom: 0.01
  8695. }
  8696. },
  8697. },
  8698. [
  8699. {
  8700. name: "Micro",
  8701. height: math.unit(2, "inch")
  8702. },
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(6, "feet")
  8706. },
  8707. {
  8708. name: "Macro",
  8709. height: math.unit(39, "feet"),
  8710. default: true
  8711. },
  8712. {
  8713. name: "Megamacro",
  8714. height: math.unit(7, "miles")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(50, "lbs"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/sentri/front.svg",
  8727. extra: 1750 / 1570,
  8728. bottom: 0.025
  8729. }
  8730. },
  8731. frontAlt: {
  8732. height: math.unit(6, "feet"),
  8733. weight: math.unit(50, "lbs"),
  8734. name: "Front (Alt)",
  8735. image: {
  8736. source: "./media/characters/sentri/front-alt.svg",
  8737. extra: 1750 / 1570,
  8738. bottom: 0.025
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(15, "feet"),
  8746. default: true
  8747. },
  8748. {
  8749. name: "Macro",
  8750. height: math.unit(2500, "feet")
  8751. }
  8752. ]
  8753. ))
  8754. characterMakers.push(() => makeCharacter(
  8755. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8756. {
  8757. front: {
  8758. height: math.unit(5 + 8 / 12, "feet"),
  8759. weight: math.unit(130, "lbs"),
  8760. name: "Front",
  8761. image: {
  8762. source: "./media/characters/corvin/front.svg",
  8763. extra: 1803 / 1629
  8764. }
  8765. },
  8766. frontShirt: {
  8767. height: math.unit(5 + 8 / 12, "feet"),
  8768. weight: math.unit(130, "lbs"),
  8769. name: "Front (Shirt)",
  8770. image: {
  8771. source: "./media/characters/corvin/front-shirt.svg",
  8772. extra: 1803 / 1629
  8773. }
  8774. },
  8775. frontPoncho: {
  8776. height: math.unit(5 + 8 / 12, "feet"),
  8777. weight: math.unit(130, "lbs"),
  8778. name: "Front (Poncho)",
  8779. image: {
  8780. source: "./media/characters/corvin/front-poncho.svg",
  8781. extra: 1803 / 1629
  8782. }
  8783. },
  8784. side: {
  8785. height: math.unit(5 + 8 / 12, "feet"),
  8786. weight: math.unit(130, "lbs"),
  8787. name: "Side",
  8788. image: {
  8789. source: "./media/characters/corvin/side.svg",
  8790. extra: 1012 / 945
  8791. }
  8792. },
  8793. back: {
  8794. height: math.unit(5 + 8 / 12, "feet"),
  8795. weight: math.unit(130, "lbs"),
  8796. name: "Back",
  8797. image: {
  8798. source: "./media/characters/corvin/back.svg",
  8799. extra: 1803 / 1629
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Micro",
  8806. height: math.unit(3, "inches")
  8807. },
  8808. {
  8809. name: "Normal",
  8810. height: math.unit(5 + 8 / 12, "feet")
  8811. },
  8812. {
  8813. name: "Macro",
  8814. height: math.unit(300, "feet"),
  8815. default: true
  8816. },
  8817. {
  8818. name: "Megamacro",
  8819. height: math.unit(500, "miles")
  8820. }
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(135, "lbs"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/q/front.svg",
  8832. extra: 854 / 752,
  8833. bottom: 0.005
  8834. }
  8835. },
  8836. back: {
  8837. height: math.unit(6, "feet"),
  8838. weight: math.unit(130, "lbs"),
  8839. name: "Back",
  8840. image: {
  8841. source: "./media/characters/q/back.svg",
  8842. extra: 854 / 752
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(90, "feet"),
  8850. default: true
  8851. },
  8852. {
  8853. name: "Extra Macro",
  8854. height: math.unit(300, "feet"),
  8855. },
  8856. {
  8857. name: "BIG WALF",
  8858. height: math.unit(750, "feet"),
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(3, "feet"),
  8867. weight: math.unit(28, "lbs"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/citrine/front.svg"
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(3, "feet"),
  8878. default: true
  8879. }
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8884. {
  8885. front: {
  8886. height: math.unit(14, "feet"),
  8887. weight: math.unit(1450, "kg"),
  8888. preyCapacity: math.unit(15, "people"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/aura-starwind/front.svg",
  8892. extra: 1440/1327,
  8893. bottom: 11/1451
  8894. }
  8895. },
  8896. side: {
  8897. height: math.unit(14, "feet"),
  8898. weight: math.unit(1450, "kg"),
  8899. preyCapacity: math.unit(15, "people"),
  8900. name: "Side",
  8901. image: {
  8902. source: "./media/characters/aura-starwind/side.svg",
  8903. extra: 1654 / 1497
  8904. }
  8905. },
  8906. taur: {
  8907. height: math.unit(18, "feet"),
  8908. weight: math.unit(5500, "kg"),
  8909. preyCapacity: math.unit(50, "people"),
  8910. name: "Taur",
  8911. image: {
  8912. source: "./media/characters/aura-starwind/taur.svg",
  8913. extra: 1760 / 1650
  8914. }
  8915. },
  8916. feral: {
  8917. height: math.unit(46, "feet"),
  8918. weight: math.unit(25000, "kg"),
  8919. preyCapacity: math.unit(120, "people"),
  8920. name: "Feral",
  8921. image: {
  8922. source: "./media/characters/aura-starwind/feral.svg"
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Normal",
  8929. height: math.unit(14, "feet"),
  8930. default: true
  8931. },
  8932. {
  8933. name: "Macro",
  8934. height: math.unit(50, "meters")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(5000, "meters")
  8939. },
  8940. {
  8941. name: "Gigamacro",
  8942. height: math.unit(100000, "kilometers")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(2 + 7 / 12, "feet"),
  8951. weight: math.unit(32, "lbs"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/rivet/front.svg",
  8955. extra: 1716 / 1658,
  8956. bottom: 0.03
  8957. }
  8958. },
  8959. foot: {
  8960. height: math.unit(0.551, "feet"),
  8961. name: "Rivet's Foot",
  8962. image: {
  8963. source: "./media/characters/rivet/foot.svg"
  8964. },
  8965. rename: true
  8966. }
  8967. },
  8968. [
  8969. {
  8970. name: "Micro",
  8971. height: math.unit(1.5, "inches"),
  8972. },
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(2 + 7 / 12, "feet"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "Macro",
  8980. height: math.unit(85, "feet")
  8981. },
  8982. {
  8983. name: "Megamacro",
  8984. height: math.unit(2.2, "km")
  8985. }
  8986. ]
  8987. ))
  8988. characterMakers.push(() => makeCharacter(
  8989. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8990. {
  8991. front: {
  8992. height: math.unit(5 + 9 / 12, "feet"),
  8993. weight: math.unit(150, "lbs"),
  8994. name: "Front",
  8995. image: {
  8996. source: "./media/characters/coffee/front.svg",
  8997. extra: 3666 / 3032,
  8998. bottom: 0.04
  8999. }
  9000. },
  9001. foot: {
  9002. height: math.unit(1.29, "feet"),
  9003. name: "Foot",
  9004. image: {
  9005. source: "./media/characters/coffee/foot.svg"
  9006. }
  9007. },
  9008. },
  9009. [
  9010. {
  9011. name: "Micro",
  9012. height: math.unit(2, "inches"),
  9013. },
  9014. {
  9015. name: "Normal",
  9016. height: math.unit(5 + 9 / 12, "feet"),
  9017. default: true
  9018. },
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(800, "feet")
  9022. },
  9023. {
  9024. name: "Megamacro",
  9025. height: math.unit(25, "miles")
  9026. }
  9027. ]
  9028. ))
  9029. characterMakers.push(() => makeCharacter(
  9030. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9031. {
  9032. front: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(200, "lbs"),
  9035. name: "Front",
  9036. image: {
  9037. source: "./media/characters/chari-gal/front.svg",
  9038. extra: 1568 / 1385,
  9039. bottom: 0.047
  9040. }
  9041. },
  9042. gigantamax: {
  9043. height: math.unit(6 * 16, "feet"),
  9044. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9045. name: "Gigantamax",
  9046. image: {
  9047. source: "./media/characters/chari-gal/gigantamax.svg",
  9048. extra: 1124 / 888,
  9049. bottom: 0.03
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5 + 7 / 12, "feet")
  9057. },
  9058. {
  9059. name: "Macro",
  9060. height: math.unit(200, "feet"),
  9061. default: true
  9062. }
  9063. ]
  9064. ))
  9065. characterMakers.push(() => makeCharacter(
  9066. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9067. {
  9068. front: {
  9069. height: math.unit(6, "feet"),
  9070. weight: math.unit(150, "lbs"),
  9071. name: "Front",
  9072. image: {
  9073. source: "./media/characters/nova/front.svg",
  9074. extra: 5000 / 4722,
  9075. bottom: 0.02
  9076. }
  9077. }
  9078. },
  9079. [
  9080. {
  9081. name: "Micro-",
  9082. height: math.unit(0.8, "inches")
  9083. },
  9084. {
  9085. name: "Micro",
  9086. height: math.unit(2, "inches"),
  9087. default: true
  9088. },
  9089. ]
  9090. ))
  9091. characterMakers.push(() => makeCharacter(
  9092. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9093. {
  9094. front: {
  9095. height: math.unit(3 + 1 / 12, "feet"),
  9096. weight: math.unit(21.7, "lbs"),
  9097. name: "Front",
  9098. image: {
  9099. source: "./media/characters/argent/front.svg",
  9100. extra: 1471 / 1331,
  9101. bottom: 100.8 / 1575.5
  9102. }
  9103. }
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(3 + 1 / 12, "feet"),
  9113. default: true
  9114. },
  9115. {
  9116. name: "Macro",
  9117. height: math.unit(120, "feet")
  9118. },
  9119. ]
  9120. ))
  9121. characterMakers.push(() => makeCharacter(
  9122. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9123. {
  9124. lamp: {
  9125. height: math.unit(7 * 1559 / 989, "feet"),
  9126. name: "Magic Lamp",
  9127. image: {
  9128. source: "./media/characters/mira-al-cul/lamp.svg",
  9129. extra: 1617 / 1559
  9130. }
  9131. },
  9132. front: {
  9133. height: math.unit(7, "feet"),
  9134. name: "Front",
  9135. image: {
  9136. source: "./media/characters/mira-al-cul/front.svg",
  9137. extra: 1044 / 990
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Heavily Restricted",
  9144. height: math.unit(7 * 1559 / 989, "feet")
  9145. },
  9146. {
  9147. name: "Freshly Freed",
  9148. height: math.unit(50 * 1559 / 989, "feet")
  9149. },
  9150. {
  9151. name: "World Encompassing",
  9152. height: math.unit(10000 * 1559 / 989, "miles")
  9153. },
  9154. {
  9155. name: "Galactic",
  9156. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9157. },
  9158. {
  9159. name: "Palmed Universe",
  9160. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9161. default: true
  9162. },
  9163. {
  9164. name: "Multiversal Matriarch",
  9165. height: math.unit(8.87e10, "yottameters")
  9166. },
  9167. {
  9168. name: "Void Mother",
  9169. height: math.unit(3.14e110, "yottaparsecs")
  9170. },
  9171. {
  9172. name: "Toying with Transcendence",
  9173. height: math.unit(1e307, "meters")
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9179. {
  9180. front: {
  9181. height: math.unit(17 + 1 / 12, "feet"),
  9182. weight: math.unit(476.2 * 5, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/kuro-shi-uchū/front.svg",
  9186. extra: 2329 / 1835,
  9187. bottom: 0.02
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Micro",
  9194. height: math.unit(2, "inches")
  9195. },
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(12, "meters")
  9199. },
  9200. {
  9201. name: "Planetary",
  9202. height: math.unit(0.00929, "AU"),
  9203. default: true
  9204. },
  9205. {
  9206. name: "Universal",
  9207. height: math.unit(20, "gigaparsecs")
  9208. },
  9209. ]
  9210. ))
  9211. characterMakers.push(() => makeCharacter(
  9212. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9213. {
  9214. front: {
  9215. height: math.unit(5 + 2 / 12, "feet"),
  9216. weight: math.unit(120, "lbs"),
  9217. name: "Front",
  9218. image: {
  9219. source: "./media/characters/katherine/front.svg",
  9220. extra: 2075 / 1969
  9221. }
  9222. },
  9223. dress: {
  9224. height: math.unit(5 + 2 / 12, "feet"),
  9225. weight: math.unit(120, "lbs"),
  9226. name: "Dress",
  9227. image: {
  9228. source: "./media/characters/katherine/dress.svg",
  9229. extra: 2258 / 2064
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Micro",
  9236. height: math.unit(1, "inches"),
  9237. default: true
  9238. },
  9239. {
  9240. name: "Normal",
  9241. height: math.unit(5 + 2 / 12, "feet")
  9242. },
  9243. {
  9244. name: "Macro",
  9245. height: math.unit(100, "meters")
  9246. },
  9247. {
  9248. name: "Megamacro",
  9249. height: math.unit(80, "miles")
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9255. {
  9256. front: {
  9257. height: math.unit(7 + 8 / 12, "feet"),
  9258. weight: math.unit(250, "lbs"),
  9259. name: "Front",
  9260. image: {
  9261. source: "./media/characters/yevis/front.svg",
  9262. extra: 1938 / 1755
  9263. }
  9264. }
  9265. },
  9266. [
  9267. {
  9268. name: "Mortal",
  9269. height: math.unit(7 + 8 / 12, "feet")
  9270. },
  9271. {
  9272. name: "Battle",
  9273. height: math.unit(25 + 11 / 12, "feet")
  9274. },
  9275. {
  9276. name: "Wrath",
  9277. height: math.unit(1654 + 11 / 12, "feet")
  9278. },
  9279. {
  9280. name: "Planet Destroyer",
  9281. height: math.unit(12000, "miles")
  9282. },
  9283. {
  9284. name: "Galaxy Conqueror",
  9285. height: math.unit(1.45, "zettameters"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Universal War",
  9290. height: math.unit(184, "gigaparsecs")
  9291. },
  9292. {
  9293. name: "Eternity War",
  9294. height: math.unit(1.98e55, "yottaparsecs")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(5 + 8 / 12, "feet"),
  9303. weight: math.unit(63, "kg"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/xavier/front.svg",
  9307. extra: 944 / 883
  9308. }
  9309. },
  9310. frontStretch: {
  9311. height: math.unit(5 + 8 / 12, "feet"),
  9312. weight: math.unit(63, "kg"),
  9313. name: "Stretching",
  9314. image: {
  9315. source: "./media/characters/xavier/front-stretch.svg",
  9316. extra: 962 / 820
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(5 + 8 / 12, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(100, "meters"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "McLargeHuge",
  9332. height: math.unit(10, "miles")
  9333. },
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(5 + 5 / 12, "feet"),
  9341. weight: math.unit(150, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/joshii/front.svg",
  9345. extra: 765 / 653,
  9346. bottom: 51 / 816
  9347. }
  9348. },
  9349. foot: {
  9350. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9351. name: "Foot",
  9352. image: {
  9353. source: "./media/characters/joshii/foot.svg"
  9354. }
  9355. },
  9356. },
  9357. [
  9358. {
  9359. name: "Micro",
  9360. height: math.unit(2, "inches"),
  9361. default: true
  9362. },
  9363. {
  9364. name: "Normal",
  9365. height: math.unit(5 + 5 / 12, "feet")
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(785, "feet")
  9370. },
  9371. {
  9372. name: "Megamacro",
  9373. height: math.unit(24.5, "miles")
  9374. },
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(6, "feet"),
  9382. weight: math.unit(150, "lb"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/goddess-elizabeth/front.svg",
  9386. extra: 1800 / 1525,
  9387. bottom: 0.005
  9388. }
  9389. },
  9390. foot: {
  9391. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9392. name: "Foot",
  9393. image: {
  9394. source: "./media/characters/goddess-elizabeth/foot.svg"
  9395. }
  9396. },
  9397. mouth: {
  9398. height: math.unit(6, "feet"),
  9399. name: "Mouth",
  9400. image: {
  9401. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9402. }
  9403. },
  9404. },
  9405. [
  9406. {
  9407. name: "Micro",
  9408. height: math.unit(12, "feet")
  9409. },
  9410. {
  9411. name: "Normal",
  9412. height: math.unit(80, "miles"),
  9413. default: true
  9414. },
  9415. {
  9416. name: "Macro",
  9417. height: math.unit(15000, "parsecs")
  9418. },
  9419. ]
  9420. ))
  9421. characterMakers.push(() => makeCharacter(
  9422. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9423. {
  9424. front: {
  9425. height: math.unit(5 + 9 / 12, "feet"),
  9426. weight: math.unit(144, "lb"),
  9427. name: "Front",
  9428. image: {
  9429. source: "./media/characters/kara/front.svg"
  9430. }
  9431. },
  9432. feet: {
  9433. height: math.unit(6 / 6.765, "feet"),
  9434. name: "Kara's Feet",
  9435. rename: true,
  9436. image: {
  9437. source: "./media/characters/kara/feet.svg"
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(5 + 9 / 12, "feet")
  9445. },
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(174, "feet"),
  9449. default: true
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(18, "feet"),
  9458. weight: math.unit(4050, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/tyrone/front.svg",
  9462. extra: 2405 / 2270,
  9463. bottom: 182 / 2587
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Normal",
  9470. height: math.unit(18, "feet"),
  9471. default: true
  9472. },
  9473. {
  9474. name: "Macro",
  9475. height: math.unit(300, "feet")
  9476. },
  9477. {
  9478. name: "Megamacro",
  9479. height: math.unit(15, "km")
  9480. },
  9481. {
  9482. name: "Gigamacro",
  9483. height: math.unit(500, "km")
  9484. },
  9485. {
  9486. name: "Teramacro",
  9487. height: math.unit(0.5, "gigameters")
  9488. },
  9489. {
  9490. name: "Omnimacro",
  9491. height: math.unit(1e252, "yottauniverse")
  9492. },
  9493. ]
  9494. ))
  9495. characterMakers.push(() => makeCharacter(
  9496. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9497. {
  9498. front: {
  9499. height: math.unit(7 + 8 / 12, "feet"),
  9500. weight: math.unit(120, "lb"),
  9501. name: "Front",
  9502. image: {
  9503. source: "./media/characters/danny/front.svg",
  9504. extra: 1490 / 1350
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(7 + 8 / 12, "feet"),
  9509. weight: math.unit(120, "lb"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/danny/back.svg",
  9513. extra: 1490 / 1350
  9514. }
  9515. },
  9516. },
  9517. [
  9518. {
  9519. name: "Normal",
  9520. height: math.unit(7 + 8 / 12, "feet"),
  9521. default: true
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(3.5, "inches"),
  9530. weight: math.unit(19, "grams"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/mallow/front.svg",
  9534. extra: 471 / 431
  9535. }
  9536. },
  9537. back: {
  9538. height: math.unit(3.5, "inches"),
  9539. weight: math.unit(19, "grams"),
  9540. name: "Back",
  9541. image: {
  9542. source: "./media/characters/mallow/back.svg",
  9543. extra: 471 / 431
  9544. }
  9545. },
  9546. },
  9547. [
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(3.5, "inches"),
  9551. default: true
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(9, "feet"),
  9560. weight: math.unit(230, "kg"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/starry-aqua/front.svg"
  9564. }
  9565. },
  9566. back: {
  9567. height: math.unit(9, "feet"),
  9568. weight: math.unit(230, "kg"),
  9569. name: "Back",
  9570. image: {
  9571. source: "./media/characters/starry-aqua/back.svg"
  9572. }
  9573. },
  9574. hand: {
  9575. height: math.unit(9 * 0.1168, "feet"),
  9576. name: "Hand",
  9577. image: {
  9578. source: "./media/characters/starry-aqua/hand.svg"
  9579. }
  9580. },
  9581. foot: {
  9582. height: math.unit(9 * 0.18, "feet"),
  9583. name: "Foot",
  9584. image: {
  9585. source: "./media/characters/starry-aqua/foot.svg"
  9586. }
  9587. }
  9588. },
  9589. [
  9590. {
  9591. name: "Micro",
  9592. height: math.unit(3, "inches")
  9593. },
  9594. {
  9595. name: "Normal",
  9596. height: math.unit(9, "feet")
  9597. },
  9598. {
  9599. name: "Macro",
  9600. height: math.unit(300, "feet"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Megamacro",
  9605. height: math.unit(3200, "feet")
  9606. }
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(15, "feet"),
  9614. weight: math.unit(5026, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/luka-towers/front.svg",
  9618. extra: 1269/1133,
  9619. bottom: 51/1320
  9620. }
  9621. },
  9622. },
  9623. [
  9624. {
  9625. name: "Normal",
  9626. height: math.unit(15, "feet"),
  9627. default: true
  9628. },
  9629. {
  9630. name: "Minimacro",
  9631. height: math.unit(25, "feet")
  9632. },
  9633. {
  9634. name: "Macro",
  9635. height: math.unit(320, "feet")
  9636. },
  9637. {
  9638. name: "Megamacro",
  9639. height: math.unit(35000, "feet")
  9640. },
  9641. {
  9642. name: "Gigamacro",
  9643. height: math.unit(4000, "miles")
  9644. },
  9645. {
  9646. name: "Teramacro",
  9647. height: math.unit(15000, "miles")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(150, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/natalie-nightring/front.svg",
  9660. extra: 1,
  9661. bottom: 0.06
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Uh Oh",
  9668. height: math.unit(0.1, "mm")
  9669. },
  9670. {
  9671. name: "Small",
  9672. height: math.unit(3, "inches")
  9673. },
  9674. {
  9675. name: "Human Scale",
  9676. height: math.unit(6, "feet")
  9677. },
  9678. {
  9679. name: "Librarian",
  9680. height: math.unit(50, "feet"),
  9681. default: true
  9682. },
  9683. {
  9684. name: "Immense",
  9685. height: math.unit(200, "miles")
  9686. },
  9687. ]
  9688. ))
  9689. characterMakers.push(() => makeCharacter(
  9690. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9691. {
  9692. front: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(180, "lbs"),
  9695. name: "Front",
  9696. image: {
  9697. source: "./media/characters/danni-rosie/front.svg",
  9698. extra: 1260 / 1128,
  9699. bottom: 0.022
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(2, "inches"),
  9707. default: true
  9708. },
  9709. ]
  9710. ))
  9711. characterMakers.push(() => makeCharacter(
  9712. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9713. {
  9714. front: {
  9715. height: math.unit(5 + 9 / 12, "feet"),
  9716. weight: math.unit(220, "lb"),
  9717. name: "Front",
  9718. image: {
  9719. source: "./media/characters/samantha-kruse/front.svg",
  9720. extra: (985 / 935),
  9721. bottom: 0.03
  9722. }
  9723. },
  9724. frontUndressed: {
  9725. height: math.unit(5 + 9 / 12, "feet"),
  9726. weight: math.unit(220, "lb"),
  9727. name: "Front (Undressed)",
  9728. image: {
  9729. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9730. extra: (973 / 923),
  9731. bottom: 0.025
  9732. }
  9733. },
  9734. fat: {
  9735. height: math.unit(5 + 9 / 12, "feet"),
  9736. weight: math.unit(900, "lb"),
  9737. name: "Front (Fat)",
  9738. image: {
  9739. source: "./media/characters/samantha-kruse/fat.svg",
  9740. extra: 2688 / 2561
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(5 + 9 / 12, "feet"),
  9748. default: true
  9749. }
  9750. ]
  9751. ))
  9752. characterMakers.push(() => makeCharacter(
  9753. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9754. {
  9755. back: {
  9756. height: math.unit(5 + 4 / 12, "feet"),
  9757. weight: math.unit(4963, "lb"),
  9758. name: "Back",
  9759. image: {
  9760. source: "./media/characters/amelia-rosie/back.svg",
  9761. extra: 1113 / 963,
  9762. bottom: 0.01
  9763. }
  9764. },
  9765. },
  9766. [
  9767. {
  9768. name: "Level 0",
  9769. height: math.unit(5 + 4 / 12, "feet")
  9770. },
  9771. {
  9772. name: "Level 1",
  9773. height: math.unit(164597, "feet"),
  9774. default: true
  9775. },
  9776. {
  9777. name: "Level 2",
  9778. height: math.unit(956243, "miles")
  9779. },
  9780. {
  9781. name: "Level 3",
  9782. height: math.unit(29421709423, "miles")
  9783. },
  9784. {
  9785. name: "Level 4",
  9786. height: math.unit(154, "lightyears")
  9787. },
  9788. {
  9789. name: "Level 5",
  9790. height: math.unit(4738272, "lightyears")
  9791. },
  9792. {
  9793. name: "Level 6",
  9794. height: math.unit(145787152896, "lightyears")
  9795. },
  9796. ]
  9797. ))
  9798. characterMakers.push(() => makeCharacter(
  9799. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9800. {
  9801. front: {
  9802. height: math.unit(5 + 11 / 12, "feet"),
  9803. weight: math.unit(65, "kg"),
  9804. name: "Front",
  9805. image: {
  9806. source: "./media/characters/rook-kitara/front.svg",
  9807. extra: 1347 / 1274,
  9808. bottom: 0.005
  9809. }
  9810. },
  9811. },
  9812. [
  9813. {
  9814. name: "Totally Unfair",
  9815. height: math.unit(1.8, "mm")
  9816. },
  9817. {
  9818. name: "Lap Rookie",
  9819. height: math.unit(1.4, "feet")
  9820. },
  9821. {
  9822. name: "Normal",
  9823. height: math.unit(5 + 11 / 12, "feet"),
  9824. default: true
  9825. },
  9826. {
  9827. name: "How Did This Happen",
  9828. height: math.unit(80, "miles")
  9829. }
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(7, "feet"),
  9837. weight: math.unit(300, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/pisces/front.svg",
  9841. extra: 2255 / 2115,
  9842. bottom: 0.03
  9843. }
  9844. },
  9845. back: {
  9846. height: math.unit(7, "feet"),
  9847. weight: math.unit(300, "lb"),
  9848. name: "Back",
  9849. image: {
  9850. source: "./media/characters/pisces/back.svg",
  9851. extra: 2146 / 2055,
  9852. bottom: 0.04
  9853. }
  9854. },
  9855. },
  9856. [
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(7, "feet"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Swimming Pool",
  9864. height: math.unit(12.2, "meters")
  9865. },
  9866. {
  9867. name: "Olympic Swimming Pool",
  9868. height: math.unit(56.3, "meters")
  9869. },
  9870. {
  9871. name: "Lake Superior",
  9872. height: math.unit(93900, "meters")
  9873. },
  9874. {
  9875. name: "Mediterranean Sea",
  9876. height: math.unit(644457, "meters")
  9877. },
  9878. {
  9879. name: "World's Oceans",
  9880. height: math.unit(4567491, "meters")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9886. {
  9887. front: {
  9888. height: math.unit(2.3, "meters"),
  9889. weight: math.unit(120, "kg"),
  9890. name: "Front",
  9891. image: {
  9892. source: "./media/characters/zelas/front.svg"
  9893. }
  9894. },
  9895. side: {
  9896. height: math.unit(2.3, "meters"),
  9897. weight: math.unit(120, "kg"),
  9898. name: "Side",
  9899. image: {
  9900. source: "./media/characters/zelas/side.svg"
  9901. }
  9902. },
  9903. back: {
  9904. height: math.unit(2.3, "meters"),
  9905. weight: math.unit(120, "kg"),
  9906. name: "Back",
  9907. image: {
  9908. source: "./media/characters/zelas/back.svg"
  9909. }
  9910. },
  9911. foot: {
  9912. height: math.unit(1.116, "feet"),
  9913. name: "Foot",
  9914. image: {
  9915. source: "./media/characters/zelas/foot.svg"
  9916. }
  9917. },
  9918. },
  9919. [
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(2.3, "meters")
  9923. },
  9924. {
  9925. name: "Macro",
  9926. height: math.unit(30, "meters"),
  9927. default: true
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(1, "inch"),
  9936. weight: math.unit(0.21, "grams"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/talbot/front.svg",
  9940. extra: 594 / 544
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Micro",
  9947. height: math.unit(1, "inch"),
  9948. default: true
  9949. },
  9950. ]
  9951. ))
  9952. characterMakers.push(() => makeCharacter(
  9953. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9954. {
  9955. front: {
  9956. height: math.unit(3 + 3 / 12, "feet"),
  9957. weight: math.unit(51.8, "lb"),
  9958. name: "Front",
  9959. image: {
  9960. source: "./media/characters/fliss/front.svg",
  9961. extra: 840 / 640
  9962. }
  9963. },
  9964. },
  9965. [
  9966. {
  9967. name: "Teeny Tiny",
  9968. height: math.unit(1, "mm")
  9969. },
  9970. {
  9971. name: "Small",
  9972. height: math.unit(1, "inch"),
  9973. default: true
  9974. },
  9975. {
  9976. name: "Standard Sylveon",
  9977. height: math.unit(3 + 3 / 12, "feet")
  9978. },
  9979. {
  9980. name: "Large Nuisance",
  9981. height: math.unit(33, "feet")
  9982. },
  9983. {
  9984. name: "City Filler",
  9985. height: math.unit(3000, "feet")
  9986. },
  9987. {
  9988. name: "New Horizon",
  9989. height: math.unit(6000, "miles")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(5, "cm"),
  9998. weight: math.unit(1.94, "g"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/fleta/front.svg",
  10002. extra: 835 / 803
  10003. }
  10004. },
  10005. back: {
  10006. height: math.unit(5, "cm"),
  10007. weight: math.unit(1.94, "g"),
  10008. name: "Back",
  10009. image: {
  10010. source: "./media/characters/fleta/back.svg",
  10011. extra: 835 / 803
  10012. }
  10013. },
  10014. },
  10015. [
  10016. {
  10017. name: "Micro",
  10018. height: math.unit(5, "cm"),
  10019. default: true
  10020. },
  10021. ]
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10025. {
  10026. front: {
  10027. height: math.unit(6, "feet"),
  10028. weight: math.unit(225, "lb"),
  10029. name: "Front",
  10030. image: {
  10031. source: "./media/characters/dominic/front.svg",
  10032. extra: 1770 / 1620,
  10033. bottom: 0.025
  10034. }
  10035. },
  10036. back: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(225, "lb"),
  10039. name: "Back",
  10040. image: {
  10041. source: "./media/characters/dominic/back.svg",
  10042. extra: 1745 / 1620,
  10043. bottom: 0.065
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Nano",
  10050. height: math.unit(0.1, "mm")
  10051. },
  10052. {
  10053. name: "Micro-",
  10054. height: math.unit(1, "mm")
  10055. },
  10056. {
  10057. name: "Micro",
  10058. height: math.unit(4, "inches")
  10059. },
  10060. {
  10061. name: "Normal",
  10062. height: math.unit(6 + 4 / 12, "feet"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Macro",
  10067. height: math.unit(115, "feet")
  10068. },
  10069. {
  10070. name: "Macro+",
  10071. height: math.unit(955, "feet")
  10072. },
  10073. {
  10074. name: "Megamacro",
  10075. height: math.unit(8990, "feet")
  10076. },
  10077. {
  10078. name: "Gigmacro",
  10079. height: math.unit(9310, "miles")
  10080. },
  10081. {
  10082. name: "Teramacro",
  10083. height: math.unit(1567005010, "miles")
  10084. },
  10085. {
  10086. name: "Examacro",
  10087. height: math.unit(1425, "parsecs")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10093. {
  10094. front: {
  10095. height: math.unit(400, "feet"),
  10096. weight: math.unit(44444444, "lb"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/major-colonel/front.svg"
  10100. }
  10101. },
  10102. back: {
  10103. height: math.unit(400, "feet"),
  10104. weight: math.unit(44444444, "lb"),
  10105. name: "Back",
  10106. image: {
  10107. source: "./media/characters/major-colonel/back.svg"
  10108. }
  10109. },
  10110. },
  10111. [
  10112. {
  10113. name: "Macro",
  10114. height: math.unit(400, "feet"),
  10115. default: true
  10116. },
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10121. {
  10122. catFront: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(120, "lb"),
  10125. name: "Front (Cat Side)",
  10126. image: {
  10127. source: "./media/characters/axel-lycan/cat-front.svg",
  10128. extra: 430 / 402,
  10129. bottom: 43 / 472.35
  10130. }
  10131. },
  10132. catBack: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(120, "lb"),
  10135. name: "Back (Cat Side)",
  10136. image: {
  10137. source: "./media/characters/axel-lycan/cat-back.svg",
  10138. extra: 447 / 419,
  10139. bottom: 23.3 / 469
  10140. }
  10141. },
  10142. wolfFront: {
  10143. height: math.unit(6, "feet"),
  10144. weight: math.unit(120, "lb"),
  10145. name: "Front (Wolf Side)",
  10146. image: {
  10147. source: "./media/characters/axel-lycan/wolf-front.svg",
  10148. extra: 485 / 456,
  10149. bottom: 19 / 504
  10150. }
  10151. },
  10152. wolfBack: {
  10153. height: math.unit(6, "feet"),
  10154. weight: math.unit(120, "lb"),
  10155. name: "Back (Wolf Side)",
  10156. image: {
  10157. source: "./media/characters/axel-lycan/wolf-back.svg",
  10158. extra: 475 / 438,
  10159. bottom: 39.2 / 514
  10160. }
  10161. },
  10162. },
  10163. [
  10164. {
  10165. name: "Macro",
  10166. height: math.unit(1, "km"),
  10167. default: true
  10168. },
  10169. ]
  10170. ))
  10171. characterMakers.push(() => makeCharacter(
  10172. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10173. {
  10174. front: {
  10175. height: math.unit(5 + 9 / 12, "feet"),
  10176. weight: math.unit(175, "lb"),
  10177. name: "Front",
  10178. image: {
  10179. source: "./media/characters/vanrel-hyena/front.svg",
  10180. extra: 1086 / 1010,
  10181. bottom: 0.04
  10182. }
  10183. },
  10184. },
  10185. [
  10186. {
  10187. name: "Normal",
  10188. height: math.unit(5 + 9 / 12, "feet"),
  10189. default: true
  10190. },
  10191. ]
  10192. ))
  10193. characterMakers.push(() => makeCharacter(
  10194. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10195. {
  10196. front: {
  10197. height: math.unit(6, "feet"),
  10198. weight: math.unit(103, "lb"),
  10199. name: "Front",
  10200. image: {
  10201. source: "./media/characters/abbott-absol/front.svg",
  10202. extra: 2010 / 1842
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Megamicro",
  10209. height: math.unit(0.1, "mm")
  10210. },
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(1, "inch")
  10214. },
  10215. {
  10216. name: "Normal",
  10217. height: math.unit(6, "feet"),
  10218. default: true
  10219. },
  10220. ]
  10221. ))
  10222. characterMakers.push(() => makeCharacter(
  10223. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10224. {
  10225. front: {
  10226. height: math.unit(6, "feet"),
  10227. weight: math.unit(264, "lb"),
  10228. name: "Front",
  10229. image: {
  10230. source: "./media/characters/hector/front.svg",
  10231. extra: 2280 / 2130,
  10232. bottom: 0.07
  10233. }
  10234. },
  10235. },
  10236. [
  10237. {
  10238. name: "Normal",
  10239. height: math.unit(12.25, "foot"),
  10240. default: true
  10241. },
  10242. {
  10243. name: "Macro",
  10244. height: math.unit(160, "feet")
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(150, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/sal/front.svg",
  10257. extra: 1846 / 1699,
  10258. bottom: 0.04
  10259. }
  10260. },
  10261. },
  10262. [
  10263. {
  10264. name: "Megamacro",
  10265. height: math.unit(10, "miles"),
  10266. default: true
  10267. },
  10268. ]
  10269. ))
  10270. characterMakers.push(() => makeCharacter(
  10271. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10272. {
  10273. front: {
  10274. height: math.unit(3, "meters"),
  10275. weight: math.unit(450, "kg"),
  10276. name: "front",
  10277. image: {
  10278. source: "./media/characters/ranger/front.svg",
  10279. extra: 2401 / 2243,
  10280. bottom: 0.05
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(3, "meters"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(14, "feet"),
  10297. weight: math.unit(800, "kg"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/theresa/front.svg",
  10301. extra: 3575 / 3346,
  10302. bottom: 0.03
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(14, "feet"),
  10310. default: true
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10316. {
  10317. front: {
  10318. height: math.unit(6, "feet"),
  10319. weight: math.unit(3, "kg"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/ine/front.svg",
  10323. extra: 678 / 539,
  10324. bottom: 0.023
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(2.265, "feet"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(5, "feet"),
  10341. weight: math.unit(30, "kg"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/vial/front.svg",
  10345. extra: 1365 / 1277,
  10346. bottom: 0.04
  10347. }
  10348. },
  10349. },
  10350. [
  10351. {
  10352. name: "Normal",
  10353. height: math.unit(5, "feet"),
  10354. default: true
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10360. {
  10361. side: {
  10362. height: math.unit(3.4, "meters"),
  10363. weight: math.unit(1000, "lb"),
  10364. name: "Side",
  10365. image: {
  10366. source: "./media/characters/rovoska/side.svg",
  10367. extra: 4403 / 1515
  10368. }
  10369. },
  10370. },
  10371. [
  10372. {
  10373. name: "Normal",
  10374. height: math.unit(3.4, "meters"),
  10375. default: true
  10376. },
  10377. ]
  10378. ))
  10379. characterMakers.push(() => makeCharacter(
  10380. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10381. {
  10382. front: {
  10383. height: math.unit(8, "feet"),
  10384. weight: math.unit(315, "lb"),
  10385. name: "Front",
  10386. image: {
  10387. source: "./media/characters/gunner-rotthbauer/front.svg"
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(8, "feet"),
  10392. weight: math.unit(315, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/gunner-rotthbauer/back.svg"
  10396. }
  10397. },
  10398. },
  10399. [
  10400. {
  10401. name: "Micro",
  10402. height: math.unit(3.5, "inches")
  10403. },
  10404. {
  10405. name: "Normal",
  10406. height: math.unit(8, "feet"),
  10407. default: true
  10408. },
  10409. {
  10410. name: "Macro",
  10411. height: math.unit(250, "feet")
  10412. },
  10413. {
  10414. name: "Megamacro",
  10415. height: math.unit(1, "AU")
  10416. },
  10417. ]
  10418. ))
  10419. characterMakers.push(() => makeCharacter(
  10420. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10421. {
  10422. front: {
  10423. height: math.unit(5 + 5 / 12, "feet"),
  10424. weight: math.unit(140, "lb"),
  10425. name: "Front",
  10426. image: {
  10427. source: "./media/characters/allatia/front.svg",
  10428. extra: 1227 / 1180,
  10429. bottom: 0.027
  10430. }
  10431. },
  10432. },
  10433. [
  10434. {
  10435. name: "Normal",
  10436. height: math.unit(5 + 5 / 12, "feet")
  10437. },
  10438. {
  10439. name: "Macro",
  10440. height: math.unit(250, "feet"),
  10441. default: true
  10442. },
  10443. {
  10444. name: "Megamacro",
  10445. height: math.unit(8, "miles")
  10446. }
  10447. ]
  10448. ))
  10449. characterMakers.push(() => makeCharacter(
  10450. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10451. {
  10452. front: {
  10453. height: math.unit(6, "feet"),
  10454. weight: math.unit(120, "lb"),
  10455. name: "Front",
  10456. image: {
  10457. source: "./media/characters/tene/front.svg",
  10458. extra: 814/750,
  10459. bottom: 36/850
  10460. }
  10461. },
  10462. stomping: {
  10463. height: math.unit(2.025, "meters"),
  10464. weight: math.unit(120, "lb"),
  10465. name: "Stomping",
  10466. image: {
  10467. source: "./media/characters/tene/stomping.svg",
  10468. extra: 885/821,
  10469. bottom: 15/900
  10470. }
  10471. },
  10472. sitting: {
  10473. height: math.unit(1, "meter"),
  10474. weight: math.unit(120, "lb"),
  10475. name: "Sitting",
  10476. image: {
  10477. source: "./media/characters/tene/sitting.svg",
  10478. extra: 396/366,
  10479. bottom: 79/475
  10480. }
  10481. },
  10482. smiling: {
  10483. height: math.unit(1.2, "feet"),
  10484. name: "Smiling",
  10485. image: {
  10486. source: "./media/characters/tene/smiling.svg",
  10487. extra: 1364/1071,
  10488. bottom: 0/1364
  10489. }
  10490. },
  10491. smug: {
  10492. height: math.unit(1.3, "feet"),
  10493. name: "Smug",
  10494. image: {
  10495. source: "./media/characters/tene/smug.svg",
  10496. extra: 1323/1082,
  10497. bottom: 0/1323
  10498. }
  10499. },
  10500. feral: {
  10501. height: math.unit(3.9, "feet"),
  10502. weight: math.unit(250, "lb"),
  10503. name: "Feral",
  10504. image: {
  10505. source: "./media/characters/tene/feral.svg",
  10506. extra: 717 / 458,
  10507. bottom: 0.179
  10508. }
  10509. },
  10510. },
  10511. [
  10512. {
  10513. name: "Normal",
  10514. height: math.unit(6, "feet")
  10515. },
  10516. {
  10517. name: "Macro",
  10518. height: math.unit(300, "feet"),
  10519. default: true
  10520. },
  10521. {
  10522. name: "Megamacro",
  10523. height: math.unit(5, "miles")
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10529. {
  10530. side: {
  10531. height: math.unit(6, "feet"),
  10532. name: "Side",
  10533. image: {
  10534. source: "./media/characters/evander/side.svg",
  10535. extra: 877 / 477
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(0.83, "meters"),
  10543. default: true
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(12, "feet"),
  10552. weight: math.unit(1000, "lb"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10556. extra: 1762 / 1611
  10557. }
  10558. },
  10559. back: {
  10560. height: math.unit(12, "feet"),
  10561. weight: math.unit(1000, "lb"),
  10562. name: "Back",
  10563. image: {
  10564. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10565. extra: 1762 / 1611
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Normal",
  10572. height: math.unit(12, "feet"),
  10573. default: true
  10574. },
  10575. {
  10576. name: "Kaiju",
  10577. height: math.unit(150, "feet")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(6, "feet"),
  10586. weight: math.unit(150, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/zero-alurus/front.svg"
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/zero-alurus/back.svg"
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(5 + 10 / 12, "feet")
  10605. },
  10606. {
  10607. name: "Macro",
  10608. height: math.unit(60, "feet"),
  10609. default: true
  10610. },
  10611. {
  10612. name: "Macro+",
  10613. height: math.unit(450, "feet")
  10614. },
  10615. ]
  10616. ))
  10617. characterMakers.push(() => makeCharacter(
  10618. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10619. {
  10620. front: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(200, "lb"),
  10623. name: "Front",
  10624. image: {
  10625. source: "./media/characters/mega-shi/front.svg",
  10626. extra: 1279 / 1250,
  10627. bottom: 0.02
  10628. }
  10629. },
  10630. back: {
  10631. height: math.unit(6, "feet"),
  10632. weight: math.unit(200, "lb"),
  10633. name: "Back",
  10634. image: {
  10635. source: "./media/characters/mega-shi/back.svg",
  10636. extra: 1279 / 1250,
  10637. bottom: 0.02
  10638. }
  10639. },
  10640. },
  10641. [
  10642. {
  10643. name: "Micro",
  10644. height: math.unit(16 + 6 / 12, "feet")
  10645. },
  10646. {
  10647. name: "Third Dimension",
  10648. height: math.unit(40, "meters")
  10649. },
  10650. {
  10651. name: "Normal",
  10652. height: math.unit(660, "feet"),
  10653. default: true
  10654. },
  10655. {
  10656. name: "Megamacro",
  10657. height: math.unit(10, "miles")
  10658. },
  10659. {
  10660. name: "Planetary Launch",
  10661. height: math.unit(500, "miles")
  10662. },
  10663. {
  10664. name: "Interstellar",
  10665. height: math.unit(1e9, "miles")
  10666. },
  10667. {
  10668. name: "Leaving the Universe",
  10669. height: math.unit(1, "gigaparsec")
  10670. },
  10671. {
  10672. name: "Travelling Universes",
  10673. height: math.unit(30e15, "parsecs")
  10674. },
  10675. ]
  10676. ))
  10677. characterMakers.push(() => makeCharacter(
  10678. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10679. {
  10680. front: {
  10681. height: math.unit(5 + 4/12, "feet"),
  10682. weight: math.unit(120, "lb"),
  10683. name: "Front",
  10684. image: {
  10685. source: "./media/characters/odyssey/front.svg",
  10686. extra: 1747/1571,
  10687. bottom: 47/1794
  10688. }
  10689. },
  10690. side: {
  10691. height: math.unit(5.1, "feet"),
  10692. weight: math.unit(120, "lb"),
  10693. name: "Side",
  10694. image: {
  10695. source: "./media/characters/odyssey/side.svg",
  10696. extra: 1847/1619,
  10697. bottom: 47/1894
  10698. }
  10699. },
  10700. lounging: {
  10701. height: math.unit(1.464, "feet"),
  10702. weight: math.unit(120, "lb"),
  10703. name: "Lounging",
  10704. image: {
  10705. source: "./media/characters/odyssey/lounging.svg",
  10706. extra: 1235/837,
  10707. bottom: 551/1786
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Normal",
  10714. height: math.unit(5 + 4 / 12, "feet")
  10715. },
  10716. {
  10717. name: "Macro",
  10718. height: math.unit(1, "km")
  10719. },
  10720. {
  10721. name: "Megamacro",
  10722. height: math.unit(3000, "km")
  10723. },
  10724. {
  10725. name: "Gigamacro",
  10726. height: math.unit(1, "AU"),
  10727. default: true
  10728. },
  10729. {
  10730. name: "Omniversal",
  10731. height: math.unit(100e14, "lightyears")
  10732. },
  10733. ]
  10734. ))
  10735. characterMakers.push(() => makeCharacter(
  10736. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10737. {
  10738. front: {
  10739. height: math.unit(6, "feet"),
  10740. weight: math.unit(300, "lb"),
  10741. name: "Front",
  10742. image: {
  10743. source: "./media/characters/mekuto/front.svg",
  10744. extra: 921 / 832,
  10745. bottom: 0.03
  10746. }
  10747. },
  10748. hand: {
  10749. height: math.unit(6 / 10.24, "feet"),
  10750. name: "Hand",
  10751. image: {
  10752. source: "./media/characters/mekuto/hand.svg"
  10753. }
  10754. },
  10755. foot: {
  10756. height: math.unit(6 / 5.05, "feet"),
  10757. name: "Foot",
  10758. image: {
  10759. source: "./media/characters/mekuto/foot.svg"
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Minimicro",
  10766. height: math.unit(0.2, "inches")
  10767. },
  10768. {
  10769. name: "Micro",
  10770. height: math.unit(1.5, "inches")
  10771. },
  10772. {
  10773. name: "Normal",
  10774. height: math.unit(5 + 11 / 12, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Minimacro",
  10779. height: math.unit(17 + 9 / 12, "feet")
  10780. },
  10781. {
  10782. name: "Macro",
  10783. height: math.unit(177.5, "feet")
  10784. },
  10785. {
  10786. name: "Megamacro",
  10787. height: math.unit(152, "miles")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6.5, "inches"),
  10796. weight: math.unit(13, "oz"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/dafydd-tomos/front.svg",
  10800. extra: 2990 / 2603,
  10801. bottom: 0.03
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Micro",
  10808. height: math.unit(6.5, "inches"),
  10809. default: true
  10810. },
  10811. ]
  10812. ))
  10813. characterMakers.push(() => makeCharacter(
  10814. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10815. {
  10816. front: {
  10817. height: math.unit(6, "feet"),
  10818. weight: math.unit(150, "lb"),
  10819. name: "Front",
  10820. image: {
  10821. source: "./media/characters/splinter/front.svg",
  10822. extra: 2990 / 2882,
  10823. bottom: 0.04
  10824. }
  10825. },
  10826. back: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Back",
  10830. image: {
  10831. source: "./media/characters/splinter/back.svg",
  10832. extra: 2990 / 2882,
  10833. bottom: 0.04
  10834. }
  10835. },
  10836. },
  10837. [
  10838. {
  10839. name: "Normal",
  10840. height: math.unit(6, "feet")
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(230, "meters"),
  10845. default: true
  10846. },
  10847. ]
  10848. ))
  10849. characterMakers.push(() => makeCharacter(
  10850. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10851. {
  10852. front: {
  10853. height: math.unit(4 + 10 / 12, "feet"),
  10854. weight: math.unit(480, "lb"),
  10855. name: "Front",
  10856. image: {
  10857. source: "./media/characters/snow-gabumon/front.svg",
  10858. extra: 1140 / 963,
  10859. bottom: 0.058
  10860. }
  10861. },
  10862. back: {
  10863. height: math.unit(4 + 10 / 12, "feet"),
  10864. weight: math.unit(480, "lb"),
  10865. name: "Back",
  10866. image: {
  10867. source: "./media/characters/snow-gabumon/back.svg",
  10868. extra: 1115 / 962,
  10869. bottom: 0.041
  10870. }
  10871. },
  10872. frontUndresed: {
  10873. height: math.unit(4 + 10 / 12, "feet"),
  10874. weight: math.unit(480, "lb"),
  10875. name: "Front (Undressed)",
  10876. image: {
  10877. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10878. extra: 1061 / 960,
  10879. bottom: 0.045
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "inch")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(4 + 10 / 12, "feet"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(200, "feet")
  10896. },
  10897. {
  10898. name: "Megamacro",
  10899. height: math.unit(120, "miles")
  10900. },
  10901. {
  10902. name: "Gigamacro",
  10903. height: math.unit(9800, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(1.7, "meters"),
  10912. weight: math.unit(140, "lb"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/moody/front.svg",
  10916. extra: 3226 / 3007,
  10917. bottom: 0.087
  10918. }
  10919. },
  10920. },
  10921. [
  10922. {
  10923. name: "Micro",
  10924. height: math.unit(1, "mm")
  10925. },
  10926. {
  10927. name: "Normal",
  10928. height: math.unit(1.7, "meters"),
  10929. default: true
  10930. },
  10931. {
  10932. name: "Macro",
  10933. height: math.unit(80, "meters")
  10934. },
  10935. {
  10936. name: "Macro+",
  10937. height: math.unit(500, "meters")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(150, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/zyas/front.svg",
  10950. extra: 1180 / 1120,
  10951. bottom: 0.045
  10952. }
  10953. },
  10954. },
  10955. [
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(10, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(500, "feet")
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(5, "miles")
  10968. },
  10969. {
  10970. name: "Teramacro",
  10971. height: math.unit(150000, "miles")
  10972. },
  10973. ]
  10974. ))
  10975. characterMakers.push(() => makeCharacter(
  10976. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10977. {
  10978. front: {
  10979. height: math.unit(6, "feet"),
  10980. weight: math.unit(150, "lb"),
  10981. name: "Front",
  10982. image: {
  10983. source: "./media/characters/cuon/front.svg",
  10984. extra: 1390 / 1320,
  10985. bottom: 0.008
  10986. }
  10987. },
  10988. },
  10989. [
  10990. {
  10991. name: "Micro",
  10992. height: math.unit(3, "inches")
  10993. },
  10994. {
  10995. name: "Normal",
  10996. height: math.unit(18 + 9 / 12, "feet"),
  10997. default: true
  10998. },
  10999. {
  11000. name: "Macro",
  11001. height: math.unit(360, "feet")
  11002. },
  11003. {
  11004. name: "Megamacro",
  11005. height: math.unit(360, "miles")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(2.4, "meters"),
  11014. weight: math.unit(70, "kg"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/nyanuxk/front.svg",
  11018. extra: 1172 / 1084,
  11019. bottom: 0.065
  11020. }
  11021. },
  11022. side: {
  11023. height: math.unit(2.4, "meters"),
  11024. weight: math.unit(70, "kg"),
  11025. name: "Side",
  11026. image: {
  11027. source: "./media/characters/nyanuxk/side.svg",
  11028. extra: 1190 / 1132,
  11029. bottom: 0.007
  11030. }
  11031. },
  11032. back: {
  11033. height: math.unit(2.4, "meters"),
  11034. weight: math.unit(70, "kg"),
  11035. name: "Back",
  11036. image: {
  11037. source: "./media/characters/nyanuxk/back.svg",
  11038. extra: 1200 / 1141,
  11039. bottom: 0.015
  11040. }
  11041. },
  11042. foot: {
  11043. height: math.unit(0.52, "meters"),
  11044. name: "Foot",
  11045. image: {
  11046. source: "./media/characters/nyanuxk/foot.svg"
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Micro",
  11053. height: math.unit(2, "cm")
  11054. },
  11055. {
  11056. name: "Normal",
  11057. height: math.unit(2.4, "meters"),
  11058. default: true
  11059. },
  11060. {
  11061. name: "Smaller Macro",
  11062. height: math.unit(120, "meters")
  11063. },
  11064. {
  11065. name: "Bigger Macro",
  11066. height: math.unit(1.2, "km")
  11067. },
  11068. {
  11069. name: "Megamacro",
  11070. height: math.unit(15, "kilometers")
  11071. },
  11072. {
  11073. name: "Gigamacro",
  11074. height: math.unit(2000, "km")
  11075. },
  11076. {
  11077. name: "Teramacro",
  11078. height: math.unit(500000, "km")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11084. {
  11085. side: {
  11086. height: math.unit(6, "feet"),
  11087. name: "Side",
  11088. image: {
  11089. source: "./media/characters/ailbhe/side.svg",
  11090. extra: 757 / 464,
  11091. bottom: 0.041
  11092. }
  11093. },
  11094. },
  11095. [
  11096. {
  11097. name: "Normal",
  11098. height: math.unit(1.07, "meters"),
  11099. default: true
  11100. },
  11101. ]
  11102. ))
  11103. characterMakers.push(() => makeCharacter(
  11104. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11105. {
  11106. front: {
  11107. height: math.unit(6, "feet"),
  11108. weight: math.unit(120, "kg"),
  11109. name: "Front",
  11110. image: {
  11111. source: "./media/characters/zevulfius/front.svg",
  11112. extra: 965 / 903
  11113. }
  11114. },
  11115. side: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(120, "kg"),
  11118. name: "Side",
  11119. image: {
  11120. source: "./media/characters/zevulfius/side.svg",
  11121. extra: 939 / 900
  11122. }
  11123. },
  11124. back: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(120, "kg"),
  11127. name: "Back",
  11128. image: {
  11129. source: "./media/characters/zevulfius/back.svg",
  11130. extra: 918 / 854,
  11131. bottom: 0.005
  11132. }
  11133. },
  11134. foot: {
  11135. height: math.unit(6 / 3.72, "feet"),
  11136. name: "Foot",
  11137. image: {
  11138. source: "./media/characters/zevulfius/foot.svg"
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(750, "meters")
  11146. },
  11147. {
  11148. name: "Megamacro",
  11149. height: math.unit(20, "km"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Gigamacro",
  11154. height: math.unit(2000, "km")
  11155. },
  11156. {
  11157. name: "Teramacro",
  11158. height: math.unit(250000, "km")
  11159. },
  11160. ]
  11161. ))
  11162. characterMakers.push(() => makeCharacter(
  11163. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11164. {
  11165. front: {
  11166. height: math.unit(100, "feet"),
  11167. weight: math.unit(350, "kg"),
  11168. name: "Front",
  11169. image: {
  11170. source: "./media/characters/rikes/front.svg",
  11171. extra: 1565 / 1483,
  11172. bottom: 0.017
  11173. }
  11174. },
  11175. },
  11176. [
  11177. {
  11178. name: "Macro",
  11179. height: math.unit(100, "feet"),
  11180. default: true
  11181. },
  11182. ]
  11183. ))
  11184. characterMakers.push(() => makeCharacter(
  11185. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11186. {
  11187. front: {
  11188. height: math.unit(8, "feet"),
  11189. weight: math.unit(356, "lb"),
  11190. name: "Front",
  11191. image: {
  11192. source: "./media/characters/adam-silver-mane/front.svg",
  11193. extra: 1036/937,
  11194. bottom: 63/1099
  11195. }
  11196. },
  11197. side: {
  11198. height: math.unit(8, "feet"),
  11199. weight: math.unit(356, "lb"),
  11200. name: "Side",
  11201. image: {
  11202. source: "./media/characters/adam-silver-mane/side.svg",
  11203. extra: 997/901,
  11204. bottom: 59/1056
  11205. }
  11206. },
  11207. frontNsfw: {
  11208. height: math.unit(8, "feet"),
  11209. weight: math.unit(356, "lb"),
  11210. name: "Front (NSFW)",
  11211. image: {
  11212. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11213. extra: 1036/937,
  11214. bottom: 63/1099
  11215. }
  11216. },
  11217. sideNsfw: {
  11218. height: math.unit(8, "feet"),
  11219. weight: math.unit(356, "lb"),
  11220. name: "Side (NSFW)",
  11221. image: {
  11222. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11223. extra: 997/901,
  11224. bottom: 59/1056
  11225. }
  11226. },
  11227. dick: {
  11228. height: math.unit(2.1, "feet"),
  11229. name: "Dick",
  11230. image: {
  11231. source: "./media/characters/adam-silver-mane/dick.svg"
  11232. }
  11233. },
  11234. taur: {
  11235. height: math.unit(16, "feet"),
  11236. weight: math.unit(1500, "kg"),
  11237. name: "Taur",
  11238. image: {
  11239. source: "./media/characters/adam-silver-mane/taur.svg",
  11240. extra: 1713 / 1571,
  11241. bottom: 0.01
  11242. }
  11243. },
  11244. },
  11245. [
  11246. {
  11247. name: "Normal",
  11248. height: math.unit(8, "feet")
  11249. },
  11250. {
  11251. name: "Minimacro",
  11252. height: math.unit(80, "feet")
  11253. },
  11254. {
  11255. name: "MDA",
  11256. height: math.unit(80, "meters")
  11257. },
  11258. {
  11259. name: "Macro",
  11260. height: math.unit(800, "feet"),
  11261. default: true
  11262. },
  11263. {
  11264. name: "Megamacro",
  11265. height: math.unit(8000, "feet")
  11266. },
  11267. {
  11268. name: "Gigamacro",
  11269. height: math.unit(800, "miles")
  11270. },
  11271. {
  11272. name: "Teramacro",
  11273. height: math.unit(80000, "miles")
  11274. },
  11275. {
  11276. name: "Celestial",
  11277. height: math.unit(8e6, "miles")
  11278. },
  11279. {
  11280. name: "Star Dragon",
  11281. height: math.unit(800000, "parsecs")
  11282. },
  11283. {
  11284. name: "Godly",
  11285. height: math.unit(800, "teraparsecs")
  11286. },
  11287. ]
  11288. ))
  11289. characterMakers.push(() => makeCharacter(
  11290. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11291. {
  11292. front: {
  11293. height: math.unit(6, "feet"),
  11294. weight: math.unit(150, "lb"),
  11295. name: "Front",
  11296. image: {
  11297. source: "./media/characters/ky'owin/front.svg",
  11298. extra: 3888 / 3068,
  11299. bottom: 0.015
  11300. }
  11301. },
  11302. },
  11303. [
  11304. {
  11305. name: "Normal",
  11306. height: math.unit(6 + 8 / 12, "feet")
  11307. },
  11308. {
  11309. name: "Large",
  11310. height: math.unit(68, "feet")
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(132, "feet")
  11315. },
  11316. {
  11317. name: "Macro+",
  11318. height: math.unit(340, "feet")
  11319. },
  11320. {
  11321. name: "Macro++",
  11322. height: math.unit(680, "feet"),
  11323. default: true
  11324. },
  11325. {
  11326. name: "Megamacro",
  11327. height: math.unit(1, "mile")
  11328. },
  11329. {
  11330. name: "Megamacro+",
  11331. height: math.unit(10, "miles")
  11332. },
  11333. ]
  11334. ))
  11335. characterMakers.push(() => makeCharacter(
  11336. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11337. {
  11338. front: {
  11339. height: math.unit(4, "feet"),
  11340. weight: math.unit(50, "lb"),
  11341. name: "Front",
  11342. image: {
  11343. source: "./media/characters/mal/front.svg",
  11344. extra: 785 / 724,
  11345. bottom: 0.07
  11346. }
  11347. },
  11348. },
  11349. [
  11350. {
  11351. name: "Micro",
  11352. height: math.unit(4, "inches")
  11353. },
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(4, "feet"),
  11357. default: true
  11358. },
  11359. {
  11360. name: "Macro",
  11361. height: math.unit(200, "feet")
  11362. },
  11363. ]
  11364. ))
  11365. characterMakers.push(() => makeCharacter(
  11366. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11367. {
  11368. front: {
  11369. height: math.unit(6, "feet"),
  11370. weight: math.unit(150, "lb"),
  11371. name: "Front",
  11372. image: {
  11373. source: "./media/characters/jordan-deware/front.svg",
  11374. extra: 1191 / 1012
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Nano",
  11381. height: math.unit(0.01, "mm")
  11382. },
  11383. {
  11384. name: "Minimicro",
  11385. height: math.unit(1, "mm")
  11386. },
  11387. {
  11388. name: "Micro",
  11389. height: math.unit(0.5, "inches")
  11390. },
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(4, "feet"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Minimacro",
  11398. height: math.unit(40, "meters")
  11399. },
  11400. {
  11401. name: "Small Macro",
  11402. height: math.unit(400, "meters")
  11403. },
  11404. {
  11405. name: "Macro",
  11406. height: math.unit(4, "miles")
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(40, "miles")
  11411. },
  11412. {
  11413. name: "Megamacro+",
  11414. height: math.unit(400, "miles")
  11415. },
  11416. {
  11417. name: "Gigamacro",
  11418. height: math.unit(400000, "miles")
  11419. },
  11420. ]
  11421. ))
  11422. characterMakers.push(() => makeCharacter(
  11423. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11424. {
  11425. side: {
  11426. height: math.unit(6, "feet"),
  11427. weight: math.unit(150, "lb"),
  11428. name: "Side",
  11429. image: {
  11430. source: "./media/characters/kimiko/side.svg",
  11431. extra: 600 / 358
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Normal",
  11438. height: math.unit(15, "feet"),
  11439. default: true
  11440. },
  11441. {
  11442. name: "Macro",
  11443. height: math.unit(220, "feet")
  11444. },
  11445. {
  11446. name: "Macro+",
  11447. height: math.unit(1450, "feet")
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(11500, "feet")
  11452. },
  11453. {
  11454. name: "Gigamacro",
  11455. height: math.unit(9500, "miles")
  11456. },
  11457. {
  11458. name: "Teramacro",
  11459. height: math.unit(2208005005, "miles")
  11460. },
  11461. {
  11462. name: "Examacro",
  11463. height: math.unit(2750, "parsecs")
  11464. },
  11465. {
  11466. name: "Zettamacro",
  11467. height: math.unit(101500, "parsecs")
  11468. },
  11469. ]
  11470. ))
  11471. characterMakers.push(() => makeCharacter(
  11472. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11473. {
  11474. front: {
  11475. height: math.unit(6, "feet"),
  11476. weight: math.unit(70, "kg"),
  11477. name: "Front",
  11478. image: {
  11479. source: "./media/characters/andrew-sleepy/front.svg"
  11480. }
  11481. },
  11482. side: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(70, "kg"),
  11485. name: "Side",
  11486. image: {
  11487. source: "./media/characters/andrew-sleepy/side.svg"
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Micro",
  11494. height: math.unit(1, "mm"),
  11495. default: true
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(150, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/judio/front.svg",
  11508. extra: 1258 / 1110
  11509. }
  11510. },
  11511. },
  11512. [
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(5 + 6 / 12, "feet")
  11516. },
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(1000, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(10, "miles")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11530. {
  11531. frontDressed: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(68, "kg"),
  11534. name: "Front (Dressed)",
  11535. image: {
  11536. source: "./media/characters/nomaxice/front-dressed.svg",
  11537. extra: 1137/824,
  11538. bottom: 74/1211
  11539. }
  11540. },
  11541. frontShorts: {
  11542. height: math.unit(6, "feet"),
  11543. weight: math.unit(68, "kg"),
  11544. name: "Front (Shorts)",
  11545. image: {
  11546. source: "./media/characters/nomaxice/front-shorts.svg",
  11547. extra: 1137/824,
  11548. bottom: 74/1211
  11549. }
  11550. },
  11551. back: {
  11552. height: math.unit(6, "feet"),
  11553. weight: math.unit(68, "kg"),
  11554. name: "Back",
  11555. image: {
  11556. source: "./media/characters/nomaxice/back.svg",
  11557. extra: 822/786,
  11558. bottom: 39/861
  11559. }
  11560. },
  11561. hand: {
  11562. height: math.unit(0.565, "feet"),
  11563. name: "Hand",
  11564. image: {
  11565. source: "./media/characters/nomaxice/hand.svg"
  11566. }
  11567. },
  11568. foot: {
  11569. height: math.unit(1, "feet"),
  11570. name: "Foot",
  11571. image: {
  11572. source: "./media/characters/nomaxice/foot.svg"
  11573. }
  11574. },
  11575. },
  11576. [
  11577. {
  11578. name: "Micro",
  11579. height: math.unit(8, "cm")
  11580. },
  11581. {
  11582. name: "Norm",
  11583. height: math.unit(1.82, "m")
  11584. },
  11585. {
  11586. name: "Norm+",
  11587. height: math.unit(8.8, "feet"),
  11588. default: true
  11589. },
  11590. {
  11591. name: "Big",
  11592. height: math.unit(8, "meters")
  11593. },
  11594. {
  11595. name: "Macro",
  11596. height: math.unit(18, "meters")
  11597. },
  11598. {
  11599. name: "Macro+",
  11600. height: math.unit(88, "meters")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(12, "feet"),
  11609. weight: math.unit(1.5, "tons"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/dydros/front.svg",
  11613. extra: 863 / 800,
  11614. bottom: 0.015
  11615. }
  11616. },
  11617. back: {
  11618. height: math.unit(12, "feet"),
  11619. weight: math.unit(1.5, "tons"),
  11620. name: "Back",
  11621. image: {
  11622. source: "./media/characters/dydros/back.svg",
  11623. extra: 900 / 843,
  11624. bottom: 0.005
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(12, "feet"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(6, "feet"),
  11641. weight: math.unit(100, "kg"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/riggi/front.svg",
  11645. extra: 5787 / 5303
  11646. }
  11647. },
  11648. hyper: {
  11649. height: math.unit(6 * 5 / 3, "feet"),
  11650. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11651. name: "Hyper",
  11652. image: {
  11653. source: "./media/characters/riggi/hyper.svg",
  11654. extra: 3595 / 3485
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Small Macro",
  11661. height: math.unit(50, "feet")
  11662. },
  11663. {
  11664. name: "Default",
  11665. height: math.unit(200, "feet"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Loom",
  11670. height: math.unit(10000, "feet")
  11671. },
  11672. {
  11673. name: "Cruising Altitude",
  11674. height: math.unit(30000, "feet")
  11675. },
  11676. {
  11677. name: "Megamacro",
  11678. height: math.unit(100, "miles")
  11679. },
  11680. {
  11681. name: "Continent Sized",
  11682. height: math.unit(2800, "miles")
  11683. },
  11684. {
  11685. name: "Earth Sized",
  11686. height: math.unit(8000, "miles")
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(250, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/alexi/front.svg",
  11699. extra: 3483 / 3291,
  11700. bottom: 0.04
  11701. }
  11702. },
  11703. back: {
  11704. height: math.unit(6, "feet"),
  11705. weight: math.unit(250, "lb"),
  11706. name: "Back",
  11707. image: {
  11708. source: "./media/characters/alexi/back.svg",
  11709. extra: 3533 / 3356,
  11710. bottom: 0.021
  11711. }
  11712. },
  11713. frontTransforming: {
  11714. height: math.unit(8.58, "feet"),
  11715. weight: math.unit(1300, "lb"),
  11716. name: "Transforming",
  11717. image: {
  11718. source: "./media/characters/alexi/front-transforming.svg",
  11719. extra: 437 / 409,
  11720. bottom: 19 / 458.66
  11721. }
  11722. },
  11723. frontTransformed: {
  11724. height: math.unit(12.5, "feet"),
  11725. weight: math.unit(4000, "lb"),
  11726. name: "Transformed",
  11727. image: {
  11728. source: "./media/characters/alexi/front-transformed.svg",
  11729. extra: 639 / 614,
  11730. bottom: 30.55 / 671
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(14, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Minimacro",
  11742. height: math.unit(30, "meters")
  11743. },
  11744. {
  11745. name: "Macro",
  11746. height: math.unit(500, "meters")
  11747. },
  11748. {
  11749. name: "Megamacro",
  11750. height: math.unit(9000, "km")
  11751. },
  11752. {
  11753. name: "Teramacro",
  11754. height: math.unit(384000, "km")
  11755. },
  11756. ]
  11757. ))
  11758. characterMakers.push(() => makeCharacter(
  11759. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11760. {
  11761. front: {
  11762. height: math.unit(6, "feet"),
  11763. weight: math.unit(150, "lb"),
  11764. name: "Front",
  11765. image: {
  11766. source: "./media/characters/kayroo/front.svg",
  11767. extra: 1153 / 1038,
  11768. bottom: 0.06
  11769. }
  11770. },
  11771. foot: {
  11772. height: math.unit(6, "feet"),
  11773. weight: math.unit(150, "lb"),
  11774. name: "Foot",
  11775. image: {
  11776. source: "./media/characters/kayroo/foot.svg"
  11777. }
  11778. },
  11779. },
  11780. [
  11781. {
  11782. name: "Normal",
  11783. height: math.unit(8, "feet"),
  11784. default: true
  11785. },
  11786. {
  11787. name: "Minimacro",
  11788. height: math.unit(250, "feet")
  11789. },
  11790. {
  11791. name: "Macro",
  11792. height: math.unit(2800, "feet")
  11793. },
  11794. {
  11795. name: "Megamacro",
  11796. height: math.unit(5200, "feet")
  11797. },
  11798. {
  11799. name: "Gigamacro",
  11800. height: math.unit(27000, "feet")
  11801. },
  11802. {
  11803. name: "Omega",
  11804. height: math.unit(45000, "feet")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(18, "feet"),
  11813. weight: math.unit(5800, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/rhys/front.svg",
  11817. extra: 3386 / 3090,
  11818. bottom: 0.07
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Normal",
  11825. height: math.unit(18, "feet"),
  11826. default: true
  11827. },
  11828. {
  11829. name: "Working Size",
  11830. height: math.unit(200, "feet")
  11831. },
  11832. {
  11833. name: "Demolition Size",
  11834. height: math.unit(2000, "feet")
  11835. },
  11836. {
  11837. name: "Maximum Licensed Size",
  11838. height: math.unit(5, "miles")
  11839. },
  11840. {
  11841. name: "Maximum Observed Size",
  11842. height: math.unit(10, "yottameters")
  11843. },
  11844. ]
  11845. ))
  11846. characterMakers.push(() => makeCharacter(
  11847. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11848. {
  11849. front: {
  11850. height: math.unit(6, "feet"),
  11851. weight: math.unit(250, "lb"),
  11852. name: "Front",
  11853. image: {
  11854. source: "./media/characters/toto/front.svg",
  11855. extra: 527 / 479,
  11856. bottom: 0.05
  11857. }
  11858. },
  11859. },
  11860. [
  11861. {
  11862. name: "Micro",
  11863. height: math.unit(3, "feet")
  11864. },
  11865. {
  11866. name: "Normal",
  11867. height: math.unit(10, "feet")
  11868. },
  11869. {
  11870. name: "Macro",
  11871. height: math.unit(150, "feet"),
  11872. default: true
  11873. },
  11874. {
  11875. name: "Megamacro",
  11876. height: math.unit(1200, "feet")
  11877. },
  11878. ]
  11879. ))
  11880. characterMakers.push(() => makeCharacter(
  11881. { name: "King", species: ["lion"], tags: ["anthro"] },
  11882. {
  11883. back: {
  11884. height: math.unit(6, "feet"),
  11885. weight: math.unit(150, "lb"),
  11886. name: "Back",
  11887. image: {
  11888. source: "./media/characters/king/back.svg"
  11889. }
  11890. },
  11891. },
  11892. [
  11893. {
  11894. name: "Micro",
  11895. height: math.unit(2, "inches")
  11896. },
  11897. {
  11898. name: "Normal",
  11899. height: math.unit(8, "feet")
  11900. },
  11901. {
  11902. name: "Macro",
  11903. height: math.unit(200, "feet"),
  11904. default: true
  11905. },
  11906. {
  11907. name: "Megamacro",
  11908. height: math.unit(50, "miles")
  11909. },
  11910. ]
  11911. ))
  11912. characterMakers.push(() => makeCharacter(
  11913. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11914. {
  11915. front: {
  11916. height: math.unit(11, "feet"),
  11917. weight: math.unit(1400, "lb"),
  11918. name: "Front",
  11919. image: {
  11920. source: "./media/characters/cordite/front.svg",
  11921. extra: 1919/1827,
  11922. bottom: 40/1959
  11923. }
  11924. },
  11925. side: {
  11926. height: math.unit(11, "feet"),
  11927. weight: math.unit(1400, "lb"),
  11928. name: "Side",
  11929. image: {
  11930. source: "./media/characters/cordite/side.svg",
  11931. extra: 1908/1793,
  11932. bottom: 38/1946
  11933. }
  11934. },
  11935. back: {
  11936. height: math.unit(11, "feet"),
  11937. weight: math.unit(1400, "lb"),
  11938. name: "Back",
  11939. image: {
  11940. source: "./media/characters/cordite/back.svg",
  11941. extra: 1938/1837,
  11942. bottom: 10/1948
  11943. }
  11944. },
  11945. feral: {
  11946. height: math.unit(2, "feet"),
  11947. weight: math.unit(90, "lb"),
  11948. name: "Feral",
  11949. image: {
  11950. source: "./media/characters/cordite/feral.svg",
  11951. extra: 1260 / 755,
  11952. bottom: 0.05
  11953. }
  11954. },
  11955. },
  11956. [
  11957. {
  11958. name: "Normal",
  11959. height: math.unit(11, "feet"),
  11960. default: true
  11961. },
  11962. ]
  11963. ))
  11964. characterMakers.push(() => makeCharacter(
  11965. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11966. {
  11967. front: {
  11968. height: math.unit(6, "feet"),
  11969. weight: math.unit(150, "lb"),
  11970. name: "Front",
  11971. image: {
  11972. source: "./media/characters/pianostrong/front.svg",
  11973. extra: 6577 / 6254,
  11974. bottom: 0.02
  11975. }
  11976. },
  11977. side: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Side",
  11981. image: {
  11982. source: "./media/characters/pianostrong/side.svg",
  11983. extra: 6106 / 5730
  11984. }
  11985. },
  11986. back: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Back",
  11990. image: {
  11991. source: "./media/characters/pianostrong/back.svg",
  11992. extra: 6085 / 5733,
  11993. bottom: 0.01
  11994. }
  11995. },
  11996. },
  11997. [
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(100, "feet")
  12001. },
  12002. {
  12003. name: "Macro+",
  12004. height: math.unit(300, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Macro++",
  12009. height: math.unit(1000, "feet")
  12010. },
  12011. ]
  12012. ))
  12013. characterMakers.push(() => makeCharacter(
  12014. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12015. {
  12016. front: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(150, "lb"),
  12019. name: "Front",
  12020. image: {
  12021. source: "./media/characters/kona/front.svg",
  12022. extra: 2960 / 2629,
  12023. bottom: 0.005
  12024. }
  12025. },
  12026. },
  12027. [
  12028. {
  12029. name: "Normal",
  12030. height: math.unit(11 + 8 / 12, "feet")
  12031. },
  12032. {
  12033. name: "Macro",
  12034. height: math.unit(850, "feet"),
  12035. default: true
  12036. },
  12037. {
  12038. name: "Macro+",
  12039. height: math.unit(1.5, "km"),
  12040. default: true
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(80, "miles")
  12045. },
  12046. {
  12047. name: "Gigamacro",
  12048. height: math.unit(3500, "miles")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12054. {
  12055. side: {
  12056. height: math.unit(1.9, "meters"),
  12057. weight: math.unit(326, "kg"),
  12058. name: "Side",
  12059. image: {
  12060. source: "./media/characters/levi/side.svg",
  12061. extra: 1704 / 1334,
  12062. bottom: 0.02
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(1.9, "meters"),
  12070. default: true
  12071. },
  12072. {
  12073. name: "Macro",
  12074. height: math.unit(20, "meters")
  12075. },
  12076. {
  12077. name: "Macro+",
  12078. height: math.unit(200, "meters")
  12079. },
  12080. {
  12081. name: "Megamacro",
  12082. height: math.unit(2, "km")
  12083. },
  12084. {
  12085. name: "Megamacro+",
  12086. height: math.unit(20, "km")
  12087. },
  12088. {
  12089. name: "Gigamacro",
  12090. height: math.unit(2500, "km")
  12091. },
  12092. {
  12093. name: "Gigamacro+",
  12094. height: math.unit(120000, "km")
  12095. },
  12096. {
  12097. name: "Teramacro",
  12098. height: math.unit(7.77e6, "km")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(6 + 4/12, "feet"),
  12107. weight: math.unit(190, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/bmc/front.svg",
  12111. extra: 1626/1472,
  12112. bottom: 79/1705
  12113. }
  12114. },
  12115. back: {
  12116. height: math.unit(6 + 4/12, "feet"),
  12117. weight: math.unit(190, "lb"),
  12118. name: "Back",
  12119. image: {
  12120. source: "./media/characters/bmc/back.svg",
  12121. extra: 1640/1479,
  12122. bottom: 45/1685
  12123. }
  12124. },
  12125. frontArmor: {
  12126. height: math.unit(6 + 4/12, "feet"),
  12127. weight: math.unit(190, "lb"),
  12128. name: "Front-armor",
  12129. image: {
  12130. source: "./media/characters/bmc/front-armor.svg",
  12131. extra: 1538/1468,
  12132. bottom: 79/1617
  12133. }
  12134. },
  12135. },
  12136. [
  12137. {
  12138. name: "Human-sized",
  12139. height: math.unit(6 + 4 / 12, "feet")
  12140. },
  12141. {
  12142. name: "Interactive Size",
  12143. height: math.unit(25, "feet")
  12144. },
  12145. {
  12146. name: "Small",
  12147. height: math.unit(250, "feet")
  12148. },
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(1250, "feet"),
  12152. default: true
  12153. },
  12154. {
  12155. name: "Good Day",
  12156. height: math.unit(88, "miles")
  12157. },
  12158. {
  12159. name: "Largest Measured Size",
  12160. height: math.unit(105.960, "galaxies")
  12161. },
  12162. ]
  12163. ))
  12164. characterMakers.push(() => makeCharacter(
  12165. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12166. {
  12167. front: {
  12168. height: math.unit(20, "feet"),
  12169. weight: math.unit(2016, "kg"),
  12170. name: "Front",
  12171. image: {
  12172. source: "./media/characters/sven-the-kaiju/front.svg",
  12173. extra: 1277/1250,
  12174. bottom: 35/1312
  12175. }
  12176. },
  12177. mouth: {
  12178. height: math.unit(1.85, "feet"),
  12179. name: "Mouth",
  12180. image: {
  12181. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12182. }
  12183. },
  12184. },
  12185. [
  12186. {
  12187. name: "Fairy",
  12188. height: math.unit(6, "inches")
  12189. },
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(20, "feet"),
  12193. default: true
  12194. },
  12195. {
  12196. name: "Rampage",
  12197. height: math.unit(200, "feet")
  12198. },
  12199. {
  12200. name: "Archfey Forest Guardian",
  12201. height: math.unit(1, "mile")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(4, "meters"),
  12210. weight: math.unit(2, "tons"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/marik/front.svg",
  12214. extra: 1057 / 1003,
  12215. bottom: 0.08
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(4, "meters"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Macro",
  12227. height: math.unit(20, "meters")
  12228. },
  12229. {
  12230. name: "Megamacro",
  12231. height: math.unit(50, "km")
  12232. },
  12233. {
  12234. name: "Gigamacro",
  12235. height: math.unit(100, "km")
  12236. },
  12237. {
  12238. name: "Alpha Macro",
  12239. height: math.unit(7.88e7, "yottameters")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12245. {
  12246. front: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(110, "lb"),
  12249. name: "Front",
  12250. image: {
  12251. source: "./media/characters/mel/front.svg",
  12252. extra: 736 / 617,
  12253. bottom: 0.017
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Pico",
  12260. height: math.unit(3, "pm")
  12261. },
  12262. {
  12263. name: "Nano",
  12264. height: math.unit(3, "nm")
  12265. },
  12266. {
  12267. name: "Micro",
  12268. height: math.unit(0.3, "mm"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Micro+",
  12273. height: math.unit(3, "mm")
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(5 + 10.5 / 12, "feet")
  12278. },
  12279. ]
  12280. ))
  12281. characterMakers.push(() => makeCharacter(
  12282. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12283. {
  12284. kaiju: {
  12285. height: math.unit(1.75, "meters"),
  12286. weight: math.unit(55, "kg"),
  12287. name: "Kaiju",
  12288. image: {
  12289. source: "./media/characters/lykonous/kaiju.svg",
  12290. extra: 1055 / 946,
  12291. bottom: 0.135
  12292. }
  12293. },
  12294. },
  12295. [
  12296. {
  12297. name: "Normal",
  12298. height: math.unit(2.5, "meters"),
  12299. default: true
  12300. },
  12301. {
  12302. name: "Kaiju Dragon",
  12303. height: math.unit(60, "meters")
  12304. },
  12305. {
  12306. name: "Mega Kaiju",
  12307. height: math.unit(120, "km")
  12308. },
  12309. {
  12310. name: "Giga Kaiju",
  12311. height: math.unit(200, "megameters")
  12312. },
  12313. {
  12314. name: "Terra Kaiju",
  12315. height: math.unit(400, "gigameters")
  12316. },
  12317. {
  12318. name: "Kaiju Dragon God",
  12319. height: math.unit(13000, "exaparsecs")
  12320. },
  12321. ]
  12322. ))
  12323. characterMakers.push(() => makeCharacter(
  12324. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12325. {
  12326. front: {
  12327. height: math.unit(6, "feet"),
  12328. weight: math.unit(150, "lb"),
  12329. name: "Front",
  12330. image: {
  12331. source: "./media/characters/blü/front.svg",
  12332. extra: 1883 / 1564,
  12333. bottom: 0.031
  12334. }
  12335. },
  12336. },
  12337. [
  12338. {
  12339. name: "Normal",
  12340. height: math.unit(13, "feet"),
  12341. default: true
  12342. },
  12343. {
  12344. name: "Big Boi",
  12345. height: math.unit(150, "meters")
  12346. },
  12347. {
  12348. name: "Mini Stomper",
  12349. height: math.unit(300, "meters")
  12350. },
  12351. {
  12352. name: "Macro",
  12353. height: math.unit(1000, "meters")
  12354. },
  12355. {
  12356. name: "Megamacro",
  12357. height: math.unit(11000, "meters")
  12358. },
  12359. {
  12360. name: "Gigamacro",
  12361. height: math.unit(11000, "km")
  12362. },
  12363. {
  12364. name: "Teramacro",
  12365. height: math.unit(420000, "km")
  12366. },
  12367. {
  12368. name: "Examacro",
  12369. height: math.unit(120, "parsecs")
  12370. },
  12371. {
  12372. name: "God Tho",
  12373. height: math.unit(98000000000, "parsecs")
  12374. },
  12375. ]
  12376. ))
  12377. characterMakers.push(() => makeCharacter(
  12378. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12379. {
  12380. taurFront: {
  12381. height: math.unit(6, "feet"),
  12382. weight: math.unit(200, "lb"),
  12383. name: "Taur (Front)",
  12384. image: {
  12385. source: "./media/characters/scales/taur-front.svg",
  12386. extra: 1,
  12387. bottom: 0.05
  12388. }
  12389. },
  12390. taurBack: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(200, "lb"),
  12393. name: "Taur (Back)",
  12394. image: {
  12395. source: "./media/characters/scales/taur-back.svg",
  12396. extra: 1,
  12397. bottom: 0.08
  12398. }
  12399. },
  12400. anthro: {
  12401. height: math.unit(6 * 7 / 12, "feet"),
  12402. weight: math.unit(100, "lb"),
  12403. name: "Anthro",
  12404. image: {
  12405. source: "./media/characters/scales/anthro.svg",
  12406. extra: 1,
  12407. bottom: 0.06
  12408. }
  12409. },
  12410. },
  12411. [
  12412. {
  12413. name: "Normal",
  12414. height: math.unit(12, "feet"),
  12415. default: true
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(6, "feet"),
  12424. weight: math.unit(150, "lb"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/koragos/front.svg",
  12428. extra: 841 / 794,
  12429. bottom: 0.035
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(6, "feet"),
  12434. weight: math.unit(150, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/koragos/back.svg",
  12438. extra: 841 / 810,
  12439. bottom: 0.022
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(6 + 11 / 12, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(490, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(10, "miles")
  12456. },
  12457. {
  12458. name: "Gigamacro",
  12459. height: math.unit(50, "miles")
  12460. },
  12461. ]
  12462. ))
  12463. characterMakers.push(() => makeCharacter(
  12464. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12465. {
  12466. front: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(250, "lb"),
  12469. name: "Front",
  12470. image: {
  12471. source: "./media/characters/xylrem/front.svg",
  12472. extra: 3323 / 3050,
  12473. bottom: 0.065
  12474. }
  12475. },
  12476. },
  12477. [
  12478. {
  12479. name: "Micro",
  12480. height: math.unit(4, "feet")
  12481. },
  12482. {
  12483. name: "Normal",
  12484. height: math.unit(16, "feet"),
  12485. default: true
  12486. },
  12487. {
  12488. name: "Macro",
  12489. height: math.unit(2720, "feet")
  12490. },
  12491. {
  12492. name: "Megamacro",
  12493. height: math.unit(25000, "miles")
  12494. },
  12495. ]
  12496. ))
  12497. characterMakers.push(() => makeCharacter(
  12498. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12499. {
  12500. front: {
  12501. height: math.unit(8, "feet"),
  12502. weight: math.unit(250, "kg"),
  12503. name: "Front",
  12504. image: {
  12505. source: "./media/characters/ikideru/front.svg",
  12506. extra: 930 / 870,
  12507. bottom: 0.087
  12508. }
  12509. },
  12510. back: {
  12511. height: math.unit(8, "feet"),
  12512. weight: math.unit(250, "kg"),
  12513. name: "Back",
  12514. image: {
  12515. source: "./media/characters/ikideru/back.svg",
  12516. extra: 919 / 852,
  12517. bottom: 0.055
  12518. }
  12519. },
  12520. },
  12521. [
  12522. {
  12523. name: "Rare",
  12524. height: math.unit(8, "feet"),
  12525. default: true
  12526. },
  12527. {
  12528. name: "Playful Loom",
  12529. height: math.unit(80, "feet")
  12530. },
  12531. {
  12532. name: "City Leaner",
  12533. height: math.unit(230, "feet")
  12534. },
  12535. {
  12536. name: "Megamacro",
  12537. height: math.unit(2500, "feet")
  12538. },
  12539. {
  12540. name: "Gigamacro",
  12541. height: math.unit(26400, "feet")
  12542. },
  12543. {
  12544. name: "Tectonic Shifter",
  12545. height: math.unit(1.7, "megameters")
  12546. },
  12547. {
  12548. name: "Planet Carer",
  12549. height: math.unit(21, "megameters")
  12550. },
  12551. {
  12552. name: "God",
  12553. height: math.unit(11157.22, "parsecs")
  12554. },
  12555. ]
  12556. ))
  12557. characterMakers.push(() => makeCharacter(
  12558. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12559. {
  12560. front: {
  12561. height: math.unit(6, "feet"),
  12562. weight: math.unit(120, "lb"),
  12563. name: "Front",
  12564. image: {
  12565. source: "./media/characters/neo/front.svg"
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Micro",
  12572. height: math.unit(2, "inches"),
  12573. default: true
  12574. },
  12575. {
  12576. name: "Human Size",
  12577. height: math.unit(5 + 8 / 12, "feet")
  12578. },
  12579. ]
  12580. ))
  12581. characterMakers.push(() => makeCharacter(
  12582. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12583. {
  12584. front: {
  12585. height: math.unit(13 + 10 / 12, "feet"),
  12586. weight: math.unit(5320, "lb"),
  12587. name: "Front",
  12588. image: {
  12589. source: "./media/characters/chauncey-chantz/front.svg",
  12590. extra: 1587 / 1435,
  12591. bottom: 0.02
  12592. }
  12593. },
  12594. },
  12595. [
  12596. {
  12597. name: "Normal",
  12598. height: math.unit(13 + 10 / 12, "feet"),
  12599. default: true
  12600. },
  12601. {
  12602. name: "Macro",
  12603. height: math.unit(45, "feet")
  12604. },
  12605. {
  12606. name: "Megamacro",
  12607. height: math.unit(250, "miles")
  12608. },
  12609. {
  12610. name: "Planetary",
  12611. height: math.unit(10000, "miles")
  12612. },
  12613. {
  12614. name: "Galactic",
  12615. height: math.unit(40000, "parsecs")
  12616. },
  12617. {
  12618. name: "Universal",
  12619. height: math.unit(1, "yottameter")
  12620. },
  12621. ]
  12622. ))
  12623. characterMakers.push(() => makeCharacter(
  12624. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12625. {
  12626. front: {
  12627. height: math.unit(6, "feet"),
  12628. weight: math.unit(150, "lb"),
  12629. name: "Front",
  12630. image: {
  12631. source: "./media/characters/epifox/front.svg",
  12632. extra: 1,
  12633. bottom: 0.075
  12634. }
  12635. },
  12636. },
  12637. [
  12638. {
  12639. name: "Micro",
  12640. height: math.unit(6, "inches")
  12641. },
  12642. {
  12643. name: "Normal",
  12644. height: math.unit(12, "feet"),
  12645. default: true
  12646. },
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(3810, "feet")
  12650. },
  12651. {
  12652. name: "Megamacro",
  12653. height: math.unit(500, "miles")
  12654. },
  12655. ]
  12656. ))
  12657. characterMakers.push(() => makeCharacter(
  12658. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12659. {
  12660. front: {
  12661. height: math.unit(1.8796, "m"),
  12662. weight: math.unit(230, "lb"),
  12663. name: "Front",
  12664. image: {
  12665. source: "./media/characters/colin-t/front.svg",
  12666. extra: 1272 / 1193,
  12667. bottom: 0.07
  12668. }
  12669. },
  12670. },
  12671. [
  12672. {
  12673. name: "Micro",
  12674. height: math.unit(0.571, "meters")
  12675. },
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(1.8796, "meters"),
  12679. default: true
  12680. },
  12681. {
  12682. name: "Tall",
  12683. height: math.unit(4, "meters")
  12684. },
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(67.241, "meters")
  12688. },
  12689. {
  12690. name: "Megamacro",
  12691. height: math.unit(371.856, "meters")
  12692. },
  12693. {
  12694. name: "Planetary",
  12695. height: math.unit(12631.5689, "km")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(1.85, "meters"),
  12704. weight: math.unit(80, "kg"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/matvei/front.svg",
  12708. extra: 614 / 594,
  12709. bottom: 0.01
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Normal",
  12716. height: math.unit(1.85, "meters"),
  12717. default: true
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(5 + 9 / 12, "feet"),
  12726. weight: math.unit(70, "lb"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/quincy/front.svg",
  12730. extra: 3041 / 2751
  12731. }
  12732. },
  12733. back: {
  12734. height: math.unit(5 + 9 / 12, "feet"),
  12735. weight: math.unit(70, "lb"),
  12736. name: "Back",
  12737. image: {
  12738. source: "./media/characters/quincy/back.svg",
  12739. extra: 3041 / 2751
  12740. }
  12741. },
  12742. flying: {
  12743. height: math.unit(5 + 4 / 12, "feet"),
  12744. weight: math.unit(70, "lb"),
  12745. name: "Flying",
  12746. image: {
  12747. source: "./media/characters/quincy/flying.svg",
  12748. extra: 1044 / 930
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Micro",
  12755. height: math.unit(3, "cm")
  12756. },
  12757. {
  12758. name: "Normal",
  12759. height: math.unit(5 + 9 / 12, "feet")
  12760. },
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(200, "meters"),
  12764. default: true
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(1000, "meters")
  12769. },
  12770. ]
  12771. ))
  12772. characterMakers.push(() => makeCharacter(
  12773. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12774. {
  12775. front: {
  12776. height: math.unit(3 + 11/12, "feet"),
  12777. weight: math.unit(50, "lb"),
  12778. name: "Front",
  12779. image: {
  12780. source: "./media/characters/vanrel/front.svg",
  12781. extra: 1104/949,
  12782. bottom: 52/1156
  12783. }
  12784. },
  12785. back: {
  12786. height: math.unit(3 + 11/12, "feet"),
  12787. weight: math.unit(50, "lb"),
  12788. name: "Back",
  12789. image: {
  12790. source: "./media/characters/vanrel/back.svg",
  12791. extra: 1119/976,
  12792. bottom: 37/1156
  12793. }
  12794. },
  12795. tome: {
  12796. height: math.unit(1.35, "feet"),
  12797. weight: math.unit(10, "lb"),
  12798. name: "Vanrel's Tome",
  12799. rename: true,
  12800. image: {
  12801. source: "./media/characters/vanrel/tome.svg"
  12802. }
  12803. },
  12804. beans: {
  12805. height: math.unit(0.89, "feet"),
  12806. name: "Beans",
  12807. image: {
  12808. source: "./media/characters/vanrel/beans.svg"
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(3 + 11/12, "feet"),
  12816. default: true
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(7 + 5 / 12, "feet"),
  12825. name: "Front",
  12826. image: {
  12827. source: "./media/characters/kuiper-vanrel/front.svg",
  12828. extra: 1219/1169,
  12829. bottom: 69/1288
  12830. }
  12831. },
  12832. back: {
  12833. height: math.unit(7 + 5 / 12, "feet"),
  12834. name: "Back",
  12835. image: {
  12836. source: "./media/characters/kuiper-vanrel/back.svg",
  12837. extra: 1236/1193,
  12838. bottom: 27/1263
  12839. }
  12840. },
  12841. foot: {
  12842. height: math.unit(0.55, "meters"),
  12843. name: "Foot",
  12844. image: {
  12845. source: "./media/characters/kuiper-vanrel/foot.svg",
  12846. }
  12847. },
  12848. battle: {
  12849. height: math.unit(6.824, "feet"),
  12850. name: "Battle",
  12851. image: {
  12852. source: "./media/characters/kuiper-vanrel/battle.svg",
  12853. extra: 1466 / 1327,
  12854. bottom: 29 / 1492.5
  12855. }
  12856. },
  12857. meerkui: {
  12858. height: math.unit(18, "inches"),
  12859. name: "Meerkui",
  12860. image: {
  12861. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12862. extra: 1354/1289,
  12863. bottom: 69/1423
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(7 + 5 / 12, "feet"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(8 + 5 / 12, "feet"),
  12880. name: "Front",
  12881. image: {
  12882. source: "./media/characters/keset-vanrel/front.svg",
  12883. extra: 1231/1148,
  12884. bottom: 82/1313
  12885. }
  12886. },
  12887. back: {
  12888. height: math.unit(8 + 5 / 12, "feet"),
  12889. name: "Back",
  12890. image: {
  12891. source: "./media/characters/keset-vanrel/back.svg",
  12892. extra: 1240/1174,
  12893. bottom: 33/1273
  12894. }
  12895. },
  12896. hand: {
  12897. height: math.unit(0.6, "meters"),
  12898. name: "Hand",
  12899. image: {
  12900. source: "./media/characters/keset-vanrel/hand.svg"
  12901. }
  12902. },
  12903. foot: {
  12904. height: math.unit(0.94978, "meters"),
  12905. name: "Foot",
  12906. image: {
  12907. source: "./media/characters/keset-vanrel/foot.svg"
  12908. }
  12909. },
  12910. battle: {
  12911. height: math.unit(7.408, "feet"),
  12912. name: "Battle",
  12913. image: {
  12914. source: "./media/characters/keset-vanrel/battle.svg",
  12915. extra: 1890 / 1386,
  12916. bottom: 73.28 / 1970
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(8 + 5 / 12, "feet"),
  12924. default: true
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(6, "feet"),
  12933. weight: math.unit(150, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/neos/front.svg",
  12937. extra: 1696 / 992,
  12938. bottom: 0.14
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(54, "cm"),
  12946. default: true
  12947. },
  12948. {
  12949. name: "Macro",
  12950. height: math.unit(100, "m")
  12951. },
  12952. {
  12953. name: "Megamacro",
  12954. height: math.unit(10, "km")
  12955. },
  12956. {
  12957. name: "Megamacro+",
  12958. height: math.unit(100, "km")
  12959. },
  12960. {
  12961. name: "Gigamacro",
  12962. height: math.unit(100, "Mm")
  12963. },
  12964. {
  12965. name: "Teramacro",
  12966. height: math.unit(100, "Gm")
  12967. },
  12968. {
  12969. name: "Examacro",
  12970. height: math.unit(100, "Em")
  12971. },
  12972. {
  12973. name: "Godly",
  12974. height: math.unit(10000, "Ym")
  12975. },
  12976. {
  12977. name: "Beyond Godly",
  12978. height: math.unit(25, "multiverses")
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12984. {
  12985. feminine: {
  12986. height: math.unit(5, "feet"),
  12987. weight: math.unit(100, "lb"),
  12988. name: "Feminine",
  12989. image: {
  12990. source: "./media/characters/sammy-mouse/feminine.svg",
  12991. extra: 2526 / 2425,
  12992. bottom: 0.123
  12993. }
  12994. },
  12995. masculine: {
  12996. height: math.unit(5, "feet"),
  12997. weight: math.unit(100, "lb"),
  12998. name: "Masculine",
  12999. image: {
  13000. source: "./media/characters/sammy-mouse/masculine.svg",
  13001. extra: 2526 / 2425,
  13002. bottom: 0.123
  13003. }
  13004. },
  13005. },
  13006. [
  13007. {
  13008. name: "Micro",
  13009. height: math.unit(5, "inches")
  13010. },
  13011. {
  13012. name: "Normal",
  13013. height: math.unit(5, "feet"),
  13014. default: true
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(60, "feet")
  13019. },
  13020. ]
  13021. ))
  13022. characterMakers.push(() => makeCharacter(
  13023. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13024. {
  13025. front: {
  13026. height: math.unit(4, "feet"),
  13027. weight: math.unit(50, "lb"),
  13028. name: "Front",
  13029. image: {
  13030. source: "./media/characters/kole/front.svg",
  13031. extra: 1423 / 1303,
  13032. bottom: 0.025
  13033. }
  13034. },
  13035. back: {
  13036. height: math.unit(4, "feet"),
  13037. weight: math.unit(50, "lb"),
  13038. name: "Back",
  13039. image: {
  13040. source: "./media/characters/kole/back.svg",
  13041. extra: 1426 / 1280,
  13042. bottom: 0.02
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(4, "feet"),
  13050. default: true
  13051. },
  13052. ]
  13053. ))
  13054. characterMakers.push(() => makeCharacter(
  13055. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13056. {
  13057. front: {
  13058. height: math.unit(2.5, "feet"),
  13059. weight: math.unit(32, "lb"),
  13060. name: "Front",
  13061. image: {
  13062. source: "./media/characters/rufran/front.svg",
  13063. extra: 1313/885,
  13064. bottom: 94/1407
  13065. }
  13066. },
  13067. side: {
  13068. height: math.unit(2.5, "feet"),
  13069. weight: math.unit(32, "lb"),
  13070. name: "Side",
  13071. image: {
  13072. source: "./media/characters/rufran/side.svg",
  13073. extra: 1109/852,
  13074. bottom: 118/1227
  13075. }
  13076. },
  13077. back: {
  13078. height: math.unit(2.5, "feet"),
  13079. weight: math.unit(32, "lb"),
  13080. name: "Back",
  13081. image: {
  13082. source: "./media/characters/rufran/back.svg",
  13083. extra: 1280/878,
  13084. bottom: 131/1411
  13085. }
  13086. },
  13087. mouth: {
  13088. height: math.unit(1.13, "feet"),
  13089. name: "Mouth",
  13090. image: {
  13091. source: "./media/characters/rufran/mouth.svg"
  13092. }
  13093. },
  13094. foot: {
  13095. height: math.unit(1.33, "feet"),
  13096. name: "Foot",
  13097. image: {
  13098. source: "./media/characters/rufran/foot.svg"
  13099. }
  13100. },
  13101. koboldFront: {
  13102. height: math.unit(2 + 6 / 12, "feet"),
  13103. weight: math.unit(20, "lb"),
  13104. name: "Front (Kobold)",
  13105. image: {
  13106. source: "./media/characters/rufran/kobold-front.svg",
  13107. extra: 2041 / 1839,
  13108. bottom: 0.055
  13109. }
  13110. },
  13111. koboldBack: {
  13112. height: math.unit(2 + 6 / 12, "feet"),
  13113. weight: math.unit(20, "lb"),
  13114. name: "Back (Kobold)",
  13115. image: {
  13116. source: "./media/characters/rufran/kobold-back.svg",
  13117. extra: 2054 / 1839,
  13118. bottom: 0.01
  13119. }
  13120. },
  13121. koboldHand: {
  13122. height: math.unit(0.2166, "meters"),
  13123. name: "Hand (Kobold)",
  13124. image: {
  13125. source: "./media/characters/rufran/kobold-hand.svg"
  13126. }
  13127. },
  13128. koboldFoot: {
  13129. height: math.unit(0.185, "meters"),
  13130. name: "Foot (Kobold)",
  13131. image: {
  13132. source: "./media/characters/rufran/kobold-foot.svg"
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Micro",
  13139. height: math.unit(1, "inch")
  13140. },
  13141. {
  13142. name: "Normal",
  13143. height: math.unit(2 + 6 / 12, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Big",
  13148. height: math.unit(60, "feet")
  13149. },
  13150. {
  13151. name: "Macro",
  13152. height: math.unit(325, "feet")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(0.3, "meters"),
  13161. weight: math.unit(3.5, "kg"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/chip/front.svg",
  13165. extra: 748 / 674
  13166. }
  13167. },
  13168. },
  13169. [
  13170. {
  13171. name: "Micro",
  13172. height: math.unit(1, "inch"),
  13173. default: true
  13174. },
  13175. ]
  13176. ))
  13177. characterMakers.push(() => makeCharacter(
  13178. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13179. {
  13180. side: {
  13181. height: math.unit(2.3, "meters"),
  13182. weight: math.unit(3500, "lb"),
  13183. name: "Side",
  13184. image: {
  13185. source: "./media/characters/torvid/side.svg",
  13186. extra: 1972 / 722,
  13187. bottom: 0.035
  13188. }
  13189. },
  13190. },
  13191. [
  13192. {
  13193. name: "Normal",
  13194. height: math.unit(2.3, "meters"),
  13195. default: true
  13196. },
  13197. ]
  13198. ))
  13199. characterMakers.push(() => makeCharacter(
  13200. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13201. {
  13202. front: {
  13203. height: math.unit(2, "meters"),
  13204. weight: math.unit(150.5, "kg"),
  13205. name: "Front",
  13206. image: {
  13207. source: "./media/characters/susan/front.svg",
  13208. extra: 693 / 635,
  13209. bottom: 0.05
  13210. }
  13211. },
  13212. },
  13213. [
  13214. {
  13215. name: "Megamacro",
  13216. height: math.unit(505, "miles"),
  13217. default: true
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(6, "feet"),
  13226. weight: math.unit(150, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/raindrops/front.svg",
  13230. extra: 2655 / 2461,
  13231. bottom: 49 / 2705
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(6, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/raindrops/back.svg",
  13240. extra: 2574 / 2400,
  13241. bottom: 65 / 2634
  13242. }
  13243. },
  13244. },
  13245. [
  13246. {
  13247. name: "Micro",
  13248. height: math.unit(6, "inches")
  13249. },
  13250. {
  13251. name: "Normal",
  13252. height: math.unit(6 + 2 / 12, "feet")
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(131, "feet"),
  13257. default: true
  13258. },
  13259. {
  13260. name: "Megamacro",
  13261. height: math.unit(15, "miles")
  13262. },
  13263. {
  13264. name: "Gigamacro",
  13265. height: math.unit(4000, "miles")
  13266. },
  13267. {
  13268. name: "Teramacro",
  13269. height: math.unit(315000, "miles")
  13270. },
  13271. ]
  13272. ))
  13273. characterMakers.push(() => makeCharacter(
  13274. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13275. {
  13276. front: {
  13277. height: math.unit(2.794, "meters"),
  13278. weight: math.unit(325, "kg"),
  13279. name: "Front",
  13280. image: {
  13281. source: "./media/characters/tezwa/front.svg",
  13282. extra: 2083 / 1906,
  13283. bottom: 0.031
  13284. }
  13285. },
  13286. foot: {
  13287. height: math.unit(0.687, "meters"),
  13288. name: "Foot",
  13289. image: {
  13290. source: "./media/characters/tezwa/foot.svg"
  13291. }
  13292. },
  13293. },
  13294. [
  13295. {
  13296. name: "Normal",
  13297. height: math.unit(9 + 2 / 12, "feet"),
  13298. default: true
  13299. },
  13300. ]
  13301. ))
  13302. characterMakers.push(() => makeCharacter(
  13303. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13304. {
  13305. front: {
  13306. height: math.unit(58, "feet"),
  13307. weight: math.unit(89000, "lb"),
  13308. name: "Front",
  13309. image: {
  13310. source: "./media/characters/typhus/front.svg",
  13311. extra: 816 / 800,
  13312. bottom: 0.065
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Macro",
  13319. height: math.unit(58, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(12, "feet"),
  13329. weight: math.unit(6, "tonnes"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/lyra-von-wulf/front.svg",
  13333. extra: 1,
  13334. bottom: 0.10
  13335. }
  13336. },
  13337. frontMecha: {
  13338. height: math.unit(12, "feet"),
  13339. weight: math.unit(12, "tonnes"),
  13340. name: "Front (Mecha)",
  13341. image: {
  13342. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13343. extra: 1,
  13344. bottom: 0.042
  13345. }
  13346. },
  13347. maw: {
  13348. height: math.unit(2.2, "feet"),
  13349. name: "Maw",
  13350. image: {
  13351. source: "./media/characters/lyra-von-wulf/maw.svg"
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Classic",
  13363. height: math.unit(50, "feet")
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(500, "feet")
  13368. },
  13369. {
  13370. name: "Megamacro",
  13371. height: math.unit(1, "mile")
  13372. },
  13373. {
  13374. name: "Gigamacro",
  13375. height: math.unit(400, "miles")
  13376. },
  13377. {
  13378. name: "Teramacro",
  13379. height: math.unit(22000, "miles")
  13380. },
  13381. {
  13382. name: "Solarmacro",
  13383. height: math.unit(8600000, "miles")
  13384. },
  13385. {
  13386. name: "Galactic",
  13387. height: math.unit(1057000, "lightyears")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(6 + 10 / 12, "feet"),
  13396. weight: math.unit(150, "lb"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/dixon/front.svg",
  13400. extra: 3361 / 3209,
  13401. bottom: 0.01
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(6 + 10 / 12, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Big",
  13413. height: math.unit(12, "meters")
  13414. },
  13415. {
  13416. name: "Macro",
  13417. height: math.unit(500, "meters")
  13418. },
  13419. {
  13420. name: "Megamacro",
  13421. height: math.unit(2, "km")
  13422. },
  13423. ]
  13424. ))
  13425. characterMakers.push(() => makeCharacter(
  13426. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13427. {
  13428. front: {
  13429. height: math.unit(185, "cm"),
  13430. weight: math.unit(68, "kg"),
  13431. name: "Front",
  13432. image: {
  13433. source: "./media/characters/kauko/front.svg",
  13434. extra: 1455 / 1421,
  13435. bottom: 0.03
  13436. }
  13437. },
  13438. back: {
  13439. height: math.unit(185, "cm"),
  13440. weight: math.unit(68, "kg"),
  13441. name: "Back",
  13442. image: {
  13443. source: "./media/characters/kauko/back.svg",
  13444. extra: 1455 / 1421,
  13445. bottom: 0.004
  13446. }
  13447. },
  13448. },
  13449. [
  13450. {
  13451. name: "Normal",
  13452. height: math.unit(185, "cm"),
  13453. default: true
  13454. },
  13455. ]
  13456. ))
  13457. characterMakers.push(() => makeCharacter(
  13458. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13459. {
  13460. front: {
  13461. height: math.unit(6, "feet"),
  13462. weight: math.unit(150, "kg"),
  13463. name: "Front",
  13464. image: {
  13465. source: "./media/characters/varg/front.svg",
  13466. extra: 1108 / 1018,
  13467. bottom: 0.0375
  13468. }
  13469. },
  13470. },
  13471. [
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(5, "meters")
  13475. },
  13476. {
  13477. name: "Macro",
  13478. height: math.unit(200, "meters")
  13479. },
  13480. {
  13481. name: "Megamacro",
  13482. height: math.unit(20, "kilometers")
  13483. },
  13484. {
  13485. name: "True Size",
  13486. height: math.unit(211, "km"),
  13487. default: true
  13488. },
  13489. {
  13490. name: "Gigamacro",
  13491. height: math.unit(1000, "km")
  13492. },
  13493. {
  13494. name: "Gigamacro+",
  13495. height: math.unit(8000, "km")
  13496. },
  13497. {
  13498. name: "Teramacro",
  13499. height: math.unit(1000000, "km")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(7 + 7 / 12, "feet"),
  13508. weight: math.unit(267, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/dayza/front.svg",
  13512. extra: 1262 / 1200,
  13513. bottom: 0.035
  13514. }
  13515. },
  13516. side: {
  13517. height: math.unit(7 + 7 / 12, "feet"),
  13518. weight: math.unit(267, "lb"),
  13519. name: "Side",
  13520. image: {
  13521. source: "./media/characters/dayza/side.svg",
  13522. extra: 1295 / 1245,
  13523. bottom: 0.05
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(7 + 7 / 12, "feet"),
  13528. weight: math.unit(267, "lb"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/dayza/back.svg",
  13532. extra: 1241 / 1170
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Normal",
  13539. height: math.unit(7 + 7 / 12, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(155, "feet")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6 + 5 / 12, "feet"),
  13553. weight: math.unit(160, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/xanthos/front.svg",
  13557. extra: 1,
  13558. bottom: 0.04
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(6 + 5 / 12, "feet"),
  13563. weight: math.unit(160, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/xanthos/back.svg",
  13567. extra: 1,
  13568. bottom: 0.03
  13569. }
  13570. },
  13571. hand: {
  13572. height: math.unit(0.928, "feet"),
  13573. name: "Hand",
  13574. image: {
  13575. source: "./media/characters/xanthos/hand.svg"
  13576. }
  13577. },
  13578. foot: {
  13579. height: math.unit(1.286, "feet"),
  13580. name: "Foot",
  13581. image: {
  13582. source: "./media/characters/xanthos/foot.svg"
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Normal",
  13589. height: math.unit(6 + 5 / 12, "feet"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Normal+",
  13594. height: math.unit(6, "meters")
  13595. },
  13596. {
  13597. name: "Macro",
  13598. height: math.unit(40, "feet")
  13599. },
  13600. {
  13601. name: "Macro+",
  13602. height: math.unit(200, "meters")
  13603. },
  13604. {
  13605. name: "Megamacro",
  13606. height: math.unit(20, "km")
  13607. },
  13608. {
  13609. name: "Megamacro+",
  13610. height: math.unit(100, "km")
  13611. },
  13612. {
  13613. name: "Gigamacro",
  13614. height: math.unit(200, "megameters")
  13615. },
  13616. {
  13617. name: "Gigamacro+",
  13618. height: math.unit(1.5, "gigameters")
  13619. },
  13620. ]
  13621. ))
  13622. characterMakers.push(() => makeCharacter(
  13623. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13624. {
  13625. front: {
  13626. height: math.unit(6 + 3 / 12, "feet"),
  13627. weight: math.unit(215, "lb"),
  13628. name: "Front",
  13629. image: {
  13630. source: "./media/characters/grynn/front.svg",
  13631. extra: 4627 / 4209,
  13632. bottom: 0.047
  13633. }
  13634. },
  13635. },
  13636. [
  13637. {
  13638. name: "Micro",
  13639. height: math.unit(6, "inches")
  13640. },
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(6 + 3 / 12, "feet"),
  13644. default: true
  13645. },
  13646. {
  13647. name: "Big",
  13648. height: math.unit(104, "feet")
  13649. },
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(944, "feet")
  13653. },
  13654. {
  13655. name: "Macro+",
  13656. height: math.unit(9480, "feet")
  13657. },
  13658. {
  13659. name: "Megamacro",
  13660. height: math.unit(78752, "feet")
  13661. },
  13662. {
  13663. name: "Megamacro+",
  13664. height: math.unit(630128, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro++",
  13668. height: math.unit(3150695, "feet")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(7 + 5 / 12, "feet"),
  13677. weight: math.unit(450, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/mocha-aura/front.svg",
  13681. extra: 1907 / 1817,
  13682. bottom: 0.04
  13683. }
  13684. },
  13685. back: {
  13686. height: math.unit(7 + 5 / 12, "feet"),
  13687. weight: math.unit(450, "lb"),
  13688. name: "Back",
  13689. image: {
  13690. source: "./media/characters/mocha-aura/back.svg",
  13691. extra: 1900 / 1825,
  13692. bottom: 0.045
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Nano",
  13699. height: math.unit(1, "nm")
  13700. },
  13701. {
  13702. name: "Megamicro",
  13703. height: math.unit(1, "mm")
  13704. },
  13705. {
  13706. name: "Micro",
  13707. height: math.unit(3, "inches")
  13708. },
  13709. {
  13710. name: "Normal",
  13711. height: math.unit(7 + 5 / 12, "feet"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Macro",
  13716. height: math.unit(30, "feet")
  13717. },
  13718. {
  13719. name: "Megamacro",
  13720. height: math.unit(3500, "feet")
  13721. },
  13722. {
  13723. name: "Teramacro",
  13724. height: math.unit(500000, "miles")
  13725. },
  13726. {
  13727. name: "Petamacro",
  13728. height: math.unit(50000000000000000, "parsecs")
  13729. },
  13730. ]
  13731. ))
  13732. characterMakers.push(() => makeCharacter(
  13733. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13734. {
  13735. front: {
  13736. height: math.unit(6, "feet"),
  13737. weight: math.unit(150, "lb"),
  13738. name: "Front",
  13739. image: {
  13740. source: "./media/characters/ilisha-devya/front.svg",
  13741. extra: 1053/1049,
  13742. bottom: 270/1323
  13743. }
  13744. },
  13745. back: {
  13746. height: math.unit(6, "feet"),
  13747. weight: math.unit(150, "lb"),
  13748. name: "Back",
  13749. image: {
  13750. source: "./media/characters/ilisha-devya/back.svg",
  13751. extra: 1131/1128,
  13752. bottom: 39/1170
  13753. }
  13754. },
  13755. },
  13756. [
  13757. {
  13758. name: "Macro",
  13759. height: math.unit(500, "feet"),
  13760. default: true
  13761. },
  13762. {
  13763. name: "Megamacro",
  13764. height: math.unit(10, "miles")
  13765. },
  13766. {
  13767. name: "Gigamacro",
  13768. height: math.unit(100000, "miles")
  13769. },
  13770. {
  13771. name: "Examacro",
  13772. height: math.unit(1e9, "lightyears")
  13773. },
  13774. {
  13775. name: "Omniversal",
  13776. height: math.unit(1e33, "lightyears")
  13777. },
  13778. {
  13779. name: "Beyond Infinite",
  13780. height: math.unit(1e100, "lightyears")
  13781. },
  13782. ]
  13783. ))
  13784. characterMakers.push(() => makeCharacter(
  13785. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13786. {
  13787. Side: {
  13788. height: math.unit(6, "feet"),
  13789. weight: math.unit(150, "lb"),
  13790. name: "Side",
  13791. image: {
  13792. source: "./media/characters/mira/side.svg",
  13793. extra: 900 / 799,
  13794. bottom: 0.02
  13795. }
  13796. },
  13797. },
  13798. [
  13799. {
  13800. name: "Human Size",
  13801. height: math.unit(6, "feet")
  13802. },
  13803. {
  13804. name: "Macro",
  13805. height: math.unit(100, "feet"),
  13806. default: true
  13807. },
  13808. {
  13809. name: "Megamacro",
  13810. height: math.unit(10, "miles")
  13811. },
  13812. {
  13813. name: "Gigamacro",
  13814. height: math.unit(25000, "miles")
  13815. },
  13816. {
  13817. name: "Teramacro",
  13818. height: math.unit(300, "AU")
  13819. },
  13820. {
  13821. name: "Full Size",
  13822. height: math.unit(4.5e10, "lightyears")
  13823. },
  13824. ]
  13825. ))
  13826. characterMakers.push(() => makeCharacter(
  13827. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13828. {
  13829. front: {
  13830. height: math.unit(6, "feet"),
  13831. weight: math.unit(150, "lb"),
  13832. name: "Front",
  13833. image: {
  13834. source: "./media/characters/holly/front.svg",
  13835. extra: 639 / 606
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(6, "feet"),
  13840. weight: math.unit(150, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/holly/back.svg",
  13844. extra: 623 / 598
  13845. }
  13846. },
  13847. frontWorking: {
  13848. height: math.unit(6, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Front (Working)",
  13851. image: {
  13852. source: "./media/characters/holly/front-working.svg",
  13853. extra: 607 / 577,
  13854. bottom: 0.048
  13855. }
  13856. },
  13857. },
  13858. [
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(12 + 3 / 12, "feet"),
  13862. default: true
  13863. },
  13864. ]
  13865. ))
  13866. characterMakers.push(() => makeCharacter(
  13867. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13868. {
  13869. front: {
  13870. height: math.unit(6, "feet"),
  13871. weight: math.unit(150, "lb"),
  13872. name: "Front",
  13873. image: {
  13874. source: "./media/characters/porter/front.svg",
  13875. extra: 1,
  13876. bottom: 0.01
  13877. }
  13878. },
  13879. frontRobes: {
  13880. height: math.unit(6, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front (Robes)",
  13883. image: {
  13884. source: "./media/characters/porter/front-robes.svg",
  13885. extra: 1.01,
  13886. bottom: 0.01
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(11 + 9 / 12, "feet"),
  13894. default: true
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13900. {
  13901. legendary: {
  13902. height: math.unit(6, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Legendary",
  13905. image: {
  13906. source: "./media/characters/lucy/legendary.svg",
  13907. extra: 1355 / 1100,
  13908. bottom: 0.045
  13909. }
  13910. },
  13911. },
  13912. [
  13913. {
  13914. name: "Legendary",
  13915. height: math.unit(86882 * 2, "miles"),
  13916. default: true
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(150, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/drusilla/front.svg",
  13929. extra: 678 / 635,
  13930. bottom: 0.03
  13931. }
  13932. },
  13933. back: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(150, "lb"),
  13936. name: "Back",
  13937. image: {
  13938. source: "./media/characters/drusilla/back.svg",
  13939. extra: 678 / 635,
  13940. bottom: 0.005
  13941. }
  13942. },
  13943. },
  13944. [
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(100, "feet")
  13948. },
  13949. {
  13950. name: "Canon Height",
  13951. height: math.unit(2000, "feet"),
  13952. default: true
  13953. },
  13954. ]
  13955. ))
  13956. characterMakers.push(() => makeCharacter(
  13957. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13958. {
  13959. front: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(180, "lb"),
  13962. name: "Front",
  13963. image: {
  13964. source: "./media/characters/renard-thatch/front.svg",
  13965. extra: 2411 / 2275,
  13966. bottom: 0.01
  13967. }
  13968. },
  13969. frontPosing: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(180, "lb"),
  13972. name: "Front (Posing)",
  13973. image: {
  13974. source: "./media/characters/renard-thatch/front-posing.svg",
  13975. extra: 2381 / 2261,
  13976. bottom: 0.01
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(6, "feet"),
  13981. weight: math.unit(180, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/renard-thatch/back.svg",
  13985. extra: 2428 / 2288
  13986. }
  13987. },
  13988. },
  13989. [
  13990. {
  13991. name: "Micro",
  13992. height: math.unit(3, "inches")
  13993. },
  13994. {
  13995. name: "Default",
  13996. height: math.unit(6, "feet"),
  13997. default: true
  13998. },
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(75, "feet")
  14002. },
  14003. ]
  14004. ))
  14005. characterMakers.push(() => makeCharacter(
  14006. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14007. {
  14008. front: {
  14009. height: math.unit(1450, "feet"),
  14010. weight: math.unit(1.21e6, "tons"),
  14011. name: "Front",
  14012. image: {
  14013. source: "./media/characters/sekvra/front.svg",
  14014. extra: 1193/1190,
  14015. bottom: 78/1271
  14016. }
  14017. },
  14018. side: {
  14019. height: math.unit(1450, "feet"),
  14020. weight: math.unit(1.21e6, "tons"),
  14021. name: "Side",
  14022. image: {
  14023. source: "./media/characters/sekvra/side.svg",
  14024. extra: 1193/1190,
  14025. bottom: 52/1245
  14026. }
  14027. },
  14028. back: {
  14029. height: math.unit(1450, "feet"),
  14030. weight: math.unit(1.21e6, "tons"),
  14031. name: "Back",
  14032. image: {
  14033. source: "./media/characters/sekvra/back.svg",
  14034. extra: 1219/1216,
  14035. bottom: 21/1240
  14036. }
  14037. },
  14038. frontClothed: {
  14039. height: math.unit(1450, "feet"),
  14040. weight: math.unit(1.21e6, "tons"),
  14041. name: "Front (Clothed)",
  14042. image: {
  14043. source: "./media/characters/sekvra/front-clothed.svg",
  14044. extra: 1192/1189,
  14045. bottom: 79/1271
  14046. }
  14047. },
  14048. },
  14049. [
  14050. {
  14051. name: "Macro",
  14052. height: math.unit(1450, "feet"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(15000, "feet")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(6, "feet"),
  14066. weight: math.unit(150, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/carmine/front.svg",
  14070. extra: 1,
  14071. bottom: 0.035
  14072. }
  14073. },
  14074. frontArmor: {
  14075. height: math.unit(6, "feet"),
  14076. weight: math.unit(150, "lb"),
  14077. name: "Front (Armor)",
  14078. image: {
  14079. source: "./media/characters/carmine/front-armor.svg",
  14080. extra: 1,
  14081. bottom: 0.035
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Large",
  14088. height: math.unit(1, "mile")
  14089. },
  14090. {
  14091. name: "Huge",
  14092. height: math.unit(40, "miles"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Colossal",
  14097. height: math.unit(2500, "miles")
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/elyssia/front.svg",
  14110. extra: 2201 / 2035,
  14111. bottom: 0.05
  14112. }
  14113. },
  14114. frontClothed: {
  14115. height: math.unit(6, "feet"),
  14116. weight: math.unit(150, "lb"),
  14117. name: "Front (Clothed)",
  14118. image: {
  14119. source: "./media/characters/elyssia/front-clothed.svg",
  14120. extra: 2201 / 2035,
  14121. bottom: 0.05
  14122. }
  14123. },
  14124. back: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(150, "lb"),
  14127. name: "Back",
  14128. image: {
  14129. source: "./media/characters/elyssia/back.svg",
  14130. extra: 2201 / 2035,
  14131. bottom: 0.013
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Smaller",
  14138. height: math.unit(150, "feet")
  14139. },
  14140. {
  14141. name: "Standard",
  14142. height: math.unit(1400, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Distracted",
  14147. height: math.unit(15000, "feet")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(7 + 4/12, "feet"),
  14156. weight: math.unit(690, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/geno-maxwell/front.svg",
  14160. extra: 984/856,
  14161. bottom: 87/1071
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(7 + 4/12, "feet"),
  14166. weight: math.unit(690, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/geno-maxwell/back.svg",
  14170. extra: 981/854,
  14171. bottom: 57/1038
  14172. }
  14173. },
  14174. frontCostume: {
  14175. height: math.unit(7 + 4/12, "feet"),
  14176. weight: math.unit(690, "lb"),
  14177. name: "Front (Costume)",
  14178. image: {
  14179. source: "./media/characters/geno-maxwell/front-costume.svg",
  14180. extra: 984/856,
  14181. bottom: 87/1071
  14182. }
  14183. },
  14184. backcostume: {
  14185. height: math.unit(7 + 4/12, "feet"),
  14186. weight: math.unit(690, "lb"),
  14187. name: "Back (Costume)",
  14188. image: {
  14189. source: "./media/characters/geno-maxwell/back-costume.svg",
  14190. extra: 981/854,
  14191. bottom: 57/1038
  14192. }
  14193. },
  14194. },
  14195. [
  14196. {
  14197. name: "Micro",
  14198. height: math.unit(3, "inches")
  14199. },
  14200. {
  14201. name: "Normal",
  14202. height: math.unit(7 + 4 / 12, "feet"),
  14203. default: true
  14204. },
  14205. {
  14206. name: "Macro",
  14207. height: math.unit(220, "feet")
  14208. },
  14209. {
  14210. name: "Megamacro",
  14211. height: math.unit(11, "miles")
  14212. },
  14213. ]
  14214. ))
  14215. characterMakers.push(() => makeCharacter(
  14216. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14217. {
  14218. front: {
  14219. height: math.unit(7 + 4/12, "feet"),
  14220. weight: math.unit(750, "lb"),
  14221. name: "Front",
  14222. image: {
  14223. source: "./media/characters/regena-maxwell/front.svg",
  14224. extra: 984/856,
  14225. bottom: 87/1071
  14226. }
  14227. },
  14228. back: {
  14229. height: math.unit(7 + 4/12, "feet"),
  14230. weight: math.unit(750, "lb"),
  14231. name: "Back",
  14232. image: {
  14233. source: "./media/characters/regena-maxwell/back.svg",
  14234. extra: 981/854,
  14235. bottom: 57/1038
  14236. }
  14237. },
  14238. frontCostume: {
  14239. height: math.unit(7 + 4/12, "feet"),
  14240. weight: math.unit(750, "lb"),
  14241. name: "Front (Costume)",
  14242. image: {
  14243. source: "./media/characters/regena-maxwell/front-costume.svg",
  14244. extra: 984/856,
  14245. bottom: 87/1071
  14246. }
  14247. },
  14248. backcostume: {
  14249. height: math.unit(7 + 4/12, "feet"),
  14250. weight: math.unit(750, "lb"),
  14251. name: "Back (Costume)",
  14252. image: {
  14253. source: "./media/characters/regena-maxwell/back-costume.svg",
  14254. extra: 981/854,
  14255. bottom: 57/1038
  14256. }
  14257. },
  14258. },
  14259. [
  14260. {
  14261. name: "Normal",
  14262. height: math.unit(7 + 4 / 12, "feet"),
  14263. default: true
  14264. },
  14265. {
  14266. name: "Macro",
  14267. height: math.unit(220, "feet")
  14268. },
  14269. {
  14270. name: "Megamacro",
  14271. height: math.unit(11, "miles")
  14272. },
  14273. ]
  14274. ))
  14275. characterMakers.push(() => makeCharacter(
  14276. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14277. {
  14278. front: {
  14279. height: math.unit(6, "feet"),
  14280. weight: math.unit(150, "lb"),
  14281. name: "Front",
  14282. image: {
  14283. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14284. extra: 860 / 690,
  14285. bottom: 0.03
  14286. }
  14287. },
  14288. },
  14289. [
  14290. {
  14291. name: "Normal",
  14292. height: math.unit(1.7, "meters"),
  14293. default: true
  14294. },
  14295. ]
  14296. ))
  14297. characterMakers.push(() => makeCharacter(
  14298. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14299. {
  14300. front: {
  14301. height: math.unit(6, "feet"),
  14302. weight: math.unit(150, "lb"),
  14303. name: "Front",
  14304. image: {
  14305. source: "./media/characters/quilly/front.svg",
  14306. extra: 890 / 776
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Gigamacro",
  14313. height: math.unit(404090, "miles"),
  14314. default: true
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(7 + 8 / 12, "feet"),
  14323. weight: math.unit(350, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/tempest/front.svg",
  14327. extra: 1175 / 1086,
  14328. bottom: 0.02
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Normal",
  14335. height: math.unit(7 + 8 / 12, "feet"),
  14336. default: true
  14337. },
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14342. {
  14343. side: {
  14344. height: math.unit(4 + 5 / 12, "feet"),
  14345. weight: math.unit(80, "lb"),
  14346. name: "Side",
  14347. image: {
  14348. source: "./media/characters/rodger/side.svg",
  14349. extra: 1235 / 1118
  14350. }
  14351. },
  14352. },
  14353. [
  14354. {
  14355. name: "Micro",
  14356. height: math.unit(1, "inch")
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(4 + 5 / 12, "feet"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Macro",
  14365. height: math.unit(120, "feet")
  14366. },
  14367. ]
  14368. ))
  14369. characterMakers.push(() => makeCharacter(
  14370. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14371. {
  14372. front: {
  14373. height: math.unit(6, "feet"),
  14374. weight: math.unit(150, "lb"),
  14375. name: "Front",
  14376. image: {
  14377. source: "./media/characters/danyel/front.svg",
  14378. extra: 1185 / 1123,
  14379. bottom: 0.05
  14380. }
  14381. },
  14382. },
  14383. [
  14384. {
  14385. name: "Shrunken",
  14386. height: math.unit(0.5, "mm")
  14387. },
  14388. {
  14389. name: "Micro",
  14390. height: math.unit(1, "mm"),
  14391. default: true
  14392. },
  14393. {
  14394. name: "Upsized",
  14395. height: math.unit(5 + 5 / 12, "feet")
  14396. },
  14397. ]
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(5 + 6 / 12, "feet"),
  14404. weight: math.unit(200, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/vivian-bijoux/front.svg",
  14408. extra: 1217/1209,
  14409. bottom: 76/1293
  14410. }
  14411. },
  14412. back: {
  14413. height: math.unit(5 + 6 / 12, "feet"),
  14414. weight: math.unit(200, "lb"),
  14415. name: "Back",
  14416. image: {
  14417. source: "./media/characters/vivian-bijoux/back.svg",
  14418. extra: 1214/1208,
  14419. bottom: 51/1265
  14420. }
  14421. },
  14422. dressed: {
  14423. height: math.unit(5 + 6 / 12, "feet"),
  14424. weight: math.unit(200, "lb"),
  14425. name: "Dressed",
  14426. image: {
  14427. source: "./media/characters/vivian-bijoux/dressed.svg",
  14428. extra: 1217/1209,
  14429. bottom: 76/1293
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 6 / 12, "feet"),
  14437. default: true
  14438. },
  14439. {
  14440. name: "Bad Dream",
  14441. height: math.unit(500, "feet")
  14442. },
  14443. {
  14444. name: "Nightmare",
  14445. height: math.unit(500, "miles")
  14446. },
  14447. ]
  14448. ))
  14449. characterMakers.push(() => makeCharacter(
  14450. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14451. {
  14452. front: {
  14453. height: math.unit(6 + 1 / 12, "feet"),
  14454. weight: math.unit(260, "lb"),
  14455. name: "Front",
  14456. image: {
  14457. source: "./media/characters/zeta/front.svg",
  14458. extra: 1968 / 1889,
  14459. bottom: 0.06
  14460. }
  14461. },
  14462. back: {
  14463. height: math.unit(6 + 1 / 12, "feet"),
  14464. weight: math.unit(260, "lb"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/zeta/back.svg",
  14468. extra: 1944 / 1858,
  14469. bottom: 0.03
  14470. }
  14471. },
  14472. hand: {
  14473. height: math.unit(1.112, "feet"),
  14474. name: "Hand",
  14475. image: {
  14476. source: "./media/characters/zeta/hand.svg"
  14477. }
  14478. },
  14479. foot: {
  14480. height: math.unit(1.48, "feet"),
  14481. name: "Foot",
  14482. image: {
  14483. source: "./media/characters/zeta/foot.svg"
  14484. }
  14485. },
  14486. },
  14487. [
  14488. {
  14489. name: "Micro",
  14490. height: math.unit(6, "inches")
  14491. },
  14492. {
  14493. name: "Normal",
  14494. height: math.unit(6 + 1 / 12, "feet"),
  14495. default: true
  14496. },
  14497. {
  14498. name: "Macro",
  14499. height: math.unit(20, "feet")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(6, "feet"),
  14508. weight: math.unit(150, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/jamie-larsen/front.svg",
  14512. extra: 962 / 933,
  14513. bottom: 0.02
  14514. }
  14515. },
  14516. back: {
  14517. height: math.unit(6, "feet"),
  14518. weight: math.unit(150, "lb"),
  14519. name: "Back",
  14520. image: {
  14521. source: "./media/characters/jamie-larsen/back.svg",
  14522. extra: 997 / 946
  14523. }
  14524. },
  14525. },
  14526. [
  14527. {
  14528. name: "Macro",
  14529. height: math.unit(28 + 7 / 12, "feet"),
  14530. default: true
  14531. },
  14532. {
  14533. name: "Macro+",
  14534. height: math.unit(180, "feet")
  14535. },
  14536. {
  14537. name: "Megamacro",
  14538. height: math.unit(10, "miles")
  14539. },
  14540. {
  14541. name: "Gigamacro",
  14542. height: math.unit(200000, "miles")
  14543. },
  14544. ]
  14545. ))
  14546. characterMakers.push(() => makeCharacter(
  14547. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14548. {
  14549. front: {
  14550. height: math.unit(6, "feet"),
  14551. weight: math.unit(120, "lb"),
  14552. name: "Front",
  14553. image: {
  14554. source: "./media/characters/vance/front.svg",
  14555. extra: 1980 / 1890,
  14556. bottom: 0.09
  14557. }
  14558. },
  14559. back: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(120, "lb"),
  14562. name: "Back",
  14563. image: {
  14564. source: "./media/characters/vance/back.svg",
  14565. extra: 2081 / 1994,
  14566. bottom: 0.014
  14567. }
  14568. },
  14569. hand: {
  14570. height: math.unit(0.88, "feet"),
  14571. name: "Hand",
  14572. image: {
  14573. source: "./media/characters/vance/hand.svg"
  14574. }
  14575. },
  14576. foot: {
  14577. height: math.unit(0.64, "feet"),
  14578. name: "Foot",
  14579. image: {
  14580. source: "./media/characters/vance/foot.svg"
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Small",
  14587. height: math.unit(90, "feet"),
  14588. default: true
  14589. },
  14590. {
  14591. name: "Macro",
  14592. height: math.unit(100, "meters")
  14593. },
  14594. {
  14595. name: "Megamacro",
  14596. height: math.unit(15, "miles")
  14597. },
  14598. ]
  14599. ))
  14600. characterMakers.push(() => makeCharacter(
  14601. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14602. {
  14603. front: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(180, "lb"),
  14606. name: "Front",
  14607. image: {
  14608. source: "./media/characters/xochitl/front.svg",
  14609. extra: 2297 / 2261,
  14610. bottom: 0.065
  14611. }
  14612. },
  14613. back: {
  14614. height: math.unit(6, "feet"),
  14615. weight: math.unit(180, "lb"),
  14616. name: "Back",
  14617. image: {
  14618. source: "./media/characters/xochitl/back.svg",
  14619. extra: 2386 / 2354,
  14620. bottom: 0.01
  14621. }
  14622. },
  14623. foot: {
  14624. height: math.unit(6 / 5 * 1.15, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Foot",
  14627. image: {
  14628. source: "./media/characters/xochitl/foot.svg"
  14629. }
  14630. },
  14631. },
  14632. [
  14633. {
  14634. name: "Macro",
  14635. height: math.unit(80, "feet")
  14636. },
  14637. {
  14638. name: "Macro+",
  14639. height: math.unit(400, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Gigamacro",
  14644. height: math.unit(80000, "miles")
  14645. },
  14646. {
  14647. name: "Gigamacro+",
  14648. height: math.unit(400000, "miles")
  14649. },
  14650. {
  14651. name: "Teramacro",
  14652. height: math.unit(300, "AU")
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6, "feet"),
  14661. weight: math.unit(150, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/vincent/front.svg",
  14665. extra: 1130 / 1080,
  14666. bottom: 0.055
  14667. }
  14668. },
  14669. beak: {
  14670. height: math.unit(6 * 0.1, "feet"),
  14671. name: "Beak",
  14672. image: {
  14673. source: "./media/characters/vincent/beak.svg"
  14674. }
  14675. },
  14676. hand: {
  14677. height: math.unit(6 * 0.85, "feet"),
  14678. weight: math.unit(150, "lb"),
  14679. name: "Hand",
  14680. image: {
  14681. source: "./media/characters/vincent/hand.svg"
  14682. }
  14683. },
  14684. foot: {
  14685. height: math.unit(6 * 0.19, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Foot",
  14688. image: {
  14689. source: "./media/characters/vincent/foot.svg"
  14690. }
  14691. },
  14692. },
  14693. [
  14694. {
  14695. name: "Base",
  14696. height: math.unit(6 + 5 / 12, "feet"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro",
  14701. height: math.unit(300, "feet")
  14702. },
  14703. {
  14704. name: "Megamacro",
  14705. height: math.unit(2, "miles")
  14706. },
  14707. {
  14708. name: "Gigamacro",
  14709. height: math.unit(1000, "miles")
  14710. },
  14711. ]
  14712. ))
  14713. characterMakers.push(() => makeCharacter(
  14714. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14715. {
  14716. front: {
  14717. height: math.unit(2, "meters"),
  14718. weight: math.unit(500, "kg"),
  14719. name: "Front",
  14720. image: {
  14721. source: "./media/characters/coatl/front.svg",
  14722. extra: 3948 / 3500,
  14723. bottom: 0.082
  14724. }
  14725. },
  14726. },
  14727. [
  14728. {
  14729. name: "Normal",
  14730. height: math.unit(4, "meters")
  14731. },
  14732. {
  14733. name: "Macro",
  14734. height: math.unit(100, "meters"),
  14735. default: true
  14736. },
  14737. {
  14738. name: "Macro+",
  14739. height: math.unit(300, "meters")
  14740. },
  14741. {
  14742. name: "Megamacro",
  14743. height: math.unit(3, "gigameters")
  14744. },
  14745. {
  14746. name: "Megamacro+",
  14747. height: math.unit(300, "terameters")
  14748. },
  14749. {
  14750. name: "Megamacro++",
  14751. height: math.unit(3, "lightyears")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14757. {
  14758. front: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(50, "kg"),
  14761. name: "front",
  14762. image: {
  14763. source: "./media/characters/shiroryu/front.svg",
  14764. extra: 1990 / 1935
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Mortal Mingling",
  14771. height: math.unit(3, "meters")
  14772. },
  14773. {
  14774. name: "Kaiju-ish",
  14775. height: math.unit(250, "meters")
  14776. },
  14777. {
  14778. name: "Somewhat Godly",
  14779. height: math.unit(400, "km"),
  14780. default: true
  14781. },
  14782. {
  14783. name: "Planetary",
  14784. height: math.unit(300, "megameters")
  14785. },
  14786. {
  14787. name: "Galaxy-dwarfing",
  14788. height: math.unit(450, "kiloparsecs")
  14789. },
  14790. {
  14791. name: "Universe Eater",
  14792. height: math.unit(150, "gigaparsecs")
  14793. },
  14794. {
  14795. name: "Almost Immeasurable",
  14796. height: math.unit(1.3e266, "yottaparsecs")
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(6, "feet"),
  14805. weight: math.unit(150, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/umeko/front.svg",
  14809. extra: 1,
  14810. bottom: 0.019
  14811. }
  14812. },
  14813. frontArmored: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Front (Armored)",
  14817. image: {
  14818. source: "./media/characters/umeko/front-armored.svg",
  14819. extra: 1,
  14820. bottom: 0.021
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(220, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Guardian Dragon",
  14832. height: math.unit(50, "miles")
  14833. },
  14834. {
  14835. name: "Cosmic",
  14836. height: math.unit(800000, "miles")
  14837. },
  14838. ]
  14839. ))
  14840. characterMakers.push(() => makeCharacter(
  14841. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14842. {
  14843. front: {
  14844. height: math.unit(6, "feet"),
  14845. weight: math.unit(150, "lb"),
  14846. name: "Front",
  14847. image: {
  14848. source: "./media/characters/cassidy/front.svg",
  14849. extra: 810/808,
  14850. bottom: 41/851
  14851. }
  14852. },
  14853. },
  14854. [
  14855. {
  14856. name: "Canon Height",
  14857. height: math.unit(120, "feet"),
  14858. default: true
  14859. },
  14860. {
  14861. name: "Macro+",
  14862. height: math.unit(400, "feet")
  14863. },
  14864. {
  14865. name: "Macro++",
  14866. height: math.unit(4000, "feet")
  14867. },
  14868. {
  14869. name: "Megamacro",
  14870. height: math.unit(3, "miles")
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/isaac/front.svg",
  14883. extra: 896 / 815,
  14884. bottom: 0.11
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Human Size",
  14891. height: math.unit(8, "feet"),
  14892. default: true
  14893. },
  14894. {
  14895. name: "Macro",
  14896. height: math.unit(400, "feet")
  14897. },
  14898. {
  14899. name: "Megamacro",
  14900. height: math.unit(50, "miles")
  14901. },
  14902. {
  14903. name: "Canon Height",
  14904. height: math.unit(200, "AU")
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6, "feet"),
  14913. weight: math.unit(72, "kg"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/sleekit/front.svg",
  14917. extra: 4693 / 4487,
  14918. bottom: 0.012
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Minimum Height",
  14925. height: math.unit(10, "meters")
  14926. },
  14927. {
  14928. name: "Smaller",
  14929. height: math.unit(25, "meters")
  14930. },
  14931. {
  14932. name: "Larger",
  14933. height: math.unit(38, "meters"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Maximum height",
  14938. height: math.unit(100, "meters")
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14944. {
  14945. front: {
  14946. height: math.unit(6, "feet"),
  14947. weight: math.unit(150, "lb"),
  14948. name: "Front",
  14949. image: {
  14950. source: "./media/characters/nillia/front.svg",
  14951. extra: 2195 / 2037,
  14952. bottom: 0.005
  14953. }
  14954. },
  14955. back: {
  14956. height: math.unit(6, "feet"),
  14957. weight: math.unit(150, "lb"),
  14958. name: "Back",
  14959. image: {
  14960. source: "./media/characters/nillia/back.svg",
  14961. extra: 2195 / 2037,
  14962. bottom: 0.005
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Canon Height",
  14969. height: math.unit(489, "feet"),
  14970. default: true
  14971. }
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14976. {
  14977. front: {
  14978. height: math.unit(6, "feet"),
  14979. weight: math.unit(150, "lb"),
  14980. name: "Front",
  14981. image: {
  14982. source: "./media/characters/mesmyriza/front.svg",
  14983. extra: 2067 / 1784,
  14984. bottom: 0.035
  14985. }
  14986. },
  14987. foot: {
  14988. height: math.unit(6 / (250 / 35), "feet"),
  14989. name: "Foot",
  14990. image: {
  14991. source: "./media/characters/mesmyriza/foot.svg"
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Macro",
  14998. height: math.unit(457, "meters"),
  14999. default: true
  15000. },
  15001. {
  15002. name: "Megamacro",
  15003. height: math.unit(8, "megameters")
  15004. },
  15005. ]
  15006. ))
  15007. characterMakers.push(() => makeCharacter(
  15008. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15009. {
  15010. front: {
  15011. height: math.unit(6, "feet"),
  15012. weight: math.unit(250, "lb"),
  15013. name: "Front",
  15014. image: {
  15015. source: "./media/characters/saudade/front.svg",
  15016. extra: 1172 / 1139,
  15017. bottom: 0.035
  15018. }
  15019. },
  15020. },
  15021. [
  15022. {
  15023. name: "Micro",
  15024. height: math.unit(3, "inches")
  15025. },
  15026. {
  15027. name: "Normal",
  15028. height: math.unit(6, "feet"),
  15029. default: true
  15030. },
  15031. {
  15032. name: "Macro",
  15033. height: math.unit(50, "feet")
  15034. },
  15035. {
  15036. name: "Megamacro",
  15037. height: math.unit(2800, "feet")
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(5 + 4 / 12, "feet"),
  15046. weight: math.unit(100, "lb"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/keireer/front.svg",
  15050. extra: 716 / 666,
  15051. bottom: 0.05
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Normal",
  15058. height: math.unit(5 + 4 / 12, "feet"),
  15059. default: true
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(90, "kg"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/mirja/front.svg",
  15072. extra: 1789 / 1683,
  15073. bottom: 0.05
  15074. }
  15075. },
  15076. frontDressed: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(90, "lb"),
  15079. name: "Front (Dressed)",
  15080. image: {
  15081. source: "./media/characters/mirja/front-dressed.svg",
  15082. extra: 1789 / 1683,
  15083. bottom: 0.05
  15084. }
  15085. },
  15086. back: {
  15087. height: math.unit(6, "feet"),
  15088. weight: math.unit(90, "lb"),
  15089. name: "Back",
  15090. image: {
  15091. source: "./media/characters/mirja/back.svg",
  15092. extra: 953 / 917,
  15093. bottom: 0.017
  15094. }
  15095. },
  15096. },
  15097. [
  15098. {
  15099. name: "\"Incognito\"",
  15100. height: math.unit(3, "meters")
  15101. },
  15102. {
  15103. name: "Strolling Size",
  15104. height: math.unit(15, "km")
  15105. },
  15106. {
  15107. name: "Larger Strolling Size",
  15108. height: math.unit(400, "km")
  15109. },
  15110. {
  15111. name: "Preferred Size",
  15112. height: math.unit(5000, "km")
  15113. },
  15114. {
  15115. name: "True Size",
  15116. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15117. default: true
  15118. },
  15119. ]
  15120. ))
  15121. characterMakers.push(() => makeCharacter(
  15122. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15123. {
  15124. front: {
  15125. height: math.unit(15, "feet"),
  15126. weight: math.unit(880, "kg"),
  15127. name: "Front",
  15128. image: {
  15129. source: "./media/characters/nightraver/front.svg",
  15130. extra: 2444 / 2160,
  15131. bottom: 0.027
  15132. }
  15133. },
  15134. back: {
  15135. height: math.unit(15, "feet"),
  15136. weight: math.unit(880, "kg"),
  15137. name: "Back",
  15138. image: {
  15139. source: "./media/characters/nightraver/back.svg",
  15140. extra: 2309 / 2180,
  15141. bottom: 0.005
  15142. }
  15143. },
  15144. sole: {
  15145. height: math.unit(2.878, "feet"),
  15146. name: "Sole",
  15147. image: {
  15148. source: "./media/characters/nightraver/sole.svg"
  15149. }
  15150. },
  15151. foot: {
  15152. height: math.unit(2.285, "feet"),
  15153. name: "Foot",
  15154. image: {
  15155. source: "./media/characters/nightraver/foot.svg"
  15156. }
  15157. },
  15158. maw: {
  15159. height: math.unit(2.67, "feet"),
  15160. name: "Maw",
  15161. image: {
  15162. source: "./media/characters/nightraver/maw.svg"
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Micro",
  15169. height: math.unit(1, "cm")
  15170. },
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(15, "feet"),
  15174. default: true
  15175. },
  15176. {
  15177. name: "Macro",
  15178. height: math.unit(300, "feet")
  15179. },
  15180. {
  15181. name: "Megamacro",
  15182. height: math.unit(300, "miles")
  15183. },
  15184. {
  15185. name: "Gigamacro",
  15186. height: math.unit(10000, "miles")
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15192. {
  15193. side: {
  15194. height: math.unit(2, "inches"),
  15195. weight: math.unit(5, "grams"),
  15196. name: "Side",
  15197. image: {
  15198. source: "./media/characters/arc/side.svg"
  15199. }
  15200. },
  15201. },
  15202. [
  15203. {
  15204. name: "Micro",
  15205. height: math.unit(2, "inches"),
  15206. default: true
  15207. },
  15208. ]
  15209. ))
  15210. characterMakers.push(() => makeCharacter(
  15211. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15212. {
  15213. front: {
  15214. height: math.unit(1.1938, "meters"),
  15215. weight: math.unit(54, "kg"),
  15216. name: "Front",
  15217. image: {
  15218. source: "./media/characters/nebula-shahar/front.svg",
  15219. extra: 1642 / 1436,
  15220. bottom: 0.06
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Megamicro",
  15227. height: math.unit(0.3, "mm")
  15228. },
  15229. {
  15230. name: "Micro",
  15231. height: math.unit(3, "cm")
  15232. },
  15233. {
  15234. name: "Normal",
  15235. height: math.unit(138, "cm"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Macro",
  15240. height: math.unit(30, "m")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(5.24, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/shayla/front.svg",
  15253. extra: 1512 / 1414,
  15254. bottom: 0.01
  15255. }
  15256. },
  15257. back: {
  15258. height: math.unit(5.24, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Back",
  15261. image: {
  15262. source: "./media/characters/shayla/back.svg",
  15263. extra: 1512 / 1414
  15264. }
  15265. },
  15266. hand: {
  15267. height: math.unit(0.7781496062992126, "feet"),
  15268. name: "Hand",
  15269. image: {
  15270. source: "./media/characters/shayla/hand.svg"
  15271. }
  15272. },
  15273. foot: {
  15274. height: math.unit(1.4206036745406823, "feet"),
  15275. name: "Foot",
  15276. image: {
  15277. source: "./media/characters/shayla/foot.svg"
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Micro",
  15284. height: math.unit(0.32, "feet")
  15285. },
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(5.24, "feet"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Macro",
  15293. height: math.unit(492.12, "feet")
  15294. },
  15295. {
  15296. name: "Megamacro",
  15297. height: math.unit(186.41, "miles")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(2.2, "m"),
  15306. weight: math.unit(120, "kg"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/pia-jr/front.svg",
  15310. extra: 1000 / 970,
  15311. bottom: 0.035
  15312. }
  15313. },
  15314. hand: {
  15315. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15316. name: "Hand",
  15317. image: {
  15318. source: "./media/characters/pia-jr/hand.svg"
  15319. }
  15320. },
  15321. paw: {
  15322. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15323. name: "Paw",
  15324. image: {
  15325. source: "./media/characters/pia-jr/paw.svg"
  15326. }
  15327. },
  15328. },
  15329. [
  15330. {
  15331. name: "Micro",
  15332. height: math.unit(1.2, "cm")
  15333. },
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(2.2, "m"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Macro",
  15341. height: math.unit(180, "m")
  15342. },
  15343. {
  15344. name: "Megamacro",
  15345. height: math.unit(420, "km")
  15346. },
  15347. ]
  15348. ))
  15349. characterMakers.push(() => makeCharacter(
  15350. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15351. {
  15352. front: {
  15353. height: math.unit(2, "m"),
  15354. weight: math.unit(115, "kg"),
  15355. name: "Front",
  15356. image: {
  15357. source: "./media/characters/pia-sr/front.svg",
  15358. extra: 760 / 730,
  15359. bottom: 0.015
  15360. }
  15361. },
  15362. back: {
  15363. height: math.unit(2, "m"),
  15364. weight: math.unit(115, "kg"),
  15365. name: "Back",
  15366. image: {
  15367. source: "./media/characters/pia-sr/back.svg",
  15368. extra: 760 / 730,
  15369. bottom: 0.01
  15370. }
  15371. },
  15372. hand: {
  15373. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15374. name: "Hand",
  15375. image: {
  15376. source: "./media/characters/pia-sr/hand.svg"
  15377. }
  15378. },
  15379. foot: {
  15380. height: math.unit(1.83, "feet"),
  15381. name: "Foot",
  15382. image: {
  15383. source: "./media/characters/pia-sr/foot.svg"
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Micro",
  15390. height: math.unit(88, "mm")
  15391. },
  15392. {
  15393. name: "Normal",
  15394. height: math.unit(2, "m"),
  15395. default: true
  15396. },
  15397. {
  15398. name: "Macro",
  15399. height: math.unit(200, "m")
  15400. },
  15401. {
  15402. name: "Megamacro",
  15403. height: math.unit(420, "km")
  15404. },
  15405. ]
  15406. ))
  15407. characterMakers.push(() => makeCharacter(
  15408. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15409. {
  15410. front: {
  15411. height: math.unit(8 + 2 / 12, "feet"),
  15412. weight: math.unit(300, "lb"),
  15413. name: "Front",
  15414. image: {
  15415. source: "./media/characters/kibibyte/front.svg",
  15416. extra: 2221 / 2098,
  15417. bottom: 0.04
  15418. }
  15419. },
  15420. },
  15421. [
  15422. {
  15423. name: "Normal",
  15424. height: math.unit(8 + 2 / 12, "feet"),
  15425. default: true
  15426. },
  15427. {
  15428. name: "Socialable Macro",
  15429. height: math.unit(50, "feet")
  15430. },
  15431. {
  15432. name: "Macro",
  15433. height: math.unit(300, "feet")
  15434. },
  15435. {
  15436. name: "Megamacro",
  15437. height: math.unit(500, "miles")
  15438. },
  15439. ]
  15440. ))
  15441. characterMakers.push(() => makeCharacter(
  15442. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15443. {
  15444. front: {
  15445. height: math.unit(6, "feet"),
  15446. weight: math.unit(150, "lb"),
  15447. name: "Front",
  15448. image: {
  15449. source: "./media/characters/felix/front.svg",
  15450. extra: 762 / 722,
  15451. bottom: 0.02
  15452. }
  15453. },
  15454. frontClothed: {
  15455. height: math.unit(6, "feet"),
  15456. weight: math.unit(150, "lb"),
  15457. name: "Front (Clothed)",
  15458. image: {
  15459. source: "./media/characters/felix/front-clothed.svg",
  15460. extra: 762 / 722,
  15461. bottom: 0.02
  15462. }
  15463. },
  15464. },
  15465. [
  15466. {
  15467. name: "Normal",
  15468. height: math.unit(6 + 8 / 12, "feet"),
  15469. default: true
  15470. },
  15471. {
  15472. name: "Macro",
  15473. height: math.unit(2600, "feet")
  15474. },
  15475. {
  15476. name: "Megamacro",
  15477. height: math.unit(450, "miles")
  15478. },
  15479. ]
  15480. ))
  15481. characterMakers.push(() => makeCharacter(
  15482. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15483. {
  15484. front: {
  15485. height: math.unit(6 + 1 / 12, "feet"),
  15486. weight: math.unit(250, "lb"),
  15487. name: "Front",
  15488. image: {
  15489. source: "./media/characters/tobo/front.svg",
  15490. extra: 608 / 586,
  15491. bottom: 0.023
  15492. }
  15493. },
  15494. back: {
  15495. height: math.unit(6 + 1 / 12, "feet"),
  15496. weight: math.unit(250, "lb"),
  15497. name: "Back",
  15498. image: {
  15499. source: "./media/characters/tobo/back.svg",
  15500. extra: 608 / 586
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Nano",
  15507. height: math.unit(2, "nm")
  15508. },
  15509. {
  15510. name: "Megamicro",
  15511. height: math.unit(0.1, "mm")
  15512. },
  15513. {
  15514. name: "Micro",
  15515. height: math.unit(1, "inch"),
  15516. default: true
  15517. },
  15518. {
  15519. name: "Human-sized",
  15520. height: math.unit(6 + 1 / 12, "feet")
  15521. },
  15522. {
  15523. name: "Macro",
  15524. height: math.unit(250, "feet")
  15525. },
  15526. {
  15527. name: "Megamacro",
  15528. height: math.unit(75, "miles")
  15529. },
  15530. {
  15531. name: "Texas-sized",
  15532. height: math.unit(750, "miles")
  15533. },
  15534. {
  15535. name: "Teramacro",
  15536. height: math.unit(50000, "miles")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(269, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/danny-kapowsky/front.svg",
  15549. extra: 766 / 736,
  15550. bottom: 0.044
  15551. }
  15552. },
  15553. back: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(269, "lb"),
  15556. name: "Back",
  15557. image: {
  15558. source: "./media/characters/danny-kapowsky/back.svg",
  15559. extra: 797 / 760,
  15560. bottom: 0.025
  15561. }
  15562. },
  15563. },
  15564. [
  15565. {
  15566. name: "Macro",
  15567. height: math.unit(150, "feet"),
  15568. default: true
  15569. },
  15570. {
  15571. name: "Macro+",
  15572. height: math.unit(200, "feet")
  15573. },
  15574. {
  15575. name: "Macro++",
  15576. height: math.unit(300, "feet")
  15577. },
  15578. {
  15579. name: "Macro+++",
  15580. height: math.unit(400, "feet")
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15586. {
  15587. side: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(170, "lb"),
  15590. name: "Side",
  15591. image: {
  15592. source: "./media/characters/finn/side.svg",
  15593. extra: 1953 / 1807,
  15594. bottom: 0.057
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Megamacro",
  15601. height: math.unit(14445, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(5 + 6 / 12, "feet"),
  15611. weight: math.unit(125, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/roy/front.svg",
  15615. extra: 1,
  15616. bottom: 0.11
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Micro",
  15623. height: math.unit(3, "inches"),
  15624. default: true
  15625. },
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(5 + 6 / 12, "feet")
  15629. },
  15630. {
  15631. name: "Lesser Macro",
  15632. height: math.unit(60, "feet")
  15633. },
  15634. {
  15635. name: "Greater Macro",
  15636. height: math.unit(120, "feet")
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15642. {
  15643. front: {
  15644. height: math.unit(6, "feet"),
  15645. weight: math.unit(100, "lb"),
  15646. name: "Front",
  15647. image: {
  15648. source: "./media/characters/aevsivs/front.svg",
  15649. extra: 1,
  15650. bottom: 0.03
  15651. }
  15652. },
  15653. back: {
  15654. height: math.unit(6, "feet"),
  15655. weight: math.unit(100, "lb"),
  15656. name: "Back",
  15657. image: {
  15658. source: "./media/characters/aevsivs/back.svg"
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Micro",
  15665. height: math.unit(2, "inches"),
  15666. default: true
  15667. },
  15668. {
  15669. name: "Normal",
  15670. height: math.unit(5, "feet")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15676. {
  15677. front: {
  15678. height: math.unit(5 + 7 / 12, "feet"),
  15679. weight: math.unit(159, "lb"),
  15680. name: "Front",
  15681. image: {
  15682. source: "./media/characters/hildegard/front.svg",
  15683. extra: 289 / 269,
  15684. bottom: 7.63 / 297.8
  15685. }
  15686. },
  15687. back: {
  15688. height: math.unit(5 + 7 / 12, "feet"),
  15689. weight: math.unit(159, "lb"),
  15690. name: "Back",
  15691. image: {
  15692. source: "./media/characters/hildegard/back.svg",
  15693. extra: 280 / 260,
  15694. bottom: 2.3 / 282
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(5 + 7 / 12, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15708. {
  15709. bernard: {
  15710. height: math.unit(2 + 7 / 12, "feet"),
  15711. weight: math.unit(66, "lb"),
  15712. name: "Bernard",
  15713. rename: true,
  15714. image: {
  15715. source: "./media/characters/bernard-wilder/bernard.svg",
  15716. extra: 192 / 128,
  15717. bottom: 0.05
  15718. }
  15719. },
  15720. wilder: {
  15721. height: math.unit(5 + 8 / 12, "feet"),
  15722. weight: math.unit(143, "lb"),
  15723. name: "Wilder",
  15724. rename: true,
  15725. image: {
  15726. source: "./media/characters/bernard-wilder/wilder.svg",
  15727. extra: 361 / 312,
  15728. bottom: 0.02
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(2 + 7 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15742. {
  15743. anthro: {
  15744. height: math.unit(6 + 1 / 12, "feet"),
  15745. weight: math.unit(155, "lb"),
  15746. name: "Anthro",
  15747. image: {
  15748. source: "./media/characters/hearth/anthro.svg",
  15749. extra: 1178/1136,
  15750. bottom: 28/1206
  15751. }
  15752. },
  15753. feral: {
  15754. height: math.unit(3.78, "feet"),
  15755. weight: math.unit(35, "kg"),
  15756. name: "Feral",
  15757. image: {
  15758. source: "./media/characters/hearth/feral.svg",
  15759. extra: 153 / 135,
  15760. bottom: 0.03
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Normal",
  15767. height: math.unit(6 + 1 / 12, "feet"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(6, "feet"),
  15777. weight: math.unit(182, "lb"),
  15778. name: "Front",
  15779. image: {
  15780. source: "./media/characters/ingrid/front.svg",
  15781. extra: 294 / 268,
  15782. bottom: 0.027
  15783. }
  15784. },
  15785. },
  15786. [
  15787. {
  15788. name: "Normal",
  15789. height: math.unit(6, "feet"),
  15790. default: true
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15796. {
  15797. eevee: {
  15798. height: math.unit(2 + 10 / 12, "feet"),
  15799. weight: math.unit(86, "lb"),
  15800. name: "Malgam",
  15801. image: {
  15802. source: "./media/characters/malgam/eevee.svg",
  15803. extra: 952/784,
  15804. bottom: 38/990
  15805. }
  15806. },
  15807. sylveon: {
  15808. height: math.unit(4, "feet"),
  15809. weight: math.unit(101, "lb"),
  15810. name: "Future Malgam",
  15811. rename: true,
  15812. image: {
  15813. source: "./media/characters/malgam/sylveon.svg",
  15814. extra: 371 / 325,
  15815. bottom: 0.015
  15816. }
  15817. },
  15818. gigantamax: {
  15819. height: math.unit(50, "feet"),
  15820. name: "Gigantamax Malgam",
  15821. rename: true,
  15822. image: {
  15823. source: "./media/characters/malgam/gigantamax.svg"
  15824. }
  15825. },
  15826. },
  15827. [
  15828. {
  15829. name: "Normal",
  15830. height: math.unit(2 + 10 / 12, "feet"),
  15831. default: true
  15832. },
  15833. ]
  15834. ))
  15835. characterMakers.push(() => makeCharacter(
  15836. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15837. {
  15838. front: {
  15839. height: math.unit(5 + 11 / 12, "feet"),
  15840. weight: math.unit(188, "lb"),
  15841. name: "Front",
  15842. image: {
  15843. source: "./media/characters/fleur/front.svg",
  15844. extra: 309 / 283,
  15845. bottom: 0.007
  15846. }
  15847. },
  15848. },
  15849. [
  15850. {
  15851. name: "Normal",
  15852. height: math.unit(5 + 11 / 12, "feet"),
  15853. default: true
  15854. },
  15855. ]
  15856. ))
  15857. characterMakers.push(() => makeCharacter(
  15858. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15859. {
  15860. front: {
  15861. height: math.unit(5 + 4 / 12, "feet"),
  15862. weight: math.unit(122, "lb"),
  15863. name: "Front",
  15864. image: {
  15865. source: "./media/characters/jude/front.svg",
  15866. extra: 288 / 273,
  15867. bottom: 0.03
  15868. }
  15869. },
  15870. },
  15871. [
  15872. {
  15873. name: "Normal",
  15874. height: math.unit(5 + 4 / 12, "feet"),
  15875. default: true
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(5 + 11 / 12, "feet"),
  15884. weight: math.unit(190, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/seara/front.svg",
  15888. extra: 1,
  15889. bottom: 0.05
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(5 + 11 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(16 + 5 / 12, "feet"),
  15906. weight: math.unit(524, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/caspian-lugia/front.svg",
  15910. extra: 1,
  15911. bottom: 0.04
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(16 + 5 / 12, "feet"),
  15919. default: true
  15920. },
  15921. ]
  15922. ))
  15923. characterMakers.push(() => makeCharacter(
  15924. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15925. {
  15926. front: {
  15927. height: math.unit(5 + 7 / 12, "feet"),
  15928. weight: math.unit(170, "lb"),
  15929. name: "Front",
  15930. image: {
  15931. source: "./media/characters/mika/front.svg",
  15932. extra: 1,
  15933. bottom: 0.016
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Normal",
  15940. height: math.unit(5 + 7 / 12, "feet"),
  15941. default: true
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(6 + 2 / 12, "feet"),
  15950. weight: math.unit(268, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/sol/front.svg",
  15954. extra: 247 / 231,
  15955. bottom: 0.05
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Normal",
  15962. height: math.unit(6 + 2 / 12, "feet"),
  15963. default: true
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15969. {
  15970. buizel: {
  15971. height: math.unit(2 + 5 / 12, "feet"),
  15972. weight: math.unit(87, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/umiko/buizel.svg",
  15976. extra: 172 / 157,
  15977. bottom: 0.01
  15978. },
  15979. form: "buizel",
  15980. default: true
  15981. },
  15982. floatzel: {
  15983. height: math.unit(5 + 9 / 12, "feet"),
  15984. weight: math.unit(250, "lb"),
  15985. name: "Front",
  15986. image: {
  15987. source: "./media/characters/umiko/floatzel.svg",
  15988. extra: 1076/1006,
  15989. bottom: 15/1091
  15990. },
  15991. form: "floatzel",
  15992. default: true
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(2 + 5 / 12, "feet"),
  15999. form: "buizel",
  16000. default: true
  16001. },
  16002. {
  16003. name: "Normal",
  16004. height: math.unit(5 + 9 / 12, "feet"),
  16005. form: "floatzel",
  16006. default: true
  16007. },
  16008. ],
  16009. {
  16010. "buizel": {
  16011. name: "Buizel"
  16012. },
  16013. "floatzel": {
  16014. name: "Floatzel",
  16015. default: true
  16016. }
  16017. }
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16021. {
  16022. front: {
  16023. height: math.unit(6 + 2 / 12, "feet"),
  16024. weight: math.unit(146, "lb"),
  16025. name: "Front",
  16026. image: {
  16027. source: "./media/characters/iliac/front.svg",
  16028. extra: 389 / 365,
  16029. bottom: 0.035
  16030. }
  16031. },
  16032. },
  16033. [
  16034. {
  16035. name: "Normal",
  16036. height: math.unit(6 + 2 / 12, "feet"),
  16037. default: true
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(6, "feet"),
  16046. weight: math.unit(170, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/topaz/front.svg",
  16050. extra: 317 / 303,
  16051. bottom: 0.055
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(6, "feet"),
  16059. default: true
  16060. },
  16061. ]
  16062. ))
  16063. characterMakers.push(() => makeCharacter(
  16064. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16065. {
  16066. front: {
  16067. height: math.unit(5 + 11 / 12, "feet"),
  16068. weight: math.unit(144, "lb"),
  16069. name: "Front",
  16070. image: {
  16071. source: "./media/characters/gabriel/front.svg",
  16072. extra: 285 / 262,
  16073. bottom: 0.004
  16074. }
  16075. },
  16076. },
  16077. [
  16078. {
  16079. name: "Normal",
  16080. height: math.unit(5 + 11 / 12, "feet"),
  16081. default: true
  16082. },
  16083. ]
  16084. ))
  16085. characterMakers.push(() => makeCharacter(
  16086. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16087. {
  16088. side: {
  16089. height: math.unit(6 + 5 / 12, "feet"),
  16090. weight: math.unit(300, "lb"),
  16091. name: "Side",
  16092. image: {
  16093. source: "./media/characters/tempest-suicune/side.svg",
  16094. extra: 195 / 154,
  16095. bottom: 0.04
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 5 / 12, "feet"),
  16103. default: true
  16104. },
  16105. ]
  16106. ))
  16107. characterMakers.push(() => makeCharacter(
  16108. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16109. {
  16110. front: {
  16111. height: math.unit(7 + 2 / 12, "feet"),
  16112. weight: math.unit(322, "lb"),
  16113. name: "Front",
  16114. image: {
  16115. source: "./media/characters/vulcan/front.svg",
  16116. extra: 154 / 147,
  16117. bottom: 0.04
  16118. }
  16119. },
  16120. },
  16121. [
  16122. {
  16123. name: "Normal",
  16124. height: math.unit(7 + 2 / 12, "feet"),
  16125. default: true
  16126. },
  16127. ]
  16128. ))
  16129. characterMakers.push(() => makeCharacter(
  16130. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16131. {
  16132. front: {
  16133. height: math.unit(5 + 10 / 12, "feet"),
  16134. weight: math.unit(264, "lb"),
  16135. name: "Front",
  16136. image: {
  16137. source: "./media/characters/gault/front.svg",
  16138. extra: 161 / 140,
  16139. bottom: 0.028
  16140. }
  16141. },
  16142. },
  16143. [
  16144. {
  16145. name: "Normal",
  16146. height: math.unit(5 + 10 / 12, "feet"),
  16147. default: true
  16148. },
  16149. ]
  16150. ))
  16151. characterMakers.push(() => makeCharacter(
  16152. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16153. {
  16154. front: {
  16155. height: math.unit(6, "feet"),
  16156. weight: math.unit(150, "lb"),
  16157. name: "Front",
  16158. image: {
  16159. source: "./media/characters/shard/front.svg",
  16160. extra: 273 / 238,
  16161. bottom: 0.02
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(3 + 6 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(5 + 11 / 12, "feet"),
  16178. weight: math.unit(146, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/ashe/front.svg",
  16182. extra: 400 / 373,
  16183. bottom: 0.01
  16184. }
  16185. },
  16186. },
  16187. [
  16188. {
  16189. name: "Normal",
  16190. height: math.unit(5 + 11 / 12, "feet"),
  16191. default: true
  16192. },
  16193. ]
  16194. ))
  16195. characterMakers.push(() => makeCharacter(
  16196. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16197. {
  16198. front: {
  16199. height: math.unit(5 + 5 / 12, "feet"),
  16200. weight: math.unit(135, "lb"),
  16201. name: "Front",
  16202. image: {
  16203. source: "./media/characters/beatrix/front.svg",
  16204. extra: 392 / 379,
  16205. bottom: 0.01
  16206. }
  16207. },
  16208. },
  16209. [
  16210. {
  16211. name: "Normal",
  16212. height: math.unit(6, "feet"),
  16213. default: true
  16214. },
  16215. ]
  16216. ))
  16217. characterMakers.push(() => makeCharacter(
  16218. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16219. {
  16220. front: {
  16221. height: math.unit(6 + 2/12, "feet"),
  16222. weight: math.unit(135, "lb"),
  16223. name: "Front",
  16224. image: {
  16225. source: "./media/characters/ignatius/front.svg",
  16226. extra: 1380/1259,
  16227. bottom: 27/1407
  16228. }
  16229. },
  16230. },
  16231. [
  16232. {
  16233. name: "Normal",
  16234. height: math.unit(6 + 2/12, "feet"),
  16235. default: true
  16236. },
  16237. ]
  16238. ))
  16239. characterMakers.push(() => makeCharacter(
  16240. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16241. {
  16242. front: {
  16243. height: math.unit(6 + 2 / 12, "feet"),
  16244. weight: math.unit(138, "lb"),
  16245. name: "Front",
  16246. image: {
  16247. source: "./media/characters/mei-li/front.svg",
  16248. extra: 237 / 229,
  16249. bottom: 0.03
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Normal",
  16256. height: math.unit(6 + 2 / 12, "feet"),
  16257. default: true
  16258. },
  16259. ]
  16260. ))
  16261. characterMakers.push(() => makeCharacter(
  16262. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16263. {
  16264. front: {
  16265. height: math.unit(2 + 4 / 12, "feet"),
  16266. weight: math.unit(62, "lb"),
  16267. name: "Front",
  16268. image: {
  16269. source: "./media/characters/puru/front.svg",
  16270. extra: 206 / 149,
  16271. bottom: 0.06
  16272. }
  16273. },
  16274. },
  16275. [
  16276. {
  16277. name: "Normal",
  16278. height: math.unit(2 + 4 / 12, "feet"),
  16279. default: true
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16285. {
  16286. anthro: {
  16287. height: math.unit(5 + 8/12, "feet"),
  16288. weight: math.unit(200, "lb"),
  16289. energyNeed: math.unit(2000, "kcal"),
  16290. name: "Anthro",
  16291. image: {
  16292. source: "./media/characters/kee/anthro.svg",
  16293. extra: 3251/3184,
  16294. bottom: 250/3501
  16295. }
  16296. },
  16297. taur: {
  16298. height: math.unit(11, "feet"),
  16299. weight: math.unit(500, "lb"),
  16300. energyNeed: math.unit(5000, "kcal"),
  16301. name: "Taur",
  16302. image: {
  16303. source: "./media/characters/kee/taur.svg",
  16304. extra: 1362/1320,
  16305. bottom: 83/1445
  16306. }
  16307. },
  16308. },
  16309. [
  16310. {
  16311. name: "Normal",
  16312. height: math.unit(5 + 8/12, "feet"),
  16313. default: true
  16314. },
  16315. {
  16316. name: "Macro",
  16317. height: math.unit(35, "feet")
  16318. },
  16319. ]
  16320. ))
  16321. characterMakers.push(() => makeCharacter(
  16322. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16323. {
  16324. anthro: {
  16325. height: math.unit(7, "feet"),
  16326. weight: math.unit(190, "lb"),
  16327. name: "Anthro",
  16328. image: {
  16329. source: "./media/characters/cobalt-dracha/anthro.svg",
  16330. extra: 231 / 225,
  16331. bottom: 0.04
  16332. }
  16333. },
  16334. feral: {
  16335. height: math.unit(9 + 7 / 12, "feet"),
  16336. weight: math.unit(294, "lb"),
  16337. name: "Feral",
  16338. image: {
  16339. source: "./media/characters/cobalt-dracha/feral.svg",
  16340. extra: 692 / 633,
  16341. bottom: 0.05
  16342. }
  16343. },
  16344. },
  16345. [
  16346. {
  16347. name: "Normal",
  16348. height: math.unit(7, "feet"),
  16349. default: true
  16350. },
  16351. ]
  16352. ))
  16353. characterMakers.push(() => makeCharacter(
  16354. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16355. {
  16356. fallen: {
  16357. height: math.unit(11 + 8 / 12, "feet"),
  16358. weight: math.unit(485, "lb"),
  16359. name: "Java (Fallen)",
  16360. rename: true,
  16361. image: {
  16362. source: "./media/characters/java/fallen.svg",
  16363. extra: 226 / 208,
  16364. bottom: 0.005
  16365. }
  16366. },
  16367. godkin: {
  16368. height: math.unit(10 + 6 / 12, "feet"),
  16369. weight: math.unit(328, "lb"),
  16370. name: "Java (Godkin)",
  16371. rename: true,
  16372. image: {
  16373. source: "./media/characters/java/godkin.svg",
  16374. extra: 1104/1068,
  16375. bottom: 36/1140
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "Normal",
  16382. height: math.unit(11 + 8 / 12, "feet"),
  16383. default: true
  16384. },
  16385. ]
  16386. ))
  16387. characterMakers.push(() => makeCharacter(
  16388. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16389. {
  16390. front: {
  16391. height: math.unit(5 + 9 / 12, "feet"),
  16392. weight: math.unit(170, "lb"),
  16393. name: "Front",
  16394. image: {
  16395. source: "./media/characters/purna/front.svg",
  16396. extra: 239 / 229,
  16397. bottom: 0.01
  16398. }
  16399. },
  16400. },
  16401. [
  16402. {
  16403. name: "Normal",
  16404. height: math.unit(5 + 9 / 12, "feet"),
  16405. default: true
  16406. },
  16407. ]
  16408. ))
  16409. characterMakers.push(() => makeCharacter(
  16410. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16411. {
  16412. front: {
  16413. height: math.unit(5 + 9 / 12, "feet"),
  16414. weight: math.unit(142, "lb"),
  16415. name: "Front",
  16416. image: {
  16417. source: "./media/characters/kuva/front.svg",
  16418. extra: 281 / 271,
  16419. bottom: 0.006
  16420. }
  16421. },
  16422. },
  16423. [
  16424. {
  16425. name: "Normal",
  16426. height: math.unit(5 + 9 / 12, "feet"),
  16427. default: true
  16428. },
  16429. ]
  16430. ))
  16431. characterMakers.push(() => makeCharacter(
  16432. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16433. {
  16434. anthro: {
  16435. height: math.unit(9 + 2 / 12, "feet"),
  16436. weight: math.unit(270, "lb"),
  16437. name: "Anthro",
  16438. image: {
  16439. source: "./media/characters/embra/anthro.svg",
  16440. extra: 200 / 187,
  16441. bottom: 0.02
  16442. }
  16443. },
  16444. feral: {
  16445. height: math.unit(18 + 8 / 12, "feet"),
  16446. weight: math.unit(576, "lb"),
  16447. name: "Feral",
  16448. image: {
  16449. source: "./media/characters/embra/feral.svg",
  16450. extra: 152 / 137,
  16451. bottom: 0.037
  16452. }
  16453. },
  16454. },
  16455. [
  16456. {
  16457. name: "Normal",
  16458. height: math.unit(9 + 2 / 12, "feet"),
  16459. default: true
  16460. },
  16461. ]
  16462. ))
  16463. characterMakers.push(() => makeCharacter(
  16464. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16465. {
  16466. anthro: {
  16467. height: math.unit(10 + 9 / 12, "feet"),
  16468. weight: math.unit(224, "lb"),
  16469. name: "Anthro",
  16470. image: {
  16471. source: "./media/characters/grottos/anthro.svg",
  16472. extra: 350 / 332,
  16473. bottom: 0.045
  16474. }
  16475. },
  16476. feral: {
  16477. height: math.unit(20 + 7 / 12, "feet"),
  16478. weight: math.unit(629, "lb"),
  16479. name: "Feral",
  16480. image: {
  16481. source: "./media/characters/grottos/feral.svg",
  16482. extra: 207 / 190,
  16483. bottom: 0.05
  16484. }
  16485. },
  16486. },
  16487. [
  16488. {
  16489. name: "Normal",
  16490. height: math.unit(10 + 9 / 12, "feet"),
  16491. default: true
  16492. },
  16493. ]
  16494. ))
  16495. characterMakers.push(() => makeCharacter(
  16496. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16497. {
  16498. anthro: {
  16499. height: math.unit(9 + 6 / 12, "feet"),
  16500. weight: math.unit(298, "lb"),
  16501. name: "Anthro",
  16502. image: {
  16503. source: "./media/characters/frifna/anthro.svg",
  16504. extra: 282 / 269,
  16505. bottom: 0.015
  16506. }
  16507. },
  16508. feral: {
  16509. height: math.unit(16 + 2 / 12, "feet"),
  16510. weight: math.unit(624, "lb"),
  16511. name: "Feral",
  16512. image: {
  16513. source: "./media/characters/frifna/feral.svg"
  16514. }
  16515. },
  16516. },
  16517. [
  16518. {
  16519. name: "Normal",
  16520. height: math.unit(9 + 6 / 12, "feet"),
  16521. default: true
  16522. },
  16523. ]
  16524. ))
  16525. characterMakers.push(() => makeCharacter(
  16526. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16527. {
  16528. front: {
  16529. height: math.unit(6 + 2 / 12, "feet"),
  16530. weight: math.unit(168, "lb"),
  16531. name: "Front",
  16532. image: {
  16533. source: "./media/characters/elise/front.svg",
  16534. extra: 276 / 271
  16535. }
  16536. },
  16537. },
  16538. [
  16539. {
  16540. name: "Normal",
  16541. height: math.unit(6 + 2 / 12, "feet"),
  16542. default: true
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(5 + 10 / 12, "feet"),
  16551. weight: math.unit(210, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/glade/front.svg",
  16555. extra: 258 / 247,
  16556. bottom: 0.008
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(5 + 10 / 12, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(5 + 10 / 12, "feet"),
  16573. weight: math.unit(129, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/rina/front.svg",
  16577. extra: 266 / 255,
  16578. bottom: 0.005
  16579. }
  16580. },
  16581. },
  16582. [
  16583. {
  16584. name: "Normal",
  16585. height: math.unit(5 + 10 / 12, "feet"),
  16586. default: true
  16587. },
  16588. ]
  16589. ))
  16590. characterMakers.push(() => makeCharacter(
  16591. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16592. {
  16593. front: {
  16594. height: math.unit(6 + 1 / 12, "feet"),
  16595. weight: math.unit(192, "lb"),
  16596. name: "Front",
  16597. image: {
  16598. source: "./media/characters/veronica/front.svg",
  16599. extra: 319 / 309,
  16600. bottom: 0.005
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(6 + 1 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(9 + 3 / 12, "feet"),
  16617. weight: math.unit(1100, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/braxton/front.svg",
  16621. extra: 1057 / 984,
  16622. bottom: 0.05
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(9 + 3 / 12, "feet")
  16630. },
  16631. {
  16632. name: "Giant",
  16633. height: math.unit(300, "feet"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(700, "feet")
  16639. },
  16640. {
  16641. name: "Megamacro",
  16642. height: math.unit(6000, "feet")
  16643. },
  16644. ]
  16645. ))
  16646. characterMakers.push(() => makeCharacter(
  16647. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16648. {
  16649. front: {
  16650. height: math.unit(6 + 7 / 12, "feet"),
  16651. weight: math.unit(150, "lb"),
  16652. name: "Front",
  16653. image: {
  16654. source: "./media/characters/blue-feyonics/front.svg",
  16655. extra: 1403 / 1306,
  16656. bottom: 0.047
  16657. }
  16658. },
  16659. },
  16660. [
  16661. {
  16662. name: "Normal",
  16663. height: math.unit(6 + 7 / 12, "feet"),
  16664. default: true
  16665. },
  16666. ]
  16667. ))
  16668. characterMakers.push(() => makeCharacter(
  16669. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16670. {
  16671. front: {
  16672. height: math.unit(1.8, "meters"),
  16673. weight: math.unit(60, "kg"),
  16674. name: "Front",
  16675. image: {
  16676. source: "./media/characters/maxwell/front.svg",
  16677. extra: 2060 / 1873
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Micro",
  16684. height: math.unit(1, "mm")
  16685. },
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1.8, "meter"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(30, "meters")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(10, "km")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(150, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/jack/front.svg",
  16710. extra: 1754 / 1640,
  16711. bottom: 0.01
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(80000, "feet"),
  16719. default: true
  16720. },
  16721. {
  16722. name: "Max size",
  16723. height: math.unit(10, "lightyears")
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16729. {
  16730. urban: {
  16731. height: math.unit(5, "feet"),
  16732. weight: math.unit(240, "lb"),
  16733. name: "Urban",
  16734. image: {
  16735. source: "./media/characters/cafat/urban.svg",
  16736. extra: 1223/1126,
  16737. bottom: 205/1428
  16738. }
  16739. },
  16740. summer: {
  16741. height: math.unit(5, "feet"),
  16742. weight: math.unit(240, "lb"),
  16743. name: "Summer",
  16744. image: {
  16745. source: "./media/characters/cafat/summer.svg",
  16746. extra: 1223/1126,
  16747. bottom: 205/1428
  16748. }
  16749. },
  16750. winter: {
  16751. height: math.unit(5, "feet"),
  16752. weight: math.unit(240, "lb"),
  16753. name: "Winter",
  16754. image: {
  16755. source: "./media/characters/cafat/winter.svg",
  16756. extra: 1223/1126,
  16757. bottom: 205/1428
  16758. }
  16759. },
  16760. lingerie: {
  16761. height: math.unit(5, "feet"),
  16762. weight: math.unit(240, "lb"),
  16763. name: "Lingerie",
  16764. image: {
  16765. source: "./media/characters/cafat/lingerie.svg",
  16766. extra: 1223/1126,
  16767. bottom: 205/1428
  16768. }
  16769. },
  16770. upright: {
  16771. height: math.unit(6.3, "feet"),
  16772. weight: math.unit(240, "lb"),
  16773. name: "Upright",
  16774. image: {
  16775. source: "./media/characters/cafat/upright.svg",
  16776. bottom: 0.01
  16777. }
  16778. },
  16779. uprightFull: {
  16780. height: math.unit(6.3, "feet"),
  16781. weight: math.unit(240, "lb"),
  16782. name: "Upright (Full)",
  16783. image: {
  16784. source: "./media/characters/cafat/upright-full.svg",
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Small",
  16792. height: math.unit(5, "feet"),
  16793. default: true
  16794. },
  16795. {
  16796. name: "Large",
  16797. height: math.unit(13, "feet")
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(6, "feet"),
  16806. weight: math.unit(150, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/verin-raharra/front.svg",
  16810. extra: 5019 / 4835,
  16811. bottom: 0.023
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(7 + 5 / 12, "feet"),
  16819. default: true
  16820. },
  16821. {
  16822. name: "Upsized",
  16823. height: math.unit(20, "feet")
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(7, "feet"),
  16832. weight: math.unit(230, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/nakata/front.svg",
  16836. extra: 1.005,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(7, "feet"),
  16845. default: true
  16846. },
  16847. {
  16848. name: "Big",
  16849. height: math.unit(14, "feet")
  16850. },
  16851. {
  16852. name: "Macro",
  16853. height: math.unit(400, "feet")
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(4.91, "feet"),
  16862. weight: math.unit(100, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/lily/front.svg",
  16866. extra: 1585 / 1415,
  16867. bottom: 0.02
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(4.91, "feet"),
  16875. default: true
  16876. },
  16877. ]
  16878. ))
  16879. characterMakers.push(() => makeCharacter(
  16880. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16881. {
  16882. laying: {
  16883. height: math.unit(4 + 4 / 12, "feet"),
  16884. weight: math.unit(600, "lb"),
  16885. name: "Laying",
  16886. image: {
  16887. source: "./media/characters/sheila/laying.svg",
  16888. extra: 1333 / 1265,
  16889. bottom: 0.16
  16890. }
  16891. },
  16892. },
  16893. [
  16894. {
  16895. name: "Normal",
  16896. height: math.unit(4 + 4 / 12, "feet"),
  16897. default: true
  16898. },
  16899. ]
  16900. ))
  16901. characterMakers.push(() => makeCharacter(
  16902. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16903. {
  16904. front: {
  16905. height: math.unit(6, "feet"),
  16906. weight: math.unit(190, "lb"),
  16907. name: "Front",
  16908. image: {
  16909. source: "./media/characters/sax/front.svg",
  16910. extra: 1187 / 973,
  16911. bottom: 0.042
  16912. }
  16913. },
  16914. },
  16915. [
  16916. {
  16917. name: "Micro",
  16918. height: math.unit(4, "inches"),
  16919. default: true
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6, "feet"),
  16928. weight: math.unit(150, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/pandora/front.svg",
  16932. extra: 2720 / 2556,
  16933. bottom: 0.015
  16934. }
  16935. },
  16936. back: {
  16937. height: math.unit(6, "feet"),
  16938. weight: math.unit(150, "lb"),
  16939. name: "Back",
  16940. image: {
  16941. source: "./media/characters/pandora/back.svg",
  16942. extra: 2720 / 2556,
  16943. bottom: 0.01
  16944. }
  16945. },
  16946. beans: {
  16947. height: math.unit(6 / 8, "feet"),
  16948. name: "Beans",
  16949. image: {
  16950. source: "./media/characters/pandora/beans.svg"
  16951. }
  16952. },
  16953. collar: {
  16954. height: math.unit(0.31, "feet"),
  16955. name: "Collar",
  16956. image: {
  16957. source: "./media/characters/pandora/collar.svg"
  16958. }
  16959. },
  16960. skirt: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(150, "lb"),
  16963. name: "Skirt",
  16964. image: {
  16965. source: "./media/characters/pandora/skirt.svg",
  16966. extra: 1622 / 1525,
  16967. bottom: 0.015
  16968. }
  16969. },
  16970. hoodie: {
  16971. height: math.unit(6, "feet"),
  16972. weight: math.unit(150, "lb"),
  16973. name: "Hoodie",
  16974. image: {
  16975. source: "./media/characters/pandora/hoodie.svg",
  16976. extra: 1622 / 1525,
  16977. bottom: 0.015
  16978. }
  16979. },
  16980. casual: {
  16981. height: math.unit(6, "feet"),
  16982. weight: math.unit(150, "lb"),
  16983. name: "Casual",
  16984. image: {
  16985. source: "./media/characters/pandora/casual.svg",
  16986. extra: 1622 / 1525,
  16987. bottom: 0.015
  16988. }
  16989. },
  16990. },
  16991. [
  16992. {
  16993. name: "Normal",
  16994. height: math.unit(6, "feet")
  16995. },
  16996. {
  16997. name: "Big Steppy",
  16998. height: math.unit(1, "km"),
  16999. default: true
  17000. },
  17001. {
  17002. name: "Galactic Steppy",
  17003. height: math.unit(2, "gigameters")
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17009. {
  17010. side: {
  17011. height: math.unit(10, "feet"),
  17012. weight: math.unit(800, "kg"),
  17013. name: "Side",
  17014. image: {
  17015. source: "./media/characters/venio-darcony/side.svg",
  17016. extra: 1373 / 1003,
  17017. bottom: 0.037
  17018. }
  17019. },
  17020. front: {
  17021. height: math.unit(19, "feet"),
  17022. weight: math.unit(800, "kg"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/venio-darcony/front.svg"
  17026. }
  17027. },
  17028. back: {
  17029. height: math.unit(19, "feet"),
  17030. weight: math.unit(800, "kg"),
  17031. name: "Back",
  17032. image: {
  17033. source: "./media/characters/venio-darcony/back.svg"
  17034. }
  17035. },
  17036. sideNsfw: {
  17037. height: math.unit(10, "feet"),
  17038. weight: math.unit(800, "kg"),
  17039. name: "Side (NSFW)",
  17040. image: {
  17041. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17042. extra: 1373 / 1003,
  17043. bottom: 0.037
  17044. }
  17045. },
  17046. frontNsfw: {
  17047. height: math.unit(19, "feet"),
  17048. weight: math.unit(800, "kg"),
  17049. name: "Front (NSFW)",
  17050. image: {
  17051. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17052. }
  17053. },
  17054. backNsfw: {
  17055. height: math.unit(19, "feet"),
  17056. weight: math.unit(800, "kg"),
  17057. name: "Back (NSFW)",
  17058. image: {
  17059. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17060. }
  17061. },
  17062. sideArmored: {
  17063. height: math.unit(10, "feet"),
  17064. weight: math.unit(800, "kg"),
  17065. name: "Side (Armored)",
  17066. image: {
  17067. source: "./media/characters/venio-darcony/side-armored.svg",
  17068. extra: 1373 / 1003,
  17069. bottom: 0.037
  17070. }
  17071. },
  17072. frontArmored: {
  17073. height: math.unit(19, "feet"),
  17074. weight: math.unit(900, "kg"),
  17075. name: "Front (Armored)",
  17076. image: {
  17077. source: "./media/characters/venio-darcony/front-armored.svg"
  17078. }
  17079. },
  17080. backArmored: {
  17081. height: math.unit(19, "feet"),
  17082. weight: math.unit(900, "kg"),
  17083. name: "Back (Armored)",
  17084. image: {
  17085. source: "./media/characters/venio-darcony/back-armored.svg"
  17086. }
  17087. },
  17088. sword: {
  17089. height: math.unit(10, "feet"),
  17090. weight: math.unit(50, "lb"),
  17091. name: "Sword",
  17092. image: {
  17093. source: "./media/characters/venio-darcony/sword.svg"
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(10, "feet")
  17101. },
  17102. {
  17103. name: "Macro",
  17104. height: math.unit(130, "feet"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "Macro+",
  17109. height: math.unit(240, "feet")
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(6, "feet"),
  17118. weight: math.unit(150, "lb"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/veski/front.svg",
  17122. extra: 1299 / 1225,
  17123. bottom: 0.04
  17124. }
  17125. },
  17126. back: {
  17127. height: math.unit(6, "feet"),
  17128. weight: math.unit(150, "lb"),
  17129. name: "Back",
  17130. image: {
  17131. source: "./media/characters/veski/back.svg",
  17132. extra: 1299 / 1225,
  17133. bottom: 0.008
  17134. }
  17135. },
  17136. maw: {
  17137. height: math.unit(1.5 * 1.21, "feet"),
  17138. name: "Maw",
  17139. image: {
  17140. source: "./media/characters/veski/maw.svg"
  17141. }
  17142. },
  17143. },
  17144. [
  17145. {
  17146. name: "Macro",
  17147. height: math.unit(2, "km"),
  17148. default: true
  17149. },
  17150. ]
  17151. ))
  17152. characterMakers.push(() => makeCharacter(
  17153. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17154. {
  17155. front: {
  17156. height: math.unit(5 + 7 / 12, "feet"),
  17157. name: "Front",
  17158. image: {
  17159. source: "./media/characters/isabelle/front.svg",
  17160. extra: 2130 / 1976,
  17161. bottom: 0.05
  17162. }
  17163. },
  17164. },
  17165. [
  17166. {
  17167. name: "Supermicro",
  17168. height: math.unit(10, "micrometers")
  17169. },
  17170. {
  17171. name: "Micro",
  17172. height: math.unit(1, "inch")
  17173. },
  17174. {
  17175. name: "Tiny",
  17176. height: math.unit(5, "inches")
  17177. },
  17178. {
  17179. name: "Standard",
  17180. height: math.unit(5 + 7 / 12, "inches")
  17181. },
  17182. {
  17183. name: "Macro",
  17184. height: math.unit(80, "meters"),
  17185. default: true
  17186. },
  17187. {
  17188. name: "Megamacro",
  17189. height: math.unit(250, "meters")
  17190. },
  17191. {
  17192. name: "Gigamacro",
  17193. height: math.unit(5, "km")
  17194. },
  17195. {
  17196. name: "Cosmic",
  17197. height: math.unit(2.5e6, "miles")
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(6, "feet"),
  17206. weight: math.unit(150, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/hanzo/front.svg",
  17210. extra: 374 / 344,
  17211. bottom: 0.02
  17212. }
  17213. },
  17214. },
  17215. [
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(8, "feet"),
  17219. default: true
  17220. },
  17221. ]
  17222. ))
  17223. characterMakers.push(() => makeCharacter(
  17224. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17225. {
  17226. front: {
  17227. height: math.unit(7, "feet"),
  17228. weight: math.unit(130, "lb"),
  17229. name: "Front",
  17230. image: {
  17231. source: "./media/characters/anna/front.svg",
  17232. extra: 169 / 145,
  17233. bottom: 0.06
  17234. }
  17235. },
  17236. full: {
  17237. height: math.unit(4.96, "feet"),
  17238. weight: math.unit(220, "lb"),
  17239. name: "Full",
  17240. image: {
  17241. source: "./media/characters/anna/full.svg",
  17242. extra: 138 / 114,
  17243. bottom: 0.15
  17244. }
  17245. },
  17246. tongue: {
  17247. height: math.unit(2.53, "feet"),
  17248. name: "Tongue",
  17249. image: {
  17250. source: "./media/characters/anna/tongue.svg"
  17251. }
  17252. },
  17253. },
  17254. [
  17255. {
  17256. name: "Normal",
  17257. height: math.unit(7, "feet"),
  17258. default: true
  17259. },
  17260. ]
  17261. ))
  17262. characterMakers.push(() => makeCharacter(
  17263. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17264. {
  17265. front: {
  17266. height: math.unit(7, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Front",
  17269. image: {
  17270. source: "./media/characters/ian-corvid/front.svg",
  17271. extra: 150 / 142,
  17272. bottom: 0.02
  17273. }
  17274. },
  17275. back: {
  17276. height: math.unit(7, "feet"),
  17277. weight: math.unit(150, "lb"),
  17278. name: "Back",
  17279. image: {
  17280. source: "./media/characters/ian-corvid/back.svg",
  17281. extra: 150 / 143,
  17282. bottom: 0.01
  17283. }
  17284. },
  17285. stomping: {
  17286. height: math.unit(7, "feet"),
  17287. weight: math.unit(150, "lb"),
  17288. name: "Stomping",
  17289. image: {
  17290. source: "./media/characters/ian-corvid/stomping.svg",
  17291. extra: 76 / 72
  17292. }
  17293. },
  17294. sitting: {
  17295. height: math.unit(7 / 1.8, "feet"),
  17296. weight: math.unit(150, "lb"),
  17297. name: "Sitting",
  17298. image: {
  17299. source: "./media/characters/ian-corvid/sitting.svg",
  17300. extra: 1400 / 1269,
  17301. bottom: 0.15
  17302. }
  17303. },
  17304. },
  17305. [
  17306. {
  17307. name: "Tiny Microw",
  17308. height: math.unit(1, "inch")
  17309. },
  17310. {
  17311. name: "Microw",
  17312. height: math.unit(6, "inches")
  17313. },
  17314. {
  17315. name: "Crow",
  17316. height: math.unit(7 + 1 / 12, "feet"),
  17317. default: true
  17318. },
  17319. {
  17320. name: "Macrow",
  17321. height: math.unit(176, "feet")
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(5 + 7 / 12, "feet"),
  17330. weight: math.unit(147, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/natalie-kellon/front.svg",
  17334. extra: 1214 / 1141,
  17335. bottom: 0.02
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Micro",
  17342. height: math.unit(1 / 16, "inch")
  17343. },
  17344. {
  17345. name: "Tiny",
  17346. height: math.unit(4, "inches")
  17347. },
  17348. {
  17349. name: "Normal",
  17350. height: math.unit(5 + 7 / 12, "feet"),
  17351. default: true
  17352. },
  17353. {
  17354. name: "Amazon",
  17355. height: math.unit(12, "feet")
  17356. },
  17357. {
  17358. name: "Giantess",
  17359. height: math.unit(160, "meters")
  17360. },
  17361. {
  17362. name: "Titaness",
  17363. height: math.unit(800, "meters")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(6, "feet"),
  17372. weight: math.unit(150, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/alluria/front.svg",
  17376. extra: 806 / 738,
  17377. bottom: 0.01
  17378. }
  17379. },
  17380. side: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Side",
  17384. image: {
  17385. source: "./media/characters/alluria/side.svg",
  17386. extra: 800 / 750,
  17387. }
  17388. },
  17389. back: {
  17390. height: math.unit(6, "feet"),
  17391. weight: math.unit(150, "lb"),
  17392. name: "Back",
  17393. image: {
  17394. source: "./media/characters/alluria/back.svg",
  17395. extra: 806 / 738,
  17396. }
  17397. },
  17398. frontMaid: {
  17399. height: math.unit(6, "feet"),
  17400. weight: math.unit(150, "lb"),
  17401. name: "Front (Maid)",
  17402. image: {
  17403. source: "./media/characters/alluria/front-maid.svg",
  17404. extra: 806 / 738,
  17405. bottom: 0.01
  17406. }
  17407. },
  17408. sideMaid: {
  17409. height: math.unit(6, "feet"),
  17410. weight: math.unit(150, "lb"),
  17411. name: "Side (Maid)",
  17412. image: {
  17413. source: "./media/characters/alluria/side-maid.svg",
  17414. extra: 800 / 750,
  17415. bottom: 0.005
  17416. }
  17417. },
  17418. backMaid: {
  17419. height: math.unit(6, "feet"),
  17420. weight: math.unit(150, "lb"),
  17421. name: "Back (Maid)",
  17422. image: {
  17423. source: "./media/characters/alluria/back-maid.svg",
  17424. extra: 806 / 738,
  17425. }
  17426. },
  17427. },
  17428. [
  17429. {
  17430. name: "Micro",
  17431. height: math.unit(6, "inches"),
  17432. default: true
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(150, "lb"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/kyle/front.svg",
  17445. extra: 1069 / 962,
  17446. bottom: 77.228 / 1727.45
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Macro",
  17453. height: math.unit(150, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(6, "feet"),
  17463. weight: math.unit(300, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/duncan/front.svg",
  17467. extra: 1650 / 1482,
  17468. bottom: 0.05
  17469. }
  17470. },
  17471. },
  17472. [
  17473. {
  17474. name: "Macro",
  17475. height: math.unit(100, "feet"),
  17476. default: true
  17477. },
  17478. ]
  17479. ))
  17480. characterMakers.push(() => makeCharacter(
  17481. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17482. {
  17483. front: {
  17484. height: math.unit(5 + 4 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Front",
  17487. image: {
  17488. source: "./media/characters/memory/front.svg",
  17489. extra: 3641 / 3545,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. back: {
  17494. height: math.unit(5 + 4 / 12, "feet"),
  17495. weight: math.unit(220, "lb"),
  17496. name: "Back",
  17497. image: {
  17498. source: "./media/characters/memory/back.svg",
  17499. extra: 3641 / 3545,
  17500. bottom: 0.025
  17501. }
  17502. },
  17503. frontSkirt: {
  17504. height: math.unit(5 + 4 / 12, "feet"),
  17505. weight: math.unit(220, "lb"),
  17506. name: "Front (Skirt)",
  17507. image: {
  17508. source: "./media/characters/memory/front-skirt.svg",
  17509. extra: 3641 / 3545,
  17510. bottom: 0.03
  17511. }
  17512. },
  17513. frontDress: {
  17514. height: math.unit(5 + 4 / 12, "feet"),
  17515. weight: math.unit(220, "lb"),
  17516. name: "Front (Dress)",
  17517. image: {
  17518. source: "./media/characters/memory/front-dress.svg",
  17519. extra: 3641 / 3545,
  17520. bottom: 0.03
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Micro",
  17527. height: math.unit(6, "inches"),
  17528. default: true
  17529. },
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(5 + 4 / 12, "feet")
  17533. },
  17534. ]
  17535. ))
  17536. characterMakers.push(() => makeCharacter(
  17537. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17538. {
  17539. front: {
  17540. height: math.unit(4 + 11 / 12, "feet"),
  17541. weight: math.unit(100, "lb"),
  17542. name: "Front",
  17543. image: {
  17544. source: "./media/characters/luno/front.svg",
  17545. extra: 1535 / 1487,
  17546. bottom: 0.03
  17547. }
  17548. },
  17549. },
  17550. [
  17551. {
  17552. name: "Micro",
  17553. height: math.unit(3, "inches")
  17554. },
  17555. {
  17556. name: "Normal",
  17557. height: math.unit(4 + 11 / 12, "feet"),
  17558. default: true
  17559. },
  17560. {
  17561. name: "Macro",
  17562. height: math.unit(300, "feet")
  17563. },
  17564. {
  17565. name: "Megamacro",
  17566. height: math.unit(700, "miles")
  17567. },
  17568. ]
  17569. ))
  17570. characterMakers.push(() => makeCharacter(
  17571. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17572. {
  17573. front: {
  17574. height: math.unit(6 + 2 / 12, "feet"),
  17575. weight: math.unit(170, "lb"),
  17576. name: "Front",
  17577. image: {
  17578. source: "./media/characters/jamesy/front.svg",
  17579. extra: 440 / 382,
  17580. bottom: 0.005
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Micro",
  17587. height: math.unit(3, "inches")
  17588. },
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(6 + 2 / 12, "feet"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Macro",
  17596. height: math.unit(300, "feet")
  17597. },
  17598. {
  17599. name: "Megamacro",
  17600. height: math.unit(700, "miles")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(160, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/mark/front.svg",
  17613. extra: 3300 / 3100,
  17614. bottom: 136.42 / 3440.47
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(120, "meters")
  17622. },
  17623. {
  17624. name: "Bigger Macro",
  17625. height: math.unit(350, "meters")
  17626. },
  17627. {
  17628. name: "Megamacro",
  17629. height: math.unit(8, "km"),
  17630. default: true
  17631. },
  17632. {
  17633. name: "Continental",
  17634. height: math.unit(4550, "km")
  17635. },
  17636. {
  17637. name: "Planetary",
  17638. height: math.unit(65000, "km")
  17639. },
  17640. ]
  17641. ))
  17642. characterMakers.push(() => makeCharacter(
  17643. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17644. {
  17645. front: {
  17646. height: math.unit(6, "feet"),
  17647. weight: math.unit(400, "lb"),
  17648. name: "Front",
  17649. image: {
  17650. source: "./media/characters/mac/front.svg",
  17651. extra: 1048 / 987.7,
  17652. bottom: 60 / 1107.6,
  17653. }
  17654. },
  17655. },
  17656. [
  17657. {
  17658. name: "Macro",
  17659. height: math.unit(500, "feet"),
  17660. default: true
  17661. },
  17662. ]
  17663. ))
  17664. characterMakers.push(() => makeCharacter(
  17665. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17666. {
  17667. front: {
  17668. height: math.unit(5 + 2 / 12, "feet"),
  17669. weight: math.unit(190, "lb"),
  17670. name: "Front",
  17671. image: {
  17672. source: "./media/characters/bari/front.svg",
  17673. extra: 3156 / 2880,
  17674. bottom: 0.03
  17675. }
  17676. },
  17677. back: {
  17678. height: math.unit(5 + 2 / 12, "feet"),
  17679. weight: math.unit(190, "lb"),
  17680. name: "Back",
  17681. image: {
  17682. source: "./media/characters/bari/back.svg",
  17683. extra: 3260 / 2834,
  17684. bottom: 0.025
  17685. }
  17686. },
  17687. frontPlush: {
  17688. height: math.unit(5 + 2 / 12, "feet"),
  17689. weight: math.unit(190, "lb"),
  17690. name: "Front (Plush)",
  17691. image: {
  17692. source: "./media/characters/bari/front-plush.svg",
  17693. extra: 1112 / 1061,
  17694. bottom: 0.002
  17695. }
  17696. },
  17697. },
  17698. [
  17699. {
  17700. name: "Micro",
  17701. height: math.unit(3, "inches")
  17702. },
  17703. {
  17704. name: "Normal",
  17705. height: math.unit(5 + 2 / 12, "feet"),
  17706. default: true
  17707. },
  17708. {
  17709. name: "Macro",
  17710. height: math.unit(20, "feet")
  17711. },
  17712. ]
  17713. ))
  17714. characterMakers.push(() => makeCharacter(
  17715. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17716. {
  17717. front: {
  17718. height: math.unit(6 + 1 / 12, "feet"),
  17719. weight: math.unit(275, "lb"),
  17720. name: "Front",
  17721. image: {
  17722. source: "./media/characters/hunter-misha-raven/front.svg"
  17723. }
  17724. },
  17725. },
  17726. [
  17727. {
  17728. name: "Mortal",
  17729. height: math.unit(6 + 1 / 12, "feet")
  17730. },
  17731. {
  17732. name: "Divine",
  17733. height: math.unit(1.12134e34, "parsecs"),
  17734. default: true
  17735. },
  17736. ]
  17737. ))
  17738. characterMakers.push(() => makeCharacter(
  17739. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17740. {
  17741. front: {
  17742. height: math.unit(6 + 3 / 12, "feet"),
  17743. weight: math.unit(220, "lb"),
  17744. name: "Front",
  17745. image: {
  17746. source: "./media/characters/max-calore/front.svg",
  17747. extra: 1700 / 1648,
  17748. bottom: 0.01
  17749. }
  17750. },
  17751. back: {
  17752. height: math.unit(6 + 3 / 12, "feet"),
  17753. weight: math.unit(220, "lb"),
  17754. name: "Back",
  17755. image: {
  17756. source: "./media/characters/max-calore/back.svg",
  17757. extra: 1700 / 1648,
  17758. bottom: 0.01
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(6 + 3 / 12, "feet"),
  17766. default: true
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17772. {
  17773. side: {
  17774. height: math.unit(2 + 8 / 12, "feet"),
  17775. weight: math.unit(99, "lb"),
  17776. name: "Side",
  17777. image: {
  17778. source: "./media/characters/aspen/side.svg",
  17779. extra: 152 / 138,
  17780. bottom: 0.032
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(2 + 8 / 12, "feet"),
  17788. default: true
  17789. },
  17790. ]
  17791. ))
  17792. characterMakers.push(() => makeCharacter(
  17793. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17794. {
  17795. side: {
  17796. height: math.unit(3 + 2 / 12, "feet"),
  17797. weight: math.unit(224, "lb"),
  17798. name: "Side",
  17799. image: {
  17800. source: "./media/characters/sheila-feral-wolf/side.svg",
  17801. extra: 179 / 166,
  17802. bottom: 0.03
  17803. }
  17804. },
  17805. },
  17806. [
  17807. {
  17808. name: "Normal",
  17809. height: math.unit(3 + 2 / 12, "feet"),
  17810. default: true
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17816. {
  17817. side: {
  17818. height: math.unit(1 + 9 / 12, "feet"),
  17819. weight: math.unit(38, "lb"),
  17820. name: "Side",
  17821. image: {
  17822. source: "./media/characters/michelle/side.svg",
  17823. extra: 147 / 136.7,
  17824. bottom: 0.03
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(1 + 9 / 12, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(1.54, "feet"),
  17841. weight: math.unit(50, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/nino/front.svg"
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(1.54, "feet"),
  17852. default: true
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(1.49, "feet"),
  17861. weight: math.unit(45, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/viola/front.svg"
  17865. }
  17866. },
  17867. },
  17868. [
  17869. {
  17870. name: "Normal",
  17871. height: math.unit(1.49, "feet"),
  17872. default: true
  17873. },
  17874. ]
  17875. ))
  17876. characterMakers.push(() => makeCharacter(
  17877. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17878. {
  17879. front: {
  17880. height: math.unit(6 + 5 / 12, "feet"),
  17881. weight: math.unit(580, "lb"),
  17882. name: "Front",
  17883. image: {
  17884. source: "./media/characters/atlas/front.svg",
  17885. extra: 298.5 / 290,
  17886. bottom: 0.015
  17887. }
  17888. },
  17889. },
  17890. [
  17891. {
  17892. name: "Normal",
  17893. height: math.unit(6 + 5 / 12, "feet"),
  17894. default: true
  17895. },
  17896. ]
  17897. ))
  17898. characterMakers.push(() => makeCharacter(
  17899. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17900. {
  17901. side: {
  17902. height: math.unit(15.6, "inches"),
  17903. weight: math.unit(10, "lb"),
  17904. name: "Side",
  17905. image: {
  17906. source: "./media/characters/davy/side.svg",
  17907. extra: 200 / 170,
  17908. bottom: 0.01
  17909. }
  17910. },
  17911. },
  17912. [
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(15.6, "inches"),
  17916. default: true
  17917. },
  17918. ]
  17919. ))
  17920. characterMakers.push(() => makeCharacter(
  17921. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17922. {
  17923. side: {
  17924. height: math.unit(4 + 8 / 12, "feet"),
  17925. weight: math.unit(166, "lb"),
  17926. name: "Side",
  17927. image: {
  17928. source: "./media/characters/fiona/side.svg",
  17929. extra: 232 / 220,
  17930. bottom: 0.03
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(4 + 8 / 12, "feet"),
  17938. default: true
  17939. },
  17940. ]
  17941. ))
  17942. characterMakers.push(() => makeCharacter(
  17943. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17944. {
  17945. front: {
  17946. height: math.unit(26, "inches"),
  17947. weight: math.unit(35, "lb"),
  17948. name: "Front",
  17949. image: {
  17950. source: "./media/characters/lyla/front.svg",
  17951. bottom: 0.1
  17952. }
  17953. },
  17954. },
  17955. [
  17956. {
  17957. name: "Normal",
  17958. height: math.unit(3, "feet"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17965. {
  17966. side: {
  17967. height: math.unit(1.8, "feet"),
  17968. weight: math.unit(44, "lb"),
  17969. name: "Side",
  17970. image: {
  17971. source: "./media/characters/perseus/side.svg",
  17972. bottom: 0.21
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(1.8, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17986. {
  17987. side: {
  17988. height: math.unit(4 + 2 / 12, "feet"),
  17989. weight: math.unit(20, "lb"),
  17990. name: "Side",
  17991. image: {
  17992. source: "./media/characters/remus/side.svg"
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(4 + 2 / 12, "feet"),
  18000. default: true
  18001. },
  18002. ]
  18003. ))
  18004. characterMakers.push(() => makeCharacter(
  18005. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18006. {
  18007. front: {
  18008. height: math.unit(4 + 11 / 12, "feet"),
  18009. weight: math.unit(114, "lb"),
  18010. name: "Front",
  18011. image: {
  18012. source: "./media/characters/raf/front.svg",
  18013. extra: 1504/1339,
  18014. bottom: 26/1530
  18015. }
  18016. },
  18017. side: {
  18018. height: math.unit(4 + 11 / 12, "feet"),
  18019. weight: math.unit(114, "lb"),
  18020. name: "Side",
  18021. image: {
  18022. source: "./media/characters/raf/side.svg",
  18023. extra: 1466/1316,
  18024. bottom: 29/1495
  18025. }
  18026. },
  18027. paw: {
  18028. height: math.unit(1.45, "feet"),
  18029. name: "Paw",
  18030. image: {
  18031. source: "./media/characters/raf/paw.svg"
  18032. },
  18033. extraAttributes: {
  18034. "toeSize": {
  18035. name: "Toe Size",
  18036. power: 2,
  18037. type: "area",
  18038. base: math.unit(0.004, "m^2")
  18039. },
  18040. "padSize": {
  18041. name: "Pad Size",
  18042. power: 2,
  18043. type: "area",
  18044. base: math.unit(0.04, "m^2")
  18045. },
  18046. "footSize": {
  18047. name: "Foot Size",
  18048. power: 2,
  18049. type: "area",
  18050. base: math.unit(0.08, "m^2")
  18051. },
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Micro",
  18058. height: math.unit(2, "inches")
  18059. },
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(4 + 11 / 12, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(70, "feet")
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(1.5, "meters"),
  18076. weight: math.unit(68, "kg"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/liam-einarr/front.svg",
  18080. extra: 2822 / 2666
  18081. }
  18082. },
  18083. back: {
  18084. height: math.unit(1.5, "meters"),
  18085. weight: math.unit(68, "kg"),
  18086. name: "Back",
  18087. image: {
  18088. source: "./media/characters/liam-einarr/back.svg",
  18089. extra: 2822 / 2666,
  18090. bottom: 0.015
  18091. }
  18092. },
  18093. },
  18094. [
  18095. {
  18096. name: "Normal",
  18097. height: math.unit(1.5, "meters"),
  18098. default: true
  18099. },
  18100. {
  18101. name: "Macro",
  18102. height: math.unit(150, "meters")
  18103. },
  18104. {
  18105. name: "Megamacro",
  18106. height: math.unit(35, "km")
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18112. {
  18113. front: {
  18114. height: math.unit(6, "feet"),
  18115. weight: math.unit(75, "kg"),
  18116. name: "Front",
  18117. image: {
  18118. source: "./media/characters/linda/front.svg",
  18119. extra: 930 / 874,
  18120. bottom: 0.004
  18121. }
  18122. },
  18123. },
  18124. [
  18125. {
  18126. name: "Normal",
  18127. height: math.unit(6, "feet"),
  18128. default: true
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6 + 8 / 12, "feet"),
  18137. weight: math.unit(220, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/caylex/front.svg",
  18141. extra: 821 / 772,
  18142. bottom: 0.07
  18143. }
  18144. },
  18145. back: {
  18146. height: math.unit(6 + 8 / 12, "feet"),
  18147. weight: math.unit(220, "lb"),
  18148. name: "Back",
  18149. image: {
  18150. source: "./media/characters/caylex/back.svg",
  18151. extra: 821 / 772,
  18152. bottom: 0.022
  18153. }
  18154. },
  18155. hand: {
  18156. height: math.unit(1.25, "feet"),
  18157. name: "Hand",
  18158. image: {
  18159. source: "./media/characters/caylex/hand.svg"
  18160. }
  18161. },
  18162. foot: {
  18163. height: math.unit(1.6, "feet"),
  18164. name: "Foot",
  18165. image: {
  18166. source: "./media/characters/caylex/foot.svg"
  18167. }
  18168. },
  18169. armored: {
  18170. height: math.unit(6 + 8 / 12, "feet"),
  18171. weight: math.unit(250, "lb"),
  18172. name: "Armored",
  18173. image: {
  18174. source: "./media/characters/caylex/armored.svg",
  18175. extra: 1420 / 1310,
  18176. bottom: 0.045
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(6 + 8 / 12, "feet"),
  18184. default: true
  18185. },
  18186. {
  18187. name: "Normal+",
  18188. height: math.unit(12, "feet")
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(7 + 6 / 12, "feet"),
  18197. weight: math.unit(288, "lb"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/alana/front.svg",
  18201. extra: 679 / 653,
  18202. bottom: 22.5 / 701
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(7 + 6 / 12, "feet")
  18210. },
  18211. {
  18212. name: "Large",
  18213. height: math.unit(50, "feet")
  18214. },
  18215. {
  18216. name: "Macro",
  18217. height: math.unit(100, "feet"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Macro+",
  18222. height: math.unit(200, "feet")
  18223. },
  18224. ]
  18225. ))
  18226. characterMakers.push(() => makeCharacter(
  18227. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18228. {
  18229. front: {
  18230. height: math.unit(6 + 1 / 12, "feet"),
  18231. weight: math.unit(210, "lb"),
  18232. name: "Front",
  18233. image: {
  18234. source: "./media/characters/hasani/front.svg",
  18235. extra: 244 / 232,
  18236. bottom: 0.01
  18237. }
  18238. },
  18239. back: {
  18240. height: math.unit(6 + 1 / 12, "feet"),
  18241. weight: math.unit(210, "lb"),
  18242. name: "Back",
  18243. image: {
  18244. source: "./media/characters/hasani/back.svg",
  18245. extra: 244 / 232,
  18246. bottom: 0.01
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Normal",
  18253. height: math.unit(6 + 1 / 12, "feet")
  18254. },
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(175, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(1.82, "meters"),
  18267. weight: math.unit(140, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/nita/front.svg",
  18271. extra: 2473 / 2363,
  18272. bottom: 0.01
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(1.82, "m")
  18280. },
  18281. {
  18282. name: "Macro",
  18283. height: math.unit(300, "m")
  18284. },
  18285. {
  18286. name: "Mistake Canon",
  18287. height: math.unit(0.5, "miles"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Big Mistake",
  18292. height: math.unit(13, "miles")
  18293. },
  18294. {
  18295. name: "Playing God",
  18296. height: math.unit(2450, "miles")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(4, "feet"),
  18305. weight: math.unit(120, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/shiriko/front.svg",
  18309. extra: 970/934,
  18310. bottom: 5/975
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(4, "feet"),
  18318. default: true
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6, "feet"),
  18327. name: "front",
  18328. image: {
  18329. source: "./media/characters/deja/front.svg",
  18330. extra: 926 / 840,
  18331. bottom: 0.07
  18332. }
  18333. },
  18334. },
  18335. [
  18336. {
  18337. name: "Planck Length",
  18338. height: math.unit(1.6e-35, "meters")
  18339. },
  18340. {
  18341. name: "Normal",
  18342. height: math.unit(30.48, "meters"),
  18343. default: true
  18344. },
  18345. {
  18346. name: "Universal",
  18347. height: math.unit(8.8e26, "meters")
  18348. },
  18349. ]
  18350. ))
  18351. characterMakers.push(() => makeCharacter(
  18352. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18353. {
  18354. side: {
  18355. height: math.unit(8, "feet"),
  18356. weight: math.unit(6300, "lb"),
  18357. name: "Side",
  18358. image: {
  18359. source: "./media/characters/anima/side.svg",
  18360. bottom: 0.035
  18361. }
  18362. },
  18363. },
  18364. [
  18365. {
  18366. name: "Normal",
  18367. height: math.unit(8, "feet"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(8, "feet"),
  18377. weight: math.unit(350, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/bianca/front.svg",
  18381. extra: 234 / 225,
  18382. bottom: 0.03
  18383. }
  18384. },
  18385. },
  18386. [
  18387. {
  18388. name: "Normal",
  18389. height: math.unit(8, "feet"),
  18390. default: true
  18391. },
  18392. ]
  18393. ))
  18394. characterMakers.push(() => makeCharacter(
  18395. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18396. {
  18397. front: {
  18398. height: math.unit(11 + 5/12, "feet"),
  18399. weight: math.unit(1200, "lb"),
  18400. name: "Front",
  18401. image: {
  18402. source: "./media/characters/adinia/front.svg",
  18403. extra: 1767/1641,
  18404. bottom: 44/1811
  18405. },
  18406. extraAttributes: {
  18407. "energyIntake": {
  18408. name: "Energy Intake",
  18409. power: 3,
  18410. type: "energy",
  18411. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18412. },
  18413. }
  18414. },
  18415. back: {
  18416. height: math.unit(11 + 5/12, "feet"),
  18417. weight: math.unit(1200, "lb"),
  18418. name: "Back",
  18419. image: {
  18420. source: "./media/characters/adinia/back.svg",
  18421. extra: 1834/1684,
  18422. bottom: 14/1848
  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. maw: {
  18434. height: math.unit(3.79, "feet"),
  18435. name: "Maw",
  18436. image: {
  18437. source: "./media/characters/adinia/maw.svg"
  18438. }
  18439. },
  18440. rump: {
  18441. height: math.unit(4.6, "feet"),
  18442. name: "Rump",
  18443. image: {
  18444. source: "./media/characters/adinia/rump.svg"
  18445. }
  18446. },
  18447. },
  18448. [
  18449. {
  18450. name: "Normal",
  18451. height: math.unit(11 + 5 / 12, "feet"),
  18452. default: true
  18453. },
  18454. ]
  18455. ))
  18456. characterMakers.push(() => makeCharacter(
  18457. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18458. {
  18459. front: {
  18460. height: math.unit(3, "meters"),
  18461. weight: math.unit(200, "kg"),
  18462. name: "Front",
  18463. image: {
  18464. source: "./media/characters/lykasa/front.svg",
  18465. extra: 1076 / 976,
  18466. bottom: 0.06
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Normal",
  18473. height: math.unit(3, "meters")
  18474. },
  18475. {
  18476. name: "Kaiju",
  18477. height: math.unit(120, "meters"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Mega Kaiju",
  18482. height: math.unit(240, "km")
  18483. },
  18484. {
  18485. name: "Giga Kaiju",
  18486. height: math.unit(400, "megameters")
  18487. },
  18488. {
  18489. name: "Tera Kaiju",
  18490. height: math.unit(800, "gigameters")
  18491. },
  18492. {
  18493. name: "Kaiju Dragon Goddess",
  18494. height: math.unit(26, "zettaparsecs")
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18500. {
  18501. side: {
  18502. height: math.unit(283 / 124 * 6, "feet"),
  18503. weight: math.unit(35000, "lb"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/malfaren/side.svg",
  18507. extra: 1310/529,
  18508. bottom: 24/1334
  18509. }
  18510. },
  18511. front: {
  18512. height: math.unit(22.36, "feet"),
  18513. weight: math.unit(35000, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/malfaren/front.svg",
  18517. extra: 1237/1115,
  18518. bottom: 32/1269
  18519. }
  18520. },
  18521. maw: {
  18522. height: math.unit(6.9, "feet"),
  18523. name: "Maw",
  18524. image: {
  18525. source: "./media/characters/malfaren/maw.svg"
  18526. }
  18527. },
  18528. dick: {
  18529. height: math.unit(6.19, "feet"),
  18530. name: "Dick",
  18531. image: {
  18532. source: "./media/characters/malfaren/dick.svg"
  18533. }
  18534. },
  18535. eye: {
  18536. height: math.unit(0.69, "feet"),
  18537. name: "Eye",
  18538. image: {
  18539. source: "./media/characters/malfaren/eye.svg"
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Big",
  18546. height: math.unit(283 / 162 * 6, "feet"),
  18547. },
  18548. {
  18549. name: "Bigger",
  18550. height: math.unit(283 / 124 * 6, "feet")
  18551. },
  18552. {
  18553. name: "Massive",
  18554. height: math.unit(283 / 92 * 6, "feet"),
  18555. default: true
  18556. },
  18557. {
  18558. name: "👀💦",
  18559. height: math.unit(283 / 73 * 6, "feet"),
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18565. {
  18566. front: {
  18567. height: math.unit(1.7, "m"),
  18568. weight: math.unit(70, "kg"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/kernel/front.svg",
  18572. extra: 222 / 210,
  18573. bottom: 0.007
  18574. }
  18575. },
  18576. },
  18577. [
  18578. {
  18579. name: "Nano",
  18580. height: math.unit(17, "micrometers")
  18581. },
  18582. {
  18583. name: "Micro",
  18584. height: math.unit(1.7, "mm")
  18585. },
  18586. {
  18587. name: "Small",
  18588. height: math.unit(1.7, "cm")
  18589. },
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(1.7, "m"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(1.75, "meters"),
  18602. weight: math.unit(65, "kg"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/jayne-folest/front.svg",
  18606. extra: 2115 / 2007,
  18607. bottom: 0.02
  18608. }
  18609. },
  18610. back: {
  18611. height: math.unit(1.75, "meters"),
  18612. weight: math.unit(65, "kg"),
  18613. name: "Back",
  18614. image: {
  18615. source: "./media/characters/jayne-folest/back.svg",
  18616. extra: 2115 / 2007,
  18617. bottom: 0.005
  18618. }
  18619. },
  18620. frontClothed: {
  18621. height: math.unit(1.75, "meters"),
  18622. weight: math.unit(65, "kg"),
  18623. name: "Front (Clothed)",
  18624. image: {
  18625. source: "./media/characters/jayne-folest/front-clothed.svg",
  18626. extra: 2115 / 2007,
  18627. bottom: 0.035
  18628. }
  18629. },
  18630. hand: {
  18631. height: math.unit(1 / 1.260, "feet"),
  18632. name: "Hand",
  18633. image: {
  18634. source: "./media/characters/jayne-folest/hand.svg"
  18635. }
  18636. },
  18637. foot: {
  18638. height: math.unit(1 / 0.918, "feet"),
  18639. name: "Foot",
  18640. image: {
  18641. source: "./media/characters/jayne-folest/foot.svg"
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(4, "cm")
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(1.75, "meters")
  18653. },
  18654. {
  18655. name: "Macro",
  18656. height: math.unit(47.5, "meters"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(180, "cm"),
  18666. weight: math.unit(70, "kg"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/algier/front.svg",
  18670. extra: 596 / 572,
  18671. bottom: 0.04
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(180, "cm"),
  18676. weight: math.unit(70, "kg"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/algier/back.svg",
  18680. extra: 596 / 572,
  18681. bottom: 0.025
  18682. }
  18683. },
  18684. frontdressed: {
  18685. height: math.unit(180, "cm"),
  18686. weight: math.unit(150, "kg"),
  18687. name: "Front-dressed",
  18688. image: {
  18689. source: "./media/characters/algier/front-dressed.svg",
  18690. extra: 596 / 572,
  18691. bottom: 0.038
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Micro",
  18698. height: math.unit(5, "cm")
  18699. },
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(180, "cm"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Macro",
  18707. height: math.unit(64, "m")
  18708. },
  18709. ]
  18710. ))
  18711. characterMakers.push(() => makeCharacter(
  18712. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18713. {
  18714. upright: {
  18715. height: math.unit(7, "feet"),
  18716. weight: math.unit(300, "lb"),
  18717. name: "Upright",
  18718. image: {
  18719. source: "./media/characters/pretzel/upright.svg",
  18720. extra: 534 / 522,
  18721. bottom: 0.065
  18722. }
  18723. },
  18724. sprawling: {
  18725. height: math.unit(3.75, "feet"),
  18726. weight: math.unit(300, "lb"),
  18727. name: "Sprawling",
  18728. image: {
  18729. source: "./media/characters/pretzel/sprawling.svg",
  18730. extra: 314 / 281,
  18731. bottom: 0.1
  18732. }
  18733. },
  18734. tongue: {
  18735. height: math.unit(2, "feet"),
  18736. name: "Tongue",
  18737. image: {
  18738. source: "./media/characters/pretzel/tongue.svg"
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Normal",
  18745. height: math.unit(7, "feet"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Oversized",
  18750. height: math.unit(15, "feet")
  18751. },
  18752. {
  18753. name: "Huge",
  18754. height: math.unit(30, "feet")
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(250, "feet")
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18764. {
  18765. sideFront: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(120, "lb"),
  18768. name: "Front Side",
  18769. image: {
  18770. source: "./media/characters/roxi/side-front.svg",
  18771. extra: 2924 / 2717,
  18772. bottom: 0.08
  18773. }
  18774. },
  18775. sideBack: {
  18776. height: math.unit(5 + 2 / 12, "feet"),
  18777. weight: math.unit(120, "lb"),
  18778. name: "Back Side",
  18779. image: {
  18780. source: "./media/characters/roxi/side-back.svg",
  18781. extra: 2904 / 2693,
  18782. bottom: 0.06
  18783. }
  18784. },
  18785. front: {
  18786. height: math.unit(5 + 2 / 12, "feet"),
  18787. weight: math.unit(120, "lb"),
  18788. name: "Front",
  18789. image: {
  18790. source: "./media/characters/roxi/front.svg",
  18791. extra: 2028 / 1907,
  18792. bottom: 0.01
  18793. }
  18794. },
  18795. frontAlt: {
  18796. height: math.unit(5 + 2 / 12, "feet"),
  18797. weight: math.unit(120, "lb"),
  18798. name: "Front (Alt)",
  18799. image: {
  18800. source: "./media/characters/roxi/front-alt.svg",
  18801. extra: 1828 / 1798,
  18802. bottom: 0.01
  18803. }
  18804. },
  18805. sitting: {
  18806. height: math.unit(2.8, "feet"),
  18807. weight: math.unit(120, "lb"),
  18808. name: "Sitting",
  18809. image: {
  18810. source: "./media/characters/roxi/sitting.svg",
  18811. extra: 2660 / 2462,
  18812. bottom: 0.1
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(5 + 2 / 12, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18826. {
  18827. side: {
  18828. height: math.unit(55, "feet"),
  18829. weight: math.unit(153, "tons"),
  18830. name: "Side",
  18831. image: {
  18832. source: "./media/characters/shadow/side.svg",
  18833. extra: 701 / 628,
  18834. bottom: 0.02
  18835. }
  18836. },
  18837. flying: {
  18838. height: math.unit(145, "feet"),
  18839. weight: math.unit(153, "tons"),
  18840. name: "Flying",
  18841. image: {
  18842. source: "./media/characters/shadow/flying.svg"
  18843. }
  18844. },
  18845. },
  18846. [
  18847. {
  18848. name: "Normal",
  18849. height: math.unit(55, "feet"),
  18850. default: true
  18851. },
  18852. ]
  18853. ))
  18854. characterMakers.push(() => makeCharacter(
  18855. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18856. {
  18857. front: {
  18858. height: math.unit(6, "feet"),
  18859. weight: math.unit(200, "lb"),
  18860. name: "Front",
  18861. image: {
  18862. source: "./media/characters/marcie/front.svg",
  18863. extra: 960 / 876,
  18864. bottom: 58 / 1017.87
  18865. }
  18866. },
  18867. },
  18868. [
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(1, "mile"),
  18872. default: true
  18873. },
  18874. ]
  18875. ))
  18876. characterMakers.push(() => makeCharacter(
  18877. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18878. {
  18879. front: {
  18880. height: math.unit(7, "feet"),
  18881. weight: math.unit(200, "lb"),
  18882. name: "Front",
  18883. image: {
  18884. source: "./media/characters/kachina/front.svg",
  18885. extra: 1290.68 / 1119,
  18886. bottom: 36.5 / 1327.18
  18887. }
  18888. },
  18889. },
  18890. [
  18891. {
  18892. name: "Normal",
  18893. height: math.unit(7, "feet"),
  18894. default: true
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18900. {
  18901. looking: {
  18902. height: math.unit(2, "meters"),
  18903. weight: math.unit(300, "kg"),
  18904. name: "Looking",
  18905. image: {
  18906. source: "./media/characters/kash/looking.svg",
  18907. extra: 474 / 344,
  18908. bottom: 0.03
  18909. }
  18910. },
  18911. side: {
  18912. height: math.unit(2, "meters"),
  18913. weight: math.unit(300, "kg"),
  18914. name: "Side",
  18915. image: {
  18916. source: "./media/characters/kash/side.svg",
  18917. extra: 302 / 251,
  18918. bottom: 0.03
  18919. }
  18920. },
  18921. front: {
  18922. height: math.unit(2, "meters"),
  18923. weight: math.unit(300, "kg"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/kash/front.svg",
  18927. extra: 495 / 360,
  18928. bottom: 0.015
  18929. }
  18930. },
  18931. },
  18932. [
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(2, "meters"),
  18936. default: true
  18937. },
  18938. {
  18939. name: "Big",
  18940. height: math.unit(3, "meters")
  18941. },
  18942. {
  18943. name: "Large",
  18944. height: math.unit(5, "meters")
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18950. {
  18951. feeding: {
  18952. height: math.unit(6.7, "feet"),
  18953. weight: math.unit(350, "lb"),
  18954. name: "Feeding",
  18955. image: {
  18956. source: "./media/characters/lalim/feeding.svg",
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(6.7, "feet"),
  18964. default: true
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(9.5, "feet"),
  18973. weight: math.unit(600, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/de'vout/front.svg",
  18977. extra: 1443 / 1328,
  18978. bottom: 0.025
  18979. }
  18980. },
  18981. back: {
  18982. height: math.unit(9.5, "feet"),
  18983. weight: math.unit(600, "lb"),
  18984. name: "Back",
  18985. image: {
  18986. source: "./media/characters/de'vout/back.svg",
  18987. extra: 1443 / 1328
  18988. }
  18989. },
  18990. frontDressed: {
  18991. height: math.unit(9.5, "feet"),
  18992. weight: math.unit(600, "lb"),
  18993. name: "Front (Dressed",
  18994. image: {
  18995. source: "./media/characters/de'vout/front-dressed.svg",
  18996. extra: 1443 / 1328,
  18997. bottom: 0.025
  18998. }
  18999. },
  19000. backDressed: {
  19001. height: math.unit(9.5, "feet"),
  19002. weight: math.unit(600, "lb"),
  19003. name: "Back (Dressed",
  19004. image: {
  19005. source: "./media/characters/de'vout/back-dressed.svg",
  19006. extra: 1443 / 1328
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Normal",
  19013. height: math.unit(9.5, "feet"),
  19014. default: true
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(8, "feet"),
  19023. weight: math.unit(225, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/talana/front.svg",
  19027. extra: 1410 / 1300,
  19028. bottom: 0.015
  19029. }
  19030. },
  19031. frontDressed: {
  19032. height: math.unit(8, "feet"),
  19033. weight: math.unit(225, "lb"),
  19034. name: "Front (Dressed",
  19035. image: {
  19036. source: "./media/characters/talana/front-dressed.svg",
  19037. extra: 1410 / 1300,
  19038. bottom: 0.015
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Normal",
  19045. height: math.unit(8, "feet"),
  19046. default: true
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19052. {
  19053. side: {
  19054. height: math.unit(7.2, "feet"),
  19055. weight: math.unit(150, "lb"),
  19056. name: "Side",
  19057. image: {
  19058. source: "./media/characters/xeauvok/side.svg",
  19059. extra: 1975 / 1523,
  19060. bottom: 0.07
  19061. }
  19062. },
  19063. },
  19064. [
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(7.2, "feet"),
  19068. default: true
  19069. },
  19070. ]
  19071. ))
  19072. characterMakers.push(() => makeCharacter(
  19073. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19074. {
  19075. side: {
  19076. height: math.unit(4, "meters"),
  19077. weight: math.unit(2200, "kg"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/zara/side.svg",
  19081. extra: 765/744,
  19082. bottom: 156/921
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(4, "meters"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19096. {
  19097. side: {
  19098. height: math.unit(6, "feet"),
  19099. weight: math.unit(150, "lb"),
  19100. name: "Side",
  19101. image: {
  19102. source: "./media/characters/richard-dragon/side.svg",
  19103. extra: 845 / 340,
  19104. bottom: 0.017
  19105. }
  19106. },
  19107. maw: {
  19108. height: math.unit(2.97, "feet"),
  19109. name: "Maw",
  19110. image: {
  19111. source: "./media/characters/richard-dragon/maw.svg"
  19112. }
  19113. },
  19114. },
  19115. [
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(4, "feet"),
  19123. weight: math.unit(100, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/richard-smeargle/front.svg",
  19127. extra: 2952 / 2820,
  19128. bottom: 0.028
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Normal",
  19135. height: math.unit(4, "feet"),
  19136. default: true
  19137. },
  19138. {
  19139. name: "Dynamax",
  19140. height: math.unit(20, "meters")
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(6, "feet"),
  19149. weight: math.unit(110, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/klay/front.svg",
  19153. extra: 962 / 883,
  19154. bottom: 0.04
  19155. }
  19156. },
  19157. back: {
  19158. height: math.unit(6, "feet"),
  19159. weight: math.unit(110, "lb"),
  19160. name: "Back",
  19161. image: {
  19162. source: "./media/characters/klay/back.svg",
  19163. extra: 962 / 883
  19164. }
  19165. },
  19166. beans: {
  19167. height: math.unit(1.15, "feet"),
  19168. name: "Beans",
  19169. image: {
  19170. source: "./media/characters/klay/beans.svg"
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Micro",
  19177. height: math.unit(6, "inches")
  19178. },
  19179. {
  19180. name: "Mini",
  19181. height: math.unit(3, "feet")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(6, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Big",
  19190. height: math.unit(25, "feet")
  19191. },
  19192. {
  19193. name: "Macro",
  19194. height: math.unit(100, "feet")
  19195. },
  19196. {
  19197. name: "Megamacro",
  19198. height: math.unit(400, "feet")
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(6, "feet"),
  19207. weight: math.unit(160, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/marcus/front.svg",
  19211. extra: 734 / 676,
  19212. bottom: 0.03
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Little",
  19219. height: math.unit(6, "feet")
  19220. },
  19221. {
  19222. name: "Normal",
  19223. height: math.unit(110, "feet"),
  19224. default: true
  19225. },
  19226. {
  19227. name: "Macro",
  19228. height: math.unit(250, "feet")
  19229. },
  19230. {
  19231. name: "Megamacro",
  19232. height: math.unit(1000, "feet")
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(7, "feet"),
  19241. weight: math.unit(275, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/claude-delroute/front.svg",
  19245. extra: 902/827,
  19246. bottom: 26/928
  19247. }
  19248. },
  19249. side: {
  19250. height: math.unit(7, "feet"),
  19251. weight: math.unit(275, "lb"),
  19252. name: "Side",
  19253. image: {
  19254. source: "./media/characters/claude-delroute/side.svg",
  19255. extra: 908/853,
  19256. bottom: 16/924
  19257. }
  19258. },
  19259. back: {
  19260. height: math.unit(7, "feet"),
  19261. weight: math.unit(275, "lb"),
  19262. name: "Back",
  19263. image: {
  19264. source: "./media/characters/claude-delroute/back.svg",
  19265. extra: 911/829,
  19266. bottom: 18/929
  19267. }
  19268. },
  19269. maw: {
  19270. height: math.unit(0.6407, "meters"),
  19271. name: "Maw",
  19272. image: {
  19273. source: "./media/characters/claude-delroute/maw.svg"
  19274. }
  19275. },
  19276. },
  19277. [
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(7, "feet"),
  19281. default: true
  19282. },
  19283. {
  19284. name: "Lorge",
  19285. height: math.unit(20, "feet")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(8 + 4 / 12, "feet"),
  19294. weight: math.unit(600, "lb"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/dragonien/front.svg",
  19298. extra: 100 / 94,
  19299. bottom: 3.3 / 103.3445
  19300. }
  19301. },
  19302. back: {
  19303. height: math.unit(8 + 4 / 12, "feet"),
  19304. weight: math.unit(600, "lb"),
  19305. name: "Back",
  19306. image: {
  19307. source: "./media/characters/dragonien/back.svg",
  19308. extra: 776 / 746,
  19309. bottom: 6.4 / 782.0616
  19310. }
  19311. },
  19312. foot: {
  19313. height: math.unit(1.54, "feet"),
  19314. name: "Foot",
  19315. image: {
  19316. source: "./media/characters/dragonien/foot.svg",
  19317. }
  19318. },
  19319. },
  19320. [
  19321. {
  19322. name: "Normal",
  19323. height: math.unit(8 + 4 / 12, "feet"),
  19324. default: true
  19325. },
  19326. {
  19327. name: "Macro",
  19328. height: math.unit(200, "feet")
  19329. },
  19330. {
  19331. name: "Megamacro",
  19332. height: math.unit(1, "mile")
  19333. },
  19334. {
  19335. name: "Gigamacro",
  19336. height: math.unit(1000, "miles")
  19337. },
  19338. ]
  19339. ))
  19340. characterMakers.push(() => makeCharacter(
  19341. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19342. {
  19343. front: {
  19344. height: math.unit(5 + 2 / 12, "feet"),
  19345. weight: math.unit(110, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/desta/front.svg",
  19349. extra: 767 / 726,
  19350. bottom: 11.7 / 779
  19351. }
  19352. },
  19353. back: {
  19354. height: math.unit(5 + 2 / 12, "feet"),
  19355. weight: math.unit(110, "lb"),
  19356. name: "Back",
  19357. image: {
  19358. source: "./media/characters/desta/back.svg",
  19359. extra: 777 / 728,
  19360. bottom: 6 / 784
  19361. }
  19362. },
  19363. frontAlt: {
  19364. height: math.unit(5 + 2 / 12, "feet"),
  19365. weight: math.unit(110, "lb"),
  19366. name: "Front",
  19367. image: {
  19368. source: "./media/characters/desta/front-alt.svg",
  19369. extra: 1482 / 1417
  19370. }
  19371. },
  19372. side: {
  19373. height: math.unit(5 + 2 / 12, "feet"),
  19374. weight: math.unit(110, "lb"),
  19375. name: "Side",
  19376. image: {
  19377. source: "./media/characters/desta/side.svg",
  19378. extra: 2579 / 2491,
  19379. bottom: 0.053
  19380. }
  19381. },
  19382. },
  19383. [
  19384. {
  19385. name: "Micro",
  19386. height: math.unit(6, "inches")
  19387. },
  19388. {
  19389. name: "Normal",
  19390. height: math.unit(5 + 2 / 12, "feet"),
  19391. default: true
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(62, "feet")
  19396. },
  19397. {
  19398. name: "Megamacro",
  19399. height: math.unit(1800, "feet")
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(10, "feet"),
  19408. weight: math.unit(700, "lb"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/storm-alystar/front.svg",
  19412. extra: 2112 / 1898,
  19413. bottom: 0.034
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Micro",
  19420. height: math.unit(3.5, "inches")
  19421. },
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(10, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Macro",
  19429. height: math.unit(400, "feet")
  19430. },
  19431. {
  19432. name: "Deific",
  19433. height: math.unit(60, "miles")
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(2.35, "meters"),
  19442. weight: math.unit(119, "kg"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/ilia/front.svg",
  19446. extra: 1285 / 1255,
  19447. bottom: 0.06
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(2.35, "meters")
  19455. },
  19456. {
  19457. name: "Macro",
  19458. height: math.unit(140, "meters"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Megamacro",
  19463. height: math.unit(100, "miles")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(6 + 5 / 12, "feet"),
  19472. weight: math.unit(190, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/kingdead/front.svg",
  19476. extra: 1228 / 1177
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Micro",
  19483. height: math.unit(7, "inches")
  19484. },
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(6 + 5 / 12, "feet")
  19488. },
  19489. {
  19490. name: "Macro",
  19491. height: math.unit(150, "feet"),
  19492. default: true
  19493. },
  19494. {
  19495. name: "Megamacro",
  19496. height: math.unit(200, "miles")
  19497. },
  19498. ]
  19499. ))
  19500. characterMakers.push(() => makeCharacter(
  19501. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19502. {
  19503. front: {
  19504. height: math.unit(8, "feet"),
  19505. weight: math.unit(600, "lb"),
  19506. name: "Front",
  19507. image: {
  19508. source: "./media/characters/kyrehx/front.svg",
  19509. extra: 1195 / 1095,
  19510. bottom: 0.034
  19511. }
  19512. },
  19513. },
  19514. [
  19515. {
  19516. name: "Micro",
  19517. height: math.unit(2, "inches")
  19518. },
  19519. {
  19520. name: "Normal",
  19521. height: math.unit(8, "feet"),
  19522. default: true
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(255, "feet")
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19535. weight: math.unit(184, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/xang/front.svg",
  19539. extra: 845 / 755
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19547. default: true
  19548. },
  19549. {
  19550. name: "Macro",
  19551. height: math.unit(0.935 * 146, "feet")
  19552. },
  19553. {
  19554. name: "Megamacro",
  19555. height: math.unit(0.935 * 3, "miles")
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19561. {
  19562. frontDressed: {
  19563. height: math.unit(5 + 7 / 12, "feet"),
  19564. weight: math.unit(140, "lb"),
  19565. name: "Front (Dressed)",
  19566. image: {
  19567. source: "./media/characters/doc-weardno/front-dressed.svg",
  19568. extra: 263 / 234
  19569. }
  19570. },
  19571. backDressed: {
  19572. height: math.unit(5 + 7 / 12, "feet"),
  19573. weight: math.unit(140, "lb"),
  19574. name: "Back (Dressed)",
  19575. image: {
  19576. source: "./media/characters/doc-weardno/back-dressed.svg",
  19577. extra: 266 / 238
  19578. }
  19579. },
  19580. front: {
  19581. height: math.unit(5 + 7 / 12, "feet"),
  19582. weight: math.unit(140, "lb"),
  19583. name: "Front",
  19584. image: {
  19585. source: "./media/characters/doc-weardno/front.svg",
  19586. extra: 254 / 233
  19587. }
  19588. },
  19589. },
  19590. [
  19591. {
  19592. name: "Micro",
  19593. height: math.unit(3, "inches")
  19594. },
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(5 + 7 / 12, "feet"),
  19598. default: true
  19599. },
  19600. {
  19601. name: "Macro",
  19602. height: math.unit(25, "feet")
  19603. },
  19604. {
  19605. name: "Megamacro",
  19606. height: math.unit(2, "miles")
  19607. },
  19608. ]
  19609. ))
  19610. characterMakers.push(() => makeCharacter(
  19611. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19612. {
  19613. front: {
  19614. height: math.unit(6 + 2 / 12, "feet"),
  19615. weight: math.unit(153, "lb"),
  19616. name: "Front",
  19617. image: {
  19618. source: "./media/characters/seth-whilst/front.svg",
  19619. bottom: 0.07
  19620. }
  19621. },
  19622. },
  19623. [
  19624. {
  19625. name: "Micro",
  19626. height: math.unit(5, "inches")
  19627. },
  19628. {
  19629. name: "Normal",
  19630. height: math.unit(6 + 2 / 12, "feet"),
  19631. default: true
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(3, "inches"),
  19640. weight: math.unit(8, "grams"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/pocket-jabari/front.svg",
  19644. extra: 1024 / 974,
  19645. bottom: 0.039
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Minimicro",
  19652. height: math.unit(8, "mm")
  19653. },
  19654. {
  19655. name: "Micro",
  19656. height: math.unit(3, "inches"),
  19657. default: true
  19658. },
  19659. {
  19660. name: "Normal",
  19661. height: math.unit(3, "feet")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19667. {
  19668. frontDressed: {
  19669. height: math.unit(15, "feet"),
  19670. weight: math.unit(3280, "lb"),
  19671. name: "Front (Dressed)",
  19672. image: {
  19673. source: "./media/characters/sapphy/front-dressed.svg",
  19674. extra: 1951/1654,
  19675. bottom: 194/2145
  19676. },
  19677. form: "anthro",
  19678. default: true
  19679. },
  19680. backDressed: {
  19681. height: math.unit(15, "feet"),
  19682. weight: math.unit(3280, "lb"),
  19683. name: "Back (Dressed)",
  19684. image: {
  19685. source: "./media/characters/sapphy/back-dressed.svg",
  19686. extra: 2058/1918,
  19687. bottom: 125/2183
  19688. },
  19689. form: "anthro"
  19690. },
  19691. frontNude: {
  19692. height: math.unit(15, "feet"),
  19693. weight: math.unit(3280, "lb"),
  19694. name: "Front (Nude)",
  19695. image: {
  19696. source: "./media/characters/sapphy/front-nude.svg",
  19697. extra: 1951/1654,
  19698. bottom: 194/2145
  19699. },
  19700. form: "anthro"
  19701. },
  19702. backNude: {
  19703. height: math.unit(15, "feet"),
  19704. weight: math.unit(3280, "lb"),
  19705. name: "Back (Nude)",
  19706. image: {
  19707. source: "./media/characters/sapphy/back-nude.svg",
  19708. extra: 2058/1918,
  19709. bottom: 125/2183
  19710. },
  19711. form: "anthro"
  19712. },
  19713. full: {
  19714. height: math.unit(15, "feet"),
  19715. weight: math.unit(3280, "lb"),
  19716. name: "Full",
  19717. image: {
  19718. source: "./media/characters/sapphy/full.svg",
  19719. extra: 1396/1317,
  19720. bottom: 44/1440
  19721. },
  19722. form: "anthro"
  19723. },
  19724. dick: {
  19725. height: math.unit(3.8, "feet"),
  19726. name: "Dick",
  19727. image: {
  19728. source: "./media/characters/sapphy/dick.svg"
  19729. },
  19730. form: "anthro"
  19731. },
  19732. feral: {
  19733. height: math.unit(35, "feet"),
  19734. weight: math.unit(160, "tons"),
  19735. name: "Feral",
  19736. image: {
  19737. source: "./media/characters/sapphy/feral.svg",
  19738. extra: 1050/573,
  19739. bottom: 60/1110
  19740. },
  19741. form: "feral",
  19742. default: true
  19743. },
  19744. },
  19745. [
  19746. {
  19747. name: "Normal",
  19748. height: math.unit(15, "feet"),
  19749. form: "anthro"
  19750. },
  19751. {
  19752. name: "Casual Macro",
  19753. height: math.unit(120, "feet"),
  19754. form: "anthro"
  19755. },
  19756. {
  19757. name: "Macro",
  19758. height: math.unit(2150, "feet"),
  19759. default: true,
  19760. form: "anthro"
  19761. },
  19762. {
  19763. name: "Megamacro",
  19764. height: math.unit(8, "miles"),
  19765. form: "anthro"
  19766. },
  19767. {
  19768. name: "Galaxy Mom",
  19769. height: math.unit(6, "megalightyears"),
  19770. form: "anthro"
  19771. },
  19772. {
  19773. name: "Normal",
  19774. height: math.unit(35, "feet"),
  19775. form: "feral",
  19776. default: true
  19777. },
  19778. {
  19779. name: "Macro",
  19780. height: math.unit(300, "feet"),
  19781. form: "feral"
  19782. },
  19783. {
  19784. name: "Galaxy Mom",
  19785. height: math.unit(10, "megalightyears"),
  19786. form: "feral"
  19787. },
  19788. ],
  19789. {
  19790. "anthro": {
  19791. name: "Anthro",
  19792. default: true
  19793. },
  19794. "feral": {
  19795. name: "Feral"
  19796. }
  19797. }
  19798. ))
  19799. characterMakers.push(() => makeCharacter(
  19800. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19801. {
  19802. front: {
  19803. height: math.unit(6, "feet"),
  19804. weight: math.unit(170, "lb"),
  19805. name: "Front",
  19806. image: {
  19807. source: "./media/characters/kiro/front.svg",
  19808. extra: 1064 / 1012,
  19809. bottom: 0.052
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Micro",
  19816. height: math.unit(6, "inches")
  19817. },
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(6, "feet"),
  19821. default: true
  19822. },
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(72, "feet")
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19831. {
  19832. front: {
  19833. height: math.unit(5 + 9 / 12, "feet"),
  19834. weight: math.unit(175, "lb"),
  19835. name: "Front",
  19836. image: {
  19837. source: "./media/characters/irishfox/front.svg",
  19838. extra: 1912 / 1680,
  19839. bottom: 0.02
  19840. }
  19841. },
  19842. },
  19843. [
  19844. {
  19845. name: "Nano",
  19846. height: math.unit(1, "mm")
  19847. },
  19848. {
  19849. name: "Micro",
  19850. height: math.unit(2, "inches")
  19851. },
  19852. {
  19853. name: "Normal",
  19854. height: math.unit(5 + 9 / 12, "feet"),
  19855. default: true
  19856. },
  19857. {
  19858. name: "Macro",
  19859. height: math.unit(45, "feet")
  19860. },
  19861. ]
  19862. ))
  19863. characterMakers.push(() => makeCharacter(
  19864. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19865. {
  19866. front: {
  19867. height: math.unit(6 + 1 / 12, "feet"),
  19868. weight: math.unit(75, "lb"),
  19869. name: "Front",
  19870. image: {
  19871. source: "./media/characters/aronai-sieyes/front.svg",
  19872. extra: 1532/1450,
  19873. bottom: 42/1574
  19874. }
  19875. },
  19876. side: {
  19877. height: math.unit(6 + 1 / 12, "feet"),
  19878. weight: math.unit(75, "lb"),
  19879. name: "Side",
  19880. image: {
  19881. source: "./media/characters/aronai-sieyes/side.svg",
  19882. extra: 1422/1365,
  19883. bottom: 148/1570
  19884. }
  19885. },
  19886. back: {
  19887. height: math.unit(6 + 1 / 12, "feet"),
  19888. weight: math.unit(75, "lb"),
  19889. name: "Back",
  19890. image: {
  19891. source: "./media/characters/aronai-sieyes/back.svg",
  19892. extra: 1526/1464,
  19893. bottom: 51/1577
  19894. }
  19895. },
  19896. dressed: {
  19897. height: math.unit(6 + 1 / 12, "feet"),
  19898. weight: math.unit(75, "lb"),
  19899. name: "Dressed",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/dressed.svg",
  19902. extra: 1559/1483,
  19903. bottom: 39/1598
  19904. }
  19905. },
  19906. slit: {
  19907. height: math.unit(1.3, "feet"),
  19908. name: "Slit",
  19909. image: {
  19910. source: "./media/characters/aronai-sieyes/slit.svg"
  19911. }
  19912. },
  19913. slitSpread: {
  19914. height: math.unit(0.9, "feet"),
  19915. name: "Slit (Spread)",
  19916. image: {
  19917. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19918. }
  19919. },
  19920. rump: {
  19921. height: math.unit(1.3, "feet"),
  19922. name: "Rump",
  19923. image: {
  19924. source: "./media/characters/aronai-sieyes/rump.svg"
  19925. }
  19926. },
  19927. maw: {
  19928. height: math.unit(1.25, "feet"),
  19929. name: "Maw",
  19930. image: {
  19931. source: "./media/characters/aronai-sieyes/maw.svg"
  19932. }
  19933. },
  19934. feral: {
  19935. height: math.unit(18, "feet"),
  19936. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19937. name: "Feral",
  19938. image: {
  19939. source: "./media/characters/aronai-sieyes/feral.svg",
  19940. extra: 1530 / 1240,
  19941. bottom: 0.035
  19942. }
  19943. },
  19944. },
  19945. [
  19946. {
  19947. name: "Micro",
  19948. height: math.unit(2, "inches")
  19949. },
  19950. {
  19951. name: "Normal",
  19952. height: math.unit(6 + 1 / 12, "feet"),
  19953. default: true
  19954. }
  19955. ]
  19956. ))
  19957. characterMakers.push(() => makeCharacter(
  19958. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19959. {
  19960. front: {
  19961. height: math.unit(12, "feet"),
  19962. weight: math.unit(410, "kg"),
  19963. name: "Front",
  19964. image: {
  19965. source: "./media/characters/xuna/front.svg",
  19966. extra: 2184 / 1980
  19967. }
  19968. },
  19969. side: {
  19970. height: math.unit(12, "feet"),
  19971. weight: math.unit(410, "kg"),
  19972. name: "Side",
  19973. image: {
  19974. source: "./media/characters/xuna/side.svg",
  19975. extra: 2184 / 1980
  19976. }
  19977. },
  19978. back: {
  19979. height: math.unit(12, "feet"),
  19980. weight: math.unit(410, "kg"),
  19981. name: "Back",
  19982. image: {
  19983. source: "./media/characters/xuna/back.svg",
  19984. extra: 2184 / 1980
  19985. }
  19986. },
  19987. },
  19988. [
  19989. {
  19990. name: "Nano glow",
  19991. height: math.unit(10, "nm")
  19992. },
  19993. {
  19994. name: "Micro floof",
  19995. height: math.unit(0.3, "m")
  19996. },
  19997. {
  19998. name: "Huggable softy boi",
  19999. height: math.unit(3.6576, "m"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Admirable floof",
  20004. height: math.unit(80, "meters")
  20005. },
  20006. {
  20007. name: "Gentle macro",
  20008. height: math.unit(300, "meters")
  20009. },
  20010. {
  20011. name: "Very careful floof",
  20012. height: math.unit(3200, "meters")
  20013. },
  20014. {
  20015. name: "The mega floof",
  20016. height: math.unit(36000, "meters")
  20017. },
  20018. {
  20019. name: "Giga-fur-Wicker",
  20020. height: math.unit(4800000, "meters")
  20021. },
  20022. {
  20023. name: "Licky world",
  20024. height: math.unit(20000000, "meters")
  20025. },
  20026. {
  20027. name: "Floofy cyan sun",
  20028. height: math.unit(1500000000, "meters")
  20029. },
  20030. {
  20031. name: "Milky Wicker",
  20032. height: math.unit(1000000000000000000000, "meters")
  20033. },
  20034. {
  20035. name: "The observing Wicker",
  20036. height: math.unit(999999999999999999999999999, "meters")
  20037. },
  20038. ]
  20039. ))
  20040. characterMakers.push(() => makeCharacter(
  20041. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20042. {
  20043. front: {
  20044. height: math.unit(5 + 9 / 12, "feet"),
  20045. weight: math.unit(150, "lb"),
  20046. name: "Front",
  20047. image: {
  20048. source: "./media/characters/arokha-sieyes/front.svg",
  20049. extra: 1425 / 1284,
  20050. bottom: 0.05
  20051. }
  20052. },
  20053. },
  20054. [
  20055. {
  20056. name: "Normal",
  20057. height: math.unit(5 + 9 / 12, "feet")
  20058. },
  20059. {
  20060. name: "Macro",
  20061. height: math.unit(30, "meters"),
  20062. default: true
  20063. },
  20064. ]
  20065. ))
  20066. characterMakers.push(() => makeCharacter(
  20067. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20068. {
  20069. front: {
  20070. height: math.unit(6, "feet"),
  20071. weight: math.unit(180, "lb"),
  20072. name: "Front",
  20073. image: {
  20074. source: "./media/characters/arokh-sieyes/front.svg",
  20075. extra: 1830 / 1769,
  20076. bottom: 0.01
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Normal",
  20083. height: math.unit(6, "feet")
  20084. },
  20085. {
  20086. name: "Macro",
  20087. height: math.unit(30, "meters"),
  20088. default: true
  20089. },
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20094. {
  20095. side: {
  20096. height: math.unit(13 + 1 / 12, "feet"),
  20097. weight: math.unit(8.5, "tonnes"),
  20098. name: "Side",
  20099. image: {
  20100. source: "./media/characters/goldeneye/side.svg",
  20101. extra: 1182 / 778,
  20102. bottom: 0.067
  20103. }
  20104. },
  20105. paw: {
  20106. height: math.unit(3.4, "feet"),
  20107. name: "Paw",
  20108. image: {
  20109. source: "./media/characters/goldeneye/paw.svg"
  20110. }
  20111. },
  20112. },
  20113. [
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(13 + 1 / 12, "feet"),
  20117. default: true
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 1 / 12, "feet"),
  20126. weight: math.unit(210, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/leonardo-lycheborne/front.svg",
  20130. extra: 776/723,
  20131. bottom: 34/810
  20132. }
  20133. },
  20134. side: {
  20135. height: math.unit(6 + 1 / 12, "feet"),
  20136. weight: math.unit(210, "lb"),
  20137. name: "Side",
  20138. image: {
  20139. source: "./media/characters/leonardo-lycheborne/side.svg",
  20140. extra: 780/728,
  20141. bottom: 12/792
  20142. }
  20143. },
  20144. back: {
  20145. height: math.unit(6 + 1 / 12, "feet"),
  20146. weight: math.unit(210, "lb"),
  20147. name: "Back",
  20148. image: {
  20149. source: "./media/characters/leonardo-lycheborne/back.svg",
  20150. extra: 775/721,
  20151. bottom: 17/792
  20152. }
  20153. },
  20154. hand: {
  20155. height: math.unit(1.08, "feet"),
  20156. name: "Hand",
  20157. image: {
  20158. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20159. }
  20160. },
  20161. foot: {
  20162. height: math.unit(1.32, "feet"),
  20163. name: "Foot",
  20164. image: {
  20165. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20166. }
  20167. },
  20168. maw: {
  20169. height: math.unit(1, "feet"),
  20170. name: "Maw",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20173. }
  20174. },
  20175. were: {
  20176. height: math.unit(20, "feet"),
  20177. weight: math.unit(7800, "lb"),
  20178. name: "Were",
  20179. image: {
  20180. source: "./media/characters/leonardo-lycheborne/were.svg",
  20181. extra: 1224/1165,
  20182. bottom: 72/1296
  20183. }
  20184. },
  20185. feral: {
  20186. height: math.unit(7.5, "feet"),
  20187. weight: math.unit(600, "lb"),
  20188. name: "Feral",
  20189. image: {
  20190. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20191. extra: 797/702,
  20192. bottom: 139/936
  20193. }
  20194. },
  20195. taur: {
  20196. height: math.unit(11, "feet"),
  20197. weight: math.unit(3300, "lb"),
  20198. name: "Taur",
  20199. image: {
  20200. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20201. extra: 1271/1197,
  20202. bottom: 47/1318
  20203. }
  20204. },
  20205. barghest: {
  20206. height: math.unit(11, "feet"),
  20207. weight: math.unit(1300, "lb"),
  20208. name: "Barghest",
  20209. image: {
  20210. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20211. extra: 1291/1204,
  20212. bottom: 37/1328
  20213. }
  20214. },
  20215. dick: {
  20216. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20217. name: "Dick",
  20218. image: {
  20219. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20220. }
  20221. },
  20222. dickWere: {
  20223. height: math.unit((20) / 3.8, "feet"),
  20224. name: "Dick (Were)",
  20225. image: {
  20226. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(6 + 1 / 12, "feet"),
  20234. default: true
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(10, "feet"),
  20243. weight: math.unit(350, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/jet/front.svg",
  20247. extra: 2050 / 1980,
  20248. bottom: 0.013
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(10, "feet"),
  20253. weight: math.unit(350, "lb"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/jet/back.svg",
  20257. extra: 2050 / 1980,
  20258. bottom: 0.013
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Micro",
  20265. height: math.unit(6, "inches")
  20266. },
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(10, "feet"),
  20270. default: true
  20271. },
  20272. {
  20273. name: "Macro",
  20274. height: math.unit(100, "feet")
  20275. },
  20276. ]
  20277. ))
  20278. characterMakers.push(() => makeCharacter(
  20279. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20280. {
  20281. front: {
  20282. height: math.unit(15, "feet"),
  20283. weight: math.unit(2800, "lb"),
  20284. name: "Front",
  20285. image: {
  20286. source: "./media/characters/tanarath/front.svg",
  20287. extra: 2392 / 2220,
  20288. bottom: 0.03
  20289. }
  20290. },
  20291. back: {
  20292. height: math.unit(15, "feet"),
  20293. weight: math.unit(2800, "lb"),
  20294. name: "Back",
  20295. image: {
  20296. source: "./media/characters/tanarath/back.svg",
  20297. extra: 2392 / 2220,
  20298. bottom: 0.03
  20299. }
  20300. },
  20301. },
  20302. [
  20303. {
  20304. name: "Normal",
  20305. height: math.unit(15, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(7 + 1 / 12, "feet"),
  20315. weight: math.unit(175, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/patty-cattybatty/front.svg",
  20319. extra: 908 / 874,
  20320. bottom: 0.025
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Micro",
  20327. height: math.unit(1, "inch")
  20328. },
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(7 + 1 / 12, "feet")
  20332. },
  20333. {
  20334. name: "Mini Macro",
  20335. height: math.unit(155, "feet")
  20336. },
  20337. {
  20338. name: "Macro",
  20339. height: math.unit(1077, "feet")
  20340. },
  20341. {
  20342. name: "Mega Macro",
  20343. height: math.unit(47650, "feet"),
  20344. default: true
  20345. },
  20346. {
  20347. name: "Giga Macro",
  20348. height: math.unit(440, "miles")
  20349. },
  20350. {
  20351. name: "Tera Macro",
  20352. height: math.unit(8700, "miles")
  20353. },
  20354. {
  20355. name: "Planetary Macro",
  20356. height: math.unit(32700, "miles")
  20357. },
  20358. {
  20359. name: "Solar Macro",
  20360. height: math.unit(550000, "miles")
  20361. },
  20362. {
  20363. name: "Celestial Macro",
  20364. height: math.unit(2.5, "AU")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(4 + 5 / 12, "feet"),
  20373. weight: math.unit(90, "lb"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/cappu/front.svg",
  20377. extra: 1247 / 1152,
  20378. bottom: 0.012
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(4 + 5 / 12, "feet"),
  20386. default: true
  20387. },
  20388. ]
  20389. ))
  20390. characterMakers.push(() => makeCharacter(
  20391. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20392. {
  20393. frontDressed: {
  20394. height: math.unit(70, "cm"),
  20395. weight: math.unit(6, "kg"),
  20396. name: "Front (Dressed)",
  20397. image: {
  20398. source: "./media/characters/sebi/front-dressed.svg",
  20399. extra: 713.5 / 686.5,
  20400. bottom: 0.003
  20401. }
  20402. },
  20403. front: {
  20404. height: math.unit(70, "cm"),
  20405. weight: math.unit(5, "kg"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/sebi/front.svg",
  20409. extra: 713.5 / 686.5,
  20410. bottom: 0.003
  20411. }
  20412. }
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(70, "cm"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Macro",
  20422. height: math.unit(8, "meters")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(150, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/typhek/front.svg",
  20435. extra: 1948 / 1929,
  20436. bottom: 0.025
  20437. }
  20438. },
  20439. side: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(150, "lb"),
  20442. name: "Side",
  20443. image: {
  20444. source: "./media/characters/typhek/side.svg",
  20445. extra: 2034 / 2010,
  20446. bottom: 0.003
  20447. }
  20448. },
  20449. back: {
  20450. height: math.unit(6, "feet"),
  20451. weight: math.unit(150, "lb"),
  20452. name: "Back",
  20453. image: {
  20454. source: "./media/characters/typhek/back.svg",
  20455. extra: 2005 / 1978,
  20456. bottom: 0.004
  20457. }
  20458. },
  20459. palm: {
  20460. height: math.unit(1.2, "feet"),
  20461. name: "Palm",
  20462. image: {
  20463. source: "./media/characters/typhek/palm.svg"
  20464. }
  20465. },
  20466. fist: {
  20467. height: math.unit(1.1, "feet"),
  20468. name: "Fist",
  20469. image: {
  20470. source: "./media/characters/typhek/fist.svg"
  20471. }
  20472. },
  20473. foot: {
  20474. height: math.unit(1.57, "feet"),
  20475. name: "Foot",
  20476. image: {
  20477. source: "./media/characters/typhek/foot.svg"
  20478. }
  20479. },
  20480. sole: {
  20481. height: math.unit(2.05, "feet"),
  20482. name: "Sole",
  20483. image: {
  20484. source: "./media/characters/typhek/sole.svg"
  20485. }
  20486. },
  20487. },
  20488. [
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(40, "stories"),
  20492. default: true
  20493. },
  20494. {
  20495. name: "Megamacro",
  20496. height: math.unit(1, "mile")
  20497. },
  20498. {
  20499. name: "Gigamacro",
  20500. height: math.unit(4000, "solarradii")
  20501. },
  20502. {
  20503. name: "Universal",
  20504. height: math.unit(1.1, "universes")
  20505. }
  20506. ]
  20507. ))
  20508. characterMakers.push(() => makeCharacter(
  20509. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20510. {
  20511. side: {
  20512. height: math.unit(5 + 7 / 12, "feet"),
  20513. weight: math.unit(150, "lb"),
  20514. name: "Side",
  20515. image: {
  20516. source: "./media/characters/kassy/side.svg",
  20517. extra: 1280 / 1225,
  20518. bottom: 0.002
  20519. }
  20520. },
  20521. front: {
  20522. height: math.unit(5 + 7 / 12, "feet"),
  20523. weight: math.unit(150, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/kassy/front.svg",
  20527. extra: 1280 / 1225,
  20528. bottom: 0.025
  20529. }
  20530. },
  20531. back: {
  20532. height: math.unit(5 + 7 / 12, "feet"),
  20533. weight: math.unit(150, "lb"),
  20534. name: "Back",
  20535. image: {
  20536. source: "./media/characters/kassy/back.svg",
  20537. extra: 1280 / 1225,
  20538. bottom: 0.002
  20539. }
  20540. },
  20541. foot: {
  20542. height: math.unit(1.266, "feet"),
  20543. name: "Foot",
  20544. image: {
  20545. source: "./media/characters/kassy/foot.svg"
  20546. }
  20547. },
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(5 + 7 / 12, "feet")
  20553. },
  20554. {
  20555. name: "Macro",
  20556. height: math.unit(137, "feet"),
  20557. default: true
  20558. },
  20559. {
  20560. name: "Megamacro",
  20561. height: math.unit(1, "mile")
  20562. },
  20563. ]
  20564. ))
  20565. characterMakers.push(() => makeCharacter(
  20566. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20567. {
  20568. front: {
  20569. height: math.unit(6 + 1 / 12, "feet"),
  20570. weight: math.unit(200, "lb"),
  20571. name: "Front",
  20572. image: {
  20573. source: "./media/characters/neil/front.svg",
  20574. extra: 1326 / 1250,
  20575. bottom: 0.023
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(6 + 1 / 12, "feet"),
  20583. default: true
  20584. },
  20585. {
  20586. name: "Macro",
  20587. height: math.unit(200, "feet")
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(5 + 9 / 12, "feet"),
  20596. weight: math.unit(190, "lb"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/atticus/front.svg",
  20600. extra: 2934 / 2785,
  20601. bottom: 0.025
  20602. }
  20603. },
  20604. },
  20605. [
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(5 + 9 / 12, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(180, "feet")
  20614. },
  20615. ]
  20616. ))
  20617. characterMakers.push(() => makeCharacter(
  20618. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20619. {
  20620. side: {
  20621. height: math.unit(9, "feet"),
  20622. weight: math.unit(650, "lb"),
  20623. name: "Side",
  20624. image: {
  20625. source: "./media/characters/milo/side.svg",
  20626. extra: 2644 / 2310,
  20627. bottom: 0.032
  20628. }
  20629. },
  20630. },
  20631. [
  20632. {
  20633. name: "Normal",
  20634. height: math.unit(9, "feet"),
  20635. default: true
  20636. },
  20637. {
  20638. name: "Macro",
  20639. height: math.unit(300, "feet")
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20645. {
  20646. side: {
  20647. height: math.unit(8, "meters"),
  20648. weight: math.unit(90000, "kg"),
  20649. name: "Side",
  20650. image: {
  20651. source: "./media/characters/ijzer/side.svg",
  20652. extra: 2756 / 1600,
  20653. bottom: 0.01
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Small",
  20660. height: math.unit(3, "meters")
  20661. },
  20662. {
  20663. name: "Normal",
  20664. height: math.unit(8, "meters"),
  20665. default: true
  20666. },
  20667. {
  20668. name: "Normal+",
  20669. height: math.unit(10, "meters")
  20670. },
  20671. {
  20672. name: "Bigger",
  20673. height: math.unit(24, "meters")
  20674. },
  20675. {
  20676. name: "Huge",
  20677. height: math.unit(80, "meters")
  20678. },
  20679. ]
  20680. ))
  20681. characterMakers.push(() => makeCharacter(
  20682. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20683. {
  20684. front: {
  20685. height: math.unit(6 + 2 / 12, "feet"),
  20686. weight: math.unit(153, "lb"),
  20687. name: "Front",
  20688. image: {
  20689. source: "./media/characters/luca-cervicum/front.svg",
  20690. extra: 370 / 327,
  20691. bottom: 0.015
  20692. }
  20693. },
  20694. back: {
  20695. height: math.unit(6 + 2 / 12, "feet"),
  20696. weight: math.unit(153, "lb"),
  20697. name: "Back",
  20698. image: {
  20699. source: "./media/characters/luca-cervicum/back.svg",
  20700. extra: 367 / 333,
  20701. bottom: 0.005
  20702. }
  20703. },
  20704. frontGear: {
  20705. height: math.unit(6 + 2 / 12, "feet"),
  20706. weight: math.unit(173, "lb"),
  20707. name: "Front (Gear)",
  20708. image: {
  20709. source: "./media/characters/luca-cervicum/front-gear.svg",
  20710. extra: 377 / 333,
  20711. bottom: 0.006
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Normal",
  20718. height: math.unit(6 + 2 / 12, "feet"),
  20719. default: true
  20720. },
  20721. ]
  20722. ))
  20723. characterMakers.push(() => makeCharacter(
  20724. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20725. {
  20726. front: {
  20727. height: math.unit(6 + 1 / 12, "feet"),
  20728. weight: math.unit(304, "lb"),
  20729. name: "Front",
  20730. image: {
  20731. source: "./media/characters/oliver/front.svg",
  20732. extra: 157 / 143,
  20733. bottom: 0.08
  20734. }
  20735. },
  20736. },
  20737. [
  20738. {
  20739. name: "Normal",
  20740. height: math.unit(6 + 1 / 12, "feet"),
  20741. default: true
  20742. },
  20743. ]
  20744. ))
  20745. characterMakers.push(() => makeCharacter(
  20746. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20747. {
  20748. front: {
  20749. height: math.unit(5 + 7 / 12, "feet"),
  20750. weight: math.unit(140, "lb"),
  20751. name: "Front",
  20752. image: {
  20753. source: "./media/characters/shane/front.svg",
  20754. extra: 304 / 289,
  20755. bottom: 0.005
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 7 / 12, "feet"),
  20763. default: true
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20769. {
  20770. front: {
  20771. height: math.unit(5 + 9 / 12, "feet"),
  20772. weight: math.unit(178, "lb"),
  20773. name: "Front",
  20774. image: {
  20775. source: "./media/characters/shin/front.svg",
  20776. extra: 159 / 151,
  20777. bottom: 0.015
  20778. }
  20779. },
  20780. },
  20781. [
  20782. {
  20783. name: "Normal",
  20784. height: math.unit(5 + 9 / 12, "feet"),
  20785. default: true
  20786. },
  20787. ]
  20788. ))
  20789. characterMakers.push(() => makeCharacter(
  20790. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20791. {
  20792. front: {
  20793. height: math.unit(5 + 10 / 12, "feet"),
  20794. weight: math.unit(168, "lb"),
  20795. name: "Front",
  20796. image: {
  20797. source: "./media/characters/xerxes/front.svg",
  20798. extra: 282 / 260,
  20799. bottom: 0.045
  20800. }
  20801. },
  20802. },
  20803. [
  20804. {
  20805. name: "Normal",
  20806. height: math.unit(5 + 10 / 12, "feet"),
  20807. default: true
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20813. {
  20814. front: {
  20815. height: math.unit(6 + 7 / 12, "feet"),
  20816. weight: math.unit(208, "lb"),
  20817. name: "Front",
  20818. image: {
  20819. source: "./media/characters/chaska/front.svg",
  20820. extra: 332 / 319,
  20821. bottom: 0.015
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(6 + 7 / 12, "feet"),
  20829. default: true
  20830. },
  20831. ]
  20832. ))
  20833. characterMakers.push(() => makeCharacter(
  20834. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20835. {
  20836. front: {
  20837. height: math.unit(5 + 8 / 12, "feet"),
  20838. weight: math.unit(208, "lb"),
  20839. name: "Front",
  20840. image: {
  20841. source: "./media/characters/enuk/front.svg",
  20842. extra: 437 / 406,
  20843. bottom: 0.02
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(5 + 8 / 12, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(5 + 10 / 12, "feet"),
  20860. weight: math.unit(252, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/bruun/front.svg",
  20864. extra: 197 / 187,
  20865. bottom: 0.012
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(5 + 10 / 12, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(6 + 10 / 12, "feet"),
  20882. weight: math.unit(255, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/alexeev/front.svg",
  20886. extra: 213 / 200,
  20887. bottom: 0.05
  20888. }
  20889. },
  20890. },
  20891. [
  20892. {
  20893. name: "Normal",
  20894. height: math.unit(6 + 10 / 12, "feet"),
  20895. default: true
  20896. },
  20897. ]
  20898. ))
  20899. characterMakers.push(() => makeCharacter(
  20900. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20901. {
  20902. front: {
  20903. height: math.unit(2 + 8 / 12, "feet"),
  20904. weight: math.unit(22, "lb"),
  20905. name: "Front",
  20906. image: {
  20907. source: "./media/characters/evelyn/front.svg",
  20908. extra: 208 / 180
  20909. }
  20910. },
  20911. },
  20912. [
  20913. {
  20914. name: "Normal",
  20915. height: math.unit(2 + 8 / 12, "feet"),
  20916. default: true
  20917. },
  20918. ]
  20919. ))
  20920. characterMakers.push(() => makeCharacter(
  20921. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20922. {
  20923. front: {
  20924. height: math.unit(5 + 9 / 12, "feet"),
  20925. weight: math.unit(139, "lb"),
  20926. name: "Front",
  20927. image: {
  20928. source: "./media/characters/inca/front.svg",
  20929. extra: 294 / 291,
  20930. bottom: 0.03
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(5 + 9 / 12, "feet"),
  20938. default: true
  20939. },
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(6 + 3 / 12, "feet"),
  20947. weight: math.unit(185, "lb"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/mera/front.svg",
  20951. extra: 291 / 277,
  20952. bottom: 0.03
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Normal",
  20959. height: math.unit(6 + 3 / 12, "feet"),
  20960. default: true
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20966. {
  20967. front: {
  20968. height: math.unit(6 + 7 / 12, "feet"),
  20969. weight: math.unit(160, "lb"),
  20970. name: "Front",
  20971. image: {
  20972. source: "./media/characters/ceres/front.svg",
  20973. extra: 1023 / 950,
  20974. bottom: 0.027
  20975. }
  20976. },
  20977. back: {
  20978. height: math.unit(6 + 7 / 12, "feet"),
  20979. weight: math.unit(160, "lb"),
  20980. name: "Back",
  20981. image: {
  20982. source: "./media/characters/ceres/back.svg",
  20983. extra: 1023 / 950
  20984. }
  20985. },
  20986. },
  20987. [
  20988. {
  20989. name: "Normal",
  20990. height: math.unit(6 + 7 / 12, "feet"),
  20991. default: true
  20992. },
  20993. ]
  20994. ))
  20995. characterMakers.push(() => makeCharacter(
  20996. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20997. {
  20998. front: {
  20999. height: math.unit(5 + 10 / 12, "feet"),
  21000. weight: math.unit(150, "lb"),
  21001. name: "Front",
  21002. image: {
  21003. source: "./media/characters/kris/front.svg",
  21004. extra: 885 / 803,
  21005. bottom: 0.03
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(5 + 10 / 12, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21019. {
  21020. front: {
  21021. height: math.unit(7, "feet"),
  21022. weight: math.unit(120, "kg"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/taluthus/front.svg",
  21026. extra: 903 / 833,
  21027. bottom: 0.015
  21028. }
  21029. },
  21030. },
  21031. [
  21032. {
  21033. name: "Normal",
  21034. height: math.unit(7, "feet"),
  21035. default: true
  21036. },
  21037. {
  21038. name: "Macro",
  21039. height: math.unit(300, "feet")
  21040. },
  21041. ]
  21042. ))
  21043. characterMakers.push(() => makeCharacter(
  21044. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21045. {
  21046. front: {
  21047. height: math.unit(5 + 9 / 12, "feet"),
  21048. weight: math.unit(145, "lb"),
  21049. name: "Front",
  21050. image: {
  21051. source: "./media/characters/dawn/front.svg",
  21052. extra: 2094 / 2016,
  21053. bottom: 0.025
  21054. }
  21055. },
  21056. back: {
  21057. height: math.unit(5 + 9 / 12, "feet"),
  21058. weight: math.unit(160, "lb"),
  21059. name: "Back",
  21060. image: {
  21061. source: "./media/characters/dawn/back.svg",
  21062. extra: 2112 / 2080,
  21063. bottom: 0.005
  21064. }
  21065. },
  21066. },
  21067. [
  21068. {
  21069. name: "Normal",
  21070. height: math.unit(6 + 7 / 12, "feet"),
  21071. default: true
  21072. },
  21073. ]
  21074. ))
  21075. characterMakers.push(() => makeCharacter(
  21076. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21077. {
  21078. anthro: {
  21079. height: math.unit(8 + 3 / 12, "feet"),
  21080. weight: math.unit(450, "lb"),
  21081. name: "Anthro",
  21082. image: {
  21083. source: "./media/characters/arador/anthro.svg",
  21084. extra: 1835 / 1718,
  21085. bottom: 0.025
  21086. }
  21087. },
  21088. feral: {
  21089. height: math.unit(4, "feet"),
  21090. weight: math.unit(200, "lb"),
  21091. name: "Feral",
  21092. image: {
  21093. source: "./media/characters/arador/feral.svg",
  21094. extra: 1683 / 1514,
  21095. bottom: 0.07
  21096. }
  21097. },
  21098. },
  21099. [
  21100. {
  21101. name: "Normal",
  21102. height: math.unit(8 + 3 / 12, "feet")
  21103. },
  21104. {
  21105. name: "Macro",
  21106. height: math.unit(82.5, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21113. {
  21114. front: {
  21115. height: math.unit(5 + 10 / 12, "feet"),
  21116. weight: math.unit(125, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/dharsi/front.svg",
  21120. extra: 716 / 630,
  21121. bottom: 0.035
  21122. }
  21123. },
  21124. },
  21125. [
  21126. {
  21127. name: "Nano",
  21128. height: math.unit(100, "nm")
  21129. },
  21130. {
  21131. name: "Micro",
  21132. height: math.unit(2, "inches")
  21133. },
  21134. {
  21135. name: "Normal",
  21136. height: math.unit(5 + 10 / 12, "feet"),
  21137. default: true
  21138. },
  21139. {
  21140. name: "Macro",
  21141. height: math.unit(1000, "feet")
  21142. },
  21143. {
  21144. name: "Megamacro",
  21145. height: math.unit(10, "miles")
  21146. },
  21147. {
  21148. name: "Gigamacro",
  21149. height: math.unit(3000, "miles")
  21150. },
  21151. {
  21152. name: "Teramacro",
  21153. height: math.unit(500000, "miles")
  21154. },
  21155. {
  21156. name: "Teramacro+",
  21157. height: math.unit(30, "galaxies")
  21158. },
  21159. ]
  21160. ))
  21161. characterMakers.push(() => makeCharacter(
  21162. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21163. {
  21164. front: {
  21165. height: math.unit(6, "feet"),
  21166. weight: math.unit(150, "lb"),
  21167. name: "Front",
  21168. image: {
  21169. source: "./media/characters/deathy/front.svg",
  21170. extra: 1552 / 1463,
  21171. bottom: 0.025
  21172. }
  21173. },
  21174. side: {
  21175. height: math.unit(6, "feet"),
  21176. weight: math.unit(150, "lb"),
  21177. name: "Side",
  21178. image: {
  21179. source: "./media/characters/deathy/side.svg",
  21180. extra: 1604 / 1455,
  21181. bottom: 0.025
  21182. }
  21183. },
  21184. back: {
  21185. height: math.unit(6, "feet"),
  21186. weight: math.unit(150, "lb"),
  21187. name: "Back",
  21188. image: {
  21189. source: "./media/characters/deathy/back.svg",
  21190. extra: 1580 / 1463,
  21191. bottom: 0.005
  21192. }
  21193. },
  21194. },
  21195. [
  21196. {
  21197. name: "Micro",
  21198. height: math.unit(5, "millimeters")
  21199. },
  21200. {
  21201. name: "Normal",
  21202. height: math.unit(6 + 5 / 12, "feet"),
  21203. default: true
  21204. },
  21205. ]
  21206. ))
  21207. characterMakers.push(() => makeCharacter(
  21208. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21209. {
  21210. front: {
  21211. height: math.unit(16, "feet"),
  21212. weight: math.unit(4000, "lb"),
  21213. name: "Front",
  21214. image: {
  21215. source: "./media/characters/juniper/front.svg",
  21216. bottom: 0.04
  21217. }
  21218. },
  21219. },
  21220. [
  21221. {
  21222. name: "Normal",
  21223. height: math.unit(16, "feet"),
  21224. default: true
  21225. },
  21226. ]
  21227. ))
  21228. characterMakers.push(() => makeCharacter(
  21229. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21230. {
  21231. front: {
  21232. height: math.unit(6, "feet"),
  21233. weight: math.unit(150, "lb"),
  21234. name: "Front",
  21235. image: {
  21236. source: "./media/characters/hipster/front.svg",
  21237. extra: 1312 / 1209,
  21238. bottom: 0.025
  21239. }
  21240. },
  21241. back: {
  21242. height: math.unit(6, "feet"),
  21243. weight: math.unit(150, "lb"),
  21244. name: "Back",
  21245. image: {
  21246. source: "./media/characters/hipster/back.svg",
  21247. extra: 1281 / 1196,
  21248. bottom: 0.01
  21249. }
  21250. },
  21251. },
  21252. [
  21253. {
  21254. name: "Micro",
  21255. height: math.unit(1, "mm")
  21256. },
  21257. {
  21258. name: "Normal",
  21259. height: math.unit(4, "inches"),
  21260. default: true
  21261. },
  21262. {
  21263. name: "Macro",
  21264. height: math.unit(500, "feet")
  21265. },
  21266. {
  21267. name: "Megamacro",
  21268. height: math.unit(1000, "miles")
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(6, "feet"),
  21277. weight: math.unit(150, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/tendirmuldr/front.svg",
  21281. extra: 1878 / 1772,
  21282. bottom: 0.015
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Megamacro",
  21289. height: math.unit(1500, "miles"),
  21290. default: true
  21291. },
  21292. ]
  21293. ))
  21294. characterMakers.push(() => makeCharacter(
  21295. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21296. {
  21297. front: {
  21298. height: math.unit(14, "feet"),
  21299. weight: math.unit(12000, "lb"),
  21300. name: "Front",
  21301. image: {
  21302. source: "./media/characters/mort/front.svg",
  21303. extra: 365 / 318,
  21304. bottom: 0.01
  21305. }
  21306. },
  21307. side: {
  21308. height: math.unit(14, "feet"),
  21309. weight: math.unit(12000, "lb"),
  21310. name: "Side",
  21311. image: {
  21312. source: "./media/characters/mort/side.svg",
  21313. extra: 365 / 318,
  21314. bottom: 0.052
  21315. },
  21316. default: true
  21317. },
  21318. back: {
  21319. height: math.unit(14, "feet"),
  21320. weight: math.unit(12000, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/mort/back.svg",
  21324. extra: 371 / 332,
  21325. bottom: 0.18
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(14, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21339. {
  21340. front: {
  21341. height: math.unit(8, "feet"),
  21342. weight: math.unit(1, "ton"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/lycoa/front.svg",
  21346. extra: 1836/1728,
  21347. bottom: 81/1917
  21348. }
  21349. },
  21350. back: {
  21351. height: math.unit(8, "feet"),
  21352. weight: math.unit(1, "ton"),
  21353. name: "Back",
  21354. image: {
  21355. source: "./media/characters/lycoa/back.svg",
  21356. extra: 1785/1720,
  21357. bottom: 91/1876
  21358. }
  21359. },
  21360. head: {
  21361. height: math.unit(1.6243, "feet"),
  21362. name: "Head",
  21363. image: {
  21364. source: "./media/characters/lycoa/head.svg",
  21365. extra: 1011/782,
  21366. bottom: 0/1011
  21367. }
  21368. },
  21369. tailmaw: {
  21370. height: math.unit(1.9, "feet"),
  21371. name: "Tailmaw",
  21372. image: {
  21373. source: "./media/characters/lycoa/tailmaw.svg"
  21374. }
  21375. },
  21376. tentacles: {
  21377. height: math.unit(2.1, "feet"),
  21378. name: "Tentacles",
  21379. image: {
  21380. source: "./media/characters/lycoa/tentacles.svg"
  21381. }
  21382. },
  21383. dick: {
  21384. height: math.unit(1.73, "feet"),
  21385. name: "Dick",
  21386. image: {
  21387. source: "./media/characters/lycoa/dick.svg"
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(8, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(30, "feet")
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21405. {
  21406. front: {
  21407. height: math.unit(4 + 2 / 12, "feet"),
  21408. weight: math.unit(70, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/naldara/front.svg",
  21412. extra: 1664/1387,
  21413. bottom: 81/1745
  21414. },
  21415. form: "anthro",
  21416. default: true
  21417. },
  21418. naga: {
  21419. height: math.unit(20, "feet"),
  21420. weight: math.unit(15000, "kg"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/naldara/naga.svg",
  21424. extra: 1590/1396,
  21425. bottom: 285/1875
  21426. },
  21427. form: "naga",
  21428. default: true
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(4 + 2 / 12, "feet"),
  21435. form: "anthro",
  21436. default: true
  21437. },
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(20, "feet"),
  21441. form: "naga",
  21442. default: true
  21443. },
  21444. ],
  21445. {
  21446. "anthro": {
  21447. name: "Anthro",
  21448. default: true
  21449. },
  21450. "naga": {
  21451. name: "Naga"
  21452. }
  21453. }
  21454. ))
  21455. characterMakers.push(() => makeCharacter(
  21456. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21457. {
  21458. front: {
  21459. height: math.unit(13 + 7 / 12, "feet"),
  21460. weight: math.unit(1500, "lb"),
  21461. name: "Front",
  21462. image: {
  21463. source: "./media/characters/briar/front.svg",
  21464. extra: 1223/1157,
  21465. bottom: 123/1346
  21466. }
  21467. },
  21468. },
  21469. [
  21470. {
  21471. name: "Normal",
  21472. height: math.unit(13 + 7 / 12, "feet"),
  21473. default: true
  21474. },
  21475. ]
  21476. ))
  21477. characterMakers.push(() => makeCharacter(
  21478. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21479. {
  21480. side: {
  21481. height: math.unit(16, "feet"),
  21482. weight: math.unit(500, "lb"),
  21483. name: "Side",
  21484. image: {
  21485. source: "./media/characters/vanguard/side.svg",
  21486. extra: 1022/914,
  21487. bottom: 30/1052
  21488. }
  21489. },
  21490. sideAlt: {
  21491. height: math.unit(10, "feet"),
  21492. weight: math.unit(500, "lb"),
  21493. name: "Side (Alt)",
  21494. image: {
  21495. source: "./media/characters/vanguard/side-alt.svg",
  21496. extra: 502 / 425,
  21497. bottom: 0.087
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Normal",
  21504. height: math.unit(17.71, "feet"),
  21505. default: true
  21506. },
  21507. ]
  21508. ))
  21509. characterMakers.push(() => makeCharacter(
  21510. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21511. {
  21512. front: {
  21513. height: math.unit(7.5, "feet"),
  21514. weight: math.unit(2, "lb"),
  21515. name: "Front",
  21516. image: {
  21517. source: "./media/characters/artemis/work-safe-front.svg",
  21518. extra: 1192 / 1075,
  21519. bottom: 0.07
  21520. },
  21521. form: "work-safe",
  21522. default: true
  21523. },
  21524. frontNsfw: {
  21525. height: math.unit(7.5, "feet"),
  21526. weight: math.unit(2, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/artemis/calibrating-front.svg",
  21530. extra: 1192 / 1075,
  21531. bottom: 0.07
  21532. },
  21533. form: "calibrating",
  21534. default: true
  21535. },
  21536. frontNsfwer: {
  21537. height: math.unit(7.5, "feet"),
  21538. weight: math.unit(2, "lb"),
  21539. name: "Front",
  21540. image: {
  21541. source: "./media/characters/artemis/oversize-load-front.svg",
  21542. extra: 1192 / 1075,
  21543. bottom: 0.07
  21544. },
  21545. form: "oversize-load",
  21546. default: true
  21547. },
  21548. side: {
  21549. height: math.unit(7.5, "feet"),
  21550. weight: math.unit(2, "lb"),
  21551. name: "Side",
  21552. image: {
  21553. source: "./media/characters/artemis/work-safe-side.svg",
  21554. extra: 1192 / 1075,
  21555. bottom: 0.07
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. sideNsfw: {
  21560. height: math.unit(7.5, "feet"),
  21561. weight: math.unit(2, "lb"),
  21562. name: "Side",
  21563. image: {
  21564. source: "./media/characters/artemis/calibrating-side.svg",
  21565. extra: 1192 / 1075,
  21566. bottom: 0.07
  21567. },
  21568. form: "calibrating"
  21569. },
  21570. sideNsfwer: {
  21571. height: math.unit(7.5, "feet"),
  21572. weight: math.unit(2, "lb"),
  21573. name: "Side",
  21574. image: {
  21575. source: "./media/characters/artemis/oversize-load-side.svg",
  21576. extra: 1192 / 1075,
  21577. bottom: 0.07
  21578. },
  21579. form: "oversize-load"
  21580. },
  21581. maw: {
  21582. height: math.unit(1.1, "feet"),
  21583. name: "Maw",
  21584. image: {
  21585. source: "./media/characters/artemis/maw.svg"
  21586. },
  21587. form: "work-safe"
  21588. },
  21589. stomach: {
  21590. height: math.unit(0.95, "feet"),
  21591. name: "Stomach",
  21592. image: {
  21593. source: "./media/characters/artemis/stomach.svg"
  21594. },
  21595. form: "work-safe"
  21596. },
  21597. dickCanine: {
  21598. height: math.unit(1, "feet"),
  21599. name: "Dick (Canine)",
  21600. image: {
  21601. source: "./media/characters/artemis/dick-canine.svg"
  21602. },
  21603. form: "calibrating"
  21604. },
  21605. dickEquine: {
  21606. height: math.unit(0.85, "feet"),
  21607. name: "Dick (Equine)",
  21608. image: {
  21609. source: "./media/characters/artemis/dick-equine.svg"
  21610. },
  21611. form: "calibrating"
  21612. },
  21613. dickExotic: {
  21614. height: math.unit(0.85, "feet"),
  21615. name: "Dick (Exotic)",
  21616. image: {
  21617. source: "./media/characters/artemis/dick-exotic.svg"
  21618. },
  21619. form: "calibrating"
  21620. },
  21621. dickCanineBigger: {
  21622. height: math.unit(1 * 1.33, "feet"),
  21623. name: "Dick (Canine)",
  21624. image: {
  21625. source: "./media/characters/artemis/dick-canine.svg"
  21626. },
  21627. form: "oversize-load"
  21628. },
  21629. dickEquineBigger: {
  21630. height: math.unit(0.85 * 1.33, "feet"),
  21631. name: "Dick (Equine)",
  21632. image: {
  21633. source: "./media/characters/artemis/dick-equine.svg"
  21634. },
  21635. form: "oversize-load"
  21636. },
  21637. dickExoticBigger: {
  21638. height: math.unit(0.85 * 1.33, "feet"),
  21639. name: "Dick (Exotic)",
  21640. image: {
  21641. source: "./media/characters/artemis/dick-exotic.svg"
  21642. },
  21643. form: "oversize-load"
  21644. },
  21645. },
  21646. [
  21647. {
  21648. name: "Normal",
  21649. height: math.unit(7.5, "feet"),
  21650. form: "work-safe",
  21651. default: true
  21652. },
  21653. {
  21654. name: "Normal",
  21655. height: math.unit(7.5, "feet"),
  21656. form: "calibrating",
  21657. default: true
  21658. },
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(7.5, "feet"),
  21662. form: "oversize-load",
  21663. default: true
  21664. },
  21665. {
  21666. name: "Enlarged",
  21667. height: math.unit(12, "feet"),
  21668. form: "work-safe",
  21669. },
  21670. {
  21671. name: "Enlarged",
  21672. height: math.unit(12, "feet"),
  21673. form: "calibrating",
  21674. },
  21675. {
  21676. name: "Enlarged",
  21677. height: math.unit(12, "feet"),
  21678. form: "oversize-load",
  21679. },
  21680. ],
  21681. {
  21682. "work-safe": {
  21683. name: "Work-Safe",
  21684. default: true
  21685. },
  21686. "calibrating": {
  21687. name: "Calibrating"
  21688. },
  21689. "oversize-load": {
  21690. name: "Oversize Load"
  21691. }
  21692. }
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(5 + 3 / 12, "feet"),
  21699. weight: math.unit(160, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/kira/front.svg",
  21703. extra: 906 / 786,
  21704. bottom: 0.01
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(5 + 3 / 12, "feet"),
  21709. weight: math.unit(160, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/kira/back.svg",
  21713. extra: 882 / 757,
  21714. bottom: 0.005
  21715. }
  21716. },
  21717. frontDressed: {
  21718. height: math.unit(5 + 3 / 12, "feet"),
  21719. weight: math.unit(160, "lb"),
  21720. name: "Front (Dressed)",
  21721. image: {
  21722. source: "./media/characters/kira/front-dressed.svg",
  21723. extra: 906 / 786,
  21724. bottom: 0.01
  21725. }
  21726. },
  21727. beans: {
  21728. height: math.unit(0.92, "feet"),
  21729. name: "Beans",
  21730. image: {
  21731. source: "./media/characters/kira/beans.svg"
  21732. }
  21733. },
  21734. },
  21735. [
  21736. {
  21737. name: "Normal",
  21738. height: math.unit(5 + 3 / 12, "feet"),
  21739. default: true
  21740. },
  21741. ]
  21742. ))
  21743. characterMakers.push(() => makeCharacter(
  21744. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21745. {
  21746. front: {
  21747. height: math.unit(5 + 4 / 12, "feet"),
  21748. weight: math.unit(145, "lb"),
  21749. name: "Front",
  21750. image: {
  21751. source: "./media/characters/scramble/front.svg",
  21752. extra: 763 / 727,
  21753. bottom: 0.05
  21754. }
  21755. },
  21756. back: {
  21757. height: math.unit(5 + 4 / 12, "feet"),
  21758. weight: math.unit(145, "lb"),
  21759. name: "Back",
  21760. image: {
  21761. source: "./media/characters/scramble/back.svg",
  21762. extra: 826 / 737,
  21763. bottom: 0.002
  21764. }
  21765. },
  21766. },
  21767. [
  21768. {
  21769. name: "Normal",
  21770. height: math.unit(5 + 4 / 12, "feet"),
  21771. default: true
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21777. {
  21778. side: {
  21779. height: math.unit(6 + 2 / 12, "feet"),
  21780. weight: math.unit(190, "lb"),
  21781. name: "Side",
  21782. image: {
  21783. source: "./media/characters/biscuit/side.svg",
  21784. extra: 858 / 791,
  21785. bottom: 0.044
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(6 + 2 / 12, "feet"),
  21793. default: true
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(5 + 2 / 12, "feet"),
  21802. weight: math.unit(120, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/poffin/front.svg",
  21806. extra: 786 / 680,
  21807. bottom: 0.005
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(5 + 2 / 12, "feet"),
  21815. default: true
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(6 + 3 / 12, "feet"),
  21824. weight: math.unit(519, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/dhari/front.svg",
  21828. extra: 1048 / 946,
  21829. bottom: 0.015
  21830. }
  21831. },
  21832. back: {
  21833. height: math.unit(6 + 3 / 12, "feet"),
  21834. weight: math.unit(519, "lb"),
  21835. name: "Back",
  21836. image: {
  21837. source: "./media/characters/dhari/back.svg",
  21838. extra: 1048 / 931,
  21839. bottom: 0.005
  21840. }
  21841. },
  21842. frontDressed: {
  21843. height: math.unit(6 + 3 / 12, "feet"),
  21844. weight: math.unit(519, "lb"),
  21845. name: "Front (Dressed)",
  21846. image: {
  21847. source: "./media/characters/dhari/front-dressed.svg",
  21848. extra: 1713 / 1546,
  21849. bottom: 0.02
  21850. }
  21851. },
  21852. backDressed: {
  21853. height: math.unit(6 + 3 / 12, "feet"),
  21854. weight: math.unit(519, "lb"),
  21855. name: "Back (Dressed)",
  21856. image: {
  21857. source: "./media/characters/dhari/back-dressed.svg",
  21858. extra: 1699 / 1537,
  21859. bottom: 0.01
  21860. }
  21861. },
  21862. maw: {
  21863. height: math.unit(0.95, "feet"),
  21864. name: "Maw",
  21865. image: {
  21866. source: "./media/characters/dhari/maw.svg"
  21867. }
  21868. },
  21869. wereFront: {
  21870. height: math.unit(12 + 8 / 12, "feet"),
  21871. weight: math.unit(4000, "lb"),
  21872. name: "Front (Were)",
  21873. image: {
  21874. source: "./media/characters/dhari/were-front.svg",
  21875. extra: 1065 / 969,
  21876. bottom: 0.015
  21877. }
  21878. },
  21879. wereBack: {
  21880. height: math.unit(12 + 8 / 12, "feet"),
  21881. weight: math.unit(4000, "lb"),
  21882. name: "Back (Were)",
  21883. image: {
  21884. source: "./media/characters/dhari/were-back.svg",
  21885. extra: 1065 / 969,
  21886. bottom: 0.012
  21887. }
  21888. },
  21889. wereMaw: {
  21890. height: math.unit(0.625, "meters"),
  21891. name: "Maw (Were)",
  21892. image: {
  21893. source: "./media/characters/dhari/were-maw.svg"
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(6 + 3 / 12, "feet"),
  21901. default: true
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21907. {
  21908. anthro: {
  21909. height: math.unit(5 + 7 / 12, "feet"),
  21910. weight: math.unit(175, "lb"),
  21911. name: "Anthro",
  21912. image: {
  21913. source: "./media/characters/rena-dyne/anthro.svg",
  21914. extra: 1849 / 1785,
  21915. bottom: 0.005
  21916. }
  21917. },
  21918. taur: {
  21919. height: math.unit(15 + 6 / 12, "feet"),
  21920. weight: math.unit(8000, "lb"),
  21921. name: "Taur",
  21922. image: {
  21923. source: "./media/characters/rena-dyne/taur.svg",
  21924. extra: 2315 / 2234,
  21925. bottom: 0.033
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(5 + 7 / 12, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21939. {
  21940. front: {
  21941. height: math.unit(8, "feet"),
  21942. weight: math.unit(600, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/weremeep/front.svg",
  21946. extra: 970/849,
  21947. bottom: 7/977
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(8, "feet"),
  21955. default: true
  21956. },
  21957. {
  21958. name: "Lorg",
  21959. height: math.unit(12, "feet")
  21960. },
  21961. {
  21962. name: "Oh Lawd She Comin'",
  21963. height: math.unit(20, "feet")
  21964. },
  21965. ]
  21966. ))
  21967. characterMakers.push(() => makeCharacter(
  21968. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21969. {
  21970. front: {
  21971. height: math.unit(4, "feet"),
  21972. weight: math.unit(90, "lb"),
  21973. name: "Front",
  21974. image: {
  21975. source: "./media/characters/reza/front.svg",
  21976. extra: 1183 / 1111,
  21977. bottom: 0.017
  21978. }
  21979. },
  21980. back: {
  21981. height: math.unit(4, "feet"),
  21982. weight: math.unit(90, "lb"),
  21983. name: "Back",
  21984. image: {
  21985. source: "./media/characters/reza/back.svg",
  21986. extra: 1183 / 1111,
  21987. bottom: 0.01
  21988. }
  21989. },
  21990. drake: {
  21991. height: math.unit(30, "feet"),
  21992. weight: math.unit(246960, "lb"),
  21993. name: "Drake",
  21994. image: {
  21995. source: "./media/characters/reza/drake.svg",
  21996. extra: 2350 / 2024,
  21997. bottom: 60.7 / 2403
  21998. }
  21999. },
  22000. },
  22001. [
  22002. {
  22003. name: "Normal",
  22004. height: math.unit(4, "feet"),
  22005. default: true
  22006. },
  22007. ]
  22008. ))
  22009. characterMakers.push(() => makeCharacter(
  22010. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22011. {
  22012. side: {
  22013. height: math.unit(15, "feet"),
  22014. weight: math.unit(14, "tons"),
  22015. name: "Side",
  22016. image: {
  22017. source: "./media/characters/athea/side.svg",
  22018. extra: 960 / 540,
  22019. bottom: 0.003
  22020. }
  22021. },
  22022. sitting: {
  22023. height: math.unit(6 * 2.85, "feet"),
  22024. weight: math.unit(14, "tons"),
  22025. name: "Sitting",
  22026. image: {
  22027. source: "./media/characters/athea/sitting.svg",
  22028. extra: 621 / 581,
  22029. bottom: 0.075
  22030. }
  22031. },
  22032. maw: {
  22033. height: math.unit(7.59498031496063, "feet"),
  22034. name: "Maw",
  22035. image: {
  22036. source: "./media/characters/athea/maw.svg"
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Lap Cat",
  22043. height: math.unit(2.5, "feet")
  22044. },
  22045. {
  22046. name: "Minimacro",
  22047. height: math.unit(15, "feet"),
  22048. default: true
  22049. },
  22050. {
  22051. name: "Macro",
  22052. height: math.unit(120, "feet")
  22053. },
  22054. {
  22055. name: "Macro+",
  22056. height: math.unit(640, "feet")
  22057. },
  22058. {
  22059. name: "Colossus",
  22060. height: math.unit(2.2, "miles")
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(8 + 8 / 12, "feet"),
  22069. weight: math.unit(130, "kg"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/seroko/front.svg",
  22073. extra: 1385 / 1280,
  22074. bottom: 0.025
  22075. }
  22076. },
  22077. back: {
  22078. height: math.unit(8 + 8 / 12, "feet"),
  22079. weight: math.unit(130, "kg"),
  22080. name: "Back",
  22081. image: {
  22082. source: "./media/characters/seroko/back.svg",
  22083. extra: 1369 / 1238,
  22084. bottom: 0.018
  22085. }
  22086. },
  22087. frontDressed: {
  22088. height: math.unit(8 + 8 / 12, "feet"),
  22089. weight: math.unit(130, "kg"),
  22090. name: "Front (Dressed)",
  22091. image: {
  22092. source: "./media/characters/seroko/front-dressed.svg",
  22093. extra: 1366 / 1275,
  22094. bottom: 0.03
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(8 + 8 / 12, "feet"),
  22102. default: true
  22103. },
  22104. ]
  22105. ))
  22106. characterMakers.push(() => makeCharacter(
  22107. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22108. {
  22109. front: {
  22110. height: math.unit(5.5, "feet"),
  22111. weight: math.unit(160, "lb"),
  22112. name: "Front",
  22113. image: {
  22114. source: "./media/characters/quatzi/front.svg",
  22115. extra: 2346 / 2242,
  22116. bottom: 0.015
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(5.5, "feet"),
  22124. default: true
  22125. },
  22126. {
  22127. name: "Big",
  22128. height: math.unit(7.7, "feet")
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 11 / 12, "feet"),
  22137. weight: math.unit(180, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/sen/front.svg",
  22141. extra: 1321 / 1254,
  22142. bottom: 0.015
  22143. }
  22144. },
  22145. side: {
  22146. height: math.unit(5 + 11 / 12, "feet"),
  22147. weight: math.unit(180, "lb"),
  22148. name: "Side",
  22149. image: {
  22150. source: "./media/characters/sen/side.svg",
  22151. extra: 1321 / 1254,
  22152. bottom: 0.007
  22153. }
  22154. },
  22155. back: {
  22156. height: math.unit(5 + 11 / 12, "feet"),
  22157. weight: math.unit(180, "lb"),
  22158. name: "Back",
  22159. image: {
  22160. source: "./media/characters/sen/back.svg",
  22161. extra: 1321 / 1254
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(5 + 11 / 12, "feet"),
  22169. default: true
  22170. },
  22171. ]
  22172. ))
  22173. characterMakers.push(() => makeCharacter(
  22174. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22175. {
  22176. front: {
  22177. height: math.unit(166.6, "cm"),
  22178. weight: math.unit(66.6, "kg"),
  22179. name: "Front",
  22180. image: {
  22181. source: "./media/characters/fruity/front.svg",
  22182. extra: 1510 / 1386,
  22183. bottom: 0.04
  22184. }
  22185. },
  22186. back: {
  22187. height: math.unit(166.6, "cm"),
  22188. weight: math.unit(66.6, "lb"),
  22189. name: "Back",
  22190. image: {
  22191. source: "./media/characters/fruity/back.svg",
  22192. extra: 1563 / 1435,
  22193. bottom: 0.005
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(166.6, "cm"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Demonic",
  22205. height: math.unit(166.6, "feet")
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22211. {
  22212. side: {
  22213. height: math.unit(10, "feet"),
  22214. weight: math.unit(500, "lb"),
  22215. name: "Side",
  22216. image: {
  22217. source: "./media/characters/zost/side.svg",
  22218. extra: 2870/2533,
  22219. bottom: 252/3122
  22220. }
  22221. },
  22222. mawFront: {
  22223. height: math.unit(1.08, "meters"),
  22224. name: "Maw (Front)",
  22225. image: {
  22226. source: "./media/characters/zost/maw-front.svg"
  22227. }
  22228. },
  22229. mawSide: {
  22230. height: math.unit(2.66, "feet"),
  22231. name: "Maw (Side)",
  22232. image: {
  22233. source: "./media/characters/zost/maw-side.svg"
  22234. }
  22235. },
  22236. wingspan: {
  22237. height: math.unit(7.4, "feet"),
  22238. name: "Wingspan",
  22239. image: {
  22240. source: "./media/characters/zost/wingspan.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(10, "feet"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(5 + 4 / 12, "feet"),
  22257. weight: math.unit(120, "lb"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/luci/front.svg",
  22261. extra: 1985 / 1884,
  22262. bottom: 0.04
  22263. }
  22264. },
  22265. back: {
  22266. height: math.unit(5 + 4 / 12, "feet"),
  22267. weight: math.unit(120, "lb"),
  22268. name: "Back",
  22269. image: {
  22270. source: "./media/characters/luci/back.svg",
  22271. extra: 1892 / 1791,
  22272. bottom: 0.002
  22273. }
  22274. },
  22275. },
  22276. [
  22277. {
  22278. name: "Normal",
  22279. height: math.unit(5 + 4 / 12, "feet"),
  22280. default: true
  22281. },
  22282. ]
  22283. ))
  22284. characterMakers.push(() => makeCharacter(
  22285. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22286. {
  22287. front: {
  22288. height: math.unit(1500, "feet"),
  22289. weight: math.unit(3.8e6, "tons"),
  22290. name: "Front",
  22291. image: {
  22292. source: "./media/characters/2th/front.svg",
  22293. extra: 3489 / 3350,
  22294. bottom: 0.1
  22295. }
  22296. },
  22297. foot: {
  22298. height: math.unit(461, "feet"),
  22299. name: "Foot",
  22300. image: {
  22301. source: "./media/characters/2th/foot.svg"
  22302. }
  22303. },
  22304. },
  22305. [
  22306. {
  22307. name: "\"Micro\"",
  22308. height: math.unit(15 + 7 / 12, "feet")
  22309. },
  22310. {
  22311. name: "Normal",
  22312. height: math.unit(1500, "feet"),
  22313. default: true
  22314. },
  22315. {
  22316. name: "Macro",
  22317. height: math.unit(5000, "feet")
  22318. },
  22319. {
  22320. name: "Megamacro",
  22321. height: math.unit(15, "miles")
  22322. },
  22323. {
  22324. name: "Gigamacro",
  22325. height: math.unit(4000, "miles")
  22326. },
  22327. {
  22328. name: "Galactic",
  22329. height: math.unit(50, "AU")
  22330. },
  22331. ]
  22332. ))
  22333. characterMakers.push(() => makeCharacter(
  22334. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22335. {
  22336. front: {
  22337. height: math.unit(5 + 6 / 12, "feet"),
  22338. weight: math.unit(220, "lb"),
  22339. name: "Front",
  22340. image: {
  22341. source: "./media/characters/amethyst/front.svg",
  22342. extra: 2078 / 2040,
  22343. bottom: 0.045
  22344. }
  22345. },
  22346. back: {
  22347. height: math.unit(5 + 6 / 12, "feet"),
  22348. weight: math.unit(220, "lb"),
  22349. name: "Back",
  22350. image: {
  22351. source: "./media/characters/amethyst/back.svg",
  22352. extra: 2021 / 1989,
  22353. bottom: 0.02
  22354. }
  22355. },
  22356. },
  22357. [
  22358. {
  22359. name: "Normal",
  22360. height: math.unit(5 + 6 / 12, "feet"),
  22361. default: true
  22362. },
  22363. ]
  22364. ))
  22365. characterMakers.push(() => makeCharacter(
  22366. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22367. {
  22368. front: {
  22369. height: math.unit(4 + 11 / 12, "feet"),
  22370. weight: math.unit(120, "lb"),
  22371. name: "Front",
  22372. image: {
  22373. source: "./media/characters/yumi-akiyama/front.svg",
  22374. extra: 1327 / 1235,
  22375. bottom: 0.02
  22376. }
  22377. },
  22378. back: {
  22379. height: math.unit(4 + 11 / 12, "feet"),
  22380. weight: math.unit(120, "lb"),
  22381. name: "Back",
  22382. image: {
  22383. source: "./media/characters/yumi-akiyama/back.svg",
  22384. extra: 1287 / 1245,
  22385. bottom: 0.002
  22386. }
  22387. },
  22388. },
  22389. [
  22390. {
  22391. name: "Galactic",
  22392. height: math.unit(50, "galaxies"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Universal",
  22397. height: math.unit(100, "universes")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(8, "feet"),
  22406. weight: math.unit(500, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/rifter-yrmori/front.svg",
  22410. extra: 1180 / 1125,
  22411. bottom: 0.02
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(8, "feet"),
  22416. weight: math.unit(500, "lb"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/rifter-yrmori/back.svg",
  22420. extra: 1190 / 1145,
  22421. bottom: 0.001
  22422. }
  22423. },
  22424. wings: {
  22425. height: math.unit(7.75, "feet"),
  22426. weight: math.unit(500, "lb"),
  22427. name: "Wings",
  22428. image: {
  22429. source: "./media/characters/rifter-yrmori/wings.svg",
  22430. extra: 1357 / 1285
  22431. }
  22432. },
  22433. maw: {
  22434. height: math.unit(0.8, "feet"),
  22435. name: "Maw",
  22436. image: {
  22437. source: "./media/characters/rifter-yrmori/maw.svg"
  22438. }
  22439. },
  22440. mawfront: {
  22441. height: math.unit(1.45, "feet"),
  22442. name: "Maw (Front)",
  22443. image: {
  22444. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22445. }
  22446. },
  22447. },
  22448. [
  22449. {
  22450. name: "Normal",
  22451. height: math.unit(8, "feet"),
  22452. default: true
  22453. },
  22454. {
  22455. name: "Macro",
  22456. height: math.unit(42, "meters")
  22457. },
  22458. ]
  22459. ))
  22460. characterMakers.push(() => makeCharacter(
  22461. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22462. {
  22463. were: {
  22464. height: math.unit(25 + 6 / 12, "feet"),
  22465. weight: math.unit(10000, "lb"),
  22466. name: "Were",
  22467. image: {
  22468. source: "./media/characters/tahajin/were.svg",
  22469. extra: 801 / 770,
  22470. bottom: 0.042
  22471. }
  22472. },
  22473. aquatic: {
  22474. height: math.unit(6 + 4 / 12, "feet"),
  22475. weight: math.unit(160, "lb"),
  22476. name: "Aquatic",
  22477. image: {
  22478. source: "./media/characters/tahajin/aquatic.svg",
  22479. extra: 572 / 542,
  22480. bottom: 0.04
  22481. }
  22482. },
  22483. chow: {
  22484. height: math.unit(8 + 11 / 12, "feet"),
  22485. weight: math.unit(450, "lb"),
  22486. name: "Chow",
  22487. image: {
  22488. source: "./media/characters/tahajin/chow.svg",
  22489. extra: 660 / 640,
  22490. bottom: 0.015
  22491. }
  22492. },
  22493. demiNaga: {
  22494. height: math.unit(6 + 8 / 12, "feet"),
  22495. weight: math.unit(300, "lb"),
  22496. name: "Demi Naga",
  22497. image: {
  22498. source: "./media/characters/tahajin/demi-naga.svg",
  22499. extra: 643 / 615,
  22500. bottom: 0.1
  22501. }
  22502. },
  22503. data: {
  22504. height: math.unit(5, "inches"),
  22505. weight: math.unit(0.1, "lb"),
  22506. name: "Data",
  22507. image: {
  22508. source: "./media/characters/tahajin/data.svg"
  22509. }
  22510. },
  22511. fluu: {
  22512. height: math.unit(5 + 7 / 12, "feet"),
  22513. weight: math.unit(140, "lb"),
  22514. name: "Fluu",
  22515. image: {
  22516. source: "./media/characters/tahajin/fluu.svg",
  22517. extra: 628 / 592,
  22518. bottom: 0.02
  22519. }
  22520. },
  22521. starWarrior: {
  22522. height: math.unit(4 + 5 / 12, "feet"),
  22523. weight: math.unit(50, "lb"),
  22524. name: "Star Warrior",
  22525. image: {
  22526. source: "./media/characters/tahajin/star-warrior.svg"
  22527. }
  22528. },
  22529. },
  22530. [
  22531. {
  22532. name: "Normal",
  22533. height: math.unit(25 + 6 / 12, "feet"),
  22534. default: true
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22540. {
  22541. front: {
  22542. height: math.unit(8, "feet"),
  22543. weight: math.unit(350, "lb"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/gabira/front.svg",
  22547. extra: 1261/1154,
  22548. bottom: 51/1312
  22549. }
  22550. },
  22551. back: {
  22552. height: math.unit(8, "feet"),
  22553. weight: math.unit(350, "lb"),
  22554. name: "Back",
  22555. image: {
  22556. source: "./media/characters/gabira/back.svg",
  22557. extra: 1265/1163,
  22558. bottom: 46/1311
  22559. }
  22560. },
  22561. head: {
  22562. height: math.unit(2.85, "feet"),
  22563. name: "Head",
  22564. image: {
  22565. source: "./media/characters/gabira/head.svg"
  22566. }
  22567. },
  22568. },
  22569. [
  22570. {
  22571. name: "Normal",
  22572. height: math.unit(8, "feet"),
  22573. default: true
  22574. },
  22575. ]
  22576. ))
  22577. characterMakers.push(() => makeCharacter(
  22578. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22579. {
  22580. front: {
  22581. height: math.unit(5 + 3 / 12, "feet"),
  22582. weight: math.unit(137, "lb"),
  22583. name: "Front",
  22584. image: {
  22585. source: "./media/characters/sasha-katraine/front.svg",
  22586. extra: 1745/1694,
  22587. bottom: 37/1782
  22588. }
  22589. },
  22590. back: {
  22591. height: math.unit(5 + 3 / 12, "feet"),
  22592. weight: math.unit(137, "lb"),
  22593. name: "Back",
  22594. image: {
  22595. source: "./media/characters/sasha-katraine/back.svg",
  22596. extra: 1776/1699,
  22597. bottom: 26/1802
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Micro",
  22604. height: math.unit(5, "inches")
  22605. },
  22606. {
  22607. name: "Normal",
  22608. height: math.unit(5 + 3 / 12, "feet"),
  22609. default: true
  22610. },
  22611. ]
  22612. ))
  22613. characterMakers.push(() => makeCharacter(
  22614. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22615. {
  22616. side: {
  22617. height: math.unit(4, "inches"),
  22618. weight: math.unit(200, "grams"),
  22619. name: "Side",
  22620. image: {
  22621. source: "./media/characters/der/side.svg",
  22622. extra: 719 / 400,
  22623. bottom: 30.6 / 749.9187
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Micro",
  22630. height: math.unit(4, "inches"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22637. {
  22638. side: {
  22639. height: math.unit(30, "meters"),
  22640. weight: math.unit(700, "tonnes"),
  22641. name: "Side",
  22642. image: {
  22643. source: "./media/characters/fixerdragon/side.svg",
  22644. extra: (1293.0514 - 116.03) / 1106.86,
  22645. bottom: 116.03 / 1293.0514
  22646. }
  22647. },
  22648. },
  22649. [
  22650. {
  22651. name: "Planck",
  22652. height: math.unit(1.6e-35, "meters")
  22653. },
  22654. {
  22655. name: "Micro",
  22656. height: math.unit(0.4, "meters")
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(30, "meters"),
  22661. default: true
  22662. },
  22663. {
  22664. name: "Megamacro",
  22665. height: math.unit(1.2, "megameters")
  22666. },
  22667. {
  22668. name: "Teramacro",
  22669. height: math.unit(130, "terameters")
  22670. },
  22671. {
  22672. name: "Yottamacro",
  22673. height: math.unit(6200, "yottameters")
  22674. },
  22675. ]
  22676. ));
  22677. characterMakers.push(() => makeCharacter(
  22678. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22679. {
  22680. front: {
  22681. height: math.unit(8, "feet"),
  22682. weight: math.unit(250, "lb"),
  22683. name: "Front",
  22684. image: {
  22685. source: "./media/characters/kite/front.svg",
  22686. extra: 2796 / 2659,
  22687. bottom: 0.002
  22688. }
  22689. },
  22690. },
  22691. [
  22692. {
  22693. name: "Normal",
  22694. height: math.unit(8, "feet"),
  22695. default: true
  22696. },
  22697. {
  22698. name: "Macro",
  22699. height: math.unit(360, "feet")
  22700. },
  22701. {
  22702. name: "Megamacro",
  22703. height: math.unit(1500, "feet")
  22704. },
  22705. ]
  22706. ))
  22707. characterMakers.push(() => makeCharacter(
  22708. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22709. {
  22710. front: {
  22711. height: math.unit(5 + 11/12, "feet"),
  22712. weight: math.unit(170, "lb"),
  22713. name: "Front",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/front.svg",
  22716. extra: 1735/1585,
  22717. bottom: 96/1831
  22718. }
  22719. },
  22720. back: {
  22721. height: math.unit(5 + 11/12, "feet"),
  22722. weight: math.unit(170, "lb"),
  22723. name: "Back",
  22724. image: {
  22725. source: "./media/characters/poojawa-vynar/back.svg",
  22726. extra: 1749/1607,
  22727. bottom: 28/1777
  22728. }
  22729. },
  22730. male: {
  22731. height: math.unit(5 + 11/12, "feet"),
  22732. weight: math.unit(170, "lb"),
  22733. name: "Male",
  22734. image: {
  22735. source: "./media/characters/poojawa-vynar/male.svg",
  22736. extra: 1855/1713,
  22737. bottom: 63/1918
  22738. }
  22739. },
  22740. taur: {
  22741. height: math.unit(5 + 11/12, "feet"),
  22742. weight: math.unit(170, "lb"),
  22743. name: "Taur",
  22744. image: {
  22745. source: "./media/characters/poojawa-vynar/taur.svg",
  22746. extra: 1151/1059,
  22747. bottom: 356/1507
  22748. }
  22749. },
  22750. frontDressed: {
  22751. height: math.unit(5 + 11/12, "feet"),
  22752. weight: math.unit(170, "lb"),
  22753. name: "Front (Dressed)",
  22754. image: {
  22755. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22756. extra: 1735/1585,
  22757. bottom: 96/1831
  22758. }
  22759. },
  22760. backDressed: {
  22761. height: math.unit(5 + 11/12, "feet"),
  22762. weight: math.unit(170, "lb"),
  22763. name: "Back (Dressed)",
  22764. image: {
  22765. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22766. extra: 1749/1607,
  22767. bottom: 28/1777
  22768. }
  22769. },
  22770. maleDressed: {
  22771. height: math.unit(5 + 11/12, "feet"),
  22772. weight: math.unit(170, "lb"),
  22773. name: "Male (Dressed)",
  22774. image: {
  22775. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22776. extra: 1855/1713,
  22777. bottom: 63/1918
  22778. }
  22779. },
  22780. taurDressed: {
  22781. height: math.unit(5 + 11/12, "feet"),
  22782. weight: math.unit(170, "lb"),
  22783. name: "Taur (Dressed)",
  22784. image: {
  22785. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22786. extra: 1151/1059,
  22787. bottom: 356/1507
  22788. }
  22789. },
  22790. maw: {
  22791. height: math.unit(1.46, "feet"),
  22792. name: "Maw",
  22793. image: {
  22794. source: "./media/characters/poojawa-vynar/maw.svg"
  22795. }
  22796. },
  22797. head: {
  22798. height: math.unit(2.34, "feet"),
  22799. name: "Head",
  22800. image: {
  22801. source: "./media/characters/poojawa-vynar/head.svg"
  22802. }
  22803. },
  22804. paw: {
  22805. height: math.unit(1.61, "feet"),
  22806. name: "Paw",
  22807. image: {
  22808. source: "./media/characters/poojawa-vynar/paw.svg"
  22809. }
  22810. },
  22811. pawToering: {
  22812. height: math.unit(1.72, "feet"),
  22813. name: "Paw (Toering)",
  22814. image: {
  22815. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22816. }
  22817. },
  22818. toering: {
  22819. height: math.unit(2.9, "inches"),
  22820. name: "Toering",
  22821. image: {
  22822. source: "./media/characters/poojawa-vynar/toering.svg"
  22823. }
  22824. },
  22825. shaft: {
  22826. height: math.unit(0.625, "feet"),
  22827. name: "Shaft",
  22828. image: {
  22829. source: "./media/characters/poojawa-vynar/shaft.svg"
  22830. }
  22831. },
  22832. spade: {
  22833. height: math.unit(0.42, "feet"),
  22834. name: "Spade",
  22835. image: {
  22836. source: "./media/characters/poojawa-vynar/spade.svg"
  22837. }
  22838. },
  22839. },
  22840. [
  22841. {
  22842. name: "Shortstack",
  22843. height: math.unit(4, "feet")
  22844. },
  22845. {
  22846. name: "Normal",
  22847. height: math.unit(5 + 11 / 12, "feet"),
  22848. default: true
  22849. },
  22850. {
  22851. name: "Tauric",
  22852. height: math.unit(4, "meters")
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(293, "meters"),
  22861. weight: math.unit(70400, "tons"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/violette/front.svg",
  22865. extra: 1227 / 1180,
  22866. bottom: 0.005
  22867. }
  22868. },
  22869. back: {
  22870. height: math.unit(293, "meters"),
  22871. weight: math.unit(70400, "tons"),
  22872. name: "Back",
  22873. image: {
  22874. source: "./media/characters/violette/back.svg",
  22875. extra: 1227 / 1180,
  22876. bottom: 0.005
  22877. }
  22878. },
  22879. },
  22880. [
  22881. {
  22882. name: "Macro",
  22883. height: math.unit(293, "meters"),
  22884. default: true
  22885. },
  22886. ]
  22887. ))
  22888. characterMakers.push(() => makeCharacter(
  22889. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22890. {
  22891. front: {
  22892. height: math.unit(1050, "feet"),
  22893. weight: math.unit(200000, "tons"),
  22894. name: "Front",
  22895. image: {
  22896. source: "./media/characters/alessandra/front.svg",
  22897. extra: 960 / 912,
  22898. bottom: 0.06
  22899. }
  22900. },
  22901. },
  22902. [
  22903. {
  22904. name: "Macro",
  22905. height: math.unit(1050, "feet")
  22906. },
  22907. {
  22908. name: "Macro+",
  22909. height: math.unit(900, "meters"),
  22910. default: true
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(5, "feet"),
  22919. weight: math.unit(187, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/person/front.svg",
  22923. extra: 3087 / 2945,
  22924. bottom: 91 / 3181
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Micro",
  22931. height: math.unit(3, "inches")
  22932. },
  22933. {
  22934. name: "Normal",
  22935. height: math.unit(5, "feet"),
  22936. default: true
  22937. },
  22938. {
  22939. name: "Macro",
  22940. height: math.unit(90, "feet")
  22941. },
  22942. {
  22943. name: "Max Size",
  22944. height: math.unit(280, "feet")
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22950. {
  22951. front: {
  22952. height: math.unit(4.5, "meters"),
  22953. weight: math.unit(3200, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/ty/front.svg",
  22957. extra: 1038 / 960,
  22958. bottom: 31.156 / 1068
  22959. }
  22960. },
  22961. back: {
  22962. height: math.unit(4.5, "meters"),
  22963. weight: math.unit(3200, "lb"),
  22964. name: "Back",
  22965. image: {
  22966. source: "./media/characters/ty/back.svg",
  22967. extra: 1044 / 966,
  22968. bottom: 7.48 / 1049
  22969. }
  22970. },
  22971. },
  22972. [
  22973. {
  22974. name: "Normal",
  22975. height: math.unit(4.5, "meters"),
  22976. default: true
  22977. },
  22978. ]
  22979. ))
  22980. characterMakers.push(() => makeCharacter(
  22981. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22982. {
  22983. front: {
  22984. height: math.unit(5 + 4 / 12, "feet"),
  22985. weight: math.unit(115, "lb"),
  22986. name: "Front",
  22987. image: {
  22988. source: "./media/characters/rocky/front.svg",
  22989. extra: 1012 / 975,
  22990. bottom: 54 / 1066
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23004. {
  23005. upright: {
  23006. height: math.unit(6, "meters"),
  23007. weight: math.unit(4000, "kg"),
  23008. name: "Upright",
  23009. image: {
  23010. source: "./media/characters/ruin/upright.svg",
  23011. extra: 668 / 661,
  23012. bottom: 42 / 799.8396
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Normal",
  23019. height: math.unit(6, "meters"),
  23020. default: true
  23021. },
  23022. ]
  23023. ))
  23024. characterMakers.push(() => makeCharacter(
  23025. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23026. {
  23027. front: {
  23028. height: math.unit(5, "feet"),
  23029. weight: math.unit(106, "lb"),
  23030. name: "Front",
  23031. image: {
  23032. source: "./media/characters/robin/front.svg",
  23033. extra: 862 / 799,
  23034. bottom: 42.4 / 914.8856
  23035. }
  23036. },
  23037. },
  23038. [
  23039. {
  23040. name: "Normal",
  23041. height: math.unit(5, "feet"),
  23042. default: true
  23043. },
  23044. ]
  23045. ))
  23046. characterMakers.push(() => makeCharacter(
  23047. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23048. {
  23049. side: {
  23050. height: math.unit(3, "feet"),
  23051. weight: math.unit(225, "lb"),
  23052. name: "Side",
  23053. image: {
  23054. source: "./media/characters/saian/side.svg",
  23055. extra: 566 / 356,
  23056. bottom: 79.7 / 643
  23057. }
  23058. },
  23059. maw: {
  23060. height: math.unit(2.85, "feet"),
  23061. name: "Maw",
  23062. image: {
  23063. source: "./media/characters/saian/maw.svg"
  23064. }
  23065. },
  23066. },
  23067. [
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(3, "feet"),
  23071. default: true
  23072. },
  23073. ]
  23074. ))
  23075. characterMakers.push(() => makeCharacter(
  23076. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23077. {
  23078. side: {
  23079. height: math.unit(8, "feet"),
  23080. weight: math.unit(300, "lb"),
  23081. name: "Side",
  23082. image: {
  23083. source: "./media/characters/equus-silvermane/side.svg",
  23084. extra: 2176 / 2050,
  23085. bottom: 65.7 / 2245
  23086. }
  23087. },
  23088. front: {
  23089. height: math.unit(8, "feet"),
  23090. weight: math.unit(300, "lb"),
  23091. name: "Front",
  23092. image: {
  23093. source: "./media/characters/equus-silvermane/front.svg",
  23094. extra: 4633 / 4400,
  23095. bottom: 71.3 / 4706.915
  23096. }
  23097. },
  23098. sideStepping: {
  23099. height: math.unit(8, "feet"),
  23100. weight: math.unit(300, "lb"),
  23101. name: "Side (Stepping)",
  23102. image: {
  23103. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23104. extra: 1968 / 1860,
  23105. bottom: 16.4 / 1989
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(8, "feet")
  23113. },
  23114. {
  23115. name: "Minimacro",
  23116. height: math.unit(75, "feet"),
  23117. default: true
  23118. },
  23119. {
  23120. name: "Macro",
  23121. height: math.unit(150, "feet")
  23122. },
  23123. {
  23124. name: "Macro+",
  23125. height: math.unit(1000, "feet")
  23126. },
  23127. {
  23128. name: "Megamacro",
  23129. height: math.unit(1, "mile")
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23135. {
  23136. side: {
  23137. height: math.unit(20, "feet"),
  23138. weight: math.unit(30000, "kg"),
  23139. name: "Side",
  23140. image: {
  23141. source: "./media/characters/windar/side.svg",
  23142. extra: 1491 / 1248,
  23143. bottom: 82.56 / 1568
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Normal",
  23150. height: math.unit(20, "feet"),
  23151. default: true
  23152. },
  23153. ]
  23154. ))
  23155. characterMakers.push(() => makeCharacter(
  23156. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23157. {
  23158. side: {
  23159. height: math.unit(15.66, "feet"),
  23160. weight: math.unit(150, "lb"),
  23161. name: "Side",
  23162. image: {
  23163. source: "./media/characters/melody/side.svg",
  23164. extra: 1097 / 944,
  23165. bottom: 11.8 / 1109
  23166. }
  23167. },
  23168. sideOutfit: {
  23169. height: math.unit(15.66, "feet"),
  23170. weight: math.unit(150, "lb"),
  23171. name: "Side (Outfit)",
  23172. image: {
  23173. source: "./media/characters/melody/side-outfit.svg",
  23174. extra: 1097 / 944,
  23175. bottom: 11.8 / 1109
  23176. }
  23177. },
  23178. },
  23179. [
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(15.66, "feet"),
  23183. default: true
  23184. },
  23185. ]
  23186. ))
  23187. characterMakers.push(() => makeCharacter(
  23188. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23189. {
  23190. armoredFront: {
  23191. height: math.unit(8, "feet"),
  23192. weight: math.unit(325, "lb"),
  23193. name: "Front",
  23194. image: {
  23195. source: "./media/characters/windera/armored-front.svg",
  23196. extra: 1830/1598,
  23197. bottom: 151/1981
  23198. },
  23199. form: "armored",
  23200. default: true
  23201. },
  23202. macroFront: {
  23203. height: math.unit(70, "feet"),
  23204. weight: math.unit(315453, "lb"),
  23205. name: "Front",
  23206. image: {
  23207. source: "./media/characters/windera/macro-front.svg",
  23208. extra: 963/883,
  23209. bottom: 23/986
  23210. },
  23211. form: "macro",
  23212. default: true
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(8, "feet"),
  23219. default: true,
  23220. form: "armored"
  23221. },
  23222. {
  23223. name: "Normal",
  23224. height: math.unit(70, "feet"),
  23225. default: true,
  23226. form: "macro"
  23227. },
  23228. ],
  23229. {
  23230. "armored": {
  23231. name: "Armored",
  23232. default: true
  23233. },
  23234. "macro": {
  23235. name: "Macro",
  23236. },
  23237. }
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23241. {
  23242. front: {
  23243. height: math.unit(28.75, "feet"),
  23244. weight: math.unit(2000, "kg"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/sonear/front.svg",
  23248. extra: 1041.1 / 964.9,
  23249. bottom: 53.7 / 1096.6
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(28.75, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23263. {
  23264. side: {
  23265. height: math.unit(25.5, "feet"),
  23266. weight: math.unit(23000, "kg"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/kanara/side.svg"
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(25.5, "feet"),
  23277. default: true
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23283. {
  23284. side: {
  23285. height: math.unit(10, "feet"),
  23286. weight: math.unit(1000, "kg"),
  23287. name: "Side",
  23288. image: {
  23289. source: "./media/characters/ereus/side.svg",
  23290. extra: 1157 / 959,
  23291. bottom: 153 / 1312.5
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(10, "feet"),
  23299. default: true
  23300. },
  23301. ]
  23302. ))
  23303. characterMakers.push(() => makeCharacter(
  23304. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23305. {
  23306. side: {
  23307. height: math.unit(4.5, "feet"),
  23308. weight: math.unit(500, "lb"),
  23309. name: "Side",
  23310. image: {
  23311. source: "./media/characters/e-ter/side.svg",
  23312. extra: 1550 / 1248,
  23313. bottom: 146 / 1694
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(4.5, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23327. {
  23328. side: {
  23329. height: math.unit(9.7, "feet"),
  23330. weight: math.unit(4000, "kg"),
  23331. name: "Side",
  23332. image: {
  23333. source: "./media/characters/yamie/side.svg"
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(9.7, "feet"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(50, "feet"),
  23350. weight: math.unit(50000, "kg"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/anders/front.svg",
  23354. extra: 570 / 539,
  23355. bottom: 14.7 / 586.7
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Large",
  23362. height: math.unit(50, "feet")
  23363. },
  23364. {
  23365. name: "Macro",
  23366. height: math.unit(2000, "feet"),
  23367. default: true
  23368. },
  23369. {
  23370. name: "Megamacro",
  23371. height: math.unit(12, "miles")
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(7 + 2 / 12, "feet"),
  23380. weight: math.unit(300, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/reban/front.svg",
  23384. extra: 1287/1212,
  23385. bottom: 148/1435
  23386. }
  23387. },
  23388. head: {
  23389. height: math.unit(1.95, "feet"),
  23390. name: "Head",
  23391. image: {
  23392. source: "./media/characters/reban/head.svg"
  23393. }
  23394. },
  23395. maw: {
  23396. height: math.unit(0.95, "feet"),
  23397. name: "Maw",
  23398. image: {
  23399. source: "./media/characters/reban/maw.svg"
  23400. }
  23401. },
  23402. foot: {
  23403. height: math.unit(1.65, "feet"),
  23404. name: "Foot",
  23405. image: {
  23406. source: "./media/characters/reban/foot.svg"
  23407. }
  23408. },
  23409. dick: {
  23410. height: math.unit(7 / 5, "feet"),
  23411. name: "Dick",
  23412. image: {
  23413. source: "./media/characters/reban/dick.svg"
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Natural Height",
  23420. height: math.unit(7 + 2 / 12, "feet")
  23421. },
  23422. {
  23423. name: "Macro",
  23424. height: math.unit(500, "feet"),
  23425. default: true
  23426. },
  23427. {
  23428. name: "Canon Height",
  23429. height: math.unit(50, "AU")
  23430. },
  23431. ]
  23432. ))
  23433. characterMakers.push(() => makeCharacter(
  23434. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23435. {
  23436. front: {
  23437. height: math.unit(6, "feet"),
  23438. weight: math.unit(150, "lb"),
  23439. name: "Front",
  23440. image: {
  23441. source: "./media/characters/terrance-keayes/front.svg",
  23442. extra: 1.005,
  23443. bottom: 151 / 1615
  23444. }
  23445. },
  23446. side: {
  23447. height: math.unit(6, "feet"),
  23448. weight: math.unit(150, "lb"),
  23449. name: "Side",
  23450. image: {
  23451. source: "./media/characters/terrance-keayes/side.svg",
  23452. extra: 1.005,
  23453. bottom: 129.4 / 1544
  23454. }
  23455. },
  23456. back: {
  23457. height: math.unit(6, "feet"),
  23458. weight: math.unit(150, "lb"),
  23459. name: "Back",
  23460. image: {
  23461. source: "./media/characters/terrance-keayes/back.svg",
  23462. extra: 1.005,
  23463. bottom: 58.4 / 1557.3
  23464. }
  23465. },
  23466. dick: {
  23467. height: math.unit(6 * 0.208, "feet"),
  23468. name: "Dick",
  23469. image: {
  23470. source: "./media/characters/terrance-keayes/dick.svg"
  23471. }
  23472. },
  23473. },
  23474. [
  23475. {
  23476. name: "Canon Height",
  23477. height: math.unit(35, "miles"),
  23478. default: true
  23479. },
  23480. ]
  23481. ))
  23482. characterMakers.push(() => makeCharacter(
  23483. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23484. {
  23485. front: {
  23486. height: math.unit(6, "feet"),
  23487. weight: math.unit(150, "lb"),
  23488. name: "Front",
  23489. image: {
  23490. source: "./media/characters/ofelia/front.svg",
  23491. extra: 1130/1117,
  23492. bottom: 91/1221
  23493. }
  23494. },
  23495. back: {
  23496. height: math.unit(6, "feet"),
  23497. weight: math.unit(150, "lb"),
  23498. name: "Back",
  23499. image: {
  23500. source: "./media/characters/ofelia/back.svg",
  23501. extra: 1172/1159,
  23502. bottom: 28/1200
  23503. }
  23504. },
  23505. maw: {
  23506. height: math.unit(1, "feet"),
  23507. name: "Maw",
  23508. image: {
  23509. source: "./media/characters/ofelia/maw.svg"
  23510. }
  23511. },
  23512. foot: {
  23513. height: math.unit(1.949, "feet"),
  23514. name: "Foot",
  23515. image: {
  23516. source: "./media/characters/ofelia/foot.svg"
  23517. }
  23518. },
  23519. },
  23520. [
  23521. {
  23522. name: "Canon Height",
  23523. height: math.unit(2000, "miles"),
  23524. default: true
  23525. },
  23526. ]
  23527. ))
  23528. characterMakers.push(() => makeCharacter(
  23529. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23530. {
  23531. front: {
  23532. height: math.unit(6, "feet"),
  23533. weight: math.unit(150, "lb"),
  23534. name: "Front",
  23535. image: {
  23536. source: "./media/characters/samuel/front.svg",
  23537. extra: 265 / 258,
  23538. bottom: 2 / 266.1566
  23539. }
  23540. },
  23541. },
  23542. [
  23543. {
  23544. name: "Macro",
  23545. height: math.unit(100, "feet"),
  23546. default: true
  23547. },
  23548. {
  23549. name: "Full Size",
  23550. height: math.unit(1000, "miles")
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(6, "feet"),
  23559. weight: math.unit(300, "lb"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/beishir-kiel/front.svg",
  23563. extra: 569 / 547,
  23564. bottom: 41.9 / 609
  23565. }
  23566. },
  23567. maw: {
  23568. height: math.unit(6 * 0.202, "feet"),
  23569. name: "Maw",
  23570. image: {
  23571. source: "./media/characters/beishir-kiel/maw.svg"
  23572. }
  23573. },
  23574. },
  23575. [
  23576. {
  23577. name: "Macro",
  23578. height: math.unit(300, "feet"),
  23579. default: true
  23580. },
  23581. ]
  23582. ))
  23583. characterMakers.push(() => makeCharacter(
  23584. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23585. {
  23586. front: {
  23587. height: math.unit(5 + 7/12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front",
  23590. image: {
  23591. source: "./media/characters/logan-grey/front.svg",
  23592. extra: 1836/1738,
  23593. bottom: 108/1944
  23594. }
  23595. },
  23596. back: {
  23597. height: math.unit(5 + 7/12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Back",
  23600. image: {
  23601. source: "./media/characters/logan-grey/back.svg",
  23602. extra: 1880/1794,
  23603. bottom: 24/1904
  23604. }
  23605. },
  23606. frontSfw: {
  23607. height: math.unit(5 + 7/12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Front (SFW)",
  23610. image: {
  23611. source: "./media/characters/logan-grey/front-sfw.svg",
  23612. extra: 1836/1738,
  23613. bottom: 108/1944
  23614. }
  23615. },
  23616. backSfw: {
  23617. height: math.unit(5 + 7/12, "feet"),
  23618. weight: math.unit(120, "lb"),
  23619. name: "Back (SFW)",
  23620. image: {
  23621. source: "./media/characters/logan-grey/back-sfw.svg",
  23622. extra: 1880/1794,
  23623. bottom: 24/1904
  23624. }
  23625. },
  23626. hands: {
  23627. height: math.unit(0.84, "feet"),
  23628. name: "Hands",
  23629. image: {
  23630. source: "./media/characters/logan-grey/hands.svg"
  23631. }
  23632. },
  23633. paws: {
  23634. height: math.unit(0.72, "feet"),
  23635. name: "Paws",
  23636. image: {
  23637. source: "./media/characters/logan-grey/paws.svg"
  23638. }
  23639. },
  23640. cock: {
  23641. height: math.unit(1.45, "feet"),
  23642. name: "Cock",
  23643. image: {
  23644. source: "./media/characters/logan-grey/cock.svg"
  23645. }
  23646. },
  23647. cockAlt: {
  23648. height: math.unit(1.437, "feet"),
  23649. name: "Cock (alt)",
  23650. image: {
  23651. source: "./media/characters/logan-grey/cock-alt.svg"
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Normal",
  23658. height: math.unit(5 + 8 / 12, "feet")
  23659. },
  23660. {
  23661. name: "The 500 Foot Femboy",
  23662. height: math.unit(500, "feet"),
  23663. default: true
  23664. },
  23665. {
  23666. name: "Megmacro",
  23667. height: math.unit(20, "miles")
  23668. },
  23669. ]
  23670. ))
  23671. characterMakers.push(() => makeCharacter(
  23672. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23673. {
  23674. front: {
  23675. height: math.unit(8 + 2 / 12, "feet"),
  23676. weight: math.unit(275, "lb"),
  23677. name: "Front",
  23678. image: {
  23679. source: "./media/characters/draganta/front.svg",
  23680. extra: 1177 / 1135,
  23681. bottom: 33.46 / 1212.1
  23682. }
  23683. },
  23684. },
  23685. [
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(8 + 6 / 12, "feet"),
  23689. default: true
  23690. },
  23691. {
  23692. name: "Macro",
  23693. height: math.unit(150, "feet")
  23694. },
  23695. {
  23696. name: "Megamacro",
  23697. height: math.unit(1000, "miles")
  23698. },
  23699. ]
  23700. ))
  23701. characterMakers.push(() => makeCharacter(
  23702. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23703. {
  23704. front: {
  23705. height: math.unit(1.72, "m"),
  23706. weight: math.unit(80, "lb"),
  23707. name: "Front",
  23708. image: {
  23709. source: "./media/characters/voski/front.svg",
  23710. extra: 2076.22 / 2022.4,
  23711. bottom: 102.7 / 2177.3866
  23712. }
  23713. },
  23714. frontFlaccid: {
  23715. height: math.unit(1.72, "m"),
  23716. weight: math.unit(80, "lb"),
  23717. name: "Front (Flaccid)",
  23718. image: {
  23719. source: "./media/characters/voski/front-flaccid.svg",
  23720. extra: 2076.22 / 2022.4,
  23721. bottom: 102.7 / 2177.3866
  23722. }
  23723. },
  23724. frontErect: {
  23725. height: math.unit(1.72, "m"),
  23726. weight: math.unit(80, "lb"),
  23727. name: "Front (Erect)",
  23728. image: {
  23729. source: "./media/characters/voski/front-erect.svg",
  23730. extra: 2076.22 / 2022.4,
  23731. bottom: 102.7 / 2177.3866
  23732. }
  23733. },
  23734. back: {
  23735. height: math.unit(1.72, "m"),
  23736. weight: math.unit(80, "lb"),
  23737. name: "Back",
  23738. image: {
  23739. source: "./media/characters/voski/back.svg",
  23740. extra: 2104 / 2051,
  23741. bottom: 10.45 / 2113.63
  23742. }
  23743. },
  23744. },
  23745. [
  23746. {
  23747. name: "Normal",
  23748. height: math.unit(1.72, "m")
  23749. },
  23750. {
  23751. name: "Macro",
  23752. height: math.unit(55, "m"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Macro+",
  23757. height: math.unit(300, "m")
  23758. },
  23759. {
  23760. name: "Macro++",
  23761. height: math.unit(700, "m")
  23762. },
  23763. {
  23764. name: "Macro+++",
  23765. height: math.unit(4500, "m")
  23766. },
  23767. {
  23768. name: "Macro++++",
  23769. height: math.unit(45, "km")
  23770. },
  23771. {
  23772. name: "Macro+++++",
  23773. height: math.unit(1220, "km")
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(2.3, "m"),
  23782. weight: math.unit(304, "kg"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/icowom-lee/front.svg",
  23786. extra: 985 / 955,
  23787. bottom: 25.4 / 1012
  23788. }
  23789. },
  23790. fronttentacles: {
  23791. height: math.unit(2.3, "m"),
  23792. weight: math.unit(304, "kg"),
  23793. name: "Front-tentacles",
  23794. image: {
  23795. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23796. extra: 985 / 955,
  23797. bottom: 25.4 / 1012
  23798. }
  23799. },
  23800. back: {
  23801. height: math.unit(2.3, "m"),
  23802. weight: math.unit(304, "kg"),
  23803. name: "Back",
  23804. image: {
  23805. source: "./media/characters/icowom-lee/back.svg",
  23806. extra: 975 / 954,
  23807. bottom: 9.5 / 985
  23808. }
  23809. },
  23810. backtentacles: {
  23811. height: math.unit(2.3, "m"),
  23812. weight: math.unit(304, "kg"),
  23813. name: "Back-tentacles",
  23814. image: {
  23815. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23816. extra: 975 / 954,
  23817. bottom: 9.5 / 985
  23818. }
  23819. },
  23820. frontDressed: {
  23821. height: math.unit(2.3, "m"),
  23822. weight: math.unit(304, "kg"),
  23823. name: "Front (Dressed)",
  23824. image: {
  23825. source: "./media/characters/icowom-lee/front-dressed.svg",
  23826. extra: 3076 / 2933,
  23827. bottom: 51.4 / 3125.1889
  23828. }
  23829. },
  23830. rump: {
  23831. height: math.unit(0.776, "meters"),
  23832. name: "Rump",
  23833. image: {
  23834. source: "./media/characters/icowom-lee/rump.svg"
  23835. }
  23836. },
  23837. genitals: {
  23838. height: math.unit(0.78, "meters"),
  23839. name: "Genitals",
  23840. image: {
  23841. source: "./media/characters/icowom-lee/genitals.svg"
  23842. }
  23843. },
  23844. },
  23845. [
  23846. {
  23847. name: "Normal",
  23848. height: math.unit(2.3, "meters"),
  23849. default: true
  23850. },
  23851. {
  23852. name: "Macro",
  23853. height: math.unit(94, "meters"),
  23854. default: true
  23855. },
  23856. ]
  23857. ))
  23858. characterMakers.push(() => makeCharacter(
  23859. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23860. {
  23861. front: {
  23862. height: math.unit(22, "meters"),
  23863. weight: math.unit(21000, "kg"),
  23864. name: "Front",
  23865. image: {
  23866. source: "./media/characters/shock-diamond/front.svg",
  23867. extra: 2204 / 2053,
  23868. bottom: 65 / 2239.47
  23869. }
  23870. },
  23871. frontNude: {
  23872. height: math.unit(22, "meters"),
  23873. weight: math.unit(21000, "kg"),
  23874. name: "Front (Nude)",
  23875. image: {
  23876. source: "./media/characters/shock-diamond/front-nude.svg",
  23877. extra: 2514 / 2285,
  23878. bottom: 13 / 2527.56
  23879. }
  23880. },
  23881. },
  23882. [
  23883. {
  23884. name: "Normal",
  23885. height: math.unit(3, "meters")
  23886. },
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(22, "meters"),
  23890. default: true
  23891. },
  23892. ]
  23893. ))
  23894. characterMakers.push(() => makeCharacter(
  23895. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23896. {
  23897. front: {
  23898. height: math.unit(5 + 4 / 12, "feet"),
  23899. weight: math.unit(120, "lb"),
  23900. name: "Front",
  23901. image: {
  23902. source: "./media/characters/rory/front.svg",
  23903. extra: 1318/1241,
  23904. bottom: 42/1360
  23905. }
  23906. },
  23907. back: {
  23908. height: math.unit(5 + 4 / 12, "feet"),
  23909. weight: math.unit(120, "lb"),
  23910. name: "Back",
  23911. image: {
  23912. source: "./media/characters/rory/back.svg",
  23913. extra: 1318/1241,
  23914. bottom: 42/1360
  23915. }
  23916. },
  23917. butt: {
  23918. height: math.unit(1.74, "feet"),
  23919. name: "Butt",
  23920. image: {
  23921. source: "./media/characters/rory/butt.svg"
  23922. }
  23923. },
  23924. dick: {
  23925. height: math.unit(1.02, "feet"),
  23926. name: "Dick",
  23927. image: {
  23928. source: "./media/characters/rory/dick.svg"
  23929. }
  23930. },
  23931. paws: {
  23932. height: math.unit(1, "feet"),
  23933. name: "Paws",
  23934. image: {
  23935. source: "./media/characters/rory/paws.svg"
  23936. }
  23937. },
  23938. frontAlt: {
  23939. height: math.unit(5 + 4 / 12, "feet"),
  23940. weight: math.unit(120, "lb"),
  23941. name: "Front (Alt)",
  23942. image: {
  23943. source: "./media/characters/rory/front-alt.svg",
  23944. extra: 589 / 556,
  23945. bottom: 45.7 / 635.76
  23946. }
  23947. },
  23948. frontAltNude: {
  23949. height: math.unit(5 + 4 / 12, "feet"),
  23950. weight: math.unit(120, "lb"),
  23951. name: "Front (Alt, Nude)",
  23952. image: {
  23953. source: "./media/characters/rory/front-alt-nude.svg",
  23954. extra: 589 / 556,
  23955. bottom: 45.7 / 635.76
  23956. }
  23957. },
  23958. side: {
  23959. height: math.unit(5 + 4 / 12, "feet"),
  23960. weight: math.unit(120, "lb"),
  23961. name: "Side",
  23962. image: {
  23963. source: "./media/characters/rory/side.svg",
  23964. extra: 597 / 564,
  23965. bottom: 55 / 653
  23966. }
  23967. },
  23968. backAlt: {
  23969. height: math.unit(5 + 4 / 12, "feet"),
  23970. weight: math.unit(120, "lb"),
  23971. name: "Back (Alt)",
  23972. image: {
  23973. source: "./media/characters/rory/back-alt.svg",
  23974. extra: 620 / 585,
  23975. bottom: 8.86 / 630.43
  23976. }
  23977. },
  23978. dickAlt: {
  23979. height: math.unit(0.86, "feet"),
  23980. name: "Dick (Alt)",
  23981. image: {
  23982. source: "./media/characters/rory/dick-alt.svg"
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Normal",
  23989. height: math.unit(5 + 4 / 12, "feet"),
  23990. default: true
  23991. },
  23992. {
  23993. name: "Macro",
  23994. height: math.unit(100, "feet")
  23995. },
  23996. {
  23997. name: "Macro+",
  23998. height: math.unit(140, "feet")
  23999. },
  24000. {
  24001. name: "Macro++",
  24002. height: math.unit(300, "feet")
  24003. },
  24004. ]
  24005. ))
  24006. characterMakers.push(() => makeCharacter(
  24007. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24008. {
  24009. front: {
  24010. height: math.unit(5 + 9 / 12, "feet"),
  24011. weight: math.unit(190, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/sprisk/front.svg",
  24015. extra: 1225 / 1180,
  24016. bottom: 42.7 / 1266.4
  24017. }
  24018. },
  24019. frontNsfw: {
  24020. height: math.unit(5 + 9 / 12, "feet"),
  24021. weight: math.unit(190, "lb"),
  24022. name: "Front (NSFW)",
  24023. image: {
  24024. source: "./media/characters/sprisk/front-nsfw.svg",
  24025. extra: 1225 / 1180,
  24026. bottom: 42.7 / 1266.4
  24027. }
  24028. },
  24029. back: {
  24030. height: math.unit(5 + 9 / 12, "feet"),
  24031. weight: math.unit(190, "lb"),
  24032. name: "Back",
  24033. image: {
  24034. source: "./media/characters/sprisk/back.svg",
  24035. extra: 1247 / 1200,
  24036. bottom: 5.6 / 1253.04
  24037. }
  24038. },
  24039. },
  24040. [
  24041. {
  24042. name: "Tiny",
  24043. height: math.unit(2, "inches")
  24044. },
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(5 + 9 / 12, "feet"),
  24048. default: true
  24049. },
  24050. {
  24051. name: "Mini Macro",
  24052. height: math.unit(18, "feet")
  24053. },
  24054. {
  24055. name: "Macro",
  24056. height: math.unit(100, "feet")
  24057. },
  24058. {
  24059. name: "MACRO",
  24060. height: math.unit(50, "miles")
  24061. },
  24062. {
  24063. name: "M A C R O",
  24064. height: math.unit(300, "miles")
  24065. },
  24066. ]
  24067. ))
  24068. characterMakers.push(() => makeCharacter(
  24069. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24070. {
  24071. side: {
  24072. height: math.unit(15.6, "meters"),
  24073. weight: math.unit(700000, "kg"),
  24074. name: "Side",
  24075. image: {
  24076. source: "./media/characters/bunsen/side.svg",
  24077. extra: 1644 / 358
  24078. }
  24079. },
  24080. foot: {
  24081. height: math.unit(1.611 * 1644 / 358, "meter"),
  24082. name: "Foot",
  24083. image: {
  24084. source: "./media/characters/bunsen/foot.svg"
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Small",
  24091. height: math.unit(10, "feet")
  24092. },
  24093. {
  24094. name: "Normal",
  24095. height: math.unit(15.6, "meters"),
  24096. default: true
  24097. },
  24098. ]
  24099. ))
  24100. characterMakers.push(() => makeCharacter(
  24101. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24102. {
  24103. front: {
  24104. height: math.unit(4 + 11 / 12, "feet"),
  24105. weight: math.unit(140, "lb"),
  24106. name: "Front",
  24107. image: {
  24108. source: "./media/characters/sesh/front.svg",
  24109. extra: 3420 / 3231,
  24110. bottom: 72 / 3949.5
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Normal",
  24117. height: math.unit(4 + 11 / 12, "feet")
  24118. },
  24119. {
  24120. name: "Grown",
  24121. height: math.unit(15, "feet"),
  24122. default: true
  24123. },
  24124. {
  24125. name: "Macro",
  24126. height: math.unit(1500, "feet")
  24127. },
  24128. {
  24129. name: "Megamacro",
  24130. height: math.unit(30, "miles")
  24131. },
  24132. {
  24133. name: "Continental",
  24134. height: math.unit(3000, "miles")
  24135. },
  24136. {
  24137. name: "Gravity Mass",
  24138. height: math.unit(300000, "miles")
  24139. },
  24140. {
  24141. name: "Planet Buster",
  24142. height: math.unit(30000000, "miles")
  24143. },
  24144. {
  24145. name: "Big",
  24146. height: math.unit(3000000000, "miles")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24152. {
  24153. front: {
  24154. height: math.unit(9, "feet"),
  24155. weight: math.unit(350, "lb"),
  24156. name: "Front",
  24157. image: {
  24158. source: "./media/characters/pepper/front.svg",
  24159. extra: 1448 / 1312,
  24160. bottom: 9.4 / 1457.88
  24161. }
  24162. },
  24163. back: {
  24164. height: math.unit(9, "feet"),
  24165. weight: math.unit(350, "lb"),
  24166. name: "Back",
  24167. image: {
  24168. source: "./media/characters/pepper/back.svg",
  24169. extra: 1423 / 1300,
  24170. bottom: 4.6 / 1429
  24171. }
  24172. },
  24173. maw: {
  24174. height: math.unit(0.932, "feet"),
  24175. name: "Maw",
  24176. image: {
  24177. source: "./media/characters/pepper/maw.svg"
  24178. }
  24179. },
  24180. },
  24181. [
  24182. {
  24183. name: "Normal",
  24184. height: math.unit(9, "feet"),
  24185. default: true
  24186. },
  24187. ]
  24188. ))
  24189. characterMakers.push(() => makeCharacter(
  24190. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24191. {
  24192. front: {
  24193. height: math.unit(6, "feet"),
  24194. weight: math.unit(150, "lb"),
  24195. name: "Front",
  24196. image: {
  24197. source: "./media/characters/maelstrom/front.svg",
  24198. extra: 2100 / 1883,
  24199. bottom: 94 / 2196.7
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Less Kaiju",
  24206. height: math.unit(200, "feet")
  24207. },
  24208. {
  24209. name: "Kaiju",
  24210. height: math.unit(400, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Kaiju-er",
  24215. height: math.unit(600, "feet")
  24216. },
  24217. ]
  24218. ))
  24219. characterMakers.push(() => makeCharacter(
  24220. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24221. {
  24222. front: {
  24223. height: math.unit(6 + 5 / 12, "feet"),
  24224. weight: math.unit(180, "lb"),
  24225. name: "Front",
  24226. image: {
  24227. source: "./media/characters/lexir/front.svg",
  24228. extra: 180 / 172,
  24229. bottom: 12 / 192
  24230. }
  24231. },
  24232. back: {
  24233. height: math.unit(6 + 5 / 12, "feet"),
  24234. weight: math.unit(180, "lb"),
  24235. name: "Back",
  24236. image: {
  24237. source: "./media/characters/lexir/back.svg",
  24238. extra: 1273/1201,
  24239. bottom: 39/1312
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Very Smal",
  24246. height: math.unit(1, "nm")
  24247. },
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(6 + 5 / 12, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(1, "mile")
  24256. },
  24257. {
  24258. name: "Megamacro",
  24259. height: math.unit(50, "miles")
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(1.5, "meters"),
  24268. weight: math.unit(100, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/maksio/front.svg",
  24272. extra: 1549 / 1531,
  24273. bottom: 123.7 / 1674.5429
  24274. }
  24275. },
  24276. back: {
  24277. height: math.unit(1.5, "meters"),
  24278. weight: math.unit(100, "lb"),
  24279. name: "Back",
  24280. image: {
  24281. source: "./media/characters/maksio/back.svg",
  24282. extra: 1541 / 1509,
  24283. bottom: 97 / 1639
  24284. }
  24285. },
  24286. hand: {
  24287. height: math.unit(0.621, "feet"),
  24288. name: "Hand",
  24289. image: {
  24290. source: "./media/characters/maksio/hand.svg"
  24291. }
  24292. },
  24293. foot: {
  24294. height: math.unit(1.611, "feet"),
  24295. name: "Foot",
  24296. image: {
  24297. source: "./media/characters/maksio/foot.svg"
  24298. }
  24299. },
  24300. },
  24301. [
  24302. {
  24303. name: "Shrunken",
  24304. height: math.unit(10, "cm")
  24305. },
  24306. {
  24307. name: "Normal",
  24308. height: math.unit(150, "cm"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(100, "feet"),
  24318. name: "Front",
  24319. image: {
  24320. source: "./media/characters/erza-bear/front.svg",
  24321. extra: 2449 / 2390,
  24322. bottom: 46 / 2494
  24323. }
  24324. },
  24325. back: {
  24326. height: math.unit(100, "feet"),
  24327. name: "Back",
  24328. image: {
  24329. source: "./media/characters/erza-bear/back.svg",
  24330. extra: 2489 / 2430,
  24331. bottom: 85.4 / 2480
  24332. }
  24333. },
  24334. tail: {
  24335. height: math.unit(42, "feet"),
  24336. name: "Tail",
  24337. image: {
  24338. source: "./media/characters/erza-bear/tail.svg"
  24339. }
  24340. },
  24341. tongue: {
  24342. height: math.unit(8, "feet"),
  24343. name: "Tongue",
  24344. image: {
  24345. source: "./media/characters/erza-bear/tongue.svg"
  24346. }
  24347. },
  24348. dick: {
  24349. height: math.unit(10.5, "feet"),
  24350. name: "Dick",
  24351. image: {
  24352. source: "./media/characters/erza-bear/dick.svg"
  24353. }
  24354. },
  24355. dickVertical: {
  24356. height: math.unit(16.9, "feet"),
  24357. name: "Dick (Vertical)",
  24358. image: {
  24359. source: "./media/characters/erza-bear/dick-vertical.svg"
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Macro",
  24366. height: math.unit(100, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(172, "cm"),
  24376. weight: math.unit(73, "kg"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/violet-flor/front.svg",
  24380. extra: 1530 / 1442,
  24381. bottom: 61.9 / 1588.8
  24382. }
  24383. },
  24384. back: {
  24385. height: math.unit(180, "cm"),
  24386. weight: math.unit(73, "kg"),
  24387. name: "Back",
  24388. image: {
  24389. source: "./media/characters/violet-flor/back.svg",
  24390. extra: 1692 / 1630,
  24391. bottom: 20 / 1712
  24392. }
  24393. },
  24394. },
  24395. [
  24396. {
  24397. name: "Normal",
  24398. height: math.unit(172, "cm"),
  24399. default: true
  24400. },
  24401. ]
  24402. ))
  24403. characterMakers.push(() => makeCharacter(
  24404. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24405. {
  24406. front: {
  24407. height: math.unit(6, "feet"),
  24408. weight: math.unit(220, "lb"),
  24409. name: "Front",
  24410. image: {
  24411. source: "./media/characters/lynn-rhea/front.svg",
  24412. extra: 310 / 273
  24413. }
  24414. },
  24415. back: {
  24416. height: math.unit(6, "feet"),
  24417. weight: math.unit(220, "lb"),
  24418. name: "Back",
  24419. image: {
  24420. source: "./media/characters/lynn-rhea/back.svg",
  24421. extra: 310 / 273
  24422. }
  24423. },
  24424. dicks: {
  24425. height: math.unit(0.9, "feet"),
  24426. name: "Dicks",
  24427. image: {
  24428. source: "./media/characters/lynn-rhea/dicks.svg"
  24429. }
  24430. },
  24431. slit: {
  24432. height: math.unit(0.4, "feet"),
  24433. name: "Slit",
  24434. image: {
  24435. source: "./media/characters/lynn-rhea/slit.svg"
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Micro",
  24442. height: math.unit(1, "inch")
  24443. },
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(60, "feet"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Megamacro",
  24451. height: math.unit(2, "miles")
  24452. },
  24453. {
  24454. name: "Gigamacro",
  24455. height: math.unit(3, "earths")
  24456. },
  24457. {
  24458. name: "Galactic",
  24459. height: math.unit(0.8, "galaxies")
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24465. {
  24466. front: {
  24467. height: math.unit(1600, "feet"),
  24468. weight: math.unit(85758785169, "kg"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/valathos/front.svg",
  24472. extra: 1451 / 1339
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Macro",
  24479. height: math.unit(1600, "feet"),
  24480. default: true
  24481. },
  24482. ]
  24483. ))
  24484. characterMakers.push(() => makeCharacter(
  24485. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24486. {
  24487. front: {
  24488. height: math.unit(7 + 5 / 12, "feet"),
  24489. weight: math.unit(300, "lb"),
  24490. name: "Front",
  24491. image: {
  24492. source: "./media/characters/azula/front.svg",
  24493. extra: 3208 / 2880,
  24494. bottom: 80.2 / 3277
  24495. }
  24496. },
  24497. back: {
  24498. height: math.unit(7 + 5 / 12, "feet"),
  24499. weight: math.unit(300, "lb"),
  24500. name: "Back",
  24501. image: {
  24502. source: "./media/characters/azula/back.svg",
  24503. extra: 3169 / 2822,
  24504. bottom: 150.6 / 3321
  24505. }
  24506. },
  24507. },
  24508. [
  24509. {
  24510. name: "Normal",
  24511. height: math.unit(7 + 5 / 12, "feet"),
  24512. default: true
  24513. },
  24514. {
  24515. name: "Big",
  24516. height: math.unit(20, "feet")
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(5 + 1 / 12, "feet"),
  24525. weight: math.unit(110, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/rupert/front.svg",
  24529. extra: 1549 / 1495,
  24530. bottom: 54.2 / 1604.4
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(5 + 1 / 12, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24544. {
  24545. front: {
  24546. height: math.unit(8 + 4 / 12, "feet"),
  24547. weight: math.unit(350, "lb"),
  24548. name: "Front",
  24549. image: {
  24550. source: "./media/characters/sheera-castellar/front.svg",
  24551. extra: 1957 / 1894,
  24552. bottom: 26.97 / 1975.017
  24553. }
  24554. },
  24555. side: {
  24556. height: math.unit(8 + 4 / 12, "feet"),
  24557. weight: math.unit(350, "lb"),
  24558. name: "Side",
  24559. image: {
  24560. source: "./media/characters/sheera-castellar/side.svg",
  24561. extra: 1957 / 1894
  24562. }
  24563. },
  24564. back: {
  24565. height: math.unit(8 + 4 / 12, "feet"),
  24566. weight: math.unit(350, "lb"),
  24567. name: "Back",
  24568. image: {
  24569. source: "./media/characters/sheera-castellar/back.svg",
  24570. extra: 1957 / 1894
  24571. }
  24572. },
  24573. angled: {
  24574. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24575. weight: math.unit(350, "lb"),
  24576. name: "Angled",
  24577. image: {
  24578. source: "./media/characters/sheera-castellar/angled.svg",
  24579. extra: 1807 / 1707,
  24580. bottom: 68 / 1875
  24581. }
  24582. },
  24583. genitals: {
  24584. height: math.unit(2.2, "feet"),
  24585. name: "Genitals",
  24586. image: {
  24587. source: "./media/characters/sheera-castellar/genitals.svg"
  24588. }
  24589. },
  24590. taur: {
  24591. height: math.unit(10 + 6/12, "feet"),
  24592. name: "Taur",
  24593. image: {
  24594. source: "./media/characters/sheera-castellar/taur.svg",
  24595. extra: 2017/1909,
  24596. bottom: 185/2202
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(8 + 4 / 12, "feet")
  24604. },
  24605. {
  24606. name: "Macro",
  24607. height: math.unit(150, "feet"),
  24608. default: true
  24609. },
  24610. {
  24611. name: "Macro+",
  24612. height: math.unit(800, "feet")
  24613. },
  24614. ]
  24615. ))
  24616. characterMakers.push(() => makeCharacter(
  24617. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24618. {
  24619. front: {
  24620. height: math.unit(6, "feet"),
  24621. weight: math.unit(150, "lb"),
  24622. name: "Front",
  24623. image: {
  24624. source: "./media/characters/jaipur/front.svg",
  24625. extra: 3860 / 3731,
  24626. bottom: 287 / 4140
  24627. }
  24628. },
  24629. back: {
  24630. height: math.unit(6, "feet"),
  24631. weight: math.unit(150, "lb"),
  24632. name: "Back",
  24633. image: {
  24634. source: "./media/characters/jaipur/back.svg",
  24635. extra: 1637/1561,
  24636. bottom: 154/1791
  24637. }
  24638. },
  24639. },
  24640. [
  24641. {
  24642. name: "Normal",
  24643. height: math.unit(1.85, "meters"),
  24644. default: true
  24645. },
  24646. {
  24647. name: "Macro",
  24648. height: math.unit(150, "meters")
  24649. },
  24650. {
  24651. name: "Macro+",
  24652. height: math.unit(0.5, "miles")
  24653. },
  24654. {
  24655. name: "Macro++",
  24656. height: math.unit(2.5, "miles")
  24657. },
  24658. {
  24659. name: "Macro+++",
  24660. height: math.unit(12, "miles")
  24661. },
  24662. {
  24663. name: "Macro++++",
  24664. height: math.unit(120, "miles")
  24665. },
  24666. {
  24667. name: "Macro+++++",
  24668. height: math.unit(1200, "miles")
  24669. },
  24670. ]
  24671. ))
  24672. characterMakers.push(() => makeCharacter(
  24673. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24674. {
  24675. front: {
  24676. height: math.unit(6, "feet"),
  24677. weight: math.unit(150, "lb"),
  24678. name: "Front",
  24679. image: {
  24680. source: "./media/characters/sheila-wolf/front.svg",
  24681. extra: 1931 / 1808,
  24682. bottom: 29.5 / 1960
  24683. }
  24684. },
  24685. dick: {
  24686. height: math.unit(1.464, "feet"),
  24687. name: "Dick",
  24688. image: {
  24689. source: "./media/characters/sheila-wolf/dick.svg"
  24690. }
  24691. },
  24692. muzzle: {
  24693. height: math.unit(0.513, "feet"),
  24694. name: "Muzzle",
  24695. image: {
  24696. source: "./media/characters/sheila-wolf/muzzle.svg"
  24697. }
  24698. },
  24699. },
  24700. [
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(70, "feet"),
  24704. default: true
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(32, "meters"),
  24713. weight: math.unit(300000, "kg"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/almor/front.svg",
  24717. extra: 1408 / 1322,
  24718. bottom: 94.6 / 1506.5
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Macro",
  24725. height: math.unit(32, "meters"),
  24726. default: true
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(7, "feet"),
  24735. weight: math.unit(200, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/silver/front.svg",
  24739. extra: 472.1 / 450.5,
  24740. bottom: 26.5 / 499.424
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(7, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(800, "feet")
  24753. },
  24754. {
  24755. name: "Megamacro",
  24756. height: math.unit(250, "miles")
  24757. },
  24758. ]
  24759. ))
  24760. characterMakers.push(() => makeCharacter(
  24761. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24762. {
  24763. front: {
  24764. height: math.unit(6, "feet"),
  24765. weight: math.unit(150, "lb"),
  24766. name: "Front",
  24767. image: {
  24768. source: "./media/characters/pliskin/front.svg",
  24769. extra: 1469 / 1359,
  24770. bottom: 70 / 1540
  24771. }
  24772. },
  24773. },
  24774. [
  24775. {
  24776. name: "Micro",
  24777. height: math.unit(3, "inches")
  24778. },
  24779. {
  24780. name: "Normal",
  24781. height: math.unit(5 + 11 / 12, "feet"),
  24782. default: true
  24783. },
  24784. {
  24785. name: "Macro",
  24786. height: math.unit(120, "feet")
  24787. },
  24788. ]
  24789. ))
  24790. characterMakers.push(() => makeCharacter(
  24791. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24792. {
  24793. front: {
  24794. height: math.unit(6, "feet"),
  24795. weight: math.unit(150, "lb"),
  24796. name: "Front",
  24797. image: {
  24798. source: "./media/characters/sammy/front.svg",
  24799. extra: 1193 / 1089,
  24800. bottom: 30.5 / 1226
  24801. }
  24802. },
  24803. },
  24804. [
  24805. {
  24806. name: "Macro",
  24807. height: math.unit(1700, "feet"),
  24808. default: true
  24809. },
  24810. {
  24811. name: "Examacro",
  24812. height: math.unit(2.5e9, "lightyears")
  24813. },
  24814. ]
  24815. ))
  24816. characterMakers.push(() => makeCharacter(
  24817. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24818. {
  24819. front: {
  24820. height: math.unit(21, "meters"),
  24821. weight: math.unit(12, "tonnes"),
  24822. name: "Front",
  24823. image: {
  24824. source: "./media/characters/kuru/front.svg",
  24825. extra: 4301 / 3785,
  24826. bottom: 371.3 / 4691
  24827. }
  24828. },
  24829. },
  24830. [
  24831. {
  24832. name: "Macro",
  24833. height: math.unit(21, "meters"),
  24834. default: true
  24835. },
  24836. ]
  24837. ))
  24838. characterMakers.push(() => makeCharacter(
  24839. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24840. {
  24841. front: {
  24842. height: math.unit(23, "meters"),
  24843. weight: math.unit(12.2, "tonnes"),
  24844. name: "Front",
  24845. image: {
  24846. source: "./media/characters/rakka/front.svg",
  24847. extra: 4670 / 4169,
  24848. bottom: 301 / 4968.7
  24849. }
  24850. },
  24851. },
  24852. [
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(23, "meters"),
  24856. default: true
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24862. {
  24863. front: {
  24864. height: math.unit(6, "feet"),
  24865. weight: math.unit(150, "lb"),
  24866. name: "Front",
  24867. image: {
  24868. source: "./media/characters/rhys-feline/front.svg",
  24869. extra: 2488 / 2308,
  24870. bottom: 35.67 / 2519.19
  24871. }
  24872. },
  24873. },
  24874. [
  24875. {
  24876. name: "Really Small",
  24877. height: math.unit(1, "nm")
  24878. },
  24879. {
  24880. name: "Micro",
  24881. height: math.unit(4, "inches")
  24882. },
  24883. {
  24884. name: "Normal",
  24885. height: math.unit(4 + 10 / 12, "feet"),
  24886. default: true
  24887. },
  24888. {
  24889. name: "Macro",
  24890. height: math.unit(100, "feet")
  24891. },
  24892. {
  24893. name: "Megamacto",
  24894. height: math.unit(50, "miles")
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24900. {
  24901. side: {
  24902. height: math.unit(30, "feet"),
  24903. weight: math.unit(35000, "kg"),
  24904. name: "Side",
  24905. image: {
  24906. source: "./media/characters/alydar/side.svg",
  24907. extra: 234 / 222,
  24908. bottom: 6.5 / 241
  24909. }
  24910. },
  24911. front: {
  24912. height: math.unit(30, "feet"),
  24913. weight: math.unit(35000, "kg"),
  24914. name: "Front",
  24915. image: {
  24916. source: "./media/characters/alydar/front.svg",
  24917. extra: 223.37 / 210.2,
  24918. bottom: 22.3 / 246.76
  24919. }
  24920. },
  24921. top: {
  24922. height: math.unit(64.54, "feet"),
  24923. weight: math.unit(35000, "kg"),
  24924. name: "Top",
  24925. image: {
  24926. source: "./media/characters/alydar/top.svg"
  24927. }
  24928. },
  24929. anthro: {
  24930. height: math.unit(30, "feet"),
  24931. weight: math.unit(9000, "kg"),
  24932. name: "Anthro",
  24933. image: {
  24934. source: "./media/characters/alydar/anthro.svg",
  24935. extra: 432 / 421,
  24936. bottom: 7.18 / 440
  24937. }
  24938. },
  24939. maw: {
  24940. height: math.unit(11.693, "feet"),
  24941. name: "Maw",
  24942. image: {
  24943. source: "./media/characters/alydar/maw.svg"
  24944. }
  24945. },
  24946. head: {
  24947. height: math.unit(11.693, "feet"),
  24948. name: "Head",
  24949. image: {
  24950. source: "./media/characters/alydar/head.svg"
  24951. }
  24952. },
  24953. headAlt: {
  24954. height: math.unit(12.861, "feet"),
  24955. name: "Head (Alt)",
  24956. image: {
  24957. source: "./media/characters/alydar/head-alt.svg"
  24958. }
  24959. },
  24960. wing: {
  24961. height: math.unit(20.712, "feet"),
  24962. name: "Wing",
  24963. image: {
  24964. source: "./media/characters/alydar/wing.svg"
  24965. }
  24966. },
  24967. wingFeather: {
  24968. height: math.unit(9.662, "feet"),
  24969. name: "Wing Feather",
  24970. image: {
  24971. source: "./media/characters/alydar/wing-feather.svg"
  24972. }
  24973. },
  24974. countourFeather: {
  24975. height: math.unit(4.154, "feet"),
  24976. name: "Contour Feather",
  24977. image: {
  24978. source: "./media/characters/alydar/contour-feather.svg"
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Diplomatic",
  24985. height: math.unit(13, "feet"),
  24986. default: true
  24987. },
  24988. {
  24989. name: "Small",
  24990. height: math.unit(30, "feet")
  24991. },
  24992. {
  24993. name: "Normal",
  24994. height: math.unit(95, "feet"),
  24995. default: true
  24996. },
  24997. {
  24998. name: "Large",
  24999. height: math.unit(285, "feet")
  25000. },
  25001. {
  25002. name: "Incomprehensible",
  25003. height: math.unit(450, "megameters")
  25004. },
  25005. ]
  25006. ))
  25007. characterMakers.push(() => makeCharacter(
  25008. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25009. {
  25010. side: {
  25011. height: math.unit(11, "feet"),
  25012. weight: math.unit(1750, "kg"),
  25013. name: "Side",
  25014. image: {
  25015. source: "./media/characters/selicia/side.svg",
  25016. extra: 440 / 396,
  25017. bottom: 24.8 / 465.979
  25018. }
  25019. },
  25020. maw: {
  25021. height: math.unit(4.665, "feet"),
  25022. name: "Maw",
  25023. image: {
  25024. source: "./media/characters/selicia/maw.svg"
  25025. }
  25026. },
  25027. },
  25028. [
  25029. {
  25030. name: "Normal",
  25031. height: math.unit(11, "feet"),
  25032. default: true
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25038. {
  25039. side: {
  25040. height: math.unit(2 + 6 / 12, "feet"),
  25041. weight: math.unit(30, "lb"),
  25042. name: "Side",
  25043. image: {
  25044. source: "./media/characters/layla/side.svg",
  25045. extra: 244 / 188,
  25046. bottom: 18.2 / 262.1
  25047. }
  25048. },
  25049. back: {
  25050. height: math.unit(2 + 6 / 12, "feet"),
  25051. weight: math.unit(30, "lb"),
  25052. name: "Back",
  25053. image: {
  25054. source: "./media/characters/layla/back.svg",
  25055. extra: 308 / 241.5,
  25056. bottom: 8.9 / 316.8
  25057. }
  25058. },
  25059. cumming: {
  25060. height: math.unit(2 + 6 / 12, "feet"),
  25061. weight: math.unit(30, "lb"),
  25062. name: "Cumming",
  25063. image: {
  25064. source: "./media/characters/layla/cumming.svg",
  25065. extra: 342 / 279,
  25066. bottom: 595 / 938
  25067. }
  25068. },
  25069. dickFlaccid: {
  25070. height: math.unit(2.595, "feet"),
  25071. name: "Flaccid Genitals",
  25072. image: {
  25073. source: "./media/characters/layla/dick-flaccid.svg"
  25074. }
  25075. },
  25076. dickErect: {
  25077. height: math.unit(2.359, "feet"),
  25078. name: "Erect Genitals",
  25079. image: {
  25080. source: "./media/characters/layla/dick-erect.svg"
  25081. }
  25082. },
  25083. dragon: {
  25084. height: math.unit(40, "feet"),
  25085. name: "Dragon",
  25086. image: {
  25087. source: "./media/characters/layla/dragon.svg",
  25088. extra: 610/535,
  25089. bottom: 367/977
  25090. }
  25091. },
  25092. taur: {
  25093. height: math.unit(30, "feet"),
  25094. name: "Taur",
  25095. image: {
  25096. source: "./media/characters/layla/taur.svg",
  25097. extra: 1268/1199,
  25098. bottom: 112/1380
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Micro",
  25105. height: math.unit(1, "inch")
  25106. },
  25107. {
  25108. name: "Small",
  25109. height: math.unit(1, "foot")
  25110. },
  25111. {
  25112. name: "Normal",
  25113. height: math.unit(2 + 6 / 12, "feet"),
  25114. default: true
  25115. },
  25116. {
  25117. name: "Macro",
  25118. height: math.unit(200, "feet")
  25119. },
  25120. {
  25121. name: "Megamacro",
  25122. height: math.unit(1000, "miles")
  25123. },
  25124. {
  25125. name: "Planetary",
  25126. height: math.unit(8000, "miles")
  25127. },
  25128. {
  25129. name: "True Layla",
  25130. height: math.unit(200000 * 7, "multiverses")
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25136. {
  25137. back: {
  25138. height: math.unit(10.5, "feet"),
  25139. weight: math.unit(800, "lb"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/knox/back.svg",
  25143. extra: 1486 / 1089,
  25144. bottom: 107 / 1601.4
  25145. }
  25146. },
  25147. side: {
  25148. height: math.unit(10.5, "feet"),
  25149. weight: math.unit(800, "lb"),
  25150. name: "Side",
  25151. image: {
  25152. source: "./media/characters/knox/side.svg",
  25153. extra: 244 / 218,
  25154. bottom: 14 / 260
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Compact",
  25161. height: math.unit(10.5, "feet"),
  25162. default: true
  25163. },
  25164. {
  25165. name: "Dynamax",
  25166. height: math.unit(210, "feet")
  25167. },
  25168. {
  25169. name: "Full Macro",
  25170. height: math.unit(850, "feet")
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(28, "feet"),
  25179. weight: math.unit(10500, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/kayda/front.svg",
  25183. extra: 1536 / 1428,
  25184. bottom: 68.7 / 1603
  25185. }
  25186. },
  25187. back: {
  25188. height: math.unit(28, "feet"),
  25189. weight: math.unit(10500, "lb"),
  25190. name: "Back",
  25191. image: {
  25192. source: "./media/characters/kayda/back.svg",
  25193. extra: 1557 / 1464,
  25194. bottom: 39.5 / 1597.49
  25195. }
  25196. },
  25197. dick: {
  25198. height: math.unit(3.858, "feet"),
  25199. name: "Dick",
  25200. image: {
  25201. source: "./media/characters/kayda/dick.svg"
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Macro",
  25208. height: math.unit(28, "feet"),
  25209. default: true
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(10 + 11 / 12, "feet"),
  25218. weight: math.unit(1400, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/brian/front.svg",
  25222. extra: 737 / 692,
  25223. bottom: 55.4 / 785
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Normal",
  25230. height: math.unit(10 + 11 / 12, "feet"),
  25231. default: true
  25232. },
  25233. ]
  25234. ))
  25235. characterMakers.push(() => makeCharacter(
  25236. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25237. {
  25238. front: {
  25239. height: math.unit(5 + 8 / 12, "feet"),
  25240. weight: math.unit(140, "lb"),
  25241. name: "Front",
  25242. image: {
  25243. source: "./media/characters/khemri/front.svg",
  25244. extra: 4780 / 4059,
  25245. bottom: 80.1 / 4859.25
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Micro",
  25252. height: math.unit(6, "inches")
  25253. },
  25254. {
  25255. name: "Normal",
  25256. height: math.unit(5 + 8 / 12, "feet"),
  25257. default: true
  25258. },
  25259. ]
  25260. ))
  25261. characterMakers.push(() => makeCharacter(
  25262. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25263. {
  25264. front: {
  25265. height: math.unit(13, "feet"),
  25266. weight: math.unit(1700, "lb"),
  25267. name: "Front",
  25268. image: {
  25269. source: "./media/characters/felix-braveheart/front.svg",
  25270. extra: 1222 / 1157,
  25271. bottom: 53.2 / 1280
  25272. }
  25273. },
  25274. back: {
  25275. height: math.unit(13, "feet"),
  25276. weight: math.unit(1700, "lb"),
  25277. name: "Back",
  25278. image: {
  25279. source: "./media/characters/felix-braveheart/back.svg",
  25280. extra: 1277 / 1203,
  25281. bottom: 50.2 / 1327
  25282. }
  25283. },
  25284. feral: {
  25285. height: math.unit(6, "feet"),
  25286. weight: math.unit(400, "lb"),
  25287. name: "Feral",
  25288. image: {
  25289. source: "./media/characters/felix-braveheart/feral.svg",
  25290. extra: 682 / 625,
  25291. bottom: 6.9 / 688
  25292. }
  25293. },
  25294. },
  25295. [
  25296. {
  25297. name: "Normal",
  25298. height: math.unit(13, "feet"),
  25299. default: true
  25300. },
  25301. ]
  25302. ))
  25303. characterMakers.push(() => makeCharacter(
  25304. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25305. {
  25306. side: {
  25307. height: math.unit(5 + 11 / 12, "feet"),
  25308. weight: math.unit(1400, "lb"),
  25309. name: "Side",
  25310. image: {
  25311. source: "./media/characters/shadow-blade/side.svg",
  25312. extra: 1726 / 1267,
  25313. bottom: 58.4 / 1785
  25314. }
  25315. },
  25316. },
  25317. [
  25318. {
  25319. name: "Normal",
  25320. height: math.unit(5 + 11 / 12, "feet"),
  25321. default: true
  25322. },
  25323. ]
  25324. ))
  25325. characterMakers.push(() => makeCharacter(
  25326. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25327. {
  25328. front: {
  25329. height: math.unit(1 + 6 / 12, "feet"),
  25330. weight: math.unit(25, "lb"),
  25331. name: "Front",
  25332. image: {
  25333. source: "./media/characters/karla-halldor/front.svg",
  25334. extra: 1459 / 1383,
  25335. bottom: 12 / 1472
  25336. }
  25337. },
  25338. },
  25339. [
  25340. {
  25341. name: "Normal",
  25342. height: math.unit(1 + 6 / 12, "feet"),
  25343. default: true
  25344. },
  25345. ]
  25346. ))
  25347. characterMakers.push(() => makeCharacter(
  25348. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25349. {
  25350. front: {
  25351. height: math.unit(6 + 2 / 12, "feet"),
  25352. weight: math.unit(160, "lb"),
  25353. name: "Front",
  25354. image: {
  25355. source: "./media/characters/ariam/front.svg",
  25356. extra: 1073/976,
  25357. bottom: 52/1125
  25358. }
  25359. },
  25360. back: {
  25361. height: math.unit(6 + 2/12, "feet"),
  25362. weight: math.unit(160, "lb"),
  25363. name: "Back",
  25364. image: {
  25365. source: "./media/characters/ariam/back.svg",
  25366. extra: 1103/1023,
  25367. bottom: 9/1112
  25368. }
  25369. },
  25370. dressed: {
  25371. height: math.unit(6 + 2/12, "feet"),
  25372. weight: math.unit(160, "lb"),
  25373. name: "Dressed",
  25374. image: {
  25375. source: "./media/characters/ariam/dressed.svg",
  25376. extra: 1099/1009,
  25377. bottom: 25/1124
  25378. }
  25379. },
  25380. squatting: {
  25381. height: math.unit(4.1, "feet"),
  25382. weight: math.unit(160, "lb"),
  25383. name: "Squatting",
  25384. image: {
  25385. source: "./media/characters/ariam/squatting.svg",
  25386. extra: 2617 / 2112,
  25387. bottom: 61.2 / 2681,
  25388. }
  25389. },
  25390. },
  25391. [
  25392. {
  25393. name: "Normal",
  25394. height: math.unit(6 + 2 / 12, "feet"),
  25395. default: true
  25396. },
  25397. {
  25398. name: "Normal+",
  25399. height: math.unit(4, "meters")
  25400. },
  25401. {
  25402. name: "Macro",
  25403. height: math.unit(50, "meters")
  25404. },
  25405. {
  25406. name: "Macro+",
  25407. height: math.unit(100, "meters")
  25408. },
  25409. {
  25410. name: "Megamacro",
  25411. height: math.unit(20, "km")
  25412. },
  25413. {
  25414. name: "Caretaker",
  25415. height: math.unit(444, "megameters")
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(1.67, "meters"),
  25424. weight: math.unit(140, "lb"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25428. extra: 438 / 410,
  25429. bottom: 0.75 / 439
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Shrunken",
  25436. height: math.unit(7.6, "cm")
  25437. },
  25438. {
  25439. name: "Human Scale",
  25440. height: math.unit(1.67, "meters")
  25441. },
  25442. {
  25443. name: "Wolxi Scale",
  25444. height: math.unit(36.7, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(1.73, "meters"),
  25454. weight: math.unit(240, "lb"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/izue-two-mothers/front.svg",
  25458. extra: 469 / 437,
  25459. bottom: 1.24 / 470.6
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Shrunken",
  25466. height: math.unit(7.86, "cm")
  25467. },
  25468. {
  25469. name: "Human Scale",
  25470. height: math.unit(1.73, "meters")
  25471. },
  25472. {
  25473. name: "Wolxi Scale",
  25474. height: math.unit(38, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(1.55, "meters"),
  25484. weight: math.unit(120, "lb"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/teeku-love-shack/front.svg",
  25488. extra: 387 / 362,
  25489. bottom: 1.51 / 388
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Shrunken",
  25496. height: math.unit(7, "cm")
  25497. },
  25498. {
  25499. name: "Human Scale",
  25500. height: math.unit(1.55, "meters")
  25501. },
  25502. {
  25503. name: "Wolxi Scale",
  25504. height: math.unit(34.1, "meters"),
  25505. default: true
  25506. },
  25507. ]
  25508. ))
  25509. characterMakers.push(() => makeCharacter(
  25510. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25511. {
  25512. front: {
  25513. height: math.unit(1.83, "meters"),
  25514. weight: math.unit(135, "lb"),
  25515. name: "Front",
  25516. image: {
  25517. source: "./media/characters/dejma-the-red/front.svg",
  25518. extra: 480 / 458,
  25519. bottom: 1.8 / 482
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Shrunken",
  25526. height: math.unit(8.3, "cm")
  25527. },
  25528. {
  25529. name: "Human Scale",
  25530. height: math.unit(1.83, "meters")
  25531. },
  25532. {
  25533. name: "Wolxi Scale",
  25534. height: math.unit(40, "meters"),
  25535. default: true
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25541. {
  25542. front: {
  25543. height: math.unit(1.78, "meters"),
  25544. weight: math.unit(65, "kg"),
  25545. name: "Front",
  25546. image: {
  25547. source: "./media/characters/aki/front.svg",
  25548. extra: 452 / 415
  25549. }
  25550. },
  25551. frontNsfw: {
  25552. height: math.unit(1.78, "meters"),
  25553. weight: math.unit(65, "kg"),
  25554. name: "Front (NSFW)",
  25555. image: {
  25556. source: "./media/characters/aki/front-nsfw.svg",
  25557. extra: 452 / 415
  25558. }
  25559. },
  25560. back: {
  25561. height: math.unit(1.78, "meters"),
  25562. weight: math.unit(65, "kg"),
  25563. name: "Back",
  25564. image: {
  25565. source: "./media/characters/aki/back.svg",
  25566. extra: 452 / 415
  25567. }
  25568. },
  25569. rump: {
  25570. height: math.unit(2.05, "feet"),
  25571. name: "Rump",
  25572. image: {
  25573. source: "./media/characters/aki/rump.svg"
  25574. }
  25575. },
  25576. dick: {
  25577. height: math.unit(0.95, "feet"),
  25578. name: "Dick",
  25579. image: {
  25580. source: "./media/characters/aki/dick.svg"
  25581. }
  25582. },
  25583. },
  25584. [
  25585. {
  25586. name: "Micro",
  25587. height: math.unit(15, "cm")
  25588. },
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(178, "cm"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(214, "m")
  25597. },
  25598. {
  25599. name: "Macro+",
  25600. height: math.unit(534, "m")
  25601. },
  25602. ]
  25603. ))
  25604. characterMakers.push(() => makeCharacter(
  25605. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25606. {
  25607. front: {
  25608. height: math.unit(5 + 5 / 12, "feet"),
  25609. weight: math.unit(120, "lb"),
  25610. name: "Front",
  25611. image: {
  25612. source: "./media/characters/ari/front.svg",
  25613. extra: 1550/1471,
  25614. bottom: 39/1589
  25615. }
  25616. },
  25617. },
  25618. [
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(5 + 5 / 12, "feet")
  25622. },
  25623. {
  25624. name: "Macro",
  25625. height: math.unit(100, "feet"),
  25626. default: true
  25627. },
  25628. {
  25629. name: "Megamacro",
  25630. height: math.unit(100, "miles")
  25631. },
  25632. {
  25633. name: "Gigamacro",
  25634. height: math.unit(80000, "miles")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25640. {
  25641. side: {
  25642. height: math.unit(9, "feet"),
  25643. weight: math.unit(400, "kg"),
  25644. name: "Side",
  25645. image: {
  25646. source: "./media/characters/bolt/side.svg",
  25647. extra: 1126 / 896,
  25648. bottom: 60 / 1187.3,
  25649. }
  25650. },
  25651. },
  25652. [
  25653. {
  25654. name: "Micro",
  25655. height: math.unit(5, "inches")
  25656. },
  25657. {
  25658. name: "Normal",
  25659. height: math.unit(9, "feet"),
  25660. default: true
  25661. },
  25662. {
  25663. name: "Macro",
  25664. height: math.unit(700, "feet")
  25665. },
  25666. {
  25667. name: "Max Size",
  25668. height: math.unit(1.52e22, "yottameters")
  25669. },
  25670. ]
  25671. ))
  25672. characterMakers.push(() => makeCharacter(
  25673. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25674. {
  25675. front: {
  25676. height: math.unit(4.3, "meters"),
  25677. weight: math.unit(3, "tons"),
  25678. name: "Front",
  25679. image: {
  25680. source: "./media/characters/draekon-sylviar/front.svg",
  25681. extra: 2072/1512,
  25682. bottom: 74/2146
  25683. }
  25684. },
  25685. back: {
  25686. height: math.unit(4.3, "meters"),
  25687. weight: math.unit(3, "tons"),
  25688. name: "Back",
  25689. image: {
  25690. source: "./media/characters/draekon-sylviar/back.svg",
  25691. extra: 1639/1483,
  25692. bottom: 41/1680
  25693. }
  25694. },
  25695. feral: {
  25696. height: math.unit(1.15, "meters"),
  25697. weight: math.unit(3, "tons"),
  25698. name: "Feral",
  25699. image: {
  25700. source: "./media/characters/draekon-sylviar/feral.svg",
  25701. extra: 1033/395,
  25702. bottom: 130/1163
  25703. }
  25704. },
  25705. maw: {
  25706. height: math.unit(1.3, "meters"),
  25707. name: "Maw",
  25708. image: {
  25709. source: "./media/characters/draekon-sylviar/maw.svg"
  25710. }
  25711. },
  25712. mawSeparated: {
  25713. height: math.unit(1.53, "meters"),
  25714. name: "Separated Maw",
  25715. image: {
  25716. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25717. }
  25718. },
  25719. tail: {
  25720. height: math.unit(1.15, "meters"),
  25721. name: "Tail",
  25722. image: {
  25723. source: "./media/characters/draekon-sylviar/tail.svg"
  25724. }
  25725. },
  25726. tailDick: {
  25727. height: math.unit(1.15, "meters"),
  25728. name: "Tail (Dick)",
  25729. image: {
  25730. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25731. }
  25732. },
  25733. tailDickSeparated: {
  25734. height: math.unit(1.19, "meters"),
  25735. name: "Tail (Separated Dick)",
  25736. image: {
  25737. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25738. }
  25739. },
  25740. slit: {
  25741. height: math.unit(1, "meters"),
  25742. name: "Slit",
  25743. image: {
  25744. source: "./media/characters/draekon-sylviar/slit.svg"
  25745. }
  25746. },
  25747. dick: {
  25748. height: math.unit(1.15, "meters"),
  25749. name: "Dick",
  25750. image: {
  25751. source: "./media/characters/draekon-sylviar/dick.svg"
  25752. }
  25753. },
  25754. dickSeparated: {
  25755. height: math.unit(1.1, "meters"),
  25756. name: "Separated Dick",
  25757. image: {
  25758. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25759. }
  25760. },
  25761. sheath: {
  25762. height: math.unit(1.15, "meters"),
  25763. name: "Sheath",
  25764. image: {
  25765. source: "./media/characters/draekon-sylviar/sheath.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Small",
  25772. height: math.unit(4.53 / 2, "meters"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Normal",
  25777. height: math.unit(4.53, "meters"),
  25778. default: true
  25779. },
  25780. {
  25781. name: "Large",
  25782. height: math.unit(4.53 * 2, "meters"),
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(6 + 2 / 12, "feet"),
  25791. weight: math.unit(180, "lb"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/brawler/front.svg",
  25795. extra: 3301 / 3027,
  25796. bottom: 138 / 3439
  25797. }
  25798. },
  25799. },
  25800. [
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(6 + 2 / 12, "feet"),
  25804. default: true
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(11, "feet"),
  25813. weight: math.unit(1000, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/alex/front.svg",
  25817. bottom: 44.5 / 620
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Micro",
  25824. height: math.unit(5, "inches")
  25825. },
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(11, "feet"),
  25829. default: true
  25830. },
  25831. {
  25832. name: "Macro",
  25833. height: math.unit(9.5e9, "feet")
  25834. },
  25835. {
  25836. name: "Max Size",
  25837. height: math.unit(1.4e283, "yottameters")
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25843. {
  25844. female: {
  25845. height: math.unit(29.9, "m"),
  25846. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25847. name: "Female",
  25848. image: {
  25849. source: "./media/characters/zenari/female.svg",
  25850. extra: 3281.6 / 3217,
  25851. bottom: 72.2 / 3353
  25852. }
  25853. },
  25854. male: {
  25855. height: math.unit(27.7, "m"),
  25856. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25857. name: "Male",
  25858. image: {
  25859. source: "./media/characters/zenari/male.svg",
  25860. extra: 3008 / 2991,
  25861. bottom: 54.6 / 3069
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Macro",
  25868. height: math.unit(29.7, "meters"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25875. {
  25876. female: {
  25877. height: math.unit(23.8, "m"),
  25878. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25879. name: "Female",
  25880. image: {
  25881. source: "./media/characters/mactarian/female.svg",
  25882. extra: 2662 / 2569,
  25883. bottom: 73 / 2736
  25884. }
  25885. },
  25886. male: {
  25887. height: math.unit(23.8, "m"),
  25888. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25889. name: "Male",
  25890. image: {
  25891. source: "./media/characters/mactarian/male.svg",
  25892. extra: 2673 / 2600,
  25893. bottom: 76 / 2750
  25894. }
  25895. },
  25896. },
  25897. [
  25898. {
  25899. name: "Macro",
  25900. height: math.unit(23.8, "meters"),
  25901. default: true
  25902. },
  25903. ]
  25904. ))
  25905. characterMakers.push(() => makeCharacter(
  25906. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25907. {
  25908. female: {
  25909. height: math.unit(19.3, "m"),
  25910. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25911. name: "Female",
  25912. image: {
  25913. source: "./media/characters/umok/female.svg",
  25914. extra: 2186 / 2078,
  25915. bottom: 87 / 2277
  25916. }
  25917. },
  25918. male: {
  25919. height: math.unit(19.5, "m"),
  25920. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25921. name: "Male",
  25922. image: {
  25923. source: "./media/characters/umok/male.svg",
  25924. extra: 2233 / 2140,
  25925. bottom: 24.4 / 2258
  25926. }
  25927. },
  25928. },
  25929. [
  25930. {
  25931. name: "Macro",
  25932. height: math.unit(19.3, "meters"),
  25933. default: true
  25934. },
  25935. ]
  25936. ))
  25937. characterMakers.push(() => makeCharacter(
  25938. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25939. {
  25940. female: {
  25941. height: math.unit(26.15, "m"),
  25942. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25943. name: "Female",
  25944. image: {
  25945. source: "./media/characters/joraxian/female.svg",
  25946. extra: 2912 / 2824,
  25947. bottom: 36 / 2956
  25948. }
  25949. },
  25950. male: {
  25951. height: math.unit(25.4, "m"),
  25952. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25953. name: "Male",
  25954. image: {
  25955. source: "./media/characters/joraxian/male.svg",
  25956. extra: 2877 / 2721,
  25957. bottom: 82 / 2967
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Macro",
  25964. height: math.unit(26.15, "meters"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25971. {
  25972. female: {
  25973. height: math.unit(21.6, "m"),
  25974. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25975. name: "Female",
  25976. image: {
  25977. source: "./media/characters/sthara/female.svg",
  25978. extra: 2516 / 2347,
  25979. bottom: 21.5 / 2537
  25980. }
  25981. },
  25982. male: {
  25983. height: math.unit(24, "m"),
  25984. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25985. name: "Male",
  25986. image: {
  25987. source: "./media/characters/sthara/male.svg",
  25988. extra: 2732 / 2607,
  25989. bottom: 23 / 2732
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Macro",
  25996. height: math.unit(21.6, "meters"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26003. {
  26004. front: {
  26005. height: math.unit(6 + 4 / 12, "feet"),
  26006. weight: math.unit(175, "lb"),
  26007. name: "Front",
  26008. image: {
  26009. source: "./media/characters/luka-bryzant/front.svg",
  26010. extra: 311 / 289,
  26011. bottom: 4 / 315
  26012. }
  26013. },
  26014. back: {
  26015. height: math.unit(6 + 4 / 12, "feet"),
  26016. weight: math.unit(175, "lb"),
  26017. name: "Back",
  26018. image: {
  26019. source: "./media/characters/luka-bryzant/back.svg",
  26020. extra: 311 / 289,
  26021. bottom: 3.8 / 313.7
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Micro",
  26028. height: math.unit(10, "inches")
  26029. },
  26030. {
  26031. name: "Normal",
  26032. height: math.unit(6 + 4 / 12, "feet"),
  26033. default: true
  26034. },
  26035. {
  26036. name: "Large",
  26037. height: math.unit(12, "feet")
  26038. },
  26039. ]
  26040. ))
  26041. characterMakers.push(() => makeCharacter(
  26042. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26043. {
  26044. front: {
  26045. height: math.unit(5 + 7 / 12, "feet"),
  26046. weight: math.unit(185, "lb"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/aman-aquila/front.svg",
  26050. extra: 1013 / 976,
  26051. bottom: 45.6 / 1057
  26052. }
  26053. },
  26054. side: {
  26055. height: math.unit(5 + 7 / 12, "feet"),
  26056. weight: math.unit(185, "lb"),
  26057. name: "Side",
  26058. image: {
  26059. source: "./media/characters/aman-aquila/side.svg",
  26060. extra: 1054 / 1011,
  26061. bottom: 15 / 1070
  26062. }
  26063. },
  26064. back: {
  26065. height: math.unit(5 + 7 / 12, "feet"),
  26066. weight: math.unit(185, "lb"),
  26067. name: "Back",
  26068. image: {
  26069. source: "./media/characters/aman-aquila/back.svg",
  26070. extra: 1026 / 970,
  26071. bottom: 12 / 1039
  26072. }
  26073. },
  26074. head: {
  26075. height: math.unit(1.211, "feet"),
  26076. name: "Head",
  26077. image: {
  26078. source: "./media/characters/aman-aquila/head.svg",
  26079. }
  26080. },
  26081. },
  26082. [
  26083. {
  26084. name: "Minimicro",
  26085. height: math.unit(0.057, "inches")
  26086. },
  26087. {
  26088. name: "Micro",
  26089. height: math.unit(7, "inches")
  26090. },
  26091. {
  26092. name: "Mini",
  26093. height: math.unit(3 + 7 / 12, "feet")
  26094. },
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(5 + 7 / 12, "feet"),
  26098. default: true
  26099. },
  26100. {
  26101. name: "Macro",
  26102. height: math.unit(157 + 7 / 12, "feet")
  26103. },
  26104. {
  26105. name: "Megamacro",
  26106. height: math.unit(1557 + 7 / 12, "feet")
  26107. },
  26108. {
  26109. name: "Gigamacro",
  26110. height: math.unit(15557 + 7 / 12, "feet")
  26111. },
  26112. ]
  26113. ))
  26114. characterMakers.push(() => makeCharacter(
  26115. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26116. {
  26117. front: {
  26118. height: math.unit(3 + 2 / 12, "inches"),
  26119. weight: math.unit(0.3, "ounces"),
  26120. name: "Front",
  26121. image: {
  26122. source: "./media/characters/hiphae/front.svg",
  26123. extra: 1931 / 1683,
  26124. bottom: 24 / 1955
  26125. }
  26126. },
  26127. },
  26128. [
  26129. {
  26130. name: "Normal",
  26131. height: math.unit(3 + 1 / 2, "inches"),
  26132. default: true
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26138. {
  26139. front: {
  26140. height: math.unit(5 + 10 / 12, "feet"),
  26141. weight: math.unit(165, "lb"),
  26142. name: "Front",
  26143. image: {
  26144. source: "./media/characters/nicky/front.svg",
  26145. extra: 3144 / 2886,
  26146. bottom: 45.6 / 3192
  26147. }
  26148. },
  26149. back: {
  26150. height: math.unit(5 + 10 / 12, "feet"),
  26151. weight: math.unit(165, "lb"),
  26152. name: "Back",
  26153. image: {
  26154. source: "./media/characters/nicky/back.svg",
  26155. extra: 3055 / 2804,
  26156. bottom: 28.4 / 3087
  26157. }
  26158. },
  26159. frontclothed: {
  26160. height: math.unit(5 + 10 / 12, "feet"),
  26161. weight: math.unit(165, "lb"),
  26162. name: "Front-clothed",
  26163. image: {
  26164. source: "./media/characters/nicky/front-clothed.svg",
  26165. extra: 3184.9 / 2926.9,
  26166. bottom: 86.5 / 3239.9
  26167. }
  26168. },
  26169. foot: {
  26170. height: math.unit(1.16, "feet"),
  26171. name: "Foot",
  26172. image: {
  26173. source: "./media/characters/nicky/foot.svg"
  26174. }
  26175. },
  26176. feet: {
  26177. height: math.unit(1.34, "feet"),
  26178. name: "Feet",
  26179. image: {
  26180. source: "./media/characters/nicky/feet.svg"
  26181. }
  26182. },
  26183. maw: {
  26184. height: math.unit(0.9, "feet"),
  26185. name: "Maw",
  26186. image: {
  26187. source: "./media/characters/nicky/maw.svg"
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(5 + 10 / 12, "feet"),
  26195. default: true
  26196. },
  26197. {
  26198. name: "Macro",
  26199. height: math.unit(60, "feet")
  26200. },
  26201. {
  26202. name: "Megamacro",
  26203. height: math.unit(1, "mile")
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26209. {
  26210. side: {
  26211. height: math.unit(10, "feet"),
  26212. weight: math.unit(600, "lb"),
  26213. name: "Side",
  26214. image: {
  26215. source: "./media/characters/blair/side.svg",
  26216. bottom: 16.6 / 475,
  26217. extra: 458 / 431
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(8, "inches")
  26225. },
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(10, "feet"),
  26229. default: true
  26230. },
  26231. {
  26232. name: "Macro",
  26233. height: math.unit(180, "feet")
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26239. {
  26240. front: {
  26241. height: math.unit(5 + 4 / 12, "feet"),
  26242. weight: math.unit(125, "lb"),
  26243. name: "Front",
  26244. image: {
  26245. source: "./media/characters/fisher/front.svg",
  26246. extra: 444 / 390,
  26247. bottom: 2 / 444.8
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Micro",
  26254. height: math.unit(4, "inches")
  26255. },
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(5 + 4 / 12, "feet"),
  26259. default: true
  26260. },
  26261. {
  26262. name: "Macro",
  26263. height: math.unit(100, "feet")
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(6.71, "feet"),
  26272. weight: math.unit(200, "lb"),
  26273. preyCapacity: math.unit(1000000, "people"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/gliss/front.svg",
  26277. extra: 2347 / 2231,
  26278. bottom: 113 / 2462
  26279. }
  26280. },
  26281. hammerspaceSize: {
  26282. height: math.unit(6.71 * 717, "feet"),
  26283. weight: math.unit(200, "lb"),
  26284. preyCapacity: math.unit(1000000, "people"),
  26285. name: "Hammerspace Size",
  26286. image: {
  26287. source: "./media/characters/gliss/front.svg",
  26288. extra: 2347 / 2231,
  26289. bottom: 113 / 2462
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Normal",
  26296. height: math.unit(6.71, "feet"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26303. {
  26304. side: {
  26305. height: math.unit(1.44, "m"),
  26306. weight: math.unit(80, "kg"),
  26307. name: "Side",
  26308. image: {
  26309. source: "./media/characters/dune-anderson/side.svg",
  26310. bottom: 49 / 1426
  26311. }
  26312. },
  26313. },
  26314. [
  26315. {
  26316. name: "Wolf-sized",
  26317. height: math.unit(1.44, "meters")
  26318. },
  26319. {
  26320. name: "Normal",
  26321. height: math.unit(5.05, "meters"),
  26322. default: true
  26323. },
  26324. {
  26325. name: "Big",
  26326. height: math.unit(14.4, "meters")
  26327. },
  26328. {
  26329. name: "Huge",
  26330. height: math.unit(144, "meters")
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(7, "feet"),
  26339. weight: math.unit(425, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/hind/front.svg",
  26343. extra: 2091 / 1860,
  26344. bottom: 129 / 2220
  26345. }
  26346. },
  26347. back: {
  26348. height: math.unit(7, "feet"),
  26349. weight: math.unit(425, "lb"),
  26350. name: "Back",
  26351. image: {
  26352. source: "./media/characters/hind/back.svg",
  26353. extra: 2091 / 1860,
  26354. bottom: 24.6 / 2309
  26355. }
  26356. },
  26357. tail: {
  26358. height: math.unit(2.8, "feet"),
  26359. name: "Tail",
  26360. image: {
  26361. source: "./media/characters/hind/tail.svg"
  26362. }
  26363. },
  26364. head: {
  26365. height: math.unit(2.55, "feet"),
  26366. name: "Head",
  26367. image: {
  26368. source: "./media/characters/hind/head.svg"
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "XS",
  26375. height: math.unit(0.7, "feet")
  26376. },
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(7, "feet"),
  26380. default: true
  26381. },
  26382. {
  26383. name: "XL",
  26384. height: math.unit(70, "feet")
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(2.1, "meters"),
  26393. weight: math.unit(150, "lb"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/tharquench-sizestealer/front.svg",
  26397. extra: 1605/1470,
  26398. bottom: 36/1641
  26399. }
  26400. },
  26401. frontAlt: {
  26402. height: math.unit(2.1, "meters"),
  26403. weight: math.unit(150, "lb"),
  26404. name: "Front (Alt)",
  26405. image: {
  26406. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26407. extra: 2318 / 2063,
  26408. bottom: 93.4 / 2410
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Nano",
  26415. height: math.unit(1, "mm")
  26416. },
  26417. {
  26418. name: "Micro",
  26419. height: math.unit(1, "cm")
  26420. },
  26421. {
  26422. name: "Normal",
  26423. height: math.unit(2.1, "meters"),
  26424. default: true
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(7 + 5 / 12, "feet"),
  26433. weight: math.unit(357, "lb"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/solex-draconov/front.svg",
  26437. extra: 1993 / 1865,
  26438. bottom: 117 / 2111
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Natural Height",
  26445. height: math.unit(7 + 5 / 12, "feet"),
  26446. default: true
  26447. },
  26448. {
  26449. name: "Macro",
  26450. height: math.unit(350, "feet")
  26451. },
  26452. {
  26453. name: "Macro+",
  26454. height: math.unit(1000, "feet")
  26455. },
  26456. {
  26457. name: "Megamacro",
  26458. height: math.unit(20, "km")
  26459. },
  26460. {
  26461. name: "Megamacro+",
  26462. height: math.unit(1000, "km")
  26463. },
  26464. {
  26465. name: "Gigamacro",
  26466. height: math.unit(2.5, "Gm")
  26467. },
  26468. {
  26469. name: "Teramacro",
  26470. height: math.unit(15, "Tm")
  26471. },
  26472. {
  26473. name: "Galactic",
  26474. height: math.unit(30, "Zm")
  26475. },
  26476. {
  26477. name: "Universal",
  26478. height: math.unit(21000, "Ym")
  26479. },
  26480. {
  26481. name: "Omniversal",
  26482. height: math.unit(9.861e50, "Ym")
  26483. },
  26484. {
  26485. name: "Existential",
  26486. height: math.unit(1e300, "meters")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26492. {
  26493. side: {
  26494. height: math.unit(25, "feet"),
  26495. weight: math.unit(90000, "lb"),
  26496. name: "Side",
  26497. image: {
  26498. source: "./media/characters/mandarax/side.svg",
  26499. extra: 614 / 332,
  26500. bottom: 55 / 630
  26501. }
  26502. },
  26503. lounging: {
  26504. height: math.unit(15.4, "feet"),
  26505. weight: math.unit(90000, "lb"),
  26506. name: "Lounging",
  26507. image: {
  26508. source: "./media/characters/mandarax/lounging.svg",
  26509. extra: 817/609,
  26510. bottom: 685/1502
  26511. }
  26512. },
  26513. head: {
  26514. height: math.unit(11.4, "feet"),
  26515. name: "Head",
  26516. image: {
  26517. source: "./media/characters/mandarax/head.svg"
  26518. }
  26519. },
  26520. belly: {
  26521. height: math.unit(33, "feet"),
  26522. name: "Belly",
  26523. preyCapacity: math.unit(500, "people"),
  26524. image: {
  26525. source: "./media/characters/mandarax/belly.svg"
  26526. }
  26527. },
  26528. dick: {
  26529. height: math.unit(8.46, "feet"),
  26530. name: "Dick",
  26531. image: {
  26532. source: "./media/characters/mandarax/dick.svg"
  26533. }
  26534. },
  26535. top: {
  26536. height: math.unit(28, "meters"),
  26537. name: "Top",
  26538. image: {
  26539. source: "./media/characters/mandarax/top.svg"
  26540. }
  26541. },
  26542. },
  26543. [
  26544. {
  26545. name: "Normal",
  26546. height: math.unit(25, "feet"),
  26547. default: true
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(5, "feet"),
  26556. weight: math.unit(90, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/pixil/front.svg",
  26560. extra: 2000 / 1618,
  26561. bottom: 12.3 / 2011
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(5, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Megamacro",
  26573. height: math.unit(10, "miles"),
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(7 + 2 / 12, "feet"),
  26582. weight: math.unit(200, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/angel/front.svg",
  26586. extra: 1830 / 1737,
  26587. bottom: 22.6 / 1854,
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(7 + 2 / 12, "feet"),
  26595. default: true
  26596. },
  26597. {
  26598. name: "Macro",
  26599. height: math.unit(1000, "feet")
  26600. },
  26601. {
  26602. name: "Megamacro",
  26603. height: math.unit(2, "miles")
  26604. },
  26605. {
  26606. name: "Gigamacro",
  26607. height: math.unit(20, "earths")
  26608. },
  26609. ]
  26610. ))
  26611. characterMakers.push(() => makeCharacter(
  26612. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26613. {
  26614. front: {
  26615. height: math.unit(5, "feet"),
  26616. weight: math.unit(180, "lb"),
  26617. name: "Front",
  26618. image: {
  26619. source: "./media/characters/mekana/front.svg",
  26620. extra: 1671 / 1605,
  26621. bottom: 3.5 / 1691
  26622. }
  26623. },
  26624. side: {
  26625. height: math.unit(5, "feet"),
  26626. weight: math.unit(180, "lb"),
  26627. name: "Side",
  26628. image: {
  26629. source: "./media/characters/mekana/side.svg",
  26630. extra: 1671 / 1605,
  26631. bottom: 3.5 / 1691
  26632. }
  26633. },
  26634. back: {
  26635. height: math.unit(5, "feet"),
  26636. weight: math.unit(180, "lb"),
  26637. name: "Back",
  26638. image: {
  26639. source: "./media/characters/mekana/back.svg",
  26640. extra: 1671 / 1605,
  26641. bottom: 3.5 / 1691
  26642. }
  26643. },
  26644. },
  26645. [
  26646. {
  26647. name: "Normal",
  26648. height: math.unit(5, "feet"),
  26649. default: true
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(4 + 6 / 12, "feet"),
  26658. weight: math.unit(80, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/pixie/front.svg",
  26662. extra: 1924 / 1825,
  26663. bottom: 22.4 / 1946
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(4 + 6 / 12, "feet"),
  26671. default: true
  26672. },
  26673. {
  26674. name: "Macro",
  26675. height: math.unit(40, "feet")
  26676. },
  26677. ]
  26678. ))
  26679. characterMakers.push(() => makeCharacter(
  26680. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26681. {
  26682. front: {
  26683. height: math.unit(2.1, "meters"),
  26684. weight: math.unit(200, "lb"),
  26685. name: "Front",
  26686. image: {
  26687. source: "./media/characters/the-lascivious/front.svg",
  26688. extra: 1 / 0.893,
  26689. bottom: 3.5 / 573.7
  26690. }
  26691. },
  26692. },
  26693. [
  26694. {
  26695. name: "Human Scale",
  26696. height: math.unit(2.1, "meters")
  26697. },
  26698. {
  26699. name: "Wolxi Scale",
  26700. height: math.unit(46.2, "m"),
  26701. default: true
  26702. },
  26703. {
  26704. name: "Boinker of Buildings",
  26705. height: math.unit(10, "km")
  26706. },
  26707. {
  26708. name: "Shagger of Skyscrapers",
  26709. height: math.unit(40, "km")
  26710. },
  26711. {
  26712. name: "Banger of Boroughs",
  26713. height: math.unit(4000, "km")
  26714. },
  26715. {
  26716. name: "Screwer of States",
  26717. height: math.unit(100000, "km")
  26718. },
  26719. {
  26720. name: "Pounder of Planets",
  26721. height: math.unit(2000000, "km")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(6, "feet"),
  26730. weight: math.unit(150, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/aj/front.svg",
  26734. extra: 2039 / 1562,
  26735. bottom: 40 / 2079
  26736. }
  26737. },
  26738. },
  26739. [
  26740. {
  26741. name: "Normal",
  26742. height: math.unit(11 + 6 / 12, "feet"),
  26743. default: true
  26744. },
  26745. {
  26746. name: "Megamacro",
  26747. height: math.unit(60, "megameters")
  26748. },
  26749. ]
  26750. ))
  26751. characterMakers.push(() => makeCharacter(
  26752. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26753. {
  26754. side: {
  26755. height: math.unit(31 + 8 / 12, "feet"),
  26756. weight: math.unit(75000, "kg"),
  26757. name: "Side",
  26758. image: {
  26759. source: "./media/characters/koros/side.svg",
  26760. extra: 1442 / 1297,
  26761. bottom: 122.7 / 1562
  26762. }
  26763. },
  26764. dicksKingsCrown: {
  26765. height: math.unit(6, "feet"),
  26766. name: "Dicks (King's Crown)",
  26767. image: {
  26768. source: "./media/characters/koros/dicks-kings-crown.svg"
  26769. }
  26770. },
  26771. dicksTailSet: {
  26772. height: math.unit(3, "feet"),
  26773. name: "Dicks (Tail Set)",
  26774. image: {
  26775. source: "./media/characters/koros/dicks-tail-set.svg"
  26776. }
  26777. },
  26778. dickCumming: {
  26779. height: math.unit(7.98, "feet"),
  26780. name: "Dick (Cumming)",
  26781. image: {
  26782. source: "./media/characters/koros/dick-cumming.svg"
  26783. }
  26784. },
  26785. dicksBack: {
  26786. height: math.unit(5.9, "feet"),
  26787. name: "Dicks (Back)",
  26788. image: {
  26789. source: "./media/characters/koros/dicks-back.svg"
  26790. }
  26791. },
  26792. dicksFront: {
  26793. height: math.unit(3.72, "feet"),
  26794. name: "Dicks (Front)",
  26795. image: {
  26796. source: "./media/characters/koros/dicks-front.svg"
  26797. }
  26798. },
  26799. dicksPeeking: {
  26800. height: math.unit(3.0, "feet"),
  26801. name: "Dicks (Peeking)",
  26802. image: {
  26803. source: "./media/characters/koros/dicks-peeking.svg"
  26804. }
  26805. },
  26806. eye: {
  26807. height: math.unit(1.7, "feet"),
  26808. name: "Eye",
  26809. image: {
  26810. source: "./media/characters/koros/eye.svg"
  26811. }
  26812. },
  26813. headFront: {
  26814. height: math.unit(11.69, "feet"),
  26815. name: "Head (Front)",
  26816. image: {
  26817. source: "./media/characters/koros/head-front.svg"
  26818. }
  26819. },
  26820. headSide: {
  26821. height: math.unit(14, "feet"),
  26822. name: "Head (Side)",
  26823. image: {
  26824. source: "./media/characters/koros/head-side.svg"
  26825. }
  26826. },
  26827. leg: {
  26828. height: math.unit(17, "feet"),
  26829. name: "Leg",
  26830. image: {
  26831. source: "./media/characters/koros/leg.svg"
  26832. }
  26833. },
  26834. mawSide: {
  26835. height: math.unit(12.8, "feet"),
  26836. name: "Maw (Side)",
  26837. image: {
  26838. source: "./media/characters/koros/maw-side.svg"
  26839. }
  26840. },
  26841. mawSpitting: {
  26842. height: math.unit(17, "feet"),
  26843. name: "Maw (Spitting)",
  26844. image: {
  26845. source: "./media/characters/koros/maw-spitting.svg"
  26846. }
  26847. },
  26848. slit: {
  26849. height: math.unit(2.8, "feet"),
  26850. name: "Slit",
  26851. image: {
  26852. source: "./media/characters/koros/slit.svg"
  26853. }
  26854. },
  26855. stomach: {
  26856. height: math.unit(6.8, "feet"),
  26857. preyCapacity: math.unit(20, "people"),
  26858. name: "Stomach",
  26859. image: {
  26860. source: "./media/characters/koros/stomach.svg"
  26861. }
  26862. },
  26863. wingspanBottom: {
  26864. height: math.unit(114, "feet"),
  26865. name: "Wingspan (Bottom)",
  26866. image: {
  26867. source: "./media/characters/koros/wingspan-bottom.svg"
  26868. }
  26869. },
  26870. wingspanTop: {
  26871. height: math.unit(104, "feet"),
  26872. name: "Wingspan (Top)",
  26873. image: {
  26874. source: "./media/characters/koros/wingspan-top.svg"
  26875. }
  26876. },
  26877. },
  26878. [
  26879. {
  26880. name: "Normal",
  26881. height: math.unit(31 + 8 / 12, "feet"),
  26882. default: true
  26883. },
  26884. ]
  26885. ))
  26886. characterMakers.push(() => makeCharacter(
  26887. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26888. {
  26889. front: {
  26890. height: math.unit(18 + 5 / 12, "feet"),
  26891. weight: math.unit(3750, "kg"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/vexx/front.svg",
  26895. extra: 426 / 396,
  26896. bottom: 31.5 / 458
  26897. }
  26898. },
  26899. maw: {
  26900. height: math.unit(6, "feet"),
  26901. name: "Maw",
  26902. image: {
  26903. source: "./media/characters/vexx/maw.svg"
  26904. }
  26905. },
  26906. },
  26907. [
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(18 + 5 / 12, "feet"),
  26911. default: true
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(17 + 6 / 12, "feet"),
  26920. weight: math.unit(150, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/baadra/front.svg",
  26924. extra: 1694/1553,
  26925. bottom: 179/1873
  26926. }
  26927. },
  26928. frontAlt: {
  26929. height: math.unit(17 + 6 / 12, "feet"),
  26930. weight: math.unit(150, "lb"),
  26931. name: "Front (Alt)",
  26932. image: {
  26933. source: "./media/characters/baadra/front-alt.svg",
  26934. extra: 3137 / 2890,
  26935. bottom: 168.4 / 3305
  26936. }
  26937. },
  26938. back: {
  26939. height: math.unit(17 + 6 / 12, "feet"),
  26940. weight: math.unit(150, "lb"),
  26941. name: "Back",
  26942. image: {
  26943. source: "./media/characters/baadra/back.svg",
  26944. extra: 3142 / 2890,
  26945. bottom: 220 / 3371
  26946. }
  26947. },
  26948. head: {
  26949. height: math.unit(5.45, "feet"),
  26950. name: "Head",
  26951. image: {
  26952. source: "./media/characters/baadra/head.svg"
  26953. }
  26954. },
  26955. headAngry: {
  26956. height: math.unit(4.95, "feet"),
  26957. name: "Head (Angry)",
  26958. image: {
  26959. source: "./media/characters/baadra/head-angry.svg"
  26960. }
  26961. },
  26962. headOpen: {
  26963. height: math.unit(6, "feet"),
  26964. name: "Head (Open)",
  26965. image: {
  26966. source: "./media/characters/baadra/head-open.svg"
  26967. }
  26968. },
  26969. },
  26970. [
  26971. {
  26972. name: "Normal",
  26973. height: math.unit(17 + 6 / 12, "feet"),
  26974. default: true
  26975. },
  26976. ]
  26977. ))
  26978. characterMakers.push(() => makeCharacter(
  26979. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26980. {
  26981. front: {
  26982. height: math.unit(7 + 3 / 12, "feet"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Front",
  26985. image: {
  26986. source: "./media/characters/juri/front.svg",
  26987. extra: 1401 / 1237,
  26988. bottom: 18.5 / 1418
  26989. }
  26990. },
  26991. side: {
  26992. height: math.unit(7 + 3 / 12, "feet"),
  26993. weight: math.unit(180, "lb"),
  26994. name: "Side",
  26995. image: {
  26996. source: "./media/characters/juri/side.svg",
  26997. extra: 1424 / 1242,
  26998. bottom: 18.5 / 1447
  26999. }
  27000. },
  27001. sitting: {
  27002. height: math.unit(6, "feet"),
  27003. weight: math.unit(180, "lb"),
  27004. name: "Sitting",
  27005. image: {
  27006. source: "./media/characters/juri/sitting.svg",
  27007. extra: 1270 / 1143,
  27008. bottom: 100 / 1343
  27009. }
  27010. },
  27011. back: {
  27012. height: math.unit(7 + 3 / 12, "feet"),
  27013. weight: math.unit(180, "lb"),
  27014. name: "Back",
  27015. image: {
  27016. source: "./media/characters/juri/back.svg",
  27017. extra: 1377 / 1240,
  27018. bottom: 23.7 / 1405
  27019. }
  27020. },
  27021. maw: {
  27022. height: math.unit(2.8, "feet"),
  27023. name: "Maw",
  27024. image: {
  27025. source: "./media/characters/juri/maw.svg"
  27026. }
  27027. },
  27028. stomach: {
  27029. height: math.unit(0.89, "feet"),
  27030. preyCapacity: math.unit(4, "liters"),
  27031. name: "Stomach",
  27032. image: {
  27033. source: "./media/characters/juri/stomach.svg"
  27034. }
  27035. },
  27036. },
  27037. [
  27038. {
  27039. name: "Normal",
  27040. height: math.unit(7 + 3 / 12, "feet"),
  27041. default: true
  27042. },
  27043. ]
  27044. ))
  27045. characterMakers.push(() => makeCharacter(
  27046. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27047. {
  27048. fox: {
  27049. height: math.unit(5 + 6 / 12, "feet"),
  27050. weight: math.unit(140, "lb"),
  27051. name: "Fox",
  27052. image: {
  27053. source: "./media/characters/maxene-sita/fox.svg",
  27054. extra: 146 / 138,
  27055. bottom: 2.1 / 148.19
  27056. }
  27057. },
  27058. foxLaying: {
  27059. height: math.unit(1.70, "feet"),
  27060. weight: math.unit(140, "lb"),
  27061. name: "Fox (Laying)",
  27062. image: {
  27063. source: "./media/characters/maxene-sita/fox-laying.svg",
  27064. extra: 910 / 572,
  27065. bottom: 71 / 981
  27066. }
  27067. },
  27068. kitsune: {
  27069. height: math.unit(10, "feet"),
  27070. weight: math.unit(800, "lb"),
  27071. name: "Kitsune",
  27072. image: {
  27073. source: "./media/characters/maxene-sita/kitsune.svg",
  27074. extra: 185 / 176,
  27075. bottom: 4.7 / 189.9
  27076. }
  27077. },
  27078. hellhound: {
  27079. height: math.unit(10, "feet"),
  27080. weight: math.unit(700, "lb"),
  27081. name: "Hellhound",
  27082. image: {
  27083. source: "./media/characters/maxene-sita/hellhound.svg",
  27084. extra: 1600 / 1545,
  27085. bottom: 81 / 1681
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(5 + 6 / 12, "feet"),
  27093. default: true
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27099. {
  27100. front: {
  27101. height: math.unit(3 + 4 / 12, "feet"),
  27102. weight: math.unit(70, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/maia/front.svg",
  27106. extra: 227 / 219.5,
  27107. bottom: 40 / 267
  27108. }
  27109. },
  27110. back: {
  27111. height: math.unit(3 + 4 / 12, "feet"),
  27112. weight: math.unit(70, "lb"),
  27113. name: "Back",
  27114. image: {
  27115. source: "./media/characters/maia/back.svg",
  27116. extra: 237 / 225
  27117. }
  27118. },
  27119. },
  27120. [
  27121. {
  27122. name: "Normal",
  27123. height: math.unit(3 + 4 / 12, "feet"),
  27124. default: true
  27125. },
  27126. ]
  27127. ))
  27128. characterMakers.push(() => makeCharacter(
  27129. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27130. {
  27131. front: {
  27132. height: math.unit(5 + 10 / 12, "feet"),
  27133. weight: math.unit(197, "lb"),
  27134. name: "Front",
  27135. image: {
  27136. source: "./media/characters/jabaro/front.svg",
  27137. extra: 225 / 216,
  27138. bottom: 5.06 / 230
  27139. }
  27140. },
  27141. back: {
  27142. height: math.unit(5 + 10 / 12, "feet"),
  27143. weight: math.unit(197, "lb"),
  27144. name: "Back",
  27145. image: {
  27146. source: "./media/characters/jabaro/back.svg",
  27147. extra: 225 / 219,
  27148. bottom: 1.9 / 227
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Normal",
  27155. height: math.unit(5 + 10 / 12, "feet"),
  27156. default: true
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(5 + 8 / 12, "feet"),
  27165. weight: math.unit(139, "lb"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/risa/front.svg",
  27169. extra: 270 / 260,
  27170. bottom: 11.2 / 282
  27171. }
  27172. },
  27173. back: {
  27174. height: math.unit(5 + 8 / 12, "feet"),
  27175. weight: math.unit(139, "lb"),
  27176. name: "Back",
  27177. image: {
  27178. source: "./media/characters/risa/back.svg",
  27179. extra: 264 / 255,
  27180. bottom: 4 / 268
  27181. }
  27182. },
  27183. },
  27184. [
  27185. {
  27186. name: "Normal",
  27187. height: math.unit(5 + 8 / 12, "feet"),
  27188. default: true
  27189. },
  27190. ]
  27191. ))
  27192. characterMakers.push(() => makeCharacter(
  27193. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27194. {
  27195. front: {
  27196. height: math.unit(2 + 11 / 12, "feet"),
  27197. weight: math.unit(30, "lb"),
  27198. name: "Front",
  27199. image: {
  27200. source: "./media/characters/weatley/front.svg",
  27201. bottom: 10.7 / 414,
  27202. extra: 403.5 / 362
  27203. }
  27204. },
  27205. back: {
  27206. height: math.unit(2 + 11 / 12, "feet"),
  27207. weight: math.unit(30, "lb"),
  27208. name: "Back",
  27209. image: {
  27210. source: "./media/characters/weatley/back.svg",
  27211. bottom: 10.7 / 414,
  27212. extra: 403.5 / 362
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(2 + 11 / 12, "feet"),
  27220. default: true
  27221. },
  27222. ]
  27223. ))
  27224. characterMakers.push(() => makeCharacter(
  27225. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27226. {
  27227. front: {
  27228. height: math.unit(5 + 2 / 12, "feet"),
  27229. weight: math.unit(50, "kg"),
  27230. name: "Front",
  27231. image: {
  27232. source: "./media/characters/mercury-crescent/front.svg",
  27233. extra: 1088 / 1033,
  27234. bottom: 18.9 / 1109
  27235. }
  27236. },
  27237. },
  27238. [
  27239. {
  27240. name: "Normal",
  27241. height: math.unit(5 + 2 / 12, "feet"),
  27242. default: true
  27243. },
  27244. ]
  27245. ))
  27246. characterMakers.push(() => makeCharacter(
  27247. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27248. {
  27249. front: {
  27250. height: math.unit(2, "feet"),
  27251. weight: math.unit(15, "kg"),
  27252. name: "Front",
  27253. image: {
  27254. source: "./media/characters/diamond-jones/front.svg",
  27255. extra: 727/723,
  27256. bottom: 46/773
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(2, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(3, "feet"),
  27273. weight: math.unit(30, "kg"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/sweet-bit/front.svg",
  27277. extra: 675 / 567,
  27278. bottom: 27.7 / 703
  27279. }
  27280. },
  27281. },
  27282. [
  27283. {
  27284. name: "Normal",
  27285. height: math.unit(3, "feet"),
  27286. default: true
  27287. },
  27288. ]
  27289. ))
  27290. characterMakers.push(() => makeCharacter(
  27291. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27292. {
  27293. side: {
  27294. height: math.unit(9.178, "feet"),
  27295. weight: math.unit(500, "lb"),
  27296. name: "Side",
  27297. image: {
  27298. source: "./media/characters/umbrazen/side.svg",
  27299. extra: 1730 / 1473,
  27300. bottom: 34.6 / 1765
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(9.178, "feet"),
  27308. default: true
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(10, "feet"),
  27317. weight: math.unit(750, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/arlist/front.svg",
  27321. extra: 961 / 778,
  27322. bottom: 6.2 / 986
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(10, "feet"),
  27330. default: true
  27331. },
  27332. ]
  27333. ))
  27334. characterMakers.push(() => makeCharacter(
  27335. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27336. {
  27337. front: {
  27338. height: math.unit(5 + 1 / 12, "feet"),
  27339. weight: math.unit(110, "lb"),
  27340. name: "Front",
  27341. image: {
  27342. source: "./media/characters/aradel/front.svg",
  27343. extra: 324 / 303,
  27344. bottom: 3.6 / 329.4
  27345. }
  27346. },
  27347. },
  27348. [
  27349. {
  27350. name: "Normal",
  27351. height: math.unit(5 + 1 / 12, "feet"),
  27352. default: true
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27358. {
  27359. dressed: {
  27360. height: math.unit(3 + 8 / 12, "feet"),
  27361. weight: math.unit(50, "lb"),
  27362. name: "Dressed",
  27363. image: {
  27364. source: "./media/characters/serryn/dressed.svg",
  27365. extra: 1792 / 1656,
  27366. bottom: 43.5 / 1840
  27367. }
  27368. },
  27369. nude: {
  27370. height: math.unit(3 + 8 / 12, "feet"),
  27371. weight: math.unit(50, "lb"),
  27372. name: "Nude",
  27373. image: {
  27374. source: "./media/characters/serryn/nude.svg",
  27375. extra: 1792 / 1656,
  27376. bottom: 43.5 / 1840
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Normal",
  27383. height: math.unit(3 + 8 / 12, "feet"),
  27384. default: true
  27385. },
  27386. ]
  27387. ))
  27388. characterMakers.push(() => makeCharacter(
  27389. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27390. {
  27391. front: {
  27392. height: math.unit(7 + 10 / 12, "feet"),
  27393. weight: math.unit(255, "lb"),
  27394. name: "Front",
  27395. image: {
  27396. source: "./media/characters/xavier-thyme/front.svg",
  27397. extra: 3733 / 3642,
  27398. bottom: 131 / 3869
  27399. }
  27400. },
  27401. frontRaven: {
  27402. height: math.unit(7 + 10 / 12, "feet"),
  27403. weight: math.unit(255, "lb"),
  27404. name: "Front (Raven)",
  27405. image: {
  27406. source: "./media/characters/xavier-thyme/front-raven.svg",
  27407. extra: 4385 / 3642,
  27408. bottom: 131 / 4517
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(7 + 10 / 12, "feet"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(1.6, "m"),
  27425. weight: math.unit(50, "kg"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/kiki/front.svg",
  27429. extra: 4682 / 3610,
  27430. bottom: 115 / 4777
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(1.6, "meters"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(50, "m"),
  27447. weight: math.unit(500, "tonnes"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/ryoko/front.svg",
  27451. extra: 4632 / 3926,
  27452. bottom: 193 / 4823
  27453. }
  27454. },
  27455. },
  27456. [
  27457. {
  27458. name: "Normal",
  27459. height: math.unit(50, "meters"),
  27460. default: true
  27461. },
  27462. ]
  27463. ))
  27464. characterMakers.push(() => makeCharacter(
  27465. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27466. {
  27467. front: {
  27468. height: math.unit(30, "m"),
  27469. weight: math.unit(22, "tonnes"),
  27470. name: "Front",
  27471. image: {
  27472. source: "./media/characters/elio/front.svg",
  27473. extra: 4582 / 3720,
  27474. bottom: 236 / 4828
  27475. }
  27476. },
  27477. },
  27478. [
  27479. {
  27480. name: "Normal",
  27481. height: math.unit(30, "meters"),
  27482. default: true
  27483. },
  27484. ]
  27485. ))
  27486. characterMakers.push(() => makeCharacter(
  27487. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27488. {
  27489. front: {
  27490. height: math.unit(6 + 3 / 12, "feet"),
  27491. weight: math.unit(120, "lb"),
  27492. name: "Front",
  27493. image: {
  27494. source: "./media/characters/azura/front.svg",
  27495. extra: 1149 / 1135,
  27496. bottom: 45 / 1194
  27497. }
  27498. },
  27499. frontClothed: {
  27500. height: math.unit(6 + 3 / 12, "feet"),
  27501. weight: math.unit(120, "lb"),
  27502. name: "Front (Clothed)",
  27503. image: {
  27504. source: "./media/characters/azura/front-clothed.svg",
  27505. extra: 1149 / 1135,
  27506. bottom: 45 / 1194
  27507. }
  27508. },
  27509. },
  27510. [
  27511. {
  27512. name: "Normal",
  27513. height: math.unit(6 + 3 / 12, "feet"),
  27514. default: true
  27515. },
  27516. {
  27517. name: "Macro",
  27518. height: math.unit(20 + 6 / 12, "feet")
  27519. },
  27520. {
  27521. name: "Megamacro",
  27522. height: math.unit(12, "miles")
  27523. },
  27524. {
  27525. name: "Gigamacro",
  27526. height: math.unit(10000, "miles")
  27527. },
  27528. {
  27529. name: "Teramacro",
  27530. height: math.unit(900000, "miles")
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(12, "feet"),
  27539. weight: math.unit(1, "ton"),
  27540. capacity: math.unit(660000, "gallons"),
  27541. name: "Front",
  27542. image: {
  27543. source: "./media/characters/zeus/front.svg",
  27544. extra: 5005 / 4717,
  27545. bottom: 363 / 5388
  27546. }
  27547. },
  27548. },
  27549. [
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(12, "feet")
  27553. },
  27554. {
  27555. name: "Preferred Size",
  27556. height: math.unit(0.5, "miles"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Giga Horse",
  27561. height: math.unit(300, "miles")
  27562. },
  27563. {
  27564. name: "Riding Planets",
  27565. height: math.unit(30, "megameters")
  27566. },
  27567. {
  27568. name: "Cosmic Giant",
  27569. height: math.unit(3, "zettameters")
  27570. },
  27571. {
  27572. name: "Breeding God",
  27573. height: math.unit(9.92e22, "yottameters")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27579. {
  27580. side: {
  27581. height: math.unit(9, "feet"),
  27582. weight: math.unit(1500, "kg"),
  27583. name: "Side",
  27584. image: {
  27585. source: "./media/characters/fang/side.svg",
  27586. extra: 924 / 866,
  27587. bottom: 47.5 / 972.3
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(9, "feet"),
  27595. default: true
  27596. },
  27597. {
  27598. name: "Macro",
  27599. height: math.unit(75 + 6 / 12, "feet")
  27600. },
  27601. {
  27602. name: "Teramacro",
  27603. height: math.unit(50000, "miles")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27609. {
  27610. front: {
  27611. height: math.unit(10, "feet"),
  27612. weight: math.unit(2, "tons"),
  27613. name: "Front",
  27614. image: {
  27615. source: "./media/characters/rekhit/front.svg",
  27616. extra: 2796 / 2590,
  27617. bottom: 225 / 3022
  27618. }
  27619. },
  27620. },
  27621. [
  27622. {
  27623. name: "Normal",
  27624. height: math.unit(10, "feet"),
  27625. default: true
  27626. },
  27627. {
  27628. name: "Macro",
  27629. height: math.unit(500, "feet")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(7 + 6.451 / 12, "feet"),
  27638. weight: math.unit(310, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/dahlia-verrick/front.svg",
  27642. extra: 1488 / 1365,
  27643. bottom: 6.2 / 1495
  27644. }
  27645. },
  27646. back: {
  27647. height: math.unit(7 + 6.451 / 12, "feet"),
  27648. weight: math.unit(310, "lb"),
  27649. name: "Back",
  27650. image: {
  27651. source: "./media/characters/dahlia-verrick/back.svg",
  27652. extra: 1472 / 1351,
  27653. bottom: 5.28 / 1477
  27654. }
  27655. },
  27656. frontBusiness: {
  27657. height: math.unit(7 + 6.451 / 12, "feet"),
  27658. weight: math.unit(200, "lb"),
  27659. name: "Front (Business)",
  27660. image: {
  27661. source: "./media/characters/dahlia-verrick/front-business.svg",
  27662. extra: 1478 / 1381,
  27663. bottom: 5.5 / 1484
  27664. }
  27665. },
  27666. frontCasual: {
  27667. height: math.unit(7 + 6.451 / 12, "feet"),
  27668. weight: math.unit(200, "lb"),
  27669. name: "Front (Casual)",
  27670. image: {
  27671. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27672. extra: 1478 / 1381,
  27673. bottom: 5.5 / 1484
  27674. }
  27675. },
  27676. },
  27677. [
  27678. {
  27679. name: "Travel-Sized",
  27680. height: math.unit(7.45, "inches")
  27681. },
  27682. {
  27683. name: "Normal",
  27684. height: math.unit(7 + 6.451 / 12, "feet"),
  27685. default: true
  27686. },
  27687. {
  27688. name: "Hitting the Town",
  27689. height: math.unit(37 + 8 / 12, "feet")
  27690. },
  27691. {
  27692. name: "Stomp in the Suburbs",
  27693. height: math.unit(964 + 9.728 / 12, "feet")
  27694. },
  27695. {
  27696. name: "Sit on the City",
  27697. height: math.unit(61747 + 10.592 / 12, "feet")
  27698. },
  27699. {
  27700. name: "Glomp the Globe",
  27701. height: math.unit(252919327 + 4.832 / 12, "feet")
  27702. },
  27703. ]
  27704. ))
  27705. characterMakers.push(() => makeCharacter(
  27706. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27707. {
  27708. front: {
  27709. height: math.unit(6 + 4 / 12, "feet"),
  27710. weight: math.unit(320, "lb"),
  27711. name: "Front",
  27712. image: {
  27713. source: "./media/characters/balina-mahigan/front.svg",
  27714. extra: 447 / 428,
  27715. bottom: 18 / 466
  27716. }
  27717. },
  27718. back: {
  27719. height: math.unit(6 + 4 / 12, "feet"),
  27720. weight: math.unit(320, "lb"),
  27721. name: "Back",
  27722. image: {
  27723. source: "./media/characters/balina-mahigan/back.svg",
  27724. extra: 445 / 428,
  27725. bottom: 4.07 / 448
  27726. }
  27727. },
  27728. arm: {
  27729. height: math.unit(1.88, "feet"),
  27730. name: "Arm",
  27731. image: {
  27732. source: "./media/characters/balina-mahigan/arm.svg"
  27733. }
  27734. },
  27735. backPort: {
  27736. height: math.unit(0.685, "feet"),
  27737. name: "Back Port",
  27738. image: {
  27739. source: "./media/characters/balina-mahigan/back-port.svg"
  27740. }
  27741. },
  27742. hoofpaw: {
  27743. height: math.unit(1.41, "feet"),
  27744. name: "Hoofpaw",
  27745. image: {
  27746. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27747. }
  27748. },
  27749. leftHandBack: {
  27750. height: math.unit(0.938, "feet"),
  27751. name: "Left Hand (Back)",
  27752. image: {
  27753. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27754. }
  27755. },
  27756. leftHandFront: {
  27757. height: math.unit(0.938, "feet"),
  27758. name: "Left Hand (Front)",
  27759. image: {
  27760. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27761. }
  27762. },
  27763. rightHandBack: {
  27764. height: math.unit(0.95, "feet"),
  27765. name: "Right Hand (Back)",
  27766. image: {
  27767. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27768. }
  27769. },
  27770. rightHandFront: {
  27771. height: math.unit(0.95, "feet"),
  27772. name: "Right Hand (Front)",
  27773. image: {
  27774. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(6 + 4 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(6, "feet"),
  27791. weight: math.unit(320, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/balina-mejeri/front.svg",
  27795. extra: 517 / 488,
  27796. bottom: 44.2 / 561
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(6 + 4 / 12, "feet")
  27804. },
  27805. {
  27806. name: "Business",
  27807. height: math.unit(155, "feet"),
  27808. default: true
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27814. {
  27815. kneeling: {
  27816. height: math.unit(6 + 4 / 12, "feet"),
  27817. weight: math.unit(300 * 20, "lb"),
  27818. name: "Kneeling",
  27819. image: {
  27820. source: "./media/characters/balbarian/kneeling.svg",
  27821. extra: 922 / 862,
  27822. bottom: 42.4 / 965
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Normal",
  27829. height: math.unit(6 + 4 / 12, "feet")
  27830. },
  27831. {
  27832. name: "Treasured",
  27833. height: math.unit(18 + 9 / 12, "feet"),
  27834. default: true
  27835. },
  27836. {
  27837. name: "Macro",
  27838. height: math.unit(900, "feet")
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(6 + 4 / 12, "feet"),
  27847. weight: math.unit(325, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/balina-amarini/front.svg",
  27851. extra: 415 / 403,
  27852. bottom: 19 / 433.4
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(6 + 4 / 12, "feet"),
  27857. weight: math.unit(325, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/balina-amarini/back.svg",
  27861. extra: 415 / 403,
  27862. bottom: 13.5 / 432
  27863. }
  27864. },
  27865. overdrive: {
  27866. height: math.unit(6 + 4 / 12, "feet"),
  27867. weight: math.unit(400, "lb"),
  27868. name: "Overdrive",
  27869. image: {
  27870. source: "./media/characters/balina-amarini/overdrive.svg",
  27871. extra: 269 / 259,
  27872. bottom: 12 / 282
  27873. }
  27874. },
  27875. },
  27876. [
  27877. {
  27878. name: "Boom",
  27879. height: math.unit(9 + 10 / 12, "feet"),
  27880. default: true
  27881. },
  27882. {
  27883. name: "Macro",
  27884. height: math.unit(280, "feet")
  27885. },
  27886. ]
  27887. ))
  27888. characterMakers.push(() => makeCharacter(
  27889. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27890. {
  27891. goddess: {
  27892. height: math.unit(600, "feet"),
  27893. weight: math.unit(2000000, "tons"),
  27894. name: "Goddess",
  27895. image: {
  27896. source: "./media/characters/lady-kubwa/goddess.svg",
  27897. extra: 1240.5 / 1223,
  27898. bottom: 22 / 1263
  27899. }
  27900. },
  27901. goddesser: {
  27902. height: math.unit(900, "feet"),
  27903. weight: math.unit(20000000, "lb"),
  27904. name: "Goddess-er",
  27905. image: {
  27906. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27907. extra: 899 / 888,
  27908. bottom: 12.6 / 912
  27909. }
  27910. },
  27911. },
  27912. [
  27913. {
  27914. name: "Macro",
  27915. height: math.unit(600, "feet"),
  27916. default: true
  27917. },
  27918. {
  27919. name: "Megamacro",
  27920. height: math.unit(250, "miles")
  27921. },
  27922. ]
  27923. ))
  27924. characterMakers.push(() => makeCharacter(
  27925. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27926. {
  27927. front: {
  27928. height: math.unit(7 + 7 / 12, "feet"),
  27929. weight: math.unit(250, "lb"),
  27930. name: "Front",
  27931. image: {
  27932. source: "./media/characters/tala-grovehorn/front.svg",
  27933. extra: 2636 / 2525,
  27934. bottom: 147 / 2781
  27935. }
  27936. },
  27937. back: {
  27938. height: math.unit(7 + 7 / 12, "feet"),
  27939. weight: math.unit(250, "lb"),
  27940. name: "Back",
  27941. image: {
  27942. source: "./media/characters/tala-grovehorn/back.svg",
  27943. extra: 2635 / 2539,
  27944. bottom: 100 / 2732.8
  27945. }
  27946. },
  27947. mouth: {
  27948. height: math.unit(1.15, "feet"),
  27949. name: "Mouth",
  27950. image: {
  27951. source: "./media/characters/tala-grovehorn/mouth.svg"
  27952. }
  27953. },
  27954. dick: {
  27955. height: math.unit(2.36, "feet"),
  27956. name: "Dick",
  27957. image: {
  27958. source: "./media/characters/tala-grovehorn/dick.svg"
  27959. }
  27960. },
  27961. slit: {
  27962. height: math.unit(0.61, "feet"),
  27963. name: "Slit",
  27964. image: {
  27965. source: "./media/characters/tala-grovehorn/slit.svg"
  27966. }
  27967. },
  27968. },
  27969. [
  27970. ]
  27971. ))
  27972. characterMakers.push(() => makeCharacter(
  27973. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27974. {
  27975. front: {
  27976. height: math.unit(7 + 7 / 12, "feet"),
  27977. weight: math.unit(225, "lb"),
  27978. name: "Front",
  27979. image: {
  27980. source: "./media/characters/epona/front.svg",
  27981. extra: 2445 / 2290,
  27982. bottom: 251 / 2696
  27983. }
  27984. },
  27985. back: {
  27986. height: math.unit(7 + 7 / 12, "feet"),
  27987. weight: math.unit(225, "lb"),
  27988. name: "Back",
  27989. image: {
  27990. source: "./media/characters/epona/back.svg",
  27991. extra: 2546 / 2408,
  27992. bottom: 44 / 2589
  27993. }
  27994. },
  27995. genitals: {
  27996. height: math.unit(1.5, "feet"),
  27997. name: "Genitals",
  27998. image: {
  27999. source: "./media/characters/epona/genitals.svg"
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(7 + 7 / 12, "feet"),
  28007. default: true
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28013. {
  28014. front: {
  28015. height: math.unit(7, "feet"),
  28016. weight: math.unit(518, "lb"),
  28017. name: "Front",
  28018. image: {
  28019. source: "./media/characters/avia-bloodbourn/front.svg",
  28020. extra: 1466 / 1350,
  28021. bottom: 65 / 1527
  28022. }
  28023. },
  28024. },
  28025. [
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28030. {
  28031. front: {
  28032. height: math.unit(9.35, "feet"),
  28033. weight: math.unit(600, "lb"),
  28034. name: "Front",
  28035. image: {
  28036. source: "./media/characters/amera/front.svg",
  28037. extra: 891 / 818,
  28038. bottom: 30 / 922.7
  28039. }
  28040. },
  28041. back: {
  28042. height: math.unit(9.35, "feet"),
  28043. weight: math.unit(600, "lb"),
  28044. name: "Back",
  28045. image: {
  28046. source: "./media/characters/amera/back.svg",
  28047. extra: 876 / 824,
  28048. bottom: 6.8 / 884
  28049. }
  28050. },
  28051. dick: {
  28052. height: math.unit(2.14, "feet"),
  28053. name: "Dick",
  28054. image: {
  28055. source: "./media/characters/amera/dick.svg"
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(9.35, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28069. {
  28070. kneeling: {
  28071. height: math.unit(3 + 4 / 12, "feet"),
  28072. weight: math.unit(90, "lb"),
  28073. name: "Kneeling",
  28074. image: {
  28075. source: "./media/characters/rosewen/kneeling.svg",
  28076. extra: 1835 / 1571,
  28077. bottom: 27.7 / 1862
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(3 + 4 / 12, "feet"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28091. {
  28092. front: {
  28093. height: math.unit(5 + 10 / 12, "feet"),
  28094. weight: math.unit(200, "lb"),
  28095. name: "Front",
  28096. image: {
  28097. source: "./media/characters/sabah/front.svg",
  28098. extra: 849 / 763,
  28099. bottom: 33.9 / 881
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(5 + 10 / 12, "feet"),
  28107. default: true
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28113. {
  28114. front: {
  28115. height: math.unit(3 + 5 / 12, "feet"),
  28116. weight: math.unit(40, "kg"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/purple-flame/front.svg",
  28120. extra: 1577 / 1412,
  28121. bottom: 97 / 1694
  28122. }
  28123. },
  28124. frontDressed: {
  28125. height: math.unit(3 + 5 / 12, "feet"),
  28126. weight: math.unit(40, "kg"),
  28127. name: "Front (Dressed)",
  28128. image: {
  28129. source: "./media/characters/purple-flame/front-dressed.svg",
  28130. extra: 1577 / 1412,
  28131. bottom: 97 / 1694
  28132. }
  28133. },
  28134. headphones: {
  28135. height: math.unit(0.85, "feet"),
  28136. name: "Headphones",
  28137. image: {
  28138. source: "./media/characters/purple-flame/headphones.svg"
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Really Small",
  28145. height: math.unit(5, "cm")
  28146. },
  28147. {
  28148. name: "Micro",
  28149. height: math.unit(1 + 5 / 12, "feet")
  28150. },
  28151. {
  28152. name: "Normal",
  28153. height: math.unit(3 + 5 / 12, "feet"),
  28154. default: true
  28155. },
  28156. {
  28157. name: "Minimacro",
  28158. height: math.unit(125, "feet")
  28159. },
  28160. {
  28161. name: "Macro",
  28162. height: math.unit(0.5, "miles")
  28163. },
  28164. {
  28165. name: "Megamacro",
  28166. height: math.unit(50, "miles")
  28167. },
  28168. {
  28169. name: "Gigantic",
  28170. height: math.unit(750, "miles")
  28171. },
  28172. {
  28173. name: "Planetary",
  28174. height: math.unit(15000, "miles")
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28180. {
  28181. front: {
  28182. height: math.unit(14, "feet"),
  28183. weight: math.unit(959, "lb"),
  28184. name: "Front",
  28185. image: {
  28186. source: "./media/characters/arsenal/front.svg",
  28187. extra: 2357 / 2157,
  28188. bottom: 93 / 2458
  28189. }
  28190. },
  28191. },
  28192. [
  28193. {
  28194. name: "Normal",
  28195. height: math.unit(14, "feet"),
  28196. default: true
  28197. },
  28198. ]
  28199. ))
  28200. characterMakers.push(() => makeCharacter(
  28201. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28202. {
  28203. front: {
  28204. height: math.unit(6, "feet"),
  28205. weight: math.unit(150, "lb"),
  28206. name: "Front",
  28207. image: {
  28208. source: "./media/characters/adira/front.svg",
  28209. extra: 1078 / 1029,
  28210. bottom: 87 / 1166
  28211. }
  28212. },
  28213. },
  28214. [
  28215. {
  28216. name: "Micro",
  28217. height: math.unit(4, "inches"),
  28218. default: true
  28219. },
  28220. {
  28221. name: "Macro",
  28222. height: math.unit(50, "feet")
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28228. {
  28229. front: {
  28230. height: math.unit(16, "feet"),
  28231. weight: math.unit(1000, "lb"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/grim/front.svg",
  28235. extra: 622 / 614,
  28236. bottom: 18.1 / 642
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(16, "feet"),
  28241. weight: math.unit(1000, "lb"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/grim/back.svg",
  28245. extra: 610.6 / 602,
  28246. bottom: 40.8 / 652
  28247. }
  28248. },
  28249. hunched: {
  28250. height: math.unit(9.75, "feet"),
  28251. weight: math.unit(1000, "lb"),
  28252. name: "Hunched",
  28253. image: {
  28254. source: "./media/characters/grim/hunched.svg",
  28255. extra: 304 / 297,
  28256. bottom: 35.4 / 394
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(16, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(2.3, "meters"),
  28273. weight: math.unit(300, "lb"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/sinja/front-sfw.svg",
  28277. extra: 1393 / 1294,
  28278. bottom: 70 / 1463
  28279. }
  28280. },
  28281. frontNsfw: {
  28282. height: math.unit(2.3, "meters"),
  28283. weight: math.unit(300, "lb"),
  28284. name: "Front (NSFW)",
  28285. image: {
  28286. source: "./media/characters/sinja/front-nsfw.svg",
  28287. extra: 1393 / 1294,
  28288. bottom: 70 / 1463
  28289. }
  28290. },
  28291. back: {
  28292. height: math.unit(2.3, "meters"),
  28293. weight: math.unit(300, "lb"),
  28294. name: "Back",
  28295. image: {
  28296. source: "./media/characters/sinja/back.svg",
  28297. extra: 1393 / 1294,
  28298. bottom: 70 / 1463
  28299. }
  28300. },
  28301. head: {
  28302. height: math.unit(1.771, "feet"),
  28303. name: "Head",
  28304. image: {
  28305. source: "./media/characters/sinja/head.svg"
  28306. }
  28307. },
  28308. slit: {
  28309. height: math.unit(0.8, "feet"),
  28310. name: "Slit",
  28311. image: {
  28312. source: "./media/characters/sinja/slit.svg"
  28313. }
  28314. },
  28315. },
  28316. [
  28317. {
  28318. name: "Normal",
  28319. height: math.unit(2.3, "meters")
  28320. },
  28321. {
  28322. name: "Macro",
  28323. height: math.unit(91, "meters"),
  28324. default: true
  28325. },
  28326. {
  28327. name: "Megamacro",
  28328. height: math.unit(91440, "meters")
  28329. },
  28330. {
  28331. name: "Gigamacro",
  28332. height: math.unit(60960000, "meters")
  28333. },
  28334. {
  28335. name: "Teramacro",
  28336. height: math.unit(9144000000, "meters")
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28342. {
  28343. front: {
  28344. height: math.unit(1.7, "meters"),
  28345. weight: math.unit(130, "lb"),
  28346. name: "Front",
  28347. image: {
  28348. source: "./media/characters/kyu/front.svg",
  28349. extra: 415 / 395,
  28350. bottom: 5 / 420
  28351. }
  28352. },
  28353. head: {
  28354. height: math.unit(1.75, "feet"),
  28355. name: "Head",
  28356. image: {
  28357. source: "./media/characters/kyu/head.svg"
  28358. }
  28359. },
  28360. foot: {
  28361. height: math.unit(0.81, "feet"),
  28362. name: "Foot",
  28363. image: {
  28364. source: "./media/characters/kyu/foot.svg"
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Normal",
  28371. height: math.unit(1.7, "meters")
  28372. },
  28373. {
  28374. name: "Macro",
  28375. height: math.unit(131, "feet"),
  28376. default: true
  28377. },
  28378. {
  28379. name: "Megamacro",
  28380. height: math.unit(91440, "meters")
  28381. },
  28382. {
  28383. name: "Gigamacro",
  28384. height: math.unit(60960000, "meters")
  28385. },
  28386. {
  28387. name: "Teramacro",
  28388. height: math.unit(9144000000, "meters")
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(7 + 1 / 12, "feet"),
  28397. weight: math.unit(250, "lb"),
  28398. name: "Front",
  28399. image: {
  28400. source: "./media/characters/joey/front.svg",
  28401. extra: 1791 / 1537,
  28402. bottom: 28 / 1816
  28403. }
  28404. },
  28405. },
  28406. [
  28407. {
  28408. name: "Micro",
  28409. height: math.unit(3, "inches")
  28410. },
  28411. {
  28412. name: "Normal",
  28413. height: math.unit(7 + 1 / 12, "feet"),
  28414. default: true
  28415. },
  28416. ]
  28417. ))
  28418. characterMakers.push(() => makeCharacter(
  28419. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28420. {
  28421. front: {
  28422. height: math.unit(165, "cm"),
  28423. weight: math.unit(140, "lb"),
  28424. name: "Front",
  28425. image: {
  28426. source: "./media/characters/sam-evans/front.svg",
  28427. extra: 3417 / 3230,
  28428. bottom: 41.3 / 3417
  28429. }
  28430. },
  28431. frontSixTails: {
  28432. height: math.unit(165, "cm"),
  28433. weight: math.unit(140, "lb"),
  28434. name: "Front-six-tails",
  28435. image: {
  28436. source: "./media/characters/sam-evans/front-six-tails.svg",
  28437. extra: 3417 / 3230,
  28438. bottom: 41.3 / 3417
  28439. }
  28440. },
  28441. back: {
  28442. height: math.unit(165, "cm"),
  28443. weight: math.unit(140, "lb"),
  28444. name: "Back",
  28445. image: {
  28446. source: "./media/characters/sam-evans/back.svg",
  28447. extra: 3227 / 3032,
  28448. bottom: 6.8 / 3234
  28449. }
  28450. },
  28451. face: {
  28452. height: math.unit(0.68, "feet"),
  28453. name: "Face",
  28454. image: {
  28455. source: "./media/characters/sam-evans/face.svg"
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(165, "cm"),
  28463. default: true
  28464. },
  28465. {
  28466. name: "Macro",
  28467. height: math.unit(100, "meters")
  28468. },
  28469. {
  28470. name: "Macro+",
  28471. height: math.unit(800, "meters")
  28472. },
  28473. {
  28474. name: "Macro++",
  28475. height: math.unit(3, "km")
  28476. },
  28477. {
  28478. name: "Macro+++",
  28479. height: math.unit(30, "km")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(10, "feet"),
  28488. weight: math.unit(750, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/juliet-a/front.svg",
  28492. extra: 1766 / 1720,
  28493. bottom: 43 / 1809
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(10, "feet"),
  28498. weight: math.unit(750, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/juliet-a/back.svg",
  28502. extra: 1781 / 1734,
  28503. bottom: 35 / 1810,
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Normal",
  28510. height: math.unit(10, "feet"),
  28511. default: true
  28512. },
  28513. {
  28514. name: "Dragon Form",
  28515. height: math.unit(250, "feet")
  28516. },
  28517. {
  28518. name: "Macro",
  28519. height: math.unit(1000, "feet")
  28520. },
  28521. {
  28522. name: "Megamacro",
  28523. height: math.unit(10000, "feet")
  28524. }
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28529. {
  28530. regular: {
  28531. height: math.unit(7 + 3 / 12, "feet"),
  28532. weight: math.unit(260, "lb"),
  28533. name: "Regular",
  28534. image: {
  28535. source: "./media/characters/wild/regular.svg",
  28536. extra: 97.45 / 92,
  28537. bottom: 6.8 / 104.3
  28538. }
  28539. },
  28540. biggums: {
  28541. height: math.unit(8 + 6 / 12, "feet"),
  28542. weight: math.unit(425, "lb"),
  28543. name: "Biggums",
  28544. image: {
  28545. source: "./media/characters/wild/biggums.svg",
  28546. extra: 97.45 / 92,
  28547. bottom: 7.5 / 132.34
  28548. }
  28549. },
  28550. mawRegular: {
  28551. height: math.unit(1.24, "feet"),
  28552. name: "Maw (Regular)",
  28553. image: {
  28554. source: "./media/characters/wild/maw.svg"
  28555. }
  28556. },
  28557. mawBiggums: {
  28558. height: math.unit(1.47, "feet"),
  28559. name: "Maw (Biggums)",
  28560. image: {
  28561. source: "./media/characters/wild/maw.svg"
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Normal",
  28568. height: math.unit(7 + 3 / 12, "feet"),
  28569. default: true
  28570. },
  28571. ]
  28572. ))
  28573. characterMakers.push(() => makeCharacter(
  28574. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28575. {
  28576. front: {
  28577. height: math.unit(2.5, "meters"),
  28578. weight: math.unit(200, "kg"),
  28579. name: "Front",
  28580. image: {
  28581. source: "./media/characters/vidar/front.svg",
  28582. extra: 2994 / 2795,
  28583. bottom: 56 / 3061
  28584. }
  28585. },
  28586. back: {
  28587. height: math.unit(2.5, "meters"),
  28588. weight: math.unit(200, "kg"),
  28589. name: "Back",
  28590. image: {
  28591. source: "./media/characters/vidar/back.svg",
  28592. extra: 3131 / 2928,
  28593. bottom: 13.5 / 3141.5
  28594. }
  28595. },
  28596. feral: {
  28597. height: math.unit(2.5, "meters"),
  28598. weight: math.unit(2000, "kg"),
  28599. name: "Feral",
  28600. image: {
  28601. source: "./media/characters/vidar/feral.svg",
  28602. extra: 2790 / 1765,
  28603. bottom: 6 / 2796
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(2.5, "meters"),
  28611. default: true
  28612. },
  28613. {
  28614. name: "Macro",
  28615. height: math.unit(100, "meters")
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(5 + 9 / 12, "feet"),
  28624. weight: math.unit(120, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/ash/front.svg",
  28628. extra: 2189 / 1961,
  28629. bottom: 5.2 / 2194
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Normal",
  28636. height: math.unit(5 + 9 / 12, "feet"),
  28637. default: true
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28643. {
  28644. front: {
  28645. height: math.unit(9, "feet"),
  28646. weight: math.unit(10000, "lb"),
  28647. name: "Front",
  28648. image: {
  28649. source: "./media/characters/gygabite/front.svg",
  28650. bottom: 31.7 / 537.8,
  28651. extra: 505 / 370
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(9, "feet"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(12, "feet"),
  28668. weight: math.unit(4000, "lb"),
  28669. name: "Front",
  28670. image: {
  28671. source: "./media/characters/p0tat0/front.svg",
  28672. extra: 1065 / 921,
  28673. bottom: 55.7 / 1121.25
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Normal",
  28680. height: math.unit(12, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28687. {
  28688. side: {
  28689. height: math.unit(6.5, "feet"),
  28690. weight: math.unit(800, "lb"),
  28691. name: "Side",
  28692. image: {
  28693. source: "./media/characters/dusk/side.svg",
  28694. extra: 615 / 373,
  28695. bottom: 53 / 664
  28696. }
  28697. },
  28698. sitting: {
  28699. height: math.unit(7, "feet"),
  28700. weight: math.unit(800, "lb"),
  28701. name: "Sitting",
  28702. image: {
  28703. source: "./media/characters/dusk/sitting.svg",
  28704. extra: 753 / 425,
  28705. bottom: 33 / 774
  28706. }
  28707. },
  28708. head: {
  28709. height: math.unit(6.1, "feet"),
  28710. name: "Head",
  28711. image: {
  28712. source: "./media/characters/dusk/head.svg"
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Normal",
  28719. height: math.unit(7, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(15, "feet"),
  28729. weight: math.unit(7000, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/jay-direwolf/front.svg",
  28733. extra: 1810 / 1732,
  28734. bottom: 66 / 1892
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(15, "feet"),
  28742. default: true
  28743. },
  28744. ]
  28745. ))
  28746. characterMakers.push(() => makeCharacter(
  28747. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28748. {
  28749. front: {
  28750. height: math.unit(4 + 9 / 12, "feet"),
  28751. weight: math.unit(130, "lb"),
  28752. name: "Front",
  28753. image: {
  28754. source: "./media/characters/anchovie/front.svg",
  28755. extra: 382 / 350,
  28756. bottom: 25 / 409
  28757. }
  28758. },
  28759. back: {
  28760. height: math.unit(4 + 9 / 12, "feet"),
  28761. weight: math.unit(130, "lb"),
  28762. name: "Back",
  28763. image: {
  28764. source: "./media/characters/anchovie/back.svg",
  28765. extra: 385 / 352,
  28766. bottom: 16.6 / 402
  28767. }
  28768. },
  28769. frontDressed: {
  28770. height: math.unit(4 + 9 / 12, "feet"),
  28771. weight: math.unit(130, "lb"),
  28772. name: "Front (Dressed)",
  28773. image: {
  28774. source: "./media/characters/anchovie/front-dressed.svg",
  28775. extra: 382 / 350,
  28776. bottom: 25 / 409
  28777. }
  28778. },
  28779. backDressed: {
  28780. height: math.unit(4 + 9 / 12, "feet"),
  28781. weight: math.unit(130, "lb"),
  28782. name: "Back (Dressed)",
  28783. image: {
  28784. source: "./media/characters/anchovie/back-dressed.svg",
  28785. extra: 385 / 352,
  28786. bottom: 16.6 / 402
  28787. }
  28788. },
  28789. },
  28790. [
  28791. {
  28792. name: "Micro",
  28793. height: math.unit(6.4, "inches")
  28794. },
  28795. {
  28796. name: "Normal",
  28797. height: math.unit(4 + 9 / 12, "feet"),
  28798. default: true
  28799. },
  28800. ]
  28801. ))
  28802. characterMakers.push(() => makeCharacter(
  28803. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28804. {
  28805. front: {
  28806. height: math.unit(2, "meters"),
  28807. weight: math.unit(180, "lb"),
  28808. name: "Front",
  28809. image: {
  28810. source: "./media/characters/acidrenamon/front.svg",
  28811. extra: 987 / 890,
  28812. bottom: 22.8 / 1009
  28813. }
  28814. },
  28815. back: {
  28816. height: math.unit(2, "meters"),
  28817. weight: math.unit(180, "lb"),
  28818. name: "Back",
  28819. image: {
  28820. source: "./media/characters/acidrenamon/back.svg",
  28821. extra: 983 / 891,
  28822. bottom: 8.4 / 992
  28823. }
  28824. },
  28825. head: {
  28826. height: math.unit(1.92, "feet"),
  28827. name: "Head",
  28828. image: {
  28829. source: "./media/characters/acidrenamon/head.svg"
  28830. }
  28831. },
  28832. rump: {
  28833. height: math.unit(1.72, "feet"),
  28834. name: "Rump",
  28835. image: {
  28836. source: "./media/characters/acidrenamon/rump.svg"
  28837. }
  28838. },
  28839. tail: {
  28840. height: math.unit(4.2, "feet"),
  28841. name: "Tail",
  28842. image: {
  28843. source: "./media/characters/acidrenamon/tail.svg"
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(2, "meters"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Minimacro",
  28855. height: math.unit(7, "meters")
  28856. },
  28857. {
  28858. name: "Macro",
  28859. height: math.unit(200, "meters")
  28860. },
  28861. {
  28862. name: "Gigamacro",
  28863. height: math.unit(0.2, "earths")
  28864. },
  28865. ]
  28866. ))
  28867. characterMakers.push(() => makeCharacter(
  28868. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28869. {
  28870. front: {
  28871. height: math.unit(152, "feet"),
  28872. name: "Front",
  28873. image: {
  28874. source: "./media/characters/kenzie-lee/front.svg",
  28875. extra: 1869/1774,
  28876. bottom: 128/1997
  28877. }
  28878. },
  28879. side: {
  28880. height: math.unit(86, "feet"),
  28881. name: "Side",
  28882. image: {
  28883. source: "./media/characters/kenzie-lee/side.svg",
  28884. extra: 930/815,
  28885. bottom: 177/1107
  28886. }
  28887. },
  28888. paw: {
  28889. height: math.unit(15, "feet"),
  28890. name: "Paw",
  28891. image: {
  28892. source: "./media/characters/kenzie-lee/paw.svg"
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Kenzie Flea",
  28899. height: math.unit(2, "mm"),
  28900. default: true
  28901. },
  28902. {
  28903. name: "Micro",
  28904. height: math.unit(2, "inches")
  28905. },
  28906. {
  28907. name: "Normal",
  28908. height: math.unit(152, "feet")
  28909. },
  28910. {
  28911. name: "Megamacro",
  28912. height: math.unit(7, "miles")
  28913. },
  28914. {
  28915. name: "Gigamacro",
  28916. height: math.unit(8000, "miles")
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28922. {
  28923. front: {
  28924. height: math.unit(6, "feet"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/withers/front.svg",
  28928. extra: 1935/1760,
  28929. bottom: 72/2007
  28930. }
  28931. },
  28932. back: {
  28933. height: math.unit(6, "feet"),
  28934. name: "Back",
  28935. image: {
  28936. source: "./media/characters/withers/back.svg",
  28937. extra: 1944/1792,
  28938. bottom: 12/1956
  28939. }
  28940. },
  28941. dressed: {
  28942. height: math.unit(6, "feet"),
  28943. name: "Dressed",
  28944. image: {
  28945. source: "./media/characters/withers/dressed.svg",
  28946. extra: 1937/1765,
  28947. bottom: 73/2010
  28948. }
  28949. },
  28950. phase1: {
  28951. height: math.unit(1.1, "feet"),
  28952. name: "Phase 1",
  28953. image: {
  28954. source: "./media/characters/withers/phase-1.svg",
  28955. extra: 1885/1232,
  28956. bottom: 0/1885
  28957. }
  28958. },
  28959. phase2: {
  28960. height: math.unit(1.05, "feet"),
  28961. name: "Phase 2",
  28962. image: {
  28963. source: "./media/characters/withers/phase-2.svg",
  28964. extra: 1792/1090,
  28965. bottom: 0/1792
  28966. }
  28967. },
  28968. partyWipe: {
  28969. height: math.unit(1.1, "feet"),
  28970. name: "Party Wipe",
  28971. image: {
  28972. source: "./media/characters/withers/party-wipe.svg",
  28973. extra: 1864/1207,
  28974. bottom: 0/1864
  28975. }
  28976. },
  28977. },
  28978. [
  28979. {
  28980. name: "Macro",
  28981. height: math.unit(167, "feet"),
  28982. default: true
  28983. },
  28984. {
  28985. name: "Megamacro",
  28986. height: math.unit(15, "miles")
  28987. }
  28988. ]
  28989. ))
  28990. characterMakers.push(() => makeCharacter(
  28991. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28992. {
  28993. front: {
  28994. height: math.unit(6 + 7 / 12, "feet"),
  28995. weight: math.unit(250, "lb"),
  28996. name: "Front",
  28997. image: {
  28998. source: "./media/characters/nemoskii/front.svg",
  28999. extra: 2270 / 1734,
  29000. bottom: 86 / 2354
  29001. }
  29002. },
  29003. back: {
  29004. height: math.unit(6 + 7 / 12, "feet"),
  29005. weight: math.unit(250, "lb"),
  29006. name: "Back",
  29007. image: {
  29008. source: "./media/characters/nemoskii/back.svg",
  29009. extra: 1845 / 1788,
  29010. bottom: 10.5 / 1852
  29011. }
  29012. },
  29013. head: {
  29014. height: math.unit(1.31, "feet"),
  29015. name: "Head",
  29016. image: {
  29017. source: "./media/characters/nemoskii/head.svg"
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Micro",
  29024. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29025. },
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(6 + 7 / 12, "feet"),
  29029. default: true
  29030. },
  29031. {
  29032. name: "Macro",
  29033. height: math.unit((6 + 7 / 12) * 150, "feet")
  29034. },
  29035. {
  29036. name: "Macro+",
  29037. height: math.unit((6 + 7 / 12) * 500, "feet")
  29038. },
  29039. {
  29040. name: "Megamacro",
  29041. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29042. },
  29043. ]
  29044. ))
  29045. characterMakers.push(() => makeCharacter(
  29046. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29047. {
  29048. front: {
  29049. height: math.unit(1, "mile"),
  29050. weight: math.unit(265261.9, "lb"),
  29051. name: "Front",
  29052. image: {
  29053. source: "./media/characters/shui/front.svg",
  29054. extra: 1633 / 1564,
  29055. bottom: 91.5 / 1726
  29056. }
  29057. },
  29058. },
  29059. [
  29060. {
  29061. name: "Macro",
  29062. height: math.unit(1, "mile"),
  29063. default: true
  29064. },
  29065. ]
  29066. ))
  29067. characterMakers.push(() => makeCharacter(
  29068. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29069. {
  29070. front: {
  29071. height: math.unit(12 + 6 / 12, "feet"),
  29072. weight: math.unit(1342, "lb"),
  29073. name: "Front",
  29074. image: {
  29075. source: "./media/characters/arokh-takakura/front.svg",
  29076. extra: 1089 / 1043,
  29077. bottom: 77.4 / 1176.7
  29078. }
  29079. },
  29080. back: {
  29081. height: math.unit(12 + 6 / 12, "feet"),
  29082. weight: math.unit(1342, "lb"),
  29083. name: "Back",
  29084. image: {
  29085. source: "./media/characters/arokh-takakura/back.svg",
  29086. extra: 1046 / 1019,
  29087. bottom: 102 / 1150
  29088. }
  29089. },
  29090. },
  29091. [
  29092. {
  29093. name: "Big",
  29094. height: math.unit(12 + 6 / 12, "feet"),
  29095. default: true
  29096. },
  29097. ]
  29098. ))
  29099. characterMakers.push(() => makeCharacter(
  29100. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29101. {
  29102. front: {
  29103. height: math.unit(5 + 6 / 12, "feet"),
  29104. weight: math.unit(150, "lb"),
  29105. name: "Front",
  29106. image: {
  29107. source: "./media/characters/theo/front.svg",
  29108. extra: 1184 / 1131,
  29109. bottom: 7.4 / 1191
  29110. }
  29111. },
  29112. },
  29113. [
  29114. {
  29115. name: "Micro",
  29116. height: math.unit(5, "inches")
  29117. },
  29118. {
  29119. name: "Normal",
  29120. height: math.unit(5 + 6 / 12, "feet"),
  29121. default: true
  29122. },
  29123. ]
  29124. ))
  29125. characterMakers.push(() => makeCharacter(
  29126. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29127. {
  29128. front: {
  29129. height: math.unit(5 + 9 / 12, "feet"),
  29130. weight: math.unit(130, "lb"),
  29131. name: "Front",
  29132. image: {
  29133. source: "./media/characters/cecelia-swift/front.svg",
  29134. extra: 502 / 484,
  29135. bottom: 23 / 523
  29136. }
  29137. },
  29138. back: {
  29139. height: math.unit(5 + 9 / 12, "feet"),
  29140. weight: math.unit(130, "lb"),
  29141. name: "Back",
  29142. image: {
  29143. source: "./media/characters/cecelia-swift/back.svg",
  29144. extra: 499 / 485,
  29145. bottom: 12 / 511
  29146. }
  29147. },
  29148. head: {
  29149. height: math.unit(0.90, "feet"),
  29150. name: "Head",
  29151. image: {
  29152. source: "./media/characters/cecelia-swift/head.svg"
  29153. }
  29154. },
  29155. rump: {
  29156. height: math.unit(1.75, "feet"),
  29157. name: "Rump",
  29158. image: {
  29159. source: "./media/characters/cecelia-swift/rump.svg"
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(5 + 9 / 12, "feet"),
  29167. default: true
  29168. },
  29169. {
  29170. name: "Big",
  29171. height: math.unit(50, "feet")
  29172. },
  29173. {
  29174. name: "Macro",
  29175. height: math.unit(100, "feet")
  29176. },
  29177. {
  29178. name: "Macro+",
  29179. height: math.unit(500, "feet")
  29180. },
  29181. {
  29182. name: "Macro++",
  29183. height: math.unit(1000, "feet")
  29184. },
  29185. ]
  29186. ))
  29187. characterMakers.push(() => makeCharacter(
  29188. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29189. {
  29190. front: {
  29191. height: math.unit(6, "feet"),
  29192. weight: math.unit(150, "lb"),
  29193. name: "Front",
  29194. image: {
  29195. source: "./media/characters/kaunan/front.svg",
  29196. extra: 2890 / 2523,
  29197. bottom: 49 / 2939
  29198. }
  29199. },
  29200. },
  29201. [
  29202. {
  29203. name: "Macro",
  29204. height: math.unit(150, "feet"),
  29205. default: true
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29211. {
  29212. dressed: {
  29213. height: math.unit(175, "cm"),
  29214. weight: math.unit(60, "kg"),
  29215. name: "Dressed",
  29216. image: {
  29217. source: "./media/characters/fei/dressed.svg",
  29218. extra: 1402/1278,
  29219. bottom: 27/1429
  29220. }
  29221. },
  29222. nude: {
  29223. height: math.unit(175, "cm"),
  29224. weight: math.unit(60, "kg"),
  29225. name: "Nude",
  29226. image: {
  29227. source: "./media/characters/fei/nude.svg",
  29228. extra: 1402/1278,
  29229. bottom: 27/1429
  29230. }
  29231. },
  29232. heels: {
  29233. height: math.unit(0.466, "feet"),
  29234. name: "Heels",
  29235. image: {
  29236. source: "./media/characters/fei/heels.svg",
  29237. extra: 156/152,
  29238. bottom: 28/184
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Mortal",
  29245. height: math.unit(175, "cm")
  29246. },
  29247. {
  29248. name: "Normal",
  29249. height: math.unit(3500, "m")
  29250. },
  29251. {
  29252. name: "Stroll",
  29253. height: math.unit(18.4, "km"),
  29254. default: true
  29255. },
  29256. {
  29257. name: "Showoff",
  29258. height: math.unit(175, "km")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(7, "feet"),
  29267. weight: math.unit(1000, "kg"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/edrax/front.svg",
  29271. extra: 2838 / 2550,
  29272. bottom: 130 / 2968
  29273. }
  29274. },
  29275. },
  29276. [
  29277. {
  29278. name: "Small",
  29279. height: math.unit(7, "feet")
  29280. },
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(1500, "meters")
  29284. },
  29285. {
  29286. name: "Mega",
  29287. height: math.unit(12000000, "km"),
  29288. default: true
  29289. },
  29290. {
  29291. name: "Megamacro",
  29292. height: math.unit(10600000, "lightyears")
  29293. },
  29294. {
  29295. name: "Hypermacro",
  29296. height: math.unit(256, "yottameters")
  29297. },
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29302. {
  29303. front: {
  29304. height: math.unit(10, "feet"),
  29305. weight: math.unit(750, "lb"),
  29306. name: "Front",
  29307. image: {
  29308. source: "./media/characters/clove/front.svg",
  29309. extra: 1918/1751,
  29310. bottom: 52/1970
  29311. }
  29312. },
  29313. back: {
  29314. height: math.unit(10, "feet"),
  29315. weight: math.unit(750, "lb"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/clove/back.svg",
  29319. extra: 1912/1747,
  29320. bottom: 50/1962
  29321. }
  29322. },
  29323. },
  29324. [
  29325. {
  29326. name: "Normal",
  29327. height: math.unit(10, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(4, "feet"),
  29337. weight: math.unit(50, "lb"),
  29338. name: "Front",
  29339. image: {
  29340. source: "./media/characters/alex-rabbit/front.svg",
  29341. extra: 507 / 458,
  29342. bottom: 18.5 / 527
  29343. }
  29344. },
  29345. back: {
  29346. height: math.unit(4, "feet"),
  29347. weight: math.unit(50, "lb"),
  29348. name: "Back",
  29349. image: {
  29350. source: "./media/characters/alex-rabbit/back.svg",
  29351. extra: 502 / 460,
  29352. bottom: 18.9 / 521
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Normal",
  29359. height: math.unit(4, "feet"),
  29360. default: true
  29361. },
  29362. ]
  29363. ))
  29364. characterMakers.push(() => makeCharacter(
  29365. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29366. {
  29367. front: {
  29368. height: math.unit(1 + 3 / 12, "feet"),
  29369. weight: math.unit(80, "lb"),
  29370. name: "Front",
  29371. image: {
  29372. source: "./media/characters/zander-rose/front.svg",
  29373. extra: 916 / 797,
  29374. bottom: 17 / 933
  29375. }
  29376. },
  29377. back: {
  29378. height: math.unit(1 + 3 / 12, "feet"),
  29379. weight: math.unit(80, "lb"),
  29380. name: "Back",
  29381. image: {
  29382. source: "./media/characters/zander-rose/back.svg",
  29383. extra: 903 / 779,
  29384. bottom: 31 / 934
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(1 + 3 / 12, "feet"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29398. {
  29399. anthro: {
  29400. height: math.unit(6, "feet"),
  29401. weight: math.unit(150, "lb"),
  29402. name: "Anthro",
  29403. image: {
  29404. source: "./media/characters/razz/anthro.svg",
  29405. extra: 1437 / 1343,
  29406. bottom: 48 / 1485
  29407. }
  29408. },
  29409. feral: {
  29410. height: math.unit(6, "feet"),
  29411. weight: math.unit(150, "lb"),
  29412. name: "Feral",
  29413. image: {
  29414. source: "./media/characters/razz/feral.svg",
  29415. extra: 2569 / 1385,
  29416. bottom: 95 / 2664
  29417. }
  29418. },
  29419. },
  29420. [
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(6, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(9 + 4 / 12, "feet"),
  29433. weight: math.unit(500, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/morrigan/front.svg",
  29437. extra: 2707 / 2579,
  29438. bottom: 156 / 2863
  29439. }
  29440. },
  29441. },
  29442. [
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(9 + 4 / 12, "feet"),
  29446. default: true
  29447. },
  29448. ]
  29449. ))
  29450. characterMakers.push(() => makeCharacter(
  29451. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29452. {
  29453. front: {
  29454. height: math.unit(5, "stories"),
  29455. weight: math.unit(4000, "lb"),
  29456. name: "Front",
  29457. image: {
  29458. source: "./media/characters/jenene/front.svg",
  29459. extra: 1780 / 1710,
  29460. bottom: 57 / 1837
  29461. }
  29462. },
  29463. },
  29464. [
  29465. {
  29466. name: "Normal",
  29467. height: math.unit(5, "stories"),
  29468. default: true
  29469. },
  29470. ]
  29471. ))
  29472. characterMakers.push(() => makeCharacter(
  29473. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29474. {
  29475. taurSfw: {
  29476. height: math.unit(10, "meters"),
  29477. weight: math.unit(17500, "kg"),
  29478. name: "Taur",
  29479. image: {
  29480. source: "./media/characters/faey/taur-sfw.svg",
  29481. extra: 1200 / 968,
  29482. bottom: 41 / 1241
  29483. }
  29484. },
  29485. chestmaw: {
  29486. height: math.unit(2.01, "meters"),
  29487. name: "Chestmaw",
  29488. image: {
  29489. source: "./media/characters/faey/chestmaw.svg"
  29490. }
  29491. },
  29492. foot: {
  29493. height: math.unit(2.43, "meters"),
  29494. name: "Foot",
  29495. image: {
  29496. source: "./media/characters/faey/foot.svg"
  29497. }
  29498. },
  29499. jaws: {
  29500. height: math.unit(1.66, "meters"),
  29501. name: "Jaws",
  29502. image: {
  29503. source: "./media/characters/faey/jaws.svg"
  29504. }
  29505. },
  29506. tongues: {
  29507. height: math.unit(2.01, "meters"),
  29508. name: "Tongues",
  29509. image: {
  29510. source: "./media/characters/faey/tongues.svg"
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Small",
  29517. height: math.unit(10, "meters"),
  29518. default: true
  29519. },
  29520. {
  29521. name: "Big",
  29522. height: math.unit(500000, "km")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29528. {
  29529. front: {
  29530. height: math.unit(7, "feet"),
  29531. weight: math.unit(275, "lb"),
  29532. name: "Front",
  29533. image: {
  29534. source: "./media/characters/roku/front.svg",
  29535. extra: 903 / 878,
  29536. bottom: 37 / 940
  29537. }
  29538. },
  29539. },
  29540. [
  29541. {
  29542. name: "Normal",
  29543. height: math.unit(7, "feet"),
  29544. default: true
  29545. },
  29546. {
  29547. name: "Macro",
  29548. height: math.unit(500, "feet")
  29549. },
  29550. {
  29551. name: "Megamacro",
  29552. height: math.unit(200, "miles")
  29553. },
  29554. ]
  29555. ))
  29556. characterMakers.push(() => makeCharacter(
  29557. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29558. {
  29559. front: {
  29560. height: math.unit(6 + 2 / 12, "feet"),
  29561. weight: math.unit(150, "lb"),
  29562. name: "Front",
  29563. image: {
  29564. source: "./media/characters/lira/front.svg",
  29565. extra: 1727 / 1605,
  29566. bottom: 26 / 1753
  29567. }
  29568. },
  29569. back: {
  29570. height: math.unit(6 + 2 / 12, "feet"),
  29571. weight: math.unit(150, "lb"),
  29572. name: "Back",
  29573. image: {
  29574. source: "./media/characters/lira/back.svg",
  29575. extra: 1713/1621,
  29576. bottom: 20/1733
  29577. }
  29578. },
  29579. hand: {
  29580. height: math.unit(0.75, "feet"),
  29581. name: "Hand",
  29582. image: {
  29583. source: "./media/characters/lira/hand.svg"
  29584. }
  29585. },
  29586. maw: {
  29587. height: math.unit(0.65, "feet"),
  29588. name: "Maw",
  29589. image: {
  29590. source: "./media/characters/lira/maw.svg"
  29591. }
  29592. },
  29593. pawDigi: {
  29594. height: math.unit(1.6, "feet"),
  29595. name: "Paw Digi",
  29596. image: {
  29597. source: "./media/characters/lira/paw-digi.svg"
  29598. }
  29599. },
  29600. pawPlanti: {
  29601. height: math.unit(1.4, "feet"),
  29602. name: "Paw Planti",
  29603. image: {
  29604. source: "./media/characters/lira/paw-planti.svg"
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(6 + 2 / 12, "feet"),
  29612. default: true
  29613. },
  29614. {
  29615. name: "Macro",
  29616. height: math.unit(100, "feet")
  29617. },
  29618. {
  29619. name: "Macro²",
  29620. height: math.unit(1600, "feet")
  29621. },
  29622. {
  29623. name: "Planetary",
  29624. height: math.unit(20, "earths")
  29625. },
  29626. ]
  29627. ))
  29628. characterMakers.push(() => makeCharacter(
  29629. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29630. {
  29631. front: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(150, "lb"),
  29634. name: "Front",
  29635. image: {
  29636. source: "./media/characters/hadjet/front.svg",
  29637. extra: 1480 / 1346,
  29638. bottom: 26 / 1506
  29639. }
  29640. },
  29641. frontNsfw: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(150, "lb"),
  29644. name: "Front (NSFW)",
  29645. image: {
  29646. source: "./media/characters/hadjet/front-nsfw.svg",
  29647. extra: 1440 / 1358,
  29648. bottom: 52 / 1492
  29649. }
  29650. },
  29651. },
  29652. [
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(10, "stories"),
  29656. default: true
  29657. },
  29658. {
  29659. name: "Megamacro",
  29660. height: math.unit(1.5, "miles")
  29661. },
  29662. {
  29663. name: "Megamacro+",
  29664. height: math.unit(5, "miles")
  29665. },
  29666. ]
  29667. ))
  29668. characterMakers.push(() => makeCharacter(
  29669. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29670. {
  29671. side: {
  29672. height: math.unit(106, "feet"),
  29673. weight: math.unit(500, "tonnes"),
  29674. name: "Side",
  29675. image: {
  29676. source: "./media/characters/kodran/side.svg",
  29677. extra: 553 / 480,
  29678. bottom: 33 / 586
  29679. }
  29680. },
  29681. front: {
  29682. height: math.unit(132, "feet"),
  29683. weight: math.unit(500, "tonnes"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/kodran/front.svg",
  29687. extra: 667 / 643,
  29688. bottom: 42 / 709
  29689. }
  29690. },
  29691. flying: {
  29692. height: math.unit(350, "feet"),
  29693. weight: math.unit(500, "tonnes"),
  29694. name: "Flying",
  29695. image: {
  29696. source: "./media/characters/kodran/flying.svg"
  29697. }
  29698. },
  29699. foot: {
  29700. height: math.unit(33, "feet"),
  29701. name: "Foot",
  29702. image: {
  29703. source: "./media/characters/kodran/foot.svg"
  29704. }
  29705. },
  29706. footFront: {
  29707. height: math.unit(19, "feet"),
  29708. name: "Foot (Front)",
  29709. image: {
  29710. source: "./media/characters/kodran/foot-front.svg",
  29711. extra: 261 / 261,
  29712. bottom: 91 / 352
  29713. }
  29714. },
  29715. headFront: {
  29716. height: math.unit(53, "feet"),
  29717. name: "Head (Front)",
  29718. image: {
  29719. source: "./media/characters/kodran/head-front.svg"
  29720. }
  29721. },
  29722. headSide: {
  29723. height: math.unit(65, "feet"),
  29724. name: "Head (Side)",
  29725. image: {
  29726. source: "./media/characters/kodran/head-side.svg"
  29727. }
  29728. },
  29729. throat: {
  29730. height: math.unit(79, "feet"),
  29731. name: "Throat",
  29732. image: {
  29733. source: "./media/characters/kodran/throat.svg"
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Large",
  29740. height: math.unit(106, "feet"),
  29741. default: true
  29742. },
  29743. ]
  29744. ))
  29745. characterMakers.push(() => makeCharacter(
  29746. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29747. {
  29748. side: {
  29749. height: math.unit(11, "feet"),
  29750. weight: math.unit(150, "lb"),
  29751. name: "Side",
  29752. image: {
  29753. source: "./media/characters/pyxaron/side.svg",
  29754. extra: 305 / 195,
  29755. bottom: 17 / 322
  29756. }
  29757. },
  29758. },
  29759. [
  29760. {
  29761. name: "Normal",
  29762. height: math.unit(11, "feet"),
  29763. default: true
  29764. },
  29765. ]
  29766. ))
  29767. characterMakers.push(() => makeCharacter(
  29768. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29769. {
  29770. front: {
  29771. height: math.unit(6, "feet"),
  29772. weight: math.unit(150, "lb"),
  29773. name: "Front",
  29774. image: {
  29775. source: "./media/characters/meep/front.svg",
  29776. extra: 88 / 80,
  29777. bottom: 6 / 94
  29778. }
  29779. },
  29780. },
  29781. [
  29782. {
  29783. name: "Fun Sized",
  29784. height: math.unit(2, "inches"),
  29785. default: true
  29786. },
  29787. {
  29788. name: "Friend Sized",
  29789. height: math.unit(8, "inches")
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(15, "feet"),
  29798. weight: math.unit(2500, "lb"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/holly-rabbit/front.svg",
  29802. extra: 1433 / 1233,
  29803. bottom: 125 / 1558
  29804. }
  29805. },
  29806. dick: {
  29807. height: math.unit(4.6, "feet"),
  29808. name: "Dick",
  29809. image: {
  29810. source: "./media/characters/holly-rabbit/dick.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Normal",
  29817. height: math.unit(15, "feet"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Macro",
  29822. height: math.unit(250, "feet")
  29823. },
  29824. {
  29825. name: "Macro+",
  29826. height: math.unit(2500, "feet")
  29827. },
  29828. ]
  29829. ))
  29830. characterMakers.push(() => makeCharacter(
  29831. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29832. {
  29833. front: {
  29834. height: math.unit(3.02, "meters"),
  29835. weight: math.unit(500, "kg"),
  29836. name: "Front",
  29837. image: {
  29838. source: "./media/characters/drena/front.svg",
  29839. extra: 282 / 243,
  29840. bottom: 8 / 290
  29841. }
  29842. },
  29843. side: {
  29844. height: math.unit(3.02, "meters"),
  29845. weight: math.unit(500, "kg"),
  29846. name: "Side",
  29847. image: {
  29848. source: "./media/characters/drena/side.svg",
  29849. extra: 280 / 245,
  29850. bottom: 10 / 290
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(3.02, "meters"),
  29855. weight: math.unit(500, "kg"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/drena/back.svg",
  29859. extra: 278 / 243,
  29860. bottom: 2 / 280
  29861. }
  29862. },
  29863. foot: {
  29864. height: math.unit(0.75, "meters"),
  29865. name: "Foot",
  29866. image: {
  29867. source: "./media/characters/drena/foot.svg"
  29868. }
  29869. },
  29870. maw: {
  29871. height: math.unit(0.82, "meters"),
  29872. name: "Maw",
  29873. image: {
  29874. source: "./media/characters/drena/maw.svg"
  29875. }
  29876. },
  29877. eating: {
  29878. height: math.unit(0.75, "meters"),
  29879. name: "Eating",
  29880. image: {
  29881. source: "./media/characters/drena/eating.svg"
  29882. }
  29883. },
  29884. rump: {
  29885. height: math.unit(0.93, "meters"),
  29886. name: "Rump",
  29887. image: {
  29888. source: "./media/characters/drena/rump.svg"
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(3.02, "meters"),
  29896. default: true
  29897. },
  29898. ]
  29899. ))
  29900. characterMakers.push(() => makeCharacter(
  29901. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29902. {
  29903. front: {
  29904. height: math.unit(6 + 4 / 12, "feet"),
  29905. weight: math.unit(250, "lb"),
  29906. name: "Front",
  29907. image: {
  29908. source: "./media/characters/remmyzilla/front.svg",
  29909. extra: 4033 / 3588,
  29910. bottom: 123 / 4156
  29911. }
  29912. },
  29913. back: {
  29914. height: math.unit(6 + 4 / 12, "feet"),
  29915. weight: math.unit(250, "lb"),
  29916. name: "Back",
  29917. image: {
  29918. source: "./media/characters/remmyzilla/back.svg",
  29919. extra: 2687 / 2555,
  29920. bottom: 48 / 2735
  29921. }
  29922. },
  29923. paw: {
  29924. height: math.unit(1.73, "feet"),
  29925. name: "Paw",
  29926. image: {
  29927. source: "./media/characters/remmyzilla/paw.svg"
  29928. },
  29929. extraAttributes: {
  29930. "toeSize": {
  29931. name: "Toe Size",
  29932. power: 2,
  29933. type: "area",
  29934. base: math.unit(0.0035, "m^2")
  29935. },
  29936. "padSize": {
  29937. name: "Pad Size",
  29938. power: 2,
  29939. type: "area",
  29940. base: math.unit(0.015, "m^2")
  29941. },
  29942. "pawsize": {
  29943. name: "Paw Size",
  29944. power: 2,
  29945. type: "area",
  29946. base: math.unit(0.072, "m^2")
  29947. },
  29948. }
  29949. },
  29950. maw: {
  29951. height: math.unit(1.73, "feet"),
  29952. name: "Maw",
  29953. image: {
  29954. source: "./media/characters/remmyzilla/maw.svg"
  29955. }
  29956. },
  29957. },
  29958. [
  29959. {
  29960. name: "Normal",
  29961. height: math.unit(6 + 4 / 12, "feet")
  29962. },
  29963. {
  29964. name: "Minimacro",
  29965. height: math.unit(12 + 8 / 12, "feet")
  29966. },
  29967. {
  29968. name: "Normal",
  29969. height: math.unit(640, "feet"),
  29970. default: true
  29971. },
  29972. {
  29973. name: "Megamacro",
  29974. height: math.unit(6400, "feet")
  29975. },
  29976. {
  29977. name: "Gigamacro",
  29978. height: math.unit(64000, "miles")
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29984. {
  29985. front: {
  29986. height: math.unit(2.5, "meters"),
  29987. weight: math.unit(300, "lb"),
  29988. name: "Front",
  29989. image: {
  29990. source: "./media/characters/lawrence/front.svg",
  29991. extra: 357 / 335,
  29992. bottom: 30 / 387
  29993. }
  29994. },
  29995. back: {
  29996. height: math.unit(2.5, "meters"),
  29997. weight: math.unit(300, "lb"),
  29998. name: "Back",
  29999. image: {
  30000. source: "./media/characters/lawrence/back.svg",
  30001. extra: 357 / 338,
  30002. bottom: 16 / 373
  30003. }
  30004. },
  30005. head: {
  30006. height: math.unit(0.9, "meter"),
  30007. name: "Head",
  30008. image: {
  30009. source: "./media/characters/lawrence/head.svg"
  30010. }
  30011. },
  30012. maw: {
  30013. height: math.unit(0.7, "meter"),
  30014. name: "Maw",
  30015. image: {
  30016. source: "./media/characters/lawrence/maw.svg"
  30017. }
  30018. },
  30019. footBottom: {
  30020. height: math.unit(0.5, "meter"),
  30021. name: "Foot (Bottom)",
  30022. image: {
  30023. source: "./media/characters/lawrence/foot-bottom.svg"
  30024. }
  30025. },
  30026. footTop: {
  30027. height: math.unit(0.5, "meter"),
  30028. name: "Foot (Top)",
  30029. image: {
  30030. source: "./media/characters/lawrence/foot-top.svg"
  30031. }
  30032. },
  30033. },
  30034. [
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(2.5, "meters"),
  30038. default: true
  30039. },
  30040. {
  30041. name: "Macro",
  30042. height: math.unit(95, "meters")
  30043. },
  30044. {
  30045. name: "Megamacro",
  30046. height: math.unit(150, "km")
  30047. },
  30048. ]
  30049. ))
  30050. characterMakers.push(() => makeCharacter(
  30051. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30052. {
  30053. front: {
  30054. height: math.unit(4.2, "meters"),
  30055. name: "Front",
  30056. image: {
  30057. source: "./media/characters/sydney/front.svg",
  30058. extra: 1323 / 1277,
  30059. bottom: 111 / 1434
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Normal",
  30066. height: math.unit(4.2, "meters"),
  30067. default: true
  30068. },
  30069. ]
  30070. ))
  30071. characterMakers.push(() => makeCharacter(
  30072. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30073. {
  30074. back: {
  30075. height: math.unit(201, "feet"),
  30076. name: "Back",
  30077. image: {
  30078. source: "./media/characters/jessica/back.svg",
  30079. extra: 273 / 259,
  30080. bottom: 7 / 280
  30081. }
  30082. },
  30083. },
  30084. [
  30085. {
  30086. name: "Normal",
  30087. height: math.unit(201, "feet"),
  30088. default: true
  30089. },
  30090. {
  30091. name: "Megamacro",
  30092. height: math.unit(8, "miles")
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30098. {
  30099. side: {
  30100. height: math.unit(5.6, "m"),
  30101. weight: math.unit(8000, "kg"),
  30102. name: "Side",
  30103. image: {
  30104. source: "./media/characters/victoria/side.svg",
  30105. extra: 1542/1229,
  30106. bottom: 124/1666
  30107. }
  30108. },
  30109. maw: {
  30110. height: math.unit(7.14, "feet"),
  30111. name: "Maw",
  30112. image: {
  30113. source: "./media/characters/victoria/maw.svg"
  30114. }
  30115. },
  30116. },
  30117. [
  30118. {
  30119. name: "Normal",
  30120. height: math.unit(5.6, "m"),
  30121. default: true
  30122. },
  30123. ]
  30124. ))
  30125. characterMakers.push(() => makeCharacter(
  30126. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30127. {
  30128. front: {
  30129. height: math.unit(5 + 6 / 12, "feet"),
  30130. name: "Front",
  30131. image: {
  30132. source: "./media/characters/cat/front.svg",
  30133. extra: 1449/1295,
  30134. bottom: 34/1483
  30135. },
  30136. form: "cat",
  30137. default: true
  30138. },
  30139. back: {
  30140. height: math.unit(5 + 6 / 12, "feet"),
  30141. name: "Back",
  30142. image: {
  30143. source: "./media/characters/cat/back.svg",
  30144. extra: 1466/1301,
  30145. bottom: 19/1485
  30146. },
  30147. form: "cat"
  30148. },
  30149. taur: {
  30150. height: math.unit(7, "feet"),
  30151. name: "Taur",
  30152. image: {
  30153. source: "./media/characters/cat/taur.svg",
  30154. extra: 1389/1233,
  30155. bottom: 83/1472
  30156. },
  30157. form: "taur",
  30158. default: true
  30159. },
  30160. lucarioFront: {
  30161. height: math.unit(4, "feet"),
  30162. name: "Lucario (Front)",
  30163. image: {
  30164. source: "./media/characters/cat/lucario-front.svg",
  30165. extra: 1149/1019,
  30166. bottom: 84/1233
  30167. },
  30168. form: "lucario",
  30169. default: true
  30170. },
  30171. lucarioBack: {
  30172. height: math.unit(4, "feet"),
  30173. name: "Lucario (Back)",
  30174. image: {
  30175. source: "./media/characters/cat/lucario-back.svg",
  30176. extra: 1190/1059,
  30177. bottom: 33/1223
  30178. },
  30179. form: "lucario"
  30180. },
  30181. megaLucario: {
  30182. height: math.unit(4, "feet"),
  30183. name: "Mega Lucario",
  30184. image: {
  30185. source: "./media/characters/cat/mega-lucario.svg",
  30186. extra: 1515 / 1319,
  30187. bottom: 63 / 1578
  30188. },
  30189. form: "lucario"
  30190. },
  30191. nickit: {
  30192. height: math.unit(2, "feet"),
  30193. name: "Nickit",
  30194. image: {
  30195. source: "./media/characters/cat/nickit.svg",
  30196. extra: 1980 / 1585,
  30197. bottom: 102 / 2082
  30198. },
  30199. form: "nickit",
  30200. default: true
  30201. },
  30202. lopunnyFront: {
  30203. height: math.unit(5, "feet"),
  30204. name: "Lopunny (Front)",
  30205. image: {
  30206. source: "./media/characters/cat/lopunny-front.svg",
  30207. extra: 1782 / 1469,
  30208. bottom: 38 / 1820
  30209. },
  30210. form: "lopunny",
  30211. default: true
  30212. },
  30213. lopunnyBack: {
  30214. height: math.unit(5, "feet"),
  30215. name: "Lopunny (Back)",
  30216. image: {
  30217. source: "./media/characters/cat/lopunny-back.svg",
  30218. extra: 1660 / 1490,
  30219. bottom: 25 / 1685
  30220. },
  30221. form: "lopunny"
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Really small",
  30227. height: math.unit(1, "nm")
  30228. },
  30229. {
  30230. name: "Micro",
  30231. height: math.unit(5, "inches")
  30232. },
  30233. {
  30234. name: "Normal",
  30235. height: math.unit(5 + 6 / 12, "feet"),
  30236. default: true
  30237. },
  30238. {
  30239. name: "Macro",
  30240. height: math.unit(50, "feet")
  30241. },
  30242. {
  30243. name: "Macro+",
  30244. height: math.unit(150, "feet")
  30245. },
  30246. {
  30247. name: "Megamacro",
  30248. height: math.unit(100, "miles")
  30249. },
  30250. ]
  30251. ))
  30252. characterMakers.push(() => makeCharacter(
  30253. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30254. {
  30255. front: {
  30256. height: math.unit(63.4, "meters"),
  30257. weight: math.unit(3.28349e+6, "kilograms"),
  30258. name: "Front",
  30259. image: {
  30260. source: "./media/characters/kirina-violet/front.svg",
  30261. extra: 2812 / 2725,
  30262. bottom: 0 / 2812
  30263. }
  30264. },
  30265. back: {
  30266. height: math.unit(63.4, "meters"),
  30267. weight: math.unit(3.28349e+6, "kilograms"),
  30268. name: "Back",
  30269. image: {
  30270. source: "./media/characters/kirina-violet/back.svg",
  30271. extra: 2812 / 2725,
  30272. bottom: 0 / 2812
  30273. }
  30274. },
  30275. mouth: {
  30276. height: math.unit(4.35, "meters"),
  30277. name: "Mouth",
  30278. image: {
  30279. source: "./media/characters/kirina-violet/mouth.svg"
  30280. }
  30281. },
  30282. paw: {
  30283. height: math.unit(5.6, "meters"),
  30284. name: "Paw",
  30285. image: {
  30286. source: "./media/characters/kirina-violet/paw.svg"
  30287. }
  30288. },
  30289. tail: {
  30290. height: math.unit(18, "meters"),
  30291. name: "Tail",
  30292. image: {
  30293. source: "./media/characters/kirina-violet/tail.svg"
  30294. }
  30295. },
  30296. },
  30297. [
  30298. {
  30299. name: "Macro",
  30300. height: math.unit(63.4, "meters"),
  30301. default: true
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(75, "feet"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/cat-gigachu/front.svg",
  30313. extra: 1239/1027,
  30314. bottom: 32/1271
  30315. }
  30316. },
  30317. back: {
  30318. height: math.unit(75, "feet"),
  30319. name: "Back",
  30320. image: {
  30321. source: "./media/characters/cat-gigachu/back.svg",
  30322. extra: 1229/1030,
  30323. bottom: 9/1238
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "Dynamax",
  30330. height: math.unit(75, "feet"),
  30331. default: true
  30332. },
  30333. ]
  30334. ))
  30335. characterMakers.push(() => makeCharacter(
  30336. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30337. {
  30338. front: {
  30339. height: math.unit(6, "feet"),
  30340. weight: math.unit(150, "lb"),
  30341. name: "Front",
  30342. image: {
  30343. source: "./media/characters/sfaiyan/front.svg",
  30344. extra: 999 / 978,
  30345. bottom: 5 / 1004
  30346. }
  30347. },
  30348. },
  30349. [
  30350. {
  30351. name: "Normal",
  30352. height: math.unit(1.82, "meters")
  30353. },
  30354. {
  30355. name: "Giant",
  30356. height: math.unit(2.27, "km"),
  30357. default: true
  30358. },
  30359. ]
  30360. ))
  30361. characterMakers.push(() => makeCharacter(
  30362. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30363. {
  30364. front: {
  30365. height: math.unit(179, "cm"),
  30366. weight: math.unit(100, "kg"),
  30367. name: "Front",
  30368. image: {
  30369. source: "./media/characters/raunehkeli/front.svg",
  30370. extra: 1934 / 1926,
  30371. bottom: 0 / 1934
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(179, "cm")
  30379. },
  30380. {
  30381. name: "Maximum",
  30382. height: math.unit(575, "meters"),
  30383. default: true
  30384. },
  30385. ]
  30386. ))
  30387. characterMakers.push(() => makeCharacter(
  30388. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30389. {
  30390. front: {
  30391. height: math.unit(6, "feet"),
  30392. weight: math.unit(150, "lb"),
  30393. name: "Front",
  30394. image: {
  30395. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30396. extra: 2625 / 2518,
  30397. bottom: 60 / 2685
  30398. }
  30399. },
  30400. },
  30401. [
  30402. {
  30403. name: "Normal",
  30404. height: math.unit(6 + 2 / 12, "feet")
  30405. },
  30406. {
  30407. name: "Macro",
  30408. height: math.unit(1180, "feet"),
  30409. default: true
  30410. },
  30411. ]
  30412. ))
  30413. characterMakers.push(() => makeCharacter(
  30414. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30415. {
  30416. front: {
  30417. height: math.unit(5 + 6 / 12, "feet"),
  30418. weight: math.unit(108, "lb"),
  30419. name: "Front",
  30420. image: {
  30421. source: "./media/characters/lilith-zott/front.svg",
  30422. extra: 2510 / 2238,
  30423. bottom: 100 / 2610
  30424. }
  30425. },
  30426. frontDressed: {
  30427. height: math.unit(5 + 6 / 12, "feet"),
  30428. weight: math.unit(108, "lb"),
  30429. name: "Front (Dressed)",
  30430. image: {
  30431. source: "./media/characters/lilith-zott/front-dressed.svg",
  30432. extra: 2510 / 2238,
  30433. bottom: 100 / 2610
  30434. }
  30435. },
  30436. },
  30437. [
  30438. {
  30439. name: "Normal",
  30440. height: math.unit(5 + 6 / 12, "feet")
  30441. },
  30442. {
  30443. name: "Macro",
  30444. height: math.unit(1030, "feet"),
  30445. default: true
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(6, "feet"),
  30454. weight: math.unit(150, "lb"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30458. extra: 2567 / 2435,
  30459. bottom: 39 / 2606
  30460. }
  30461. },
  30462. frontSuper: {
  30463. height: math.unit(6, "feet"),
  30464. name: "Front (Super)",
  30465. image: {
  30466. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30467. extra: 2567 / 2435,
  30468. bottom: 39 / 2606
  30469. }
  30470. },
  30471. },
  30472. [
  30473. {
  30474. name: "Normal",
  30475. height: math.unit(5 + 10 / 12, "feet")
  30476. },
  30477. {
  30478. name: "Macro",
  30479. height: math.unit(1100, "feet"),
  30480. default: true
  30481. },
  30482. ]
  30483. ))
  30484. characterMakers.push(() => makeCharacter(
  30485. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30486. {
  30487. front: {
  30488. height: math.unit(100, "miles"),
  30489. name: "Front",
  30490. image: {
  30491. source: "./media/characters/sona/front.svg",
  30492. extra: 2433 / 2201,
  30493. bottom: 53 / 2486
  30494. }
  30495. },
  30496. foot: {
  30497. height: math.unit(16.1, "miles"),
  30498. name: "Foot",
  30499. image: {
  30500. source: "./media/characters/sona/foot.svg"
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Macro",
  30507. height: math.unit(100, "miles"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30514. {
  30515. front: {
  30516. height: math.unit(6, "feet"),
  30517. weight: math.unit(150, "lb"),
  30518. name: "Front",
  30519. image: {
  30520. source: "./media/characters/bailey/front.svg",
  30521. extra: 1778 / 1724,
  30522. bottom: 30 / 1808
  30523. }
  30524. },
  30525. },
  30526. [
  30527. {
  30528. name: "Micro",
  30529. height: math.unit(4, "inches")
  30530. },
  30531. {
  30532. name: "Normal",
  30533. height: math.unit(5 + 5 / 12, "feet"),
  30534. default: true
  30535. },
  30536. {
  30537. name: "Macro",
  30538. height: math.unit(250, "feet")
  30539. },
  30540. {
  30541. name: "Megamacro",
  30542. height: math.unit(100, "miles")
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(5 + 2 / 12, "feet"),
  30551. weight: math.unit(120, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/snaps/front.svg",
  30555. extra: 2370 / 2177,
  30556. bottom: 48 / 2418
  30557. }
  30558. },
  30559. back: {
  30560. height: math.unit(5 + 2 / 12, "feet"),
  30561. weight: math.unit(120, "lb"),
  30562. name: "Back",
  30563. image: {
  30564. source: "./media/characters/snaps/back.svg",
  30565. extra: 2408 / 2258,
  30566. bottom: 15 / 2423
  30567. }
  30568. },
  30569. },
  30570. [
  30571. {
  30572. name: "Micro",
  30573. height: math.unit(9, "inches")
  30574. },
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(5 + 2 / 12, "feet"),
  30578. default: true
  30579. },
  30580. {
  30581. name: "Mini Macro",
  30582. height: math.unit(10, "feet")
  30583. },
  30584. ]
  30585. ))
  30586. characterMakers.push(() => makeCharacter(
  30587. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30588. {
  30589. front: {
  30590. height: math.unit(1.8, "meters"),
  30591. weight: math.unit(85, "kg"),
  30592. name: "Front",
  30593. image: {
  30594. source: "./media/characters/azteck/front.svg",
  30595. extra: 2815 / 2625,
  30596. bottom: 89 / 2904
  30597. }
  30598. },
  30599. back: {
  30600. height: math.unit(1.8, "meters"),
  30601. weight: math.unit(85, "kg"),
  30602. name: "Back",
  30603. image: {
  30604. source: "./media/characters/azteck/back.svg",
  30605. extra: 2856 / 2648,
  30606. bottom: 85 / 2941
  30607. }
  30608. },
  30609. frontDressed: {
  30610. height: math.unit(1.8, "meters"),
  30611. weight: math.unit(85, "kg"),
  30612. name: "Front (Dressed)",
  30613. image: {
  30614. source: "./media/characters/azteck/front-dressed.svg",
  30615. extra: 2147 / 2003,
  30616. bottom: 68 / 2215
  30617. }
  30618. },
  30619. head: {
  30620. height: math.unit(0.47, "meters"),
  30621. weight: math.unit(85, "kg"),
  30622. name: "Head",
  30623. image: {
  30624. source: "./media/characters/azteck/head.svg"
  30625. }
  30626. },
  30627. },
  30628. [
  30629. {
  30630. name: "Bite sized",
  30631. height: math.unit(16, "cm")
  30632. },
  30633. {
  30634. name: "Normal",
  30635. height: math.unit(1.8, "meters"),
  30636. default: true
  30637. },
  30638. ]
  30639. ))
  30640. characterMakers.push(() => makeCharacter(
  30641. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30642. {
  30643. front: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Front",
  30647. image: {
  30648. source: "./media/characters/pidge/front.svg",
  30649. extra: 1936/1820,
  30650. bottom: 0/1936
  30651. }
  30652. },
  30653. back: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Back",
  30657. image: {
  30658. source: "./media/characters/pidge/back.svg",
  30659. extra: 1938/1843,
  30660. bottom: 0/1938
  30661. }
  30662. },
  30663. casual: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Casual",
  30667. image: {
  30668. source: "./media/characters/pidge/casual.svg",
  30669. extra: 1936/1820,
  30670. bottom: 0/1936
  30671. }
  30672. },
  30673. tech: {
  30674. height: math.unit(6, "feet"),
  30675. weight: math.unit(150, "lb"),
  30676. name: "Tech",
  30677. image: {
  30678. source: "./media/characters/pidge/tech.svg",
  30679. extra: 1802/1682,
  30680. bottom: 0/1802
  30681. }
  30682. },
  30683. head: {
  30684. height: math.unit(1.61, "feet"),
  30685. name: "Head",
  30686. image: {
  30687. source: "./media/characters/pidge/head.svg"
  30688. }
  30689. },
  30690. collar: {
  30691. height: math.unit(0.82, "feet"),
  30692. name: "Collar",
  30693. image: {
  30694. source: "./media/characters/pidge/collar.svg"
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Macro",
  30701. height: math.unit(2, "mile"),
  30702. default: true
  30703. },
  30704. {
  30705. name: "PUPPY",
  30706. height: math.unit(20, "miles")
  30707. },
  30708. ]
  30709. ))
  30710. characterMakers.push(() => makeCharacter(
  30711. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30712. {
  30713. front: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Front",
  30717. image: {
  30718. source: "./media/characters/en/front.svg",
  30719. extra: 1697 / 1563,
  30720. bottom: 103 / 1800
  30721. }
  30722. },
  30723. back: {
  30724. height: math.unit(6, "feet"),
  30725. weight: math.unit(150, "lb"),
  30726. name: "Back",
  30727. image: {
  30728. source: "./media/characters/en/back.svg",
  30729. extra: 1700 / 1570,
  30730. bottom: 51 / 1751
  30731. }
  30732. },
  30733. frontDressed: {
  30734. height: math.unit(6, "feet"),
  30735. weight: math.unit(150, "lb"),
  30736. name: "Front (Dressed)",
  30737. image: {
  30738. source: "./media/characters/en/front-dressed.svg",
  30739. extra: 1697 / 1563,
  30740. bottom: 103 / 1800
  30741. }
  30742. },
  30743. backDressed: {
  30744. height: math.unit(6, "feet"),
  30745. weight: math.unit(150, "lb"),
  30746. name: "Back (Dressed)",
  30747. image: {
  30748. source: "./media/characters/en/back-dressed.svg",
  30749. extra: 1700 / 1570,
  30750. bottom: 51 / 1751
  30751. }
  30752. },
  30753. },
  30754. [
  30755. {
  30756. name: "Macro",
  30757. height: math.unit(210, "feet"),
  30758. default: true
  30759. },
  30760. ]
  30761. ))
  30762. characterMakers.push(() => makeCharacter(
  30763. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30764. {
  30765. front: {
  30766. height: math.unit(6, "feet"),
  30767. weight: math.unit(150, "lb"),
  30768. name: "Front",
  30769. image: {
  30770. source: "./media/characters/haze-orris/front.svg",
  30771. extra: 3975 / 3525,
  30772. bottom: 137 / 4112
  30773. }
  30774. },
  30775. },
  30776. [
  30777. {
  30778. name: "Micro",
  30779. height: math.unit(150, "mm"),
  30780. default: true
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Front",
  30791. image: {
  30792. source: "./media/characters/casselene-yaro/front.svg",
  30793. extra: 4721 / 4541,
  30794. bottom: 82 / 4803
  30795. }
  30796. },
  30797. back: {
  30798. height: math.unit(6, "feet"),
  30799. weight: math.unit(150, "lb"),
  30800. name: "Back",
  30801. image: {
  30802. source: "./media/characters/casselene-yaro/back.svg",
  30803. extra: 4569 / 4377,
  30804. bottom: 69 / 4638
  30805. }
  30806. },
  30807. dressed: {
  30808. height: math.unit(6, "feet"),
  30809. weight: math.unit(150, "lb"),
  30810. name: "Dressed",
  30811. image: {
  30812. source: "./media/characters/casselene-yaro/dressed.svg",
  30813. extra: 4721 / 4541,
  30814. bottom: 82 / 4803
  30815. }
  30816. },
  30817. maw: {
  30818. height: math.unit(1, "feet"),
  30819. name: "Maw",
  30820. image: {
  30821. source: "./media/characters/casselene-yaro/maw.svg"
  30822. }
  30823. },
  30824. },
  30825. [
  30826. {
  30827. name: "Macro",
  30828. height: math.unit(190, "feet"),
  30829. default: true
  30830. },
  30831. ]
  30832. ))
  30833. characterMakers.push(() => makeCharacter(
  30834. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30835. {
  30836. front: {
  30837. height: math.unit(10, "feet"),
  30838. weight: math.unit(15015, "lb"),
  30839. name: "Front",
  30840. image: {
  30841. source: "./media/characters/platine/front.svg",
  30842. extra: 1428/1353,
  30843. bottom: 31/1459
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(10, "feet"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Macro",
  30855. height: math.unit(100, "feet")
  30856. },
  30857. {
  30858. name: "Megamacro",
  30859. height: math.unit(1000, "feet")
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(15 + 5 / 12, "feet"),
  30868. weight: math.unit(4600, "lb"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/neapolitan-ananassa/front.svg",
  30872. extra: 2903 / 2736,
  30873. bottom: 0 / 2903
  30874. }
  30875. },
  30876. side: {
  30877. height: math.unit(15 + 5 / 12, "feet"),
  30878. weight: math.unit(4600, "lb"),
  30879. name: "Side",
  30880. image: {
  30881. source: "./media/characters/neapolitan-ananassa/side.svg",
  30882. extra: 2925 / 2719,
  30883. bottom: 0 / 2925
  30884. }
  30885. },
  30886. back: {
  30887. height: math.unit(15 + 5 / 12, "feet"),
  30888. weight: math.unit(4600, "lb"),
  30889. name: "Back",
  30890. image: {
  30891. source: "./media/characters/neapolitan-ananassa/back.svg",
  30892. extra: 2903 / 2736,
  30893. bottom: 0 / 2903
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(15 + 5 / 12, "feet"),
  30901. default: true
  30902. },
  30903. {
  30904. name: "Post-Millenium",
  30905. height: math.unit(35 + 5 / 12, "feet")
  30906. },
  30907. {
  30908. name: "Post-Era",
  30909. height: math.unit(450 + 5 / 12, "feet")
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(300, "meters"),
  30918. weight: math.unit(125000, "tonnes"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/pazuzu/front.svg",
  30922. extra: 877 / 794,
  30923. bottom: 47 / 924
  30924. }
  30925. },
  30926. },
  30927. [
  30928. {
  30929. name: "Macro",
  30930. height: math.unit(300, "meters"),
  30931. default: true
  30932. },
  30933. ]
  30934. ))
  30935. characterMakers.push(() => makeCharacter(
  30936. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30937. {
  30938. side: {
  30939. height: math.unit(10 + 7 / 12, "feet"),
  30940. weight: math.unit(2.5, "tons"),
  30941. name: "Side",
  30942. image: {
  30943. source: "./media/characters/aasha/side.svg",
  30944. extra: 1345 / 1245,
  30945. bottom: 111 / 1456
  30946. }
  30947. },
  30948. back: {
  30949. height: math.unit(10 + 7 / 12, "feet"),
  30950. weight: math.unit(2.5, "tons"),
  30951. name: "Back",
  30952. image: {
  30953. source: "./media/characters/aasha/back.svg",
  30954. extra: 1133 / 1057,
  30955. bottom: 257 / 1390
  30956. }
  30957. },
  30958. },
  30959. [
  30960. {
  30961. name: "Normal",
  30962. height: math.unit(10 + 7 / 12, "feet"),
  30963. default: true
  30964. },
  30965. ]
  30966. ))
  30967. characterMakers.push(() => makeCharacter(
  30968. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30969. {
  30970. front: {
  30971. height: math.unit(6 + 3 / 12, "feet"),
  30972. name: "Front",
  30973. image: {
  30974. source: "./media/characters/nevan/front.svg",
  30975. extra: 704 / 704,
  30976. bottom: 28 / 732
  30977. }
  30978. },
  30979. back: {
  30980. height: math.unit(6 + 3 / 12, "feet"),
  30981. name: "Back",
  30982. image: {
  30983. source: "./media/characters/nevan/back.svg",
  30984. extra: 714 / 714,
  30985. bottom: 21 / 735
  30986. }
  30987. },
  30988. frontFlaccid: {
  30989. height: math.unit(6 + 3 / 12, "feet"),
  30990. name: "Front (Flaccid)",
  30991. image: {
  30992. source: "./media/characters/nevan/front-flaccid.svg",
  30993. extra: 704 / 704,
  30994. bottom: 28 / 732
  30995. }
  30996. },
  30997. frontErect: {
  30998. height: math.unit(6 + 3 / 12, "feet"),
  30999. name: "Front (Erect)",
  31000. image: {
  31001. source: "./media/characters/nevan/front-erect.svg",
  31002. extra: 704 / 704,
  31003. bottom: 28 / 732
  31004. }
  31005. },
  31006. backFlaccid: {
  31007. height: math.unit(6 + 3 / 12, "feet"),
  31008. name: "Back (Flaccid)",
  31009. image: {
  31010. source: "./media/characters/nevan/back-flaccid.svg",
  31011. extra: 714 / 714,
  31012. bottom: 21 / 735
  31013. }
  31014. },
  31015. },
  31016. [
  31017. {
  31018. name: "Normal",
  31019. height: math.unit(6 + 3 / 12, "feet"),
  31020. default: true
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(4, "feet"),
  31029. name: "Front",
  31030. image: {
  31031. source: "./media/characters/arhan/front.svg",
  31032. extra: 3368 / 3133,
  31033. bottom: 0 / 3368
  31034. }
  31035. },
  31036. side: {
  31037. height: math.unit(4, "feet"),
  31038. name: "Side",
  31039. image: {
  31040. source: "./media/characters/arhan/side.svg",
  31041. extra: 3347 / 3105,
  31042. bottom: 0 / 3347
  31043. }
  31044. },
  31045. tongue: {
  31046. height: math.unit(1.42, "feet"),
  31047. name: "Tongue",
  31048. image: {
  31049. source: "./media/characters/arhan/tongue.svg"
  31050. }
  31051. },
  31052. head: {
  31053. height: math.unit(0.85, "feet"),
  31054. name: "Head",
  31055. image: {
  31056. source: "./media/characters/arhan/head.svg"
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Normal",
  31063. height: math.unit(4, "feet"),
  31064. default: true
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(5 + 7.5 / 12, "feet"),
  31073. weight: math.unit(120, "lb"),
  31074. name: "Front",
  31075. image: {
  31076. source: "./media/characters/digi-duncan/front.svg",
  31077. extra: 330 / 326,
  31078. bottom: 16 / 346
  31079. }
  31080. },
  31081. side: {
  31082. height: math.unit(5 + 7.5 / 12, "feet"),
  31083. weight: math.unit(120, "lb"),
  31084. name: "Side",
  31085. image: {
  31086. source: "./media/characters/digi-duncan/side.svg",
  31087. extra: 341 / 337,
  31088. bottom: 1 / 342
  31089. }
  31090. },
  31091. back: {
  31092. height: math.unit(5 + 7.5 / 12, "feet"),
  31093. weight: math.unit(120, "lb"),
  31094. name: "Back",
  31095. image: {
  31096. source: "./media/characters/digi-duncan/back.svg",
  31097. extra: 330 / 326,
  31098. bottom: 12 / 342
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Speck",
  31105. height: math.unit(0.25, "mm")
  31106. },
  31107. {
  31108. name: "Micro",
  31109. height: math.unit(5, "mm")
  31110. },
  31111. {
  31112. name: "Tiny",
  31113. height: math.unit(0.5, "inches"),
  31114. default: true
  31115. },
  31116. {
  31117. name: "Human",
  31118. height: math.unit(5 + 7.5 / 12, "feet")
  31119. },
  31120. {
  31121. name: "Minigiant",
  31122. height: math.unit(8 + 5.25, "feet")
  31123. },
  31124. {
  31125. name: "Giant",
  31126. height: math.unit(2000, "feet")
  31127. },
  31128. {
  31129. name: "Mega",
  31130. height: math.unit(371.1, "miles")
  31131. },
  31132. ]
  31133. ))
  31134. characterMakers.push(() => makeCharacter(
  31135. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31136. {
  31137. front: {
  31138. height: math.unit(2, "meters"),
  31139. weight: math.unit(350, "kg"),
  31140. name: "Front",
  31141. image: {
  31142. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31143. extra: 898 / 838,
  31144. bottom: 9 / 907
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Micro",
  31151. height: math.unit(8, "meters")
  31152. },
  31153. {
  31154. name: "Normal",
  31155. height: math.unit(50, "meters"),
  31156. default: true
  31157. },
  31158. {
  31159. name: "Macro",
  31160. height: math.unit(500, "meters")
  31161. },
  31162. ]
  31163. ))
  31164. characterMakers.push(() => makeCharacter(
  31165. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31166. {
  31167. front: {
  31168. height: math.unit(6 + 6 / 12, "feet"),
  31169. name: "Front",
  31170. image: {
  31171. source: "./media/characters/khardesh/front.svg",
  31172. extra: 1788/1596,
  31173. bottom: 66/1854
  31174. }
  31175. },
  31176. back: {
  31177. height: math.unit(6 + 6 / 12, "feet"),
  31178. name: "Back",
  31179. image: {
  31180. source: "./media/characters/khardesh/back.svg",
  31181. extra: 1781/1584,
  31182. bottom: 68/1849
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Normal",
  31189. height: math.unit(6 + 6 / 12, "feet"),
  31190. default: true
  31191. },
  31192. {
  31193. name: "Normal+",
  31194. height: math.unit(4, "meters")
  31195. },
  31196. {
  31197. name: "Macro",
  31198. height: math.unit(50, "meters")
  31199. },
  31200. {
  31201. name: "Macro+",
  31202. height: math.unit(100, "meters")
  31203. },
  31204. {
  31205. name: "Megamacro",
  31206. height: math.unit(20, "km")
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31212. {
  31213. front: {
  31214. height: math.unit(6, "feet"),
  31215. weight: math.unit(150, "lb"),
  31216. name: "Front",
  31217. image: {
  31218. source: "./media/characters/kosho/front.svg",
  31219. extra: 1847 / 1847,
  31220. bottom: 86 / 1933
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Second-stage micro",
  31227. height: math.unit(0.5, "inches")
  31228. },
  31229. {
  31230. name: "First-stage micro",
  31231. height: math.unit(6, "inches")
  31232. },
  31233. {
  31234. name: "Normal",
  31235. height: math.unit(6, "feet"),
  31236. default: true
  31237. },
  31238. {
  31239. name: "First-stage macro",
  31240. height: math.unit(72, "feet")
  31241. },
  31242. {
  31243. name: "Second-stage macro",
  31244. height: math.unit(864, "feet")
  31245. },
  31246. ]
  31247. ))
  31248. characterMakers.push(() => makeCharacter(
  31249. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31250. {
  31251. normal: {
  31252. height: math.unit(4 + 6 / 12, "feet"),
  31253. name: "Normal",
  31254. image: {
  31255. source: "./media/characters/hydra/normal.svg",
  31256. extra: 2833 / 2634,
  31257. bottom: 68 / 2901
  31258. }
  31259. },
  31260. smol: {
  31261. height: math.unit(0.705, "inches"),
  31262. name: "Smol",
  31263. image: {
  31264. source: "./media/characters/hydra/smol.svg",
  31265. extra: 2715 / 2540,
  31266. bottom: 0 / 2715
  31267. }
  31268. },
  31269. },
  31270. [
  31271. {
  31272. name: "Normal",
  31273. height: math.unit(4 + 6 / 12, "feet"),
  31274. default: true
  31275. }
  31276. ]
  31277. ))
  31278. characterMakers.push(() => makeCharacter(
  31279. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31280. {
  31281. front: {
  31282. height: math.unit(0.6, "cm"),
  31283. name: "Front",
  31284. image: {
  31285. source: "./media/characters/daz/front.svg",
  31286. extra: 1682 / 1164,
  31287. bottom: 42 / 1724
  31288. }
  31289. },
  31290. },
  31291. [
  31292. {
  31293. name: "Normal",
  31294. height: math.unit(0.6, "cm"),
  31295. default: true
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(6, "feet"),
  31304. weight: math.unit(235, "lb"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/theo-pangolin/front.svg",
  31308. extra: 1996 / 1969,
  31309. bottom: 115 / 2111
  31310. }
  31311. },
  31312. back: {
  31313. height: math.unit(6, "feet"),
  31314. weight: math.unit(235, "lb"),
  31315. name: "Back",
  31316. image: {
  31317. source: "./media/characters/theo-pangolin/back.svg",
  31318. extra: 1979 / 1979,
  31319. bottom: 40 / 2019
  31320. }
  31321. },
  31322. feral: {
  31323. height: math.unit(2, "feet"),
  31324. weight: math.unit(30, "lb"),
  31325. name: "Feral",
  31326. image: {
  31327. source: "./media/characters/theo-pangolin/feral.svg",
  31328. extra: 803 / 791,
  31329. bottom: 181 / 984
  31330. }
  31331. },
  31332. footFive: {
  31333. height: math.unit(1.43, "feet"),
  31334. name: "Foot (Five Toes)",
  31335. image: {
  31336. source: "./media/characters/theo-pangolin/foot-five.svg"
  31337. }
  31338. },
  31339. footFour: {
  31340. height: math.unit(1.43, "feet"),
  31341. name: "Foot (Four Toes)",
  31342. image: {
  31343. source: "./media/characters/theo-pangolin/foot-four.svg"
  31344. }
  31345. },
  31346. handFour: {
  31347. height: math.unit(0.81, "feet"),
  31348. name: "Hand (Four Fingers)",
  31349. image: {
  31350. source: "./media/characters/theo-pangolin/hand-four.svg"
  31351. }
  31352. },
  31353. handThree: {
  31354. height: math.unit(0.81, "feet"),
  31355. name: "Hand (Three Fingers)",
  31356. image: {
  31357. source: "./media/characters/theo-pangolin/hand-three.svg"
  31358. }
  31359. },
  31360. headFront: {
  31361. height: math.unit(1.37, "feet"),
  31362. name: "Head (Front)",
  31363. image: {
  31364. source: "./media/characters/theo-pangolin/head-front.svg"
  31365. }
  31366. },
  31367. headSide: {
  31368. height: math.unit(1.43, "feet"),
  31369. name: "Head (Side)",
  31370. image: {
  31371. source: "./media/characters/theo-pangolin/head-side.svg"
  31372. }
  31373. },
  31374. tongue: {
  31375. height: math.unit(2.29, "feet"),
  31376. name: "Tongue",
  31377. image: {
  31378. source: "./media/characters/theo-pangolin/tongue.svg"
  31379. }
  31380. },
  31381. },
  31382. [
  31383. {
  31384. name: "Normal",
  31385. height: math.unit(6, "feet")
  31386. },
  31387. {
  31388. name: "Macro",
  31389. height: math.unit(400, "feet"),
  31390. default: true
  31391. },
  31392. ]
  31393. ))
  31394. characterMakers.push(() => makeCharacter(
  31395. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31396. {
  31397. front: {
  31398. height: math.unit(6, "inches"),
  31399. weight: math.unit(0.036, "kg"),
  31400. name: "Front",
  31401. image: {
  31402. source: "./media/characters/renée/front.svg",
  31403. extra: 900 / 886,
  31404. bottom: 8 / 908
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Nano",
  31411. height: math.unit(1, "nm")
  31412. },
  31413. {
  31414. name: "Micro",
  31415. height: math.unit(1, "mm")
  31416. },
  31417. {
  31418. name: "Normal",
  31419. height: math.unit(6, "inches")
  31420. },
  31421. {
  31422. name: "Macro",
  31423. height: math.unit(2000, "feet"),
  31424. default: true
  31425. },
  31426. {
  31427. name: "Megamacro",
  31428. height: math.unit(2, "km")
  31429. },
  31430. {
  31431. name: "Gigamacro",
  31432. height: math.unit(2000, "km")
  31433. },
  31434. {
  31435. name: "Teramacro",
  31436. height: math.unit(250000, "km")
  31437. },
  31438. ]
  31439. ))
  31440. characterMakers.push(() => makeCharacter(
  31441. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31442. {
  31443. front: {
  31444. height: math.unit(4, "meters"),
  31445. weight: math.unit(150, "kg"),
  31446. name: "Front",
  31447. image: {
  31448. source: "./media/characters/caledvwlch/front.svg",
  31449. extra: 1760 / 1551,
  31450. bottom: 28 / 1788
  31451. }
  31452. },
  31453. side: {
  31454. height: math.unit(4, "meters"),
  31455. weight: math.unit(150, "kg"),
  31456. name: "Side",
  31457. image: {
  31458. source: "./media/characters/caledvwlch/side.svg",
  31459. extra: 1605 / 1536,
  31460. bottom: 31 / 1636
  31461. }
  31462. },
  31463. back: {
  31464. height: math.unit(4, "meters"),
  31465. weight: math.unit(150, "kg"),
  31466. name: "Back",
  31467. image: {
  31468. source: "./media/characters/caledvwlch/back.svg",
  31469. extra: 1635 / 1565,
  31470. bottom: 27 / 1662
  31471. }
  31472. },
  31473. },
  31474. [
  31475. {
  31476. name: "\"Incognito\"",
  31477. height: math.unit(4, "meters")
  31478. },
  31479. {
  31480. name: "Small rampage",
  31481. height: math.unit(600, "meters")
  31482. },
  31483. {
  31484. name: "Mega",
  31485. height: math.unit(30, "km")
  31486. },
  31487. {
  31488. name: "Home-size",
  31489. height: math.unit(50, "km"),
  31490. default: true
  31491. },
  31492. {
  31493. name: "Giga",
  31494. height: math.unit(300, "km")
  31495. },
  31496. {
  31497. name: "Lounging",
  31498. height: math.unit(11000, "km")
  31499. },
  31500. {
  31501. name: "Planet snacking",
  31502. height: math.unit(2000000, "km")
  31503. },
  31504. ]
  31505. ))
  31506. characterMakers.push(() => makeCharacter(
  31507. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31508. {
  31509. front: {
  31510. height: math.unit(6, "feet"),
  31511. weight: math.unit(215, "lb"),
  31512. name: "Front",
  31513. image: {
  31514. source: "./media/characters/sapphire-svell/front.svg",
  31515. extra: 495 / 455,
  31516. bottom: 20 / 515
  31517. }
  31518. },
  31519. back: {
  31520. height: math.unit(6, "feet"),
  31521. weight: math.unit(216, "lb"),
  31522. name: "Back",
  31523. image: {
  31524. source: "./media/characters/sapphire-svell/back.svg",
  31525. extra: 497 / 477,
  31526. bottom: 7 / 504
  31527. }
  31528. },
  31529. maw: {
  31530. height: math.unit(1.57, "feet"),
  31531. name: "Maw",
  31532. image: {
  31533. source: "./media/characters/sapphire-svell/maw.svg"
  31534. }
  31535. },
  31536. foot: {
  31537. height: math.unit(1.07, "feet"),
  31538. name: "Foot",
  31539. image: {
  31540. source: "./media/characters/sapphire-svell/foot.svg"
  31541. }
  31542. },
  31543. toering: {
  31544. height: math.unit(1.7, "inch"),
  31545. name: "Toering",
  31546. image: {
  31547. source: "./media/characters/sapphire-svell/toering.svg"
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(300, "feet"),
  31555. default: true
  31556. },
  31557. {
  31558. name: "Augmented",
  31559. height: math.unit(1250, "feet")
  31560. },
  31561. {
  31562. name: "Unleashed",
  31563. height: math.unit(3000, "feet")
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31569. {
  31570. side: {
  31571. height: math.unit(2 + 3 / 12, "feet"),
  31572. weight: math.unit(110, "lb"),
  31573. name: "Side",
  31574. image: {
  31575. source: "./media/characters/glitch-flux/side.svg",
  31576. extra: 997 / 805,
  31577. bottom: 20 / 1017
  31578. }
  31579. },
  31580. },
  31581. [
  31582. {
  31583. name: "Normal",
  31584. height: math.unit(2 + 3 / 12, "feet"),
  31585. default: true
  31586. },
  31587. ]
  31588. ))
  31589. characterMakers.push(() => makeCharacter(
  31590. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31591. {
  31592. front: {
  31593. height: math.unit(4, "meters"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/mid/front.svg",
  31597. extra: 507 / 476,
  31598. bottom: 17 / 524
  31599. }
  31600. },
  31601. back: {
  31602. height: math.unit(4, "meters"),
  31603. name: "Back",
  31604. image: {
  31605. source: "./media/characters/mid/back.svg",
  31606. extra: 519 / 487,
  31607. bottom: 7 / 526
  31608. }
  31609. },
  31610. stuck: {
  31611. height: math.unit(2.2, "meters"),
  31612. name: "Stuck",
  31613. image: {
  31614. source: "./media/characters/mid/stuck.svg",
  31615. extra: 1951 / 1869,
  31616. bottom: 88 / 2039
  31617. }
  31618. }
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(4, "meters"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Big",
  31628. height: math.unit(10, "meters")
  31629. },
  31630. {
  31631. name: "Macro",
  31632. height: math.unit(800, "meters")
  31633. },
  31634. {
  31635. name: "Megamacro",
  31636. height: math.unit(100, "km")
  31637. },
  31638. {
  31639. name: "Overgrown",
  31640. height: math.unit(1, "parsec")
  31641. },
  31642. ]
  31643. ))
  31644. characterMakers.push(() => makeCharacter(
  31645. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31646. {
  31647. front: {
  31648. height: math.unit(2.5, "meters"),
  31649. weight: math.unit(225, "kg"),
  31650. name: "Front",
  31651. image: {
  31652. source: "./media/characters/iris/front.svg",
  31653. extra: 3348 / 3251,
  31654. bottom: 205 / 3553
  31655. }
  31656. },
  31657. maw: {
  31658. height: math.unit(0.56, "meter"),
  31659. name: "Maw",
  31660. image: {
  31661. source: "./media/characters/iris/maw.svg"
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Mewter cat",
  31668. height: math.unit(1.2, "meters")
  31669. },
  31670. {
  31671. name: "Normal",
  31672. height: math.unit(2.5, "meters"),
  31673. default: true
  31674. },
  31675. {
  31676. name: "Minimacro",
  31677. height: math.unit(18, "feet")
  31678. },
  31679. {
  31680. name: "Macro",
  31681. height: math.unit(140, "feet")
  31682. },
  31683. {
  31684. name: "Macro+",
  31685. height: math.unit(180, "meters")
  31686. },
  31687. {
  31688. name: "Megamacro",
  31689. height: math.unit(2746, "meters")
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(6, "feet"),
  31698. weight: math.unit(135, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/axel/front.svg",
  31702. extra: 908 / 908,
  31703. bottom: 58 / 966
  31704. }
  31705. },
  31706. side: {
  31707. height: math.unit(6, "feet"),
  31708. weight: math.unit(135, "lb"),
  31709. name: "Side",
  31710. image: {
  31711. source: "./media/characters/axel/side.svg",
  31712. extra: 958 / 958,
  31713. bottom: 11 / 969
  31714. }
  31715. },
  31716. back: {
  31717. height: math.unit(6, "feet"),
  31718. weight: math.unit(135, "lb"),
  31719. name: "Back",
  31720. image: {
  31721. source: "./media/characters/axel/back.svg",
  31722. extra: 887 / 887,
  31723. bottom: 34 / 921
  31724. }
  31725. },
  31726. head: {
  31727. height: math.unit(1.07, "feet"),
  31728. name: "Head",
  31729. image: {
  31730. source: "./media/characters/axel/head.svg"
  31731. }
  31732. },
  31733. beak: {
  31734. height: math.unit(1.4, "feet"),
  31735. name: "Beak",
  31736. image: {
  31737. source: "./media/characters/axel/beak.svg"
  31738. }
  31739. },
  31740. beakSide: {
  31741. height: math.unit(1.4, "feet"),
  31742. name: "Beak Side",
  31743. image: {
  31744. source: "./media/characters/axel/beak-side.svg"
  31745. }
  31746. },
  31747. sheath: {
  31748. height: math.unit(0.5, "feet"),
  31749. name: "Sheath",
  31750. image: {
  31751. source: "./media/characters/axel/sheath.svg"
  31752. }
  31753. },
  31754. dick: {
  31755. height: math.unit(0.98, "feet"),
  31756. name: "Dick",
  31757. image: {
  31758. source: "./media/characters/axel/dick.svg"
  31759. }
  31760. },
  31761. },
  31762. [
  31763. {
  31764. name: "Macro",
  31765. height: math.unit(68, "meters"),
  31766. default: true
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(3.5, "meters"),
  31775. weight: math.unit(1200, "kg"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/joanna/front.svg",
  31779. extra: 1596 / 1488,
  31780. bottom: 29 / 1625
  31781. }
  31782. },
  31783. back: {
  31784. height: math.unit(3.5, "meters"),
  31785. weight: math.unit(1200, "kg"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/joanna/back.svg",
  31789. extra: 1594 / 1495,
  31790. bottom: 26 / 1620
  31791. }
  31792. },
  31793. frontShorts: {
  31794. height: math.unit(3.5, "meters"),
  31795. weight: math.unit(1200, "kg"),
  31796. name: "Front (Shorts)",
  31797. image: {
  31798. source: "./media/characters/joanna/front-shorts.svg",
  31799. extra: 1596 / 1488,
  31800. bottom: 29 / 1625
  31801. }
  31802. },
  31803. frontBiker: {
  31804. height: math.unit(3.5, "meters"),
  31805. weight: math.unit(1200, "kg"),
  31806. name: "Front (Biker)",
  31807. image: {
  31808. source: "./media/characters/joanna/front-biker.svg",
  31809. extra: 1596 / 1488,
  31810. bottom: 29 / 1625
  31811. }
  31812. },
  31813. backBiker: {
  31814. height: math.unit(3.5, "meters"),
  31815. weight: math.unit(1200, "kg"),
  31816. name: "Back (Biker)",
  31817. image: {
  31818. source: "./media/characters/joanna/back-biker.svg",
  31819. extra: 1594 / 1495,
  31820. bottom: 88 / 1682
  31821. }
  31822. },
  31823. bikeLeft: {
  31824. height: math.unit(2.4, "meters"),
  31825. weight: math.unit(1600, "kg"),
  31826. name: "Bike (Left)",
  31827. image: {
  31828. source: "./media/characters/joanna/bike-left.svg",
  31829. extra: 720 / 720,
  31830. bottom: 8 / 728
  31831. }
  31832. },
  31833. bikeRight: {
  31834. height: math.unit(2.4, "meters"),
  31835. weight: math.unit(1600, "kg"),
  31836. name: "Bike (Right)",
  31837. image: {
  31838. source: "./media/characters/joanna/bike-right.svg",
  31839. extra: 720 / 720,
  31840. bottom: 8 / 728
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Incognito",
  31847. height: math.unit(3.5, "meters")
  31848. },
  31849. {
  31850. name: "Casual Big",
  31851. height: math.unit(200, "meters")
  31852. },
  31853. {
  31854. name: "Macro",
  31855. height: math.unit(600, "meters")
  31856. },
  31857. {
  31858. name: "Original",
  31859. height: math.unit(20, "km"),
  31860. default: true
  31861. },
  31862. {
  31863. name: "Giga",
  31864. height: math.unit(400, "km")
  31865. },
  31866. {
  31867. name: "Lounging",
  31868. height: math.unit(1500, "km")
  31869. },
  31870. {
  31871. name: "Planetary",
  31872. height: math.unit(200000, "km")
  31873. },
  31874. ]
  31875. ))
  31876. characterMakers.push(() => makeCharacter(
  31877. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31878. {
  31879. front: {
  31880. height: math.unit(6, "feet"),
  31881. weight: math.unit(150, "lb"),
  31882. name: "Front",
  31883. image: {
  31884. source: "./media/characters/hugo-sigil/front.svg",
  31885. extra: 522 / 500,
  31886. bottom: 2 / 524
  31887. }
  31888. },
  31889. back: {
  31890. height: math.unit(6, "feet"),
  31891. weight: math.unit(150, "lb"),
  31892. name: "Back",
  31893. image: {
  31894. source: "./media/characters/hugo-sigil/back.svg",
  31895. extra: 519 / 495,
  31896. bottom: 5 / 524
  31897. }
  31898. },
  31899. maw: {
  31900. height: math.unit(1.4, "feet"),
  31901. weight: math.unit(150, "lb"),
  31902. name: "Maw",
  31903. image: {
  31904. source: "./media/characters/hugo-sigil/maw.svg"
  31905. }
  31906. },
  31907. feet: {
  31908. height: math.unit(1.56, "feet"),
  31909. weight: math.unit(150, "lb"),
  31910. name: "Feet",
  31911. image: {
  31912. source: "./media/characters/hugo-sigil/feet.svg",
  31913. extra: 177 / 177,
  31914. bottom: 12 / 189
  31915. }
  31916. },
  31917. },
  31918. [
  31919. {
  31920. name: "Normal",
  31921. height: math.unit(6, "feet")
  31922. },
  31923. {
  31924. name: "Macro",
  31925. height: math.unit(200, "feet"),
  31926. default: true
  31927. },
  31928. ]
  31929. ))
  31930. characterMakers.push(() => makeCharacter(
  31931. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31932. {
  31933. front: {
  31934. height: math.unit(6, "feet"),
  31935. weight: math.unit(150, "lb"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/peri/front.svg",
  31939. extra: 2354 / 2233,
  31940. bottom: 49 / 2403
  31941. }
  31942. },
  31943. },
  31944. [
  31945. {
  31946. name: "Really Small",
  31947. height: math.unit(1, "nm")
  31948. },
  31949. {
  31950. name: "Micro",
  31951. height: math.unit(4, "inches")
  31952. },
  31953. {
  31954. name: "Normal",
  31955. height: math.unit(7, "inches"),
  31956. default: true
  31957. },
  31958. {
  31959. name: "Macro",
  31960. height: math.unit(400, "feet")
  31961. },
  31962. {
  31963. name: "Megamacro",
  31964. height: math.unit(100, "miles")
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31970. {
  31971. frontSlim: {
  31972. height: math.unit(7, "feet"),
  31973. name: "Front (Slim)",
  31974. image: {
  31975. source: "./media/characters/issilora/front-slim.svg",
  31976. extra: 529 / 449,
  31977. bottom: 53 / 582
  31978. }
  31979. },
  31980. sideSlim: {
  31981. height: math.unit(7, "feet"),
  31982. name: "Side (Slim)",
  31983. image: {
  31984. source: "./media/characters/issilora/side-slim.svg",
  31985. extra: 570 / 480,
  31986. bottom: 30 / 600
  31987. }
  31988. },
  31989. backSlim: {
  31990. height: math.unit(7, "feet"),
  31991. name: "Back (Slim)",
  31992. image: {
  31993. source: "./media/characters/issilora/back-slim.svg",
  31994. extra: 537 / 455,
  31995. bottom: 46 / 583
  31996. }
  31997. },
  31998. frontBuff: {
  31999. height: math.unit(7, "feet"),
  32000. name: "Front (Buff)",
  32001. image: {
  32002. source: "./media/characters/issilora/front-buff.svg",
  32003. extra: 2310 / 2035,
  32004. bottom: 335 / 2645
  32005. }
  32006. },
  32007. head: {
  32008. height: math.unit(1.94, "feet"),
  32009. name: "Head",
  32010. image: {
  32011. source: "./media/characters/issilora/head.svg"
  32012. }
  32013. },
  32014. },
  32015. [
  32016. {
  32017. name: "Minimum",
  32018. height: math.unit(7, "feet")
  32019. },
  32020. {
  32021. name: "Comfortable",
  32022. height: math.unit(17, "feet")
  32023. },
  32024. {
  32025. name: "Fun Size",
  32026. height: math.unit(47, "feet")
  32027. },
  32028. {
  32029. name: "Natural Macro",
  32030. height: math.unit(137, "feet"),
  32031. default: true
  32032. },
  32033. {
  32034. name: "Maximum Kaiju",
  32035. height: math.unit(397, "feet")
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32041. {
  32042. front: {
  32043. height: math.unit(50 + 9/12, "feet"),
  32044. weight: math.unit(32.8, "tons"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/irb'iiritaahn/front.svg",
  32048. extra: 1878/1826,
  32049. bottom: 326/2204
  32050. }
  32051. },
  32052. back: {
  32053. height: math.unit(50 + 9/12, "feet"),
  32054. weight: math.unit(32.8, "tons"),
  32055. name: "Back",
  32056. image: {
  32057. source: "./media/characters/irb'iiritaahn/back.svg",
  32058. extra: 2052/2018,
  32059. bottom: 152/2204
  32060. }
  32061. },
  32062. head: {
  32063. height: math.unit(12.86, "feet"),
  32064. name: "Head",
  32065. image: {
  32066. source: "./media/characters/irb'iiritaahn/head.svg"
  32067. }
  32068. },
  32069. maw: {
  32070. height: math.unit(9.66, "feet"),
  32071. name: "Maw",
  32072. image: {
  32073. source: "./media/characters/irb'iiritaahn/maw.svg"
  32074. }
  32075. },
  32076. frontDick: {
  32077. height: math.unit(8.78461, "feet"),
  32078. name: "Front Dick",
  32079. image: {
  32080. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32081. }
  32082. },
  32083. rearDick: {
  32084. height: math.unit(8.78461, "feet"),
  32085. name: "Rear Dick",
  32086. image: {
  32087. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32088. }
  32089. },
  32090. rearDickUnfolded: {
  32091. height: math.unit(8.78, "feet"),
  32092. name: "Rear Dick (Unfolded)",
  32093. image: {
  32094. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32095. }
  32096. },
  32097. wings: {
  32098. height: math.unit(43, "feet"),
  32099. name: "Wings",
  32100. image: {
  32101. source: "./media/characters/irb'iiritaahn/wings.svg"
  32102. }
  32103. },
  32104. },
  32105. [
  32106. {
  32107. name: "Macro",
  32108. height: math.unit(50 + 9/12, "feet"),
  32109. default: true
  32110. },
  32111. ]
  32112. ))
  32113. characterMakers.push(() => makeCharacter(
  32114. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32115. {
  32116. front: {
  32117. height: math.unit(205, "cm"),
  32118. weight: math.unit(102, "kg"),
  32119. name: "Front",
  32120. image: {
  32121. source: "./media/characters/irbisgreif/front.svg",
  32122. extra: 785/706,
  32123. bottom: 13/798
  32124. }
  32125. },
  32126. back: {
  32127. height: math.unit(205, "cm"),
  32128. weight: math.unit(102, "kg"),
  32129. name: "Back",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/back.svg",
  32132. extra: 713/701,
  32133. bottom: 26/739
  32134. }
  32135. },
  32136. frontDressed: {
  32137. height: math.unit(216, "cm"),
  32138. weight: math.unit(102, "kg"),
  32139. name: "Front-dressed",
  32140. image: {
  32141. source: "./media/characters/irbisgreif/front-dressed.svg",
  32142. extra: 902/776,
  32143. bottom: 14/916
  32144. }
  32145. },
  32146. sideDressed: {
  32147. height: math.unit(195, "cm"),
  32148. weight: math.unit(102, "kg"),
  32149. name: "Side-dressed",
  32150. image: {
  32151. source: "./media/characters/irbisgreif/side-dressed.svg",
  32152. extra: 788/688,
  32153. bottom: 21/809
  32154. }
  32155. },
  32156. backDressed: {
  32157. height: math.unit(216, "cm"),
  32158. weight: math.unit(102, "kg"),
  32159. name: "Back-dressed",
  32160. image: {
  32161. source: "./media/characters/irbisgreif/back-dressed.svg",
  32162. extra: 901/783,
  32163. bottom: 10/911
  32164. }
  32165. },
  32166. dick: {
  32167. height: math.unit(0.49, "feet"),
  32168. name: "Dick",
  32169. image: {
  32170. source: "./media/characters/irbisgreif/dick.svg"
  32171. }
  32172. },
  32173. wingTop: {
  32174. height: math.unit(1.93 , "feet"),
  32175. name: "Wing-top",
  32176. image: {
  32177. source: "./media/characters/irbisgreif/wing-top.svg"
  32178. }
  32179. },
  32180. wingBottom: {
  32181. height: math.unit(1.93 , "feet"),
  32182. name: "Wing-bottom",
  32183. image: {
  32184. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(216, "cm"),
  32192. default: true
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32198. {
  32199. front: {
  32200. height: math.unit(6, "feet"),
  32201. weight: math.unit(150, "lb"),
  32202. name: "Front",
  32203. image: {
  32204. source: "./media/characters/pride/front.svg",
  32205. extra: 1299/1230,
  32206. bottom: 18/1317
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(7, "feet")
  32214. },
  32215. {
  32216. name: "Mini-macro",
  32217. height: math.unit(11, "feet")
  32218. },
  32219. {
  32220. name: "Macro",
  32221. height: math.unit(15, "meters"),
  32222. default: true
  32223. },
  32224. {
  32225. name: "Macro+",
  32226. height: math.unit(40, "meters")
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32232. {
  32233. front: {
  32234. height: math.unit(4 + 2 / 12, "feet"),
  32235. weight: math.unit(95, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/vaelophis-nyx/front.svg",
  32239. extra: 2532/2330,
  32240. bottom: 0/2532
  32241. }
  32242. },
  32243. back: {
  32244. height: math.unit(4 + 2 / 12, "feet"),
  32245. weight: math.unit(95, "lb"),
  32246. name: "Back",
  32247. image: {
  32248. source: "./media/characters/vaelophis-nyx/back.svg",
  32249. extra: 2484/2361,
  32250. bottom: 0/2484
  32251. }
  32252. },
  32253. feralSide: {
  32254. height: math.unit(2 + 1/12, "feet"),
  32255. weight: math.unit(20, "lb"),
  32256. name: "Feral (Side)",
  32257. image: {
  32258. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32259. extra: 1721/1581,
  32260. bottom: 70/1791
  32261. }
  32262. },
  32263. feralLazing: {
  32264. height: math.unit(1.08, "feet"),
  32265. weight: math.unit(20, "lb"),
  32266. name: "Feral (Lazing)",
  32267. image: {
  32268. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32269. extra: 822/822,
  32270. bottom: 248/1070
  32271. }
  32272. },
  32273. ear: {
  32274. height: math.unit(0.416, "feet"),
  32275. name: "Ear",
  32276. image: {
  32277. source: "./media/characters/vaelophis-nyx/ear.svg"
  32278. }
  32279. },
  32280. eye: {
  32281. height: math.unit(0.0748, "feet"),
  32282. name: "Eye",
  32283. image: {
  32284. source: "./media/characters/vaelophis-nyx/eye.svg"
  32285. }
  32286. },
  32287. mouth: {
  32288. height: math.unit(0.378, "feet"),
  32289. name: "Mouth",
  32290. image: {
  32291. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32292. }
  32293. },
  32294. spade: {
  32295. height: math.unit(0.55, "feet"),
  32296. name: "Spade",
  32297. image: {
  32298. source: "./media/characters/vaelophis-nyx/spade.svg"
  32299. }
  32300. },
  32301. },
  32302. [
  32303. {
  32304. name: "Normal",
  32305. height: math.unit(4 + 2/12, "feet"),
  32306. default: true
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32312. {
  32313. front: {
  32314. height: math.unit(7, "feet"),
  32315. weight: math.unit(231, "lb"),
  32316. name: "Front",
  32317. image: {
  32318. source: "./media/characters/flux/front.svg",
  32319. extra: 919/871,
  32320. bottom: 0/919
  32321. }
  32322. },
  32323. back: {
  32324. height: math.unit(7, "feet"),
  32325. weight: math.unit(231, "lb"),
  32326. name: "Back",
  32327. image: {
  32328. source: "./media/characters/flux/back.svg",
  32329. extra: 1040/992,
  32330. bottom: 0/1040
  32331. }
  32332. },
  32333. frontDressed: {
  32334. height: math.unit(7, "feet"),
  32335. weight: math.unit(231, "lb"),
  32336. name: "Front (Dressed)",
  32337. image: {
  32338. source: "./media/characters/flux/front-dressed.svg",
  32339. extra: 919/871,
  32340. bottom: 0/919
  32341. }
  32342. },
  32343. feralSide: {
  32344. height: math.unit(5, "feet"),
  32345. weight: math.unit(150, "lb"),
  32346. name: "Feral (Side)",
  32347. image: {
  32348. source: "./media/characters/flux/feral-side.svg",
  32349. extra: 598/528,
  32350. bottom: 28/626
  32351. }
  32352. },
  32353. head: {
  32354. height: math.unit(1.585, "feet"),
  32355. name: "Head",
  32356. image: {
  32357. source: "./media/characters/flux/head.svg"
  32358. }
  32359. },
  32360. headSide: {
  32361. height: math.unit(1.74, "feet"),
  32362. name: "Head (Side)",
  32363. image: {
  32364. source: "./media/characters/flux/head-side.svg"
  32365. }
  32366. },
  32367. headSideFire: {
  32368. height: math.unit(1.76, "feet"),
  32369. name: "Head (Side, Fire)",
  32370. image: {
  32371. source: "./media/characters/flux/head-side-fire.svg"
  32372. }
  32373. },
  32374. },
  32375. [
  32376. {
  32377. name: "Normal",
  32378. height: math.unit(7, "feet"),
  32379. default: true
  32380. },
  32381. ]
  32382. ))
  32383. characterMakers.push(() => makeCharacter(
  32384. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32385. {
  32386. front: {
  32387. height: math.unit(9, "feet"),
  32388. weight: math.unit(1012, "lb"),
  32389. name: "Front",
  32390. image: {
  32391. source: "./media/characters/ulfra-lupae/front.svg",
  32392. extra: 1083/1011,
  32393. bottom: 67/1150
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Micro",
  32400. height: math.unit(6, "inches")
  32401. },
  32402. {
  32403. name: "Socializing",
  32404. height: math.unit(6 + 5/12, "feet")
  32405. },
  32406. {
  32407. name: "Normal",
  32408. height: math.unit(9, "feet"),
  32409. default: true
  32410. },
  32411. {
  32412. name: "Macro",
  32413. height: math.unit(150, "feet")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(5 + 2/12, "feet"),
  32422. weight: math.unit(120, "lb"),
  32423. name: "Front",
  32424. image: {
  32425. source: "./media/characters/timber/front.svg",
  32426. extra: 2814/2705,
  32427. bottom: 181/2995
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(5 + 2/12, "feet"),
  32435. default: true
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32441. {
  32442. front: {
  32443. height: math.unit(9, "feet"),
  32444. name: "Front",
  32445. image: {
  32446. source: "./media/characters/nicki/front.svg",
  32447. extra: 1240/990,
  32448. bottom: 45/1285
  32449. },
  32450. form: "anthro",
  32451. default: true
  32452. },
  32453. side: {
  32454. height: math.unit(9, "feet"),
  32455. name: "Side",
  32456. image: {
  32457. source: "./media/characters/nicki/side.svg",
  32458. extra: 1047/973,
  32459. bottom: 61/1108
  32460. },
  32461. form: "anthro"
  32462. },
  32463. back: {
  32464. height: math.unit(9, "feet"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/nicki/back.svg",
  32468. extra: 1006/965,
  32469. bottom: 39/1045
  32470. },
  32471. form: "anthro"
  32472. },
  32473. taur: {
  32474. height: math.unit(15, "feet"),
  32475. name: "Taur",
  32476. image: {
  32477. source: "./media/characters/nicki/taur.svg",
  32478. extra: 1592/1347,
  32479. bottom: 0/1592
  32480. },
  32481. form: "taur",
  32482. default: true
  32483. },
  32484. },
  32485. [
  32486. {
  32487. name: "Normal",
  32488. height: math.unit(9, "feet"),
  32489. form: "anthro",
  32490. default: true
  32491. },
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(15, "feet"),
  32495. form: "taur",
  32496. default: true
  32497. }
  32498. ],
  32499. {
  32500. "anthro": {
  32501. name: "Anthro",
  32502. default: true
  32503. },
  32504. "taur": {
  32505. name: "Taur"
  32506. }
  32507. }
  32508. ))
  32509. characterMakers.push(() => makeCharacter(
  32510. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32511. {
  32512. front: {
  32513. height: math.unit(7 + 10/12, "feet"),
  32514. weight: math.unit(3.5, "tons"),
  32515. name: "Front",
  32516. image: {
  32517. source: "./media/characters/lee/front.svg",
  32518. extra: 1773/1615,
  32519. bottom: 86/1859
  32520. }
  32521. },
  32522. hand: {
  32523. height: math.unit(1.78, "feet"),
  32524. name: "Hand",
  32525. image: {
  32526. source: "./media/characters/lee/hand.svg"
  32527. }
  32528. },
  32529. maw: {
  32530. height: math.unit(1.18, "feet"),
  32531. name: "Maw",
  32532. image: {
  32533. source: "./media/characters/lee/maw.svg"
  32534. }
  32535. },
  32536. },
  32537. [
  32538. {
  32539. name: "Normal",
  32540. height: math.unit(7 + 10/12, "feet"),
  32541. default: true
  32542. },
  32543. ]
  32544. ))
  32545. characterMakers.push(() => makeCharacter(
  32546. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32547. {
  32548. front: {
  32549. height: math.unit(9, "feet"),
  32550. name: "Front",
  32551. image: {
  32552. source: "./media/characters/guti/front.svg",
  32553. extra: 4551/4355,
  32554. bottom: 123/4674
  32555. }
  32556. },
  32557. tongue: {
  32558. height: math.unit(1, "feet"),
  32559. name: "Tongue",
  32560. image: {
  32561. source: "./media/characters/guti/tongue.svg"
  32562. }
  32563. },
  32564. paw: {
  32565. height: math.unit(1.18, "feet"),
  32566. name: "Paw",
  32567. image: {
  32568. source: "./media/characters/guti/paw.svg"
  32569. }
  32570. },
  32571. },
  32572. [
  32573. {
  32574. name: "Normal",
  32575. height: math.unit(9, "feet"),
  32576. default: true
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32582. {
  32583. side: {
  32584. height: math.unit(5, "meters"),
  32585. name: "Side",
  32586. image: {
  32587. source: "./media/characters/vesper/side.svg",
  32588. extra: 1605/1518,
  32589. bottom: 0/1605
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Small",
  32596. height: math.unit(5, "meters")
  32597. },
  32598. {
  32599. name: "Sage",
  32600. height: math.unit(100, "meters"),
  32601. default: true
  32602. },
  32603. {
  32604. name: "Fun Size",
  32605. height: math.unit(600, "meters")
  32606. },
  32607. {
  32608. name: "Goddess",
  32609. height: math.unit(20000, "km")
  32610. },
  32611. {
  32612. name: "Maximum",
  32613. height: math.unit(5, "galaxies")
  32614. },
  32615. ]
  32616. ))
  32617. characterMakers.push(() => makeCharacter(
  32618. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32619. {
  32620. front: {
  32621. height: math.unit(6 + 3/12, "feet"),
  32622. weight: math.unit(190, "lb"),
  32623. name: "Front",
  32624. image: {
  32625. source: "./media/characters/gawain/front.svg",
  32626. extra: 2222/2139,
  32627. bottom: 90/2312
  32628. }
  32629. },
  32630. back: {
  32631. height: math.unit(6 + 3/12, "feet"),
  32632. weight: math.unit(190, "lb"),
  32633. name: "Back",
  32634. image: {
  32635. source: "./media/characters/gawain/back.svg",
  32636. extra: 2199/2111,
  32637. bottom: 73/2272
  32638. }
  32639. },
  32640. },
  32641. [
  32642. {
  32643. name: "Normal",
  32644. height: math.unit(6 + 3/12, "feet"),
  32645. default: true
  32646. },
  32647. ]
  32648. ))
  32649. characterMakers.push(() => makeCharacter(
  32650. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32651. {
  32652. side: {
  32653. height: math.unit(3.5, "meters"),
  32654. weight: math.unit(16000, "lb"),
  32655. name: "Side",
  32656. image: {
  32657. source: "./media/characters/dascalti/side.svg",
  32658. extra: 392/273,
  32659. bottom: 47/439
  32660. }
  32661. },
  32662. breath: {
  32663. height: math.unit(7.4, "feet"),
  32664. name: "Breath",
  32665. image: {
  32666. source: "./media/characters/dascalti/breath.svg"
  32667. }
  32668. },
  32669. fed: {
  32670. height: math.unit(3.6, "meters"),
  32671. weight: math.unit(16000, "lb"),
  32672. name: "Fed",
  32673. image: {
  32674. source: "./media/characters/dascalti/fed.svg",
  32675. extra: 1419/820,
  32676. bottom: 95/1514
  32677. }
  32678. },
  32679. },
  32680. [
  32681. {
  32682. name: "Normal",
  32683. height: math.unit(3.5, "meters"),
  32684. default: true
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(3 + 5/12, "feet"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/mauve/front.svg",
  32696. extra: 1126/1033,
  32697. bottom: 65/1191
  32698. }
  32699. },
  32700. side: {
  32701. height: math.unit(3 + 5/12, "feet"),
  32702. name: "Side",
  32703. image: {
  32704. source: "./media/characters/mauve/side.svg",
  32705. extra: 1089/1001,
  32706. bottom: 29/1118
  32707. }
  32708. },
  32709. back: {
  32710. height: math.unit(3 + 5/12, "feet"),
  32711. name: "Back",
  32712. image: {
  32713. source: "./media/characters/mauve/back.svg",
  32714. extra: 1173/1053,
  32715. bottom: 109/1282
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(3 + 5/12, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(6 + 3/12, "feet"),
  32732. weight: math.unit(430, "lb"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/carlos/front.svg",
  32736. extra: 1964/1913,
  32737. bottom: 70/2034
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(6 + 3/12, "feet"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32751. {
  32752. back: {
  32753. height: math.unit(5 + 10/12, "feet"),
  32754. weight: math.unit(200, "lb"),
  32755. name: "Back",
  32756. image: {
  32757. source: "./media/characters/jax/back.svg",
  32758. extra: 764/739,
  32759. bottom: 25/789
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(5 + 10/12, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(8, "feet"),
  32776. weight: math.unit(250, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/eikthynir/front.svg",
  32780. extra: 1332/1166,
  32781. bottom: 82/1414
  32782. }
  32783. },
  32784. back: {
  32785. height: math.unit(8, "feet"),
  32786. weight: math.unit(250, "lb"),
  32787. name: "Back",
  32788. image: {
  32789. source: "./media/characters/eikthynir/back.svg",
  32790. extra: 1342/1190,
  32791. bottom: 19/1361
  32792. }
  32793. },
  32794. dick: {
  32795. height: math.unit(2.35, "feet"),
  32796. name: "Dick",
  32797. image: {
  32798. source: "./media/characters/eikthynir/dick.svg"
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Normal",
  32805. height: math.unit(8, "feet"),
  32806. default: true
  32807. },
  32808. ]
  32809. ))
  32810. characterMakers.push(() => makeCharacter(
  32811. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32812. {
  32813. front: {
  32814. height: math.unit(99, "meters"),
  32815. weight: math.unit(13000, "tons"),
  32816. name: "Front",
  32817. image: {
  32818. source: "./media/characters/zlmos/front.svg",
  32819. extra: 2202/1992,
  32820. bottom: 315/2517
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Macro",
  32827. height: math.unit(99, "meters"),
  32828. default: true
  32829. },
  32830. ]
  32831. ))
  32832. characterMakers.push(() => makeCharacter(
  32833. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32834. {
  32835. front: {
  32836. height: math.unit(6 + 5/12, "feet"),
  32837. name: "Front",
  32838. image: {
  32839. source: "./media/characters/purri/front.svg",
  32840. extra: 1698/1610,
  32841. bottom: 32/1730
  32842. }
  32843. },
  32844. frontAlt: {
  32845. height: math.unit(6 + 5/12, "feet"),
  32846. name: "Front (Alt)",
  32847. image: {
  32848. source: "./media/characters/purri/front-alt.svg",
  32849. extra: 450/420,
  32850. bottom: 26/476
  32851. }
  32852. },
  32853. boots: {
  32854. height: math.unit(5.5, "feet"),
  32855. name: "Boots",
  32856. image: {
  32857. source: "./media/characters/purri/boots.svg",
  32858. extra: 905/853,
  32859. bottom: 18/923
  32860. }
  32861. },
  32862. lying: {
  32863. height: math.unit(2, "feet"),
  32864. name: "Lying",
  32865. image: {
  32866. source: "./media/characters/purri/lying.svg",
  32867. extra: 940/843,
  32868. bottom: 146/1086
  32869. }
  32870. },
  32871. devious: {
  32872. height: math.unit(1.77, "feet"),
  32873. name: "Devious",
  32874. image: {
  32875. source: "./media/characters/purri/devious.svg",
  32876. extra: 1440/1155,
  32877. bottom: 147/1587
  32878. }
  32879. },
  32880. bean: {
  32881. height: math.unit(1.94, "feet"),
  32882. name: "Bean",
  32883. image: {
  32884. source: "./media/characters/purri/bean.svg"
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Micro",
  32891. height: math.unit(1, "mm")
  32892. },
  32893. {
  32894. name: "Normal",
  32895. height: math.unit(6 + 5/12, "feet"),
  32896. default: true
  32897. },
  32898. {
  32899. name: "Macro :3c",
  32900. height: math.unit(2, "miles")
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32906. {
  32907. front: {
  32908. height: math.unit(6 + 2/12, "feet"),
  32909. weight: math.unit(250, "lb"),
  32910. name: "Front",
  32911. image: {
  32912. source: "./media/characters/moonlight/front.svg",
  32913. extra: 1044/908,
  32914. bottom: 56/1100
  32915. }
  32916. },
  32917. feral: {
  32918. height: math.unit(3 + 1/12, "feet"),
  32919. weight: math.unit(50, "kg"),
  32920. name: "Feral",
  32921. image: {
  32922. source: "./media/characters/moonlight/feral.svg",
  32923. extra: 3705/2791,
  32924. bottom: 145/3850
  32925. }
  32926. },
  32927. paw: {
  32928. height: math.unit(1, "feet"),
  32929. name: "Paw",
  32930. image: {
  32931. source: "./media/characters/moonlight/paw.svg"
  32932. }
  32933. },
  32934. paws: {
  32935. height: math.unit(0.98, "feet"),
  32936. name: "Paws",
  32937. image: {
  32938. source: "./media/characters/moonlight/paws.svg",
  32939. extra: 939/939,
  32940. bottom: 50/989
  32941. }
  32942. },
  32943. mouth: {
  32944. height: math.unit(0.48, "feet"),
  32945. name: "Mouth",
  32946. image: {
  32947. source: "./media/characters/moonlight/mouth.svg"
  32948. }
  32949. },
  32950. dick: {
  32951. height: math.unit(1.46, "feet"),
  32952. name: "Dick",
  32953. image: {
  32954. source: "./media/characters/moonlight/dick.svg"
  32955. }
  32956. },
  32957. },
  32958. [
  32959. {
  32960. name: "Normal",
  32961. height: math.unit(6 + 2/12, "feet"),
  32962. default: true
  32963. },
  32964. {
  32965. name: "Macro",
  32966. height: math.unit(300, "feet")
  32967. },
  32968. {
  32969. name: "Macro+",
  32970. height: math.unit(1, "mile")
  32971. },
  32972. {
  32973. name: "Mt. Moon",
  32974. height: math.unit(5, "miles")
  32975. },
  32976. {
  32977. name: "Megamacro",
  32978. height: math.unit(15, "miles")
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32984. {
  32985. back: {
  32986. height: math.unit(6, "feet"),
  32987. weight: math.unit(150, "lb"),
  32988. name: "Back",
  32989. image: {
  32990. source: "./media/characters/sylen/back.svg",
  32991. extra: 1335/1273,
  32992. bottom: 107/1442
  32993. }
  32994. },
  32995. },
  32996. [
  32997. {
  32998. name: "Normal",
  32999. height: math.unit(5 + 5/12, "feet")
  33000. },
  33001. {
  33002. name: "Megamacro",
  33003. height: math.unit(3, "miles"),
  33004. default: true
  33005. },
  33006. ]
  33007. ))
  33008. characterMakers.push(() => makeCharacter(
  33009. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33010. {
  33011. front: {
  33012. height: math.unit(6, "feet"),
  33013. weight: math.unit(190, "lb"),
  33014. name: "Front",
  33015. image: {
  33016. source: "./media/characters/huttser/front.svg",
  33017. extra: 1152/1058,
  33018. bottom: 23/1175
  33019. }
  33020. },
  33021. side: {
  33022. height: math.unit(6, "feet"),
  33023. weight: math.unit(190, "lb"),
  33024. name: "Side",
  33025. image: {
  33026. source: "./media/characters/huttser/side.svg",
  33027. extra: 1174/1065,
  33028. bottom: 18/1192
  33029. }
  33030. },
  33031. back: {
  33032. height: math.unit(6, "feet"),
  33033. weight: math.unit(190, "lb"),
  33034. name: "Back",
  33035. image: {
  33036. source: "./media/characters/huttser/back.svg",
  33037. extra: 1158/1056,
  33038. bottom: 12/1170
  33039. }
  33040. },
  33041. },
  33042. [
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33047. {
  33048. side: {
  33049. height: math.unit(12 + 9/12, "feet"),
  33050. weight: math.unit(15000, "lb"),
  33051. name: "Side",
  33052. image: {
  33053. source: "./media/characters/faan/side.svg",
  33054. extra: 2747/2697,
  33055. bottom: 0/2747
  33056. }
  33057. },
  33058. front: {
  33059. height: math.unit(12 + 9/12, "feet"),
  33060. weight: math.unit(15000, "lb"),
  33061. name: "Front",
  33062. image: {
  33063. source: "./media/characters/faan/front.svg",
  33064. extra: 607/571,
  33065. bottom: 24/631
  33066. }
  33067. },
  33068. head: {
  33069. height: math.unit(2.85, "feet"),
  33070. name: "Head",
  33071. image: {
  33072. source: "./media/characters/faan/head.svg"
  33073. }
  33074. },
  33075. headAlt: {
  33076. height: math.unit(3.13, "feet"),
  33077. name: "Head-alt",
  33078. image: {
  33079. source: "./media/characters/faan/head-alt.svg"
  33080. }
  33081. },
  33082. },
  33083. [
  33084. {
  33085. name: "Normal",
  33086. height: math.unit(12 + 9/12, "feet"),
  33087. default: true
  33088. },
  33089. ]
  33090. ))
  33091. characterMakers.push(() => makeCharacter(
  33092. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33093. {
  33094. front: {
  33095. height: math.unit(6, "feet"),
  33096. weight: math.unit(300, "lb"),
  33097. name: "Front",
  33098. image: {
  33099. source: "./media/characters/tanio/front.svg",
  33100. extra: 711/673,
  33101. bottom: 25/736
  33102. }
  33103. },
  33104. },
  33105. [
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(6, "feet"),
  33109. default: true
  33110. },
  33111. ]
  33112. ))
  33113. characterMakers.push(() => makeCharacter(
  33114. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33115. {
  33116. front: {
  33117. height: math.unit(3, "inches"),
  33118. name: "Front",
  33119. image: {
  33120. source: "./media/characters/noboru/front.svg",
  33121. extra: 1039/932,
  33122. bottom: 18/1057
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Micro",
  33129. height: math.unit(3, "inches"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(1.85, "meters"),
  33139. weight: math.unit(80, "kg"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/daniel-barrett/front.svg",
  33143. extra: 355/337,
  33144. bottom: 9/364
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Pico",
  33151. height: math.unit(0.0433, "mm")
  33152. },
  33153. {
  33154. name: "Nano",
  33155. height: math.unit(1.5, "mm")
  33156. },
  33157. {
  33158. name: "Micro",
  33159. height: math.unit(5.3, "cm"),
  33160. default: true
  33161. },
  33162. {
  33163. name: "Normal",
  33164. height: math.unit(1.85, "meters")
  33165. },
  33166. {
  33167. name: "Macro",
  33168. height: math.unit(64.7, "meters")
  33169. },
  33170. {
  33171. name: "Megamacro",
  33172. height: math.unit(2.26, "km")
  33173. },
  33174. {
  33175. name: "Gigamacro",
  33176. height: math.unit(79, "km")
  33177. },
  33178. {
  33179. name: "Teramacro",
  33180. height: math.unit(2765, "km")
  33181. },
  33182. {
  33183. name: "Petamacro",
  33184. height: math.unit(96678, "km")
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33190. {
  33191. front: {
  33192. height: math.unit(30, "meters"),
  33193. weight: math.unit(400, "tons"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/zeel/front.svg",
  33197. extra: 2599/2599,
  33198. bottom: 226/2825
  33199. }
  33200. },
  33201. },
  33202. [
  33203. {
  33204. name: "Macro",
  33205. height: math.unit(30, "meters"),
  33206. default: true
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33212. {
  33213. front: {
  33214. height: math.unit(6 + 7/12, "feet"),
  33215. weight: math.unit(210, "lb"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/tarn/front.svg",
  33219. extra: 3517/3220,
  33220. bottom: 91/3608
  33221. }
  33222. },
  33223. back: {
  33224. height: math.unit(6 + 7/12, "feet"),
  33225. weight: math.unit(210, "lb"),
  33226. name: "Back",
  33227. image: {
  33228. source: "./media/characters/tarn/back.svg",
  33229. extra: 3566/3241,
  33230. bottom: 34/3600
  33231. }
  33232. },
  33233. dick: {
  33234. height: math.unit(1.65, "feet"),
  33235. name: "Dick",
  33236. image: {
  33237. source: "./media/characters/tarn/dick.svg"
  33238. }
  33239. },
  33240. paw: {
  33241. height: math.unit(1.80, "feet"),
  33242. name: "Paw",
  33243. image: {
  33244. source: "./media/characters/tarn/paw.svg"
  33245. }
  33246. },
  33247. tongue: {
  33248. height: math.unit(0.97, "feet"),
  33249. name: "Tongue",
  33250. image: {
  33251. source: "./media/characters/tarn/tongue.svg"
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Micro",
  33258. height: math.unit(4, "inches")
  33259. },
  33260. {
  33261. name: "Normal",
  33262. height: math.unit(6 + 7/12, "feet"),
  33263. default: true
  33264. },
  33265. {
  33266. name: "Macro",
  33267. height: math.unit(300, "feet")
  33268. },
  33269. ]
  33270. ))
  33271. characterMakers.push(() => makeCharacter(
  33272. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33273. {
  33274. front: {
  33275. height: math.unit(5 + 7/12, "feet"),
  33276. weight: math.unit(80, "kg"),
  33277. name: "Front",
  33278. image: {
  33279. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33280. extra: 3023/2865,
  33281. bottom: 33/3056
  33282. }
  33283. },
  33284. back: {
  33285. height: math.unit(5 + 7/12, "feet"),
  33286. weight: math.unit(80, "kg"),
  33287. name: "Back",
  33288. image: {
  33289. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33290. extra: 3020/2886,
  33291. bottom: 30/3050
  33292. }
  33293. },
  33294. dick: {
  33295. height: math.unit(0.98, "feet"),
  33296. name: "Dick",
  33297. image: {
  33298. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33299. }
  33300. },
  33301. anatomy: {
  33302. height: math.unit(2.86, "feet"),
  33303. name: "Anatomy",
  33304. image: {
  33305. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Really Small",
  33312. height: math.unit(2, "inches")
  33313. },
  33314. {
  33315. name: "Micro",
  33316. height: math.unit(5.583, "inches")
  33317. },
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(5 + 7/12, "feet"),
  33321. default: true
  33322. },
  33323. {
  33324. name: "Macro",
  33325. height: math.unit(67, "feet")
  33326. },
  33327. {
  33328. name: "Megamacro",
  33329. height: math.unit(134, "feet")
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(9, "feet"),
  33338. weight: math.unit(120, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/sally/front.svg",
  33342. extra: 1506/1349,
  33343. bottom: 66/1572
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Normal",
  33350. height: math.unit(9, "feet"),
  33351. default: true
  33352. },
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33357. {
  33358. front: {
  33359. height: math.unit(8, "feet"),
  33360. weight: math.unit(900, "lb"),
  33361. name: "Front",
  33362. image: {
  33363. source: "./media/characters/owen/front.svg",
  33364. extra: 1761/1657,
  33365. bottom: 74/1835
  33366. }
  33367. },
  33368. side: {
  33369. height: math.unit(8, "feet"),
  33370. weight: math.unit(900, "lb"),
  33371. name: "Side",
  33372. image: {
  33373. source: "./media/characters/owen/side.svg",
  33374. extra: 1797/1734,
  33375. bottom: 30/1827
  33376. }
  33377. },
  33378. back: {
  33379. height: math.unit(8, "feet"),
  33380. weight: math.unit(900, "lb"),
  33381. name: "Back",
  33382. image: {
  33383. source: "./media/characters/owen/back.svg",
  33384. extra: 1796/1706,
  33385. bottom: 59/1855
  33386. }
  33387. },
  33388. maw: {
  33389. height: math.unit(1.76, "feet"),
  33390. name: "Maw",
  33391. image: {
  33392. source: "./media/characters/owen/maw.svg"
  33393. }
  33394. },
  33395. },
  33396. [
  33397. {
  33398. name: "Normal",
  33399. height: math.unit(8, "feet"),
  33400. default: true
  33401. },
  33402. ]
  33403. ))
  33404. characterMakers.push(() => makeCharacter(
  33405. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33406. {
  33407. front: {
  33408. height: math.unit(4, "feet"),
  33409. weight: math.unit(400, "lb"),
  33410. name: "Front",
  33411. image: {
  33412. source: "./media/characters/ryth/front.svg",
  33413. extra: 1920/1748,
  33414. bottom: 42/1962
  33415. }
  33416. },
  33417. back: {
  33418. height: math.unit(4, "feet"),
  33419. weight: math.unit(400, "lb"),
  33420. name: "Back",
  33421. image: {
  33422. source: "./media/characters/ryth/back.svg",
  33423. extra: 1897/1690,
  33424. bottom: 89/1986
  33425. }
  33426. },
  33427. mouth: {
  33428. height: math.unit(1.39, "feet"),
  33429. name: "Mouth",
  33430. image: {
  33431. source: "./media/characters/ryth/mouth.svg"
  33432. }
  33433. },
  33434. tailmaw: {
  33435. height: math.unit(1.23, "feet"),
  33436. name: "Tailmaw",
  33437. image: {
  33438. source: "./media/characters/ryth/tailmaw.svg"
  33439. }
  33440. },
  33441. goia: {
  33442. height: math.unit(4, "meters"),
  33443. weight: math.unit(10800, "lb"),
  33444. name: "Goia",
  33445. image: {
  33446. source: "./media/characters/ryth/goia.svg",
  33447. extra: 745/640,
  33448. bottom: 107/852
  33449. }
  33450. },
  33451. goiaFront: {
  33452. height: math.unit(4, "meters"),
  33453. weight: math.unit(10800, "lb"),
  33454. name: "Goia (Front)",
  33455. image: {
  33456. source: "./media/characters/ryth/goia-front.svg",
  33457. extra: 750/586,
  33458. bottom: 114/864
  33459. }
  33460. },
  33461. goiaMaw: {
  33462. height: math.unit(5.55, "feet"),
  33463. name: "Goia Maw",
  33464. image: {
  33465. source: "./media/characters/ryth/goia-maw.svg"
  33466. }
  33467. },
  33468. goiaForepaw: {
  33469. height: math.unit(3.5, "feet"),
  33470. name: "Goia Forepaw",
  33471. image: {
  33472. source: "./media/characters/ryth/goia-forepaw.svg"
  33473. }
  33474. },
  33475. goiaHindpaw: {
  33476. height: math.unit(5.55, "feet"),
  33477. name: "Goia Hindpaw",
  33478. image: {
  33479. source: "./media/characters/ryth/goia-hindpaw.svg"
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(4, "feet"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33493. {
  33494. front: {
  33495. height: math.unit(7, "feet"),
  33496. weight: math.unit(180, "lb"),
  33497. name: "Front",
  33498. image: {
  33499. source: "./media/characters/necrolance/front.svg",
  33500. extra: 1062/947,
  33501. bottom: 41/1103
  33502. }
  33503. },
  33504. back: {
  33505. height: math.unit(7, "feet"),
  33506. weight: math.unit(180, "lb"),
  33507. name: "Back",
  33508. image: {
  33509. source: "./media/characters/necrolance/back.svg",
  33510. extra: 1045/984,
  33511. bottom: 14/1059
  33512. }
  33513. },
  33514. wing: {
  33515. height: math.unit(2.67, "feet"),
  33516. name: "Wing",
  33517. image: {
  33518. source: "./media/characters/necrolance/wing.svg"
  33519. }
  33520. },
  33521. },
  33522. [
  33523. {
  33524. name: "Normal",
  33525. height: math.unit(7, "feet"),
  33526. default: true
  33527. },
  33528. ]
  33529. ))
  33530. characterMakers.push(() => makeCharacter(
  33531. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33532. {
  33533. front: {
  33534. height: math.unit(76, "meters"),
  33535. weight: math.unit(30000, "tons"),
  33536. name: "Front",
  33537. image: {
  33538. source: "./media/characters/tyler/front.svg",
  33539. extra: 1640/1640,
  33540. bottom: 114/1754
  33541. }
  33542. },
  33543. },
  33544. [
  33545. {
  33546. name: "Macro",
  33547. height: math.unit(76, "meters"),
  33548. default: true
  33549. },
  33550. ]
  33551. ))
  33552. characterMakers.push(() => makeCharacter(
  33553. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33554. {
  33555. front: {
  33556. height: math.unit(4 + 11/12, "feet"),
  33557. weight: math.unit(132, "lb"),
  33558. name: "Front",
  33559. image: {
  33560. source: "./media/characters/icey/front.svg",
  33561. extra: 2750/2550,
  33562. bottom: 33/2783
  33563. }
  33564. },
  33565. back: {
  33566. height: math.unit(4 + 11/12, "feet"),
  33567. weight: math.unit(132, "lb"),
  33568. name: "Back",
  33569. image: {
  33570. source: "./media/characters/icey/back.svg",
  33571. extra: 2624/2481,
  33572. bottom: 35/2659
  33573. }
  33574. },
  33575. },
  33576. [
  33577. {
  33578. name: "Normal",
  33579. height: math.unit(4 + 11/12, "feet"),
  33580. default: true
  33581. },
  33582. ]
  33583. ))
  33584. characterMakers.push(() => makeCharacter(
  33585. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33586. {
  33587. front: {
  33588. height: math.unit(100, "feet"),
  33589. weight: math.unit(0, "lb"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/smile/front.svg",
  33593. extra: 2983/2912,
  33594. bottom: 162/3145
  33595. }
  33596. },
  33597. back: {
  33598. height: math.unit(100, "feet"),
  33599. weight: math.unit(0, "lb"),
  33600. name: "Back",
  33601. image: {
  33602. source: "./media/characters/smile/back.svg",
  33603. extra: 3143/3031,
  33604. bottom: 91/3234
  33605. }
  33606. },
  33607. head: {
  33608. height: math.unit(26.3, "feet"),
  33609. weight: math.unit(0, "lb"),
  33610. name: "Head",
  33611. image: {
  33612. source: "./media/characters/smile/head.svg"
  33613. }
  33614. },
  33615. collar: {
  33616. height: math.unit(5.3, "feet"),
  33617. weight: math.unit(0, "lb"),
  33618. name: "Collar",
  33619. image: {
  33620. source: "./media/characters/smile/collar.svg"
  33621. }
  33622. },
  33623. },
  33624. [
  33625. {
  33626. name: "Macro",
  33627. height: math.unit(100, "feet"),
  33628. default: true
  33629. },
  33630. ]
  33631. ))
  33632. characterMakers.push(() => makeCharacter(
  33633. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33634. {
  33635. dragon: {
  33636. height: math.unit(26, "feet"),
  33637. weight: math.unit(36, "tons"),
  33638. name: "Dragon",
  33639. image: {
  33640. source: "./media/characters/arimphae/dragon.svg",
  33641. extra: 1574/983,
  33642. bottom: 357/1931
  33643. }
  33644. },
  33645. drake: {
  33646. height: math.unit(9, "feet"),
  33647. weight: math.unit(1.5, "tons"),
  33648. name: "Drake",
  33649. image: {
  33650. source: "./media/characters/arimphae/drake.svg",
  33651. extra: 1120/925,
  33652. bottom: 435/1555
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Small",
  33659. height: math.unit(26*5/9, "feet")
  33660. },
  33661. {
  33662. name: "Normal",
  33663. height: math.unit(26, "feet"),
  33664. default: true
  33665. },
  33666. ]
  33667. ))
  33668. characterMakers.push(() => makeCharacter(
  33669. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33670. {
  33671. front: {
  33672. height: math.unit(8 + 9/12, "feet"),
  33673. name: "Front",
  33674. image: {
  33675. source: "./media/characters/xander/front.svg",
  33676. extra: 1237/974,
  33677. bottom: 94/1331
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Normal",
  33684. height: math.unit(8 + 9/12, "feet"),
  33685. default: true
  33686. },
  33687. {
  33688. name: "Gaze Grabber",
  33689. height: math.unit(13 + 8/12, "feet")
  33690. },
  33691. {
  33692. name: "Jaw Dropper",
  33693. height: math.unit(27, "feet")
  33694. },
  33695. {
  33696. name: "Show Stopper",
  33697. height: math.unit(136, "feet")
  33698. },
  33699. {
  33700. name: "Superstar",
  33701. height: math.unit(1.9e6, "miles")
  33702. },
  33703. ]
  33704. ))
  33705. characterMakers.push(() => makeCharacter(
  33706. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33707. {
  33708. side: {
  33709. height: math.unit(2100, "feet"),
  33710. name: "Side",
  33711. image: {
  33712. source: "./media/characters/osiris/side.svg",
  33713. extra: 1105/939,
  33714. bottom: 167/1272
  33715. }
  33716. },
  33717. },
  33718. [
  33719. {
  33720. name: "Macro",
  33721. height: math.unit(2100, "feet"),
  33722. default: true
  33723. },
  33724. ]
  33725. ))
  33726. characterMakers.push(() => makeCharacter(
  33727. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33728. {
  33729. front: {
  33730. height: math.unit(6 + 8/12, "feet"),
  33731. weight: math.unit(225, "lb"),
  33732. name: "Front",
  33733. image: {
  33734. source: "./media/characters/rhys-londe/front.svg",
  33735. extra: 2258/2141,
  33736. bottom: 188/2446
  33737. }
  33738. },
  33739. back: {
  33740. height: math.unit(6 + 8/12, "feet"),
  33741. weight: math.unit(225, "lb"),
  33742. name: "Back",
  33743. image: {
  33744. source: "./media/characters/rhys-londe/back.svg",
  33745. extra: 2237/2137,
  33746. bottom: 63/2300
  33747. }
  33748. },
  33749. frontNsfw: {
  33750. height: math.unit(6 + 8/12, "feet"),
  33751. weight: math.unit(225, "lb"),
  33752. name: "Front (NSFW)",
  33753. image: {
  33754. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33755. extra: 2258/2141,
  33756. bottom: 188/2446
  33757. }
  33758. },
  33759. backNsfw: {
  33760. height: math.unit(6 + 8/12, "feet"),
  33761. weight: math.unit(225, "lb"),
  33762. name: "Back (NSFW)",
  33763. image: {
  33764. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33765. extra: 2237/2137,
  33766. bottom: 63/2300
  33767. }
  33768. },
  33769. dick: {
  33770. height: math.unit(30, "inches"),
  33771. name: "Dick",
  33772. image: {
  33773. source: "./media/characters/rhys-londe/dick.svg"
  33774. }
  33775. },
  33776. maw: {
  33777. height: math.unit(1.6, "feet"),
  33778. name: "Maw",
  33779. image: {
  33780. source: "./media/characters/rhys-londe/maw.svg"
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(6 + 8/12, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(3 + 10/12, "feet"),
  33797. weight: math.unit(90, "lb"),
  33798. name: "Front",
  33799. image: {
  33800. source: "./media/characters/taivas-ensim/front.svg",
  33801. extra: 1327/1216,
  33802. bottom: 96/1423
  33803. }
  33804. },
  33805. back: {
  33806. height: math.unit(3 + 10/12, "feet"),
  33807. weight: math.unit(90, "lb"),
  33808. name: "Back",
  33809. image: {
  33810. source: "./media/characters/taivas-ensim/back.svg",
  33811. extra: 1355/1247,
  33812. bottom: 11/1366
  33813. }
  33814. },
  33815. frontNsfw: {
  33816. height: math.unit(3 + 10/12, "feet"),
  33817. weight: math.unit(90, "lb"),
  33818. name: "Front (NSFW)",
  33819. image: {
  33820. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33821. extra: 1327/1216,
  33822. bottom: 96/1423
  33823. }
  33824. },
  33825. backNsfw: {
  33826. height: math.unit(3 + 10/12, "feet"),
  33827. weight: math.unit(90, "lb"),
  33828. name: "Back (NSFW)",
  33829. image: {
  33830. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33831. extra: 1355/1247,
  33832. bottom: 11/1366
  33833. }
  33834. },
  33835. },
  33836. [
  33837. {
  33838. name: "Normal",
  33839. height: math.unit(3 + 10/12, "feet"),
  33840. default: true
  33841. },
  33842. ]
  33843. ))
  33844. characterMakers.push(() => makeCharacter(
  33845. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33846. {
  33847. front: {
  33848. height: math.unit(9 + 6/12, "feet"),
  33849. weight: math.unit(940, "lb"),
  33850. name: "Front",
  33851. image: {
  33852. source: "./media/characters/byliss/front.svg",
  33853. extra: 1327/1290,
  33854. bottom: 82/1409
  33855. }
  33856. },
  33857. back: {
  33858. height: math.unit(9 + 6/12, "feet"),
  33859. weight: math.unit(940, "lb"),
  33860. name: "Back",
  33861. image: {
  33862. source: "./media/characters/byliss/back.svg",
  33863. extra: 1376/1349,
  33864. bottom: 9/1385
  33865. }
  33866. },
  33867. frontNsfw: {
  33868. height: math.unit(9 + 6/12, "feet"),
  33869. weight: math.unit(940, "lb"),
  33870. name: "Front (NSFW)",
  33871. image: {
  33872. source: "./media/characters/byliss/front-nsfw.svg",
  33873. extra: 1327/1290,
  33874. bottom: 82/1409
  33875. }
  33876. },
  33877. backNsfw: {
  33878. height: math.unit(9 + 6/12, "feet"),
  33879. weight: math.unit(940, "lb"),
  33880. name: "Back (NSFW)",
  33881. image: {
  33882. source: "./media/characters/byliss/back-nsfw.svg",
  33883. extra: 1376/1349,
  33884. bottom: 9/1385
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(9 + 6/12, "feet"),
  33892. default: true
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(5 + 2/12, "feet"),
  33901. weight: math.unit(200, "lb"),
  33902. name: "Front",
  33903. image: {
  33904. source: "./media/characters/noraly/front.svg",
  33905. extra: 4985/4773,
  33906. bottom: 150/5135
  33907. }
  33908. },
  33909. full: {
  33910. height: math.unit(5 + 2/12, "feet"),
  33911. weight: math.unit(164, "lb"),
  33912. name: "Full",
  33913. image: {
  33914. source: "./media/characters/noraly/full.svg",
  33915. extra: 1114/1059,
  33916. bottom: 35/1149
  33917. }
  33918. },
  33919. fuller: {
  33920. height: math.unit(5 + 2/12, "feet"),
  33921. weight: math.unit(230, "lb"),
  33922. name: "Fuller",
  33923. image: {
  33924. source: "./media/characters/noraly/fuller.svg",
  33925. extra: 1114/1059,
  33926. bottom: 35/1149
  33927. }
  33928. },
  33929. fullest: {
  33930. height: math.unit(5 + 2/12, "feet"),
  33931. weight: math.unit(300, "lb"),
  33932. name: "Fullest",
  33933. image: {
  33934. source: "./media/characters/noraly/fullest.svg",
  33935. extra: 1114/1059,
  33936. bottom: 35/1149
  33937. }
  33938. },
  33939. },
  33940. [
  33941. {
  33942. name: "Normal",
  33943. height: math.unit(5 + 2/12, "feet"),
  33944. default: true
  33945. },
  33946. ]
  33947. ))
  33948. characterMakers.push(() => makeCharacter(
  33949. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33950. {
  33951. front: {
  33952. height: math.unit(5 + 2/12, "feet"),
  33953. weight: math.unit(210, "lb"),
  33954. name: "Front",
  33955. image: {
  33956. source: "./media/characters/pera/front.svg",
  33957. extra: 1560/1531,
  33958. bottom: 165/1725
  33959. }
  33960. },
  33961. back: {
  33962. height: math.unit(5 + 2/12, "feet"),
  33963. weight: math.unit(210, "lb"),
  33964. name: "Back",
  33965. image: {
  33966. source: "./media/characters/pera/back.svg",
  33967. extra: 1523/1493,
  33968. bottom: 152/1675
  33969. }
  33970. },
  33971. dick: {
  33972. height: math.unit(2.4, "feet"),
  33973. name: "Dick",
  33974. image: {
  33975. source: "./media/characters/pera/dick.svg"
  33976. }
  33977. },
  33978. },
  33979. [
  33980. {
  33981. name: "Normal",
  33982. height: math.unit(5 + 2/12, "feet"),
  33983. default: true
  33984. },
  33985. ]
  33986. ))
  33987. characterMakers.push(() => makeCharacter(
  33988. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33989. {
  33990. front: {
  33991. height: math.unit(12, "feet"),
  33992. weight: math.unit(3200, "lb"),
  33993. name: "Front",
  33994. image: {
  33995. source: "./media/characters/julian/front.svg",
  33996. extra: 2962/2701,
  33997. bottom: 184/3146
  33998. }
  33999. },
  34000. maw: {
  34001. height: math.unit(5.35, "feet"),
  34002. name: "Maw",
  34003. image: {
  34004. source: "./media/characters/julian/maw.svg"
  34005. }
  34006. },
  34007. paw: {
  34008. height: math.unit(3.07, "feet"),
  34009. name: "Paw",
  34010. image: {
  34011. source: "./media/characters/julian/paw.svg"
  34012. }
  34013. },
  34014. },
  34015. [
  34016. {
  34017. name: "Default",
  34018. height: math.unit(12, "feet"),
  34019. default: true
  34020. },
  34021. {
  34022. name: "Big",
  34023. height: math.unit(50, "feet")
  34024. },
  34025. {
  34026. name: "Really Big",
  34027. height: math.unit(1, "mile")
  34028. },
  34029. {
  34030. name: "Extremely Big",
  34031. height: math.unit(100, "miles")
  34032. },
  34033. {
  34034. name: "Planet Hugger",
  34035. height: math.unit(200, "megameters")
  34036. },
  34037. {
  34038. name: "Unreasonably Big",
  34039. height: math.unit(1e300, "meters")
  34040. },
  34041. ]
  34042. ))
  34043. characterMakers.push(() => makeCharacter(
  34044. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34045. {
  34046. solgooleo: {
  34047. height: math.unit(4, "meters"),
  34048. weight: math.unit(6000*1.5, "kg"),
  34049. volume: math.unit(6000, "liters"),
  34050. name: "Solgooleo",
  34051. image: {
  34052. source: "./media/characters/pi/solgooleo.svg",
  34053. extra: 388/331,
  34054. bottom: 29/417
  34055. }
  34056. },
  34057. },
  34058. [
  34059. {
  34060. name: "Normal",
  34061. height: math.unit(4, "meters"),
  34062. default: true
  34063. },
  34064. ]
  34065. ))
  34066. characterMakers.push(() => makeCharacter(
  34067. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34068. {
  34069. front: {
  34070. height: math.unit(8, "feet"),
  34071. weight: math.unit(4, "tons"),
  34072. name: "Front",
  34073. image: {
  34074. source: "./media/characters/shaun/front.svg",
  34075. extra: 503/495,
  34076. bottom: 20/523
  34077. }
  34078. },
  34079. back: {
  34080. height: math.unit(8, "feet"),
  34081. weight: math.unit(4, "tons"),
  34082. name: "Back",
  34083. image: {
  34084. source: "./media/characters/shaun/back.svg",
  34085. extra: 487/480,
  34086. bottom: 20/507
  34087. }
  34088. },
  34089. },
  34090. [
  34091. {
  34092. name: "Lorg",
  34093. height: math.unit(8, "feet"),
  34094. default: true
  34095. },
  34096. ]
  34097. ))
  34098. characterMakers.push(() => makeCharacter(
  34099. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34100. {
  34101. frontAnthro: {
  34102. height: math.unit(7, "feet"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/sini/front-anthro.svg",
  34106. extra: 726/678,
  34107. bottom: 35/761
  34108. },
  34109. form: "anthro",
  34110. default: true
  34111. },
  34112. backAnthro: {
  34113. height: math.unit(7, "feet"),
  34114. name: "Back",
  34115. image: {
  34116. source: "./media/characters/sini/back-anthro.svg",
  34117. extra: 743/701,
  34118. bottom: 12/755
  34119. },
  34120. form: "anthro",
  34121. },
  34122. frontAnthroNsfw: {
  34123. height: math.unit(7, "feet"),
  34124. name: "Front (NSFW)",
  34125. image: {
  34126. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34127. extra: 726/678,
  34128. bottom: 35/761
  34129. },
  34130. form: "anthro"
  34131. },
  34132. backAnthroNsfw: {
  34133. height: math.unit(7, "feet"),
  34134. name: "Back (NSFW)",
  34135. image: {
  34136. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34137. extra: 743/701,
  34138. bottom: 12/755
  34139. },
  34140. form: "anthro",
  34141. },
  34142. mawAnthro: {
  34143. height: math.unit(2.14, "feet"),
  34144. name: "Maw",
  34145. image: {
  34146. source: "./media/characters/sini/maw-anthro.svg"
  34147. },
  34148. form: "anthro"
  34149. },
  34150. dick: {
  34151. height: math.unit(1.45, "feet"),
  34152. name: "Dick",
  34153. image: {
  34154. source: "./media/characters/sini/dick-anthro.svg"
  34155. },
  34156. form: "anthro"
  34157. },
  34158. feral: {
  34159. height: math.unit(16, "feet"),
  34160. name: "Feral",
  34161. image: {
  34162. source: "./media/characters/sini/feral.svg",
  34163. extra: 814/605,
  34164. bottom: 11/825
  34165. },
  34166. form: "feral",
  34167. default: true
  34168. },
  34169. feralNsfw: {
  34170. height: math.unit(16, "feet"),
  34171. name: "Feral (NSFW)",
  34172. image: {
  34173. source: "./media/characters/sini/feral-nsfw.svg",
  34174. extra: 814/605,
  34175. bottom: 11/825
  34176. },
  34177. form: "feral"
  34178. },
  34179. mawFeral: {
  34180. height: math.unit(5.66, "feet"),
  34181. name: "Maw",
  34182. image: {
  34183. source: "./media/characters/sini/maw-feral.svg"
  34184. },
  34185. form: "feral",
  34186. },
  34187. pawFeral: {
  34188. height: math.unit(5.17, "feet"),
  34189. name: "Paw",
  34190. image: {
  34191. source: "./media/characters/sini/paw-feral.svg"
  34192. },
  34193. form: "feral",
  34194. },
  34195. rumpFeral: {
  34196. height: math.unit(13.11, "feet"),
  34197. name: "Rump",
  34198. image: {
  34199. source: "./media/characters/sini/rump-feral.svg"
  34200. },
  34201. form: "feral",
  34202. },
  34203. dickFeral: {
  34204. height: math.unit(1, "feet"),
  34205. name: "Dick",
  34206. image: {
  34207. source: "./media/characters/sini/dick-feral.svg"
  34208. },
  34209. form: "feral",
  34210. },
  34211. eyeFeral: {
  34212. height: math.unit(1.23, "feet"),
  34213. name: "Eye",
  34214. image: {
  34215. source: "./media/characters/sini/eye-feral.svg"
  34216. },
  34217. form: "feral",
  34218. },
  34219. },
  34220. [
  34221. {
  34222. name: "Normal",
  34223. height: math.unit(7, "feet"),
  34224. default: true,
  34225. form: "anthro"
  34226. },
  34227. {
  34228. name: "Normal",
  34229. height: math.unit(16, "feet"),
  34230. default: true,
  34231. form: "feral"
  34232. },
  34233. ],
  34234. {
  34235. "anthro": {
  34236. name: "Anthro",
  34237. default: true
  34238. },
  34239. "feral": {
  34240. name: "Feral",
  34241. }
  34242. }
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34246. {
  34247. side: {
  34248. height: math.unit(47.2, "meters"),
  34249. weight: math.unit(10000, "tons"),
  34250. name: "Side",
  34251. image: {
  34252. source: "./media/characters/raylldo/side.svg",
  34253. extra: 2363/642,
  34254. bottom: 221/2584
  34255. }
  34256. },
  34257. top: {
  34258. height: math.unit(240, "meters"),
  34259. weight: math.unit(10000, "tons"),
  34260. name: "Top",
  34261. image: {
  34262. source: "./media/characters/raylldo/top.svg"
  34263. }
  34264. },
  34265. bottom: {
  34266. height: math.unit(240, "meters"),
  34267. weight: math.unit(10000, "tons"),
  34268. name: "Bottom",
  34269. image: {
  34270. source: "./media/characters/raylldo/bottom.svg"
  34271. }
  34272. },
  34273. head: {
  34274. height: math.unit(38.6, "meters"),
  34275. name: "Head",
  34276. image: {
  34277. source: "./media/characters/raylldo/head.svg",
  34278. extra: 1335/1112,
  34279. bottom: 0/1335
  34280. }
  34281. },
  34282. maw: {
  34283. height: math.unit(16.37, "meters"),
  34284. name: "Maw",
  34285. image: {
  34286. source: "./media/characters/raylldo/maw.svg",
  34287. extra: 883/660,
  34288. bottom: 0/883
  34289. },
  34290. extraAttributes: {
  34291. preyCapacity: {
  34292. name: "Capacity",
  34293. power: 3,
  34294. type: "volume",
  34295. base: math.unit(1000, "people")
  34296. },
  34297. tongueSize: {
  34298. name: "Tongue Size",
  34299. power: 2,
  34300. type: "area",
  34301. base: math.unit(21, "m^2")
  34302. }
  34303. }
  34304. },
  34305. forepaw: {
  34306. height: math.unit(18, "meters"),
  34307. name: "Forepaw",
  34308. image: {
  34309. source: "./media/characters/raylldo/forepaw.svg"
  34310. }
  34311. },
  34312. hindpaw: {
  34313. height: math.unit(23, "meters"),
  34314. name: "Hindpaw",
  34315. image: {
  34316. source: "./media/characters/raylldo/hindpaw.svg"
  34317. }
  34318. },
  34319. genitals: {
  34320. height: math.unit(42, "meters"),
  34321. name: "Genitals",
  34322. image: {
  34323. source: "./media/characters/raylldo/genitals.svg"
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(47.2, "meters"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34337. {
  34338. anthroFront: {
  34339. height: math.unit(9, "feet"),
  34340. weight: math.unit(600, "lb"),
  34341. name: "Anthro (Front)",
  34342. image: {
  34343. source: "./media/characters/glint/anthro-front.svg",
  34344. extra: 1097/1018,
  34345. bottom: 28/1125
  34346. }
  34347. },
  34348. anthroBack: {
  34349. height: math.unit(9, "feet"),
  34350. weight: math.unit(600, "lb"),
  34351. name: "Anthro (Back)",
  34352. image: {
  34353. source: "./media/characters/glint/anthro-back.svg",
  34354. extra: 1154/997,
  34355. bottom: 36/1190
  34356. }
  34357. },
  34358. feral: {
  34359. height: math.unit(11, "feet"),
  34360. weight: math.unit(50000, "lb"),
  34361. name: "Feral",
  34362. image: {
  34363. source: "./media/characters/glint/feral.svg",
  34364. extra: 3035/1585,
  34365. bottom: 1169/4204
  34366. }
  34367. },
  34368. dickAnthro: {
  34369. height: math.unit(0.7, "meters"),
  34370. name: "Dick (Anthro)",
  34371. image: {
  34372. source: "./media/characters/glint/dick-anthro.svg"
  34373. }
  34374. },
  34375. dickFeral: {
  34376. height: math.unit(2.65, "meters"),
  34377. name: "Dick (Feral)",
  34378. image: {
  34379. source: "./media/characters/glint/dick-feral.svg"
  34380. }
  34381. },
  34382. slitHidden: {
  34383. height: math.unit(5.85, "meters"),
  34384. name: "Slit (Hidden)",
  34385. image: {
  34386. source: "./media/characters/glint/slit-hidden.svg"
  34387. }
  34388. },
  34389. slitErect: {
  34390. height: math.unit(5.85, "meters"),
  34391. name: "Slit (Erect)",
  34392. image: {
  34393. source: "./media/characters/glint/slit-erect.svg"
  34394. }
  34395. },
  34396. mawAnthro: {
  34397. height: math.unit(0.63, "meters"),
  34398. name: "Maw (Anthro)",
  34399. image: {
  34400. source: "./media/characters/glint/maw.svg"
  34401. }
  34402. },
  34403. mawFeral: {
  34404. height: math.unit(2.89, "meters"),
  34405. name: "Maw (Feral)",
  34406. image: {
  34407. source: "./media/characters/glint/maw.svg"
  34408. }
  34409. },
  34410. },
  34411. [
  34412. {
  34413. name: "Normal",
  34414. height: math.unit(9, "feet"),
  34415. default: true
  34416. },
  34417. ]
  34418. ))
  34419. characterMakers.push(() => makeCharacter(
  34420. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34421. {
  34422. side: {
  34423. height: math.unit(15, "feet"),
  34424. weight: math.unit(5000, "kg"),
  34425. name: "Side",
  34426. image: {
  34427. source: "./media/characters/kairne/side.svg",
  34428. extra: 979/811,
  34429. bottom: 13/992
  34430. }
  34431. },
  34432. front: {
  34433. height: math.unit(15, "feet"),
  34434. weight: math.unit(5000, "kg"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/kairne/front.svg",
  34438. extra: 908/814,
  34439. bottom: 26/934
  34440. }
  34441. },
  34442. sideNsfw: {
  34443. height: math.unit(15, "feet"),
  34444. weight: math.unit(5000, "kg"),
  34445. name: "Side (NSFW)",
  34446. image: {
  34447. source: "./media/characters/kairne/side-nsfw.svg",
  34448. extra: 979/811,
  34449. bottom: 13/992
  34450. }
  34451. },
  34452. frontNsfw: {
  34453. height: math.unit(15, "feet"),
  34454. weight: math.unit(5000, "kg"),
  34455. name: "Front (NSFW)",
  34456. image: {
  34457. source: "./media/characters/kairne/front-nsfw.svg",
  34458. extra: 908/814,
  34459. bottom: 26/934
  34460. }
  34461. },
  34462. dickCaged: {
  34463. height: math.unit(0.65, "meters"),
  34464. name: "Dick-caged",
  34465. image: {
  34466. source: "./media/characters/kairne/dick-caged.svg"
  34467. }
  34468. },
  34469. dick: {
  34470. height: math.unit(0.79, "meters"),
  34471. name: "Dick",
  34472. image: {
  34473. source: "./media/characters/kairne/dick.svg"
  34474. }
  34475. },
  34476. genitals: {
  34477. height: math.unit(1.29, "meters"),
  34478. name: "Genitals",
  34479. image: {
  34480. source: "./media/characters/kairne/genitals.svg"
  34481. }
  34482. },
  34483. maw: {
  34484. height: math.unit(1.73, "meters"),
  34485. name: "Maw",
  34486. image: {
  34487. source: "./media/characters/kairne/maw.svg"
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Normal",
  34494. height: math.unit(15, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(5 + 8/12, "feet"),
  34504. weight: math.unit(139, "lb"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/biscuit-jackal/front.svg",
  34508. extra: 2106/1961,
  34509. bottom: 58/2164
  34510. }
  34511. },
  34512. back: {
  34513. height: math.unit(5 + 8/12, "feet"),
  34514. weight: math.unit(139, "lb"),
  34515. name: "Back",
  34516. image: {
  34517. source: "./media/characters/biscuit-jackal/back.svg",
  34518. extra: 2132/1976,
  34519. bottom: 57/2189
  34520. }
  34521. },
  34522. werejackal: {
  34523. height: math.unit(6 + 3/12, "feet"),
  34524. weight: math.unit(188, "lb"),
  34525. name: "Werejackal",
  34526. image: {
  34527. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34528. extra: 2373/2178,
  34529. bottom: 53/2426
  34530. }
  34531. },
  34532. },
  34533. [
  34534. {
  34535. name: "Normal",
  34536. height: math.unit(5 + 8/12, "feet"),
  34537. default: true
  34538. },
  34539. ]
  34540. ))
  34541. characterMakers.push(() => makeCharacter(
  34542. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34543. {
  34544. front: {
  34545. height: math.unit(140, "cm"),
  34546. weight: math.unit(45, "kg"),
  34547. name: "Front",
  34548. image: {
  34549. source: "./media/characters/tayra-white/front.svg",
  34550. extra: 2229/2192,
  34551. bottom: 75/2304
  34552. }
  34553. },
  34554. },
  34555. [
  34556. {
  34557. name: "Normal",
  34558. height: math.unit(140, "cm"),
  34559. default: true
  34560. },
  34561. ]
  34562. ))
  34563. characterMakers.push(() => makeCharacter(
  34564. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34565. {
  34566. front: {
  34567. height: math.unit(4 + 5/12, "feet"),
  34568. name: "Front",
  34569. image: {
  34570. source: "./media/characters/scoop/front.svg",
  34571. extra: 1257/1136,
  34572. bottom: 69/1326
  34573. }
  34574. },
  34575. back: {
  34576. height: math.unit(4 + 5/12, "feet"),
  34577. name: "Back",
  34578. image: {
  34579. source: "./media/characters/scoop/back.svg",
  34580. extra: 1321/1152,
  34581. bottom: 32/1353
  34582. }
  34583. },
  34584. maw: {
  34585. height: math.unit(0.68, "feet"),
  34586. name: "Maw",
  34587. image: {
  34588. source: "./media/characters/scoop/maw.svg"
  34589. }
  34590. },
  34591. },
  34592. [
  34593. {
  34594. name: "Really Small",
  34595. height: math.unit(1, "mm")
  34596. },
  34597. {
  34598. name: "Micro",
  34599. height: math.unit(1, "inch")
  34600. },
  34601. {
  34602. name: "Normal",
  34603. height: math.unit(4 + 5/12, "feet"),
  34604. default: true
  34605. },
  34606. {
  34607. name: "Macro",
  34608. height: math.unit(200, "feet")
  34609. },
  34610. {
  34611. name: "Megamacro",
  34612. height: math.unit(3240, "feet")
  34613. },
  34614. {
  34615. name: "Teramacro",
  34616. height: math.unit(2500, "miles")
  34617. },
  34618. ]
  34619. ))
  34620. characterMakers.push(() => makeCharacter(
  34621. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34622. {
  34623. front: {
  34624. height: math.unit(15 + 7/12, "feet"),
  34625. weight: math.unit(1150, "tons"),
  34626. name: "Front",
  34627. image: {
  34628. source: "./media/characters/saphinara/front.svg",
  34629. extra: 1837/1643,
  34630. bottom: 84/1921
  34631. },
  34632. form: "normal",
  34633. default: true
  34634. },
  34635. side: {
  34636. height: math.unit(15 + 7/12, "feet"),
  34637. weight: math.unit(1150, "tons"),
  34638. name: "Side",
  34639. image: {
  34640. source: "./media/characters/saphinara/side.svg",
  34641. extra: 605/547,
  34642. bottom: 6/611
  34643. },
  34644. form: "normal"
  34645. },
  34646. back: {
  34647. height: math.unit(15 + 7/12, "feet"),
  34648. weight: math.unit(1150, "tons"),
  34649. name: "Back",
  34650. image: {
  34651. source: "./media/characters/saphinara/back.svg",
  34652. extra: 591/531,
  34653. bottom: 13/604
  34654. },
  34655. form: "normal"
  34656. },
  34657. frontTail: {
  34658. height: math.unit(15 + 7/12, "feet"),
  34659. weight: math.unit(1150, "tons"),
  34660. name: "Front (Full Tail)",
  34661. image: {
  34662. source: "./media/characters/saphinara/front-tail.svg",
  34663. extra: 2256/1630,
  34664. bottom: 261/2517
  34665. },
  34666. form: "normal"
  34667. },
  34668. insides: {
  34669. height: math.unit(11.92, "feet"),
  34670. name: "Insides",
  34671. image: {
  34672. source: "./media/characters/saphinara/insides.svg"
  34673. },
  34674. form: "normal"
  34675. },
  34676. head: {
  34677. height: math.unit(4.17, "feet"),
  34678. name: "Head",
  34679. image: {
  34680. source: "./media/characters/saphinara/head.svg"
  34681. },
  34682. form: "normal"
  34683. },
  34684. tongue: {
  34685. height: math.unit(4.60, "feet"),
  34686. name: "Tongue",
  34687. image: {
  34688. source: "./media/characters/saphinara/tongue.svg"
  34689. },
  34690. form: "normal"
  34691. },
  34692. headEnraged: {
  34693. height: math.unit(5.55, "feet"),
  34694. name: "Head (Enraged)",
  34695. image: {
  34696. source: "./media/characters/saphinara/head-enraged.svg"
  34697. },
  34698. form: "normal"
  34699. },
  34700. wings: {
  34701. height: math.unit(11.95, "feet"),
  34702. name: "Wings",
  34703. image: {
  34704. source: "./media/characters/saphinara/wings.svg"
  34705. },
  34706. form: "normal"
  34707. },
  34708. feathers: {
  34709. height: math.unit(8.92, "feet"),
  34710. name: "Feathers",
  34711. image: {
  34712. source: "./media/characters/saphinara/feathers.svg"
  34713. },
  34714. form: "normal"
  34715. },
  34716. shackles: {
  34717. height: math.unit(2, "feet"),
  34718. name: "Shackles",
  34719. image: {
  34720. source: "./media/characters/saphinara/shackles.svg"
  34721. },
  34722. form: "normal"
  34723. },
  34724. eyes: {
  34725. height: math.unit(1.331, "feet"),
  34726. name: "Eyes",
  34727. image: {
  34728. source: "./media/characters/saphinara/eyes.svg"
  34729. },
  34730. form: "normal"
  34731. },
  34732. eyesEnraged: {
  34733. height: math.unit(1.331, "feet"),
  34734. name: "Eyes (Enraged)",
  34735. image: {
  34736. source: "./media/characters/saphinara/eyes-enraged.svg"
  34737. },
  34738. form: "normal"
  34739. },
  34740. trueFormSide: {
  34741. height: math.unit(200, "feet"),
  34742. weight: math.unit(1e7, "tons"),
  34743. name: "Side",
  34744. image: {
  34745. source: "./media/characters/saphinara/true-form-side.svg",
  34746. extra: 1399/770,
  34747. bottom: 97/1496
  34748. },
  34749. form: "true-form",
  34750. default: true
  34751. },
  34752. trueFormMaw: {
  34753. height: math.unit(71.5, "feet"),
  34754. name: "Maw",
  34755. image: {
  34756. source: "./media/characters/saphinara/true-form-maw.svg",
  34757. extra: 2302/1453,
  34758. bottom: 0/2302
  34759. },
  34760. form: "true-form"
  34761. },
  34762. meowberusSide: {
  34763. height: math.unit(75, "feet"),
  34764. weight: math.unit(180000, "kg"),
  34765. preyCapacity: math.unit(50000, "people"),
  34766. name: "Side",
  34767. image: {
  34768. source: "./media/characters/saphinara/meowberus-side.svg",
  34769. extra: 1400/711,
  34770. bottom: 126/1526
  34771. },
  34772. form: "meowberus",
  34773. extraAttributes: {
  34774. "pawArea": {
  34775. name: "Paw Size",
  34776. power: 2,
  34777. type: "area",
  34778. base: math.unit(35, "m^2")
  34779. }
  34780. }
  34781. },
  34782. },
  34783. [
  34784. {
  34785. name: "Normal",
  34786. height: math.unit(15 + 7/12, "feet"),
  34787. default: true,
  34788. form: "normal"
  34789. },
  34790. {
  34791. name: "Angry",
  34792. height: math.unit(30 + 6/12, "feet"),
  34793. form: "normal"
  34794. },
  34795. {
  34796. name: "Enraged",
  34797. height: math.unit(102 + 1/12, "feet"),
  34798. form: "normal"
  34799. },
  34800. {
  34801. name: "True",
  34802. height: math.unit(200, "feet"),
  34803. default: true,
  34804. form: "true-form"
  34805. },
  34806. {
  34807. name: "Normal",
  34808. height: math.unit(75, "feet"),
  34809. default: true,
  34810. form: "meowberus"
  34811. },
  34812. ],
  34813. {
  34814. "normal": {
  34815. name: "Normal",
  34816. default: true
  34817. },
  34818. "true-form": {
  34819. name: "True Form"
  34820. },
  34821. "meowberus": {
  34822. name: "Meowberus",
  34823. },
  34824. }
  34825. ))
  34826. characterMakers.push(() => makeCharacter(
  34827. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34828. {
  34829. front: {
  34830. height: math.unit(6 + 8/12, "feet"),
  34831. weight: math.unit(300, "lb"),
  34832. name: "Front",
  34833. image: {
  34834. source: "./media/characters/jrain/front.svg",
  34835. extra: 3039/2865,
  34836. bottom: 399/3438
  34837. }
  34838. },
  34839. back: {
  34840. height: math.unit(6 + 8/12, "feet"),
  34841. weight: math.unit(300, "lb"),
  34842. name: "Back",
  34843. image: {
  34844. source: "./media/characters/jrain/back.svg",
  34845. extra: 3089/2938,
  34846. bottom: 172/3261
  34847. }
  34848. },
  34849. head: {
  34850. height: math.unit(2.14, "feet"),
  34851. name: "Head",
  34852. image: {
  34853. source: "./media/characters/jrain/head.svg"
  34854. }
  34855. },
  34856. maw: {
  34857. height: math.unit(1.77, "feet"),
  34858. name: "Maw",
  34859. image: {
  34860. source: "./media/characters/jrain/maw.svg"
  34861. }
  34862. },
  34863. leftHand: {
  34864. height: math.unit(1.1, "feet"),
  34865. name: "Left Hand",
  34866. image: {
  34867. source: "./media/characters/jrain/left-hand.svg"
  34868. }
  34869. },
  34870. rightHand: {
  34871. height: math.unit(1.1, "feet"),
  34872. name: "Right Hand",
  34873. image: {
  34874. source: "./media/characters/jrain/right-hand.svg"
  34875. }
  34876. },
  34877. eye: {
  34878. height: math.unit(0.35, "feet"),
  34879. name: "Eye",
  34880. image: {
  34881. source: "./media/characters/jrain/eye.svg"
  34882. }
  34883. },
  34884. },
  34885. [
  34886. {
  34887. name: "Normal",
  34888. height: math.unit(6 + 8/12, "feet"),
  34889. default: true
  34890. },
  34891. {
  34892. name: "Casually Large",
  34893. height: math.unit(25, "feet")
  34894. },
  34895. {
  34896. name: "Giant",
  34897. height: math.unit(100, "feet")
  34898. },
  34899. {
  34900. name: "Kaiju",
  34901. height: math.unit(300, "feet")
  34902. },
  34903. ]
  34904. ))
  34905. characterMakers.push(() => makeCharacter(
  34906. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34907. {
  34908. dragon: {
  34909. height: math.unit(5, "meters"),
  34910. name: "Dragon",
  34911. image: {
  34912. source: "./media/characters/sabrina/dragon.svg",
  34913. extra: 3670 / 2365,
  34914. bottom: 333 / 4003
  34915. }
  34916. },
  34917. gryphon: {
  34918. height: math.unit(3, "meters"),
  34919. name: "Gryphon",
  34920. image: {
  34921. source: "./media/characters/sabrina/gryphon.svg",
  34922. extra: 1576 / 945,
  34923. bottom: 71 / 1647
  34924. }
  34925. },
  34926. snake: {
  34927. height: math.unit(12, "meters"),
  34928. name: "Snake",
  34929. image: {
  34930. source: "./media/characters/sabrina/snake.svg",
  34931. extra: 1758 / 1320,
  34932. bottom: 186 / 1944
  34933. }
  34934. },
  34935. collar: {
  34936. height: math.unit(1.86, "meters"),
  34937. name: "Collar",
  34938. image: {
  34939. source: "./media/characters/sabrina/collar.svg"
  34940. }
  34941. },
  34942. eye: {
  34943. height: math.unit(0.53, "meters"),
  34944. name: "Eye",
  34945. image: {
  34946. source: "./media/characters/sabrina/eye.svg"
  34947. }
  34948. },
  34949. foot: {
  34950. height: math.unit(1.86, "meters"),
  34951. name: "Foot",
  34952. image: {
  34953. source: "./media/characters/sabrina/foot.svg"
  34954. }
  34955. },
  34956. hand: {
  34957. height: math.unit(1.32, "meters"),
  34958. name: "Hand",
  34959. image: {
  34960. source: "./media/characters/sabrina/hand.svg"
  34961. }
  34962. },
  34963. head: {
  34964. height: math.unit(2.44, "meters"),
  34965. name: "Head",
  34966. image: {
  34967. source: "./media/characters/sabrina/head.svg"
  34968. }
  34969. },
  34970. headAngry: {
  34971. height: math.unit(2.44, "meters"),
  34972. name: "Head (Angry))",
  34973. image: {
  34974. source: "./media/characters/sabrina/head-angry.svg"
  34975. }
  34976. },
  34977. maw: {
  34978. height: math.unit(1.65, "meters"),
  34979. name: "Maw",
  34980. image: {
  34981. source: "./media/characters/sabrina/maw.svg"
  34982. }
  34983. },
  34984. spikes: {
  34985. height: math.unit(1.69, "meters"),
  34986. name: "Spikes",
  34987. image: {
  34988. source: "./media/characters/sabrina/spikes.svg"
  34989. }
  34990. },
  34991. stomach: {
  34992. height: math.unit(1.15, "meters"),
  34993. name: "Stomach",
  34994. image: {
  34995. source: "./media/characters/sabrina/stomach.svg"
  34996. }
  34997. },
  34998. tongue: {
  34999. height: math.unit(1.27, "meters"),
  35000. name: "Tongue",
  35001. image: {
  35002. source: "./media/characters/sabrina/tongue.svg"
  35003. }
  35004. },
  35005. wingDorsal: {
  35006. height: math.unit(4.85, "meters"),
  35007. name: "Wing (Dorsal)",
  35008. image: {
  35009. source: "./media/characters/sabrina/wing-dorsal.svg"
  35010. }
  35011. },
  35012. wingVentral: {
  35013. height: math.unit(4.85, "meters"),
  35014. name: "Wing (Ventral)",
  35015. image: {
  35016. source: "./media/characters/sabrina/wing-ventral.svg"
  35017. }
  35018. },
  35019. },
  35020. [
  35021. {
  35022. name: "Normal",
  35023. height: math.unit(5, "meters"),
  35024. default: true
  35025. },
  35026. ]
  35027. ))
  35028. characterMakers.push(() => makeCharacter(
  35029. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35030. {
  35031. frontMaid: {
  35032. height: math.unit(5 + 5/12, "feet"),
  35033. weight: math.unit(130, "lb"),
  35034. name: "Front (Maid)",
  35035. image: {
  35036. source: "./media/characters/midnight-tales/front-maid.svg",
  35037. extra: 489/454,
  35038. bottom: 61/550
  35039. }
  35040. },
  35041. frontFormal: {
  35042. height: math.unit(5 + 5/12, "feet"),
  35043. weight: math.unit(130, "lb"),
  35044. name: "Front (Formal)",
  35045. image: {
  35046. source: "./media/characters/midnight-tales/front-formal.svg",
  35047. extra: 489/454,
  35048. bottom: 61/550
  35049. }
  35050. },
  35051. back: {
  35052. height: math.unit(5 + 5/12, "feet"),
  35053. weight: math.unit(130, "lb"),
  35054. name: "Back",
  35055. image: {
  35056. source: "./media/characters/midnight-tales/back.svg",
  35057. extra: 498/456,
  35058. bottom: 33/531
  35059. }
  35060. },
  35061. frontBeast: {
  35062. height: math.unit(40, "feet"),
  35063. weight: math.unit(64000, "lb"),
  35064. name: "Front (Beast)",
  35065. image: {
  35066. source: "./media/characters/midnight-tales/front-beast.svg",
  35067. extra: 927/860,
  35068. bottom: 53/980
  35069. }
  35070. },
  35071. backBeast: {
  35072. height: math.unit(40, "feet"),
  35073. weight: math.unit(64000, "lb"),
  35074. name: "Back (Beast)",
  35075. image: {
  35076. source: "./media/characters/midnight-tales/back-beast.svg",
  35077. extra: 929/855,
  35078. bottom: 16/945
  35079. }
  35080. },
  35081. footBeast: {
  35082. height: math.unit(6.7, "feet"),
  35083. name: "Foot (Beast)",
  35084. image: {
  35085. source: "./media/characters/midnight-tales/foot-beast.svg"
  35086. }
  35087. },
  35088. headBeast: {
  35089. height: math.unit(8, "feet"),
  35090. name: "Head (Beast)",
  35091. image: {
  35092. source: "./media/characters/midnight-tales/head-beast.svg"
  35093. }
  35094. },
  35095. },
  35096. [
  35097. {
  35098. name: "Normal",
  35099. height: math.unit(5 + 5 / 12, "feet"),
  35100. default: true
  35101. },
  35102. {
  35103. name: "Macro",
  35104. height: math.unit(25, "feet")
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(5 + 10/12, "feet"),
  35113. name: "Front",
  35114. image: {
  35115. source: "./media/characters/argon/front.svg",
  35116. extra: 2009/1935,
  35117. bottom: 118/2127
  35118. }
  35119. },
  35120. back: {
  35121. height: math.unit(5 + 10/12, "feet"),
  35122. name: "Back",
  35123. image: {
  35124. source: "./media/characters/argon/back.svg",
  35125. extra: 2047/1992,
  35126. bottom: 20/2067
  35127. }
  35128. },
  35129. frontDressed: {
  35130. height: math.unit(5 + 10/12, "feet"),
  35131. name: "Front (Dressed)",
  35132. image: {
  35133. source: "./media/characters/argon/front-dressed.svg",
  35134. extra: 2009/1935,
  35135. bottom: 118/2127
  35136. }
  35137. },
  35138. },
  35139. [
  35140. {
  35141. name: "Normal",
  35142. height: math.unit(5 + 10/12, "feet"),
  35143. default: true
  35144. },
  35145. ]
  35146. ))
  35147. characterMakers.push(() => makeCharacter(
  35148. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35149. {
  35150. front: {
  35151. height: math.unit(8 + 6/12, "feet"),
  35152. weight: math.unit(1150, "lb"),
  35153. name: "Front",
  35154. image: {
  35155. source: "./media/characters/kichi/front.svg",
  35156. extra: 1267/1164,
  35157. bottom: 61/1328
  35158. }
  35159. },
  35160. back: {
  35161. height: math.unit(8 + 6/12, "feet"),
  35162. weight: math.unit(1150, "lb"),
  35163. name: "Back",
  35164. image: {
  35165. source: "./media/characters/kichi/back.svg",
  35166. extra: 1273/1166,
  35167. bottom: 33/1306
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Normal",
  35174. height: math.unit(8 + 6/12, "feet"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(6, "feet"),
  35184. weight: math.unit(210, "lb"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/manetel-greyscale/front.svg",
  35188. extra: 350/312,
  35189. bottom: 8/358
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Micro",
  35196. height: math.unit(2, "inches")
  35197. },
  35198. {
  35199. name: "Normal",
  35200. height: math.unit(6, "feet"),
  35201. default: true
  35202. },
  35203. {
  35204. name: "Minimacro",
  35205. height: math.unit(17, "feet")
  35206. },
  35207. {
  35208. name: "Macro",
  35209. height: math.unit(117, "feet")
  35210. },
  35211. ]
  35212. ))
  35213. characterMakers.push(() => makeCharacter(
  35214. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35215. {
  35216. side: {
  35217. height: math.unit(5 + 1/12, "feet"),
  35218. weight: math.unit(418, "lb"),
  35219. name: "Side",
  35220. image: {
  35221. source: "./media/characters/softpurr/side.svg",
  35222. extra: 1993/1945,
  35223. bottom: 134/2127
  35224. }
  35225. },
  35226. front: {
  35227. height: math.unit(5 + 1/12, "feet"),
  35228. weight: math.unit(418, "lb"),
  35229. name: "Front",
  35230. image: {
  35231. source: "./media/characters/softpurr/front.svg",
  35232. extra: 1950/1856,
  35233. bottom: 174/2124
  35234. }
  35235. },
  35236. paw: {
  35237. height: math.unit(1, "feet"),
  35238. name: "Paw",
  35239. image: {
  35240. source: "./media/characters/softpurr/paw.svg"
  35241. }
  35242. },
  35243. },
  35244. [
  35245. {
  35246. name: "Normal",
  35247. height: math.unit(5 + 1/12, "feet"),
  35248. default: true
  35249. },
  35250. ]
  35251. ))
  35252. characterMakers.push(() => makeCharacter(
  35253. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35254. {
  35255. front: {
  35256. height: math.unit(260, "meters"),
  35257. name: "Front",
  35258. image: {
  35259. source: "./media/characters/anahita/front.svg",
  35260. extra: 665/635,
  35261. bottom: 89/754
  35262. }
  35263. },
  35264. },
  35265. [
  35266. {
  35267. name: "Macro",
  35268. height: math.unit(260, "meters"),
  35269. default: true
  35270. },
  35271. ]
  35272. ))
  35273. characterMakers.push(() => makeCharacter(
  35274. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35275. {
  35276. front: {
  35277. height: math.unit(4 + 10/12, "feet"),
  35278. weight: math.unit(160, "lb"),
  35279. name: "Front",
  35280. image: {
  35281. source: "./media/characters/chip-mouse/front.svg",
  35282. extra: 3528/3408,
  35283. bottom: 0/3528
  35284. }
  35285. },
  35286. frontNsfw: {
  35287. height: math.unit(4 + 10/12, "feet"),
  35288. weight: math.unit(160, "lb"),
  35289. name: "Front (NSFW)",
  35290. image: {
  35291. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35292. extra: 3528/3408,
  35293. bottom: 0/3528
  35294. }
  35295. },
  35296. },
  35297. [
  35298. {
  35299. name: "Normal",
  35300. height: math.unit(4 + 10/12, "feet"),
  35301. default: true
  35302. },
  35303. ]
  35304. ))
  35305. characterMakers.push(() => makeCharacter(
  35306. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35307. {
  35308. side: {
  35309. height: math.unit(10, "feet"),
  35310. weight: math.unit(14000, "lb"),
  35311. name: "Side",
  35312. image: {
  35313. source: "./media/characters/kremm/side.svg",
  35314. extra: 1390/1053,
  35315. bottom: 90/1480
  35316. }
  35317. },
  35318. gut: {
  35319. height: math.unit(5.8, "feet"),
  35320. name: "Gut",
  35321. image: {
  35322. source: "./media/characters/kremm/gut.svg"
  35323. }
  35324. },
  35325. ass: {
  35326. height: math.unit(6.1, "feet"),
  35327. name: "Ass",
  35328. image: {
  35329. source: "./media/characters/kremm/ass.svg"
  35330. }
  35331. },
  35332. jaws: {
  35333. height: math.unit(2.2, "feet"),
  35334. name: "Jaws",
  35335. image: {
  35336. source: "./media/characters/kremm/jaws.svg"
  35337. }
  35338. },
  35339. dick: {
  35340. height: math.unit(4.26, "feet"),
  35341. name: "Dick",
  35342. image: {
  35343. source: "./media/characters/kremm/dick.svg"
  35344. }
  35345. },
  35346. },
  35347. [
  35348. {
  35349. name: "Normal",
  35350. height: math.unit(10, "feet"),
  35351. default: true
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35357. {
  35358. front: {
  35359. height: math.unit(30, "stories"),
  35360. name: "Front",
  35361. image: {
  35362. source: "./media/characters/kai/front.svg",
  35363. extra: 1892/1718,
  35364. bottom: 162/2054
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Macro",
  35371. height: math.unit(30, "stories"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(6 + 4/12, "feet"),
  35381. weight: math.unit(145, "lb"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/sykes/front.svg",
  35385. extra: 1321 / 1187,
  35386. bottom: 66 / 1387
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(6 + 4/12, "feet"),
  35391. weight: math.unit(145, "lb"),
  35392. name: "Back",
  35393. image: {
  35394. source: "./media/characters/sykes/back.svg",
  35395. extra: 1326/1181,
  35396. bottom: 31/1357
  35397. }
  35398. },
  35399. traditionalOutfit: {
  35400. height: math.unit(6 + 4/12, "feet"),
  35401. weight: math.unit(145, "lb"),
  35402. name: "Traditional Outfit",
  35403. image: {
  35404. source: "./media/characters/sykes/traditional-outfit.svg",
  35405. extra: 1321 / 1187,
  35406. bottom: 66 / 1387
  35407. }
  35408. },
  35409. adventureOutfit: {
  35410. height: math.unit(6 + 4/12, "feet"),
  35411. weight: math.unit(145, "lb"),
  35412. name: "Adventure Outfit",
  35413. image: {
  35414. source: "./media/characters/sykes/adventure-outfit.svg",
  35415. extra: 1321 / 1187,
  35416. bottom: 66 / 1387
  35417. }
  35418. },
  35419. handLeft: {
  35420. height: math.unit(0.9, "feet"),
  35421. name: "Hand (Left)",
  35422. image: {
  35423. source: "./media/characters/sykes/hand-left.svg"
  35424. }
  35425. },
  35426. handRight: {
  35427. height: math.unit(0.839, "feet"),
  35428. name: "Hand (Right)",
  35429. image: {
  35430. source: "./media/characters/sykes/hand-right.svg"
  35431. }
  35432. },
  35433. leftFoot: {
  35434. height: math.unit(1.2, "feet"),
  35435. name: "Foot (Left)",
  35436. image: {
  35437. source: "./media/characters/sykes/foot-left.svg"
  35438. }
  35439. },
  35440. rightFoot: {
  35441. height: math.unit(1.2, "feet"),
  35442. name: "Foot (Right)",
  35443. image: {
  35444. source: "./media/characters/sykes/foot-right.svg"
  35445. }
  35446. },
  35447. maw: {
  35448. height: math.unit(1.93, "feet"),
  35449. name: "Maw",
  35450. image: {
  35451. source: "./media/characters/sykes/maw.svg"
  35452. }
  35453. },
  35454. teeth: {
  35455. height: math.unit(0.51, "feet"),
  35456. name: "Teeth",
  35457. image: {
  35458. source: "./media/characters/sykes/teeth.svg"
  35459. }
  35460. },
  35461. tongue: {
  35462. height: math.unit(2.13, "feet"),
  35463. name: "Tongue",
  35464. image: {
  35465. source: "./media/characters/sykes/tongue.svg"
  35466. }
  35467. },
  35468. uvula: {
  35469. height: math.unit(0.16, "feet"),
  35470. name: "Uvula",
  35471. image: {
  35472. source: "./media/characters/sykes/uvula.svg"
  35473. }
  35474. },
  35475. collar: {
  35476. height: math.unit(0.287, "feet"),
  35477. name: "Collar",
  35478. image: {
  35479. source: "./media/characters/sykes/collar.svg"
  35480. }
  35481. },
  35482. tail: {
  35483. height: math.unit(3.8, "feet"),
  35484. name: "Tail",
  35485. image: {
  35486. source: "./media/characters/sykes/tail.svg"
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Shrunken",
  35493. height: math.unit(5, "inches")
  35494. },
  35495. {
  35496. name: "Normal",
  35497. height: math.unit(6 + 4 / 12, "feet"),
  35498. default: true
  35499. },
  35500. {
  35501. name: "Big",
  35502. height: math.unit(15, "feet")
  35503. },
  35504. ]
  35505. ))
  35506. characterMakers.push(() => makeCharacter(
  35507. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35508. {
  35509. front: {
  35510. height: math.unit(5 + 8/12, "feet"),
  35511. weight: math.unit(190, "lb"),
  35512. name: "Front",
  35513. image: {
  35514. source: "./media/characters/oven-otter/front.svg",
  35515. extra: 1809/1740,
  35516. bottom: 181/1990
  35517. }
  35518. },
  35519. back: {
  35520. height: math.unit(5 + 8/12, "feet"),
  35521. weight: math.unit(190, "lb"),
  35522. name: "Back",
  35523. image: {
  35524. source: "./media/characters/oven-otter/back.svg",
  35525. extra: 1709/1635,
  35526. bottom: 118/1827
  35527. }
  35528. },
  35529. hand: {
  35530. height: math.unit(1.07, "feet"),
  35531. name: "Hand",
  35532. image: {
  35533. source: "./media/characters/oven-otter/hand.svg"
  35534. }
  35535. },
  35536. beans: {
  35537. height: math.unit(1.74, "feet"),
  35538. name: "Beans",
  35539. image: {
  35540. source: "./media/characters/oven-otter/beans.svg"
  35541. }
  35542. },
  35543. },
  35544. [
  35545. {
  35546. name: "Micro",
  35547. height: math.unit(0.5, "inches")
  35548. },
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(5 + 8/12, "feet"),
  35552. default: true
  35553. },
  35554. {
  35555. name: "Macro",
  35556. height: math.unit(250, "feet")
  35557. },
  35558. {
  35559. name: "Really High",
  35560. height: math.unit(420, "feet")
  35561. },
  35562. ]
  35563. ))
  35564. characterMakers.push(() => makeCharacter(
  35565. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35566. {
  35567. front: {
  35568. height: math.unit(5, "meters"),
  35569. weight: math.unit(292000000000000, "kg"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/devourer/front.svg",
  35573. extra: 1800/1733,
  35574. bottom: 211/2011
  35575. }
  35576. },
  35577. maw: {
  35578. height: math.unit(1.1, "meter"),
  35579. name: "Maw",
  35580. image: {
  35581. source: "./media/characters/devourer/maw.svg"
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Small",
  35588. height: math.unit(3, "meters")
  35589. },
  35590. {
  35591. name: "Large",
  35592. height: math.unit(5, "meters"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35599. {
  35600. front: {
  35601. height: math.unit(6, "feet"),
  35602. weight: math.unit(400, "lb"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/ellarby/front.svg",
  35606. extra: 1909/1763,
  35607. bottom: 80/1989
  35608. }
  35609. },
  35610. back: {
  35611. height: math.unit(6, "feet"),
  35612. weight: math.unit(400, "lb"),
  35613. name: "Back",
  35614. image: {
  35615. source: "./media/characters/ellarby/back.svg",
  35616. extra: 1914/1784,
  35617. bottom: 172/2086
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Mischief",
  35624. height: math.unit(18, "inches")
  35625. },
  35626. {
  35627. name: "Trouble",
  35628. height: math.unit(12, "feet")
  35629. },
  35630. {
  35631. name: "Havoc",
  35632. height: math.unit(200, "feet"),
  35633. default: true
  35634. },
  35635. {
  35636. name: "Pandemonium",
  35637. height: math.unit(1, "mile")
  35638. },
  35639. {
  35640. name: "Catastrophe",
  35641. height: math.unit(100, "miles")
  35642. },
  35643. ]
  35644. ))
  35645. characterMakers.push(() => makeCharacter(
  35646. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35647. {
  35648. front: {
  35649. height: math.unit(4.7, "meters"),
  35650. weight: math.unit(6500, "kg"),
  35651. name: "Front",
  35652. image: {
  35653. source: "./media/characters/vex/front.svg",
  35654. extra: 1288/1140,
  35655. bottom: 100/1388
  35656. }
  35657. },
  35658. },
  35659. [
  35660. {
  35661. name: "Normal",
  35662. height: math.unit(4.7, "meters"),
  35663. default: true
  35664. },
  35665. ]
  35666. ))
  35667. characterMakers.push(() => makeCharacter(
  35668. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35669. {
  35670. normal: {
  35671. height: math.unit(6, "feet"),
  35672. weight: math.unit(350, "lb"),
  35673. name: "Normal",
  35674. image: {
  35675. source: "./media/characters/teshy/normal.svg",
  35676. extra: 1795/1735,
  35677. bottom: 16/1811
  35678. }
  35679. },
  35680. monsterFront: {
  35681. height: math.unit(12, "feet"),
  35682. weight: math.unit(4700, "lb"),
  35683. name: "Monster (Front)",
  35684. image: {
  35685. source: "./media/characters/teshy/monster-front.svg",
  35686. extra: 2042/2034,
  35687. bottom: 128/2170
  35688. }
  35689. },
  35690. monsterSide: {
  35691. height: math.unit(12, "feet"),
  35692. weight: math.unit(4700, "lb"),
  35693. name: "Monster (Side)",
  35694. image: {
  35695. source: "./media/characters/teshy/monster-side.svg",
  35696. extra: 2067/2056,
  35697. bottom: 70/2137
  35698. }
  35699. },
  35700. monsterBack: {
  35701. height: math.unit(12, "feet"),
  35702. weight: math.unit(4700, "lb"),
  35703. name: "Monster (Back)",
  35704. image: {
  35705. source: "./media/characters/teshy/monster-back.svg",
  35706. extra: 1921/1914,
  35707. bottom: 171/2092
  35708. }
  35709. },
  35710. },
  35711. [
  35712. {
  35713. name: "Normal",
  35714. height: math.unit(6, "feet"),
  35715. default: true
  35716. },
  35717. ]
  35718. ))
  35719. characterMakers.push(() => makeCharacter(
  35720. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35721. {
  35722. front: {
  35723. height: math.unit(6, "feet"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/ramey/front.svg",
  35727. extra: 790/787,
  35728. bottom: 27/817
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Normal",
  35735. height: math.unit(6, "feet"),
  35736. default: true
  35737. },
  35738. ]
  35739. ))
  35740. characterMakers.push(() => makeCharacter(
  35741. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35742. {
  35743. front: {
  35744. height: math.unit(5 + 5/12, "feet"),
  35745. weight: math.unit(120, "lb"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/phirae/front.svg",
  35749. extra: 2491/2436,
  35750. bottom: 38/2529
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(5 + 5/12, "feet"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35764. {
  35765. front: {
  35766. height: math.unit(5 + 3/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/stagglas/front.svg",
  35770. extra: 962/882,
  35771. bottom: 53/1015
  35772. }
  35773. },
  35774. feral: {
  35775. height: math.unit(335, "cm"),
  35776. name: "Feral",
  35777. image: {
  35778. source: "./media/characters/stagglas/feral.svg",
  35779. extra: 1732/1090,
  35780. bottom: 48/1780
  35781. }
  35782. },
  35783. },
  35784. [
  35785. {
  35786. name: "Normal",
  35787. height: math.unit(5 + 3/12, "feet"),
  35788. default: true
  35789. },
  35790. ]
  35791. ))
  35792. characterMakers.push(() => makeCharacter(
  35793. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35794. {
  35795. front: {
  35796. height: math.unit(5 + 4/12, "feet"),
  35797. weight: math.unit(145, "lb"),
  35798. name: "Front",
  35799. image: {
  35800. source: "./media/characters/starra/front.svg",
  35801. extra: 1790/1691,
  35802. bottom: 91/1881
  35803. }
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(5 + 4/12, "feet"),
  35810. default: true
  35811. },
  35812. ]
  35813. ))
  35814. characterMakers.push(() => makeCharacter(
  35815. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35816. {
  35817. front: {
  35818. height: math.unit(2.2, "meters"),
  35819. name: "Front",
  35820. image: {
  35821. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35822. extra: 1194/1005,
  35823. bottom: 25/1219
  35824. }
  35825. },
  35826. },
  35827. [
  35828. {
  35829. name: "Normal",
  35830. height: math.unit(2.2, "meters"),
  35831. default: true
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35837. {
  35838. side: {
  35839. height: math.unit(8 + 2/12, "feet"),
  35840. weight: math.unit(1240, "lb"),
  35841. name: "Side",
  35842. image: {
  35843. source: "./media/characters/mika-valentine/side.svg",
  35844. extra: 2670/2501,
  35845. bottom: 250/2920
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Normal",
  35852. height: math.unit(8 + 2/12, "feet"),
  35853. default: true
  35854. },
  35855. ]
  35856. ))
  35857. characterMakers.push(() => makeCharacter(
  35858. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35859. {
  35860. front: {
  35861. height: math.unit(7 + 2/12, "feet"),
  35862. name: "Front",
  35863. image: {
  35864. source: "./media/characters/xoltol/front.svg",
  35865. extra: 2212/2124,
  35866. bottom: 84/2296
  35867. }
  35868. },
  35869. side: {
  35870. height: math.unit(7 + 2/12, "feet"),
  35871. name: "Side",
  35872. image: {
  35873. source: "./media/characters/xoltol/side.svg",
  35874. extra: 2273/2197,
  35875. bottom: 26/2299
  35876. }
  35877. },
  35878. hand: {
  35879. height: math.unit(2.5, "feet"),
  35880. name: "Hand",
  35881. image: {
  35882. source: "./media/characters/xoltol/hand.svg"
  35883. }
  35884. },
  35885. },
  35886. [
  35887. {
  35888. name: "Small-ish",
  35889. height: math.unit(5 + 11/12, "feet")
  35890. },
  35891. {
  35892. name: "Normal",
  35893. height: math.unit(7 + 2/12, "feet")
  35894. },
  35895. {
  35896. name: "\"Macro\"",
  35897. height: math.unit(14 + 9/12, "feet"),
  35898. default: true
  35899. },
  35900. {
  35901. name: "Alternate Height",
  35902. height: math.unit(20, "feet")
  35903. },
  35904. {
  35905. name: "Actually Macro",
  35906. height: math.unit(100, "feet")
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(5 + 2/12, "feet"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/kotetsu-redwood/front.svg",
  35918. extra: 1053/942,
  35919. bottom: 60/1113
  35920. }
  35921. },
  35922. },
  35923. [
  35924. {
  35925. name: "Normal",
  35926. height: math.unit(5 + 2/12, "feet"),
  35927. default: true
  35928. },
  35929. ]
  35930. ))
  35931. characterMakers.push(() => makeCharacter(
  35932. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35933. {
  35934. front: {
  35935. height: math.unit(2.4, "meters"),
  35936. weight: math.unit(125, "kg"),
  35937. name: "Front",
  35938. image: {
  35939. source: "./media/characters/lilith/front.svg",
  35940. extra: 1590/1513,
  35941. bottom: 203/1793
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Humanoid",
  35948. height: math.unit(2.4, "meters")
  35949. },
  35950. {
  35951. name: "Normal",
  35952. height: math.unit(6, "meters"),
  35953. default: true
  35954. },
  35955. {
  35956. name: "Largest",
  35957. height: math.unit(55, "meters")
  35958. },
  35959. ]
  35960. ))
  35961. characterMakers.push(() => makeCharacter(
  35962. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35963. {
  35964. front: {
  35965. height: math.unit(8 + 4/12, "feet"),
  35966. weight: math.unit(535, "lb"),
  35967. name: "Front",
  35968. image: {
  35969. source: "./media/characters/beh'kah-bolger/front.svg",
  35970. extra: 1660/1603,
  35971. bottom: 37/1697
  35972. }
  35973. },
  35974. },
  35975. [
  35976. {
  35977. name: "Normal",
  35978. height: math.unit(8 + 4/12, "feet"),
  35979. default: true
  35980. },
  35981. {
  35982. name: "Kaiju",
  35983. height: math.unit(250, "feet")
  35984. },
  35985. {
  35986. name: "Still Growing",
  35987. height: math.unit(10, "miles")
  35988. },
  35989. {
  35990. name: "Continental",
  35991. height: math.unit(5000, "miles")
  35992. },
  35993. {
  35994. name: "Final Form",
  35995. height: math.unit(2500000, "miles")
  35996. },
  35997. ]
  35998. ))
  35999. characterMakers.push(() => makeCharacter(
  36000. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36001. {
  36002. front: {
  36003. height: math.unit(7 + 2/12, "feet"),
  36004. weight: math.unit(230, "kg"),
  36005. name: "Front",
  36006. image: {
  36007. source: "./media/characters/tatyana-milewska/front.svg",
  36008. extra: 1199/1150,
  36009. bottom: 86/1285
  36010. }
  36011. },
  36012. },
  36013. [
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(7 + 2/12, "feet"),
  36017. default: true
  36018. },
  36019. {
  36020. name: "Big",
  36021. height: math.unit(12, "feet")
  36022. },
  36023. {
  36024. name: "Minimacro",
  36025. height: math.unit(20, "feet")
  36026. },
  36027. {
  36028. name: "Macro",
  36029. height: math.unit(120, "feet")
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(7 + 8/12, "feet"),
  36038. weight: math.unit(152, "kg"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/helen-arri/front.svg",
  36042. extra: 440/423,
  36043. bottom: 14/454
  36044. }
  36045. },
  36046. back: {
  36047. height: math.unit(7 + 8/12, "feet"),
  36048. weight: math.unit(152, "kg"),
  36049. name: "Back",
  36050. image: {
  36051. source: "./media/characters/helen-arri/back.svg",
  36052. extra: 443/426,
  36053. bottom: 8/451
  36054. }
  36055. },
  36056. },
  36057. [
  36058. {
  36059. name: "Normal",
  36060. height: math.unit(7 + 8/12, "feet"),
  36061. default: true
  36062. },
  36063. {
  36064. name: "Big",
  36065. height: math.unit(14, "feet")
  36066. },
  36067. {
  36068. name: "Minimacro",
  36069. height: math.unit(24, "feet")
  36070. },
  36071. {
  36072. name: "Macro",
  36073. height: math.unit(140, "feet")
  36074. },
  36075. ]
  36076. ))
  36077. characterMakers.push(() => makeCharacter(
  36078. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36079. {
  36080. front: {
  36081. height: math.unit(6, "meters"),
  36082. name: "Front",
  36083. image: {
  36084. source: "./media/characters/ehanu-rehu/front.svg",
  36085. extra: 1800/1800,
  36086. bottom: 59/1859
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Normal",
  36093. height: math.unit(6, "meters"),
  36094. default: true
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36100. {
  36101. front: {
  36102. height: math.unit(7 + 3/12, "feet"),
  36103. name: "Front",
  36104. image: {
  36105. source: "./media/characters/renholder/front.svg",
  36106. extra: 3096/2960,
  36107. bottom: 250/3346
  36108. }
  36109. },
  36110. },
  36111. [
  36112. {
  36113. name: "Normal Bat",
  36114. height: math.unit(7 + 3/12, "feet"),
  36115. default: true
  36116. },
  36117. {
  36118. name: "Slightly Tall Bat",
  36119. height: math.unit(100, "feet")
  36120. },
  36121. {
  36122. name: "Big Bat",
  36123. height: math.unit(1000, "feet")
  36124. },
  36125. {
  36126. name: "City-Sized Bat",
  36127. height: math.unit(200000, "feet")
  36128. },
  36129. {
  36130. name: "Bigger Bat",
  36131. height: math.unit(10000, "miles")
  36132. },
  36133. {
  36134. name: "Solar Sized Bat",
  36135. height: math.unit(100, "AU")
  36136. },
  36137. {
  36138. name: "Galactic Bat",
  36139. height: math.unit(200000, "lightyears")
  36140. },
  36141. {
  36142. name: "Universally Known Bat",
  36143. height: math.unit(1, "universe")
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(6 + 11/12, "feet"),
  36152. weight: math.unit(250, "lb"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/cookiecat/front.svg",
  36156. extra: 893/827,
  36157. bottom: 14/907
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Micro",
  36164. height: math.unit(3, "inches")
  36165. },
  36166. {
  36167. name: "Normal",
  36168. height: math.unit(6 + 11/12, "feet"),
  36169. default: true
  36170. },
  36171. {
  36172. name: "Macro",
  36173. height: math.unit(100, "feet")
  36174. },
  36175. {
  36176. name: "Macro+",
  36177. height: math.unit(404, "feet")
  36178. },
  36179. {
  36180. name: "Megamacro",
  36181. height: math.unit(165, "miles")
  36182. },
  36183. {
  36184. name: "Planetary",
  36185. height: math.unit(4600, "miles")
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(10 + 3/12, "feet"),
  36194. weight: math.unit(1500, "lb"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/tux-kusanagi/front.svg",
  36198. extra: 944/840,
  36199. bottom: 39/983
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(10 + 3/12, "feet"),
  36204. weight: math.unit(1500, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/tux-kusanagi/back.svg",
  36208. extra: 941/842,
  36209. bottom: 28/969
  36210. }
  36211. },
  36212. rump: {
  36213. height: math.unit(5.25, "feet"),
  36214. name: "Rump",
  36215. image: {
  36216. source: "./media/characters/tux-kusanagi/rump.svg"
  36217. }
  36218. },
  36219. beak: {
  36220. height: math.unit(1.54, "feet"),
  36221. name: "Beak",
  36222. image: {
  36223. source: "./media/characters/tux-kusanagi/beak.svg"
  36224. }
  36225. },
  36226. },
  36227. [
  36228. {
  36229. name: "Normal",
  36230. height: math.unit(10 + 3/12, "feet"),
  36231. default: true
  36232. },
  36233. ]
  36234. ))
  36235. characterMakers.push(() => makeCharacter(
  36236. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36237. {
  36238. front: {
  36239. height: math.unit(58, "feet"),
  36240. weight: math.unit(200, "tons"),
  36241. name: "Front",
  36242. image: {
  36243. source: "./media/characters/uzarmazari/front.svg",
  36244. extra: 1575/1455,
  36245. bottom: 152/1727
  36246. }
  36247. },
  36248. back: {
  36249. height: math.unit(58, "feet"),
  36250. weight: math.unit(200, "tons"),
  36251. name: "Back",
  36252. image: {
  36253. source: "./media/characters/uzarmazari/back.svg",
  36254. extra: 1585/1510,
  36255. bottom: 157/1742
  36256. }
  36257. },
  36258. head: {
  36259. height: math.unit(26, "feet"),
  36260. name: "Head",
  36261. image: {
  36262. source: "./media/characters/uzarmazari/head.svg"
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(58, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36276. {
  36277. side: {
  36278. height: math.unit(15, "feet"),
  36279. name: "Side",
  36280. image: {
  36281. source: "./media/characters/akitu/side.svg",
  36282. extra: 1421/1321,
  36283. bottom: 157/1578
  36284. }
  36285. },
  36286. front: {
  36287. height: math.unit(15, "feet"),
  36288. name: "Front",
  36289. image: {
  36290. source: "./media/characters/akitu/front.svg",
  36291. extra: 1435/1326,
  36292. bottom: 232/1667
  36293. }
  36294. },
  36295. },
  36296. [
  36297. {
  36298. name: "Normal",
  36299. height: math.unit(15, "feet"),
  36300. default: true
  36301. },
  36302. ]
  36303. ))
  36304. characterMakers.push(() => makeCharacter(
  36305. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36306. {
  36307. front: {
  36308. height: math.unit(10 + 8/12, "feet"),
  36309. name: "Front",
  36310. image: {
  36311. source: "./media/characters/azalie-croixland/front.svg",
  36312. extra: 1972/1856,
  36313. bottom: 31/2003
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Original Height",
  36320. height: math.unit(5 + 4/12, "feet")
  36321. },
  36322. {
  36323. name: "Normal Height",
  36324. height: math.unit(10 + 8/12, "feet"),
  36325. default: true
  36326. },
  36327. ]
  36328. ))
  36329. characterMakers.push(() => makeCharacter(
  36330. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36331. {
  36332. side: {
  36333. height: math.unit(7 + 1/12, "feet"),
  36334. weight: math.unit(245, "lb"),
  36335. name: "Side",
  36336. image: {
  36337. source: "./media/characters/kavus-kazian/side.svg",
  36338. extra: 349/342,
  36339. bottom: 15/364
  36340. }
  36341. },
  36342. },
  36343. [
  36344. {
  36345. name: "Normal",
  36346. height: math.unit(7 + 1/12, "feet"),
  36347. default: true
  36348. },
  36349. ]
  36350. ))
  36351. characterMakers.push(() => makeCharacter(
  36352. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36353. {
  36354. normalFront: {
  36355. height: math.unit(5 + 11/12, "feet"),
  36356. name: "Front",
  36357. image: {
  36358. source: "./media/characters/moonlight-rose/normal-front.svg",
  36359. extra: 1980/1825,
  36360. bottom: 18/1998
  36361. },
  36362. form: "normal",
  36363. default: true
  36364. },
  36365. normalBack: {
  36366. height: math.unit(5 + 11/12, "feet"),
  36367. name: "Back",
  36368. image: {
  36369. source: "./media/characters/moonlight-rose/normal-back.svg",
  36370. extra: 2010/1839,
  36371. bottom: 10/2020
  36372. },
  36373. form: "normal"
  36374. },
  36375. demonFront: {
  36376. height: math.unit(1.5, "earths"),
  36377. name: "Front",
  36378. image: {
  36379. source: "./media/characters/moonlight-rose/demon.svg",
  36380. extra: 1400/1294,
  36381. bottom: 45/1445
  36382. },
  36383. form: "demon",
  36384. default: true
  36385. },
  36386. terraFront: {
  36387. height: math.unit(1.5, "earths"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/moonlight-rose/terra.svg"
  36391. },
  36392. form: "terra",
  36393. default: true
  36394. },
  36395. jupiterFront: {
  36396. height: math.unit(69911*2, "km"),
  36397. name: "Front",
  36398. image: {
  36399. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36400. extra: 1367/1286,
  36401. bottom: 55/1422
  36402. },
  36403. form: "jupiter",
  36404. default: true
  36405. },
  36406. neptuneFront: {
  36407. height: math.unit(24622*2, "feet"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36411. extra: 1851/1712,
  36412. bottom: 0/1851
  36413. },
  36414. form: "neptune",
  36415. default: true
  36416. },
  36417. },
  36418. [
  36419. {
  36420. name: "\"Natural\" Height",
  36421. height: math.unit(5 + 11/12, "feet"),
  36422. form: "normal"
  36423. },
  36424. {
  36425. name: "Smallest comfortable size",
  36426. height: math.unit(40, "meters"),
  36427. form: "normal"
  36428. },
  36429. {
  36430. name: "Common size",
  36431. height: math.unit(50, "km"),
  36432. form: "normal",
  36433. default: true
  36434. },
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(1.5, "earths"),
  36438. form: "demon",
  36439. default: true
  36440. },
  36441. {
  36442. name: "Universal",
  36443. height: math.unit(15, "universes"),
  36444. form: "demon"
  36445. },
  36446. {
  36447. name: "Earth",
  36448. height: math.unit(1.5, "earths"),
  36449. form: "terra",
  36450. default: true
  36451. },
  36452. {
  36453. name: "Super Earth",
  36454. height: math.unit(67.5, "earths"),
  36455. form: "terra"
  36456. },
  36457. {
  36458. name: "Doesn't fit in a solar system...",
  36459. height: math.unit(1, "galaxy"),
  36460. form: "terra"
  36461. },
  36462. {
  36463. name: "Saturn",
  36464. height: math.unit(58232*2, "km"),
  36465. form: "jupiter"
  36466. },
  36467. {
  36468. name: "Jupiter",
  36469. height: math.unit(69911*2, "km"),
  36470. form: "jupiter",
  36471. default: true
  36472. },
  36473. {
  36474. name: "HD 100546 b",
  36475. height: math.unit(482938, "km"),
  36476. form: "jupiter"
  36477. },
  36478. {
  36479. name: "Enceladus",
  36480. height: math.unit(513*2, "km"),
  36481. form: "neptune"
  36482. },
  36483. {
  36484. name: "Europe",
  36485. height: math.unit(1560*2, "km"),
  36486. form: "neptune"
  36487. },
  36488. {
  36489. name: "Neptune",
  36490. height: math.unit(24622*2, "km"),
  36491. form: "neptune",
  36492. default: true
  36493. },
  36494. {
  36495. name: "CoRoT-9b",
  36496. height: math.unit(75067*2, "km"),
  36497. form: "neptune"
  36498. },
  36499. ],
  36500. {
  36501. "normal": {
  36502. name: "Normal",
  36503. default: true
  36504. },
  36505. "demon": {
  36506. name: "Demon"
  36507. },
  36508. "terra": {
  36509. name: "Terra"
  36510. },
  36511. "jupiter": {
  36512. name: "Jupiter"
  36513. },
  36514. "neptune": {
  36515. name: "Neptune"
  36516. }
  36517. }
  36518. ))
  36519. characterMakers.push(() => makeCharacter(
  36520. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36521. {
  36522. front: {
  36523. height: math.unit(16, "feet"),
  36524. weight: math.unit(610, "kg"),
  36525. name: "Front",
  36526. image: {
  36527. source: "./media/characters/huckle/front.svg",
  36528. extra: 1731/1625,
  36529. bottom: 33/1764
  36530. }
  36531. },
  36532. back: {
  36533. height: math.unit(16, "feet"),
  36534. weight: math.unit(610, "kg"),
  36535. name: "Back",
  36536. image: {
  36537. source: "./media/characters/huckle/back.svg",
  36538. extra: 1738/1651,
  36539. bottom: 37/1775
  36540. }
  36541. },
  36542. laughing: {
  36543. height: math.unit(3.75, "feet"),
  36544. name: "Laughing",
  36545. image: {
  36546. source: "./media/characters/huckle/laughing.svg"
  36547. }
  36548. },
  36549. angry: {
  36550. height: math.unit(4.15, "feet"),
  36551. name: "Angry",
  36552. image: {
  36553. source: "./media/characters/huckle/angry.svg"
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(16, "feet"),
  36561. default: true
  36562. },
  36563. {
  36564. name: "Mini Macro",
  36565. height: math.unit(463, "feet")
  36566. },
  36567. {
  36568. name: "Macro",
  36569. height: math.unit(1680, "meters")
  36570. },
  36571. {
  36572. name: "Mega Macro",
  36573. height: math.unit(175, "km")
  36574. },
  36575. {
  36576. name: "Terra Macro",
  36577. height: math.unit(32, "gigameters")
  36578. },
  36579. {
  36580. name: "Multiverse+",
  36581. height: math.unit(2.56e23, "yottameters")
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(6 + 9/12, "feet"),
  36590. weight: math.unit(280, "lb"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/candy/front.svg",
  36594. extra: 234/217,
  36595. bottom: 11/245
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Really Small",
  36602. height: math.unit(0.1, "nm")
  36603. },
  36604. {
  36605. name: "Micro",
  36606. height: math.unit(2, "inches")
  36607. },
  36608. {
  36609. name: "Normal",
  36610. height: math.unit(6 + 9/12, "feet"),
  36611. default: true
  36612. },
  36613. {
  36614. name: "Small Macro",
  36615. height: math.unit(69, "feet")
  36616. },
  36617. {
  36618. name: "Macro",
  36619. height: math.unit(160, "feet")
  36620. },
  36621. {
  36622. name: "Megamacro",
  36623. height: math.unit(22000, "miles")
  36624. },
  36625. {
  36626. name: "Gigamacro",
  36627. height: math.unit(50000, "miles")
  36628. },
  36629. ]
  36630. ))
  36631. characterMakers.push(() => makeCharacter(
  36632. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36633. {
  36634. front: {
  36635. height: math.unit(4, "feet"),
  36636. weight: math.unit(90, "lb"),
  36637. name: "Front",
  36638. image: {
  36639. source: "./media/characters/joey-mcdonald/front.svg",
  36640. extra: 1059/852,
  36641. bottom: 33/1092
  36642. }
  36643. },
  36644. back: {
  36645. height: math.unit(4, "feet"),
  36646. weight: math.unit(90, "lb"),
  36647. name: "Back",
  36648. image: {
  36649. source: "./media/characters/joey-mcdonald/back.svg",
  36650. extra: 1077/879,
  36651. bottom: 5/1082
  36652. }
  36653. },
  36654. frontKobold: {
  36655. height: math.unit(4, "feet"),
  36656. weight: math.unit(100, "lb"),
  36657. name: "Front-kobold",
  36658. image: {
  36659. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36660. extra: 1480/1367,
  36661. bottom: 0/1480
  36662. }
  36663. },
  36664. backKobold: {
  36665. height: math.unit(4, "feet"),
  36666. weight: math.unit(100, "lb"),
  36667. name: "Back-kobold",
  36668. image: {
  36669. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36670. extra: 1449/1361,
  36671. bottom: 0/1449
  36672. }
  36673. },
  36674. },
  36675. [
  36676. {
  36677. name: "Normal",
  36678. height: math.unit(4, "feet"),
  36679. default: true
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(12 + 6/12, "feet"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/kass-lockheed/front.svg",
  36691. extra: 354/343,
  36692. bottom: 9/363
  36693. }
  36694. },
  36695. back: {
  36696. height: math.unit(12 + 6/12, "feet"),
  36697. name: "Back",
  36698. image: {
  36699. source: "./media/characters/kass-lockheed/back.svg",
  36700. extra: 364/352,
  36701. bottom: 3/367
  36702. }
  36703. },
  36704. dick: {
  36705. height: math.unit(3.12, "feet"),
  36706. name: "Dick",
  36707. image: {
  36708. source: "./media/characters/kass-lockheed/dick.svg"
  36709. }
  36710. },
  36711. head: {
  36712. height: math.unit(2.6, "feet"),
  36713. name: "Head",
  36714. image: {
  36715. source: "./media/characters/kass-lockheed/head.svg"
  36716. }
  36717. },
  36718. bleh: {
  36719. height: math.unit(2.85, "feet"),
  36720. name: "Bleh",
  36721. image: {
  36722. source: "./media/characters/kass-lockheed/bleh.svg"
  36723. }
  36724. },
  36725. smug: {
  36726. height: math.unit(2.85, "feet"),
  36727. name: "Smug",
  36728. image: {
  36729. source: "./media/characters/kass-lockheed/smug.svg"
  36730. }
  36731. },
  36732. },
  36733. [
  36734. {
  36735. name: "Normal",
  36736. height: math.unit(12 + 6/12, "feet"),
  36737. default: true
  36738. },
  36739. ]
  36740. ))
  36741. characterMakers.push(() => makeCharacter(
  36742. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36743. {
  36744. front: {
  36745. height: math.unit(6 + 2/12, "feet"),
  36746. name: "Front",
  36747. image: {
  36748. source: "./media/characters/taylor/front.svg",
  36749. extra: 639/495,
  36750. bottom: 12/651
  36751. }
  36752. },
  36753. },
  36754. [
  36755. {
  36756. name: "Normal",
  36757. height: math.unit(6 + 2/12, "feet"),
  36758. default: true
  36759. },
  36760. {
  36761. name: "Big",
  36762. height: math.unit(15, "feet")
  36763. },
  36764. {
  36765. name: "Lorg",
  36766. height: math.unit(80, "feet")
  36767. },
  36768. {
  36769. name: "Too Lorg",
  36770. height: math.unit(120, "feet")
  36771. },
  36772. ]
  36773. ))
  36774. characterMakers.push(() => makeCharacter(
  36775. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36776. {
  36777. front: {
  36778. height: math.unit(15, "feet"),
  36779. name: "Front",
  36780. image: {
  36781. source: "./media/characters/kaizer/front.svg",
  36782. extra: 1612/1436,
  36783. bottom: 43/1655
  36784. }
  36785. },
  36786. },
  36787. [
  36788. {
  36789. name: "Normal",
  36790. height: math.unit(15, "feet"),
  36791. default: true
  36792. },
  36793. ]
  36794. ))
  36795. characterMakers.push(() => makeCharacter(
  36796. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36797. {
  36798. front: {
  36799. height: math.unit(2, "feet"),
  36800. weight: math.unit(30, "lb"),
  36801. name: "Front",
  36802. image: {
  36803. source: "./media/characters/sandy/front.svg",
  36804. extra: 1439/1307,
  36805. bottom: 194/1633
  36806. }
  36807. },
  36808. },
  36809. [
  36810. {
  36811. name: "Normal",
  36812. height: math.unit(2, "feet"),
  36813. default: true
  36814. },
  36815. ]
  36816. ))
  36817. characterMakers.push(() => makeCharacter(
  36818. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36819. {
  36820. front: {
  36821. height: math.unit(3, "feet"),
  36822. name: "Front",
  36823. image: {
  36824. source: "./media/characters/mellvi/front.svg",
  36825. extra: 1831/1630,
  36826. bottom: 58/1889
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(3, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(5 + 11/12, "feet"),
  36843. weight: math.unit(200, "lb"),
  36844. name: "Front",
  36845. image: {
  36846. source: "./media/characters/shirou/front.svg",
  36847. extra: 2491/2383,
  36848. bottom: 189/2680
  36849. }
  36850. },
  36851. back: {
  36852. height: math.unit(5 + 11/12, "feet"),
  36853. weight: math.unit(200, "lb"),
  36854. name: "Back",
  36855. image: {
  36856. source: "./media/characters/shirou/back.svg",
  36857. extra: 2554/2450,
  36858. bottom: 76/2630
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(5 + 11/12, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(6 + 3/12, "feet"),
  36875. weight: math.unit(177, "lb"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/noryu/front.svg",
  36879. extra: 973/885,
  36880. bottom: 10/983
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal",
  36887. height: math.unit(6 + 3/12, "feet"),
  36888. default: true
  36889. },
  36890. ]
  36891. ))
  36892. characterMakers.push(() => makeCharacter(
  36893. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36894. {
  36895. front: {
  36896. height: math.unit(5 + 6/12, "feet"),
  36897. weight: math.unit(170, "lb"),
  36898. name: "Front",
  36899. image: {
  36900. source: "./media/characters/mevolas-rubenido/front.svg",
  36901. extra: 2109/1901,
  36902. bottom: 96/2205
  36903. }
  36904. },
  36905. },
  36906. [
  36907. {
  36908. name: "Normal",
  36909. height: math.unit(5 + 6/12, "feet"),
  36910. default: true
  36911. },
  36912. ]
  36913. ))
  36914. characterMakers.push(() => makeCharacter(
  36915. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36916. {
  36917. front: {
  36918. height: math.unit(100, "feet"),
  36919. name: "Front",
  36920. image: {
  36921. source: "./media/characters/dee/front.svg",
  36922. extra: 2153/2036,
  36923. bottom: 59/2212
  36924. }
  36925. },
  36926. back: {
  36927. height: math.unit(100, "feet"),
  36928. name: "Back",
  36929. image: {
  36930. source: "./media/characters/dee/back.svg",
  36931. extra: 2183/2058,
  36932. bottom: 75/2258
  36933. }
  36934. },
  36935. foot: {
  36936. height: math.unit(19.43, "feet"),
  36937. name: "Foot",
  36938. image: {
  36939. source: "./media/characters/dee/foot.svg"
  36940. }
  36941. },
  36942. hoof: {
  36943. height: math.unit(20.6, "feet"),
  36944. name: "Hoof",
  36945. image: {
  36946. source: "./media/characters/dee/hoof.svg"
  36947. }
  36948. },
  36949. },
  36950. [
  36951. {
  36952. name: "Macro",
  36953. height: math.unit(100, "feet"),
  36954. default: true
  36955. },
  36956. ]
  36957. ))
  36958. characterMakers.push(() => makeCharacter(
  36959. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36960. {
  36961. front: {
  36962. height: math.unit(5 + 6/12, "feet"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/teh/front.svg",
  36966. extra: 1002/847,
  36967. bottom: 62/1064
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Normal",
  36974. height: math.unit(5 + 6/12, "feet"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36981. {
  36982. side: {
  36983. height: math.unit(6 + 1/12, "feet"),
  36984. weight: math.unit(204, "lb"),
  36985. name: "Side",
  36986. image: {
  36987. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36988. extra: 974/775,
  36989. bottom: 169/1143
  36990. }
  36991. },
  36992. sitting: {
  36993. height: math.unit(6 + 2/12, "feet"),
  36994. weight: math.unit(204, "lb"),
  36995. name: "Sitting",
  36996. image: {
  36997. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36998. extra: 1175/964,
  36999. bottom: 378/1553
  37000. }
  37001. },
  37002. },
  37003. [
  37004. {
  37005. name: "Normal",
  37006. height: math.unit(6 + 1/12, "feet"),
  37007. default: true
  37008. },
  37009. ]
  37010. ))
  37011. characterMakers.push(() => makeCharacter(
  37012. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37013. {
  37014. front: {
  37015. height: math.unit(6, "inches"),
  37016. name: "Front",
  37017. image: {
  37018. source: "./media/characters/tululi/front.svg",
  37019. extra: 1997/1876,
  37020. bottom: 20/2017
  37021. }
  37022. },
  37023. },
  37024. [
  37025. {
  37026. name: "Normal",
  37027. height: math.unit(6, "inches"),
  37028. default: true
  37029. },
  37030. ]
  37031. ))
  37032. characterMakers.push(() => makeCharacter(
  37033. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37034. {
  37035. front: {
  37036. height: math.unit(4 + 1/12, "feet"),
  37037. name: "Front",
  37038. image: {
  37039. source: "./media/characters/star/front.svg",
  37040. extra: 1493/1189,
  37041. bottom: 48/1541
  37042. }
  37043. },
  37044. },
  37045. [
  37046. {
  37047. name: "Normal",
  37048. height: math.unit(4 + 1/12, "feet"),
  37049. default: true
  37050. },
  37051. ]
  37052. ))
  37053. characterMakers.push(() => makeCharacter(
  37054. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37055. {
  37056. front: {
  37057. height: math.unit(6 + 3/12, "feet"),
  37058. name: "Front",
  37059. image: {
  37060. source: "./media/characters/comet/front.svg",
  37061. extra: 1681/1462,
  37062. bottom: 26/1707
  37063. }
  37064. },
  37065. },
  37066. [
  37067. {
  37068. name: "Normal",
  37069. height: math.unit(6 + 3/12, "feet"),
  37070. default: true
  37071. },
  37072. ]
  37073. ))
  37074. characterMakers.push(() => makeCharacter(
  37075. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37076. {
  37077. front: {
  37078. height: math.unit(950, "feet"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/vortex/front.svg",
  37082. extra: 1497/1434,
  37083. bottom: 56/1553
  37084. }
  37085. },
  37086. maw: {
  37087. height: math.unit(285, "feet"),
  37088. name: "Maw",
  37089. image: {
  37090. source: "./media/characters/vortex/maw.svg"
  37091. }
  37092. },
  37093. },
  37094. [
  37095. {
  37096. name: "Macro",
  37097. height: math.unit(950, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37104. {
  37105. front: {
  37106. height: math.unit(600, "feet"),
  37107. weight: math.unit(0.02, "grams"),
  37108. name: "Front",
  37109. image: {
  37110. source: "./media/characters/doodle/front.svg",
  37111. extra: 1578/1413,
  37112. bottom: 37/1615
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Macro",
  37119. height: math.unit(600, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37126. {
  37127. front: {
  37128. height: math.unit(6 + 6/12, "feet"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/jai/front.svg",
  37132. extra: 1645/1534,
  37133. bottom: 115/1760
  37134. }
  37135. },
  37136. },
  37137. [
  37138. {
  37139. name: "Normal",
  37140. height: math.unit(6 + 6/12, "feet"),
  37141. default: true
  37142. },
  37143. ]
  37144. ))
  37145. characterMakers.push(() => makeCharacter(
  37146. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37147. {
  37148. front: {
  37149. height: math.unit(6 + 8/12, "feet"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/pixel/front.svg",
  37153. extra: 1900/1735,
  37154. bottom: 63/1963
  37155. }
  37156. },
  37157. },
  37158. [
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(6 + 8/12, "feet"),
  37162. default: true
  37163. },
  37164. ]
  37165. ))
  37166. characterMakers.push(() => makeCharacter(
  37167. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37168. {
  37169. back: {
  37170. height: math.unit(4 + 1/12, "feet"),
  37171. weight: math.unit(75, "lb"),
  37172. name: "Back",
  37173. image: {
  37174. source: "./media/characters/rhett/back.svg",
  37175. extra: 930/878,
  37176. bottom: 25/955
  37177. }
  37178. },
  37179. front: {
  37180. height: math.unit(4 + 1/12, "feet"),
  37181. weight: math.unit(75, "lb"),
  37182. name: "Front",
  37183. image: {
  37184. source: "./media/characters/rhett/front.svg",
  37185. extra: 1682/1586,
  37186. bottom: 92/1774
  37187. }
  37188. },
  37189. },
  37190. [
  37191. {
  37192. name: "Micro",
  37193. height: math.unit(8, "inches")
  37194. },
  37195. {
  37196. name: "Tiny",
  37197. height: math.unit(2, "feet")
  37198. },
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(4 + 1/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37208. {
  37209. front: {
  37210. height: math.unit(3 + 3/12, "feet"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/penny/front.svg",
  37214. extra: 1406/1311,
  37215. bottom: 26/1432
  37216. }
  37217. },
  37218. },
  37219. [
  37220. {
  37221. name: "Normal",
  37222. height: math.unit(3 + 3/12, "feet"),
  37223. default: true
  37224. },
  37225. ]
  37226. ))
  37227. characterMakers.push(() => makeCharacter(
  37228. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37229. {
  37230. front: {
  37231. height: math.unit(4 + 11/12, "feet"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/monty/front.svg",
  37235. extra: 1479/1209,
  37236. bottom: 0/1479
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Normal",
  37243. height: math.unit(4 + 11/12, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(8 + 4/12, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/sterling/front.svg",
  37256. extra: 1420/1236,
  37257. bottom: 27/1447
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(8 + 4/12, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(15, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/marble/front.svg",
  37277. extra: 973/937,
  37278. bottom: 32/1005
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(15, "feet"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37292. {
  37293. front: {
  37294. height: math.unit(3, "inches"),
  37295. name: "Front",
  37296. image: {
  37297. source: "./media/characters/powder/front.svg",
  37298. extra: 1504/1334,
  37299. bottom: 518/2022
  37300. }
  37301. },
  37302. },
  37303. [
  37304. {
  37305. name: "Normal",
  37306. height: math.unit(3, "inches"),
  37307. default: true
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(4 + 5/12, "feet"),
  37316. name: "Front",
  37317. image: {
  37318. source: "./media/characters/joey-raccoon/front.svg",
  37319. extra: 1273/1197,
  37320. bottom: 0/1273
  37321. }
  37322. },
  37323. },
  37324. [
  37325. {
  37326. name: "Normal",
  37327. height: math.unit(4 + 5/12, "feet"),
  37328. default: true
  37329. },
  37330. ]
  37331. ))
  37332. characterMakers.push(() => makeCharacter(
  37333. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37334. {
  37335. front: {
  37336. height: math.unit(8 + 4/12, "feet"),
  37337. name: "Front",
  37338. image: {
  37339. source: "./media/characters/vick/front.svg",
  37340. extra: 2187/2118,
  37341. bottom: 47/2234
  37342. }
  37343. },
  37344. },
  37345. [
  37346. {
  37347. name: "Normal",
  37348. height: math.unit(8 + 4/12, "feet"),
  37349. default: true
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(5 + 5/12, "feet"),
  37358. name: "Front",
  37359. image: {
  37360. source: "./media/characters/mitsy/front.svg",
  37361. extra: 1842/1695,
  37362. bottom: 0/1842
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(5 + 5/12, "feet"),
  37370. default: true
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(6 + 3/12, "feet"),
  37379. name: "Front",
  37380. image: {
  37381. source: "./media/characters/silvy/front.svg",
  37382. extra: 1995/1836,
  37383. bottom: 225/2220
  37384. }
  37385. },
  37386. },
  37387. [
  37388. {
  37389. name: "Normal",
  37390. height: math.unit(6 + 3/12, "feet"),
  37391. default: true
  37392. },
  37393. ]
  37394. ))
  37395. characterMakers.push(() => makeCharacter(
  37396. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37397. {
  37398. front: {
  37399. height: math.unit(3 + 8/12, "feet"),
  37400. name: "Front",
  37401. image: {
  37402. source: "./media/characters/rodney/front.svg",
  37403. extra: 1956/1747,
  37404. bottom: 31/1987
  37405. }
  37406. },
  37407. frontDressed: {
  37408. height: math.unit(2.9, "feet"),
  37409. name: "Front (Dressed)",
  37410. image: {
  37411. source: "./media/characters/rodney/front-dressed.svg",
  37412. extra: 1382/1241,
  37413. bottom: 385/1767
  37414. }
  37415. },
  37416. },
  37417. [
  37418. {
  37419. name: "Normal",
  37420. height: math.unit(3 + 8/12, "feet"),
  37421. default: true
  37422. },
  37423. ]
  37424. ))
  37425. characterMakers.push(() => makeCharacter(
  37426. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37427. {
  37428. front: {
  37429. height: math.unit(5 + 9/12, "feet"),
  37430. weight: math.unit(194, "lbs"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/zakail-sudekai/front.svg",
  37434. extra: 2696/2533,
  37435. bottom: 248/2944
  37436. }
  37437. },
  37438. maw: {
  37439. height: math.unit(1.35, "feet"),
  37440. name: "Maw",
  37441. image: {
  37442. source: "./media/characters/zakail-sudekai/maw.svg"
  37443. }
  37444. },
  37445. },
  37446. [
  37447. {
  37448. name: "Normal",
  37449. height: math.unit(5 + 9/12, "feet"),
  37450. default: true
  37451. },
  37452. ]
  37453. ))
  37454. characterMakers.push(() => makeCharacter(
  37455. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37456. {
  37457. front: {
  37458. height: math.unit(8 + 4/12, "feet"),
  37459. weight: math.unit(1200, "lb"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/eleanor/front.svg",
  37463. extra: 1226/1192,
  37464. bottom: 52/1278
  37465. }
  37466. },
  37467. back: {
  37468. height: math.unit(8 + 4/12, "feet"),
  37469. weight: math.unit(1200, "lb"),
  37470. name: "Back",
  37471. image: {
  37472. source: "./media/characters/eleanor/back.svg",
  37473. extra: 1242/1184,
  37474. bottom: 60/1302
  37475. }
  37476. },
  37477. head: {
  37478. height: math.unit(2.62, "feet"),
  37479. name: "Head",
  37480. image: {
  37481. source: "./media/characters/eleanor/head.svg"
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(8 + 4/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(8 + 4/12, "feet"),
  37498. weight: math.unit(750, "lb"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/tanya/front.svg",
  37502. extra: 1749/1615,
  37503. bottom: 33/1782
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(8 + 4/12, "feet"),
  37511. default: true
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37517. {
  37518. front: {
  37519. height: math.unit(5, "feet"),
  37520. weight: math.unit(225, "lb"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/cindy/front.svg",
  37524. extra: 1320/1250,
  37525. bottom: 42/1362
  37526. }
  37527. },
  37528. frontDressed: {
  37529. height: math.unit(5, "feet"),
  37530. weight: math.unit(225, "lb"),
  37531. name: "Front (Dressed)",
  37532. image: {
  37533. source: "./media/characters/cindy/front-dressed.svg",
  37534. extra: 1320/1250,
  37535. bottom: 42/1362
  37536. }
  37537. },
  37538. back: {
  37539. height: math.unit(5, "feet"),
  37540. weight: math.unit(225, "lb"),
  37541. name: "Back",
  37542. image: {
  37543. source: "./media/characters/cindy/back.svg",
  37544. extra: 1384/1346,
  37545. bottom: 14/1398
  37546. }
  37547. },
  37548. },
  37549. [
  37550. {
  37551. name: "Normal",
  37552. height: math.unit(5, "feet"),
  37553. default: true
  37554. },
  37555. ]
  37556. ))
  37557. characterMakers.push(() => makeCharacter(
  37558. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37559. {
  37560. front: {
  37561. height: math.unit(6 + 9/12, "feet"),
  37562. weight: math.unit(440, "lb"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/wilbur-owen/front.svg",
  37566. extra: 1575/1448,
  37567. bottom: 72/1647
  37568. }
  37569. },
  37570. back: {
  37571. height: math.unit(6 + 9/12, "feet"),
  37572. weight: math.unit(440, "lb"),
  37573. name: "Back",
  37574. image: {
  37575. source: "./media/characters/wilbur-owen/back.svg",
  37576. extra: 1578/1445,
  37577. bottom: 36/1614
  37578. }
  37579. },
  37580. },
  37581. [
  37582. {
  37583. name: "Normal",
  37584. height: math.unit(6 + 9/12, "feet"),
  37585. default: true
  37586. },
  37587. ]
  37588. ))
  37589. characterMakers.push(() => makeCharacter(
  37590. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37591. {
  37592. front: {
  37593. height: math.unit(6 + 5/12, "feet"),
  37594. weight: math.unit(650, "lb"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/keegan/front.svg",
  37598. extra: 2387/2198,
  37599. bottom: 33/2420
  37600. }
  37601. },
  37602. side: {
  37603. height: math.unit(6 + 5/12, "feet"),
  37604. weight: math.unit(650, "lb"),
  37605. name: "Side",
  37606. image: {
  37607. source: "./media/characters/keegan/side.svg",
  37608. extra: 2390/2202,
  37609. bottom: 47/2437
  37610. }
  37611. },
  37612. back: {
  37613. height: math.unit(6 + 5/12, "feet"),
  37614. weight: math.unit(650, "lb"),
  37615. name: "Back",
  37616. image: {
  37617. source: "./media/characters/keegan/back.svg",
  37618. extra: 2418/2268,
  37619. bottom: 15/2433
  37620. }
  37621. },
  37622. frontSfw: {
  37623. height: math.unit(6 + 5/12, "feet"),
  37624. weight: math.unit(650, "lb"),
  37625. name: "Front (SFW)",
  37626. image: {
  37627. source: "./media/characters/keegan/front-sfw.svg",
  37628. extra: 2387/2198,
  37629. bottom: 33/2420
  37630. }
  37631. },
  37632. beans: {
  37633. height: math.unit(1.85, "feet"),
  37634. name: "Beans",
  37635. image: {
  37636. source: "./media/characters/keegan/beans.svg"
  37637. }
  37638. },
  37639. },
  37640. [
  37641. {
  37642. name: "Normal",
  37643. height: math.unit(6 + 5/12, "feet"),
  37644. default: true
  37645. },
  37646. ]
  37647. ))
  37648. characterMakers.push(() => makeCharacter(
  37649. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37650. {
  37651. front: {
  37652. height: math.unit(9, "feet"),
  37653. name: "Front",
  37654. image: {
  37655. source: "./media/characters/colton/front.svg",
  37656. extra: 1589/1326,
  37657. bottom: 139/1728
  37658. }
  37659. },
  37660. },
  37661. [
  37662. {
  37663. name: "Normal",
  37664. height: math.unit(9, "feet"),
  37665. default: true
  37666. },
  37667. ]
  37668. ))
  37669. characterMakers.push(() => makeCharacter(
  37670. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37671. {
  37672. front: {
  37673. height: math.unit(2 + 9/12, "feet"),
  37674. name: "Front",
  37675. image: {
  37676. source: "./media/characters/bora/front.svg",
  37677. extra: 1265/1250,
  37678. bottom: 24/1289
  37679. }
  37680. },
  37681. },
  37682. [
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(2 + 9/12, "feet"),
  37686. default: true
  37687. },
  37688. ]
  37689. ))
  37690. characterMakers.push(() => makeCharacter(
  37691. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37692. {
  37693. front: {
  37694. height: math.unit(8, "feet"),
  37695. name: "Front",
  37696. image: {
  37697. source: "./media/characters/myu-myu/front.svg",
  37698. extra: 1949/1857,
  37699. bottom: 90/2039
  37700. }
  37701. },
  37702. },
  37703. [
  37704. {
  37705. name: "Normal",
  37706. height: math.unit(8, "feet"),
  37707. default: true
  37708. },
  37709. {
  37710. name: "Big",
  37711. height: math.unit(15, "feet")
  37712. },
  37713. {
  37714. name: "BIG",
  37715. height: math.unit(25, "feet")
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37721. {
  37722. side: {
  37723. height: math.unit(7 + 5/12, "feet"),
  37724. weight: math.unit(2800, "lb"),
  37725. name: "Side",
  37726. image: {
  37727. source: "./media/characters/haloren/side.svg",
  37728. extra: 1793/409,
  37729. bottom: 59/1852
  37730. }
  37731. },
  37732. frontPaw: {
  37733. height: math.unit(2.36, "feet"),
  37734. name: "Front paw",
  37735. image: {
  37736. source: "./media/characters/haloren/front-paw.svg"
  37737. }
  37738. },
  37739. hindPaw: {
  37740. height: math.unit(3.18, "feet"),
  37741. name: "Hind paw",
  37742. image: {
  37743. source: "./media/characters/haloren/hind-paw.svg"
  37744. }
  37745. },
  37746. maw: {
  37747. height: math.unit(5.05, "feet"),
  37748. name: "Maw",
  37749. image: {
  37750. source: "./media/characters/haloren/maw.svg"
  37751. }
  37752. },
  37753. dick: {
  37754. height: math.unit(2.90, "feet"),
  37755. name: "Dick",
  37756. image: {
  37757. source: "./media/characters/haloren/dick.svg"
  37758. }
  37759. },
  37760. },
  37761. [
  37762. {
  37763. name: "Normal",
  37764. height: math.unit(7 + 5/12, "feet"),
  37765. default: true
  37766. },
  37767. {
  37768. name: "Enhanced",
  37769. height: math.unit(14 + 3/12, "feet")
  37770. },
  37771. ]
  37772. ))
  37773. characterMakers.push(() => makeCharacter(
  37774. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37775. {
  37776. front: {
  37777. height: math.unit(171, "cm"),
  37778. name: "Front",
  37779. image: {
  37780. source: "./media/characters/kimmy/front.svg",
  37781. extra: 1491/1435,
  37782. bottom: 53/1544
  37783. }
  37784. },
  37785. },
  37786. [
  37787. {
  37788. name: "Small",
  37789. height: math.unit(9, "cm")
  37790. },
  37791. {
  37792. name: "Normal",
  37793. height: math.unit(171, "cm"),
  37794. default: true
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(8, "feet"),
  37803. weight: math.unit(300, "lb"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/galeboomer/front.svg",
  37807. extra: 4651/4415,
  37808. bottom: 162/4813
  37809. }
  37810. },
  37811. back: {
  37812. height: math.unit(8, "feet"),
  37813. weight: math.unit(300, "lb"),
  37814. name: "Back",
  37815. image: {
  37816. source: "./media/characters/galeboomer/back.svg",
  37817. extra: 4544/4314,
  37818. bottom: 16/4560
  37819. }
  37820. },
  37821. frontAlt: {
  37822. height: math.unit(8, "feet"),
  37823. weight: math.unit(300, "lb"),
  37824. name: "Front (Alt)",
  37825. image: {
  37826. source: "./media/characters/galeboomer/front-alt.svg",
  37827. extra: 4458/4228,
  37828. bottom: 68/4526
  37829. }
  37830. },
  37831. maw: {
  37832. height: math.unit(1.2, "feet"),
  37833. name: "Maw",
  37834. image: {
  37835. source: "./media/characters/galeboomer/maw.svg"
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(8, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(5 + 9/12, "feet"),
  37852. weight: math.unit(120, "lb"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/chyr/front.svg",
  37856. extra: 1323/1254,
  37857. bottom: 63/1386
  37858. }
  37859. },
  37860. back: {
  37861. height: math.unit(5 + 9/12, "feet"),
  37862. weight: math.unit(120, "lb"),
  37863. name: "Back",
  37864. image: {
  37865. source: "./media/characters/chyr/back.svg",
  37866. extra: 1323/1252,
  37867. bottom: 48/1371
  37868. }
  37869. },
  37870. },
  37871. [
  37872. {
  37873. name: "Normal",
  37874. height: math.unit(5 + 9/12, "feet"),
  37875. default: true
  37876. },
  37877. ]
  37878. ))
  37879. characterMakers.push(() => makeCharacter(
  37880. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37881. {
  37882. front: {
  37883. height: math.unit(7, "feet"),
  37884. weight: math.unit(310, "lb"),
  37885. name: "Front",
  37886. image: {
  37887. source: "./media/characters/solarus/front.svg",
  37888. extra: 2415/2021,
  37889. bottom: 103/2518
  37890. }
  37891. },
  37892. back: {
  37893. height: math.unit(7, "feet"),
  37894. weight: math.unit(310, "lb"),
  37895. name: "Back",
  37896. image: {
  37897. source: "./media/characters/solarus/back.svg",
  37898. extra: 2463/2089,
  37899. bottom: 79/2542
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(7, "feet"),
  37907. default: true
  37908. },
  37909. ]
  37910. ))
  37911. characterMakers.push(() => makeCharacter(
  37912. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37913. {
  37914. front: {
  37915. height: math.unit(16, "feet"),
  37916. name: "Front",
  37917. image: {
  37918. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37919. extra: 1844/1780,
  37920. bottom: 58/1902
  37921. }
  37922. },
  37923. winterCoat: {
  37924. height: math.unit(16, "feet"),
  37925. name: "Winter Coat",
  37926. image: {
  37927. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37928. extra: 1807/1775,
  37929. bottom: 69/1876
  37930. }
  37931. },
  37932. },
  37933. [
  37934. {
  37935. name: "Normal",
  37936. height: math.unit(16, "feet"),
  37937. default: true
  37938. },
  37939. {
  37940. name: "Chicago Size",
  37941. height: math.unit(560, "feet")
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(11 + 6/12, "feet"),
  37950. weight: math.unit(1366, "lb"),
  37951. name: "Front",
  37952. image: {
  37953. source: "./media/characters/lexor/front.svg",
  37954. extra: 1560/1481,
  37955. bottom: 211/1771
  37956. }
  37957. },
  37958. back: {
  37959. height: math.unit(11 + 6/12, "feet"),
  37960. weight: math.unit(1366, "lb"),
  37961. name: "Back",
  37962. image: {
  37963. source: "./media/characters/lexor/back.svg",
  37964. extra: 1614/1533,
  37965. bottom: 76/1690
  37966. }
  37967. },
  37968. maw: {
  37969. height: math.unit(3, "feet"),
  37970. name: "Maw",
  37971. image: {
  37972. source: "./media/characters/lexor/maw.svg"
  37973. }
  37974. },
  37975. dick: {
  37976. height: math.unit(2.59, "feet"),
  37977. name: "Dick",
  37978. image: {
  37979. source: "./media/characters/lexor/dick.svg"
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Normal",
  37986. height: math.unit(11 + 6/12, "feet"),
  37987. default: true
  37988. },
  37989. ]
  37990. ))
  37991. characterMakers.push(() => makeCharacter(
  37992. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37993. {
  37994. front: {
  37995. height: math.unit(5 + 8/12, "feet"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/magnum/front.svg",
  37999. extra: 942/855,
  38000. bottom: 26/968
  38001. }
  38002. },
  38003. },
  38004. [
  38005. {
  38006. name: "Normal",
  38007. height: math.unit(5 + 8/12, "feet"),
  38008. default: true
  38009. },
  38010. ]
  38011. ))
  38012. characterMakers.push(() => makeCharacter(
  38013. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38014. {
  38015. front: {
  38016. height: math.unit(18 + 4/12, "feet"),
  38017. weight: math.unit(1500, "kg"),
  38018. name: "Front",
  38019. image: {
  38020. source: "./media/characters/solas-sharpsman/front.svg",
  38021. extra: 1698/1589,
  38022. bottom: 0/1698
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(18 + 4/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(5 + 5/12, "feet"),
  38039. weight: math.unit(180, "lb"),
  38040. name: "Front",
  38041. image: {
  38042. source: "./media/characters/october/front.svg",
  38043. extra: 1800/1650,
  38044. bottom: 0/1800
  38045. }
  38046. },
  38047. frontNsfw: {
  38048. height: math.unit(5 + 5/12, "feet"),
  38049. weight: math.unit(180, "lb"),
  38050. name: "Front (NSFW)",
  38051. image: {
  38052. source: "./media/characters/october/front-nsfw.svg",
  38053. extra: 1392/1307,
  38054. bottom: 42/1434
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(5 + 5/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(8 + 6/12, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/essynkardi/front.svg",
  38074. extra: 1914/1846,
  38075. bottom: 22/1936
  38076. }
  38077. },
  38078. },
  38079. [
  38080. {
  38081. name: "Normal",
  38082. height: math.unit(8 + 6/12, "feet"),
  38083. default: true
  38084. },
  38085. ]
  38086. ))
  38087. characterMakers.push(() => makeCharacter(
  38088. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38089. {
  38090. front: {
  38091. height: math.unit(6 + 6/12, "feet"),
  38092. weight: math.unit(7, "lb"),
  38093. name: "Front",
  38094. image: {
  38095. source: "./media/characters/icky/front.svg",
  38096. extra: 813/782,
  38097. bottom: 66/879
  38098. }
  38099. },
  38100. back: {
  38101. height: math.unit(6 + 6/12, "feet"),
  38102. weight: math.unit(7, "lb"),
  38103. name: "Back",
  38104. image: {
  38105. source: "./media/characters/icky/back.svg",
  38106. extra: 754/735,
  38107. bottom: 56/810
  38108. }
  38109. },
  38110. },
  38111. [
  38112. {
  38113. name: "Normal",
  38114. height: math.unit(6 + 6/12, "feet"),
  38115. default: true
  38116. },
  38117. ]
  38118. ))
  38119. characterMakers.push(() => makeCharacter(
  38120. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38121. {
  38122. front: {
  38123. height: math.unit(15, "feet"),
  38124. name: "Front",
  38125. image: {
  38126. source: "./media/characters/rojas/front.svg",
  38127. extra: 1462/1408,
  38128. bottom: 95/1557
  38129. }
  38130. },
  38131. back: {
  38132. height: math.unit(15, "feet"),
  38133. name: "Back",
  38134. image: {
  38135. source: "./media/characters/rojas/back.svg",
  38136. extra: 1023/954,
  38137. bottom: 28/1051
  38138. }
  38139. },
  38140. },
  38141. [
  38142. {
  38143. name: "Normal",
  38144. height: math.unit(15, "feet"),
  38145. default: true
  38146. },
  38147. ]
  38148. ))
  38149. characterMakers.push(() => makeCharacter(
  38150. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38151. {
  38152. frontHuman: {
  38153. height: math.unit(5 + 7/12, "feet"),
  38154. name: "Front (Human)",
  38155. image: {
  38156. source: "./media/characters/alek-dryagan/front-human.svg",
  38157. extra: 1687/1667,
  38158. bottom: 69/1756
  38159. }
  38160. },
  38161. backHuman: {
  38162. height: math.unit(5 + 7/12, "feet"),
  38163. name: "Back (Human)",
  38164. image: {
  38165. source: "./media/characters/alek-dryagan/back-human.svg",
  38166. extra: 1670/1649,
  38167. bottom: 65/1735
  38168. }
  38169. },
  38170. frontDemi: {
  38171. height: math.unit(65, "feet"),
  38172. name: "Front (Demi)",
  38173. image: {
  38174. source: "./media/characters/alek-dryagan/front-demi.svg",
  38175. extra: 1669/1642,
  38176. bottom: 49/1718
  38177. }
  38178. },
  38179. backDemi: {
  38180. height: math.unit(65, "feet"),
  38181. name: "Back (Demi)",
  38182. image: {
  38183. source: "./media/characters/alek-dryagan/back-demi.svg",
  38184. extra: 1658/1637,
  38185. bottom: 40/1698
  38186. }
  38187. },
  38188. mawHuman: {
  38189. height: math.unit(0.3, "feet"),
  38190. name: "Maw (Human)",
  38191. image: {
  38192. source: "./media/characters/alek-dryagan/maw-human.svg"
  38193. }
  38194. },
  38195. mawDemi: {
  38196. height: math.unit(3.8, "feet"),
  38197. name: "Maw (Demi)",
  38198. image: {
  38199. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(5 + 7/12, "feet"),
  38207. default: true
  38208. },
  38209. ]
  38210. ))
  38211. characterMakers.push(() => makeCharacter(
  38212. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38213. {
  38214. frontHuman: {
  38215. height: math.unit(5 + 2/12, "feet"),
  38216. name: "Front (Human)",
  38217. image: {
  38218. source: "./media/characters/gen/front-human.svg",
  38219. extra: 1627/1538,
  38220. bottom: 71/1698
  38221. }
  38222. },
  38223. backHuman: {
  38224. height: math.unit(5 + 2/12, "feet"),
  38225. name: "Back (Human)",
  38226. image: {
  38227. source: "./media/characters/gen/back-human.svg",
  38228. extra: 1638/1548,
  38229. bottom: 69/1707
  38230. }
  38231. },
  38232. frontDemi: {
  38233. height: math.unit(5 + 2/12, "feet"),
  38234. name: "Front (Demi)",
  38235. image: {
  38236. source: "./media/characters/gen/front-demi.svg",
  38237. extra: 1627/1538,
  38238. bottom: 71/1698
  38239. }
  38240. },
  38241. backDemi: {
  38242. height: math.unit(5 + 2/12, "feet"),
  38243. name: "Back (Demi)",
  38244. image: {
  38245. source: "./media/characters/gen/back-demi.svg",
  38246. extra: 1638/1548,
  38247. bottom: 69/1707
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(5 + 2/12, "feet"),
  38255. default: true
  38256. },
  38257. ]
  38258. ))
  38259. characterMakers.push(() => makeCharacter(
  38260. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38261. {
  38262. frontImp: {
  38263. height: math.unit(1 + 11/12, "feet"),
  38264. name: "Front (Imp)",
  38265. image: {
  38266. source: "./media/characters/max-kobold/front-imp.svg",
  38267. extra: 1238/1134,
  38268. bottom: 81/1319
  38269. }
  38270. },
  38271. backImp: {
  38272. height: math.unit(1 + 11/12, "feet"),
  38273. name: "Back (Imp)",
  38274. image: {
  38275. source: "./media/characters/max-kobold/back-imp.svg",
  38276. extra: 1334/1175,
  38277. bottom: 34/1368
  38278. }
  38279. },
  38280. frontDemi: {
  38281. height: math.unit(5 + 9/12, "feet"),
  38282. name: "Front (Demi)",
  38283. image: {
  38284. source: "./media/characters/max-kobold/front-demi.svg",
  38285. extra: 1715/1685,
  38286. bottom: 54/1769
  38287. }
  38288. },
  38289. backDemi: {
  38290. height: math.unit(5 + 9/12, "feet"),
  38291. name: "Back (Demi)",
  38292. image: {
  38293. source: "./media/characters/max-kobold/back-demi.svg",
  38294. extra: 1752/1729,
  38295. bottom: 41/1793
  38296. }
  38297. },
  38298. handImp: {
  38299. height: math.unit(0.45, "feet"),
  38300. name: "Hand (Imp)",
  38301. image: {
  38302. source: "./media/characters/max-kobold/hand.svg"
  38303. }
  38304. },
  38305. pawImp: {
  38306. height: math.unit(0.46, "feet"),
  38307. name: "Paw (Imp)",
  38308. image: {
  38309. source: "./media/characters/max-kobold/paw.svg"
  38310. }
  38311. },
  38312. handDemi: {
  38313. height: math.unit(0.80, "feet"),
  38314. name: "Hand (Demi)",
  38315. image: {
  38316. source: "./media/characters/max-kobold/hand.svg"
  38317. }
  38318. },
  38319. pawDemi: {
  38320. height: math.unit(1.1, "feet"),
  38321. name: "Paw (Demi)",
  38322. image: {
  38323. source: "./media/characters/max-kobold/paw.svg"
  38324. }
  38325. },
  38326. headImp: {
  38327. height: math.unit(1.33, "feet"),
  38328. name: "Head (Imp)",
  38329. image: {
  38330. source: "./media/characters/max-kobold/head-imp.svg"
  38331. }
  38332. },
  38333. mawImp: {
  38334. height: math.unit(0.75, "feet"),
  38335. name: "Maw (Imp)",
  38336. image: {
  38337. source: "./media/characters/max-kobold/maw-imp.svg"
  38338. }
  38339. },
  38340. mawDemi: {
  38341. height: math.unit(0.42, "feet"),
  38342. name: "Maw (Demi)",
  38343. image: {
  38344. source: "./media/characters/max-kobold/maw-demi.svg"
  38345. }
  38346. },
  38347. },
  38348. [
  38349. {
  38350. name: "Normal",
  38351. height: math.unit(1 + 11/12, "feet"),
  38352. default: true
  38353. },
  38354. ]
  38355. ))
  38356. characterMakers.push(() => makeCharacter(
  38357. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38358. {
  38359. front: {
  38360. height: math.unit(7 + 5/12, "feet"),
  38361. name: "Front",
  38362. image: {
  38363. source: "./media/characters/carbon/front.svg",
  38364. extra: 1754/1689,
  38365. bottom: 65/1819
  38366. }
  38367. },
  38368. back: {
  38369. height: math.unit(7 + 5/12, "feet"),
  38370. name: "Back",
  38371. image: {
  38372. source: "./media/characters/carbon/back.svg",
  38373. extra: 1762/1695,
  38374. bottom: 24/1786
  38375. }
  38376. },
  38377. frontGigantamax: {
  38378. height: math.unit(150, "feet"),
  38379. name: "Front (Gigantamax)",
  38380. image: {
  38381. source: "./media/characters/carbon/front-gigantamax.svg",
  38382. extra: 1826/1669,
  38383. bottom: 59/1885
  38384. }
  38385. },
  38386. backGigantamax: {
  38387. height: math.unit(150, "feet"),
  38388. name: "Back (Gigantamax)",
  38389. image: {
  38390. source: "./media/characters/carbon/back-gigantamax.svg",
  38391. extra: 1796/1653,
  38392. bottom: 53/1849
  38393. }
  38394. },
  38395. maw: {
  38396. height: math.unit(0.48, "feet"),
  38397. name: "Maw",
  38398. image: {
  38399. source: "./media/characters/carbon/maw.svg"
  38400. }
  38401. },
  38402. mawGigantamax: {
  38403. height: math.unit(7.5, "feet"),
  38404. name: "Maw (Gigantamax)",
  38405. image: {
  38406. source: "./media/characters/carbon/maw-gigantamax.svg"
  38407. }
  38408. },
  38409. },
  38410. [
  38411. {
  38412. name: "Normal",
  38413. height: math.unit(7 + 5/12, "feet"),
  38414. default: true
  38415. },
  38416. ]
  38417. ))
  38418. characterMakers.push(() => makeCharacter(
  38419. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38420. {
  38421. front: {
  38422. height: math.unit(6, "feet"),
  38423. name: "Front",
  38424. image: {
  38425. source: "./media/characters/maverick/front.svg",
  38426. extra: 1672/1661,
  38427. bottom: 85/1757
  38428. }
  38429. },
  38430. back: {
  38431. height: math.unit(6, "feet"),
  38432. name: "Back",
  38433. image: {
  38434. source: "./media/characters/maverick/back.svg",
  38435. extra: 1642/1631,
  38436. bottom: 38/1680
  38437. }
  38438. },
  38439. },
  38440. [
  38441. {
  38442. name: "Normal",
  38443. height: math.unit(6, "feet"),
  38444. default: true
  38445. },
  38446. ]
  38447. ))
  38448. characterMakers.push(() => makeCharacter(
  38449. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38450. {
  38451. front: {
  38452. height: math.unit(15, "feet"),
  38453. weight: math.unit(615, "lb"),
  38454. name: "Front",
  38455. image: {
  38456. source: "./media/characters/grockle/front.svg",
  38457. extra: 1535/1427,
  38458. bottom: 56/1591
  38459. }
  38460. },
  38461. },
  38462. [
  38463. {
  38464. name: "Normal",
  38465. height: math.unit(15, "feet"),
  38466. default: true
  38467. },
  38468. {
  38469. name: "Large",
  38470. height: math.unit(150, "feet")
  38471. },
  38472. {
  38473. name: "Macro",
  38474. height: math.unit(1876, "feet")
  38475. },
  38476. {
  38477. name: "Mega Macro",
  38478. height: math.unit(121940, "feet")
  38479. },
  38480. {
  38481. name: "Giga Macro",
  38482. height: math.unit(750, "km")
  38483. },
  38484. {
  38485. name: "Tera Macro",
  38486. height: math.unit(750000, "km")
  38487. },
  38488. {
  38489. name: "Galactic",
  38490. height: math.unit(1.4e5, "km")
  38491. },
  38492. {
  38493. name: "Godlike",
  38494. height: math.unit(9.8e280, "galaxies")
  38495. },
  38496. ]
  38497. ))
  38498. characterMakers.push(() => makeCharacter(
  38499. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38500. {
  38501. front: {
  38502. height: math.unit(11, "meters"),
  38503. weight: math.unit(20, "tonnes"),
  38504. name: "Front",
  38505. image: {
  38506. source: "./media/characters/alistair/front.svg",
  38507. extra: 1265/1009,
  38508. bottom: 93/1358
  38509. }
  38510. },
  38511. },
  38512. [
  38513. {
  38514. name: "Normal",
  38515. height: math.unit(11, "meters"),
  38516. default: true
  38517. },
  38518. ]
  38519. ))
  38520. characterMakers.push(() => makeCharacter(
  38521. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38522. {
  38523. front: {
  38524. height: math.unit(5 + 8/12, "feet"),
  38525. name: "Front",
  38526. image: {
  38527. source: "./media/characters/haruka/front.svg",
  38528. extra: 2012/1952,
  38529. bottom: 0/2012
  38530. }
  38531. },
  38532. },
  38533. [
  38534. {
  38535. name: "Normal",
  38536. height: math.unit(5 + 8/12, "feet"),
  38537. default: true
  38538. },
  38539. ]
  38540. ))
  38541. characterMakers.push(() => makeCharacter(
  38542. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38543. {
  38544. back: {
  38545. height: math.unit(9, "feet"),
  38546. name: "Back",
  38547. image: {
  38548. source: "./media/characters/vivian-sylveon/back.svg",
  38549. extra: 1853/1714,
  38550. bottom: 0/1853
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(9, "feet"),
  38558. default: true
  38559. },
  38560. {
  38561. name: "Macro",
  38562. height: math.unit(500, "feet")
  38563. },
  38564. {
  38565. name: "Megamacro",
  38566. height: math.unit(600, "miles")
  38567. },
  38568. {
  38569. name: "Gigamacro",
  38570. height: math.unit(30000, "miles")
  38571. },
  38572. ]
  38573. ))
  38574. characterMakers.push(() => makeCharacter(
  38575. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38576. {
  38577. anthro: {
  38578. height: math.unit(5 + 10/12, "feet"),
  38579. weight: math.unit(100, "lb"),
  38580. name: "Anthro",
  38581. image: {
  38582. source: "./media/characters/daiki/anthro.svg",
  38583. extra: 1115/1027,
  38584. bottom: 69/1184
  38585. }
  38586. },
  38587. feral: {
  38588. height: math.unit(200, "feet"),
  38589. name: "Feral",
  38590. image: {
  38591. source: "./media/characters/daiki/feral.svg",
  38592. extra: 1256/313,
  38593. bottom: 39/1295
  38594. }
  38595. },
  38596. feralHead: {
  38597. height: math.unit(171, "feet"),
  38598. name: "Feral Head",
  38599. image: {
  38600. source: "./media/characters/daiki/feral-head.svg"
  38601. }
  38602. },
  38603. manaDragon: {
  38604. height: math.unit(170, "meters"),
  38605. name: "Mana-dragon",
  38606. image: {
  38607. source: "./media/characters/daiki/mana-dragon.svg",
  38608. extra: 763/420,
  38609. bottom: 97/860
  38610. }
  38611. },
  38612. },
  38613. [
  38614. {
  38615. name: "Normal",
  38616. height: math.unit(5 + 10/12, "feet"),
  38617. default: true
  38618. },
  38619. ]
  38620. ))
  38621. characterMakers.push(() => makeCharacter(
  38622. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38623. {
  38624. fullyEquippedFront: {
  38625. height: math.unit(3 + 1/12, "feet"),
  38626. weight: math.unit(24, "lb"),
  38627. name: "Fully Equipped (Front)",
  38628. image: {
  38629. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38630. extra: 687/605,
  38631. bottom: 18/705
  38632. }
  38633. },
  38634. fullyEquippedBack: {
  38635. height: math.unit(3 + 1/12, "feet"),
  38636. weight: math.unit(24, "lb"),
  38637. name: "Fully Equipped (Back)",
  38638. image: {
  38639. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38640. extra: 689/590,
  38641. bottom: 18/707
  38642. }
  38643. },
  38644. dailyWear: {
  38645. height: math.unit(3 + 1/12, "feet"),
  38646. weight: math.unit(24, "lb"),
  38647. name: "Daily Wear",
  38648. image: {
  38649. source: "./media/characters/tea-spot/daily-wear.svg",
  38650. extra: 701/620,
  38651. bottom: 21/722
  38652. }
  38653. },
  38654. maidWork: {
  38655. height: math.unit(3 + 1/12, "feet"),
  38656. weight: math.unit(24, "lb"),
  38657. name: "Maid Work",
  38658. image: {
  38659. source: "./media/characters/tea-spot/maid-work.svg",
  38660. extra: 693/609,
  38661. bottom: 15/708
  38662. }
  38663. },
  38664. },
  38665. [
  38666. {
  38667. name: "Normal",
  38668. height: math.unit(3 + 1/12, "feet"),
  38669. default: true
  38670. },
  38671. ]
  38672. ))
  38673. characterMakers.push(() => makeCharacter(
  38674. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38675. {
  38676. front: {
  38677. height: math.unit(175, "cm"),
  38678. weight: math.unit(75, "kg"),
  38679. name: "Front",
  38680. image: {
  38681. source: "./media/characters/chee/front.svg",
  38682. extra: 1796/1740,
  38683. bottom: 40/1836
  38684. }
  38685. },
  38686. },
  38687. [
  38688. {
  38689. name: "Micro-Micro",
  38690. height: math.unit(1, "nm")
  38691. },
  38692. {
  38693. name: "Micro-erst",
  38694. height: math.unit(1, "micrometer")
  38695. },
  38696. {
  38697. name: "Micro-er",
  38698. height: math.unit(1, "cm")
  38699. },
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(175, "cm"),
  38703. default: true
  38704. },
  38705. {
  38706. name: "Macro",
  38707. height: math.unit(100, "m")
  38708. },
  38709. {
  38710. name: "Macro-er",
  38711. height: math.unit(1, "km")
  38712. },
  38713. {
  38714. name: "Macro-erst",
  38715. height: math.unit(10, "km")
  38716. },
  38717. {
  38718. name: "Macro-Macro",
  38719. height: math.unit(100, "km")
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(11 + 9/12, "feet"),
  38728. weight: math.unit(935, "lb"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/kingsley/front.svg",
  38732. extra: 1803/1674,
  38733. bottom: 127/1930
  38734. }
  38735. },
  38736. frontNude: {
  38737. height: math.unit(11 + 9/12, "feet"),
  38738. weight: math.unit(935, "lb"),
  38739. name: "Front (Nude)",
  38740. image: {
  38741. source: "./media/characters/kingsley/front-nude.svg",
  38742. extra: 1803/1674,
  38743. bottom: 127/1930
  38744. }
  38745. },
  38746. },
  38747. [
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(11 + 9/12, "feet"),
  38751. default: true
  38752. },
  38753. ]
  38754. ))
  38755. characterMakers.push(() => makeCharacter(
  38756. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38757. {
  38758. side: {
  38759. height: math.unit(9, "feet"),
  38760. name: "Side",
  38761. image: {
  38762. source: "./media/characters/rymel/side.svg",
  38763. extra: 792/469,
  38764. bottom: 121/913
  38765. }
  38766. },
  38767. maw: {
  38768. height: math.unit(2.4, "meters"),
  38769. name: "Maw",
  38770. image: {
  38771. source: "./media/characters/rymel/maw.svg"
  38772. }
  38773. },
  38774. },
  38775. [
  38776. {
  38777. name: "House Drake",
  38778. height: math.unit(2, "feet")
  38779. },
  38780. {
  38781. name: "Reduced",
  38782. height: math.unit(4.5, "feet")
  38783. },
  38784. {
  38785. name: "Normal",
  38786. height: math.unit(9, "feet"),
  38787. default: true
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38793. {
  38794. front: {
  38795. height: math.unit(1.74, "meters"),
  38796. weight: math.unit(55, "kg"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/rubus/front.svg",
  38800. extra: 1894/1742,
  38801. bottom: 44/1938
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(1.74, "meters"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(5 + 2/12, "feet"),
  38818. weight: math.unit(112, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/cassie-kingston/front.svg",
  38822. extra: 1438/1390,
  38823. bottom: 47/1485
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(5 + 2/12, "feet"),
  38831. default: true
  38832. },
  38833. {
  38834. name: "Macro",
  38835. height: math.unit(128, "feet")
  38836. },
  38837. {
  38838. name: "Megamacro",
  38839. height: math.unit(2.56, "miles")
  38840. },
  38841. ]
  38842. ))
  38843. characterMakers.push(() => makeCharacter(
  38844. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38845. {
  38846. front: {
  38847. height: math.unit(7, "feet"),
  38848. name: "Front",
  38849. image: {
  38850. source: "./media/characters/fox/front.svg",
  38851. extra: 1798/1703,
  38852. bottom: 55/1853
  38853. }
  38854. },
  38855. back: {
  38856. height: math.unit(7, "feet"),
  38857. name: "Back",
  38858. image: {
  38859. source: "./media/characters/fox/back.svg",
  38860. extra: 1748/1649,
  38861. bottom: 32/1780
  38862. }
  38863. },
  38864. head: {
  38865. height: math.unit(1.95, "feet"),
  38866. name: "Head",
  38867. image: {
  38868. source: "./media/characters/fox/head.svg"
  38869. }
  38870. },
  38871. dick: {
  38872. height: math.unit(1.33, "feet"),
  38873. name: "Dick",
  38874. image: {
  38875. source: "./media/characters/fox/dick.svg"
  38876. }
  38877. },
  38878. foot: {
  38879. height: math.unit(1, "feet"),
  38880. name: "Foot",
  38881. image: {
  38882. source: "./media/characters/fox/foot.svg"
  38883. }
  38884. },
  38885. paw: {
  38886. height: math.unit(0.92, "feet"),
  38887. name: "Paw",
  38888. image: {
  38889. source: "./media/characters/fox/paw.svg"
  38890. }
  38891. },
  38892. },
  38893. [
  38894. {
  38895. name: "Small",
  38896. height: math.unit(3, "inches")
  38897. },
  38898. {
  38899. name: "\"Realistic\"",
  38900. height: math.unit(7, "feet")
  38901. },
  38902. {
  38903. name: "Normal",
  38904. height: math.unit(150, "feet"),
  38905. default: true
  38906. },
  38907. {
  38908. name: "BIG",
  38909. height: math.unit(1200, "feet")
  38910. },
  38911. {
  38912. name: "👀",
  38913. height: math.unit(5, "miles")
  38914. },
  38915. {
  38916. name: "👀👀👀",
  38917. height: math.unit(64, "miles")
  38918. },
  38919. ]
  38920. ))
  38921. characterMakers.push(() => makeCharacter(
  38922. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38923. {
  38924. front: {
  38925. height: math.unit(625, "feet"),
  38926. name: "Front",
  38927. image: {
  38928. source: "./media/characters/asonja-rossa/front.svg",
  38929. extra: 1833/1686,
  38930. bottom: 24/1857
  38931. }
  38932. },
  38933. back: {
  38934. height: math.unit(625, "feet"),
  38935. name: "Back",
  38936. image: {
  38937. source: "./media/characters/asonja-rossa/back.svg",
  38938. extra: 1852/1753,
  38939. bottom: 26/1878
  38940. }
  38941. },
  38942. },
  38943. [
  38944. {
  38945. name: "Macro",
  38946. height: math.unit(625, "feet"),
  38947. default: true
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38953. {
  38954. side: {
  38955. height: math.unit(8, "feet"),
  38956. name: "Side",
  38957. image: {
  38958. source: "./media/characters/rezukii/side.svg",
  38959. extra: 979/542,
  38960. bottom: 87/1066
  38961. }
  38962. },
  38963. sitting: {
  38964. height: math.unit(14.6, "feet"),
  38965. name: "Sitting",
  38966. image: {
  38967. source: "./media/characters/rezukii/sitting.svg",
  38968. extra: 1023/813,
  38969. bottom: 45/1068
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Tiny",
  38976. height: math.unit(2, "feet")
  38977. },
  38978. {
  38979. name: "Smol",
  38980. height: math.unit(4, "feet")
  38981. },
  38982. {
  38983. name: "Normal",
  38984. height: math.unit(8, "feet"),
  38985. default: true
  38986. },
  38987. {
  38988. name: "Big",
  38989. height: math.unit(12, "feet")
  38990. },
  38991. {
  38992. name: "Macro",
  38993. height: math.unit(30, "feet")
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(14, "feet"),
  39002. weight: math.unit(9.5, "tonnes"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/dawnheart/front.svg",
  39006. extra: 2792/2675,
  39007. bottom: 64/2856
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Normal",
  39014. height: math.unit(14, "feet"),
  39015. default: true
  39016. },
  39017. ]
  39018. ))
  39019. characterMakers.push(() => makeCharacter(
  39020. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39021. {
  39022. front: {
  39023. height: math.unit(1.7, "m"),
  39024. name: "Front",
  39025. image: {
  39026. source: "./media/characters/gladi/front.svg",
  39027. extra: 1460/1362,
  39028. bottom: 19/1479
  39029. }
  39030. },
  39031. back: {
  39032. height: math.unit(1.7, "m"),
  39033. name: "Back",
  39034. image: {
  39035. source: "./media/characters/gladi/back.svg",
  39036. extra: 1459/1357,
  39037. bottom: 12/1471
  39038. }
  39039. },
  39040. feral: {
  39041. height: math.unit(2.05, "m"),
  39042. name: "Feral",
  39043. image: {
  39044. source: "./media/characters/gladi/feral.svg",
  39045. extra: 821/557,
  39046. bottom: 91/912
  39047. }
  39048. },
  39049. },
  39050. [
  39051. {
  39052. name: "Shortest",
  39053. height: math.unit(70, "cm")
  39054. },
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(1.7, "m")
  39058. },
  39059. {
  39060. name: "Macro",
  39061. height: math.unit(10, "m"),
  39062. default: true
  39063. },
  39064. {
  39065. name: "Tallest",
  39066. height: math.unit(200, "m")
  39067. },
  39068. ]
  39069. ))
  39070. characterMakers.push(() => makeCharacter(
  39071. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39072. {
  39073. front: {
  39074. height: math.unit(5 + 7/12, "feet"),
  39075. weight: math.unit(2, "tons"),
  39076. name: "Front",
  39077. image: {
  39078. source: "./media/characters/erdno/front.svg",
  39079. extra: 1234/1129,
  39080. bottom: 35/1269
  39081. }
  39082. },
  39083. angled: {
  39084. height: math.unit(5 + 7/12, "feet"),
  39085. weight: math.unit(2, "tons"),
  39086. name: "Angled",
  39087. image: {
  39088. source: "./media/characters/erdno/angled.svg",
  39089. extra: 1185/1139,
  39090. bottom: 36/1221
  39091. }
  39092. },
  39093. side: {
  39094. height: math.unit(5 + 7/12, "feet"),
  39095. weight: math.unit(2, "tons"),
  39096. name: "Side",
  39097. image: {
  39098. source: "./media/characters/erdno/side.svg",
  39099. extra: 1191/1144,
  39100. bottom: 40/1231
  39101. }
  39102. },
  39103. back: {
  39104. height: math.unit(5 + 7/12, "feet"),
  39105. weight: math.unit(2, "tons"),
  39106. name: "Back",
  39107. image: {
  39108. source: "./media/characters/erdno/back.svg",
  39109. extra: 1202/1146,
  39110. bottom: 17/1219
  39111. }
  39112. },
  39113. frontNsfw: {
  39114. height: math.unit(5 + 7/12, "feet"),
  39115. weight: math.unit(2, "tons"),
  39116. name: "Front (NSFW)",
  39117. image: {
  39118. source: "./media/characters/erdno/front-nsfw.svg",
  39119. extra: 1234/1129,
  39120. bottom: 35/1269
  39121. }
  39122. },
  39123. angledNsfw: {
  39124. height: math.unit(5 + 7/12, "feet"),
  39125. weight: math.unit(2, "tons"),
  39126. name: "Angled (NSFW)",
  39127. image: {
  39128. source: "./media/characters/erdno/angled-nsfw.svg",
  39129. extra: 1185/1139,
  39130. bottom: 36/1221
  39131. }
  39132. },
  39133. sideNsfw: {
  39134. height: math.unit(5 + 7/12, "feet"),
  39135. weight: math.unit(2, "tons"),
  39136. name: "Side (NSFW)",
  39137. image: {
  39138. source: "./media/characters/erdno/side-nsfw.svg",
  39139. extra: 1191/1144,
  39140. bottom: 40/1231
  39141. }
  39142. },
  39143. backNsfw: {
  39144. height: math.unit(5 + 7/12, "feet"),
  39145. weight: math.unit(2, "tons"),
  39146. name: "Back (NSFW)",
  39147. image: {
  39148. source: "./media/characters/erdno/back-nsfw.svg",
  39149. extra: 1202/1146,
  39150. bottom: 17/1219
  39151. }
  39152. },
  39153. frontHyper: {
  39154. height: math.unit(5 + 7/12, "feet"),
  39155. weight: math.unit(2, "tons"),
  39156. name: "Front (Hyper)",
  39157. image: {
  39158. source: "./media/characters/erdno/front-hyper.svg",
  39159. extra: 1298/1136,
  39160. bottom: 35/1333
  39161. }
  39162. },
  39163. },
  39164. [
  39165. {
  39166. name: "Normal",
  39167. height: math.unit(5 + 7/12, "feet"),
  39168. default: true
  39169. },
  39170. {
  39171. name: "Big",
  39172. height: math.unit(5.7, "meters")
  39173. },
  39174. {
  39175. name: "Macro",
  39176. height: math.unit(5.7, "kilometers")
  39177. },
  39178. {
  39179. name: "Megamacro",
  39180. height: math.unit(5.7, "earths")
  39181. },
  39182. ]
  39183. ))
  39184. characterMakers.push(() => makeCharacter(
  39185. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39186. {
  39187. front: {
  39188. height: math.unit(5 + 10/12, "feet"),
  39189. weight: math.unit(150, "lb"),
  39190. name: "Front",
  39191. image: {
  39192. source: "./media/characters/jamie/front.svg",
  39193. extra: 1908/1768,
  39194. bottom: 19/1927
  39195. }
  39196. },
  39197. },
  39198. [
  39199. {
  39200. name: "Minimum",
  39201. height: math.unit(2, "cm")
  39202. },
  39203. {
  39204. name: "Micro",
  39205. height: math.unit(3, "inches")
  39206. },
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(5 + 10/12, "feet"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Macro",
  39214. height: math.unit(150, "feet")
  39215. },
  39216. {
  39217. name: "Megamacro",
  39218. height: math.unit(10000, "m")
  39219. },
  39220. ]
  39221. ))
  39222. characterMakers.push(() => makeCharacter(
  39223. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39224. {
  39225. front: {
  39226. height: math.unit(2, "meters"),
  39227. weight: math.unit(100, "kg"),
  39228. name: "Front",
  39229. image: {
  39230. source: "./media/characters/shiron/front.svg",
  39231. extra: 2103/1985,
  39232. bottom: 98/2201
  39233. }
  39234. },
  39235. back: {
  39236. height: math.unit(2, "meters"),
  39237. weight: math.unit(100, "kg"),
  39238. name: "Back",
  39239. image: {
  39240. source: "./media/characters/shiron/back.svg",
  39241. extra: 2110/2015,
  39242. bottom: 89/2199
  39243. }
  39244. },
  39245. hand: {
  39246. height: math.unit(0.96, "feet"),
  39247. name: "Hand",
  39248. image: {
  39249. source: "./media/characters/shiron/hand.svg"
  39250. }
  39251. },
  39252. foot: {
  39253. height: math.unit(1.464, "feet"),
  39254. name: "Foot",
  39255. image: {
  39256. source: "./media/characters/shiron/foot.svg"
  39257. }
  39258. },
  39259. },
  39260. [
  39261. {
  39262. name: "Normal",
  39263. height: math.unit(2, "meters")
  39264. },
  39265. {
  39266. name: "Macro",
  39267. height: math.unit(500, "meters"),
  39268. default: true
  39269. },
  39270. {
  39271. name: "Megamacro",
  39272. height: math.unit(20, "km")
  39273. },
  39274. ]
  39275. ))
  39276. characterMakers.push(() => makeCharacter(
  39277. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39278. {
  39279. front: {
  39280. height: math.unit(6, "feet"),
  39281. name: "Front",
  39282. image: {
  39283. source: "./media/characters/sam/front.svg",
  39284. extra: 849/826,
  39285. bottom: 19/868
  39286. }
  39287. },
  39288. },
  39289. [
  39290. {
  39291. name: "Normal",
  39292. height: math.unit(6, "feet"),
  39293. default: true
  39294. },
  39295. ]
  39296. ))
  39297. characterMakers.push(() => makeCharacter(
  39298. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39299. {
  39300. front: {
  39301. height: math.unit(8 + 4/12, "feet"),
  39302. weight: math.unit(122, "kg"),
  39303. name: "Front",
  39304. image: {
  39305. source: "./media/characters/namori-kurogawa/front.svg",
  39306. extra: 1894/1576,
  39307. bottom: 34/1928
  39308. }
  39309. },
  39310. },
  39311. [
  39312. {
  39313. name: "Normal",
  39314. height: math.unit(8 + 4/12, "feet"),
  39315. default: true
  39316. },
  39317. ]
  39318. ))
  39319. characterMakers.push(() => makeCharacter(
  39320. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39321. {
  39322. front: {
  39323. height: math.unit(9, "feet"),
  39324. weight: math.unit(621, "lb"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/unmru/front.svg",
  39328. extra: 1853/1747,
  39329. bottom: 73/1926
  39330. }
  39331. },
  39332. side: {
  39333. height: math.unit(9, "feet"),
  39334. weight: math.unit(621, "lb"),
  39335. name: "Side",
  39336. image: {
  39337. source: "./media/characters/unmru/side.svg",
  39338. extra: 1781/1671,
  39339. bottom: 127/1908
  39340. }
  39341. },
  39342. back: {
  39343. height: math.unit(9, "feet"),
  39344. weight: math.unit(621, "lb"),
  39345. name: "Back",
  39346. image: {
  39347. source: "./media/characters/unmru/back.svg",
  39348. extra: 1894/1765,
  39349. bottom: 75/1969
  39350. }
  39351. },
  39352. dick: {
  39353. height: math.unit(3, "feet"),
  39354. weight: math.unit(35, "lb"),
  39355. name: "Dick",
  39356. image: {
  39357. source: "./media/characters/unmru/dick.svg"
  39358. }
  39359. },
  39360. },
  39361. [
  39362. {
  39363. name: "Normal",
  39364. height: math.unit(9, "feet")
  39365. },
  39366. {
  39367. name: "Natural",
  39368. height: math.unit(27, "feet"),
  39369. default: true
  39370. },
  39371. {
  39372. name: "Giant",
  39373. height: math.unit(90, "feet")
  39374. },
  39375. {
  39376. name: "Kaiju",
  39377. height: math.unit(270, "feet")
  39378. },
  39379. {
  39380. name: "Macro",
  39381. height: math.unit(900, "feet")
  39382. },
  39383. {
  39384. name: "Macro+",
  39385. height: math.unit(2700, "feet")
  39386. },
  39387. {
  39388. name: "Megamacro",
  39389. height: math.unit(9000, "feet")
  39390. },
  39391. {
  39392. name: "City-Crushing",
  39393. height: math.unit(27000, "feet")
  39394. },
  39395. {
  39396. name: "Mountain-Mashing",
  39397. height: math.unit(90000, "feet")
  39398. },
  39399. {
  39400. name: "Earth-Eclipsing",
  39401. height: math.unit(2.7e8, "feet")
  39402. },
  39403. {
  39404. name: "Sol-Swallowing",
  39405. height: math.unit(9e10, "feet")
  39406. },
  39407. {
  39408. name: "Majoris-Munching",
  39409. height: math.unit(2.7e13, "feet")
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39415. {
  39416. front: {
  39417. height: math.unit(1, "inch"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/squeaks-mouse/front.svg",
  39421. extra: 352/308,
  39422. bottom: 25/377
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Micro",
  39429. height: math.unit(1, "inch"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39436. {
  39437. side: {
  39438. height: math.unit(35, "feet"),
  39439. name: "Side",
  39440. image: {
  39441. source: "./media/characters/sayko/side.svg",
  39442. extra: 1697/1021,
  39443. bottom: 82/1779
  39444. }
  39445. },
  39446. head: {
  39447. height: math.unit(16, "feet"),
  39448. name: "Head",
  39449. image: {
  39450. source: "./media/characters/sayko/head.svg"
  39451. }
  39452. },
  39453. forepaw: {
  39454. height: math.unit(7.85, "feet"),
  39455. name: "Forepaw",
  39456. image: {
  39457. source: "./media/characters/sayko/forepaw.svg"
  39458. }
  39459. },
  39460. hindpaw: {
  39461. height: math.unit(8.8, "feet"),
  39462. name: "Hindpaw",
  39463. image: {
  39464. source: "./media/characters/sayko/hindpaw.svg"
  39465. }
  39466. },
  39467. },
  39468. [
  39469. {
  39470. name: "Normal",
  39471. height: math.unit(35, "feet"),
  39472. default: true
  39473. },
  39474. {
  39475. name: "Colossus",
  39476. height: math.unit(100, "meters")
  39477. },
  39478. {
  39479. name: "\"Small\" Deity",
  39480. height: math.unit(1, "km")
  39481. },
  39482. {
  39483. name: "\"Large\" Deity",
  39484. height: math.unit(15, "km")
  39485. },
  39486. ]
  39487. ))
  39488. characterMakers.push(() => makeCharacter(
  39489. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39490. {
  39491. front: {
  39492. height: math.unit(6, "feet"),
  39493. weight: math.unit(250, "lb"),
  39494. name: "Front",
  39495. image: {
  39496. source: "./media/characters/mukiro/front.svg",
  39497. extra: 1368/1310,
  39498. bottom: 34/1402
  39499. }
  39500. },
  39501. },
  39502. [
  39503. {
  39504. name: "Normal",
  39505. height: math.unit(6, "feet"),
  39506. default: true
  39507. },
  39508. ]
  39509. ))
  39510. characterMakers.push(() => makeCharacter(
  39511. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39512. {
  39513. front: {
  39514. height: math.unit(12 + 4/12, "feet"),
  39515. name: "Front",
  39516. image: {
  39517. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39518. extra: 1346/1311,
  39519. bottom: 65/1411
  39520. }
  39521. },
  39522. },
  39523. [
  39524. {
  39525. name: "Base",
  39526. height: math.unit(12 + 4/12, "feet"),
  39527. default: true
  39528. },
  39529. {
  39530. name: "Macro",
  39531. height: math.unit(150, "feet")
  39532. },
  39533. {
  39534. name: "Mega",
  39535. height: math.unit(2, "miles")
  39536. },
  39537. {
  39538. name: "Demi God",
  39539. height: math.unit(4, "AU")
  39540. },
  39541. {
  39542. name: "God Size",
  39543. height: math.unit(1, "universe")
  39544. },
  39545. ]
  39546. ))
  39547. characterMakers.push(() => makeCharacter(
  39548. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39549. {
  39550. front: {
  39551. height: math.unit(3 + 3/12, "feet"),
  39552. weight: math.unit(88, "lb"),
  39553. name: "Front",
  39554. image: {
  39555. source: "./media/characters/trey/front.svg",
  39556. extra: 1815/1509,
  39557. bottom: 60/1875
  39558. }
  39559. },
  39560. },
  39561. [
  39562. {
  39563. name: "Normal",
  39564. height: math.unit(3 + 3/12, "feet"),
  39565. default: true
  39566. },
  39567. ]
  39568. ))
  39569. characterMakers.push(() => makeCharacter(
  39570. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39571. {
  39572. front: {
  39573. height: math.unit(4, "meters"),
  39574. name: "Front",
  39575. image: {
  39576. source: "./media/characters/adelonda/front.svg",
  39577. extra: 1077/982,
  39578. bottom: 39/1116
  39579. }
  39580. },
  39581. back: {
  39582. height: math.unit(4, "meters"),
  39583. name: "Back",
  39584. image: {
  39585. source: "./media/characters/adelonda/back.svg",
  39586. extra: 1105/1003,
  39587. bottom: 25/1130
  39588. }
  39589. },
  39590. feral: {
  39591. height: math.unit(40/1.5, "meters"),
  39592. name: "Feral",
  39593. image: {
  39594. source: "./media/characters/adelonda/feral.svg",
  39595. extra: 597/271,
  39596. bottom: 387/984
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Normal",
  39603. height: math.unit(4, "meters"),
  39604. default: true
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(8 + 4/12, "feet"),
  39613. weight: math.unit(670, "lb"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/acadiel/front.svg",
  39617. extra: 1901/1595,
  39618. bottom: 142/2043
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Normal",
  39625. height: math.unit(8 + 4/12, "feet"),
  39626. default: true
  39627. },
  39628. {
  39629. name: "Macro",
  39630. height: math.unit(200, "feet")
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(6 + 2/12, "feet"),
  39639. weight: math.unit(185, "lb"),
  39640. name: "Front",
  39641. image: {
  39642. source: "./media/characters/kayne-ein/front.svg",
  39643. extra: 1780/1560,
  39644. bottom: 81/1861
  39645. }
  39646. },
  39647. },
  39648. [
  39649. {
  39650. name: "Normal",
  39651. height: math.unit(6 + 2/12, "feet"),
  39652. default: true
  39653. },
  39654. {
  39655. name: "Transformation Stage",
  39656. height: math.unit(15, "feet")
  39657. },
  39658. {
  39659. name: "Macro",
  39660. height: math.unit(150, "feet")
  39661. },
  39662. {
  39663. name: "Earth's Shadow",
  39664. height: math.unit(6200, "miles")
  39665. },
  39666. {
  39667. name: "Universal Demon",
  39668. height: math.unit(28e9, "parsecs")
  39669. },
  39670. {
  39671. name: "Multiverse God",
  39672. height: math.unit(3, "multiverses")
  39673. },
  39674. ]
  39675. ))
  39676. characterMakers.push(() => makeCharacter(
  39677. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39678. {
  39679. front: {
  39680. height: math.unit(5 + 5/12, "feet"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/fawn/front.svg",
  39684. extra: 1873/1731,
  39685. bottom: 95/1968
  39686. }
  39687. },
  39688. back: {
  39689. height: math.unit(5 + 5/12, "feet"),
  39690. name: "Back",
  39691. image: {
  39692. source: "./media/characters/fawn/back.svg",
  39693. extra: 1813/1700,
  39694. bottom: 14/1827
  39695. }
  39696. },
  39697. hoof: {
  39698. height: math.unit(1.45, "feet"),
  39699. name: "Hoof",
  39700. image: {
  39701. source: "./media/characters/fawn/hoof.svg"
  39702. }
  39703. },
  39704. },
  39705. [
  39706. {
  39707. name: "Normal",
  39708. height: math.unit(5 + 5/12, "feet"),
  39709. default: true
  39710. },
  39711. ]
  39712. ))
  39713. characterMakers.push(() => makeCharacter(
  39714. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39715. {
  39716. front: {
  39717. height: math.unit(2 + 5/12, "feet"),
  39718. name: "Front",
  39719. image: {
  39720. source: "./media/characters/orion/front.svg",
  39721. extra: 1366/1304,
  39722. bottom: 43/1409
  39723. }
  39724. },
  39725. paw: {
  39726. height: math.unit(0.52, "feet"),
  39727. name: "Paw",
  39728. image: {
  39729. source: "./media/characters/orion/paw.svg"
  39730. }
  39731. },
  39732. },
  39733. [
  39734. {
  39735. name: "Normal",
  39736. height: math.unit(2 + 5/12, "feet"),
  39737. default: true
  39738. },
  39739. ]
  39740. ))
  39741. characterMakers.push(() => makeCharacter(
  39742. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39743. {
  39744. front: {
  39745. height: math.unit(5 + 10/12, "feet"),
  39746. name: "Front",
  39747. image: {
  39748. source: "./media/characters/vera/front.svg",
  39749. extra: 1680/1575,
  39750. bottom: 49/1729
  39751. }
  39752. },
  39753. back: {
  39754. height: math.unit(5 + 10/12, "feet"),
  39755. name: "Back",
  39756. image: {
  39757. source: "./media/characters/vera/back.svg",
  39758. extra: 1700/1588,
  39759. bottom: 18/1718
  39760. }
  39761. },
  39762. arcanine: {
  39763. height: math.unit(6 + 8/12, "feet"),
  39764. name: "Arcanine",
  39765. image: {
  39766. source: "./media/characters/vera/arcanine.svg",
  39767. extra: 1590/1511,
  39768. bottom: 71/1661
  39769. }
  39770. },
  39771. maw: {
  39772. height: math.unit(0.82, "feet"),
  39773. name: "Maw",
  39774. image: {
  39775. source: "./media/characters/vera/maw.svg"
  39776. }
  39777. },
  39778. mawArcanine: {
  39779. height: math.unit(0.97, "feet"),
  39780. name: "Maw (Arcanine)",
  39781. image: {
  39782. source: "./media/characters/vera/maw-arcanine.svg"
  39783. }
  39784. },
  39785. paw: {
  39786. height: math.unit(0.75, "feet"),
  39787. name: "Paw",
  39788. image: {
  39789. source: "./media/characters/vera/paw.svg"
  39790. }
  39791. },
  39792. pawprint: {
  39793. height: math.unit(0.52, "feet"),
  39794. name: "Pawprint",
  39795. image: {
  39796. source: "./media/characters/vera/pawprint.svg"
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(5 + 10/12, "feet"),
  39804. default: true
  39805. },
  39806. {
  39807. name: "Macro",
  39808. height: math.unit(75, "feet")
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(4, "feet"),
  39817. weight: math.unit(40, "lb"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/orvan-rabbit/front.svg",
  39821. extra: 1896/1642,
  39822. bottom: 29/1925
  39823. }
  39824. },
  39825. },
  39826. [
  39827. {
  39828. name: "Normal",
  39829. height: math.unit(4, "feet"),
  39830. default: true
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(6, "feet"),
  39839. weight: math.unit(168, "lb"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/lisa/front.svg",
  39843. extra: 2065/1867,
  39844. bottom: 46/2111
  39845. }
  39846. },
  39847. back: {
  39848. height: math.unit(6, "feet"),
  39849. weight: math.unit(168, "lb"),
  39850. name: "Back",
  39851. image: {
  39852. source: "./media/characters/lisa/back.svg",
  39853. extra: 1982/1838,
  39854. bottom: 29/2011
  39855. }
  39856. },
  39857. maw: {
  39858. height: math.unit(0.81, "feet"),
  39859. name: "Maw",
  39860. image: {
  39861. source: "./media/characters/lisa/maw.svg"
  39862. }
  39863. },
  39864. paw: {
  39865. height: math.unit(0.9, "feet"),
  39866. name: "Paw",
  39867. image: {
  39868. source: "./media/characters/lisa/paw.svg"
  39869. }
  39870. },
  39871. caribousune: {
  39872. height: math.unit(7 + 2/12, "feet"),
  39873. weight: math.unit(268, "lb"),
  39874. name: "Caribousune",
  39875. image: {
  39876. source: "./media/characters/lisa/caribousune.svg",
  39877. extra: 1843/1633,
  39878. bottom: 29/1872
  39879. }
  39880. },
  39881. frontCaribousune: {
  39882. height: math.unit(7 + 2/12, "feet"),
  39883. weight: math.unit(268, "lb"),
  39884. name: "Front (Caribousune)",
  39885. image: {
  39886. source: "./media/characters/lisa/front-caribousune.svg",
  39887. extra: 1818/1638,
  39888. bottom: 52/1870
  39889. }
  39890. },
  39891. sideCaribousune: {
  39892. height: math.unit(7 + 2/12, "feet"),
  39893. weight: math.unit(268, "lb"),
  39894. name: "Side (Caribousune)",
  39895. image: {
  39896. source: "./media/characters/lisa/side-caribousune.svg",
  39897. extra: 1851/1635,
  39898. bottom: 16/1867
  39899. }
  39900. },
  39901. backCaribousune: {
  39902. height: math.unit(7 + 2/12, "feet"),
  39903. weight: math.unit(268, "lb"),
  39904. name: "Back (Caribousune)",
  39905. image: {
  39906. source: "./media/characters/lisa/back-caribousune.svg",
  39907. extra: 1801/1604,
  39908. bottom: 44/1845
  39909. }
  39910. },
  39911. caribou: {
  39912. height: math.unit(7 + 2/12, "feet"),
  39913. weight: math.unit(268, "lb"),
  39914. name: "Caribou",
  39915. image: {
  39916. source: "./media/characters/lisa/caribou.svg",
  39917. extra: 1843/1633,
  39918. bottom: 29/1872
  39919. }
  39920. },
  39921. frontCaribou: {
  39922. height: math.unit(7 + 2/12, "feet"),
  39923. weight: math.unit(268, "lb"),
  39924. name: "Front (Caribou)",
  39925. image: {
  39926. source: "./media/characters/lisa/front-caribou.svg",
  39927. extra: 1818/1638,
  39928. bottom: 52/1870
  39929. }
  39930. },
  39931. sideCaribou: {
  39932. height: math.unit(7 + 2/12, "feet"),
  39933. weight: math.unit(268, "lb"),
  39934. name: "Side (Caribou)",
  39935. image: {
  39936. source: "./media/characters/lisa/side-caribou.svg",
  39937. extra: 1851/1635,
  39938. bottom: 16/1867
  39939. }
  39940. },
  39941. backCaribou: {
  39942. height: math.unit(7 + 2/12, "feet"),
  39943. weight: math.unit(268, "lb"),
  39944. name: "Back (Caribou)",
  39945. image: {
  39946. source: "./media/characters/lisa/back-caribou.svg",
  39947. extra: 1801/1604,
  39948. bottom: 44/1845
  39949. }
  39950. },
  39951. mawCaribou: {
  39952. height: math.unit(1.45, "feet"),
  39953. name: "Maw (Caribou)",
  39954. image: {
  39955. source: "./media/characters/lisa/maw-caribou.svg"
  39956. }
  39957. },
  39958. mawCaribousune: {
  39959. height: math.unit(1.45, "feet"),
  39960. name: "Maw (Caribousune)",
  39961. image: {
  39962. source: "./media/characters/lisa/maw-caribousune.svg"
  39963. }
  39964. },
  39965. pawCaribousune: {
  39966. height: math.unit(1.61, "feet"),
  39967. name: "Paw (Caribou)",
  39968. image: {
  39969. source: "./media/characters/lisa/paw-caribousune.svg"
  39970. }
  39971. },
  39972. },
  39973. [
  39974. {
  39975. name: "Normal",
  39976. height: math.unit(6, "feet")
  39977. },
  39978. {
  39979. name: "God Size",
  39980. height: math.unit(72, "feet"),
  39981. default: true
  39982. },
  39983. {
  39984. name: "Towering",
  39985. height: math.unit(288, "feet")
  39986. },
  39987. {
  39988. name: "City Size",
  39989. height: math.unit(48384, "feet")
  39990. },
  39991. {
  39992. name: "Continental",
  39993. height: math.unit(4200, "miles")
  39994. },
  39995. {
  39996. name: "Planet Eater",
  39997. height: math.unit(42, "earths")
  39998. },
  39999. {
  40000. name: "Star Swallower",
  40001. height: math.unit(42, "solarradii")
  40002. },
  40003. {
  40004. name: "System Swallower",
  40005. height: math.unit(84000, "AU")
  40006. },
  40007. {
  40008. name: "Galaxy Gobbler",
  40009. height: math.unit(42, "galaxies")
  40010. },
  40011. {
  40012. name: "Universe Devourer",
  40013. height: math.unit(42, "universes")
  40014. },
  40015. {
  40016. name: "Multiverse Muncher",
  40017. height: math.unit(42, "multiverses")
  40018. },
  40019. ]
  40020. ))
  40021. characterMakers.push(() => makeCharacter(
  40022. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40023. {
  40024. front: {
  40025. height: math.unit(36, "feet"),
  40026. name: "Front",
  40027. image: {
  40028. source: "./media/characters/shadow-rat/front.svg",
  40029. extra: 1845/1758,
  40030. bottom: 83/1928
  40031. }
  40032. },
  40033. },
  40034. [
  40035. {
  40036. name: "Macro",
  40037. height: math.unit(36, "feet"),
  40038. default: true
  40039. },
  40040. ]
  40041. ))
  40042. characterMakers.push(() => makeCharacter(
  40043. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40044. {
  40045. side: {
  40046. height: math.unit(8, "feet"),
  40047. weight: math.unit(2630, "lb"),
  40048. name: "Side",
  40049. image: {
  40050. source: "./media/characters/torallia/side.svg",
  40051. extra: 2164/2021,
  40052. bottom: 371/2535
  40053. }
  40054. },
  40055. },
  40056. [
  40057. {
  40058. name: "Mortal Interaction",
  40059. height: math.unit(8, "feet")
  40060. },
  40061. {
  40062. name: "Natural",
  40063. height: math.unit(24, "feet"),
  40064. default: true
  40065. },
  40066. {
  40067. name: "Giant",
  40068. height: math.unit(80, "feet")
  40069. },
  40070. {
  40071. name: "Kaiju",
  40072. height: math.unit(240, "feet")
  40073. },
  40074. {
  40075. name: "Macro",
  40076. height: math.unit(800, "feet")
  40077. },
  40078. {
  40079. name: "Macro+",
  40080. height: math.unit(2400, "feet")
  40081. },
  40082. {
  40083. name: "Macro++",
  40084. height: math.unit(8000, "feet")
  40085. },
  40086. {
  40087. name: "City-Crushing",
  40088. height: math.unit(24000, "feet")
  40089. },
  40090. {
  40091. name: "Mountain-Mashing",
  40092. height: math.unit(80000, "feet")
  40093. },
  40094. {
  40095. name: "District Demolisher",
  40096. height: math.unit(240000, "feet")
  40097. },
  40098. {
  40099. name: "Tri-County Terror",
  40100. height: math.unit(800000, "feet")
  40101. },
  40102. {
  40103. name: "State Smasher",
  40104. height: math.unit(2.4e6, "feet")
  40105. },
  40106. {
  40107. name: "Nation Nemesis",
  40108. height: math.unit(8e6, "feet")
  40109. },
  40110. {
  40111. name: "Continent Cracker",
  40112. height: math.unit(2.4e7, "feet")
  40113. },
  40114. {
  40115. name: "Planet-Pillaging",
  40116. height: math.unit(8e7, "feet")
  40117. },
  40118. {
  40119. name: "Earth-Eclipsing",
  40120. height: math.unit(2.4e8, "feet")
  40121. },
  40122. {
  40123. name: "Jovian-Jostling",
  40124. height: math.unit(8e8, "feet")
  40125. },
  40126. {
  40127. name: "Gas Giant Gulper",
  40128. height: math.unit(2.4e9, "feet")
  40129. },
  40130. {
  40131. name: "Astral Annihilator",
  40132. height: math.unit(8e9, "feet")
  40133. },
  40134. {
  40135. name: "Celestial Conqueror",
  40136. height: math.unit(2.4e10, "feet")
  40137. },
  40138. {
  40139. name: "Sol-Swallowing",
  40140. height: math.unit(8e10, "feet")
  40141. },
  40142. {
  40143. name: "Hunter of the Heavens",
  40144. height: math.unit(2.4e13, "feet")
  40145. },
  40146. ]
  40147. ))
  40148. characterMakers.push(() => makeCharacter(
  40149. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40150. {
  40151. front: {
  40152. height: math.unit(6 + 8/12, "feet"),
  40153. weight: math.unit(250, "kilograms"),
  40154. volume: math.unit(28, "liters"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/rebecca-pawlson/front.svg",
  40158. extra: 1737/1596,
  40159. bottom: 107/1844
  40160. }
  40161. },
  40162. back: {
  40163. height: math.unit(6 + 8/12, "feet"),
  40164. weight: math.unit(250, "kilograms"),
  40165. volume: math.unit(28, "liters"),
  40166. name: "Back",
  40167. image: {
  40168. source: "./media/characters/rebecca-pawlson/back.svg",
  40169. extra: 1702/1523,
  40170. bottom: 86/1788
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(6 + 8/12, "feet")
  40178. },
  40179. {
  40180. name: "Mini Macro",
  40181. height: math.unit(10, "feet"),
  40182. default: true
  40183. },
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(100, "feet")
  40187. },
  40188. {
  40189. name: "Mega Macro",
  40190. height: math.unit(2500, "feet")
  40191. },
  40192. {
  40193. name: "Giga Macro",
  40194. height: math.unit(50, "miles")
  40195. },
  40196. ]
  40197. ))
  40198. characterMakers.push(() => makeCharacter(
  40199. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40200. {
  40201. front: {
  40202. height: math.unit(7 + 6/12, "feet"),
  40203. weight: math.unit(600, "lb"),
  40204. name: "Front",
  40205. image: {
  40206. source: "./media/characters/moxie-nova/front.svg",
  40207. extra: 1734/1652,
  40208. bottom: 41/1775
  40209. }
  40210. },
  40211. },
  40212. [
  40213. {
  40214. name: "Normal",
  40215. height: math.unit(7 + 6/12, "feet"),
  40216. default: true
  40217. },
  40218. ]
  40219. ))
  40220. characterMakers.push(() => makeCharacter(
  40221. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40222. {
  40223. goat: {
  40224. height: math.unit(4, "feet"),
  40225. weight: math.unit(180, "lb"),
  40226. name: "Goat",
  40227. image: {
  40228. source: "./media/characters/tiffany/goat.svg",
  40229. extra: 1845/1595,
  40230. bottom: 106/1951
  40231. }
  40232. },
  40233. front: {
  40234. height: math.unit(5, "feet"),
  40235. weight: math.unit(150, "lb"),
  40236. name: "Foxcoon",
  40237. image: {
  40238. source: "./media/characters/tiffany/foxcoon.svg",
  40239. extra: 1941/1845,
  40240. bottom: 58/1999
  40241. }
  40242. },
  40243. },
  40244. [
  40245. {
  40246. name: "Normal",
  40247. height: math.unit(5, "feet"),
  40248. default: true
  40249. },
  40250. ]
  40251. ))
  40252. characterMakers.push(() => makeCharacter(
  40253. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40254. {
  40255. front: {
  40256. height: math.unit(8, "feet"),
  40257. weight: math.unit(300, "lb"),
  40258. name: "Front",
  40259. image: {
  40260. source: "./media/characters/raxinath/front.svg",
  40261. extra: 1407/1309,
  40262. bottom: 39/1446
  40263. }
  40264. },
  40265. back: {
  40266. height: math.unit(8, "feet"),
  40267. weight: math.unit(300, "lb"),
  40268. name: "Back",
  40269. image: {
  40270. source: "./media/characters/raxinath/back.svg",
  40271. extra: 1405/1315,
  40272. bottom: 9/1414
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Speck",
  40279. height: math.unit(0.5, "nm")
  40280. },
  40281. {
  40282. name: "Micro",
  40283. height: math.unit(3, "inches")
  40284. },
  40285. {
  40286. name: "Kobold",
  40287. height: math.unit(3, "feet")
  40288. },
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(8, "feet"),
  40292. default: true
  40293. },
  40294. {
  40295. name: "Giant",
  40296. height: math.unit(50, "feet")
  40297. },
  40298. {
  40299. name: "Macro",
  40300. height: math.unit(1000, "feet")
  40301. },
  40302. {
  40303. name: "Megamacro",
  40304. height: math.unit(1, "mile")
  40305. },
  40306. ]
  40307. ))
  40308. characterMakers.push(() => makeCharacter(
  40309. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40310. {
  40311. front: {
  40312. height: math.unit(10, "feet"),
  40313. weight: math.unit(1442, "lb"),
  40314. name: "Front",
  40315. image: {
  40316. source: "./media/characters/mal-dragon/front.svg",
  40317. extra: 1515/1444,
  40318. bottom: 113/1628
  40319. }
  40320. },
  40321. back: {
  40322. height: math.unit(10, "feet"),
  40323. weight: math.unit(1442, "lb"),
  40324. name: "Back",
  40325. image: {
  40326. source: "./media/characters/mal-dragon/back.svg",
  40327. extra: 1527/1434,
  40328. bottom: 25/1552
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Mortal Interaction",
  40335. height: math.unit(10, "feet"),
  40336. default: true
  40337. },
  40338. {
  40339. name: "Large",
  40340. height: math.unit(30, "feet")
  40341. },
  40342. {
  40343. name: "Kaiju",
  40344. height: math.unit(300, "feet")
  40345. },
  40346. {
  40347. name: "Megamacro",
  40348. height: math.unit(10000, "feet")
  40349. },
  40350. {
  40351. name: "Continent Cracker",
  40352. height: math.unit(30000000, "feet")
  40353. },
  40354. {
  40355. name: "Sol-Swallowing",
  40356. height: math.unit(1e11, "feet")
  40357. },
  40358. {
  40359. name: "Light Universal",
  40360. height: math.unit(5, "universes")
  40361. },
  40362. {
  40363. name: "Universe Atoms",
  40364. height: math.unit(1.829e9, "universes")
  40365. },
  40366. {
  40367. name: "Light Multiversal",
  40368. height: math.unit(5, "multiverses")
  40369. },
  40370. {
  40371. name: "Multiverse Atoms",
  40372. height: math.unit(1.829e9, "multiverses")
  40373. },
  40374. {
  40375. name: "Fabric of Time",
  40376. height: math.unit(1e262, "multiverses")
  40377. },
  40378. ]
  40379. ))
  40380. characterMakers.push(() => makeCharacter(
  40381. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40382. {
  40383. front: {
  40384. height: math.unit(9, "feet"),
  40385. weight: math.unit(1050, "lb"),
  40386. name: "Front",
  40387. image: {
  40388. source: "./media/characters/tabitha/front.svg",
  40389. extra: 2083/1994,
  40390. bottom: 68/2151
  40391. }
  40392. },
  40393. },
  40394. [
  40395. {
  40396. name: "Baseline",
  40397. height: math.unit(9, "feet"),
  40398. default: true
  40399. },
  40400. {
  40401. name: "Giant",
  40402. height: math.unit(90, "feet")
  40403. },
  40404. {
  40405. name: "Macro",
  40406. height: math.unit(900, "feet")
  40407. },
  40408. {
  40409. name: "Megamacro",
  40410. height: math.unit(9000, "feet")
  40411. },
  40412. {
  40413. name: "City-Crushing",
  40414. height: math.unit(27000, "feet")
  40415. },
  40416. {
  40417. name: "Mountain-Mashing",
  40418. height: math.unit(90000, "feet")
  40419. },
  40420. {
  40421. name: "Nation Nemesis",
  40422. height: math.unit(9e6, "feet")
  40423. },
  40424. {
  40425. name: "Continent Cracker",
  40426. height: math.unit(27e6, "feet")
  40427. },
  40428. {
  40429. name: "Earth-Eclipsing",
  40430. height: math.unit(2.7e8, "feet")
  40431. },
  40432. {
  40433. name: "Gas Giant Gulper",
  40434. height: math.unit(2.7e9, "feet")
  40435. },
  40436. {
  40437. name: "Sol-Swallowing",
  40438. height: math.unit(9e10, "feet")
  40439. },
  40440. {
  40441. name: "Galaxy Gulper",
  40442. height: math.unit(9, "galaxies")
  40443. },
  40444. {
  40445. name: "Cosmos Churner",
  40446. height: math.unit(9, "universes")
  40447. },
  40448. ]
  40449. ))
  40450. characterMakers.push(() => makeCharacter(
  40451. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40452. {
  40453. front: {
  40454. height: math.unit(160, "cm"),
  40455. weight: math.unit(55, "kg"),
  40456. name: "Front",
  40457. image: {
  40458. source: "./media/characters/tow/front.svg",
  40459. extra: 1751/1722,
  40460. bottom: 74/1825
  40461. }
  40462. },
  40463. },
  40464. [
  40465. {
  40466. name: "Norm",
  40467. height: math.unit(160, "cm")
  40468. },
  40469. {
  40470. name: "Casual",
  40471. height: math.unit(3200, "m"),
  40472. default: true
  40473. },
  40474. {
  40475. name: "Show-Off",
  40476. height: math.unit(160, "km")
  40477. },
  40478. ]
  40479. ))
  40480. characterMakers.push(() => makeCharacter(
  40481. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40482. {
  40483. front: {
  40484. height: math.unit(7 + 11/12, "feet"),
  40485. weight: math.unit(342.8, "lb"),
  40486. name: "Front",
  40487. image: {
  40488. source: "./media/characters/vivian-orca-dragon/front.svg",
  40489. extra: 1890/1865,
  40490. bottom: 28/1918
  40491. }
  40492. },
  40493. },
  40494. [
  40495. {
  40496. name: "Micro",
  40497. height: math.unit(5, "inches")
  40498. },
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(7 + 11/12, "feet"),
  40502. default: true
  40503. },
  40504. {
  40505. name: "Macro",
  40506. height: math.unit(395 + 7/12, "feet")
  40507. },
  40508. ]
  40509. ))
  40510. characterMakers.push(() => makeCharacter(
  40511. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40512. {
  40513. side: {
  40514. height: math.unit(10, "feet"),
  40515. weight: math.unit(1442, "lb"),
  40516. name: "Side",
  40517. image: {
  40518. source: "./media/characters/lotherakon/side.svg",
  40519. extra: 1604/1497,
  40520. bottom: 89/1693
  40521. }
  40522. },
  40523. },
  40524. [
  40525. {
  40526. name: "Mortal Interaction",
  40527. height: math.unit(10, "feet")
  40528. },
  40529. {
  40530. name: "Large",
  40531. height: math.unit(30, "feet"),
  40532. default: true
  40533. },
  40534. {
  40535. name: "Giant",
  40536. height: math.unit(100, "feet")
  40537. },
  40538. {
  40539. name: "Kaiju",
  40540. height: math.unit(300, "feet")
  40541. },
  40542. {
  40543. name: "Macro",
  40544. height: math.unit(1000, "feet")
  40545. },
  40546. {
  40547. name: "Macro+",
  40548. height: math.unit(3000, "feet")
  40549. },
  40550. {
  40551. name: "Megamacro",
  40552. height: math.unit(10000, "feet")
  40553. },
  40554. {
  40555. name: "City-Crushing",
  40556. height: math.unit(30000, "feet")
  40557. },
  40558. {
  40559. name: "Continent Cracker",
  40560. height: math.unit(30e6, "feet")
  40561. },
  40562. {
  40563. name: "Earth Eclipsing",
  40564. height: math.unit(3e8, "feet")
  40565. },
  40566. {
  40567. name: "Gas Giant Gulper",
  40568. height: math.unit(3e9, "feet")
  40569. },
  40570. {
  40571. name: "Sol-Swallowing",
  40572. height: math.unit(1e11, "feet")
  40573. },
  40574. {
  40575. name: "System Swallower",
  40576. height: math.unit(3e14, "feet")
  40577. },
  40578. {
  40579. name: "Galaxy Gulper",
  40580. height: math.unit(10, "galaxies")
  40581. },
  40582. {
  40583. name: "Light Universal",
  40584. height: math.unit(5, "universes")
  40585. },
  40586. {
  40587. name: "Universe Palm",
  40588. height: math.unit(20, "universes")
  40589. },
  40590. {
  40591. name: "Light Multiversal",
  40592. height: math.unit(5, "multiverses")
  40593. },
  40594. {
  40595. name: "Multiverse Palm",
  40596. height: math.unit(20, "multiverses")
  40597. },
  40598. {
  40599. name: "Inferno Incarnate",
  40600. height: math.unit(1e7, "multiverses")
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40606. {
  40607. front: {
  40608. height: math.unit(8, "feet"),
  40609. weight: math.unit(1200, "lb"),
  40610. name: "Front",
  40611. image: {
  40612. source: "./media/characters/malithee/front.svg",
  40613. extra: 1675/1640,
  40614. bottom: 162/1837
  40615. }
  40616. },
  40617. },
  40618. [
  40619. {
  40620. name: "Mortal Interaction",
  40621. height: math.unit(8, "feet"),
  40622. default: true
  40623. },
  40624. {
  40625. name: "Large",
  40626. height: math.unit(24, "feet")
  40627. },
  40628. {
  40629. name: "Kaiju",
  40630. height: math.unit(240, "feet")
  40631. },
  40632. {
  40633. name: "Megamacro",
  40634. height: math.unit(8000, "feet")
  40635. },
  40636. {
  40637. name: "Continent Cracker",
  40638. height: math.unit(24e6, "feet")
  40639. },
  40640. {
  40641. name: "Earth-Eclipsing",
  40642. height: math.unit(2.4e8, "feet")
  40643. },
  40644. {
  40645. name: "Sol-Swallowing",
  40646. height: math.unit(8e10, "feet")
  40647. },
  40648. {
  40649. name: "Galaxy Gulper",
  40650. height: math.unit(8, "galaxies")
  40651. },
  40652. {
  40653. name: "Light Universal",
  40654. height: math.unit(4, "universes")
  40655. },
  40656. {
  40657. name: "Universe Atoms",
  40658. height: math.unit(1.829e9, "universes")
  40659. },
  40660. {
  40661. name: "Light Multiversal",
  40662. height: math.unit(4, "multiverses")
  40663. },
  40664. {
  40665. name: "Multiverse Atoms",
  40666. height: math.unit(1.829e9, "multiverses")
  40667. },
  40668. {
  40669. name: "Nigh-Omnipresence",
  40670. height: math.unit(8e261, "multiverses")
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40676. {
  40677. front: {
  40678. height: math.unit(10, "feet"),
  40679. weight: math.unit(1500, "lb"),
  40680. name: "Front",
  40681. image: {
  40682. source: "./media/characters/miles-thestia/front.svg",
  40683. extra: 1812/1727,
  40684. bottom: 86/1898
  40685. }
  40686. },
  40687. back: {
  40688. height: math.unit(10, "feet"),
  40689. weight: math.unit(1500, "lb"),
  40690. name: "Back",
  40691. image: {
  40692. source: "./media/characters/miles-thestia/back.svg",
  40693. extra: 1799/1690,
  40694. bottom: 47/1846
  40695. }
  40696. },
  40697. frontNsfw: {
  40698. height: math.unit(10, "feet"),
  40699. weight: math.unit(1500, "lb"),
  40700. name: "Front (NSFW)",
  40701. image: {
  40702. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40703. extra: 1812/1727,
  40704. bottom: 86/1898
  40705. }
  40706. },
  40707. },
  40708. [
  40709. {
  40710. name: "Mini-Macro",
  40711. height: math.unit(10, "feet"),
  40712. default: true
  40713. },
  40714. ]
  40715. ))
  40716. characterMakers.push(() => makeCharacter(
  40717. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40718. {
  40719. front: {
  40720. height: math.unit(25, "feet"),
  40721. name: "Front",
  40722. image: {
  40723. source: "./media/characters/titan-s-wulf/front.svg",
  40724. extra: 1560/1484,
  40725. bottom: 76/1636
  40726. }
  40727. },
  40728. },
  40729. [
  40730. {
  40731. name: "Smallest",
  40732. height: math.unit(25, "feet"),
  40733. default: true
  40734. },
  40735. {
  40736. name: "Normal",
  40737. height: math.unit(200, "feet")
  40738. },
  40739. {
  40740. name: "Macro",
  40741. height: math.unit(200000, "feet")
  40742. },
  40743. {
  40744. name: "Multiversal Original",
  40745. height: math.unit(10000, "multiverses")
  40746. },
  40747. ]
  40748. ))
  40749. characterMakers.push(() => makeCharacter(
  40750. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40751. {
  40752. front: {
  40753. height: math.unit(8, "feet"),
  40754. weight: math.unit(553, "lb"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/tawendeh/front.svg",
  40758. extra: 2365/2268,
  40759. bottom: 83/2448
  40760. }
  40761. },
  40762. frontClothed: {
  40763. height: math.unit(8, "feet"),
  40764. weight: math.unit(553, "lb"),
  40765. name: "Front (Clothed)",
  40766. image: {
  40767. source: "./media/characters/tawendeh/front-clothed.svg",
  40768. extra: 2365/2268,
  40769. bottom: 83/2448
  40770. }
  40771. },
  40772. back: {
  40773. height: math.unit(8, "feet"),
  40774. weight: math.unit(553, "lb"),
  40775. name: "Back",
  40776. image: {
  40777. source: "./media/characters/tawendeh/back.svg",
  40778. extra: 2397/2294,
  40779. bottom: 42/2439
  40780. }
  40781. },
  40782. },
  40783. [
  40784. {
  40785. name: "Mortal Interaction",
  40786. height: math.unit(8, "feet"),
  40787. default: true
  40788. },
  40789. {
  40790. name: "Giant",
  40791. height: math.unit(80, "feet")
  40792. },
  40793. {
  40794. name: "Macro",
  40795. height: math.unit(800, "feet")
  40796. },
  40797. {
  40798. name: "Megamacro",
  40799. height: math.unit(8000, "feet")
  40800. },
  40801. {
  40802. name: "City-Crushing",
  40803. height: math.unit(24000, "feet")
  40804. },
  40805. {
  40806. name: "Mountain-Mashing",
  40807. height: math.unit(80000, "feet")
  40808. },
  40809. {
  40810. name: "Nation Nemesis",
  40811. height: math.unit(8e6, "feet")
  40812. },
  40813. {
  40814. name: "Continent Cracker",
  40815. height: math.unit(24e6, "feet")
  40816. },
  40817. {
  40818. name: "Earth-Eclipsing",
  40819. height: math.unit(2.4e8, "feet")
  40820. },
  40821. {
  40822. name: "Gas Giant Gulper",
  40823. height: math.unit(2.4e9, "feet")
  40824. },
  40825. {
  40826. name: "Sol-Swallowing",
  40827. height: math.unit(8e10, "feet")
  40828. },
  40829. {
  40830. name: "Galaxy Gulper",
  40831. height: math.unit(8, "galaxies")
  40832. },
  40833. {
  40834. name: "Cosmos Churner",
  40835. height: math.unit(8, "universes")
  40836. },
  40837. {
  40838. name: "Omnipotent Otter",
  40839. height: math.unit(80, "universes")
  40840. },
  40841. ]
  40842. ))
  40843. characterMakers.push(() => makeCharacter(
  40844. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40845. {
  40846. front: {
  40847. height: math.unit(2.6, "meters"),
  40848. weight: math.unit(900, "kg"),
  40849. name: "Front",
  40850. image: {
  40851. source: "./media/characters/neesha/front.svg",
  40852. extra: 1803/1653,
  40853. bottom: 128/1931
  40854. }
  40855. },
  40856. },
  40857. [
  40858. {
  40859. name: "Normal",
  40860. height: math.unit(2.6, "meters"),
  40861. default: true
  40862. },
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(50, "meters")
  40866. },
  40867. ]
  40868. ))
  40869. characterMakers.push(() => makeCharacter(
  40870. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40871. {
  40872. front: {
  40873. height: math.unit(5, "feet"),
  40874. weight: math.unit(185, "lb"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/kyera/front.svg",
  40878. extra: 1875/1790,
  40879. bottom: 96/1971
  40880. }
  40881. },
  40882. },
  40883. [
  40884. {
  40885. name: "Normal",
  40886. height: math.unit(5, "feet"),
  40887. default: true
  40888. },
  40889. ]
  40890. ))
  40891. characterMakers.push(() => makeCharacter(
  40892. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40893. {
  40894. front: {
  40895. height: math.unit(7 + 6/12, "feet"),
  40896. weight: math.unit(540, "lb"),
  40897. name: "Front",
  40898. image: {
  40899. source: "./media/characters/yuko/front.svg",
  40900. extra: 1282/1222,
  40901. bottom: 101/1383
  40902. }
  40903. },
  40904. frontClothed: {
  40905. height: math.unit(7 + 6/12, "feet"),
  40906. weight: math.unit(540, "lb"),
  40907. name: "Front (Clothed)",
  40908. image: {
  40909. source: "./media/characters/yuko/front-clothed.svg",
  40910. extra: 1282/1222,
  40911. bottom: 101/1383
  40912. }
  40913. },
  40914. },
  40915. [
  40916. {
  40917. name: "Normal",
  40918. height: math.unit(7 + 6/12, "feet"),
  40919. default: true
  40920. },
  40921. {
  40922. name: "Macro",
  40923. height: math.unit(26 + 9/12, "feet")
  40924. },
  40925. {
  40926. name: "Megamacro",
  40927. height: math.unit(300, "feet")
  40928. },
  40929. {
  40930. name: "Gigamacro",
  40931. height: math.unit(5000, "feet")
  40932. },
  40933. {
  40934. name: "Planetary",
  40935. height: math.unit(10000, "miles")
  40936. },
  40937. ]
  40938. ))
  40939. characterMakers.push(() => makeCharacter(
  40940. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40941. {
  40942. front: {
  40943. height: math.unit(8 + 2/12, "feet"),
  40944. weight: math.unit(600, "lb"),
  40945. name: "Front",
  40946. image: {
  40947. source: "./media/characters/deam-nitrel/front.svg",
  40948. extra: 1308/1234,
  40949. bottom: 125/1433
  40950. }
  40951. },
  40952. },
  40953. [
  40954. {
  40955. name: "Normal",
  40956. height: math.unit(8 + 2/12, "feet"),
  40957. default: true
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40963. {
  40964. front: {
  40965. height: math.unit(6.1, "feet"),
  40966. weight: math.unit(180, "lb"),
  40967. name: "Front",
  40968. image: {
  40969. source: "./media/characters/skyress/front.svg",
  40970. extra: 1045/915,
  40971. bottom: 28/1073
  40972. }
  40973. },
  40974. maw: {
  40975. height: math.unit(1, "feet"),
  40976. name: "Maw",
  40977. image: {
  40978. source: "./media/characters/skyress/maw.svg"
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Normal",
  40985. height: math.unit(6.1, "feet"),
  40986. default: true
  40987. },
  40988. {
  40989. name: "Macro",
  40990. height: math.unit(200, "feet")
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(4 + 2/12, "feet"),
  40999. weight: math.unit(40, "kg"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/amethyst-jones/front.svg",
  41003. extra: 1220/1150,
  41004. bottom: 101/1321
  41005. }
  41006. },
  41007. },
  41008. [
  41009. {
  41010. name: "Normal",
  41011. height: math.unit(4 + 2/12, "feet"),
  41012. default: true
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(1.7, "m"),
  41021. weight: math.unit(135, "lb"),
  41022. name: "Front",
  41023. image: {
  41024. source: "./media/characters/jade/front.svg",
  41025. extra: 1818/1767,
  41026. bottom: 32/1850
  41027. }
  41028. },
  41029. back: {
  41030. height: math.unit(1.7, "m"),
  41031. weight: math.unit(135, "lb"),
  41032. name: "Back",
  41033. image: {
  41034. source: "./media/characters/jade/back.svg",
  41035. extra: 1869/1809,
  41036. bottom: 35/1904
  41037. }
  41038. },
  41039. hand: {
  41040. height: math.unit(0.24, "m"),
  41041. name: "Hand",
  41042. image: {
  41043. source: "./media/characters/jade/hand.svg"
  41044. }
  41045. },
  41046. foot: {
  41047. height: math.unit(0.263, "m"),
  41048. name: "Foot",
  41049. image: {
  41050. source: "./media/characters/jade/foot.svg"
  41051. }
  41052. },
  41053. dick: {
  41054. height: math.unit(0.47, "m"),
  41055. name: "Dick",
  41056. image: {
  41057. source: "./media/characters/jade/dick.svg"
  41058. }
  41059. },
  41060. },
  41061. [
  41062. {
  41063. name: "Micro",
  41064. height: math.unit(22, "cm")
  41065. },
  41066. {
  41067. name: "Normal",
  41068. height: math.unit(1.7, "m"),
  41069. default: true
  41070. },
  41071. {
  41072. name: "Macro",
  41073. height: math.unit(152, "m")
  41074. },
  41075. ]
  41076. ))
  41077. characterMakers.push(() => makeCharacter(
  41078. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41079. {
  41080. front: {
  41081. height: math.unit(100, "miles"),
  41082. weight: math.unit(20000, "tons"),
  41083. name: "Front",
  41084. image: {
  41085. source: "./media/characters/cookie/front.svg",
  41086. extra: 1125/1070,
  41087. bottom: 30/1155
  41088. }
  41089. },
  41090. },
  41091. [
  41092. {
  41093. name: "Big",
  41094. height: math.unit(50, "feet")
  41095. },
  41096. {
  41097. name: "Macro",
  41098. height: math.unit(100, "miles"),
  41099. default: true
  41100. },
  41101. {
  41102. name: "Megamacro",
  41103. height: math.unit(90000, "miles")
  41104. },
  41105. ]
  41106. ))
  41107. characterMakers.push(() => makeCharacter(
  41108. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41109. {
  41110. front: {
  41111. height: math.unit(6, "feet"),
  41112. weight: math.unit(145, "lb"),
  41113. name: "Front",
  41114. image: {
  41115. source: "./media/characters/farzian/front.svg",
  41116. extra: 1902/1693,
  41117. bottom: 108/2010
  41118. }
  41119. },
  41120. },
  41121. [
  41122. {
  41123. name: "Macro",
  41124. height: math.unit(500, "feet"),
  41125. default: true
  41126. },
  41127. ]
  41128. ))
  41129. characterMakers.push(() => makeCharacter(
  41130. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41131. {
  41132. front: {
  41133. height: math.unit(3 + 6/12, "feet"),
  41134. weight: math.unit(50, "lb"),
  41135. name: "Front",
  41136. image: {
  41137. source: "./media/characters/kimberly-tilson/front.svg",
  41138. extra: 1400/1322,
  41139. bottom: 36/1436
  41140. }
  41141. },
  41142. back: {
  41143. height: math.unit(3 + 6/12, "feet"),
  41144. weight: math.unit(50, "lb"),
  41145. name: "Back",
  41146. image: {
  41147. source: "./media/characters/kimberly-tilson/back.svg",
  41148. extra: 1370/1307,
  41149. bottom: 20/1390
  41150. }
  41151. },
  41152. },
  41153. [
  41154. {
  41155. name: "Normal",
  41156. height: math.unit(3 + 6/12, "feet"),
  41157. default: true
  41158. },
  41159. ]
  41160. ))
  41161. characterMakers.push(() => makeCharacter(
  41162. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41163. {
  41164. front: {
  41165. height: math.unit(1148, "feet"),
  41166. weight: math.unit(34057, "lb"),
  41167. name: "Front",
  41168. image: {
  41169. source: "./media/characters/harthos/front.svg",
  41170. extra: 1391/1339,
  41171. bottom: 13/1404
  41172. }
  41173. },
  41174. },
  41175. [
  41176. {
  41177. name: "Macro",
  41178. height: math.unit(1148, "feet"),
  41179. default: true
  41180. },
  41181. ]
  41182. ))
  41183. characterMakers.push(() => makeCharacter(
  41184. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41185. {
  41186. front: {
  41187. height: math.unit(15, "feet"),
  41188. name: "Front",
  41189. image: {
  41190. source: "./media/characters/hypatia/front.svg",
  41191. extra: 1653/1591,
  41192. bottom: 79/1732
  41193. }
  41194. },
  41195. },
  41196. [
  41197. {
  41198. name: "Normal",
  41199. height: math.unit(15, "feet")
  41200. },
  41201. {
  41202. name: "Small",
  41203. height: math.unit(300, "feet")
  41204. },
  41205. {
  41206. name: "Macro",
  41207. height: math.unit(2500, "feet"),
  41208. default: true
  41209. },
  41210. {
  41211. name: "Mega Macro",
  41212. height: math.unit(1500, "miles")
  41213. },
  41214. {
  41215. name: "Giga Macro",
  41216. height: math.unit(1.5e6, "miles")
  41217. },
  41218. ]
  41219. ))
  41220. characterMakers.push(() => makeCharacter(
  41221. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41222. {
  41223. front: {
  41224. height: math.unit(6, "feet"),
  41225. weight: math.unit(200, "lb"),
  41226. name: "Front",
  41227. image: {
  41228. source: "./media/characters/wulver/front.svg",
  41229. extra: 1724/1632,
  41230. bottom: 130/1854
  41231. }
  41232. },
  41233. frontNsfw: {
  41234. height: math.unit(6, "feet"),
  41235. weight: math.unit(200, "lb"),
  41236. name: "Front (NSFW)",
  41237. image: {
  41238. source: "./media/characters/wulver/front-nsfw.svg",
  41239. extra: 1724/1632,
  41240. bottom: 130/1854
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Human-Sized",
  41247. height: math.unit(6, "feet")
  41248. },
  41249. {
  41250. name: "Normal",
  41251. height: math.unit(4, "meters"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Large",
  41256. height: math.unit(6, "m")
  41257. },
  41258. ]
  41259. ))
  41260. characterMakers.push(() => makeCharacter(
  41261. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41262. {
  41263. front: {
  41264. height: math.unit(7, "feet"),
  41265. name: "Front",
  41266. image: {
  41267. source: "./media/characters/maru/front.svg",
  41268. extra: 1595/1570,
  41269. bottom: 0/1595
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Normal",
  41276. height: math.unit(7, "feet"),
  41277. default: true
  41278. },
  41279. {
  41280. name: "Macro",
  41281. height: math.unit(700, "feet")
  41282. },
  41283. {
  41284. name: "Mega Macro",
  41285. height: math.unit(25, "miles")
  41286. },
  41287. ]
  41288. ))
  41289. characterMakers.push(() => makeCharacter(
  41290. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41291. {
  41292. front: {
  41293. height: math.unit(6, "feet"),
  41294. weight: math.unit(170, "lb"),
  41295. name: "Front",
  41296. image: {
  41297. source: "./media/characters/xenon/front.svg",
  41298. extra: 1376/1305,
  41299. bottom: 56/1432
  41300. }
  41301. },
  41302. back: {
  41303. height: math.unit(6, "feet"),
  41304. weight: math.unit(170, "lb"),
  41305. name: "Back",
  41306. image: {
  41307. source: "./media/characters/xenon/back.svg",
  41308. extra: 1328/1259,
  41309. bottom: 95/1423
  41310. }
  41311. },
  41312. maw: {
  41313. height: math.unit(0.52, "feet"),
  41314. name: "Maw",
  41315. image: {
  41316. source: "./media/characters/xenon/maw.svg"
  41317. }
  41318. },
  41319. hand: {
  41320. height: math.unit(0.82, "feet"),
  41321. name: "Hand",
  41322. image: {
  41323. source: "./media/characters/xenon/hand.svg"
  41324. }
  41325. },
  41326. foot: {
  41327. height: math.unit(1.13, "feet"),
  41328. name: "Foot",
  41329. image: {
  41330. source: "./media/characters/xenon/foot.svg"
  41331. }
  41332. },
  41333. },
  41334. [
  41335. {
  41336. name: "Micro",
  41337. height: math.unit(0.8, "inches")
  41338. },
  41339. {
  41340. name: "Normal",
  41341. height: math.unit(6, "feet")
  41342. },
  41343. {
  41344. name: "Macro",
  41345. height: math.unit(50, "feet"),
  41346. default: true
  41347. },
  41348. {
  41349. name: "Macro+",
  41350. height: math.unit(250, "feet")
  41351. },
  41352. {
  41353. name: "Megamacro",
  41354. height: math.unit(1500, "feet")
  41355. },
  41356. ]
  41357. ))
  41358. characterMakers.push(() => makeCharacter(
  41359. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41360. {
  41361. front: {
  41362. height: math.unit(7 + 5/12, "feet"),
  41363. name: "Front",
  41364. image: {
  41365. source: "./media/characters/zane/front.svg",
  41366. extra: 1260/1203,
  41367. bottom: 94/1354
  41368. }
  41369. },
  41370. back: {
  41371. height: math.unit(5.05, "feet"),
  41372. name: "Back",
  41373. image: {
  41374. source: "./media/characters/zane/back.svg",
  41375. extra: 893/829,
  41376. bottom: 30/923
  41377. }
  41378. },
  41379. werewolf: {
  41380. height: math.unit(11, "feet"),
  41381. name: "Werewolf",
  41382. image: {
  41383. source: "./media/characters/zane/werewolf.svg",
  41384. extra: 1383/1323,
  41385. bottom: 89/1472
  41386. }
  41387. },
  41388. foot: {
  41389. height: math.unit(1.46, "feet"),
  41390. name: "Foot",
  41391. image: {
  41392. source: "./media/characters/zane/foot.svg"
  41393. }
  41394. },
  41395. footFront: {
  41396. height: math.unit(0.784, "feet"),
  41397. name: "Foot (Front)",
  41398. image: {
  41399. source: "./media/characters/zane/foot-front.svg"
  41400. }
  41401. },
  41402. dick: {
  41403. height: math.unit(1.95, "feet"),
  41404. name: "Dick",
  41405. image: {
  41406. source: "./media/characters/zane/dick.svg"
  41407. }
  41408. },
  41409. dickWerewolf: {
  41410. height: math.unit(3.77, "feet"),
  41411. name: "Dick (Werewolf)",
  41412. image: {
  41413. source: "./media/characters/zane/dick.svg"
  41414. }
  41415. },
  41416. },
  41417. [
  41418. {
  41419. name: "Normal",
  41420. height: math.unit(7 + 5/12, "feet"),
  41421. default: true
  41422. },
  41423. ]
  41424. ))
  41425. characterMakers.push(() => makeCharacter(
  41426. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41427. {
  41428. front: {
  41429. height: math.unit(6 + 2/12, "feet"),
  41430. weight: math.unit(284, "lb"),
  41431. name: "Front",
  41432. image: {
  41433. source: "./media/characters/benni-desparque/front.svg",
  41434. extra: 1353/1126,
  41435. bottom: 69/1422
  41436. }
  41437. },
  41438. },
  41439. [
  41440. {
  41441. name: "Civilian",
  41442. height: math.unit(6 + 2/12, "feet")
  41443. },
  41444. {
  41445. name: "Normal",
  41446. height: math.unit(98, "feet"),
  41447. default: true
  41448. },
  41449. {
  41450. name: "Kaiju Fighter",
  41451. height: math.unit(268, "feet")
  41452. },
  41453. ]
  41454. ))
  41455. characterMakers.push(() => makeCharacter(
  41456. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41457. {
  41458. front: {
  41459. height: math.unit(5, "feet"),
  41460. weight: math.unit(105, "lb"),
  41461. name: "Front",
  41462. image: {
  41463. source: "./media/characters/maxine/front.svg",
  41464. extra: 1386/1250,
  41465. bottom: 71/1457
  41466. }
  41467. },
  41468. },
  41469. [
  41470. {
  41471. name: "Normal",
  41472. height: math.unit(5, "feet"),
  41473. default: true
  41474. },
  41475. ]
  41476. ))
  41477. characterMakers.push(() => makeCharacter(
  41478. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41479. {
  41480. front: {
  41481. height: math.unit(11 + 7/12, "feet"),
  41482. weight: math.unit(9576, "lb"),
  41483. name: "Front",
  41484. image: {
  41485. source: "./media/characters/scaly/front.svg",
  41486. extra: 888/867,
  41487. bottom: 36/924
  41488. }
  41489. },
  41490. },
  41491. [
  41492. {
  41493. name: "Normal",
  41494. height: math.unit(11 + 7/12, "feet"),
  41495. default: true
  41496. },
  41497. ]
  41498. ))
  41499. characterMakers.push(() => makeCharacter(
  41500. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41501. {
  41502. front: {
  41503. height: math.unit(6 + 3/12, "feet"),
  41504. name: "Front",
  41505. image: {
  41506. source: "./media/characters/saelria/front.svg",
  41507. extra: 1243/1138,
  41508. bottom: 46/1289
  41509. }
  41510. },
  41511. },
  41512. [
  41513. {
  41514. name: "Micro",
  41515. height: math.unit(6, "inches"),
  41516. },
  41517. {
  41518. name: "Normal",
  41519. height: math.unit(6 + 3/12, "feet"),
  41520. default: true
  41521. },
  41522. {
  41523. name: "Macro",
  41524. height: math.unit(25, "feet")
  41525. },
  41526. ]
  41527. ))
  41528. characterMakers.push(() => makeCharacter(
  41529. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41530. {
  41531. front: {
  41532. height: math.unit(80, "meters"),
  41533. weight: math.unit(7000, "tonnes"),
  41534. name: "Front",
  41535. image: {
  41536. source: "./media/characters/tef/front.svg",
  41537. extra: 2036/1991,
  41538. bottom: 54/2090
  41539. }
  41540. },
  41541. back: {
  41542. height: math.unit(80, "meters"),
  41543. weight: math.unit(7000, "tonnes"),
  41544. name: "Back",
  41545. image: {
  41546. source: "./media/characters/tef/back.svg",
  41547. extra: 2036/1991,
  41548. bottom: 54/2090
  41549. }
  41550. },
  41551. },
  41552. [
  41553. {
  41554. name: "Macro",
  41555. height: math.unit(80, "meters"),
  41556. default: true
  41557. },
  41558. ]
  41559. ))
  41560. characterMakers.push(() => makeCharacter(
  41561. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41562. {
  41563. front: {
  41564. height: math.unit(13, "feet"),
  41565. weight: math.unit(6, "tons"),
  41566. name: "Front",
  41567. image: {
  41568. source: "./media/characters/rover/front.svg",
  41569. extra: 1233/1156,
  41570. bottom: 50/1283
  41571. }
  41572. },
  41573. back: {
  41574. height: math.unit(13, "feet"),
  41575. weight: math.unit(6, "tons"),
  41576. name: "Back",
  41577. image: {
  41578. source: "./media/characters/rover/back.svg",
  41579. extra: 1327/1258,
  41580. bottom: 39/1366
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(13, "feet"),
  41588. default: true
  41589. },
  41590. {
  41591. name: "Macro",
  41592. height: math.unit(1300, "feet")
  41593. },
  41594. {
  41595. name: "Megamacro",
  41596. height: math.unit(1300, "miles")
  41597. },
  41598. {
  41599. name: "Gigamacro",
  41600. height: math.unit(1300000, "miles")
  41601. },
  41602. ]
  41603. ))
  41604. characterMakers.push(() => makeCharacter(
  41605. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41606. {
  41607. front: {
  41608. height: math.unit(6, "feet"),
  41609. weight: math.unit(150, "lb"),
  41610. name: "Front",
  41611. image: {
  41612. source: "./media/characters/ariz/front.svg",
  41613. extra: 1401/1346,
  41614. bottom: 5/1406
  41615. }
  41616. },
  41617. },
  41618. [
  41619. {
  41620. name: "Normal",
  41621. height: math.unit(10, "feet"),
  41622. default: true
  41623. },
  41624. ]
  41625. ))
  41626. characterMakers.push(() => makeCharacter(
  41627. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41628. {
  41629. front: {
  41630. height: math.unit(6, "feet"),
  41631. weight: math.unit(140, "lb"),
  41632. name: "Front",
  41633. image: {
  41634. source: "./media/characters/sigrun/front.svg",
  41635. extra: 1418/1359,
  41636. bottom: 27/1445
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Macro",
  41643. height: math.unit(35, "feet"),
  41644. default: true
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41650. {
  41651. front: {
  41652. height: math.unit(6, "feet"),
  41653. weight: math.unit(150, "lb"),
  41654. name: "Front",
  41655. image: {
  41656. source: "./media/characters/numin/front.svg",
  41657. extra: 1433/1388,
  41658. bottom: 12/1445
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Macro",
  41665. height: math.unit(21.5, "km"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41672. {
  41673. front: {
  41674. height: math.unit(6, "feet"),
  41675. weight: math.unit(463, "lb"),
  41676. name: "Front",
  41677. image: {
  41678. source: "./media/characters/melwa/front.svg",
  41679. extra: 1307/1248,
  41680. bottom: 93/1400
  41681. }
  41682. },
  41683. },
  41684. [
  41685. {
  41686. name: "Macro",
  41687. height: math.unit(50, "meters"),
  41688. default: true
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41694. {
  41695. front: {
  41696. height: math.unit(325, "feet"),
  41697. name: "Front",
  41698. image: {
  41699. source: "./media/characters/zorkaiju/front.svg",
  41700. extra: 1955/1814,
  41701. bottom: 40/1995
  41702. }
  41703. },
  41704. frontExtended: {
  41705. height: math.unit(325, "feet"),
  41706. name: "Front (Extended)",
  41707. image: {
  41708. source: "./media/characters/zorkaiju/front-extended.svg",
  41709. extra: 1955/1814,
  41710. bottom: 40/1995
  41711. }
  41712. },
  41713. side: {
  41714. height: math.unit(325, "feet"),
  41715. name: "Side",
  41716. image: {
  41717. source: "./media/characters/zorkaiju/side.svg",
  41718. extra: 1495/1396,
  41719. bottom: 17/1512
  41720. }
  41721. },
  41722. sideExtended: {
  41723. height: math.unit(325, "feet"),
  41724. name: "Side (Extended)",
  41725. image: {
  41726. source: "./media/characters/zorkaiju/side-extended.svg",
  41727. extra: 1495/1396,
  41728. bottom: 17/1512
  41729. }
  41730. },
  41731. back: {
  41732. height: math.unit(325, "feet"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/zorkaiju/back.svg",
  41736. extra: 1959/1821,
  41737. bottom: 31/1990
  41738. }
  41739. },
  41740. backExtended: {
  41741. height: math.unit(325, "feet"),
  41742. name: "Back (Extended)",
  41743. image: {
  41744. source: "./media/characters/zorkaiju/back-extended.svg",
  41745. extra: 1959/1821,
  41746. bottom: 31/1990
  41747. }
  41748. },
  41749. hand: {
  41750. height: math.unit(58.4, "feet"),
  41751. name: "Hand",
  41752. image: {
  41753. source: "./media/characters/zorkaiju/hand.svg"
  41754. }
  41755. },
  41756. handExtended: {
  41757. height: math.unit(61.4, "feet"),
  41758. name: "Hand (Extended)",
  41759. image: {
  41760. source: "./media/characters/zorkaiju/hand-extended.svg"
  41761. }
  41762. },
  41763. foot: {
  41764. height: math.unit(95, "feet"),
  41765. name: "Foot",
  41766. image: {
  41767. source: "./media/characters/zorkaiju/foot.svg"
  41768. }
  41769. },
  41770. leftArm: {
  41771. height: math.unit(59, "feet"),
  41772. name: "Left Arm",
  41773. image: {
  41774. source: "./media/characters/zorkaiju/left-arm.svg"
  41775. }
  41776. },
  41777. rightArm: {
  41778. height: math.unit(59, "feet"),
  41779. name: "Right Arm",
  41780. image: {
  41781. source: "./media/characters/zorkaiju/right-arm.svg"
  41782. }
  41783. },
  41784. leftArmExtended: {
  41785. height: math.unit(59 * 1.033546, "feet"),
  41786. name: "Left Arm (Extended)",
  41787. image: {
  41788. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41789. }
  41790. },
  41791. rightArmExtended: {
  41792. height: math.unit(59 * 1.0496, "feet"),
  41793. name: "Right Arm (Extended)",
  41794. image: {
  41795. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41796. }
  41797. },
  41798. tail: {
  41799. height: math.unit(104, "feet"),
  41800. name: "Tail",
  41801. image: {
  41802. source: "./media/characters/zorkaiju/tail.svg"
  41803. }
  41804. },
  41805. tailExtended: {
  41806. height: math.unit(104, "feet"),
  41807. name: "Tail (Extended)",
  41808. image: {
  41809. source: "./media/characters/zorkaiju/tail-extended.svg"
  41810. }
  41811. },
  41812. tailBottom: {
  41813. height: math.unit(104, "feet"),
  41814. name: "Tail Bottom",
  41815. image: {
  41816. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41817. }
  41818. },
  41819. crystal: {
  41820. height: math.unit(27.54, "feet"),
  41821. name: "Crystal",
  41822. image: {
  41823. source: "./media/characters/zorkaiju/crystal.svg"
  41824. }
  41825. },
  41826. },
  41827. [
  41828. {
  41829. name: "Kaiju",
  41830. height: math.unit(325, "feet"),
  41831. default: true
  41832. },
  41833. ]
  41834. ))
  41835. characterMakers.push(() => makeCharacter(
  41836. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41837. {
  41838. front: {
  41839. height: math.unit(6 + 1/12, "feet"),
  41840. weight: math.unit(115, "lb"),
  41841. name: "Front",
  41842. image: {
  41843. source: "./media/characters/bailey-belfry/front.svg",
  41844. extra: 1240/1121,
  41845. bottom: 101/1341
  41846. }
  41847. },
  41848. },
  41849. [
  41850. {
  41851. name: "Normal",
  41852. height: math.unit(6 + 1/12, "feet"),
  41853. default: true
  41854. },
  41855. ]
  41856. ))
  41857. characterMakers.push(() => makeCharacter(
  41858. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41859. {
  41860. side: {
  41861. height: math.unit(4, "meters"),
  41862. weight: math.unit(250, "kg"),
  41863. name: "Side",
  41864. image: {
  41865. source: "./media/characters/blacky/side.svg",
  41866. extra: 1027/919,
  41867. bottom: 43/1070
  41868. }
  41869. },
  41870. maw: {
  41871. height: math.unit(1, "meters"),
  41872. name: "Maw",
  41873. image: {
  41874. source: "./media/characters/blacky/maw.svg"
  41875. }
  41876. },
  41877. paw: {
  41878. height: math.unit(1, "meters"),
  41879. name: "Paw",
  41880. image: {
  41881. source: "./media/characters/blacky/paw.svg"
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(4, "meters"),
  41889. default: true
  41890. },
  41891. ]
  41892. ))
  41893. characterMakers.push(() => makeCharacter(
  41894. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41895. {
  41896. front: {
  41897. height: math.unit(170, "cm"),
  41898. weight: math.unit(66, "kg"),
  41899. name: "Front",
  41900. image: {
  41901. source: "./media/characters/thux-ei/front.svg",
  41902. extra: 1109/1011,
  41903. bottom: 8/1117
  41904. }
  41905. },
  41906. },
  41907. [
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(170, "cm"),
  41911. default: true
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(5, "feet"),
  41920. weight: math.unit(120, "lb"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/roxanne-voltaire/front.svg",
  41924. extra: 1901/1779,
  41925. bottom: 53/1954
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Normal",
  41932. height: math.unit(5, "feet"),
  41933. default: true
  41934. },
  41935. {
  41936. name: "Giant",
  41937. height: math.unit(50, "feet")
  41938. },
  41939. {
  41940. name: "Titan",
  41941. height: math.unit(500, "feet")
  41942. },
  41943. {
  41944. name: "Macro",
  41945. height: math.unit(5000, "feet")
  41946. },
  41947. {
  41948. name: "Megamacro",
  41949. height: math.unit(50000, "feet")
  41950. },
  41951. {
  41952. name: "Gigamacro",
  41953. height: math.unit(500000, "feet")
  41954. },
  41955. {
  41956. name: "Teramacro",
  41957. height: math.unit(5e6, "feet")
  41958. },
  41959. ]
  41960. ))
  41961. characterMakers.push(() => makeCharacter(
  41962. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41963. {
  41964. front: {
  41965. height: math.unit(6 + 2/12, "feet"),
  41966. name: "Front",
  41967. image: {
  41968. source: "./media/characters/squeaks/front.svg",
  41969. extra: 1823/1768,
  41970. bottom: 138/1961
  41971. }
  41972. },
  41973. },
  41974. [
  41975. {
  41976. name: "Micro",
  41977. height: math.unit(0.5, "inches")
  41978. },
  41979. {
  41980. name: "Normal",
  41981. height: math.unit(6 + 2/12, "feet"),
  41982. default: true
  41983. },
  41984. {
  41985. name: "Macro",
  41986. height: math.unit(600, "feet")
  41987. },
  41988. ]
  41989. ))
  41990. characterMakers.push(() => makeCharacter(
  41991. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41992. {
  41993. front: {
  41994. height: math.unit(1.72, "meters"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/archinger/front.svg",
  41998. extra: 1861/1675,
  41999. bottom: 125/1986
  42000. }
  42001. },
  42002. back: {
  42003. height: math.unit(1.72, "meters"),
  42004. name: "Back",
  42005. image: {
  42006. source: "./media/characters/archinger/back.svg",
  42007. extra: 1844/1701,
  42008. bottom: 104/1948
  42009. }
  42010. },
  42011. cock: {
  42012. height: math.unit(0.59, "feet"),
  42013. name: "Cock",
  42014. image: {
  42015. source: "./media/characters/archinger/cock.svg"
  42016. }
  42017. },
  42018. },
  42019. [
  42020. {
  42021. name: "Normal",
  42022. height: math.unit(1.72, "meters"),
  42023. default: true
  42024. },
  42025. {
  42026. name: "Macro",
  42027. height: math.unit(84, "meters")
  42028. },
  42029. {
  42030. name: "Macro+",
  42031. height: math.unit(112, "meters")
  42032. },
  42033. {
  42034. name: "Macro++",
  42035. height: math.unit(960, "meters")
  42036. },
  42037. {
  42038. name: "Macro+++",
  42039. height: math.unit(4, "km")
  42040. },
  42041. {
  42042. name: "Macro++++",
  42043. height: math.unit(48, "km")
  42044. },
  42045. {
  42046. name: "Macro+++++",
  42047. height: math.unit(4500, "km")
  42048. },
  42049. ]
  42050. ))
  42051. characterMakers.push(() => makeCharacter(
  42052. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42053. {
  42054. front: {
  42055. height: math.unit(5 + 5/12, "feet"),
  42056. name: "Front",
  42057. image: {
  42058. source: "./media/characters/alsnapz/front.svg",
  42059. extra: 1157/1065,
  42060. bottom: 42/1199
  42061. }
  42062. },
  42063. },
  42064. [
  42065. {
  42066. name: "Normal",
  42067. height: math.unit(5 + 5/12, "feet"),
  42068. default: true
  42069. },
  42070. ]
  42071. ))
  42072. characterMakers.push(() => makeCharacter(
  42073. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42074. {
  42075. side: {
  42076. height: math.unit(3.2, "earths"),
  42077. name: "Side",
  42078. image: {
  42079. source: "./media/characters/mag/side.svg",
  42080. extra: 1331/1008,
  42081. bottom: 52/1383
  42082. }
  42083. },
  42084. wing: {
  42085. height: math.unit(1.94, "earths"),
  42086. name: "Wing",
  42087. image: {
  42088. source: "./media/characters/mag/wing.svg"
  42089. }
  42090. },
  42091. dick: {
  42092. height: math.unit(1.8, "earths"),
  42093. name: "Dick",
  42094. image: {
  42095. source: "./media/characters/mag/dick.svg"
  42096. }
  42097. },
  42098. ass: {
  42099. height: math.unit(1.33, "earths"),
  42100. name: "Ass",
  42101. image: {
  42102. source: "./media/characters/mag/ass.svg"
  42103. }
  42104. },
  42105. head: {
  42106. height: math.unit(1.1, "earths"),
  42107. name: "Head",
  42108. image: {
  42109. source: "./media/characters/mag/head.svg"
  42110. }
  42111. },
  42112. maw: {
  42113. height: math.unit(1.62, "earths"),
  42114. name: "Maw",
  42115. image: {
  42116. source: "./media/characters/mag/maw.svg"
  42117. }
  42118. },
  42119. },
  42120. [
  42121. {
  42122. name: "Small",
  42123. height: math.unit(162, "feet")
  42124. },
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(3.2, "earths"),
  42128. default: true
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42134. {
  42135. front: {
  42136. height: math.unit(512, "feet"),
  42137. weight: math.unit(63509, "tonnes"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/vorrel-harroc/front.svg",
  42141. extra: 1075/1063,
  42142. bottom: 62/1137
  42143. }
  42144. },
  42145. },
  42146. [
  42147. {
  42148. name: "Normal",
  42149. height: math.unit(10, "feet")
  42150. },
  42151. {
  42152. name: "Macro",
  42153. height: math.unit(512, "feet"),
  42154. default: true
  42155. },
  42156. {
  42157. name: "Megamacro",
  42158. height: math.unit(256, "miles")
  42159. },
  42160. {
  42161. name: "Gigamacro",
  42162. height: math.unit(4096, "miles")
  42163. },
  42164. ]
  42165. ))
  42166. characterMakers.push(() => makeCharacter(
  42167. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42168. {
  42169. side: {
  42170. height: math.unit(50, "feet"),
  42171. name: "Side",
  42172. image: {
  42173. source: "./media/characters/froimar/side.svg",
  42174. extra: 855/638,
  42175. bottom: 99/954
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Macro",
  42182. height: math.unit(50, "feet"),
  42183. default: true
  42184. },
  42185. ]
  42186. ))
  42187. characterMakers.push(() => makeCharacter(
  42188. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42189. {
  42190. front: {
  42191. height: math.unit(210, "miles"),
  42192. name: "Front",
  42193. image: {
  42194. source: "./media/characters/timothy/front.svg",
  42195. extra: 1007/943,
  42196. bottom: 62/1069
  42197. }
  42198. },
  42199. frontSkirt: {
  42200. height: math.unit(210, "miles"),
  42201. name: "Front (Skirt)",
  42202. image: {
  42203. source: "./media/characters/timothy/front-skirt.svg",
  42204. extra: 1007/943,
  42205. bottom: 62/1069
  42206. }
  42207. },
  42208. frontCoat: {
  42209. height: math.unit(210, "miles"),
  42210. name: "Front (Coat)",
  42211. image: {
  42212. source: "./media/characters/timothy/front-coat.svg",
  42213. extra: 1007/943,
  42214. bottom: 62/1069
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Macro",
  42221. height: math.unit(210, "miles"),
  42222. default: true
  42223. },
  42224. {
  42225. name: "Megamacro",
  42226. height: math.unit(210000, "miles")
  42227. },
  42228. ]
  42229. ))
  42230. characterMakers.push(() => makeCharacter(
  42231. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42232. {
  42233. front: {
  42234. height: math.unit(188, "feet"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/pyotr/front.svg",
  42238. extra: 1912/1826,
  42239. bottom: 18/1930
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Macro",
  42246. height: math.unit(188, "feet"),
  42247. default: true
  42248. },
  42249. {
  42250. name: "Megamacro",
  42251. height: math.unit(8, "miles")
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42257. {
  42258. side: {
  42259. height: math.unit(10, "feet"),
  42260. weight: math.unit(4500, "lb"),
  42261. name: "Side",
  42262. image: {
  42263. source: "./media/characters/ackart/side.svg",
  42264. extra: 1776/1668,
  42265. bottom: 116/1892
  42266. }
  42267. },
  42268. },
  42269. [
  42270. {
  42271. name: "Normal",
  42272. height: math.unit(10, "feet"),
  42273. default: true
  42274. },
  42275. ]
  42276. ))
  42277. characterMakers.push(() => makeCharacter(
  42278. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42279. {
  42280. side: {
  42281. height: math.unit(21, "feet"),
  42282. name: "Side",
  42283. image: {
  42284. source: "./media/characters/nolow/side.svg",
  42285. extra: 1484/1434,
  42286. bottom: 85/1569
  42287. }
  42288. },
  42289. sideErect: {
  42290. height: math.unit(21, "feet"),
  42291. name: "Side-erect",
  42292. image: {
  42293. source: "./media/characters/nolow/side-erect.svg",
  42294. extra: 1484/1434,
  42295. bottom: 85/1569
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Regular",
  42302. height: math.unit(12, "feet")
  42303. },
  42304. {
  42305. name: "Big Chee",
  42306. height: math.unit(21, "feet"),
  42307. default: true
  42308. },
  42309. ]
  42310. ))
  42311. characterMakers.push(() => makeCharacter(
  42312. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42313. {
  42314. front: {
  42315. height: math.unit(7, "feet"),
  42316. weight: math.unit(250, "lb"),
  42317. name: "Front",
  42318. image: {
  42319. source: "./media/characters/nines/front.svg",
  42320. extra: 1741/1607,
  42321. bottom: 41/1782
  42322. }
  42323. },
  42324. side: {
  42325. height: math.unit(7, "feet"),
  42326. weight: math.unit(250, "lb"),
  42327. name: "Side",
  42328. image: {
  42329. source: "./media/characters/nines/side.svg",
  42330. extra: 1854/1735,
  42331. bottom: 93/1947
  42332. }
  42333. },
  42334. back: {
  42335. height: math.unit(7, "feet"),
  42336. weight: math.unit(250, "lb"),
  42337. name: "Back",
  42338. image: {
  42339. source: "./media/characters/nines/back.svg",
  42340. extra: 1748/1615,
  42341. bottom: 20/1768
  42342. }
  42343. },
  42344. },
  42345. [
  42346. {
  42347. name: "Megamacro",
  42348. height: math.unit(99, "km"),
  42349. default: true
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42355. {
  42356. front: {
  42357. height: math.unit(5 + 10/12, "feet"),
  42358. weight: math.unit(210, "lb"),
  42359. name: "Front",
  42360. image: {
  42361. source: "./media/characters/zenith/front.svg",
  42362. extra: 1531/1452,
  42363. bottom: 198/1729
  42364. }
  42365. },
  42366. back: {
  42367. height: math.unit(5 + 10/12, "feet"),
  42368. weight: math.unit(210, "lb"),
  42369. name: "Back",
  42370. image: {
  42371. source: "./media/characters/zenith/back.svg",
  42372. extra: 1571/1487,
  42373. bottom: 75/1646
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "Normal",
  42380. height: math.unit(5 + 10/12, "feet"),
  42381. default: true
  42382. }
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(4, "feet"),
  42390. weight: math.unit(60, "lb"),
  42391. name: "Front",
  42392. image: {
  42393. source: "./media/characters/jasper/front.svg",
  42394. extra: 1450/1379,
  42395. bottom: 19/1469
  42396. }
  42397. },
  42398. },
  42399. [
  42400. {
  42401. name: "Normal",
  42402. height: math.unit(4, "feet"),
  42403. default: true
  42404. },
  42405. ]
  42406. ))
  42407. characterMakers.push(() => makeCharacter(
  42408. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42409. {
  42410. front: {
  42411. height: math.unit(6 + 5/12, "feet"),
  42412. weight: math.unit(290, "lb"),
  42413. name: "Front",
  42414. image: {
  42415. source: "./media/characters/tiberius-thyben/front.svg",
  42416. extra: 757/739,
  42417. bottom: 39/796
  42418. }
  42419. },
  42420. },
  42421. [
  42422. {
  42423. name: "Micro",
  42424. height: math.unit(1.5, "inches")
  42425. },
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(6 + 5/12, "feet"),
  42429. default: true
  42430. },
  42431. {
  42432. name: "Macro",
  42433. height: math.unit(300, "feet")
  42434. },
  42435. ]
  42436. ))
  42437. characterMakers.push(() => makeCharacter(
  42438. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42439. {
  42440. front: {
  42441. height: math.unit(5 + 6/12, "feet"),
  42442. weight: math.unit(60, "kg"),
  42443. name: "Front",
  42444. image: {
  42445. source: "./media/characters/sabre/front.svg",
  42446. extra: 738/671,
  42447. bottom: 27/765
  42448. }
  42449. },
  42450. },
  42451. [
  42452. {
  42453. name: "Teeny",
  42454. height: math.unit(2, "inches")
  42455. },
  42456. {
  42457. name: "Smol",
  42458. height: math.unit(8, "inches")
  42459. },
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(5 + 6/12, "feet"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "Mini-Macro",
  42467. height: math.unit(15, "feet")
  42468. },
  42469. {
  42470. name: "Macro",
  42471. height: math.unit(50, "feet")
  42472. },
  42473. ]
  42474. ))
  42475. characterMakers.push(() => makeCharacter(
  42476. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42477. {
  42478. front: {
  42479. height: math.unit(6 + 4/12, "feet"),
  42480. weight: math.unit(170, "lb"),
  42481. name: "Front",
  42482. image: {
  42483. source: "./media/characters/charlie/front.svg",
  42484. extra: 1348/1228,
  42485. bottom: 15/1363
  42486. }
  42487. },
  42488. },
  42489. [
  42490. {
  42491. name: "Macro",
  42492. height: math.unit(1700, "meters"),
  42493. default: true
  42494. },
  42495. {
  42496. name: "MegaMacro",
  42497. height: math.unit(20400, "meters")
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42503. {
  42504. front: {
  42505. height: math.unit(6 + 3/12, "feet"),
  42506. weight: math.unit(185, "lb"),
  42507. name: "Front",
  42508. image: {
  42509. source: "./media/characters/susan-grant/front.svg",
  42510. extra: 1351/1327,
  42511. bottom: 26/1377
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(6 + 3/12, "feet"),
  42519. default: true
  42520. },
  42521. {
  42522. name: "Macro",
  42523. height: math.unit(225, "feet")
  42524. },
  42525. {
  42526. name: "Macro+",
  42527. height: math.unit(900, "feet")
  42528. },
  42529. {
  42530. name: "MegaMacro",
  42531. height: math.unit(14400, "feet")
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42537. {
  42538. front: {
  42539. height: math.unit(5 + 4/12, "feet"),
  42540. weight: math.unit(110, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/axel-isanov/front.svg",
  42544. extra: 1096/1065,
  42545. bottom: 13/1109
  42546. }
  42547. },
  42548. },
  42549. [
  42550. {
  42551. name: "Normal",
  42552. height: math.unit(5 + 4/12, "feet"),
  42553. default: true
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42559. {
  42560. front: {
  42561. height: math.unit(9, "feet"),
  42562. weight: math.unit(467, "lb"),
  42563. name: "Front",
  42564. image: {
  42565. source: "./media/characters/necahual/front.svg",
  42566. extra: 920/873,
  42567. bottom: 26/946
  42568. }
  42569. },
  42570. back: {
  42571. height: math.unit(9, "feet"),
  42572. weight: math.unit(467, "lb"),
  42573. name: "Back",
  42574. image: {
  42575. source: "./media/characters/necahual/back.svg",
  42576. extra: 930/884,
  42577. bottom: 16/946
  42578. }
  42579. },
  42580. frontUnderwear: {
  42581. height: math.unit(9, "feet"),
  42582. weight: math.unit(467, "lb"),
  42583. name: "Front (Underwear)",
  42584. image: {
  42585. source: "./media/characters/necahual/front-underwear.svg",
  42586. extra: 920/873,
  42587. bottom: 26/946
  42588. }
  42589. },
  42590. frontDressed: {
  42591. height: math.unit(9, "feet"),
  42592. weight: math.unit(467, "lb"),
  42593. name: "Front (Dressed)",
  42594. image: {
  42595. source: "./media/characters/necahual/front-dressed.svg",
  42596. extra: 920/873,
  42597. bottom: 26/946
  42598. }
  42599. },
  42600. },
  42601. [
  42602. {
  42603. name: "Comprsesed",
  42604. height: math.unit(9, "feet")
  42605. },
  42606. {
  42607. name: "Natural",
  42608. height: math.unit(15, "feet"),
  42609. default: true
  42610. },
  42611. {
  42612. name: "Boosted",
  42613. height: math.unit(50, "feet")
  42614. },
  42615. {
  42616. name: "Boosted+",
  42617. height: math.unit(150, "feet")
  42618. },
  42619. {
  42620. name: "Max",
  42621. height: math.unit(500, "feet")
  42622. },
  42623. ]
  42624. ))
  42625. characterMakers.push(() => makeCharacter(
  42626. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42627. {
  42628. front: {
  42629. height: math.unit(22 + 1/12, "feet"),
  42630. weight: math.unit(3200, "lb"),
  42631. name: "Front",
  42632. image: {
  42633. source: "./media/characters/theo-acacia/front.svg",
  42634. extra: 1796/1741,
  42635. bottom: 83/1879
  42636. }
  42637. },
  42638. frontUnderwear: {
  42639. height: math.unit(22 + 1/12, "feet"),
  42640. weight: math.unit(3200, "lb"),
  42641. name: "Front (Underwear)",
  42642. image: {
  42643. source: "./media/characters/theo-acacia/front-underwear.svg",
  42644. extra: 1796/1741,
  42645. bottom: 83/1879
  42646. }
  42647. },
  42648. frontNude: {
  42649. height: math.unit(22 + 1/12, "feet"),
  42650. weight: math.unit(3200, "lb"),
  42651. name: "Front (Nude)",
  42652. image: {
  42653. source: "./media/characters/theo-acacia/front-nude.svg",
  42654. extra: 1796/1741,
  42655. bottom: 83/1879
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(22 + 1/12, "feet"),
  42663. default: true
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42669. {
  42670. front: {
  42671. height: math.unit(20, "feet"),
  42672. name: "Front",
  42673. image: {
  42674. source: "./media/characters/astra/front.svg",
  42675. extra: 1850/1714,
  42676. bottom: 106/1956
  42677. }
  42678. },
  42679. frontUndressed: {
  42680. height: math.unit(20, "feet"),
  42681. name: "Front (Undressed)",
  42682. image: {
  42683. source: "./media/characters/astra/front-undressed.svg",
  42684. extra: 1926/1749,
  42685. bottom: 0/1926
  42686. }
  42687. },
  42688. hand: {
  42689. height: math.unit(1.53, "feet"),
  42690. name: "Hand",
  42691. image: {
  42692. source: "./media/characters/astra/hand.svg"
  42693. }
  42694. },
  42695. paw: {
  42696. height: math.unit(1.53, "feet"),
  42697. name: "Paw",
  42698. image: {
  42699. source: "./media/characters/astra/paw.svg"
  42700. }
  42701. },
  42702. },
  42703. [
  42704. {
  42705. name: "Smallest",
  42706. height: math.unit(20, "feet")
  42707. },
  42708. {
  42709. name: "Normal",
  42710. height: math.unit(1e9, "miles"),
  42711. default: true
  42712. },
  42713. {
  42714. name: "Larger",
  42715. height: math.unit(5, "multiverses")
  42716. },
  42717. {
  42718. name: "Largest",
  42719. height: math.unit(1e9, "multiverses")
  42720. },
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(8, "feet"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/breanna/front.svg",
  42731. extra: 1912/1632,
  42732. bottom: 33/1945
  42733. }
  42734. },
  42735. },
  42736. [
  42737. {
  42738. name: "Smallest",
  42739. height: math.unit(8, "feet")
  42740. },
  42741. {
  42742. name: "Normal",
  42743. height: math.unit(1, "mile"),
  42744. default: true
  42745. },
  42746. {
  42747. name: "Maximum",
  42748. height: math.unit(1500000000000, "lightyears")
  42749. },
  42750. ]
  42751. ))
  42752. characterMakers.push(() => makeCharacter(
  42753. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42754. {
  42755. front: {
  42756. height: math.unit(5 + 11/12, "feet"),
  42757. weight: math.unit(155, "lb"),
  42758. name: "Front",
  42759. image: {
  42760. source: "./media/characters/cai/front.svg",
  42761. extra: 1823/1702,
  42762. bottom: 32/1855
  42763. }
  42764. },
  42765. back: {
  42766. height: math.unit(5 + 11/12, "feet"),
  42767. weight: math.unit(155, "lb"),
  42768. name: "Back",
  42769. image: {
  42770. source: "./media/characters/cai/back.svg",
  42771. extra: 1809/1708,
  42772. bottom: 31/1840
  42773. }
  42774. },
  42775. },
  42776. [
  42777. {
  42778. name: "Normal",
  42779. height: math.unit(5 + 11/12, "feet"),
  42780. default: true
  42781. },
  42782. {
  42783. name: "Big",
  42784. height: math.unit(15, "feet")
  42785. },
  42786. {
  42787. name: "Macro",
  42788. height: math.unit(200, "feet")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(5 + 6/12, "feet"),
  42797. weight: math.unit(160, "lb"),
  42798. name: "Front",
  42799. image: {
  42800. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42801. extra: 1227/1174,
  42802. bottom: 37/1264
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Macro",
  42809. height: math.unit(444, "meters"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42816. {
  42817. front: {
  42818. height: math.unit(18 + 7/12, "feet"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/rex/front.svg",
  42822. extra: 1941/1807,
  42823. bottom: 66/2007
  42824. }
  42825. },
  42826. back: {
  42827. height: math.unit(18 + 7/12, "feet"),
  42828. name: "Back",
  42829. image: {
  42830. source: "./media/characters/rex/back.svg",
  42831. extra: 1937/1822,
  42832. bottom: 42/1979
  42833. }
  42834. },
  42835. boot: {
  42836. height: math.unit(3.45, "feet"),
  42837. name: "Boot",
  42838. image: {
  42839. source: "./media/characters/rex/boot.svg"
  42840. }
  42841. },
  42842. paw: {
  42843. height: math.unit(4.17, "feet"),
  42844. name: "Paw",
  42845. image: {
  42846. source: "./media/characters/rex/paw.svg"
  42847. }
  42848. },
  42849. head: {
  42850. height: math.unit(6.728, "feet"),
  42851. name: "Head",
  42852. image: {
  42853. source: "./media/characters/rex/head.svg"
  42854. }
  42855. },
  42856. },
  42857. [
  42858. {
  42859. name: "Nano",
  42860. height: math.unit(18 + 7/12, "feet")
  42861. },
  42862. {
  42863. name: "Micro",
  42864. height: math.unit(1.5, "megameters")
  42865. },
  42866. {
  42867. name: "Normal",
  42868. height: math.unit(440, "megameters"),
  42869. default: true
  42870. },
  42871. {
  42872. name: "Macro",
  42873. height: math.unit(2.5, "gigameters")
  42874. },
  42875. {
  42876. name: "Gigamacro",
  42877. height: math.unit(2, "galaxies")
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42883. {
  42884. side: {
  42885. height: math.unit(32, "feet"),
  42886. weight: math.unit(250000, "lb"),
  42887. name: "Side",
  42888. image: {
  42889. source: "./media/characters/silverwing/side.svg",
  42890. extra: 1100/1019,
  42891. bottom: 204/1304
  42892. }
  42893. },
  42894. },
  42895. [
  42896. {
  42897. name: "Normal",
  42898. height: math.unit(32, "feet"),
  42899. default: true
  42900. },
  42901. ]
  42902. ))
  42903. characterMakers.push(() => makeCharacter(
  42904. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42905. {
  42906. front: {
  42907. height: math.unit(6 + 6/12, "feet"),
  42908. weight: math.unit(350, "lb"),
  42909. name: "Front",
  42910. image: {
  42911. source: "./media/characters/tristan-hawthorne/front.svg",
  42912. extra: 1159/1124,
  42913. bottom: 37/1196
  42914. },
  42915. form: "labrador",
  42916. default: true
  42917. },
  42918. skunkFront: {
  42919. height: math.unit(4 + 6/12, "feet"),
  42920. weight: math.unit(120, "lb"),
  42921. name: "Front",
  42922. image: {
  42923. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42924. extra: 1609/1551,
  42925. bottom: 169/1778
  42926. },
  42927. form: "skunk",
  42928. default: true
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(6 + 6/12, "feet"),
  42935. form: "labrador",
  42936. default: true
  42937. },
  42938. {
  42939. name: "Normal",
  42940. height: math.unit(4 + 6/12, "feet"),
  42941. form: "skunk",
  42942. default: true
  42943. },
  42944. ],
  42945. {
  42946. "labrador": {
  42947. name: "Labrador",
  42948. default: true
  42949. },
  42950. "skunk": {
  42951. name: "Skunk"
  42952. }
  42953. }
  42954. ))
  42955. characterMakers.push(() => makeCharacter(
  42956. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42957. {
  42958. front: {
  42959. height: math.unit(5 + 11/12, "feet"),
  42960. weight: math.unit(190, "lb"),
  42961. name: "Front",
  42962. image: {
  42963. source: "./media/characters/mizu/front.svg",
  42964. extra: 1988/1788,
  42965. bottom: 14/2002
  42966. }
  42967. },
  42968. },
  42969. [
  42970. {
  42971. name: "Normal",
  42972. height: math.unit(5 + 11/12, "feet"),
  42973. default: true
  42974. },
  42975. ]
  42976. ))
  42977. characterMakers.push(() => makeCharacter(
  42978. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42979. {
  42980. front: {
  42981. height: math.unit(1.7, "feet"),
  42982. weight: math.unit(50, "lb"),
  42983. name: "Front",
  42984. image: {
  42985. source: "./media/characters/dechroma/front.svg",
  42986. extra: 1095/859,
  42987. bottom: 64/1159
  42988. }
  42989. },
  42990. },
  42991. [
  42992. {
  42993. name: "Normal",
  42994. height: math.unit(1.7, "feet"),
  42995. default: true
  42996. },
  42997. ]
  42998. ))
  42999. characterMakers.push(() => makeCharacter(
  43000. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43001. {
  43002. side: {
  43003. height: math.unit(30, "feet"),
  43004. name: "Side",
  43005. image: {
  43006. source: "./media/characters/veluren-thanazel/side.svg",
  43007. extra: 1611/633,
  43008. bottom: 118/1729
  43009. }
  43010. },
  43011. front: {
  43012. height: math.unit(30, "feet"),
  43013. name: "Front",
  43014. image: {
  43015. source: "./media/characters/veluren-thanazel/front.svg",
  43016. extra: 1486/636,
  43017. bottom: 238/1724
  43018. }
  43019. },
  43020. head: {
  43021. height: math.unit(21.4, "feet"),
  43022. name: "Head",
  43023. image: {
  43024. source: "./media/characters/veluren-thanazel/head.svg"
  43025. }
  43026. },
  43027. genitals: {
  43028. height: math.unit(19.4, "feet"),
  43029. name: "Genitals",
  43030. image: {
  43031. source: "./media/characters/veluren-thanazel/genitals.svg"
  43032. }
  43033. },
  43034. },
  43035. [
  43036. {
  43037. name: "Social",
  43038. height: math.unit(6, "feet")
  43039. },
  43040. {
  43041. name: "Play",
  43042. height: math.unit(12, "feet")
  43043. },
  43044. {
  43045. name: "True",
  43046. height: math.unit(30, "feet"),
  43047. default: true
  43048. },
  43049. ]
  43050. ))
  43051. characterMakers.push(() => makeCharacter(
  43052. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43053. {
  43054. front: {
  43055. height: math.unit(7 + 6/12, "feet"),
  43056. weight: math.unit(500, "kg"),
  43057. name: "Front",
  43058. image: {
  43059. source: "./media/characters/arcturas/front.svg",
  43060. extra: 1700/1500,
  43061. bottom: 145/1845
  43062. }
  43063. },
  43064. },
  43065. [
  43066. {
  43067. name: "Normal",
  43068. height: math.unit(7 + 6/12, "feet"),
  43069. default: true
  43070. },
  43071. ]
  43072. ))
  43073. characterMakers.push(() => makeCharacter(
  43074. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43075. {
  43076. side: {
  43077. height: math.unit(6, "feet"),
  43078. weight: math.unit(2, "tons"),
  43079. name: "Side",
  43080. image: {
  43081. source: "./media/characters/vitaen/side.svg",
  43082. extra: 1157/617,
  43083. bottom: 122/1279
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(6, "feet"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(19, "feet"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/fia-dreamweaver/front.svg",
  43103. extra: 1630/1504,
  43104. bottom: 25/1655
  43105. }
  43106. },
  43107. },
  43108. [
  43109. {
  43110. name: "Normal",
  43111. height: math.unit(19, "feet"),
  43112. default: true
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43118. {
  43119. front: {
  43120. height: math.unit(5 + 4/12, "feet"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/artan/front.svg",
  43124. extra: 1618/1535,
  43125. bottom: 46/1664
  43126. }
  43127. },
  43128. back: {
  43129. height: math.unit(5 + 4/12, "feet"),
  43130. name: "Back",
  43131. image: {
  43132. source: "./media/characters/artan/back.svg",
  43133. extra: 1618/1543,
  43134. bottom: 31/1649
  43135. }
  43136. },
  43137. },
  43138. [
  43139. {
  43140. name: "Normal",
  43141. height: math.unit(5 + 4/12, "feet"),
  43142. default: true
  43143. },
  43144. ]
  43145. ))
  43146. characterMakers.push(() => makeCharacter(
  43147. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43148. {
  43149. side: {
  43150. height: math.unit(182, "cm"),
  43151. weight: math.unit(1000, "lb"),
  43152. name: "Side",
  43153. image: {
  43154. source: "./media/characters/silver-dragon/side.svg",
  43155. extra: 710/287,
  43156. bottom: 88/798
  43157. }
  43158. },
  43159. },
  43160. [
  43161. {
  43162. name: "Normal",
  43163. height: math.unit(182, "cm"),
  43164. default: true
  43165. },
  43166. ]
  43167. ))
  43168. characterMakers.push(() => makeCharacter(
  43169. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43170. {
  43171. side: {
  43172. height: math.unit(6 + 6/12, "feet"),
  43173. weight: math.unit(1.5, "tons"),
  43174. name: "Side",
  43175. image: {
  43176. source: "./media/characters/zephyr/side.svg",
  43177. extra: 1433/586,
  43178. bottom: 109/1542
  43179. }
  43180. },
  43181. },
  43182. [
  43183. {
  43184. name: "Normal",
  43185. height: math.unit(6 + 6/12, "feet"),
  43186. default: true
  43187. },
  43188. ]
  43189. ))
  43190. characterMakers.push(() => makeCharacter(
  43191. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43192. {
  43193. side: {
  43194. height: math.unit(1, "feet"),
  43195. name: "Side",
  43196. image: {
  43197. source: "./media/characters/vixye/side.svg",
  43198. extra: 632/541,
  43199. bottom: 0/632
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(1, "feet"),
  43207. default: true
  43208. },
  43209. {
  43210. name: "True",
  43211. height: math.unit(1e15, "multiverses")
  43212. },
  43213. ]
  43214. ))
  43215. characterMakers.push(() => makeCharacter(
  43216. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43217. {
  43218. front: {
  43219. height: math.unit(8 + 2/12, "feet"),
  43220. weight: math.unit(650, "lb"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43224. extra: 1174/1137,
  43225. bottom: 82/1256
  43226. }
  43227. },
  43228. back: {
  43229. height: math.unit(8 + 2/12, "feet"),
  43230. weight: math.unit(650, "lb"),
  43231. name: "Back",
  43232. image: {
  43233. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43234. extra: 1204/1157,
  43235. bottom: 46/1250
  43236. }
  43237. },
  43238. },
  43239. [
  43240. {
  43241. name: "Wildform",
  43242. height: math.unit(8 + 2/12, "feet"),
  43243. default: true
  43244. },
  43245. ]
  43246. ))
  43247. characterMakers.push(() => makeCharacter(
  43248. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43249. {
  43250. front: {
  43251. height: math.unit(18, "feet"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/cyphin/front.svg",
  43255. extra: 970/886,
  43256. bottom: 42/1012
  43257. }
  43258. },
  43259. back: {
  43260. height: math.unit(18, "feet"),
  43261. name: "Back",
  43262. image: {
  43263. source: "./media/characters/cyphin/back.svg",
  43264. extra: 1009/894,
  43265. bottom: 24/1033
  43266. }
  43267. },
  43268. head: {
  43269. height: math.unit(5.05, "feet"),
  43270. name: "Head",
  43271. image: {
  43272. source: "./media/characters/cyphin/head.svg"
  43273. }
  43274. },
  43275. tailbud: {
  43276. height: math.unit(5, "feet"),
  43277. name: "Tailbud",
  43278. image: {
  43279. source: "./media/characters/cyphin/tailbud.svg"
  43280. }
  43281. },
  43282. },
  43283. [
  43284. ]
  43285. ))
  43286. characterMakers.push(() => makeCharacter(
  43287. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43288. {
  43289. side: {
  43290. height: math.unit(10, "feet"),
  43291. weight: math.unit(6, "tons"),
  43292. name: "Side",
  43293. image: {
  43294. source: "./media/characters/raijin/side.svg",
  43295. extra: 1529/613,
  43296. bottom: 337/1866
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Normal",
  43303. height: math.unit(10, "feet"),
  43304. default: true
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43310. {
  43311. side: {
  43312. height: math.unit(9, "feet"),
  43313. name: "Side",
  43314. image: {
  43315. source: "./media/characters/nilghais/side.svg",
  43316. extra: 1047/744,
  43317. bottom: 91/1138
  43318. }
  43319. },
  43320. head: {
  43321. height: math.unit(3.14, "feet"),
  43322. name: "Head",
  43323. image: {
  43324. source: "./media/characters/nilghais/head.svg"
  43325. }
  43326. },
  43327. mouth: {
  43328. height: math.unit(4.6, "feet"),
  43329. name: "Mouth",
  43330. image: {
  43331. source: "./media/characters/nilghais/mouth.svg"
  43332. }
  43333. },
  43334. wings: {
  43335. height: math.unit(24, "feet"),
  43336. name: "Wings",
  43337. image: {
  43338. source: "./media/characters/nilghais/wings.svg"
  43339. }
  43340. },
  43341. ass: {
  43342. height: math.unit(6.12, "feet"),
  43343. name: "Ass",
  43344. image: {
  43345. source: "./media/characters/nilghais/ass.svg"
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(9, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43359. {
  43360. regular: {
  43361. height: math.unit(16 + 2/12, "feet"),
  43362. weight: math.unit(2300, "lb"),
  43363. name: "Regular",
  43364. image: {
  43365. source: "./media/characters/zolgar/regular.svg",
  43366. extra: 1246/1004,
  43367. bottom: 124/1370
  43368. }
  43369. },
  43370. boxers: {
  43371. height: math.unit(16 + 2/12, "feet"),
  43372. weight: math.unit(2300, "lb"),
  43373. name: "Boxers",
  43374. image: {
  43375. source: "./media/characters/zolgar/boxers.svg",
  43376. extra: 1246/1004,
  43377. bottom: 124/1370
  43378. }
  43379. },
  43380. armored: {
  43381. height: math.unit(16 + 2/12, "feet"),
  43382. weight: math.unit(2300, "lb"),
  43383. name: "Armored",
  43384. image: {
  43385. source: "./media/characters/zolgar/armored.svg",
  43386. extra: 1246/1004,
  43387. bottom: 124/1370
  43388. }
  43389. },
  43390. goth: {
  43391. height: math.unit(16 + 2/12, "feet"),
  43392. weight: math.unit(2300, "lb"),
  43393. name: "Goth",
  43394. image: {
  43395. source: "./media/characters/zolgar/goth.svg",
  43396. extra: 1246/1004,
  43397. bottom: 124/1370
  43398. }
  43399. },
  43400. },
  43401. [
  43402. {
  43403. name: "Shrunken Down",
  43404. height: math.unit(9 + 2/12, "feet")
  43405. },
  43406. {
  43407. name: "Normal",
  43408. height: math.unit(16 + 2/12, "feet"),
  43409. default: true
  43410. },
  43411. ]
  43412. ))
  43413. characterMakers.push(() => makeCharacter(
  43414. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43415. {
  43416. front: {
  43417. height: math.unit(6, "feet"),
  43418. weight: math.unit(168, "lb"),
  43419. name: "Front",
  43420. image: {
  43421. source: "./media/characters/luca/front.svg",
  43422. extra: 841/667,
  43423. bottom: 102/943
  43424. }
  43425. },
  43426. },
  43427. [
  43428. {
  43429. name: "Normal",
  43430. height: math.unit(6, "feet"),
  43431. default: true
  43432. },
  43433. ]
  43434. ))
  43435. characterMakers.push(() => makeCharacter(
  43436. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43437. {
  43438. side: {
  43439. height: math.unit(7 + 3/12, "feet"),
  43440. weight: math.unit(312, "lb"),
  43441. name: "Side",
  43442. image: {
  43443. source: "./media/characters/zezo/side.svg",
  43444. extra: 1192/1067,
  43445. bottom: 63/1255
  43446. }
  43447. },
  43448. },
  43449. [
  43450. {
  43451. name: "Normal",
  43452. height: math.unit(7 + 3/12, "feet"),
  43453. default: true
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43459. {
  43460. front: {
  43461. height: math.unit(5 + 5/12, "feet"),
  43462. weight: math.unit(170, "lb"),
  43463. name: "Front",
  43464. image: {
  43465. source: "./media/characters/mayso/front.svg",
  43466. extra: 1215/1108,
  43467. bottom: 16/1231
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Normal",
  43474. height: math.unit(5 + 5/12, "feet"),
  43475. default: true
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43481. {
  43482. front: {
  43483. height: math.unit(4 + 3/12, "feet"),
  43484. weight: math.unit(80, "lb"),
  43485. name: "Front",
  43486. image: {
  43487. source: "./media/characters/hess/front.svg",
  43488. extra: 1200/1123,
  43489. bottom: 16/1216
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(4 + 3/12, "feet"),
  43497. default: true
  43498. },
  43499. ]
  43500. ))
  43501. characterMakers.push(() => makeCharacter(
  43502. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43503. {
  43504. front: {
  43505. height: math.unit(1.9, "meters"),
  43506. name: "Front",
  43507. image: {
  43508. source: "./media/characters/ashgar/front.svg",
  43509. extra: 1177/1146,
  43510. bottom: 99/1276
  43511. }
  43512. },
  43513. back: {
  43514. height: math.unit(1.9, "meters"),
  43515. name: "Back",
  43516. image: {
  43517. source: "./media/characters/ashgar/back.svg",
  43518. extra: 1201/1183,
  43519. bottom: 53/1254
  43520. }
  43521. },
  43522. feral: {
  43523. height: math.unit(1.4, "meters"),
  43524. name: "Feral",
  43525. image: {
  43526. source: "./media/characters/ashgar/feral.svg",
  43527. extra: 370/345,
  43528. bottom: 45/415
  43529. }
  43530. },
  43531. },
  43532. [
  43533. {
  43534. name: "Normal",
  43535. height: math.unit(1.9, "meters"),
  43536. default: true
  43537. },
  43538. ]
  43539. ))
  43540. characterMakers.push(() => makeCharacter(
  43541. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43542. {
  43543. regular: {
  43544. height: math.unit(6, "feet"),
  43545. weight: math.unit(220, "lb"),
  43546. name: "Regular",
  43547. image: {
  43548. source: "./media/characters/phillip/regular.svg",
  43549. extra: 1373/1277,
  43550. bottom: 75/1448
  43551. }
  43552. },
  43553. dressed: {
  43554. height: math.unit(6, "feet"),
  43555. weight: math.unit(220, "lb"),
  43556. name: "Dressed",
  43557. image: {
  43558. source: "./media/characters/phillip/dressed.svg",
  43559. extra: 1373/1277,
  43560. bottom: 75/1448
  43561. }
  43562. },
  43563. paw: {
  43564. height: math.unit(1.44, "feet"),
  43565. name: "Paw",
  43566. image: {
  43567. source: "./media/characters/phillip/paw.svg"
  43568. }
  43569. },
  43570. },
  43571. [
  43572. {
  43573. name: "Normal",
  43574. height: math.unit(6, "feet"),
  43575. default: true
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43581. {
  43582. side: {
  43583. height: math.unit(42, "feet"),
  43584. name: "Side",
  43585. image: {
  43586. source: "./media/characters/uvula/side.svg",
  43587. extra: 683/586,
  43588. bottom: 60/743
  43589. }
  43590. },
  43591. front: {
  43592. height: math.unit(42, "feet"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/uvula/front.svg",
  43596. extra: 705/613,
  43597. bottom: 54/759
  43598. }
  43599. },
  43600. maw: {
  43601. height: math.unit(23.5, "feet"),
  43602. name: "Maw",
  43603. image: {
  43604. source: "./media/characters/uvula/maw.svg"
  43605. }
  43606. },
  43607. },
  43608. [
  43609. {
  43610. name: "Original Size",
  43611. height: math.unit(14, "inches")
  43612. },
  43613. {
  43614. name: "Human Size",
  43615. height: math.unit(6, "feet")
  43616. },
  43617. {
  43618. name: "Big",
  43619. height: math.unit(42, "feet"),
  43620. default: true
  43621. },
  43622. {
  43623. name: "Bigger",
  43624. height: math.unit(100, "feet")
  43625. },
  43626. ]
  43627. ))
  43628. characterMakers.push(() => makeCharacter(
  43629. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43630. {
  43631. front: {
  43632. height: math.unit(5 + 11/12, "feet"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/lannah/front.svg",
  43636. extra: 1208/1113,
  43637. bottom: 97/1305
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(5 + 11/12, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43651. {
  43652. front: {
  43653. height: math.unit(6 + 3/12, "feet"),
  43654. weight: math.unit(3.5, "tons"),
  43655. name: "Front",
  43656. image: {
  43657. source: "./media/characters/emberflame/front.svg",
  43658. extra: 1198/672,
  43659. bottom: 82/1280
  43660. }
  43661. },
  43662. side: {
  43663. height: math.unit(6 + 3/12, "feet"),
  43664. weight: math.unit(3.5, "tons"),
  43665. name: "Side",
  43666. image: {
  43667. source: "./media/characters/emberflame/side.svg",
  43668. extra: 938/527,
  43669. bottom: 56/994
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(6 + 3/12, "feet"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43683. {
  43684. side: {
  43685. height: math.unit(17.5, "feet"),
  43686. weight: math.unit(35, "tons"),
  43687. name: "Side",
  43688. image: {
  43689. source: "./media/characters/sophie-ambrose/side.svg",
  43690. extra: 1573/1242,
  43691. bottom: 71/1644
  43692. }
  43693. },
  43694. maw: {
  43695. height: math.unit(7.4, "feet"),
  43696. name: "Maw",
  43697. image: {
  43698. source: "./media/characters/sophie-ambrose/maw.svg"
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Normal",
  43705. height: math.unit(17.5, "feet"),
  43706. default: true
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43712. {
  43713. front: {
  43714. height: math.unit(280, "feet"),
  43715. weight: math.unit(550, "tons"),
  43716. name: "Front",
  43717. image: {
  43718. source: "./media/characters/king-mugi/front.svg",
  43719. extra: 1102/947,
  43720. bottom: 104/1206
  43721. }
  43722. },
  43723. },
  43724. [
  43725. {
  43726. name: "King Mugi",
  43727. height: math.unit(280, "feet"),
  43728. default: true
  43729. },
  43730. ]
  43731. ))
  43732. characterMakers.push(() => makeCharacter(
  43733. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43734. {
  43735. front: {
  43736. height: math.unit(64, "meters"),
  43737. name: "Front",
  43738. image: {
  43739. source: "./media/characters/nova-fox/front.svg",
  43740. extra: 1310/1246,
  43741. bottom: 65/1375
  43742. }
  43743. },
  43744. },
  43745. [
  43746. {
  43747. name: "Macro",
  43748. height: math.unit(64, "meters"),
  43749. default: true
  43750. },
  43751. ]
  43752. ))
  43753. characterMakers.push(() => makeCharacter(
  43754. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43755. {
  43756. front: {
  43757. height: math.unit(6 + 3/12, "feet"),
  43758. weight: math.unit(170, "lb"),
  43759. name: "Front",
  43760. image: {
  43761. source: "./media/characters/sam-bat/front.svg",
  43762. extra: 1601/1411,
  43763. bottom: 125/1726
  43764. }
  43765. },
  43766. back: {
  43767. height: math.unit(6 + 3/12, "feet"),
  43768. weight: math.unit(170, "lb"),
  43769. name: "Back",
  43770. image: {
  43771. source: "./media/characters/sam-bat/back.svg",
  43772. extra: 1577/1405,
  43773. bottom: 58/1635
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(6 + 3/12, "feet"),
  43781. default: true
  43782. },
  43783. ]
  43784. ))
  43785. characterMakers.push(() => makeCharacter(
  43786. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43787. {
  43788. front: {
  43789. height: math.unit(59, "feet"),
  43790. weight: math.unit(40000, "lb"),
  43791. name: "Front",
  43792. image: {
  43793. source: "./media/characters/inari/front.svg",
  43794. extra: 1884/1350,
  43795. bottom: 95/1979
  43796. }
  43797. },
  43798. },
  43799. [
  43800. {
  43801. name: "Gigantamax",
  43802. height: math.unit(59, "feet"),
  43803. default: true
  43804. },
  43805. ]
  43806. ))
  43807. characterMakers.push(() => makeCharacter(
  43808. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43809. {
  43810. front: {
  43811. height: math.unit(5 + 8/12, "feet"),
  43812. name: "Front",
  43813. image: {
  43814. source: "./media/characters/elizabeth/front.svg",
  43815. extra: 1395/1298,
  43816. bottom: 54/1449
  43817. }
  43818. },
  43819. mouth: {
  43820. height: math.unit(1.97, "feet"),
  43821. name: "Mouth",
  43822. image: {
  43823. source: "./media/characters/elizabeth/mouth.svg"
  43824. }
  43825. },
  43826. foot: {
  43827. height: math.unit(1.17, "feet"),
  43828. name: "Foot",
  43829. image: {
  43830. source: "./media/characters/elizabeth/foot.svg"
  43831. }
  43832. },
  43833. },
  43834. [
  43835. {
  43836. name: "Normal",
  43837. height: math.unit(5 + 8/12, "feet"),
  43838. default: true
  43839. },
  43840. {
  43841. name: "Minimacro",
  43842. height: math.unit(18, "feet")
  43843. },
  43844. {
  43845. name: "Macro",
  43846. height: math.unit(180, "feet")
  43847. },
  43848. ]
  43849. ))
  43850. characterMakers.push(() => makeCharacter(
  43851. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43852. {
  43853. front: {
  43854. height: math.unit(5 + 2/12, "feet"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/october-gossamer/front.svg",
  43858. extra: 505/454,
  43859. bottom: 7/512
  43860. }
  43861. },
  43862. back: {
  43863. height: math.unit(5 + 2/12, "feet"),
  43864. name: "Back",
  43865. image: {
  43866. source: "./media/characters/october-gossamer/back.svg",
  43867. extra: 501/454,
  43868. bottom: 11/512
  43869. }
  43870. },
  43871. },
  43872. [
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(5 + 2/12, "feet"),
  43876. default: true
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43882. {
  43883. front: {
  43884. height: math.unit(5, "feet"),
  43885. name: "Front",
  43886. image: {
  43887. source: "./media/characters/epiglottis/front.svg",
  43888. extra: 923/849,
  43889. bottom: 17/940
  43890. }
  43891. },
  43892. },
  43893. [
  43894. {
  43895. name: "Original Size",
  43896. height: math.unit(10, "inches")
  43897. },
  43898. {
  43899. name: "Human Size",
  43900. height: math.unit(5, "feet"),
  43901. default: true
  43902. },
  43903. {
  43904. name: "Big",
  43905. height: math.unit(25, "feet")
  43906. },
  43907. {
  43908. name: "Bigger",
  43909. height: math.unit(50, "feet")
  43910. },
  43911. {
  43912. name: "oh lawd",
  43913. height: math.unit(75, "feet")
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(2 + 4/12, "feet"),
  43922. weight: math.unit(60, "lb"),
  43923. name: "Front",
  43924. image: {
  43925. source: "./media/characters/lerm/front.svg",
  43926. extra: 796/790,
  43927. bottom: 79/875
  43928. }
  43929. },
  43930. },
  43931. [
  43932. {
  43933. name: "Normal",
  43934. height: math.unit(2 + 4/12, "feet"),
  43935. default: true
  43936. },
  43937. ]
  43938. ))
  43939. characterMakers.push(() => makeCharacter(
  43940. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43941. {
  43942. front: {
  43943. height: math.unit(5.5, "feet"),
  43944. weight: math.unit(130, "lb"),
  43945. name: "Front",
  43946. image: {
  43947. source: "./media/characters/xena-nebadon/front.svg",
  43948. extra: 1828/1730,
  43949. bottom: 79/1907
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Tiny Puppy",
  43956. height: math.unit(3, "inches")
  43957. },
  43958. {
  43959. name: "Normal",
  43960. height: math.unit(5.5, "feet"),
  43961. default: true
  43962. },
  43963. {
  43964. name: "Lotta Lady",
  43965. height: math.unit(12, "feet")
  43966. },
  43967. {
  43968. name: "Pretty Big",
  43969. height: math.unit(100, "feet")
  43970. },
  43971. {
  43972. name: "Big",
  43973. height: math.unit(500, "feet")
  43974. },
  43975. {
  43976. name: "Skyscraper Toys",
  43977. height: math.unit(2500, "feet")
  43978. },
  43979. {
  43980. name: "Plane Catcher",
  43981. height: math.unit(8, "miles")
  43982. },
  43983. {
  43984. name: "Planet Toys",
  43985. height: math.unit(15, "earths")
  43986. },
  43987. {
  43988. name: "Stardust",
  43989. height: math.unit(0.25, "galaxies")
  43990. },
  43991. {
  43992. name: "Snacks",
  43993. height: math.unit(70, "universes")
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43999. {
  44000. front: {
  44001. height: math.unit(1.6, "meters"),
  44002. weight: math.unit(60, "kg"),
  44003. name: "Front",
  44004. image: {
  44005. source: "./media/characters/bounty/front.svg",
  44006. extra: 1426/1308,
  44007. bottom: 15/1441
  44008. }
  44009. },
  44010. back: {
  44011. height: math.unit(1.6, "meters"),
  44012. weight: math.unit(60, "kg"),
  44013. name: "Back",
  44014. image: {
  44015. source: "./media/characters/bounty/back.svg",
  44016. extra: 1417/1307,
  44017. bottom: 8/1425
  44018. }
  44019. },
  44020. },
  44021. [
  44022. {
  44023. name: "Normal",
  44024. height: math.unit(1.6, "meters"),
  44025. default: true
  44026. },
  44027. {
  44028. name: "Macro",
  44029. height: math.unit(300, "meters")
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44035. {
  44036. front: {
  44037. height: math.unit(2 + 8/12, "feet"),
  44038. weight: math.unit(15, "lb"),
  44039. name: "Front",
  44040. image: {
  44041. source: "./media/characters/mochi/front.svg",
  44042. extra: 1022/852,
  44043. bottom: 435/1457
  44044. }
  44045. },
  44046. back: {
  44047. height: math.unit(2 + 8/12, "feet"),
  44048. weight: math.unit(15, "lb"),
  44049. name: "Back",
  44050. image: {
  44051. source: "./media/characters/mochi/back.svg",
  44052. extra: 1335/1119,
  44053. bottom: 39/1374
  44054. }
  44055. },
  44056. bird: {
  44057. height: math.unit(2 + 8/12, "feet"),
  44058. weight: math.unit(15, "lb"),
  44059. name: "Bird",
  44060. image: {
  44061. source: "./media/characters/mochi/bird.svg",
  44062. extra: 1251/1113,
  44063. bottom: 178/1429
  44064. }
  44065. },
  44066. kaiju: {
  44067. height: math.unit(154, "feet"),
  44068. weight: math.unit(1e7, "lb"),
  44069. name: "Kaiju",
  44070. image: {
  44071. source: "./media/characters/mochi/kaiju.svg",
  44072. extra: 460/324,
  44073. bottom: 40/500
  44074. }
  44075. },
  44076. head: {
  44077. height: math.unit(1.21, "feet"),
  44078. name: "Head",
  44079. image: {
  44080. source: "./media/characters/mochi/head.svg"
  44081. }
  44082. },
  44083. alternateTail: {
  44084. height: math.unit(2 + 8/12, "feet"),
  44085. weight: math.unit(45, "lb"),
  44086. name: "Alternate Tail",
  44087. image: {
  44088. source: "./media/characters/mochi/alternate-tail.svg",
  44089. extra: 139/76,
  44090. bottom: 45/184
  44091. }
  44092. },
  44093. },
  44094. [
  44095. {
  44096. name: "Micro",
  44097. height: math.unit(2, "inches")
  44098. },
  44099. {
  44100. name: "Normal",
  44101. height: math.unit(2 + 8/12, "feet"),
  44102. default: true
  44103. },
  44104. {
  44105. name: "Macro",
  44106. height: math.unit(106, "feet")
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44112. {
  44113. front: {
  44114. height: math.unit(5.67, "feet"),
  44115. weight: math.unit(135, "lb"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/sarel/front.svg",
  44119. extra: 865/788,
  44120. bottom: 97/962
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(5.67, "feet"),
  44125. weight: math.unit(135, "lb"),
  44126. name: "Back",
  44127. image: {
  44128. source: "./media/characters/sarel/back.svg",
  44129. extra: 857/777,
  44130. bottom: 32/889
  44131. }
  44132. },
  44133. chozoan: {
  44134. height: math.unit(5.67, "feet"),
  44135. weight: math.unit(135, "lb"),
  44136. name: "Chozoan",
  44137. image: {
  44138. source: "./media/characters/sarel/chozoan.svg",
  44139. extra: 865/788,
  44140. bottom: 97/962
  44141. }
  44142. },
  44143. current: {
  44144. height: math.unit(5.67, "feet"),
  44145. weight: math.unit(135, "lb"),
  44146. name: "Current",
  44147. image: {
  44148. source: "./media/characters/sarel/current.svg",
  44149. extra: 865/788,
  44150. bottom: 97/962
  44151. }
  44152. },
  44153. head: {
  44154. height: math.unit(1.77, "feet"),
  44155. name: "Head",
  44156. image: {
  44157. source: "./media/characters/sarel/head.svg"
  44158. }
  44159. },
  44160. claws: {
  44161. height: math.unit(1.8, "feet"),
  44162. name: "Claws",
  44163. image: {
  44164. source: "./media/characters/sarel/claws.svg"
  44165. }
  44166. },
  44167. clawsAlt: {
  44168. height: math.unit(1.8, "feet"),
  44169. name: "Claws-alt",
  44170. image: {
  44171. source: "./media/characters/sarel/claws-alt.svg"
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(5.67, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(5500, "feet"),
  44188. name: "Front",
  44189. image: {
  44190. source: "./media/characters/alyonia/front.svg",
  44191. extra: 1200/1135,
  44192. bottom: 29/1229
  44193. }
  44194. },
  44195. back: {
  44196. height: math.unit(5500, "feet"),
  44197. name: "Back",
  44198. image: {
  44199. source: "./media/characters/alyonia/back.svg",
  44200. extra: 1205/1138,
  44201. bottom: 10/1215
  44202. }
  44203. },
  44204. },
  44205. [
  44206. {
  44207. name: "Small",
  44208. height: math.unit(10, "feet")
  44209. },
  44210. {
  44211. name: "Macro",
  44212. height: math.unit(500, "feet")
  44213. },
  44214. {
  44215. name: "Mega Macro",
  44216. height: math.unit(5500, "feet"),
  44217. default: true
  44218. },
  44219. {
  44220. name: "Mega Macro+",
  44221. height: math.unit(500000, "feet")
  44222. },
  44223. {
  44224. name: "Giga Macro",
  44225. height: math.unit(3000, "miles")
  44226. },
  44227. {
  44228. name: "Tera Macro",
  44229. height: math.unit(2.8e6, "miles")
  44230. },
  44231. {
  44232. name: "Galactic",
  44233. height: math.unit(120000, "lightyears")
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44239. {
  44240. werewolf: {
  44241. height: math.unit(8, "feet"),
  44242. weight: math.unit(425, "lb"),
  44243. name: "Werewolf",
  44244. image: {
  44245. source: "./media/characters/autumn/werewolf.svg",
  44246. extra: 2154/2031,
  44247. bottom: 160/2314
  44248. }
  44249. },
  44250. human: {
  44251. height: math.unit(5 + 8/12, "feet"),
  44252. weight: math.unit(150, "lb"),
  44253. name: "Human",
  44254. image: {
  44255. source: "./media/characters/autumn/human.svg",
  44256. extra: 1200/1149,
  44257. bottom: 30/1230
  44258. }
  44259. },
  44260. },
  44261. [
  44262. {
  44263. name: "Normal",
  44264. height: math.unit(8, "feet"),
  44265. default: true
  44266. },
  44267. ]
  44268. ))
  44269. characterMakers.push(() => makeCharacter(
  44270. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44271. {
  44272. front: {
  44273. height: math.unit(8 + 5/12, "feet"),
  44274. weight: math.unit(825, "lb"),
  44275. name: "Front",
  44276. image: {
  44277. source: "./media/characters/cobalt-charizard/front.svg",
  44278. extra: 1268/1155,
  44279. bottom: 122/1390
  44280. }
  44281. },
  44282. side: {
  44283. height: math.unit(8 + 5/12, "feet"),
  44284. weight: math.unit(825, "lb"),
  44285. name: "Side",
  44286. image: {
  44287. source: "./media/characters/cobalt-charizard/side.svg",
  44288. extra: 1348/1257,
  44289. bottom: 58/1406
  44290. }
  44291. },
  44292. gMax: {
  44293. height: math.unit(134 + 11/12, "feet"),
  44294. name: "G-Max",
  44295. image: {
  44296. source: "./media/characters/cobalt-charizard/g-max.svg",
  44297. extra: 1835/1541,
  44298. bottom: 151/1986
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(8 + 5/12, "feet"),
  44306. default: true
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(6 + 3/12, "feet"),
  44315. weight: math.unit(210, "lb"),
  44316. name: "Front",
  44317. image: {
  44318. source: "./media/characters/stella/front.svg",
  44319. extra: 3549/3335,
  44320. bottom: 51/3600
  44321. }
  44322. },
  44323. },
  44324. [
  44325. {
  44326. name: "Normal",
  44327. height: math.unit(6 + 3/12, "feet"),
  44328. default: true
  44329. },
  44330. ]
  44331. ))
  44332. characterMakers.push(() => makeCharacter(
  44333. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44334. {
  44335. front: {
  44336. height: math.unit(5, "feet"),
  44337. weight: math.unit(90, "lb"),
  44338. name: "Front",
  44339. image: {
  44340. source: "./media/characters/riley-bishop/front.svg",
  44341. extra: 1450/1428,
  44342. bottom: 152/1602
  44343. }
  44344. },
  44345. },
  44346. [
  44347. {
  44348. name: "Normal",
  44349. height: math.unit(5, "feet"),
  44350. default: true
  44351. },
  44352. ]
  44353. ))
  44354. characterMakers.push(() => makeCharacter(
  44355. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44356. {
  44357. side: {
  44358. height: math.unit(8 + 2/12, "feet"),
  44359. weight: math.unit(500, "kg"),
  44360. name: "Side",
  44361. image: {
  44362. source: "./media/characters/theo-arcanine/side.svg",
  44363. extra: 1342/1074,
  44364. bottom: 111/1453
  44365. }
  44366. },
  44367. },
  44368. [
  44369. {
  44370. name: "Normal",
  44371. height: math.unit(8 + 2/12, "feet"),
  44372. default: true
  44373. },
  44374. ]
  44375. ))
  44376. characterMakers.push(() => makeCharacter(
  44377. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44378. {
  44379. front: {
  44380. height: math.unit(4, "feet"),
  44381. name: "Front",
  44382. image: {
  44383. source: "./media/characters/kali/front.svg",
  44384. extra: 1921/1357,
  44385. bottom: 70/1991
  44386. }
  44387. },
  44388. },
  44389. [
  44390. {
  44391. name: "Normal",
  44392. height: math.unit(4, "feet"),
  44393. default: true
  44394. },
  44395. {
  44396. name: "Macro",
  44397. height: math.unit(32, "meters")
  44398. },
  44399. {
  44400. name: "Macro+",
  44401. height: math.unit(150, "meters")
  44402. },
  44403. {
  44404. name: "Megamacro",
  44405. height: math.unit(7500, "meters")
  44406. },
  44407. {
  44408. name: "Megamacro+",
  44409. height: math.unit(80, "kilometers")
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44415. {
  44416. side: {
  44417. height: math.unit(5 + 11/12, "feet"),
  44418. weight: math.unit(236, "lb"),
  44419. name: "Side",
  44420. image: {
  44421. source: "./media/characters/gapp/side.svg",
  44422. extra: 775/340,
  44423. bottom: 58/833
  44424. }
  44425. },
  44426. mouth: {
  44427. height: math.unit(2.98, "feet"),
  44428. name: "Mouth",
  44429. image: {
  44430. source: "./media/characters/gapp/mouth.svg"
  44431. }
  44432. },
  44433. },
  44434. [
  44435. {
  44436. name: "Normal",
  44437. height: math.unit(5 + 1/12, "feet"),
  44438. default: true
  44439. },
  44440. ]
  44441. ))
  44442. characterMakers.push(() => makeCharacter(
  44443. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44444. {
  44445. front: {
  44446. height: math.unit(6, "feet"),
  44447. name: "Front",
  44448. image: {
  44449. source: "./media/characters/persephone/front.svg",
  44450. extra: 1895/1717,
  44451. bottom: 96/1991
  44452. }
  44453. },
  44454. back: {
  44455. height: math.unit(6, "feet"),
  44456. name: "Back",
  44457. image: {
  44458. source: "./media/characters/persephone/back.svg",
  44459. extra: 1868/1679,
  44460. bottom: 26/1894
  44461. }
  44462. },
  44463. casual: {
  44464. height: math.unit(6, "feet"),
  44465. name: "Casual",
  44466. image: {
  44467. source: "./media/characters/persephone/casual.svg",
  44468. extra: 1713/1541,
  44469. bottom: 76/1789
  44470. }
  44471. },
  44472. },
  44473. [
  44474. {
  44475. name: "Human Size",
  44476. height: math.unit(6, "feet")
  44477. },
  44478. {
  44479. name: "Big Steppy",
  44480. height: math.unit(600, "meters"),
  44481. default: true
  44482. },
  44483. {
  44484. name: "Galaxy Brain",
  44485. height: math.unit(1, "zettameter")
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(1.85, "meters"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/riley-foxthing/front.svg",
  44497. extra: 1495/1354,
  44498. bottom: 122/1617
  44499. }
  44500. },
  44501. frontAlt: {
  44502. height: math.unit(1.85, "meters"),
  44503. name: "Front (Alt)",
  44504. image: {
  44505. source: "./media/characters/riley-foxthing/front-alt.svg",
  44506. extra: 1572/1389,
  44507. bottom: 116/1688
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "Normal Sized",
  44514. height: math.unit(1.85, "meters"),
  44515. default: true
  44516. },
  44517. {
  44518. name: "Quite Sizable",
  44519. height: math.unit(5, "meters")
  44520. },
  44521. {
  44522. name: "Rather Large",
  44523. height: math.unit(20, "meters")
  44524. },
  44525. {
  44526. name: "Macro",
  44527. height: math.unit(450, "meters")
  44528. },
  44529. {
  44530. name: "Giga",
  44531. height: math.unit(5, "km")
  44532. },
  44533. ]
  44534. ))
  44535. characterMakers.push(() => makeCharacter(
  44536. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44537. {
  44538. front: {
  44539. height: math.unit(6, "feet"),
  44540. weight: math.unit(200, "lb"),
  44541. name: "Front",
  44542. image: {
  44543. source: "./media/characters/blizzard/front.svg",
  44544. extra: 1136/990,
  44545. bottom: 136/1272
  44546. }
  44547. },
  44548. back: {
  44549. height: math.unit(6, "feet"),
  44550. weight: math.unit(200, "lb"),
  44551. name: "Back",
  44552. image: {
  44553. source: "./media/characters/blizzard/back.svg",
  44554. extra: 1175/1034,
  44555. bottom: 97/1272
  44556. }
  44557. },
  44558. sitting: {
  44559. height: math.unit(3.725, "feet"),
  44560. weight: math.unit(200, "lb"),
  44561. name: "Sitting",
  44562. image: {
  44563. source: "./media/characters/blizzard/sitting.svg",
  44564. extra: 581/485,
  44565. bottom: 90/671
  44566. }
  44567. },
  44568. frontWizard: {
  44569. height: math.unit(7.9, "feet"),
  44570. weight: math.unit(200, "lb"),
  44571. name: "Front (Wizard)",
  44572. image: {
  44573. source: "./media/characters/blizzard/front-wizard.svg"
  44574. }
  44575. },
  44576. backWizard: {
  44577. height: math.unit(7.9, "feet"),
  44578. weight: math.unit(200, "lb"),
  44579. name: "Back (Wizard)",
  44580. image: {
  44581. source: "./media/characters/blizzard/back-wizard.svg"
  44582. }
  44583. },
  44584. frontNsfw: {
  44585. height: math.unit(6, "feet"),
  44586. weight: math.unit(200, "lb"),
  44587. name: "Front (NSFW)",
  44588. image: {
  44589. source: "./media/characters/blizzard/front-nsfw.svg",
  44590. extra: 1136/990,
  44591. bottom: 136/1272
  44592. }
  44593. },
  44594. backNsfw: {
  44595. height: math.unit(6, "feet"),
  44596. weight: math.unit(200, "lb"),
  44597. name: "Back (NSFW)",
  44598. image: {
  44599. source: "./media/characters/blizzard/back-nsfw.svg",
  44600. extra: 1175/1034,
  44601. bottom: 97/1272
  44602. }
  44603. },
  44604. sittingNsfw: {
  44605. height: math.unit(3.725, "feet"),
  44606. weight: math.unit(200, "lb"),
  44607. name: "Sitting (NSFW)",
  44608. image: {
  44609. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44610. extra: 581/485,
  44611. bottom: 90/671
  44612. }
  44613. },
  44614. wizardFrontNsfw: {
  44615. height: math.unit(7.9, "feet"),
  44616. weight: math.unit(200, "lb"),
  44617. name: "Wizard (Front, NSFW)",
  44618. image: {
  44619. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44620. }
  44621. },
  44622. },
  44623. [
  44624. {
  44625. name: "Normal",
  44626. height: math.unit(6, "feet"),
  44627. default: true
  44628. },
  44629. ]
  44630. ))
  44631. characterMakers.push(() => makeCharacter(
  44632. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44633. {
  44634. front: {
  44635. height: math.unit(5 + 2/12, "feet"),
  44636. name: "Front",
  44637. image: {
  44638. source: "./media/characters/lumi/front.svg",
  44639. extra: 1328/1268,
  44640. bottom: 103/1431
  44641. }
  44642. },
  44643. back: {
  44644. height: math.unit(5 + 2/12, "feet"),
  44645. name: "Back",
  44646. image: {
  44647. source: "./media/characters/lumi/back.svg",
  44648. extra: 1381/1327,
  44649. bottom: 43/1424
  44650. }
  44651. },
  44652. },
  44653. [
  44654. {
  44655. name: "Normal",
  44656. height: math.unit(5 + 2/12, "feet"),
  44657. default: true
  44658. },
  44659. ]
  44660. ))
  44661. characterMakers.push(() => makeCharacter(
  44662. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44663. {
  44664. front: {
  44665. height: math.unit(5 + 9/12, "feet"),
  44666. name: "Front",
  44667. image: {
  44668. source: "./media/characters/aliya-cotton/front.svg",
  44669. extra: 577/564,
  44670. bottom: 29/606
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(5 + 9/12, "feet"),
  44678. default: true
  44679. },
  44680. ]
  44681. ))
  44682. characterMakers.push(() => makeCharacter(
  44683. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44684. {
  44685. front: {
  44686. height: math.unit(2.7, "meters"),
  44687. weight: math.unit(25000, "lb"),
  44688. name: "Front",
  44689. image: {
  44690. source: "./media/characters/noah-luxray/front.svg",
  44691. extra: 1644/825,
  44692. bottom: 339/1983
  44693. }
  44694. },
  44695. side: {
  44696. height: math.unit(2.97, "meters"),
  44697. weight: math.unit(25000, "lb"),
  44698. name: "Side",
  44699. image: {
  44700. source: "./media/characters/noah-luxray/side.svg",
  44701. extra: 1319/650,
  44702. bottom: 163/1482
  44703. }
  44704. },
  44705. dick: {
  44706. height: math.unit(7.4, "feet"),
  44707. weight: math.unit(2500, "lb"),
  44708. name: "Dick",
  44709. image: {
  44710. source: "./media/characters/noah-luxray/dick.svg"
  44711. }
  44712. },
  44713. dickAlt: {
  44714. height: math.unit(10.83, "feet"),
  44715. weight: math.unit(2500, "lb"),
  44716. name: "Dick-alt",
  44717. image: {
  44718. source: "./media/characters/noah-luxray/dick-alt.svg"
  44719. }
  44720. },
  44721. },
  44722. [
  44723. {
  44724. name: "BIG",
  44725. height: math.unit(2.7, "meters"),
  44726. default: true
  44727. },
  44728. ]
  44729. ))
  44730. characterMakers.push(() => makeCharacter(
  44731. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44732. {
  44733. standing: {
  44734. height: math.unit(183, "cm"),
  44735. weight: math.unit(68, "kg"),
  44736. name: "Standing",
  44737. image: {
  44738. source: "./media/characters/arion/standing.svg",
  44739. extra: 1869/1807,
  44740. bottom: 93/1962
  44741. }
  44742. },
  44743. reclining: {
  44744. height: math.unit(70.5, "cm"),
  44745. weight: math.unit(68, "lb"),
  44746. name: "Reclining",
  44747. image: {
  44748. source: "./media/characters/arion/reclining.svg",
  44749. extra: 937/870,
  44750. bottom: 63/1000
  44751. }
  44752. },
  44753. },
  44754. [
  44755. {
  44756. name: "Colossus Size, Low",
  44757. height: math.unit(33, "meters"),
  44758. default: true
  44759. },
  44760. {
  44761. name: "Colossus Size, Mid",
  44762. height: math.unit(52, "meters")
  44763. },
  44764. {
  44765. name: "Colossus Size, High",
  44766. height: math.unit(60, "meters")
  44767. },
  44768. {
  44769. name: "Titan Size, Low",
  44770. height: math.unit(91, "meters"),
  44771. },
  44772. {
  44773. name: "Titan Size, Mid",
  44774. height: math.unit(122, "meters")
  44775. },
  44776. {
  44777. name: "Titan Size, High",
  44778. height: math.unit(162, "meters")
  44779. },
  44780. ]
  44781. ))
  44782. characterMakers.push(() => makeCharacter(
  44783. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44784. {
  44785. front: {
  44786. height: math.unit(53, "meters"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/stellar-marbey/front.svg",
  44790. extra: 1913/1805,
  44791. bottom: 92/2005
  44792. }
  44793. },
  44794. back: {
  44795. height: math.unit(53, "meters"),
  44796. name: "Back",
  44797. image: {
  44798. source: "./media/characters/stellar-marbey/back.svg",
  44799. extra: 1960/1851,
  44800. bottom: 28/1988
  44801. }
  44802. },
  44803. mouth: {
  44804. height: math.unit(3.5, "meters"),
  44805. name: "Mouth",
  44806. image: {
  44807. source: "./media/characters/stellar-marbey/mouth.svg"
  44808. }
  44809. },
  44810. },
  44811. [
  44812. {
  44813. name: "Macro",
  44814. height: math.unit(53, "meters"),
  44815. default: true
  44816. },
  44817. ]
  44818. ))
  44819. characterMakers.push(() => makeCharacter(
  44820. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44821. {
  44822. front: {
  44823. height: math.unit(8 + 1/12, "feet"),
  44824. weight: math.unit(233, "lb"),
  44825. name: "Front",
  44826. image: {
  44827. source: "./media/characters/matsu/front.svg",
  44828. extra: 832/772,
  44829. bottom: 40/872
  44830. }
  44831. },
  44832. back: {
  44833. height: math.unit(8 + 1/12, "feet"),
  44834. weight: math.unit(233, "lb"),
  44835. name: "Back",
  44836. image: {
  44837. source: "./media/characters/matsu/back.svg",
  44838. extra: 839/780,
  44839. bottom: 47/886
  44840. }
  44841. },
  44842. },
  44843. [
  44844. {
  44845. name: "Normal",
  44846. height: math.unit(8 + 1/12, "feet"),
  44847. default: true
  44848. },
  44849. ]
  44850. ))
  44851. characterMakers.push(() => makeCharacter(
  44852. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44853. {
  44854. front: {
  44855. height: math.unit(4, "feet"),
  44856. weight: math.unit(148, "lb"),
  44857. name: "Front",
  44858. image: {
  44859. source: "./media/characters/thiz/front.svg",
  44860. extra: 1913/1748,
  44861. bottom: 62/1975
  44862. }
  44863. },
  44864. },
  44865. [
  44866. {
  44867. name: "Normal",
  44868. height: math.unit(4, "feet"),
  44869. default: true
  44870. },
  44871. ]
  44872. ))
  44873. characterMakers.push(() => makeCharacter(
  44874. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44875. {
  44876. front: {
  44877. height: math.unit(7 + 6/12, "feet"),
  44878. weight: math.unit(267, "lb"),
  44879. name: "Front",
  44880. image: {
  44881. source: "./media/characters/marcel/front.svg",
  44882. extra: 1221/1096,
  44883. bottom: 76/1297
  44884. }
  44885. },
  44886. },
  44887. [
  44888. {
  44889. name: "Normal",
  44890. height: math.unit(7 + 6/12, "feet"),
  44891. default: true
  44892. },
  44893. ]
  44894. ))
  44895. characterMakers.push(() => makeCharacter(
  44896. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44897. {
  44898. side: {
  44899. height: math.unit(42, "meters"),
  44900. name: "Side",
  44901. image: {
  44902. source: "./media/characters/flake/side.svg",
  44903. extra: 1525/1306,
  44904. bottom: 209/1734
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(42, "meters"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44918. {
  44919. dressed: {
  44920. height: math.unit(6 + 4/12, "feet"),
  44921. weight: math.unit(520, "lb"),
  44922. name: "Dressed",
  44923. image: {
  44924. source: "./media/characters/someonne/dressed.svg",
  44925. extra: 1020/1010,
  44926. bottom: 178/1198
  44927. }
  44928. },
  44929. undressed: {
  44930. height: math.unit(6 + 4/12, "feet"),
  44931. weight: math.unit(520, "lb"),
  44932. name: "Undressed",
  44933. image: {
  44934. source: "./media/characters/someonne/undressed.svg",
  44935. extra: 1019/1014,
  44936. bottom: 169/1188
  44937. }
  44938. },
  44939. },
  44940. [
  44941. {
  44942. name: "Normal",
  44943. height: math.unit(6 + 4/12, "feet"),
  44944. default: true
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(3, "feet"),
  44953. weight: math.unit(30, "lb"),
  44954. name: "Front",
  44955. image: {
  44956. source: "./media/characters/till/front.svg",
  44957. extra: 892/823,
  44958. bottom: 55/947
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(3, "feet"),
  44966. default: true
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44972. {
  44973. front: {
  44974. height: math.unit(9 + 8/12, "feet"),
  44975. weight: math.unit(800, "lb"),
  44976. name: "Front",
  44977. image: {
  44978. source: "./media/characters/sydney-heki/front.svg",
  44979. extra: 1360/1300,
  44980. bottom: 22/1382
  44981. }
  44982. },
  44983. back: {
  44984. height: math.unit(9 + 8/12, "feet"),
  44985. weight: math.unit(800, "lb"),
  44986. name: "Back",
  44987. image: {
  44988. source: "./media/characters/sydney-heki/back.svg",
  44989. extra: 1356/1293,
  44990. bottom: 12/1368
  44991. }
  44992. },
  44993. frontDressed: {
  44994. height: math.unit(9 + 8/12, "feet"),
  44995. weight: math.unit(800, "lb"),
  44996. name: "Front-dressed",
  44997. image: {
  44998. source: "./media/characters/sydney-heki/front-dressed.svg",
  44999. extra: 1360/1300,
  45000. bottom: 22/1382
  45001. }
  45002. },
  45003. },
  45004. [
  45005. {
  45006. name: "Normal",
  45007. height: math.unit(9 + 8/12, "feet"),
  45008. default: true
  45009. },
  45010. {
  45011. name: "Macro",
  45012. height: math.unit(500, "feet")
  45013. },
  45014. {
  45015. name: "Megamacro",
  45016. height: math.unit(3.6, "miles")
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(200, "cm"),
  45025. weight: math.unit(250, "lb"),
  45026. name: "Front",
  45027. image: {
  45028. source: "./media/characters/fowler-karlsson/front.svg",
  45029. extra: 897/845,
  45030. bottom: 123/1020
  45031. }
  45032. },
  45033. back: {
  45034. height: math.unit(200, "cm"),
  45035. weight: math.unit(250, "lb"),
  45036. name: "Back",
  45037. image: {
  45038. source: "./media/characters/fowler-karlsson/back.svg",
  45039. extra: 999/944,
  45040. bottom: 26/1025
  45041. }
  45042. },
  45043. dick: {
  45044. height: math.unit(1.92, "feet"),
  45045. weight: math.unit(150, "lb"),
  45046. name: "Dick",
  45047. image: {
  45048. source: "./media/characters/fowler-karlsson/dick.svg"
  45049. }
  45050. },
  45051. },
  45052. [
  45053. {
  45054. name: "Normal",
  45055. height: math.unit(200, "cm"),
  45056. default: true
  45057. },
  45058. {
  45059. name: "Smaller Macro",
  45060. height: math.unit(90, "m")
  45061. },
  45062. {
  45063. name: "Macro",
  45064. height: math.unit(150, "m")
  45065. },
  45066. {
  45067. name: "Bigger Macro",
  45068. height: math.unit(300, "m")
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45074. {
  45075. side: {
  45076. height: math.unit(8 + 2/12, "feet"),
  45077. weight: math.unit(1, "tonne"),
  45078. name: "Side",
  45079. image: {
  45080. source: "./media/characters/rylide/side.svg",
  45081. extra: 1318/1034,
  45082. bottom: 106/1424
  45083. }
  45084. },
  45085. sitting: {
  45086. height: math.unit(303, "cm"),
  45087. weight: math.unit(1, "tonne"),
  45088. name: "Sitting",
  45089. image: {
  45090. source: "./media/characters/rylide/sitting.svg",
  45091. extra: 1303/1103,
  45092. bottom: 36/1339
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(8 + 2/12, "feet"),
  45100. default: true
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(5 + 10/12, "feet"),
  45109. weight: math.unit(160, "lb"),
  45110. name: "Front",
  45111. image: {
  45112. source: "./media/characters/pudask/front.svg",
  45113. extra: 1616/1590,
  45114. bottom: 161/1777
  45115. }
  45116. },
  45117. },
  45118. [
  45119. {
  45120. name: "Ferret Height",
  45121. height: math.unit(2 + 5/12, "feet")
  45122. },
  45123. {
  45124. name: "Canon Height",
  45125. height: math.unit(5 + 10/12, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45132. {
  45133. front: {
  45134. height: math.unit(3 + 6/12, "feet"),
  45135. weight: math.unit(60, "lb"),
  45136. name: "Front",
  45137. image: {
  45138. source: "./media/characters/ramita/front.svg",
  45139. extra: 1402/1232,
  45140. bottom: 62/1464
  45141. }
  45142. },
  45143. dressed: {
  45144. height: math.unit(3 + 6/12, "feet"),
  45145. weight: math.unit(60, "lb"),
  45146. name: "Dressed",
  45147. image: {
  45148. source: "./media/characters/ramita/dressed.svg",
  45149. extra: 1534/1249,
  45150. bottom: 50/1584
  45151. }
  45152. },
  45153. },
  45154. [
  45155. {
  45156. name: "Normal",
  45157. height: math.unit(3 + 6/12, "feet"),
  45158. default: true
  45159. },
  45160. ]
  45161. ))
  45162. characterMakers.push(() => makeCharacter(
  45163. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45164. {
  45165. front: {
  45166. height: math.unit(8, "feet"),
  45167. name: "Front",
  45168. image: {
  45169. source: "./media/characters/ark/front.svg",
  45170. extra: 772/693,
  45171. bottom: 45/817
  45172. }
  45173. },
  45174. },
  45175. [
  45176. {
  45177. name: "Normal",
  45178. height: math.unit(8, "feet"),
  45179. default: true
  45180. },
  45181. ]
  45182. ))
  45183. characterMakers.push(() => makeCharacter(
  45184. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45185. {
  45186. front: {
  45187. height: math.unit(6, "feet"),
  45188. weight: math.unit(250, "lb"),
  45189. volume: math.unit(5/8, "gallons"),
  45190. name: "Front",
  45191. image: {
  45192. source: "./media/characters/ludwig-horn/front.svg",
  45193. extra: 1782/1635,
  45194. bottom: 96/1878
  45195. }
  45196. },
  45197. back: {
  45198. height: math.unit(6, "feet"),
  45199. weight: math.unit(250, "lb"),
  45200. volume: math.unit(5/8, "gallons"),
  45201. name: "Back",
  45202. image: {
  45203. source: "./media/characters/ludwig-horn/back.svg",
  45204. extra: 1874/1729,
  45205. bottom: 27/1901
  45206. }
  45207. },
  45208. dick: {
  45209. height: math.unit(1.05, "feet"),
  45210. weight: math.unit(15, "lb"),
  45211. volume: math.unit(5/8, "gallons"),
  45212. name: "Dick",
  45213. image: {
  45214. source: "./media/characters/ludwig-horn/dick.svg"
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Small",
  45221. height: math.unit(6, "feet")
  45222. },
  45223. {
  45224. name: "Typical",
  45225. height: math.unit(12, "feet"),
  45226. default: true
  45227. },
  45228. {
  45229. name: "Building",
  45230. height: math.unit(80, "feet")
  45231. },
  45232. {
  45233. name: "Town",
  45234. height: math.unit(800, "feet")
  45235. },
  45236. {
  45237. name: "Kingdom",
  45238. height: math.unit(80000, "feet")
  45239. },
  45240. {
  45241. name: "Planet",
  45242. height: math.unit(8000000, "feet")
  45243. },
  45244. {
  45245. name: "Universe",
  45246. height: math.unit(8000000000, "feet")
  45247. },
  45248. {
  45249. name: "Transcended",
  45250. height: math.unit(8e27, "feet")
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45256. {
  45257. front: {
  45258. height: math.unit(5, "feet"),
  45259. weight: math.unit(50, "kg"),
  45260. name: "Front",
  45261. image: {
  45262. source: "./media/characters/biot-avery/front.svg",
  45263. extra: 1295/1232,
  45264. bottom: 86/1381
  45265. }
  45266. },
  45267. },
  45268. [
  45269. {
  45270. name: "Normal",
  45271. height: math.unit(5, "feet"),
  45272. default: true
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(6, "feet"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/kitsune-kiro/front.svg",
  45284. extra: 1270/1158,
  45285. bottom: 42/1312
  45286. }
  45287. },
  45288. frontAlt: {
  45289. height: math.unit(6, "feet"),
  45290. name: "Front-alt",
  45291. image: {
  45292. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45293. extra: 1130/1081,
  45294. bottom: 36/1166
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Smol",
  45301. height: math.unit(3, "feet")
  45302. },
  45303. {
  45304. name: "Normal",
  45305. height: math.unit(6, "feet"),
  45306. default: true
  45307. },
  45308. ]
  45309. ))
  45310. characterMakers.push(() => makeCharacter(
  45311. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45312. {
  45313. front: {
  45314. height: math.unit(6, "feet"),
  45315. weight: math.unit(125, "lb"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/jack-thatcher/front.svg",
  45319. extra: 1474/1370,
  45320. bottom: 26/1500
  45321. }
  45322. },
  45323. back: {
  45324. height: math.unit(6, "feet"),
  45325. weight: math.unit(125, "lb"),
  45326. name: "Back",
  45327. image: {
  45328. source: "./media/characters/jack-thatcher/back.svg",
  45329. extra: 1489/1384,
  45330. bottom: 18/1507
  45331. }
  45332. },
  45333. },
  45334. [
  45335. {
  45336. name: "Normal",
  45337. height: math.unit(6, "feet"),
  45338. default: true
  45339. },
  45340. {
  45341. name: "Macro",
  45342. height: math.unit(75, "feet")
  45343. },
  45344. {
  45345. name: "Macro-er",
  45346. height: math.unit(250, "feet")
  45347. },
  45348. ]
  45349. ))
  45350. characterMakers.push(() => makeCharacter(
  45351. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45352. {
  45353. front: {
  45354. height: math.unit(7, "feet"),
  45355. weight: math.unit(110, "kg"),
  45356. name: "Front",
  45357. image: {
  45358. source: "./media/characters/max-hyper/front.svg",
  45359. extra: 1969/1881,
  45360. bottom: 49/2018
  45361. }
  45362. },
  45363. },
  45364. [
  45365. {
  45366. name: "Normal",
  45367. height: math.unit(7, "feet"),
  45368. default: true
  45369. },
  45370. ]
  45371. ))
  45372. characterMakers.push(() => makeCharacter(
  45373. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45374. {
  45375. front: {
  45376. height: math.unit(5 + 5/12, "feet"),
  45377. weight: math.unit(160, "lb"),
  45378. name: "Front",
  45379. image: {
  45380. source: "./media/characters/spook/front.svg",
  45381. extra: 794/791,
  45382. bottom: 54/848
  45383. }
  45384. },
  45385. back: {
  45386. height: math.unit(5 + 5/12, "feet"),
  45387. weight: math.unit(160, "lb"),
  45388. name: "Back",
  45389. image: {
  45390. source: "./media/characters/spook/back.svg",
  45391. extra: 812/798,
  45392. bottom: 32/844
  45393. }
  45394. },
  45395. },
  45396. [
  45397. {
  45398. name: "Normal",
  45399. height: math.unit(5 + 5/12, "feet"),
  45400. default: true
  45401. },
  45402. ]
  45403. ))
  45404. characterMakers.push(() => makeCharacter(
  45405. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45406. {
  45407. front: {
  45408. height: math.unit(18, "feet"),
  45409. name: "Front",
  45410. image: {
  45411. source: "./media/characters/xeaduulix/front.svg",
  45412. extra: 1380/1166,
  45413. bottom: 110/1490
  45414. }
  45415. },
  45416. back: {
  45417. height: math.unit(18, "feet"),
  45418. name: "Back",
  45419. image: {
  45420. source: "./media/characters/xeaduulix/back.svg",
  45421. extra: 1592/1170,
  45422. bottom: 128/1720
  45423. }
  45424. },
  45425. frontNsfw: {
  45426. height: math.unit(18, "feet"),
  45427. name: "Front (NSFW)",
  45428. image: {
  45429. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45430. extra: 1380/1166,
  45431. bottom: 110/1490
  45432. }
  45433. },
  45434. backNsfw: {
  45435. height: math.unit(18, "feet"),
  45436. name: "Back (NSFW)",
  45437. image: {
  45438. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45439. extra: 1592/1170,
  45440. bottom: 128/1720
  45441. }
  45442. },
  45443. },
  45444. [
  45445. {
  45446. name: "Normal",
  45447. height: math.unit(18, "feet"),
  45448. default: true
  45449. },
  45450. ]
  45451. ))
  45452. characterMakers.push(() => makeCharacter(
  45453. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45454. {
  45455. spreadWings: {
  45456. height: math.unit(20, "feet"),
  45457. name: "Spread Wings",
  45458. image: {
  45459. source: "./media/characters/fledge/spread-wings.svg",
  45460. extra: 693/635,
  45461. bottom: 26/719
  45462. }
  45463. },
  45464. front: {
  45465. height: math.unit(20, "feet"),
  45466. name: "Front",
  45467. image: {
  45468. source: "./media/characters/fledge/front.svg",
  45469. extra: 684/637,
  45470. bottom: 18/702
  45471. }
  45472. },
  45473. frontAlt: {
  45474. height: math.unit(20, "feet"),
  45475. name: "Front (Alt)",
  45476. image: {
  45477. source: "./media/characters/fledge/front-alt.svg",
  45478. extra: 708/664,
  45479. bottom: 13/721
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(20, "feet"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/fledge/back.svg",
  45487. extra: 718/634,
  45488. bottom: 22/740
  45489. }
  45490. },
  45491. head: {
  45492. height: math.unit(5.55, "feet"),
  45493. name: "Head",
  45494. image: {
  45495. source: "./media/characters/fledge/head.svg"
  45496. }
  45497. },
  45498. headAlt: {
  45499. height: math.unit(5.1, "feet"),
  45500. name: "Head (Alt)",
  45501. image: {
  45502. source: "./media/characters/fledge/head-alt.svg"
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Small",
  45509. height: math.unit(6 + 2/12, "feet")
  45510. },
  45511. {
  45512. name: "Big",
  45513. height: math.unit(20, "feet"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Giant",
  45518. height: math.unit(100, "feet")
  45519. },
  45520. {
  45521. name: "Macro",
  45522. height: math.unit(200, "feet")
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(1, "meter"),
  45531. name: "Front",
  45532. image: {
  45533. source: "./media/characters/atlas-morenai/front.svg",
  45534. extra: 1275/1043,
  45535. bottom: 19/1294
  45536. }
  45537. },
  45538. back: {
  45539. height: math.unit(1, "meter"),
  45540. name: "Back",
  45541. image: {
  45542. source: "./media/characters/atlas-morenai/back.svg",
  45543. extra: 1141/1001,
  45544. bottom: 25/1166
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(1, "meter"),
  45552. default: true
  45553. },
  45554. {
  45555. name: "Magic-Infused",
  45556. height: math.unit(5, "meters")
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45562. {
  45563. front: {
  45564. height: math.unit(5, "meters"),
  45565. name: "Front",
  45566. image: {
  45567. source: "./media/characters/cintia/front.svg",
  45568. extra: 1312/1228,
  45569. bottom: 38/1350
  45570. }
  45571. },
  45572. back: {
  45573. height: math.unit(5, "meters"),
  45574. name: "Back",
  45575. image: {
  45576. source: "./media/characters/cintia/back.svg",
  45577. extra: 1260/1166,
  45578. bottom: 98/1358
  45579. }
  45580. },
  45581. frontDick: {
  45582. height: math.unit(5, "meters"),
  45583. name: "Front (Dick)",
  45584. image: {
  45585. source: "./media/characters/cintia/front-dick.svg",
  45586. extra: 1312/1228,
  45587. bottom: 38/1350
  45588. }
  45589. },
  45590. backDick: {
  45591. height: math.unit(5, "meters"),
  45592. name: "Back (Dick)",
  45593. image: {
  45594. source: "./media/characters/cintia/back-dick.svg",
  45595. extra: 1260/1166,
  45596. bottom: 98/1358
  45597. }
  45598. },
  45599. bust: {
  45600. height: math.unit(1.97, "meters"),
  45601. name: "Bust",
  45602. image: {
  45603. source: "./media/characters/cintia/bust.svg",
  45604. extra: 617/565,
  45605. bottom: 0/617
  45606. }
  45607. },
  45608. },
  45609. [
  45610. {
  45611. name: "Normal",
  45612. height: math.unit(5, "meters"),
  45613. default: true
  45614. },
  45615. ]
  45616. ))
  45617. characterMakers.push(() => makeCharacter(
  45618. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45619. {
  45620. side: {
  45621. height: math.unit(100, "feet"),
  45622. name: "Side",
  45623. image: {
  45624. source: "./media/characters/denora/side.svg",
  45625. extra: 875/803,
  45626. bottom: 9/884
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Standard",
  45633. height: math.unit(100, "feet"),
  45634. default: true
  45635. },
  45636. {
  45637. name: "Grand",
  45638. height: math.unit(1000, "feet")
  45639. },
  45640. {
  45641. name: "Conquering",
  45642. height: math.unit(10000, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45648. {
  45649. dressed: {
  45650. height: math.unit(8 + 5/12, "feet"),
  45651. weight: math.unit(700, "lb"),
  45652. name: "Dressed",
  45653. image: {
  45654. source: "./media/characters/kiva/dressed.svg",
  45655. extra: 1102/1055,
  45656. bottom: 60/1162
  45657. }
  45658. },
  45659. nude: {
  45660. height: math.unit(8 + 5/12, "feet"),
  45661. weight: math.unit(700, "lb"),
  45662. name: "Nude",
  45663. image: {
  45664. source: "./media/characters/kiva/nude.svg",
  45665. extra: 1102/1055,
  45666. bottom: 60/1162
  45667. }
  45668. },
  45669. },
  45670. [
  45671. {
  45672. name: "Base Height",
  45673. height: math.unit(8 + 5/12, "feet"),
  45674. default: true
  45675. },
  45676. {
  45677. name: "Macro",
  45678. height: math.unit(100, "feet")
  45679. },
  45680. {
  45681. name: "Max",
  45682. height: math.unit(3280, "feet")
  45683. },
  45684. ]
  45685. ))
  45686. characterMakers.push(() => makeCharacter(
  45687. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45688. {
  45689. front: {
  45690. height: math.unit(6 + 8/12, "feet"),
  45691. weight: math.unit(250, "lb"),
  45692. name: "Front",
  45693. image: {
  45694. source: "./media/characters/ztragon/front.svg",
  45695. extra: 1825/1684,
  45696. bottom: 98/1923
  45697. }
  45698. },
  45699. },
  45700. [
  45701. {
  45702. name: "Normal",
  45703. height: math.unit(6 + 8/12, "feet"),
  45704. default: true
  45705. },
  45706. {
  45707. name: "Macro",
  45708. height: math.unit(80, "feet")
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45714. {
  45715. front: {
  45716. height: math.unit(10.4, "feet"),
  45717. weight: math.unit(2, "tons"),
  45718. name: "Front",
  45719. image: {
  45720. source: "./media/characters/yesenia/front.svg",
  45721. extra: 1479/1474,
  45722. bottom: 233/1712
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(10.4, "feet"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45736. {
  45737. normal: {
  45738. height: math.unit(6 + 1/12, "feet"),
  45739. weight: math.unit(180, "lb"),
  45740. name: "Normal",
  45741. image: {
  45742. source: "./media/characters/leanne-lycheborne/normal.svg",
  45743. extra: 1748/1660,
  45744. bottom: 98/1846
  45745. }
  45746. },
  45747. were: {
  45748. height: math.unit(12, "feet"),
  45749. weight: math.unit(1600, "lb"),
  45750. name: "Were",
  45751. image: {
  45752. source: "./media/characters/leanne-lycheborne/were.svg",
  45753. extra: 1485/1432,
  45754. bottom: 66/1551
  45755. }
  45756. },
  45757. },
  45758. [
  45759. {
  45760. name: "Normal",
  45761. height: math.unit(6 + 1/12, "feet"),
  45762. default: true
  45763. },
  45764. ]
  45765. ))
  45766. characterMakers.push(() => makeCharacter(
  45767. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45768. {
  45769. side: {
  45770. height: math.unit(13, "feet"),
  45771. name: "Side",
  45772. image: {
  45773. source: "./media/characters/kira-tyler/side.svg",
  45774. extra: 693/393,
  45775. bottom: 58/751
  45776. }
  45777. },
  45778. },
  45779. [
  45780. {
  45781. name: "Normal",
  45782. height: math.unit(13, "feet"),
  45783. default: true
  45784. },
  45785. ]
  45786. ))
  45787. characterMakers.push(() => makeCharacter(
  45788. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45789. {
  45790. front: {
  45791. height: math.unit(10.3, "feet"),
  45792. weight: math.unit(150, "lb"),
  45793. name: "Front",
  45794. image: {
  45795. source: "./media/characters/blaze/front.svg",
  45796. extra: 1378/1286,
  45797. bottom: 172/1550
  45798. }
  45799. },
  45800. },
  45801. [
  45802. {
  45803. name: "Normal",
  45804. height: math.unit(10.3, "feet"),
  45805. default: true
  45806. },
  45807. ]
  45808. ))
  45809. characterMakers.push(() => makeCharacter(
  45810. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45811. {
  45812. side: {
  45813. height: math.unit(2, "meters"),
  45814. weight: math.unit(400, "kg"),
  45815. name: "Side",
  45816. image: {
  45817. source: "./media/characters/anu/side.svg",
  45818. extra: 506/394,
  45819. bottom: 18/524
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Humanoid",
  45826. height: math.unit(2, "meters")
  45827. },
  45828. {
  45829. name: "Normal",
  45830. height: math.unit(5, "meters"),
  45831. default: true
  45832. },
  45833. ]
  45834. ))
  45835. characterMakers.push(() => makeCharacter(
  45836. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45837. {
  45838. front: {
  45839. height: math.unit(5 + 5/12, "feet"),
  45840. weight: math.unit(170, "lb"),
  45841. name: "Front",
  45842. image: {
  45843. source: "./media/characters/synx-the-lynx/front.svg",
  45844. extra: 1893/1745,
  45845. bottom: 17/1910
  45846. }
  45847. },
  45848. side: {
  45849. height: math.unit(5 + 5/12, "feet"),
  45850. weight: math.unit(170, "lb"),
  45851. name: "Side",
  45852. image: {
  45853. source: "./media/characters/synx-the-lynx/side.svg",
  45854. extra: 1884/1740,
  45855. bottom: 39/1923
  45856. }
  45857. },
  45858. back: {
  45859. height: math.unit(5 + 5/12, "feet"),
  45860. weight: math.unit(170, "lb"),
  45861. name: "Back",
  45862. image: {
  45863. source: "./media/characters/synx-the-lynx/back.svg",
  45864. extra: 1903/1755,
  45865. bottom: 14/1917
  45866. }
  45867. },
  45868. },
  45869. [
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(5 + 5/12, "feet"),
  45873. default: true
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45879. {
  45880. back: {
  45881. height: math.unit(15, "feet"),
  45882. name: "Back",
  45883. image: {
  45884. source: "./media/characters/nadezda-fex/back.svg",
  45885. extra: 1695/1481,
  45886. bottom: 25/1720
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Normal",
  45893. height: math.unit(15, "feet"),
  45894. default: true
  45895. },
  45896. {
  45897. name: "Macro",
  45898. height: math.unit(2.5, "miles")
  45899. },
  45900. {
  45901. name: "Goddess",
  45902. height: math.unit(2, "multiverses")
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45908. {
  45909. front: {
  45910. height: math.unit(216, "cm"),
  45911. name: "Front",
  45912. image: {
  45913. source: "./media/characters/lev/front.svg",
  45914. extra: 1728/1670,
  45915. bottom: 82/1810
  45916. }
  45917. },
  45918. back: {
  45919. height: math.unit(216, "cm"),
  45920. name: "Back",
  45921. image: {
  45922. source: "./media/characters/lev/back.svg",
  45923. extra: 1738/1675,
  45924. bottom: 24/1762
  45925. }
  45926. },
  45927. dressed: {
  45928. height: math.unit(216, "cm"),
  45929. name: "Dressed",
  45930. image: {
  45931. source: "./media/characters/lev/dressed.svg",
  45932. extra: 1397/1351,
  45933. bottom: 73/1470
  45934. }
  45935. },
  45936. head: {
  45937. height: math.unit(0.51, "meter"),
  45938. name: "Head",
  45939. image: {
  45940. source: "./media/characters/lev/head.svg"
  45941. }
  45942. },
  45943. },
  45944. [
  45945. {
  45946. name: "Normal",
  45947. height: math.unit(216, "cm"),
  45948. default: true
  45949. },
  45950. {
  45951. name: "Relatively Macro",
  45952. height: math.unit(80, "meters")
  45953. },
  45954. {
  45955. name: "Megamacro",
  45956. height: math.unit(21600, "meters")
  45957. },
  45958. {
  45959. name: "Megamacro+",
  45960. height: math.unit(64800, "meters")
  45961. },
  45962. ]
  45963. ))
  45964. characterMakers.push(() => makeCharacter(
  45965. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45966. {
  45967. front: {
  45968. height: math.unit(2, "meters"),
  45969. weight: math.unit(80, "kg"),
  45970. name: "Front",
  45971. image: {
  45972. source: "./media/characters/moka/front.svg",
  45973. extra: 1337/1255,
  45974. bottom: 58/1395
  45975. }
  45976. },
  45977. },
  45978. [
  45979. {
  45980. name: "Micro",
  45981. height: math.unit(15, "cm")
  45982. },
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(2, "meters"),
  45986. default: true
  45987. },
  45988. {
  45989. name: "Macro",
  45990. height: math.unit(20, "meters"),
  45991. },
  45992. ]
  45993. ))
  45994. characterMakers.push(() => makeCharacter(
  45995. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45996. {
  45997. front: {
  45998. height: math.unit(9, "feet"),
  45999. weight: math.unit(240, "lb"),
  46000. name: "Front",
  46001. image: {
  46002. source: "./media/characters/kuzco/front.svg",
  46003. extra: 1593/1487,
  46004. bottom: 32/1625
  46005. }
  46006. },
  46007. side: {
  46008. height: math.unit(9, "feet"),
  46009. weight: math.unit(240, "lb"),
  46010. name: "Side",
  46011. image: {
  46012. source: "./media/characters/kuzco/side.svg",
  46013. extra: 1575/1485,
  46014. bottom: 30/1605
  46015. }
  46016. },
  46017. back: {
  46018. height: math.unit(9, "feet"),
  46019. weight: math.unit(240, "lb"),
  46020. name: "Back",
  46021. image: {
  46022. source: "./media/characters/kuzco/back.svg",
  46023. extra: 1603/1514,
  46024. bottom: 14/1617
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(9, "feet"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46038. {
  46039. side: {
  46040. height: math.unit(2, "meters"),
  46041. weight: math.unit(300, "kg"),
  46042. name: "Side",
  46043. image: {
  46044. source: "./media/characters/ceruleus/side.svg",
  46045. extra: 1068/974,
  46046. bottom: 126/1194
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(16, "meters"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46060. {
  46061. front: {
  46062. height: math.unit(9, "feet"),
  46063. weight: math.unit(500, "kg"),
  46064. name: "Front",
  46065. image: {
  46066. source: "./media/characters/acouya/front.svg",
  46067. extra: 1660/1473,
  46068. bottom: 28/1688
  46069. }
  46070. },
  46071. },
  46072. [
  46073. {
  46074. name: "Normal",
  46075. height: math.unit(9, "feet"),
  46076. default: true
  46077. },
  46078. ]
  46079. ))
  46080. characterMakers.push(() => makeCharacter(
  46081. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46082. {
  46083. front: {
  46084. height: math.unit(5 + 6/12, "feet"),
  46085. weight: math.unit(195, "lb"),
  46086. name: "Front",
  46087. image: {
  46088. source: "./media/characters/vant/front.svg",
  46089. extra: 1396/1320,
  46090. bottom: 20/1416
  46091. }
  46092. },
  46093. back: {
  46094. height: math.unit(5 + 6/12, "feet"),
  46095. weight: math.unit(195, "lb"),
  46096. name: "Back",
  46097. image: {
  46098. source: "./media/characters/vant/back.svg",
  46099. extra: 1396/1320,
  46100. bottom: 20/1416
  46101. }
  46102. },
  46103. maw: {
  46104. height: math.unit(0.75, "feet"),
  46105. name: "Maw",
  46106. image: {
  46107. source: "./media/characters/vant/maw.svg"
  46108. }
  46109. },
  46110. paw: {
  46111. height: math.unit(1.07, "feet"),
  46112. name: "Paw",
  46113. image: {
  46114. source: "./media/characters/vant/paw.svg"
  46115. }
  46116. },
  46117. },
  46118. [
  46119. {
  46120. name: "Micro",
  46121. height: math.unit(0.25, "inches")
  46122. },
  46123. {
  46124. name: "Normal",
  46125. height: math.unit(5 + 6/12, "feet"),
  46126. default: true
  46127. },
  46128. {
  46129. name: "Macro",
  46130. height: math.unit(75, "feet")
  46131. },
  46132. ]
  46133. ))
  46134. characterMakers.push(() => makeCharacter(
  46135. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46136. {
  46137. front: {
  46138. height: math.unit(30, "meters"),
  46139. weight: math.unit(363, "tons"),
  46140. name: "Front",
  46141. image: {
  46142. source: "./media/characters/ahra/front.svg",
  46143. extra: 1914/1814,
  46144. bottom: 46/1960
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Macro",
  46151. height: math.unit(30, "meters"),
  46152. default: true
  46153. },
  46154. ]
  46155. ))
  46156. characterMakers.push(() => makeCharacter(
  46157. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46158. {
  46159. undressed: {
  46160. height: math.unit(2, "m"),
  46161. weight: math.unit(250, "kg"),
  46162. name: "Undressed",
  46163. image: {
  46164. source: "./media/characters/coriander/undressed.svg",
  46165. extra: 1757/1606,
  46166. bottom: 107/1864
  46167. }
  46168. },
  46169. dressed: {
  46170. height: math.unit(2, "m"),
  46171. weight: math.unit(250, "kg"),
  46172. name: "Dressed",
  46173. image: {
  46174. source: "./media/characters/coriander/dressed.svg",
  46175. extra: 1757/1606,
  46176. bottom: 107/1864
  46177. }
  46178. },
  46179. },
  46180. [
  46181. {
  46182. name: "Normal",
  46183. height: math.unit(4, "meters"),
  46184. default: true
  46185. },
  46186. {
  46187. name: "XL",
  46188. height: math.unit(6, "meters")
  46189. },
  46190. {
  46191. name: "XXL",
  46192. height: math.unit(8, "meters")
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46198. {
  46199. front: {
  46200. height: math.unit(6, "feet"),
  46201. name: "Front",
  46202. image: {
  46203. source: "./media/characters/syrinx/front.svg",
  46204. extra: 1557/1259,
  46205. bottom: 171/1728
  46206. }
  46207. },
  46208. },
  46209. [
  46210. {
  46211. name: "Normal",
  46212. height: math.unit(6 + 3/12, "feet"),
  46213. default: true
  46214. },
  46215. ]
  46216. ))
  46217. characterMakers.push(() => makeCharacter(
  46218. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46219. {
  46220. front: {
  46221. height: math.unit(11 + 6/12, "feet"),
  46222. weight: math.unit(1.5, "tons"),
  46223. name: "Front",
  46224. image: {
  46225. source: "./media/characters/bor/front.svg",
  46226. extra: 1189/1109,
  46227. bottom: 170/1359
  46228. }
  46229. },
  46230. },
  46231. [
  46232. {
  46233. name: "Normal",
  46234. height: math.unit(11 + 6/12, "feet"),
  46235. default: true
  46236. },
  46237. {
  46238. name: "Macro",
  46239. height: math.unit(32 + 9/12, "feet")
  46240. },
  46241. ]
  46242. ))
  46243. characterMakers.push(() => makeCharacter(
  46244. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46245. {
  46246. anthro: {
  46247. height: math.unit(9, "feet"),
  46248. weight: math.unit(2076, "lb"),
  46249. name: "Anthro",
  46250. image: {
  46251. source: "./media/characters/abacus/anthro.svg",
  46252. extra: 1540/1494,
  46253. bottom: 233/1773
  46254. }
  46255. },
  46256. pigeon: {
  46257. height: math.unit(1, "feet"),
  46258. name: "Pigeon",
  46259. image: {
  46260. source: "./media/characters/abacus/pigeon.svg",
  46261. extra: 528/525,
  46262. bottom: 46/574
  46263. }
  46264. },
  46265. },
  46266. [
  46267. {
  46268. name: "Normal",
  46269. height: math.unit(9, "feet"),
  46270. default: true
  46271. },
  46272. ]
  46273. ))
  46274. characterMakers.push(() => makeCharacter(
  46275. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46276. {
  46277. side: {
  46278. height: math.unit(6, "feet"),
  46279. name: "Side",
  46280. image: {
  46281. source: "./media/characters/delkhan/side.svg",
  46282. extra: 1884/1786,
  46283. bottom: 308/2192
  46284. }
  46285. },
  46286. head: {
  46287. height: math.unit(3.38, "feet"),
  46288. name: "Head",
  46289. image: {
  46290. source: "./media/characters/delkhan/head.svg"
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(72, "feet"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Giant",
  46302. height: math.unit(172, "feet")
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46308. {
  46309. standing: {
  46310. height: math.unit(6, "feet"),
  46311. name: "Standing",
  46312. image: {
  46313. source: "./media/characters/euchidat/standing.svg",
  46314. extra: 1612/1553,
  46315. bottom: 116/1728
  46316. }
  46317. },
  46318. leaning: {
  46319. height: math.unit(6, "feet"),
  46320. name: "Leaning",
  46321. image: {
  46322. source: "./media/characters/euchidat/leaning.svg",
  46323. extra: 1719/1674,
  46324. bottom: 27/1746
  46325. }
  46326. },
  46327. },
  46328. [
  46329. {
  46330. name: "Normal",
  46331. height: math.unit(175, "feet"),
  46332. default: true
  46333. },
  46334. {
  46335. name: "Megamacro",
  46336. height: math.unit(190, "miles")
  46337. },
  46338. {
  46339. name: "Gigamacro",
  46340. height: math.unit(190000, "miles")
  46341. },
  46342. ]
  46343. ))
  46344. characterMakers.push(() => makeCharacter(
  46345. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46346. {
  46347. front: {
  46348. height: math.unit(6, "feet"),
  46349. weight: math.unit(150, "lb"),
  46350. name: "Front",
  46351. image: {
  46352. source: "./media/characters/rebecca-stack/front.svg",
  46353. extra: 1256/1201,
  46354. bottom: 18/1274
  46355. }
  46356. },
  46357. },
  46358. [
  46359. {
  46360. name: "Normal",
  46361. height: math.unit(5 + 8/12, "feet"),
  46362. default: true
  46363. },
  46364. {
  46365. name: "Demolitionist",
  46366. height: math.unit(200, "feet")
  46367. },
  46368. {
  46369. name: "Out of Control",
  46370. height: math.unit(2, "miles")
  46371. },
  46372. {
  46373. name: "Giga",
  46374. height: math.unit(7200, "miles")
  46375. },
  46376. ]
  46377. ))
  46378. characterMakers.push(() => makeCharacter(
  46379. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46380. {
  46381. front: {
  46382. height: math.unit(6, "feet"),
  46383. weight: math.unit(150, "lb"),
  46384. name: "Front",
  46385. image: {
  46386. source: "./media/characters/jenny-cartwright/front.svg",
  46387. extra: 1384/1376,
  46388. bottom: 58/1442
  46389. }
  46390. },
  46391. },
  46392. [
  46393. {
  46394. name: "Normal",
  46395. height: math.unit(6 + 7/12, "feet"),
  46396. default: true
  46397. },
  46398. {
  46399. name: "Librarian",
  46400. height: math.unit(55, "feet")
  46401. },
  46402. {
  46403. name: "Sightseer",
  46404. height: math.unit(50, "miles")
  46405. },
  46406. {
  46407. name: "Giga",
  46408. height: math.unit(30000, "miles")
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46414. {
  46415. nude: {
  46416. height: math.unit(8, "feet"),
  46417. weight: math.unit(225, "lb"),
  46418. name: "Nude",
  46419. image: {
  46420. source: "./media/characters/marvy/nude.svg",
  46421. extra: 1900/1683,
  46422. bottom: 89/1989
  46423. }
  46424. },
  46425. dressed: {
  46426. height: math.unit(8, "feet"),
  46427. weight: math.unit(225, "lb"),
  46428. name: "Dressed",
  46429. image: {
  46430. source: "./media/characters/marvy/dressed.svg",
  46431. extra: 1900/1683,
  46432. bottom: 89/1989
  46433. }
  46434. },
  46435. head: {
  46436. height: math.unit(2.85, "feet"),
  46437. name: "Head",
  46438. image: {
  46439. source: "./media/characters/marvy/head.svg"
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(8, "feet"),
  46447. default: true
  46448. },
  46449. ]
  46450. ))
  46451. characterMakers.push(() => makeCharacter(
  46452. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46453. {
  46454. front: {
  46455. height: math.unit(8, "feet"),
  46456. weight: math.unit(250, "lb"),
  46457. name: "Front",
  46458. image: {
  46459. source: "./media/characters/leah/front.svg",
  46460. extra: 1257/1149,
  46461. bottom: 109/1366
  46462. }
  46463. },
  46464. },
  46465. [
  46466. {
  46467. name: "Normal",
  46468. height: math.unit(8, "feet"),
  46469. default: true
  46470. },
  46471. {
  46472. name: "Minimacro",
  46473. height: math.unit(40, "feet")
  46474. },
  46475. {
  46476. name: "Macro",
  46477. height: math.unit(124, "feet")
  46478. },
  46479. {
  46480. name: "Megamacro",
  46481. height: math.unit(850, "feet")
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46487. {
  46488. side: {
  46489. height: math.unit(13 + 6/12, "feet"),
  46490. weight: math.unit(3200, "lb"),
  46491. name: "Side",
  46492. image: {
  46493. source: "./media/characters/alvir/side.svg",
  46494. extra: 896/589,
  46495. bottom: 26/922
  46496. }
  46497. },
  46498. },
  46499. [
  46500. {
  46501. name: "Normal",
  46502. height: math.unit(13 + 6/12, "feet"),
  46503. default: true
  46504. },
  46505. ]
  46506. ))
  46507. characterMakers.push(() => makeCharacter(
  46508. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46509. {
  46510. front: {
  46511. height: math.unit(5 + 4/12, "feet"),
  46512. weight: math.unit(236, "lb"),
  46513. name: "Front",
  46514. image: {
  46515. source: "./media/characters/zaina-khalil/front.svg",
  46516. extra: 1533/1485,
  46517. bottom: 94/1627
  46518. }
  46519. },
  46520. side: {
  46521. height: math.unit(5 + 4/12, "feet"),
  46522. weight: math.unit(236, "lb"),
  46523. name: "Side",
  46524. image: {
  46525. source: "./media/characters/zaina-khalil/side.svg",
  46526. extra: 1537/1498,
  46527. bottom: 66/1603
  46528. }
  46529. },
  46530. back: {
  46531. height: math.unit(5 + 4/12, "feet"),
  46532. weight: math.unit(236, "lb"),
  46533. name: "Back",
  46534. image: {
  46535. source: "./media/characters/zaina-khalil/back.svg",
  46536. extra: 1546/1494,
  46537. bottom: 89/1635
  46538. }
  46539. },
  46540. },
  46541. [
  46542. {
  46543. name: "Normal",
  46544. height: math.unit(5 + 4/12, "feet"),
  46545. default: true
  46546. },
  46547. ]
  46548. ))
  46549. characterMakers.push(() => makeCharacter(
  46550. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46551. {
  46552. side: {
  46553. height: math.unit(12, "feet"),
  46554. weight: math.unit(4000, "lb"),
  46555. name: "Side",
  46556. image: {
  46557. source: "./media/characters/terry/side.svg",
  46558. extra: 1518/1439,
  46559. bottom: 149/1667
  46560. }
  46561. },
  46562. },
  46563. [
  46564. {
  46565. name: "Normal",
  46566. height: math.unit(12, "feet"),
  46567. default: true
  46568. },
  46569. ]
  46570. ))
  46571. characterMakers.push(() => makeCharacter(
  46572. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46573. {
  46574. front: {
  46575. height: math.unit(12, "feet"),
  46576. weight: math.unit(1500, "lb"),
  46577. name: "Front",
  46578. image: {
  46579. source: "./media/characters/kahea/front.svg",
  46580. extra: 1722/1617,
  46581. bottom: 179/1901
  46582. }
  46583. },
  46584. },
  46585. [
  46586. {
  46587. name: "Normal",
  46588. height: math.unit(12, "feet"),
  46589. default: true
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46595. {
  46596. demonFront: {
  46597. height: math.unit(36, "feet"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/alex-xuria/demon-front.svg",
  46601. extra: 1705/1673,
  46602. bottom: 198/1903
  46603. },
  46604. form: "demon",
  46605. default: true
  46606. },
  46607. demonBack: {
  46608. height: math.unit(36, "feet"),
  46609. name: "Back",
  46610. image: {
  46611. source: "./media/characters/alex-xuria/demon-back.svg",
  46612. extra: 1725/1693,
  46613. bottom: 70/1795
  46614. },
  46615. form: "demon"
  46616. },
  46617. demonHead: {
  46618. height: math.unit(2.14, "meters"),
  46619. name: "Head",
  46620. image: {
  46621. source: "./media/characters/alex-xuria/demon-head.svg"
  46622. },
  46623. form: "demon"
  46624. },
  46625. demonHand: {
  46626. height: math.unit(1.61, "meters"),
  46627. name: "Hand",
  46628. image: {
  46629. source: "./media/characters/alex-xuria/demon-hand.svg"
  46630. },
  46631. form: "demon"
  46632. },
  46633. demonPaw: {
  46634. height: math.unit(1.35, "meters"),
  46635. name: "Paw",
  46636. image: {
  46637. source: "./media/characters/alex-xuria/demon-paw.svg"
  46638. },
  46639. form: "demon"
  46640. },
  46641. demonFoot: {
  46642. height: math.unit(2.2, "meters"),
  46643. name: "Foot",
  46644. image: {
  46645. source: "./media/characters/alex-xuria/demon-foot.svg"
  46646. },
  46647. form: "demon"
  46648. },
  46649. demonCock: {
  46650. height: math.unit(1.74, "meters"),
  46651. name: "Cock",
  46652. image: {
  46653. source: "./media/characters/alex-xuria/demon-cock.svg"
  46654. },
  46655. form: "demon"
  46656. },
  46657. demonTailClosed: {
  46658. height: math.unit(1.47, "meters"),
  46659. name: "Tail (Closed)",
  46660. image: {
  46661. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46662. },
  46663. form: "demon"
  46664. },
  46665. demonTailOpen: {
  46666. height: math.unit(2.85, "meters"),
  46667. name: "Tail (Open)",
  46668. image: {
  46669. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46670. },
  46671. form: "demon"
  46672. },
  46673. incubusFront: {
  46674. height: math.unit(12, "feet"),
  46675. name: "Front",
  46676. image: {
  46677. source: "./media/characters/alex-xuria/incubus-front.svg",
  46678. extra: 1754/1677,
  46679. bottom: 125/1879
  46680. },
  46681. form: "incubus",
  46682. default: true
  46683. },
  46684. incubusBack: {
  46685. height: math.unit(12, "feet"),
  46686. name: "Back",
  46687. image: {
  46688. source: "./media/characters/alex-xuria/incubus-back.svg",
  46689. extra: 1702/1647,
  46690. bottom: 30/1732
  46691. },
  46692. form: "incubus"
  46693. },
  46694. incubusHead: {
  46695. height: math.unit(3.45, "feet"),
  46696. name: "Head",
  46697. image: {
  46698. source: "./media/characters/alex-xuria/incubus-head.svg"
  46699. },
  46700. form: "incubus"
  46701. },
  46702. rabbitFront: {
  46703. height: math.unit(6, "feet"),
  46704. name: "Front",
  46705. image: {
  46706. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46707. extra: 1369/1349,
  46708. bottom: 45/1414
  46709. },
  46710. form: "rabbit",
  46711. default: true
  46712. },
  46713. rabbitSide: {
  46714. height: math.unit(6, "feet"),
  46715. name: "Side",
  46716. image: {
  46717. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46718. extra: 1370/1356,
  46719. bottom: 37/1407
  46720. },
  46721. form: "rabbit"
  46722. },
  46723. rabbitBack: {
  46724. height: math.unit(6, "feet"),
  46725. name: "Back",
  46726. image: {
  46727. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46728. extra: 1375/1358,
  46729. bottom: 43/1418
  46730. },
  46731. form: "rabbit"
  46732. },
  46733. },
  46734. [
  46735. {
  46736. name: "Normal",
  46737. height: math.unit(6, "feet"),
  46738. default: true,
  46739. form: "rabbit"
  46740. },
  46741. {
  46742. name: "Incubus",
  46743. height: math.unit(12, "feet"),
  46744. default: true,
  46745. form: "incubus"
  46746. },
  46747. {
  46748. name: "Demon",
  46749. height: math.unit(36, "feet"),
  46750. default: true,
  46751. form: "demon"
  46752. }
  46753. ],
  46754. {
  46755. "demon": {
  46756. name: "Demon",
  46757. default: true
  46758. },
  46759. "incubus": {
  46760. name: "Incubus",
  46761. },
  46762. "rabbit": {
  46763. name: "Rabbit"
  46764. }
  46765. }
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46769. {
  46770. front: {
  46771. height: math.unit(7 + 5/12, "feet"),
  46772. weight: math.unit(510, "lb"),
  46773. name: "Front",
  46774. image: {
  46775. source: "./media/characters/syrup/front.svg",
  46776. extra: 932/916,
  46777. bottom: 26/958
  46778. }
  46779. },
  46780. },
  46781. [
  46782. {
  46783. name: "Normal",
  46784. height: math.unit(7 + 5/12, "feet"),
  46785. default: true
  46786. },
  46787. {
  46788. name: "Big",
  46789. height: math.unit(50, "feet")
  46790. },
  46791. {
  46792. name: "Macro",
  46793. height: math.unit(300, "feet")
  46794. },
  46795. {
  46796. name: "Megamacro",
  46797. height: math.unit(1, "mile")
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46803. {
  46804. front: {
  46805. height: math.unit(6 + 9/12, "feet"),
  46806. name: "Front",
  46807. image: {
  46808. source: "./media/characters/zeimne/front.svg",
  46809. extra: 1969/1806,
  46810. bottom: 53/2022
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Normal",
  46817. height: math.unit(6 + 9/12, "feet"),
  46818. default: true
  46819. },
  46820. {
  46821. name: "Giant",
  46822. height: math.unit(550, "feet")
  46823. },
  46824. {
  46825. name: "Mega",
  46826. height: math.unit(3, "miles")
  46827. },
  46828. {
  46829. name: "Giga",
  46830. height: math.unit(250, "miles")
  46831. },
  46832. {
  46833. name: "Tera",
  46834. height: math.unit(1, "AU")
  46835. },
  46836. ]
  46837. ))
  46838. characterMakers.push(() => makeCharacter(
  46839. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46840. {
  46841. front: {
  46842. height: math.unit(5 + 2/12, "feet"),
  46843. name: "Front",
  46844. image: {
  46845. source: "./media/characters/grar/front.svg",
  46846. extra: 1331/1119,
  46847. bottom: 60/1391
  46848. }
  46849. },
  46850. back: {
  46851. height: math.unit(5 + 2/12, "feet"),
  46852. name: "Back",
  46853. image: {
  46854. source: "./media/characters/grar/back.svg",
  46855. extra: 1385/1169,
  46856. bottom: 23/1408
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(5 + 2/12, "feet"),
  46864. default: true
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46870. {
  46871. front: {
  46872. height: math.unit(13 + 7/12, "feet"),
  46873. weight: math.unit(2200, "lb"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/endraya/front.svg",
  46877. extra: 1289/1215,
  46878. bottom: 50/1339
  46879. }
  46880. },
  46881. nude: {
  46882. height: math.unit(13 + 7/12, "feet"),
  46883. weight: math.unit(2200, "lb"),
  46884. name: "Nude",
  46885. image: {
  46886. source: "./media/characters/endraya/nude.svg",
  46887. extra: 1247/1171,
  46888. bottom: 40/1287
  46889. }
  46890. },
  46891. head: {
  46892. height: math.unit(2.6, "feet"),
  46893. name: "Head",
  46894. image: {
  46895. source: "./media/characters/endraya/head.svg"
  46896. }
  46897. },
  46898. slit: {
  46899. height: math.unit(3.4, "feet"),
  46900. name: "Slit",
  46901. image: {
  46902. source: "./media/characters/endraya/slit.svg"
  46903. }
  46904. },
  46905. },
  46906. [
  46907. {
  46908. name: "Normal",
  46909. height: math.unit(13 + 7/12, "feet"),
  46910. default: true
  46911. },
  46912. {
  46913. name: "Macro",
  46914. height: math.unit(200, "feet")
  46915. },
  46916. ]
  46917. ))
  46918. characterMakers.push(() => makeCharacter(
  46919. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46920. {
  46921. front: {
  46922. height: math.unit(1.81, "meters"),
  46923. weight: math.unit(69, "kg"),
  46924. name: "Front",
  46925. image: {
  46926. source: "./media/characters/rodryana/front.svg",
  46927. extra: 2002/1921,
  46928. bottom: 53/2055
  46929. }
  46930. },
  46931. back: {
  46932. height: math.unit(1.81, "meters"),
  46933. weight: math.unit(69, "kg"),
  46934. name: "Back",
  46935. image: {
  46936. source: "./media/characters/rodryana/back.svg",
  46937. extra: 1993/1926,
  46938. bottom: 48/2041
  46939. }
  46940. },
  46941. maw: {
  46942. height: math.unit(0.19769417475, "meters"),
  46943. name: "Maw",
  46944. image: {
  46945. source: "./media/characters/rodryana/maw.svg"
  46946. }
  46947. },
  46948. slit: {
  46949. height: math.unit(0.31631067961, "meters"),
  46950. name: "Slit",
  46951. image: {
  46952. source: "./media/characters/rodryana/slit.svg"
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Normal",
  46959. height: math.unit(1.81, "meters")
  46960. },
  46961. {
  46962. name: "Mini Macro",
  46963. height: math.unit(181, "meters")
  46964. },
  46965. {
  46966. name: "Macro",
  46967. height: math.unit(452, "meters"),
  46968. default: true
  46969. },
  46970. {
  46971. name: "Mega Macro",
  46972. height: math.unit(1.375, "km")
  46973. },
  46974. {
  46975. name: "Giga Macro",
  46976. height: math.unit(13.575, "km")
  46977. },
  46978. ]
  46979. ))
  46980. characterMakers.push(() => makeCharacter(
  46981. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46982. {
  46983. front: {
  46984. height: math.unit(6, "feet"),
  46985. weight: math.unit(1000, "lb"),
  46986. name: "Front",
  46987. image: {
  46988. source: "./media/characters/asaya/front.svg",
  46989. extra: 1460/1200,
  46990. bottom: 71/1531
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(8, "km"),
  46998. default: true
  46999. },
  47000. ]
  47001. ))
  47002. characterMakers.push(() => makeCharacter(
  47003. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47004. {
  47005. front: {
  47006. height: math.unit(3.5, "meters"),
  47007. name: "Front",
  47008. image: {
  47009. source: "./media/characters/sarzu-and-israz/front.svg",
  47010. extra: 1570/1558,
  47011. bottom: 150/1720
  47012. },
  47013. },
  47014. back: {
  47015. height: math.unit(3.5, "meters"),
  47016. name: "Back",
  47017. image: {
  47018. source: "./media/characters/sarzu-and-israz/back.svg",
  47019. extra: 1523/1509,
  47020. bottom: 132/1655
  47021. },
  47022. },
  47023. frontFemale: {
  47024. height: math.unit(3.5, "meters"),
  47025. name: "Front (Female)",
  47026. image: {
  47027. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47028. extra: 1570/1558,
  47029. bottom: 150/1720
  47030. },
  47031. },
  47032. frontHerm: {
  47033. height: math.unit(3.5, "meters"),
  47034. name: "Front (Herm)",
  47035. image: {
  47036. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47037. extra: 1570/1558,
  47038. bottom: 150/1720
  47039. },
  47040. },
  47041. },
  47042. [
  47043. {
  47044. name: "Normal",
  47045. height: math.unit(3.5, "meters"),
  47046. default: true,
  47047. },
  47048. {
  47049. name: "Macro",
  47050. height: math.unit(65.5, "meters"),
  47051. },
  47052. ],
  47053. ))
  47054. characterMakers.push(() => makeCharacter(
  47055. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47056. {
  47057. front: {
  47058. height: math.unit(6, "feet"),
  47059. weight: math.unit(250, "lb"),
  47060. name: "Front",
  47061. image: {
  47062. source: "./media/characters/zenimma/front.svg",
  47063. extra: 1346/1320,
  47064. bottom: 58/1404
  47065. }
  47066. },
  47067. back: {
  47068. height: math.unit(6, "feet"),
  47069. weight: math.unit(250, "lb"),
  47070. name: "Back",
  47071. image: {
  47072. source: "./media/characters/zenimma/back.svg",
  47073. extra: 1324/1308,
  47074. bottom: 44/1368
  47075. }
  47076. },
  47077. dick: {
  47078. height: math.unit(1.44, "feet"),
  47079. name: "Dick",
  47080. image: {
  47081. source: "./media/characters/zenimma/dick.svg"
  47082. }
  47083. },
  47084. },
  47085. [
  47086. {
  47087. name: "Canon Height",
  47088. height: math.unit(66, "miles"),
  47089. default: true
  47090. },
  47091. ]
  47092. ))
  47093. characterMakers.push(() => makeCharacter(
  47094. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47095. {
  47096. nude: {
  47097. height: math.unit(6, "feet"),
  47098. weight: math.unit(150, "lb"),
  47099. name: "Nude",
  47100. image: {
  47101. source: "./media/characters/shavon/nude.svg",
  47102. extra: 1242/1096,
  47103. bottom: 98/1340
  47104. }
  47105. },
  47106. dressed: {
  47107. height: math.unit(6, "feet"),
  47108. weight: math.unit(150, "lb"),
  47109. name: "Dressed",
  47110. image: {
  47111. source: "./media/characters/shavon/dressed.svg",
  47112. extra: 1242/1096,
  47113. bottom: 98/1340
  47114. }
  47115. },
  47116. },
  47117. [
  47118. {
  47119. name: "Macro",
  47120. height: math.unit(255, "feet"),
  47121. default: true
  47122. },
  47123. ]
  47124. ))
  47125. characterMakers.push(() => makeCharacter(
  47126. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47127. {
  47128. front: {
  47129. height: math.unit(6, "feet"),
  47130. name: "Front",
  47131. image: {
  47132. source: "./media/characters/steph/front.svg",
  47133. extra: 1430/1330,
  47134. bottom: 54/1484
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(6, "feet"),
  47142. default: true
  47143. },
  47144. ]
  47145. ))
  47146. characterMakers.push(() => makeCharacter(
  47147. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47148. {
  47149. front: {
  47150. height: math.unit(9, "feet"),
  47151. weight: math.unit(400, "lb"),
  47152. name: "Front",
  47153. image: {
  47154. source: "./media/characters/kil'aman/front.svg",
  47155. extra: 1210/1159,
  47156. bottom: 109/1319
  47157. }
  47158. },
  47159. head: {
  47160. height: math.unit(2.14, "feet"),
  47161. name: "Head",
  47162. image: {
  47163. source: "./media/characters/kil'aman/head.svg"
  47164. }
  47165. },
  47166. maw: {
  47167. height: math.unit(1.21, "feet"),
  47168. name: "Maw",
  47169. image: {
  47170. source: "./media/characters/kil'aman/maw.svg"
  47171. }
  47172. },
  47173. foot: {
  47174. height: math.unit(1.7, "feet"),
  47175. name: "Foot",
  47176. image: {
  47177. source: "./media/characters/kil'aman/foot.svg"
  47178. }
  47179. },
  47180. dick: {
  47181. height: math.unit(2.1, "feet"),
  47182. name: "Dick",
  47183. image: {
  47184. source: "./media/characters/kil'aman/dick.svg"
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Normal",
  47191. height: math.unit(9, "feet")
  47192. },
  47193. {
  47194. name: "Canon Height",
  47195. height: math.unit(10, "miles"),
  47196. default: true
  47197. },
  47198. {
  47199. name: "Maximum",
  47200. height: math.unit(6e9, "miles")
  47201. },
  47202. ]
  47203. ))
  47204. characterMakers.push(() => makeCharacter(
  47205. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47206. {
  47207. front: {
  47208. height: math.unit(90, "feet"),
  47209. weight: math.unit(675000, "lb"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/qadan/front.svg",
  47213. extra: 1012/1004,
  47214. bottom: 78/1090
  47215. }
  47216. },
  47217. back: {
  47218. height: math.unit(90, "feet"),
  47219. weight: math.unit(675000, "lb"),
  47220. name: "Back",
  47221. image: {
  47222. source: "./media/characters/qadan/back.svg",
  47223. extra: 1042/1031,
  47224. bottom: 55/1097
  47225. }
  47226. },
  47227. armored: {
  47228. height: math.unit(90, "feet"),
  47229. weight: math.unit(675000, "lb"),
  47230. name: "Armored",
  47231. image: {
  47232. source: "./media/characters/qadan/armored.svg",
  47233. extra: 1047/1037,
  47234. bottom: 48/1095
  47235. }
  47236. },
  47237. },
  47238. [
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(90, "feet"),
  47242. default: true
  47243. },
  47244. ]
  47245. ))
  47246. characterMakers.push(() => makeCharacter(
  47247. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47248. {
  47249. front: {
  47250. height: math.unit(6, "feet"),
  47251. weight: math.unit(225, "lb"),
  47252. name: "Front",
  47253. image: {
  47254. source: "./media/characters/brooke/front.svg",
  47255. extra: 1050/1010,
  47256. bottom: 66/1116
  47257. }
  47258. },
  47259. back: {
  47260. height: math.unit(6, "feet"),
  47261. weight: math.unit(225, "lb"),
  47262. name: "Back",
  47263. image: {
  47264. source: "./media/characters/brooke/back.svg",
  47265. extra: 1053/1013,
  47266. bottom: 41/1094
  47267. }
  47268. },
  47269. dressed: {
  47270. height: math.unit(6, "feet"),
  47271. weight: math.unit(225, "lb"),
  47272. name: "Dressed",
  47273. image: {
  47274. source: "./media/characters/brooke/dressed.svg",
  47275. extra: 1050/1010,
  47276. bottom: 66/1116
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Canon Height",
  47283. height: math.unit(500, "miles"),
  47284. default: true
  47285. },
  47286. ]
  47287. ))
  47288. characterMakers.push(() => makeCharacter(
  47289. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47290. {
  47291. front: {
  47292. height: math.unit(6 + 2/12, "feet"),
  47293. weight: math.unit(210, "lb"),
  47294. name: "Front",
  47295. image: {
  47296. source: "./media/characters/wubs/front.svg",
  47297. extra: 1345/1325,
  47298. bottom: 70/1415
  47299. }
  47300. },
  47301. back: {
  47302. height: math.unit(6 + 2/12, "feet"),
  47303. weight: math.unit(210, "lb"),
  47304. name: "Back",
  47305. image: {
  47306. source: "./media/characters/wubs/back.svg",
  47307. extra: 1296/1275,
  47308. bottom: 58/1354
  47309. }
  47310. },
  47311. },
  47312. [
  47313. {
  47314. name: "Normal",
  47315. height: math.unit(6 + 2/12, "feet"),
  47316. default: true
  47317. },
  47318. {
  47319. name: "Macro",
  47320. height: math.unit(1000, "feet")
  47321. },
  47322. {
  47323. name: "Megamacro",
  47324. height: math.unit(1, "mile")
  47325. },
  47326. ]
  47327. ))
  47328. characterMakers.push(() => makeCharacter(
  47329. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47330. {
  47331. front: {
  47332. height: math.unit(4, "feet"),
  47333. weight: math.unit(120, "lb"),
  47334. name: "Front",
  47335. image: {
  47336. source: "./media/characters/blue/front.svg",
  47337. extra: 1636/1525,
  47338. bottom: 43/1679
  47339. }
  47340. },
  47341. back: {
  47342. height: math.unit(4, "feet"),
  47343. weight: math.unit(120, "lb"),
  47344. name: "Back",
  47345. image: {
  47346. source: "./media/characters/blue/back.svg",
  47347. extra: 1660/1560,
  47348. bottom: 57/1717
  47349. }
  47350. },
  47351. paws: {
  47352. height: math.unit(0.826, "feet"),
  47353. name: "Paws",
  47354. image: {
  47355. source: "./media/characters/blue/paws.svg"
  47356. }
  47357. },
  47358. },
  47359. [
  47360. {
  47361. name: "Micro",
  47362. height: math.unit(3, "inches")
  47363. },
  47364. {
  47365. name: "Normal",
  47366. height: math.unit(4, "feet"),
  47367. default: true
  47368. },
  47369. {
  47370. name: "Femenine Form",
  47371. height: math.unit(14, "feet")
  47372. },
  47373. {
  47374. name: "Werebat Form",
  47375. height: math.unit(18, "feet")
  47376. },
  47377. ]
  47378. ))
  47379. characterMakers.push(() => makeCharacter(
  47380. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47381. {
  47382. female: {
  47383. height: math.unit(7 + 4/12, "feet"),
  47384. weight: math.unit(243, "lb"),
  47385. name: "Female",
  47386. image: {
  47387. source: "./media/characters/kaya/female.svg",
  47388. extra: 975/898,
  47389. bottom: 34/1009
  47390. }
  47391. },
  47392. herm: {
  47393. height: math.unit(7 + 4/12, "feet"),
  47394. weight: math.unit(243, "lb"),
  47395. name: "Herm",
  47396. image: {
  47397. source: "./media/characters/kaya/herm.svg",
  47398. extra: 975/898,
  47399. bottom: 34/1009
  47400. }
  47401. },
  47402. },
  47403. [
  47404. {
  47405. name: "Normal",
  47406. height: math.unit(7 + 4/12, "feet"),
  47407. default: true
  47408. },
  47409. ]
  47410. ))
  47411. characterMakers.push(() => makeCharacter(
  47412. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47413. {
  47414. female: {
  47415. height: math.unit(9 + 4/12, "feet"),
  47416. weight: math.unit(398, "lb"),
  47417. name: "Female",
  47418. image: {
  47419. source: "./media/characters/kassandra/female.svg",
  47420. extra: 908/839,
  47421. bottom: 61/969
  47422. }
  47423. },
  47424. intersex: {
  47425. height: math.unit(9 + 4/12, "feet"),
  47426. weight: math.unit(398, "lb"),
  47427. name: "Intersex",
  47428. image: {
  47429. source: "./media/characters/kassandra/intersex.svg",
  47430. extra: 908/839,
  47431. bottom: 61/969
  47432. }
  47433. },
  47434. },
  47435. [
  47436. {
  47437. name: "Normal",
  47438. height: math.unit(9 + 4/12, "feet"),
  47439. default: true
  47440. },
  47441. ]
  47442. ))
  47443. characterMakers.push(() => makeCharacter(
  47444. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47445. {
  47446. front: {
  47447. height: math.unit(3, "meters"),
  47448. name: "Front",
  47449. image: {
  47450. source: "./media/characters/amy/front.svg",
  47451. extra: 1380/1343,
  47452. bottom: 70/1450
  47453. }
  47454. },
  47455. back: {
  47456. height: math.unit(3, "meters"),
  47457. name: "Back",
  47458. image: {
  47459. source: "./media/characters/amy/back.svg",
  47460. extra: 1380/1347,
  47461. bottom: 66/1446
  47462. }
  47463. },
  47464. },
  47465. [
  47466. {
  47467. name: "Normal",
  47468. height: math.unit(3, "meters"),
  47469. default: true
  47470. },
  47471. ]
  47472. ))
  47473. characterMakers.push(() => makeCharacter(
  47474. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47475. {
  47476. side: {
  47477. height: math.unit(47, "cm"),
  47478. weight: math.unit(10.8, "kg"),
  47479. name: "Side",
  47480. image: {
  47481. source: "./media/characters/alphaschakal/side.svg",
  47482. extra: 1058/568,
  47483. bottom: 62/1120
  47484. }
  47485. },
  47486. back: {
  47487. height: math.unit(78, "cm"),
  47488. weight: math.unit(10.8, "kg"),
  47489. name: "Back",
  47490. image: {
  47491. source: "./media/characters/alphaschakal/back.svg",
  47492. extra: 1102/942,
  47493. bottom: 185/1287
  47494. }
  47495. },
  47496. head: {
  47497. height: math.unit(28, "cm"),
  47498. name: "Head",
  47499. image: {
  47500. source: "./media/characters/alphaschakal/head.svg",
  47501. extra: 696/508,
  47502. bottom: 0/696
  47503. }
  47504. },
  47505. paw: {
  47506. height: math.unit(16, "cm"),
  47507. name: "Paw",
  47508. image: {
  47509. source: "./media/characters/alphaschakal/paw.svg"
  47510. }
  47511. },
  47512. },
  47513. [
  47514. {
  47515. name: "Normal",
  47516. height: math.unit(47, "cm"),
  47517. default: true
  47518. },
  47519. {
  47520. name: "Macro",
  47521. height: math.unit(340, "cm")
  47522. },
  47523. ]
  47524. ))
  47525. characterMakers.push(() => makeCharacter(
  47526. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47527. {
  47528. front: {
  47529. height: math.unit(36, "earths"),
  47530. name: "Front",
  47531. image: {
  47532. source: "./media/characters/ecobyss/front.svg",
  47533. extra: 1282/1215,
  47534. bottom: 11/1293
  47535. }
  47536. },
  47537. back: {
  47538. height: math.unit(36, "earths"),
  47539. name: "Back",
  47540. image: {
  47541. source: "./media/characters/ecobyss/back.svg",
  47542. extra: 1291/1222,
  47543. bottom: 8/1299
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Normal",
  47550. height: math.unit(36, "earths"),
  47551. default: true
  47552. },
  47553. ]
  47554. ))
  47555. characterMakers.push(() => makeCharacter(
  47556. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47557. {
  47558. front: {
  47559. height: math.unit(12, "feet"),
  47560. name: "Front",
  47561. image: {
  47562. source: "./media/characters/vasuk/front.svg",
  47563. extra: 1326/1207,
  47564. bottom: 64/1390
  47565. }
  47566. },
  47567. },
  47568. [
  47569. {
  47570. name: "Normal",
  47571. height: math.unit(12, "feet"),
  47572. default: true
  47573. },
  47574. ]
  47575. ))
  47576. characterMakers.push(() => makeCharacter(
  47577. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47578. {
  47579. side: {
  47580. height: math.unit(100, "feet"),
  47581. name: "Side",
  47582. image: {
  47583. source: "./media/characters/linneaus/side.svg",
  47584. extra: 987/807,
  47585. bottom: 47/1034
  47586. }
  47587. },
  47588. },
  47589. [
  47590. {
  47591. name: "Macro",
  47592. height: math.unit(100, "feet"),
  47593. default: true
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(8, "feet"),
  47602. weight: math.unit(1200, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/nyterious-daligdig/front.svg",
  47606. extra: 1284/1094,
  47607. bottom: 84/1368
  47608. }
  47609. },
  47610. back: {
  47611. height: math.unit(8, "feet"),
  47612. weight: math.unit(1200, "lb"),
  47613. name: "Back",
  47614. image: {
  47615. source: "./media/characters/nyterious-daligdig/back.svg",
  47616. extra: 1301/1121,
  47617. bottom: 129/1430
  47618. }
  47619. },
  47620. mouth: {
  47621. height: math.unit(1.464, "feet"),
  47622. name: "Mouth",
  47623. image: {
  47624. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Small",
  47631. height: math.unit(8, "feet"),
  47632. default: true
  47633. },
  47634. {
  47635. name: "Normal",
  47636. height: math.unit(15, "feet")
  47637. },
  47638. {
  47639. name: "Macro",
  47640. height: math.unit(90, "feet")
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(7 + 4/12, "feet"),
  47649. weight: math.unit(252, "lb"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/bandel/front.svg",
  47653. extra: 1946/1775,
  47654. bottom: 26/1972
  47655. }
  47656. },
  47657. back: {
  47658. height: math.unit(7 + 4/12, "feet"),
  47659. weight: math.unit(252, "lb"),
  47660. name: "Back",
  47661. image: {
  47662. source: "./media/characters/bandel/back.svg",
  47663. extra: 1940/1770,
  47664. bottom: 25/1965
  47665. }
  47666. },
  47667. maw: {
  47668. height: math.unit(2.15, "feet"),
  47669. name: "Maw",
  47670. image: {
  47671. source: "./media/characters/bandel/maw.svg"
  47672. }
  47673. },
  47674. stomach: {
  47675. height: math.unit(1.95, "feet"),
  47676. name: "Stomach",
  47677. image: {
  47678. source: "./media/characters/bandel/stomach.svg"
  47679. }
  47680. },
  47681. },
  47682. [
  47683. {
  47684. name: "Normal",
  47685. height: math.unit(7 + 4/12, "feet"),
  47686. default: true
  47687. },
  47688. ]
  47689. ))
  47690. characterMakers.push(() => makeCharacter(
  47691. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47692. {
  47693. front: {
  47694. height: math.unit(10 + 5/12, "feet"),
  47695. weight: math.unit(773.5, "kg"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/zed/front.svg",
  47699. extra: 987/941,
  47700. bottom: 52/1039
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Short",
  47707. height: math.unit(5 + 4/12, "feet")
  47708. },
  47709. {
  47710. name: "Average",
  47711. height: math.unit(10 + 5/12, "feet"),
  47712. default: true
  47713. },
  47714. {
  47715. name: "Mini-Macro",
  47716. height: math.unit(24 + 9/12, "feet")
  47717. },
  47718. {
  47719. name: "Macro",
  47720. height: math.unit(249, "feet")
  47721. },
  47722. {
  47723. name: "Mega-Macro",
  47724. height: math.unit(12490, "feet")
  47725. },
  47726. {
  47727. name: "Giga-Macro",
  47728. height: math.unit(24.9, "miles")
  47729. },
  47730. {
  47731. name: "Tera-Macro",
  47732. height: math.unit(24900, "miles")
  47733. },
  47734. {
  47735. name: "Cosmic Scale",
  47736. height: math.unit(38.9, "lightyears")
  47737. },
  47738. {
  47739. name: "Universal Scale",
  47740. height: math.unit(138e12, "lightyears")
  47741. },
  47742. ]
  47743. ))
  47744. characterMakers.push(() => makeCharacter(
  47745. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47746. {
  47747. front: {
  47748. height: math.unit(1561, "inches"),
  47749. name: "Front",
  47750. image: {
  47751. source: "./media/characters/ivan/front.svg",
  47752. extra: 1126/1071,
  47753. bottom: 26/1152
  47754. }
  47755. },
  47756. back: {
  47757. height: math.unit(1561, "inches"),
  47758. name: "Back",
  47759. image: {
  47760. source: "./media/characters/ivan/back.svg",
  47761. extra: 1134/1079,
  47762. bottom: 30/1164
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Normal",
  47769. height: math.unit(1561, "inches"),
  47770. default: true
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47776. {
  47777. front: {
  47778. height: math.unit(5 + 7/12, "feet"),
  47779. weight: math.unit(150, "lb"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/robin-arctic-hare/front.svg",
  47783. extra: 1148/974,
  47784. bottom: 20/1168
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Normal",
  47791. height: math.unit(5 + 7/12, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47798. {
  47799. side: {
  47800. height: math.unit(5, "feet"),
  47801. name: "Side",
  47802. image: {
  47803. source: "./media/characters/birch/side.svg",
  47804. extra: 985/796,
  47805. bottom: 111/1096
  47806. }
  47807. },
  47808. },
  47809. [
  47810. {
  47811. name: "Normal",
  47812. height: math.unit(5, "feet"),
  47813. default: true
  47814. },
  47815. ]
  47816. ))
  47817. characterMakers.push(() => makeCharacter(
  47818. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47819. {
  47820. front: {
  47821. height: math.unit(4, "feet"),
  47822. name: "Front",
  47823. image: {
  47824. source: "./media/characters/rasp/front.svg",
  47825. extra: 561/478,
  47826. bottom: 74/635
  47827. }
  47828. },
  47829. },
  47830. [
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(4, "feet"),
  47834. default: true
  47835. },
  47836. ]
  47837. ))
  47838. characterMakers.push(() => makeCharacter(
  47839. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47840. {
  47841. front: {
  47842. height: math.unit(4 + 6/12, "feet"),
  47843. name: "Front",
  47844. image: {
  47845. source: "./media/characters/agatha/front.svg",
  47846. extra: 947/933,
  47847. bottom: 42/989
  47848. }
  47849. },
  47850. back: {
  47851. height: math.unit(4 + 6/12, "feet"),
  47852. name: "Back",
  47853. image: {
  47854. source: "./media/characters/agatha/back.svg",
  47855. extra: 935/922,
  47856. bottom: 48/983
  47857. }
  47858. },
  47859. },
  47860. [
  47861. {
  47862. name: "Normal",
  47863. height: math.unit(4 + 6 /12, "feet"),
  47864. default: true
  47865. },
  47866. {
  47867. name: "Max Size",
  47868. height: math.unit(500, "feet")
  47869. },
  47870. ]
  47871. ))
  47872. characterMakers.push(() => makeCharacter(
  47873. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47874. {
  47875. side: {
  47876. height: math.unit(30, "feet"),
  47877. name: "Side",
  47878. image: {
  47879. source: "./media/characters/roggy/side.svg",
  47880. extra: 909/643,
  47881. bottom: 63/972
  47882. }
  47883. },
  47884. lounging: {
  47885. height: math.unit(20, "feet"),
  47886. name: "Lounging",
  47887. image: {
  47888. source: "./media/characters/roggy/lounging.svg",
  47889. extra: 643/479,
  47890. bottom: 145/788
  47891. }
  47892. },
  47893. handpaw: {
  47894. height: math.unit(13.1, "feet"),
  47895. name: "Handpaw",
  47896. image: {
  47897. source: "./media/characters/roggy/handpaw.svg"
  47898. }
  47899. },
  47900. footpaw: {
  47901. height: math.unit(15.8, "feet"),
  47902. name: "Footpaw",
  47903. image: {
  47904. source: "./media/characters/roggy/footpaw.svg"
  47905. }
  47906. },
  47907. },
  47908. [
  47909. {
  47910. name: "Menacing",
  47911. height: math.unit(30, "feet"),
  47912. default: true
  47913. },
  47914. ]
  47915. ))
  47916. characterMakers.push(() => makeCharacter(
  47917. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47918. {
  47919. front: {
  47920. height: math.unit(5 + 7/12, "feet"),
  47921. weight: math.unit(135, "lb"),
  47922. name: "Front",
  47923. image: {
  47924. source: "./media/characters/naomi/front.svg",
  47925. extra: 1209/1154,
  47926. bottom: 129/1338
  47927. }
  47928. },
  47929. back: {
  47930. height: math.unit(5 + 7/12, "feet"),
  47931. weight: math.unit(135, "lb"),
  47932. name: "Back",
  47933. image: {
  47934. source: "./media/characters/naomi/back.svg",
  47935. extra: 1252/1190,
  47936. bottom: 23/1275
  47937. }
  47938. },
  47939. },
  47940. [
  47941. {
  47942. name: "Normal",
  47943. height: math.unit(5 + 7 /12, "feet"),
  47944. default: true
  47945. },
  47946. ]
  47947. ))
  47948. characterMakers.push(() => makeCharacter(
  47949. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47950. {
  47951. side: {
  47952. height: math.unit(35, "meters"),
  47953. name: "Side",
  47954. image: {
  47955. source: "./media/characters/kimpi/side.svg",
  47956. extra: 419/382,
  47957. bottom: 63/482
  47958. }
  47959. },
  47960. hand: {
  47961. height: math.unit(8.96, "meters"),
  47962. name: "Hand",
  47963. image: {
  47964. source: "./media/characters/kimpi/hand.svg"
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(35, "meters"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(4 + 4/12, "feet"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/pepper-purrloin/front.svg",
  47984. extra: 1141/1024,
  47985. bottom: 21/1162
  47986. }
  47987. },
  47988. },
  47989. [
  47990. {
  47991. name: "Normal",
  47992. height: math.unit(4 + 4/12, "feet"),
  47993. default: true
  47994. },
  47995. ]
  47996. ))
  47997. characterMakers.push(() => makeCharacter(
  47998. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47999. {
  48000. front: {
  48001. height: math.unit(6 + 2/12, "feet"),
  48002. name: "Front",
  48003. image: {
  48004. source: "./media/characters/raphael/front.svg",
  48005. extra: 1101/962,
  48006. bottom: 59/1160
  48007. }
  48008. },
  48009. },
  48010. [
  48011. {
  48012. name: "Normal",
  48013. height: math.unit(6 + 2/12, "feet"),
  48014. default: true
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48020. {
  48021. front: {
  48022. height: math.unit(6, "feet"),
  48023. weight: math.unit(150, "lb"),
  48024. name: "Front",
  48025. image: {
  48026. source: "./media/characters/victor-williams/front.svg",
  48027. extra: 1894/1825,
  48028. bottom: 67/1961
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Normal",
  48035. height: math.unit(6, "feet"),
  48036. default: true
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(5 + 8/12, "feet"),
  48045. weight: math.unit(150, "lb"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/rachel/front.svg",
  48049. extra: 1902/1787,
  48050. bottom: 46/1948
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Base Height",
  48057. height: math.unit(5 + 8/12, "feet"),
  48058. default: true
  48059. },
  48060. {
  48061. name: "Macro",
  48062. height: math.unit(200, "feet")
  48063. },
  48064. {
  48065. name: "Mega Macro",
  48066. height: math.unit(1, "mile")
  48067. },
  48068. {
  48069. name: "Giga Macro",
  48070. height: math.unit(1500, "miles")
  48071. },
  48072. {
  48073. name: "Tera Macro",
  48074. height: math.unit(8000, "miles")
  48075. },
  48076. {
  48077. name: "Tera Macro+",
  48078. height: math.unit(2e5, "miles")
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48084. {
  48085. front: {
  48086. height: math.unit(6.5, "feet"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48090. extra: 860/819,
  48091. bottom: 307/1167
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(6.5, "feet"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48099. extra: 880/837,
  48100. bottom: 395/1275
  48101. }
  48102. },
  48103. sleeping: {
  48104. height: math.unit(2.79, "feet"),
  48105. name: "Sleeping",
  48106. image: {
  48107. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48108. extra: 465/383,
  48109. bottom: 263/728
  48110. }
  48111. },
  48112. maw: {
  48113. height: math.unit(2.52, "feet"),
  48114. name: "Maw",
  48115. image: {
  48116. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48117. }
  48118. },
  48119. },
  48120. [
  48121. {
  48122. name: "Normal",
  48123. height: math.unit(6.5, "feet"),
  48124. default: true
  48125. },
  48126. ]
  48127. ))
  48128. characterMakers.push(() => makeCharacter(
  48129. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48130. {
  48131. front: {
  48132. height: math.unit(5, "feet"),
  48133. name: "Front",
  48134. image: {
  48135. source: "./media/characters/nova-nerium/front.svg",
  48136. extra: 1548/1392,
  48137. bottom: 374/1922
  48138. }
  48139. },
  48140. back: {
  48141. height: math.unit(5, "feet"),
  48142. name: "Back",
  48143. image: {
  48144. source: "./media/characters/nova-nerium/back.svg",
  48145. extra: 1658/1468,
  48146. bottom: 257/1915
  48147. }
  48148. },
  48149. },
  48150. [
  48151. {
  48152. name: "Normal",
  48153. height: math.unit(5, "feet"),
  48154. default: true
  48155. },
  48156. ]
  48157. ))
  48158. characterMakers.push(() => makeCharacter(
  48159. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48160. {
  48161. front: {
  48162. height: math.unit(5 + 4/12, "feet"),
  48163. name: "Front",
  48164. image: {
  48165. source: "./media/characters/ashe-pyriph/front.svg",
  48166. extra: 1935/1747,
  48167. bottom: 60/1995
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Normal",
  48174. height: math.unit(5 + 4/12, "feet"),
  48175. default: true
  48176. },
  48177. ]
  48178. ))
  48179. characterMakers.push(() => makeCharacter(
  48180. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48181. {
  48182. front: {
  48183. height: math.unit(8.7, "feet"),
  48184. name: "Front",
  48185. image: {
  48186. source: "./media/characters/flicker-wisp/front.svg",
  48187. extra: 1835/1613,
  48188. bottom: 449/2284
  48189. }
  48190. },
  48191. side: {
  48192. height: math.unit(8.7, "feet"),
  48193. name: "Side",
  48194. image: {
  48195. source: "./media/characters/flicker-wisp/side.svg",
  48196. extra: 1841/1642,
  48197. bottom: 336/2177
  48198. },
  48199. default: true
  48200. },
  48201. maw: {
  48202. height: math.unit(3.35, "feet"),
  48203. name: "Maw",
  48204. image: {
  48205. source: "./media/characters/flicker-wisp/maw.svg",
  48206. extra: 2338/1506,
  48207. bottom: 0/2338
  48208. }
  48209. },
  48210. ovipositor: {
  48211. height: math.unit(4.95, "feet"),
  48212. name: "Ovipositor",
  48213. image: {
  48214. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48215. }
  48216. },
  48217. egg: {
  48218. height: math.unit(0.385, "feet"),
  48219. weight: math.unit(2, "lb"),
  48220. name: "Egg",
  48221. image: {
  48222. source: "./media/characters/flicker-wisp/egg.svg"
  48223. }
  48224. },
  48225. },
  48226. [
  48227. {
  48228. name: "Normal",
  48229. height: math.unit(8.7, "feet"),
  48230. default: true
  48231. },
  48232. ]
  48233. ))
  48234. characterMakers.push(() => makeCharacter(
  48235. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48236. {
  48237. side: {
  48238. height: math.unit(11, "feet"),
  48239. name: "Side",
  48240. image: {
  48241. source: "./media/characters/faefnul/side.svg",
  48242. extra: 1100/1007,
  48243. bottom: 0/1100
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(11, "feet"),
  48251. default: true
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48257. {
  48258. front: {
  48259. height: math.unit(6 + 2/12, "feet"),
  48260. name: "Front",
  48261. image: {
  48262. source: "./media/characters/shady/front.svg",
  48263. extra: 502/461,
  48264. bottom: 9/511
  48265. }
  48266. },
  48267. kneeling: {
  48268. height: math.unit(4.6, "feet"),
  48269. name: "Kneeling",
  48270. image: {
  48271. source: "./media/characters/shady/kneeling.svg",
  48272. extra: 1328/1219,
  48273. bottom: 117/1445
  48274. }
  48275. },
  48276. maw: {
  48277. height: math.unit(2, "feet"),
  48278. name: "Maw",
  48279. image: {
  48280. source: "./media/characters/shady/maw.svg"
  48281. }
  48282. },
  48283. },
  48284. [
  48285. {
  48286. name: "Nano",
  48287. height: math.unit(1, "mm")
  48288. },
  48289. {
  48290. name: "Micro",
  48291. height: math.unit(12, "mm")
  48292. },
  48293. {
  48294. name: "Tiny",
  48295. height: math.unit(3, "inches")
  48296. },
  48297. {
  48298. name: "Normal",
  48299. height: math.unit(6 + 2/12, "feet"),
  48300. default: true
  48301. },
  48302. {
  48303. name: "Big",
  48304. height: math.unit(15, "feet")
  48305. },
  48306. {
  48307. name: "Macro",
  48308. height: math.unit(150, "feet")
  48309. },
  48310. {
  48311. name: "Titanic",
  48312. height: math.unit(500, "feet")
  48313. },
  48314. ]
  48315. ))
  48316. characterMakers.push(() => makeCharacter(
  48317. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48318. {
  48319. front: {
  48320. height: math.unit(12, "feet"),
  48321. name: "Front",
  48322. image: {
  48323. source: "./media/characters/fenrir/front.svg",
  48324. extra: 968/875,
  48325. bottom: 22/990
  48326. }
  48327. },
  48328. },
  48329. [
  48330. {
  48331. name: "Big",
  48332. height: math.unit(12, "feet"),
  48333. default: true
  48334. },
  48335. ]
  48336. ))
  48337. characterMakers.push(() => makeCharacter(
  48338. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48339. {
  48340. front: {
  48341. height: math.unit(5 + 4/12, "feet"),
  48342. name: "Front",
  48343. image: {
  48344. source: "./media/characters/makar/front.svg",
  48345. extra: 1181/1112,
  48346. bottom: 78/1259
  48347. }
  48348. },
  48349. },
  48350. [
  48351. {
  48352. name: "Normal",
  48353. height: math.unit(5 + 4/12, "feet"),
  48354. default: true
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48360. {
  48361. front: {
  48362. height: math.unit(5 + 7/12, "feet"),
  48363. name: "Front",
  48364. image: {
  48365. source: "./media/characters/callow/front.svg",
  48366. extra: 1482/1304,
  48367. bottom: 23/1505
  48368. }
  48369. },
  48370. back: {
  48371. height: math.unit(5 + 7/12, "feet"),
  48372. name: "Back",
  48373. image: {
  48374. source: "./media/characters/callow/back.svg",
  48375. extra: 1484/1296,
  48376. bottom: 25/1509
  48377. }
  48378. },
  48379. },
  48380. [
  48381. {
  48382. name: "Micro",
  48383. height: math.unit(3, "inches"),
  48384. default: true
  48385. },
  48386. {
  48387. name: "Normal",
  48388. height: math.unit(5 + 7/12, "feet")
  48389. },
  48390. ]
  48391. ))
  48392. characterMakers.push(() => makeCharacter(
  48393. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48394. {
  48395. front: {
  48396. height: math.unit(6 + 2/12, "feet"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/natel/front.svg",
  48400. extra: 1833/1692,
  48401. bottom: 166/1999
  48402. }
  48403. },
  48404. },
  48405. [
  48406. {
  48407. name: "Normal",
  48408. height: math.unit(6 + 2/12, "feet"),
  48409. default: true
  48410. },
  48411. ]
  48412. ))
  48413. characterMakers.push(() => makeCharacter(
  48414. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48415. {
  48416. front: {
  48417. height: math.unit(1.75, "meters"),
  48418. name: "Front",
  48419. image: {
  48420. source: "./media/characters/misu/front.svg",
  48421. extra: 1690/1558,
  48422. bottom: 234/1924
  48423. }
  48424. },
  48425. back: {
  48426. height: math.unit(1.75, "meters"),
  48427. name: "Back",
  48428. image: {
  48429. source: "./media/characters/misu/back.svg",
  48430. extra: 1762/1618,
  48431. bottom: 146/1908
  48432. }
  48433. },
  48434. frontNude: {
  48435. height: math.unit(1.75, "meters"),
  48436. name: "Front (Nude)",
  48437. image: {
  48438. source: "./media/characters/misu/front-nude.svg",
  48439. extra: 1690/1558,
  48440. bottom: 234/1924
  48441. }
  48442. },
  48443. backNude: {
  48444. height: math.unit(1.75, "meters"),
  48445. name: "Back (Nude)",
  48446. image: {
  48447. source: "./media/characters/misu/back-nude.svg",
  48448. extra: 1762/1618,
  48449. bottom: 146/1908
  48450. }
  48451. },
  48452. frontErect: {
  48453. height: math.unit(1.75, "meters"),
  48454. name: "Front (Erect)",
  48455. image: {
  48456. source: "./media/characters/misu/front-erect.svg",
  48457. extra: 1690/1558,
  48458. bottom: 234/1924
  48459. }
  48460. },
  48461. maw: {
  48462. height: math.unit(0.47, "meters"),
  48463. name: "Maw",
  48464. image: {
  48465. source: "./media/characters/misu/maw.svg"
  48466. }
  48467. },
  48468. head: {
  48469. height: math.unit(0.35, "meters"),
  48470. name: "Head",
  48471. image: {
  48472. source: "./media/characters/misu/head.svg"
  48473. }
  48474. },
  48475. rear: {
  48476. height: math.unit(0.47, "meters"),
  48477. name: "Rear",
  48478. image: {
  48479. source: "./media/characters/misu/rear.svg"
  48480. }
  48481. },
  48482. },
  48483. [
  48484. {
  48485. name: "Normal",
  48486. height: math.unit(1.75, "meters")
  48487. },
  48488. {
  48489. name: "Not good for the people",
  48490. height: math.unit(42, "meters")
  48491. },
  48492. {
  48493. name: "Not good for the neighborhood",
  48494. height: math.unit(135, "meters")
  48495. },
  48496. {
  48497. name: "Bit bigger problem",
  48498. height: math.unit(380, "meters"),
  48499. default: true
  48500. },
  48501. {
  48502. name: "Not good for the city",
  48503. height: math.unit(1.5, "km")
  48504. },
  48505. {
  48506. name: "Not good for the county",
  48507. height: math.unit(5.5, "km")
  48508. },
  48509. {
  48510. name: "Not good for the state",
  48511. height: math.unit(25, "km")
  48512. },
  48513. {
  48514. name: "Not good for the country",
  48515. height: math.unit(125, "km")
  48516. },
  48517. {
  48518. name: "Not good for the continent",
  48519. height: math.unit(2100, "km")
  48520. },
  48521. {
  48522. name: "Not good for the planet",
  48523. height: math.unit(35000, "km")
  48524. },
  48525. {
  48526. name: "Just no",
  48527. height: math.unit(8.5e18, "km")
  48528. },
  48529. ]
  48530. ))
  48531. characterMakers.push(() => makeCharacter(
  48532. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48533. {
  48534. front: {
  48535. height: math.unit(6.5, "feet"),
  48536. name: "Front",
  48537. image: {
  48538. source: "./media/characters/poppy/front.svg",
  48539. extra: 1878/1812,
  48540. bottom: 43/1921
  48541. }
  48542. },
  48543. feet: {
  48544. height: math.unit(1.06, "feet"),
  48545. name: "Feet",
  48546. image: {
  48547. source: "./media/characters/poppy/feet.svg",
  48548. extra: 1083/1083,
  48549. bottom: 87/1170
  48550. }
  48551. },
  48552. },
  48553. [
  48554. {
  48555. name: "Human",
  48556. height: math.unit(6.5, "feet")
  48557. },
  48558. {
  48559. name: "Default",
  48560. height: math.unit(300, "feet"),
  48561. default: true
  48562. },
  48563. {
  48564. name: "Huge",
  48565. height: math.unit(850, "feet")
  48566. },
  48567. {
  48568. name: "Mega",
  48569. height: math.unit(8000, "feet")
  48570. },
  48571. {
  48572. name: "Giga",
  48573. height: math.unit(300, "miles")
  48574. },
  48575. ]
  48576. ))
  48577. characterMakers.push(() => makeCharacter(
  48578. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48579. {
  48580. bipedal: {
  48581. height: math.unit(7, "feet"),
  48582. name: "Bipedal",
  48583. image: {
  48584. source: "./media/characters/zener/bipedal.svg",
  48585. extra: 874/805,
  48586. bottom: 109/983
  48587. }
  48588. },
  48589. quadrupedal: {
  48590. height: math.unit(4.64, "feet"),
  48591. name: "Quadrupedal",
  48592. image: {
  48593. source: "./media/characters/zener/quadrupedal.svg",
  48594. extra: 638/507,
  48595. bottom: 190/828
  48596. }
  48597. },
  48598. cock: {
  48599. height: math.unit(18, "inches"),
  48600. name: "Cock",
  48601. image: {
  48602. source: "./media/characters/zener/cock.svg"
  48603. }
  48604. },
  48605. },
  48606. [
  48607. {
  48608. name: "Normal",
  48609. height: math.unit(7, "feet"),
  48610. default: true
  48611. },
  48612. ]
  48613. ))
  48614. characterMakers.push(() => makeCharacter(
  48615. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48616. {
  48617. nude: {
  48618. height: math.unit(5 + 6/12, "feet"),
  48619. name: "Nude",
  48620. image: {
  48621. source: "./media/characters/charlie-dog/nude.svg",
  48622. extra: 768/734,
  48623. bottom: 26/794
  48624. }
  48625. },
  48626. dressed: {
  48627. height: math.unit(5 + 6/12, "feet"),
  48628. name: "Dressed",
  48629. image: {
  48630. source: "./media/characters/charlie-dog/dressed.svg",
  48631. extra: 768/734,
  48632. bottom: 26/794
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(5 + 6/12, "feet"),
  48640. default: true
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48646. {
  48647. front: {
  48648. height: math.unit(6 + 4/12, "feet"),
  48649. name: "Front",
  48650. image: {
  48651. source: "./media/characters/ir'istrasz/front.svg",
  48652. extra: 1014/977,
  48653. bottom: 65/1079
  48654. }
  48655. },
  48656. back: {
  48657. height: math.unit(6 + 4/12, "feet"),
  48658. name: "Back",
  48659. image: {
  48660. source: "./media/characters/ir'istrasz/back.svg",
  48661. extra: 1024/992,
  48662. bottom: 34/1058
  48663. }
  48664. },
  48665. },
  48666. [
  48667. {
  48668. name: "Normal",
  48669. height: math.unit(6 + 4/12, "feet"),
  48670. default: true
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48676. {
  48677. front: {
  48678. height: math.unit(5 + 8/12, "feet"),
  48679. name: "Front",
  48680. image: {
  48681. source: "./media/characters/dee-ditto/front.svg",
  48682. extra: 1874/1785,
  48683. bottom: 68/1942
  48684. }
  48685. },
  48686. back: {
  48687. height: math.unit(5 + 8/12, "feet"),
  48688. name: "Back",
  48689. image: {
  48690. source: "./media/characters/dee-ditto/back.svg",
  48691. extra: 1870/1783,
  48692. bottom: 77/1947
  48693. }
  48694. },
  48695. },
  48696. [
  48697. {
  48698. name: "Normal",
  48699. height: math.unit(5 + 8/12, "feet"),
  48700. default: true
  48701. },
  48702. ]
  48703. ))
  48704. characterMakers.push(() => makeCharacter(
  48705. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48706. {
  48707. front: {
  48708. height: math.unit(7 + 6/12, "feet"),
  48709. name: "Front",
  48710. image: {
  48711. source: "./media/characters/fey/front.svg",
  48712. extra: 995/979,
  48713. bottom: 30/1025
  48714. }
  48715. },
  48716. back: {
  48717. height: math.unit(7 + 6/12, "feet"),
  48718. name: "Back",
  48719. image: {
  48720. source: "./media/characters/fey/back.svg",
  48721. extra: 1079/1008,
  48722. bottom: 5/1084
  48723. }
  48724. },
  48725. dressed: {
  48726. height: math.unit(7 + 6/12, "feet"),
  48727. name: "Dressed",
  48728. image: {
  48729. source: "./media/characters/fey/dressed.svg",
  48730. extra: 995/979,
  48731. bottom: 30/1025
  48732. }
  48733. },
  48734. },
  48735. [
  48736. {
  48737. name: "Normal",
  48738. height: math.unit(7 + 6/12, "feet"),
  48739. default: true
  48740. },
  48741. ]
  48742. ))
  48743. characterMakers.push(() => makeCharacter(
  48744. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48745. {
  48746. standing: {
  48747. height: math.unit(17, "feet"),
  48748. name: "Standing",
  48749. image: {
  48750. source: "./media/characters/aster/standing.svg",
  48751. extra: 1798/1598,
  48752. bottom: 117/1915
  48753. }
  48754. },
  48755. },
  48756. [
  48757. {
  48758. name: "Normal",
  48759. height: math.unit(17, "feet"),
  48760. default: true
  48761. },
  48762. {
  48763. name: "Homewrecker",
  48764. height: math.unit(95, "feet")
  48765. },
  48766. {
  48767. name: "Planet Devourer",
  48768. height: math.unit(1008000, "miles")
  48769. },
  48770. ]
  48771. ))
  48772. characterMakers.push(() => makeCharacter(
  48773. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48774. {
  48775. front: {
  48776. height: math.unit(6 + 5/12, "feet"),
  48777. weight: math.unit(265, "lb"),
  48778. name: "Front",
  48779. image: {
  48780. source: "./media/characters/devon-childs/front.svg",
  48781. extra: 1795/1721,
  48782. bottom: 41/1836
  48783. }
  48784. },
  48785. side: {
  48786. height: math.unit(6 + 5/12, "feet"),
  48787. weight: math.unit(265, "lb"),
  48788. name: "Side",
  48789. image: {
  48790. source: "./media/characters/devon-childs/side.svg",
  48791. extra: 1812/1738,
  48792. bottom: 30/1842
  48793. }
  48794. },
  48795. back: {
  48796. height: math.unit(6 + 5/12, "feet"),
  48797. weight: math.unit(265, "lb"),
  48798. name: "Back",
  48799. image: {
  48800. source: "./media/characters/devon-childs/back.svg",
  48801. extra: 1808/1735,
  48802. bottom: 23/1831
  48803. }
  48804. },
  48805. hand: {
  48806. height: math.unit(1.464, "feet"),
  48807. name: "Hand",
  48808. image: {
  48809. source: "./media/characters/devon-childs/hand.svg"
  48810. }
  48811. },
  48812. foot: {
  48813. height: math.unit(1.6, "feet"),
  48814. name: "Foot",
  48815. image: {
  48816. source: "./media/characters/devon-childs/foot.svg"
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Micro",
  48823. height: math.unit(7, "cm")
  48824. },
  48825. {
  48826. name: "Normal",
  48827. height: math.unit(6 + 5/12, "feet"),
  48828. default: true
  48829. },
  48830. {
  48831. name: "Macro",
  48832. height: math.unit(154, "feet")
  48833. },
  48834. ]
  48835. ))
  48836. characterMakers.push(() => makeCharacter(
  48837. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48838. {
  48839. front: {
  48840. height: math.unit(6, "feet"),
  48841. weight: math.unit(180, "lb"),
  48842. name: "Front",
  48843. image: {
  48844. source: "./media/characters/lydemox-vir/front.svg",
  48845. extra: 1632/1435,
  48846. bottom: 58/1690
  48847. }
  48848. },
  48849. frontSFW: {
  48850. height: math.unit(6, "feet"),
  48851. weight: math.unit(180, "lb"),
  48852. name: "Front (SFW)",
  48853. image: {
  48854. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48855. extra: 1632/1435,
  48856. bottom: 58/1690
  48857. }
  48858. },
  48859. back: {
  48860. height: math.unit(6, "feet"),
  48861. weight: math.unit(180, "lb"),
  48862. name: "Back",
  48863. image: {
  48864. source: "./media/characters/lydemox-vir/back.svg",
  48865. extra: 1593/1408,
  48866. bottom: 31/1624
  48867. }
  48868. },
  48869. paw: {
  48870. height: math.unit(1.85, "feet"),
  48871. name: "Paw",
  48872. image: {
  48873. source: "./media/characters/lydemox-vir/paw.svg"
  48874. }
  48875. },
  48876. dick: {
  48877. height: math.unit(1.8, "feet"),
  48878. name: "Dick",
  48879. image: {
  48880. source: "./media/characters/lydemox-vir/dick.svg"
  48881. }
  48882. },
  48883. },
  48884. [
  48885. {
  48886. name: "Macro",
  48887. height: math.unit(100, "feet"),
  48888. default: true
  48889. },
  48890. {
  48891. name: "Teramacro",
  48892. height: math.unit(1, "earth")
  48893. },
  48894. {
  48895. name: "Planetary",
  48896. height: math.unit(20, "earths")
  48897. },
  48898. ]
  48899. ))
  48900. characterMakers.push(() => makeCharacter(
  48901. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48902. {
  48903. front: {
  48904. height: math.unit(15 + 8/12, "feet"),
  48905. weight: math.unit(1237, "kg"),
  48906. name: "Front",
  48907. image: {
  48908. source: "./media/characters/mia/front.svg",
  48909. extra: 1573/1446,
  48910. bottom: 58/1631
  48911. }
  48912. },
  48913. },
  48914. [
  48915. {
  48916. name: "Small",
  48917. height: math.unit(9 + 5/12, "feet")
  48918. },
  48919. {
  48920. name: "Normal",
  48921. height: math.unit(15 + 8/12, "feet"),
  48922. default: true
  48923. },
  48924. ]
  48925. ))
  48926. characterMakers.push(() => makeCharacter(
  48927. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48928. {
  48929. front: {
  48930. height: math.unit(10 + 6/12, "feet"),
  48931. weight: math.unit(1.3, "tons"),
  48932. name: "Front",
  48933. image: {
  48934. source: "./media/characters/mr-graves/front.svg",
  48935. extra: 1779/1695,
  48936. bottom: 198/1977
  48937. }
  48938. },
  48939. },
  48940. [
  48941. {
  48942. name: "Normal",
  48943. height: math.unit(10 + 6 /12, "feet"),
  48944. default: true
  48945. },
  48946. ]
  48947. ))
  48948. characterMakers.push(() => makeCharacter(
  48949. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48950. {
  48951. dressedFront: {
  48952. height: math.unit(5 + 8/12, "feet"),
  48953. weight: math.unit(125, "lb"),
  48954. name: "Dressed (Front)",
  48955. image: {
  48956. source: "./media/characters/jess/dressed-front.svg",
  48957. extra: 1176/1152,
  48958. bottom: 42/1218
  48959. }
  48960. },
  48961. dressedSide: {
  48962. height: math.unit(5 + 8/12, "feet"),
  48963. weight: math.unit(125, "lb"),
  48964. name: "Dressed (Side)",
  48965. image: {
  48966. source: "./media/characters/jess/dressed-side.svg",
  48967. extra: 1204/1190,
  48968. bottom: 6/1210
  48969. }
  48970. },
  48971. nudeFront: {
  48972. height: math.unit(5 + 8/12, "feet"),
  48973. weight: math.unit(125, "lb"),
  48974. name: "Nude (Front)",
  48975. image: {
  48976. source: "./media/characters/jess/nude-front.svg",
  48977. extra: 1176/1152,
  48978. bottom: 42/1218
  48979. }
  48980. },
  48981. nudeSide: {
  48982. height: math.unit(5 + 8/12, "feet"),
  48983. weight: math.unit(125, "lb"),
  48984. name: "Nude (Side)",
  48985. image: {
  48986. source: "./media/characters/jess/nude-side.svg",
  48987. extra: 1204/1190,
  48988. bottom: 6/1210
  48989. }
  48990. },
  48991. organsFront: {
  48992. height: math.unit(2.83799342105, "feet"),
  48993. name: "Organs (Front)",
  48994. image: {
  48995. source: "./media/characters/jess/organs-front.svg"
  48996. }
  48997. },
  48998. organsSide: {
  48999. height: math.unit(2.64225290474, "feet"),
  49000. name: "Organs (Side)",
  49001. image: {
  49002. source: "./media/characters/jess/organs-side.svg"
  49003. }
  49004. },
  49005. digestiveTractFront: {
  49006. height: math.unit(2.8106580871, "feet"),
  49007. name: "Digestive Tract (Front)",
  49008. image: {
  49009. source: "./media/characters/jess/digestive-tract-front.svg"
  49010. }
  49011. },
  49012. digestiveTractSide: {
  49013. height: math.unit(2.54365045014, "feet"),
  49014. name: "Digestive Tract (Side)",
  49015. image: {
  49016. source: "./media/characters/jess/digestive-tract-side.svg"
  49017. }
  49018. },
  49019. respiratorySystemFront: {
  49020. height: math.unit(1.11196233456, "feet"),
  49021. name: "Respiratory System (Front)",
  49022. image: {
  49023. source: "./media/characters/jess/respiratory-system-front.svg"
  49024. }
  49025. },
  49026. respiratorySystemSide: {
  49027. height: math.unit(0.89327966297, "feet"),
  49028. name: "Respiratory System (Side)",
  49029. image: {
  49030. source: "./media/characters/jess/respiratory-system-side.svg"
  49031. }
  49032. },
  49033. urinaryTractFront: {
  49034. height: math.unit(1.16126356186, "feet"),
  49035. name: "Urinary Tract (Front)",
  49036. image: {
  49037. source: "./media/characters/jess/urinary-tract-front.svg"
  49038. }
  49039. },
  49040. urinaryTractSide: {
  49041. height: math.unit(1.20910039627, "feet"),
  49042. name: "Urinary Tract (Side)",
  49043. image: {
  49044. source: "./media/characters/jess/urinary-tract-side.svg"
  49045. }
  49046. },
  49047. reproductiveOrgansFront: {
  49048. height: math.unit(0.48422591566, "feet"),
  49049. name: "Reproductive Organs (Front)",
  49050. image: {
  49051. source: "./media/characters/jess/reproductive-organs-front.svg"
  49052. }
  49053. },
  49054. reproductiveOrgansSide: {
  49055. height: math.unit(0.61553314481, "feet"),
  49056. name: "Reproductive Organs (Side)",
  49057. image: {
  49058. source: "./media/characters/jess/reproductive-organs-side.svg"
  49059. }
  49060. },
  49061. breastsFront: {
  49062. height: math.unit(0.47690395121, "feet"),
  49063. name: "Breasts (Front)",
  49064. image: {
  49065. source: "./media/characters/jess/breasts-front.svg"
  49066. }
  49067. },
  49068. breastsSide: {
  49069. height: math.unit(0.30556998307, "feet"),
  49070. name: "Breasts (Side)",
  49071. image: {
  49072. source: "./media/characters/jess/breasts-side.svg"
  49073. }
  49074. },
  49075. heartFront: {
  49076. height: math.unit(0.53011022622, "feet"),
  49077. name: "Heart (Front)",
  49078. image: {
  49079. source: "./media/characters/jess/heart-front.svg"
  49080. }
  49081. },
  49082. heartSide: {
  49083. height: math.unit(0.51790695213, "feet"),
  49084. name: "Heart (Side)",
  49085. image: {
  49086. source: "./media/characters/jess/heart-side.svg"
  49087. }
  49088. },
  49089. earsAndNoseFront: {
  49090. height: math.unit(0.29385483995, "feet"),
  49091. name: "Ears and Nose (Front)",
  49092. image: {
  49093. source: "./media/characters/jess/ears-and-nose-front.svg"
  49094. }
  49095. },
  49096. earsAndNoseSide: {
  49097. height: math.unit(0.18109658741, "feet"),
  49098. name: "Ears and Nose (Side)",
  49099. image: {
  49100. source: "./media/characters/jess/ears-and-nose-side.svg"
  49101. }
  49102. },
  49103. },
  49104. [
  49105. {
  49106. name: "Normal",
  49107. height: math.unit(5 + 8/12, "feet"),
  49108. default: true
  49109. },
  49110. ]
  49111. ))
  49112. characterMakers.push(() => makeCharacter(
  49113. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49114. {
  49115. front: {
  49116. height: math.unit(6, "feet"),
  49117. weight: math.unit(6.64467e-7, "grams"),
  49118. name: "Front",
  49119. image: {
  49120. source: "./media/characters/wimpering/front.svg",
  49121. extra: 597/587,
  49122. bottom: 34/631
  49123. }
  49124. },
  49125. },
  49126. [
  49127. {
  49128. name: "Micro",
  49129. height: math.unit(0.4, "mm"),
  49130. default: true
  49131. },
  49132. ]
  49133. ))
  49134. characterMakers.push(() => makeCharacter(
  49135. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49136. {
  49137. front: {
  49138. height: math.unit(5 + 2/12, "feet"),
  49139. weight: math.unit(110, "lb"),
  49140. name: "Front",
  49141. image: {
  49142. source: "./media/characters/keltre/front.svg",
  49143. extra: 1099/1057,
  49144. bottom: 22/1121
  49145. }
  49146. },
  49147. back: {
  49148. height: math.unit(5 + 2/12, "feet"),
  49149. weight: math.unit(110, "lb"),
  49150. name: "Back",
  49151. image: {
  49152. source: "./media/characters/keltre/back.svg",
  49153. extra: 1095/1053,
  49154. bottom: 17/1112
  49155. }
  49156. },
  49157. dressed: {
  49158. height: math.unit(5 + 2/12, "feet"),
  49159. weight: math.unit(110, "lb"),
  49160. name: "Dressed",
  49161. image: {
  49162. source: "./media/characters/keltre/dressed.svg",
  49163. extra: 1099/1057,
  49164. bottom: 22/1121
  49165. }
  49166. },
  49167. winter: {
  49168. height: math.unit(5 + 2/12, "feet"),
  49169. weight: math.unit(110, "lb"),
  49170. name: "Winter",
  49171. image: {
  49172. source: "./media/characters/keltre/winter.svg",
  49173. extra: 1099/1057,
  49174. bottom: 22/1121
  49175. }
  49176. },
  49177. head: {
  49178. height: math.unit(1.61 * 0.86, "feet"),
  49179. name: "Head",
  49180. image: {
  49181. source: "./media/characters/keltre/head.svg",
  49182. extra: 534/421,
  49183. bottom: 0/534
  49184. }
  49185. },
  49186. hand: {
  49187. height: math.unit(1.3 * 0.86, "feet"),
  49188. name: "Hand",
  49189. image: {
  49190. source: "./media/characters/keltre/hand.svg"
  49191. }
  49192. },
  49193. foot: {
  49194. height: math.unit(1.8 * 0.86, "feet"),
  49195. name: "Foot",
  49196. image: {
  49197. source: "./media/characters/keltre/foot.svg"
  49198. }
  49199. },
  49200. },
  49201. [
  49202. {
  49203. name: "Fine",
  49204. height: math.unit(1, "inch")
  49205. },
  49206. {
  49207. name: "Dimnutive",
  49208. height: math.unit(4, "inches")
  49209. },
  49210. {
  49211. name: "Tiny",
  49212. height: math.unit(1, "foot")
  49213. },
  49214. {
  49215. name: "Small",
  49216. height: math.unit(3, "feet")
  49217. },
  49218. {
  49219. name: "Normal",
  49220. height: math.unit(5 + 2/12, "feet"),
  49221. default: true
  49222. },
  49223. ]
  49224. ))
  49225. characterMakers.push(() => makeCharacter(
  49226. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49227. {
  49228. front: {
  49229. height: math.unit(6 + 2/12, "feet"),
  49230. name: "Front",
  49231. image: {
  49232. source: "./media/characters/nox/front.svg",
  49233. extra: 1917/1830,
  49234. bottom: 74/1991
  49235. }
  49236. },
  49237. back: {
  49238. height: math.unit(6 + 2/12, "feet"),
  49239. name: "Back",
  49240. image: {
  49241. source: "./media/characters/nox/back.svg",
  49242. extra: 1896/1815,
  49243. bottom: 21/1917
  49244. }
  49245. },
  49246. head: {
  49247. height: math.unit(1.1, "feet"),
  49248. name: "Head",
  49249. image: {
  49250. source: "./media/characters/nox/head.svg",
  49251. extra: 874/704,
  49252. bottom: 0/874
  49253. }
  49254. },
  49255. tattoo: {
  49256. height: math.unit(0.729, "feet"),
  49257. name: "Tattoo",
  49258. image: {
  49259. source: "./media/characters/nox/tattoo.svg"
  49260. }
  49261. },
  49262. },
  49263. [
  49264. {
  49265. name: "Normal",
  49266. height: math.unit(6 + 2/12, "feet")
  49267. },
  49268. {
  49269. name: "Gigamacro",
  49270. height: math.unit(2, "earths"),
  49271. default: true
  49272. },
  49273. {
  49274. name: "Cosmic",
  49275. height: math.unit(867, "yottameters")
  49276. },
  49277. ]
  49278. ))
  49279. characterMakers.push(() => makeCharacter(
  49280. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49281. {
  49282. front: {
  49283. height: math.unit(6, "feet"),
  49284. weight: math.unit(150, "lb"),
  49285. name: "Front",
  49286. image: {
  49287. source: "./media/characters/caspian/front.svg",
  49288. extra: 1443/1359,
  49289. bottom: 0/1443
  49290. }
  49291. },
  49292. back: {
  49293. height: math.unit(6, "feet"),
  49294. weight: math.unit(150, "lb"),
  49295. name: "Back",
  49296. image: {
  49297. source: "./media/characters/caspian/back.svg",
  49298. extra: 1379/1309,
  49299. bottom: 0/1379
  49300. }
  49301. },
  49302. head: {
  49303. height: math.unit(0.9, "feet"),
  49304. name: "Head",
  49305. image: {
  49306. source: "./media/characters/caspian/head.svg",
  49307. extra: 692/492,
  49308. bottom: 0/692
  49309. }
  49310. },
  49311. headAlt: {
  49312. height: math.unit(0.95, "feet"),
  49313. name: "Head (Alt)",
  49314. image: {
  49315. source: "./media/characters/caspian/head-alt.svg",
  49316. extra: 668/508,
  49317. bottom: 0/668
  49318. }
  49319. },
  49320. hand: {
  49321. height: math.unit(0.8, "feet"),
  49322. name: "Hand",
  49323. image: {
  49324. source: "./media/characters/caspian/hand.svg"
  49325. }
  49326. },
  49327. paw: {
  49328. height: math.unit(0.95, "feet"),
  49329. name: "Paw",
  49330. image: {
  49331. source: "./media/characters/caspian/paw.svg"
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(162, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(6, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/myra-aisling/front.svg",
  49351. extra: 1268/1166,
  49352. bottom: 73/1341
  49353. }
  49354. },
  49355. back: {
  49356. height: math.unit(6, "feet"),
  49357. name: "Back",
  49358. image: {
  49359. source: "./media/characters/myra-aisling/back.svg",
  49360. extra: 1249/1149,
  49361. bottom: 79/1328
  49362. }
  49363. },
  49364. dressed: {
  49365. height: math.unit(6, "feet"),
  49366. name: "Dressed",
  49367. image: {
  49368. source: "./media/characters/myra-aisling/dressed.svg",
  49369. extra: 1290/1189,
  49370. bottom: 47/1337
  49371. }
  49372. },
  49373. hand: {
  49374. height: math.unit(1.1, "feet"),
  49375. name: "Hand",
  49376. image: {
  49377. source: "./media/characters/myra-aisling/hand.svg"
  49378. }
  49379. },
  49380. paw: {
  49381. height: math.unit(1.23, "feet"),
  49382. name: "Paw",
  49383. image: {
  49384. source: "./media/characters/myra-aisling/paw.svg"
  49385. }
  49386. },
  49387. },
  49388. [
  49389. {
  49390. name: "Normal",
  49391. height: math.unit(160, "feet"),
  49392. default: true
  49393. },
  49394. ]
  49395. ))
  49396. characterMakers.push(() => makeCharacter(
  49397. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49398. {
  49399. front: {
  49400. height: math.unit(6, "feet"),
  49401. name: "Front",
  49402. image: {
  49403. source: "./media/characters/tenley-sidero/front.svg",
  49404. extra: 1365/1276,
  49405. bottom: 47/1412
  49406. }
  49407. },
  49408. back: {
  49409. height: math.unit(6, "feet"),
  49410. name: "Back",
  49411. image: {
  49412. source: "./media/characters/tenley-sidero/back.svg",
  49413. extra: 1383/1283,
  49414. bottom: 35/1418
  49415. }
  49416. },
  49417. dressed: {
  49418. height: math.unit(6, "feet"),
  49419. name: "Dressed",
  49420. image: {
  49421. source: "./media/characters/tenley-sidero/dressed.svg",
  49422. extra: 1364/1275,
  49423. bottom: 42/1406
  49424. }
  49425. },
  49426. head: {
  49427. height: math.unit(1.47, "feet"),
  49428. name: "Head",
  49429. image: {
  49430. source: "./media/characters/tenley-sidero/head.svg",
  49431. extra: 610/490,
  49432. bottom: 0/610
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Normal",
  49439. height: math.unit(154, "feet"),
  49440. default: true
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49446. {
  49447. front: {
  49448. height: math.unit(5, "inches"),
  49449. name: "Front",
  49450. image: {
  49451. source: "./media/characters/mallory/front.svg",
  49452. extra: 1919/1678,
  49453. bottom: 29/1948
  49454. }
  49455. },
  49456. hand: {
  49457. height: math.unit(0.73, "inches"),
  49458. name: "Hand",
  49459. image: {
  49460. source: "./media/characters/mallory/hand.svg"
  49461. }
  49462. },
  49463. paw: {
  49464. height: math.unit(0.68, "inches"),
  49465. name: "Paw",
  49466. image: {
  49467. source: "./media/characters/mallory/paw.svg"
  49468. }
  49469. },
  49470. },
  49471. [
  49472. {
  49473. name: "Small",
  49474. height: math.unit(5, "inches"),
  49475. default: true
  49476. },
  49477. ]
  49478. ))
  49479. characterMakers.push(() => makeCharacter(
  49480. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49481. {
  49482. naked: {
  49483. height: math.unit(6, "feet"),
  49484. name: "Naked",
  49485. image: {
  49486. source: "./media/characters/mab/naked.svg",
  49487. extra: 1855/1757,
  49488. bottom: 208/2063
  49489. }
  49490. },
  49491. outside: {
  49492. height: math.unit(6, "feet"),
  49493. name: "Outside",
  49494. image: {
  49495. source: "./media/characters/mab/outside.svg",
  49496. extra: 1855/1757,
  49497. bottom: 208/2063
  49498. }
  49499. },
  49500. party: {
  49501. height: math.unit(6, "feet"),
  49502. name: "Party",
  49503. image: {
  49504. source: "./media/characters/mab/party.svg",
  49505. extra: 1855/1757,
  49506. bottom: 208/2063
  49507. }
  49508. },
  49509. },
  49510. [
  49511. {
  49512. name: "Normal",
  49513. height: math.unit(165, "feet"),
  49514. default: true
  49515. },
  49516. ]
  49517. ))
  49518. characterMakers.push(() => makeCharacter(
  49519. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49520. {
  49521. front: {
  49522. height: math.unit(12, "feet"),
  49523. weight: math.unit(20000, "lb"),
  49524. name: "Front",
  49525. image: {
  49526. source: "./media/characters/winter/front.svg",
  49527. extra: 1286/943,
  49528. bottom: 112/1398
  49529. }
  49530. },
  49531. frontNsfw: {
  49532. height: math.unit(12, "feet"),
  49533. weight: math.unit(20000, "lb"),
  49534. name: "Front (NSFW)",
  49535. image: {
  49536. source: "./media/characters/winter/front-nsfw.svg",
  49537. extra: 1286/943,
  49538. bottom: 112/1398
  49539. }
  49540. },
  49541. dick: {
  49542. height: math.unit(3.79, "feet"),
  49543. name: "Dick",
  49544. image: {
  49545. source: "./media/characters/winter/dick.svg"
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Big",
  49552. height: math.unit(12, "feet"),
  49553. default: true
  49554. },
  49555. ]
  49556. ))
  49557. characterMakers.push(() => makeCharacter(
  49558. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49559. {
  49560. front: {
  49561. height: math.unit(4.1, "inches"),
  49562. name: "Front",
  49563. image: {
  49564. source: "./media/characters/alto/front.svg",
  49565. extra: 736/627,
  49566. bottom: 90/826
  49567. }
  49568. },
  49569. },
  49570. [
  49571. {
  49572. name: "Normal",
  49573. height: math.unit(4.1, "inches"),
  49574. default: true
  49575. },
  49576. ]
  49577. ))
  49578. characterMakers.push(() => makeCharacter(
  49579. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49580. {
  49581. sitting: {
  49582. height: math.unit(3, "feet"),
  49583. name: "Sitting",
  49584. image: {
  49585. source: "./media/characters/ratstrid-v/sitting.svg",
  49586. extra: 355/310,
  49587. bottom: 136/491
  49588. }
  49589. },
  49590. },
  49591. [
  49592. {
  49593. name: "Normal",
  49594. height: math.unit(3, "feet"),
  49595. default: true
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49601. {
  49602. back: {
  49603. height: math.unit(6, "feet"),
  49604. weight: math.unit(350, "lb"),
  49605. name: "Back",
  49606. image: {
  49607. source: "./media/characters/siz/back.svg",
  49608. extra: 1449/1274,
  49609. bottom: 13/1462
  49610. }
  49611. },
  49612. },
  49613. [
  49614. {
  49615. name: "Over-Overcompressed",
  49616. height: math.unit(8, "feet")
  49617. },
  49618. {
  49619. name: "Overcompressed",
  49620. height: math.unit(32, "feet")
  49621. },
  49622. {
  49623. name: "Compressed",
  49624. height: math.unit(128, "feet"),
  49625. default: true
  49626. },
  49627. {
  49628. name: "Half-Compressed",
  49629. height: math.unit(512, "feet")
  49630. },
  49631. {
  49632. name: "Quarter-Compressed",
  49633. height: math.unit(2048, "feet")
  49634. },
  49635. {
  49636. name: "Uncompressed?",
  49637. height: math.unit(8192, "feet")
  49638. },
  49639. ]
  49640. ))
  49641. characterMakers.push(() => makeCharacter(
  49642. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49643. {
  49644. front: {
  49645. height: math.unit(5 + 9/12, "feet"),
  49646. weight: math.unit(150, "lb"),
  49647. name: "Front",
  49648. image: {
  49649. source: "./media/characters/ven/front.svg",
  49650. extra: 1372/1320,
  49651. bottom: 73/1445
  49652. }
  49653. },
  49654. side: {
  49655. height: math.unit(5 + 9/12, "feet"),
  49656. weight: math.unit(1150, "lb"),
  49657. name: "Side",
  49658. image: {
  49659. source: "./media/characters/ven/side.svg",
  49660. extra: 1119/1070,
  49661. bottom: 42/1161
  49662. },
  49663. default: true
  49664. },
  49665. },
  49666. [
  49667. {
  49668. name: "Normal",
  49669. height: math.unit(5 + 9/12, "feet"),
  49670. default: true
  49671. },
  49672. ]
  49673. ))
  49674. characterMakers.push(() => makeCharacter(
  49675. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49676. {
  49677. front: {
  49678. height: math.unit(12, "feet"),
  49679. weight: math.unit(1000, "kg"),
  49680. name: "Front",
  49681. image: {
  49682. source: "./media/characters/maple/front.svg",
  49683. extra: 1193/1081,
  49684. bottom: 22/1215
  49685. }
  49686. },
  49687. },
  49688. [
  49689. {
  49690. name: "Compressed",
  49691. height: math.unit(7, "feet")
  49692. },
  49693. {
  49694. name: "Normal",
  49695. height: math.unit(12, "feet"),
  49696. default: true
  49697. },
  49698. ]
  49699. ))
  49700. characterMakers.push(() => makeCharacter(
  49701. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49702. {
  49703. front: {
  49704. height: math.unit(9, "feet"),
  49705. weight: math.unit(1500, "lb"),
  49706. name: "Front",
  49707. image: {
  49708. source: "./media/characters/nora/front.svg",
  49709. extra: 1348/1286,
  49710. bottom: 218/1566
  49711. }
  49712. },
  49713. erect: {
  49714. height: math.unit(9, "feet"),
  49715. weight: math.unit(11500, "lb"),
  49716. name: "Erect",
  49717. image: {
  49718. source: "./media/characters/nora/erect.svg",
  49719. extra: 1488/1433,
  49720. bottom: 133/1621
  49721. }
  49722. },
  49723. },
  49724. [
  49725. {
  49726. name: "Normal",
  49727. height: math.unit(9, "feet"),
  49728. default: true
  49729. },
  49730. ]
  49731. ))
  49732. characterMakers.push(() => makeCharacter(
  49733. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49734. {
  49735. front: {
  49736. height: math.unit(25, "feet"),
  49737. weight: math.unit(27500, "lb"),
  49738. name: "Front",
  49739. image: {
  49740. source: "./media/characters/north-caudin/front.svg",
  49741. extra: 1184/1082,
  49742. bottom: 23/1207
  49743. }
  49744. },
  49745. },
  49746. [
  49747. {
  49748. name: "Compressed",
  49749. height: math.unit(10, "feet")
  49750. },
  49751. {
  49752. name: "Normal",
  49753. height: math.unit(25, "feet"),
  49754. default: true
  49755. },
  49756. ]
  49757. ))
  49758. characterMakers.push(() => makeCharacter(
  49759. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49760. {
  49761. front: {
  49762. height: math.unit(9, "feet"),
  49763. weight: math.unit(1250, "lb"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/merrian/front.svg",
  49767. extra: 2393/2304,
  49768. bottom: 40/2433
  49769. }
  49770. },
  49771. },
  49772. [
  49773. {
  49774. name: "Normal",
  49775. height: math.unit(9, "feet"),
  49776. default: true
  49777. },
  49778. ]
  49779. ))
  49780. characterMakers.push(() => makeCharacter(
  49781. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49782. {
  49783. front: {
  49784. height: math.unit(9, "feet"),
  49785. weight: math.unit(1000, "lb"),
  49786. name: "Front",
  49787. image: {
  49788. source: "./media/characters/hazel/front.svg",
  49789. extra: 2351/2298,
  49790. bottom: 38/2389
  49791. }
  49792. },
  49793. },
  49794. [
  49795. {
  49796. name: "Normal",
  49797. height: math.unit(9, "feet"),
  49798. default: true
  49799. },
  49800. ]
  49801. ))
  49802. characterMakers.push(() => makeCharacter(
  49803. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49804. {
  49805. front: {
  49806. height: math.unit(13, "feet"),
  49807. weight: math.unit(3200, "lb"),
  49808. name: "Front",
  49809. image: {
  49810. source: "./media/characters/emma/front.svg",
  49811. extra: 2263/2029,
  49812. bottom: 68/2331
  49813. }
  49814. },
  49815. },
  49816. [
  49817. {
  49818. name: "Normal",
  49819. height: math.unit(13, "feet"),
  49820. default: true
  49821. },
  49822. ]
  49823. ))
  49824. characterMakers.push(() => makeCharacter(
  49825. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49826. {
  49827. front: {
  49828. height: math.unit(11 + 9/12, "feet"),
  49829. weight: math.unit(2500, "lb"),
  49830. name: "Front",
  49831. image: {
  49832. source: "./media/characters/ilumina/front.svg",
  49833. extra: 2248/2209,
  49834. bottom: 164/2412
  49835. }
  49836. },
  49837. },
  49838. [
  49839. {
  49840. name: "Normal",
  49841. height: math.unit(11 + 9/12, "feet"),
  49842. default: true
  49843. },
  49844. ]
  49845. ))
  49846. characterMakers.push(() => makeCharacter(
  49847. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49848. {
  49849. front: {
  49850. height: math.unit(8 + 10/12, "feet"),
  49851. weight: math.unit(1350, "lb"),
  49852. name: "Front",
  49853. image: {
  49854. source: "./media/characters/moonshine/front.svg",
  49855. extra: 2395/2288,
  49856. bottom: 40/2435
  49857. }
  49858. },
  49859. },
  49860. [
  49861. {
  49862. name: "Normal",
  49863. height: math.unit(8 + 10/12, "feet"),
  49864. default: true
  49865. },
  49866. ]
  49867. ))
  49868. characterMakers.push(() => makeCharacter(
  49869. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49870. {
  49871. front: {
  49872. height: math.unit(14, "feet"),
  49873. weight: math.unit(3400, "lb"),
  49874. name: "Front",
  49875. image: {
  49876. source: "./media/characters/aletia/front.svg",
  49877. extra: 1185/1052,
  49878. bottom: 21/1206
  49879. }
  49880. },
  49881. },
  49882. [
  49883. {
  49884. name: "Compressed",
  49885. height: math.unit(8, "feet")
  49886. },
  49887. {
  49888. name: "Normal",
  49889. height: math.unit(14, "feet"),
  49890. default: true
  49891. },
  49892. ]
  49893. ))
  49894. characterMakers.push(() => makeCharacter(
  49895. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49896. {
  49897. front: {
  49898. height: math.unit(17, "feet"),
  49899. weight: math.unit(6500, "lb"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/deidra/front.svg",
  49903. extra: 1201/1081,
  49904. bottom: 16/1217
  49905. }
  49906. },
  49907. },
  49908. [
  49909. {
  49910. name: "Compressed",
  49911. height: math.unit(9 + 6/12, "feet")
  49912. },
  49913. {
  49914. name: "Normal",
  49915. height: math.unit(17, "feet"),
  49916. default: true
  49917. },
  49918. ]
  49919. ))
  49920. characterMakers.push(() => makeCharacter(
  49921. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49922. {
  49923. front: {
  49924. height: math.unit(7 + 4/12, "feet"),
  49925. weight: math.unit(280, "lb"),
  49926. name: "Front",
  49927. image: {
  49928. source: "./media/characters/freki-yrmori/front.svg",
  49929. extra: 1286/1182,
  49930. bottom: 29/1315
  49931. }
  49932. },
  49933. maw: {
  49934. height: math.unit(0.9, "feet"),
  49935. name: "Maw",
  49936. image: {
  49937. source: "./media/characters/freki-yrmori/maw.svg"
  49938. }
  49939. },
  49940. },
  49941. [
  49942. {
  49943. name: "Normal",
  49944. height: math.unit(7 + 4/12, "feet"),
  49945. default: true
  49946. },
  49947. {
  49948. name: "Macro",
  49949. height: math.unit(38.5, "meters")
  49950. },
  49951. ]
  49952. ))
  49953. characterMakers.push(() => makeCharacter(
  49954. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49955. {
  49956. side: {
  49957. height: math.unit(47.2, "meters"),
  49958. weight: math.unit(10000, "tons"),
  49959. name: "Side",
  49960. image: {
  49961. source: "./media/characters/aetherios/side.svg",
  49962. extra: 2363/642,
  49963. bottom: 221/2584
  49964. }
  49965. },
  49966. top: {
  49967. height: math.unit(240, "meters"),
  49968. weight: math.unit(10000, "tons"),
  49969. name: "Top",
  49970. image: {
  49971. source: "./media/characters/aetherios/top.svg"
  49972. }
  49973. },
  49974. bottom: {
  49975. height: math.unit(240, "meters"),
  49976. weight: math.unit(10000, "tons"),
  49977. name: "Bottom",
  49978. image: {
  49979. source: "./media/characters/aetherios/bottom.svg"
  49980. }
  49981. },
  49982. head: {
  49983. height: math.unit(38.6, "meters"),
  49984. name: "Head",
  49985. image: {
  49986. source: "./media/characters/aetherios/head.svg",
  49987. extra: 1335/1112,
  49988. bottom: 0/1335
  49989. }
  49990. },
  49991. front: {
  49992. height: math.unit(29, "meters"),
  49993. name: "Front",
  49994. image: {
  49995. source: "./media/characters/aetherios/front.svg",
  49996. extra: 1266/953,
  49997. bottom: 158/1424
  49998. }
  49999. },
  50000. maw: {
  50001. height: math.unit(16.37, "meters"),
  50002. name: "Maw",
  50003. image: {
  50004. source: "./media/characters/aetherios/maw.svg",
  50005. extra: 748/637,
  50006. bottom: 0/748
  50007. },
  50008. extraAttributes: {
  50009. preyCapacity: {
  50010. name: "Capacity",
  50011. power: 3,
  50012. type: "volume",
  50013. base: math.unit(1000, "people")
  50014. },
  50015. tongueSize: {
  50016. name: "Tongue Size",
  50017. power: 2,
  50018. type: "area",
  50019. base: math.unit(21, "m^2")
  50020. }
  50021. }
  50022. },
  50023. forepaw: {
  50024. height: math.unit(18, "meters"),
  50025. name: "Forepaw",
  50026. image: {
  50027. source: "./media/characters/aetherios/forepaw.svg"
  50028. }
  50029. },
  50030. hindpaw: {
  50031. height: math.unit(23, "meters"),
  50032. name: "Hindpaw",
  50033. image: {
  50034. source: "./media/characters/aetherios/hindpaw.svg"
  50035. }
  50036. },
  50037. genitals: {
  50038. height: math.unit(42, "meters"),
  50039. name: "Genitals",
  50040. image: {
  50041. source: "./media/characters/aetherios/genitals.svg"
  50042. }
  50043. },
  50044. },
  50045. [
  50046. {
  50047. name: "Normal",
  50048. height: math.unit(47.2, "meters"),
  50049. default: true
  50050. },
  50051. {
  50052. name: "Macro",
  50053. height: math.unit(160, "meters")
  50054. },
  50055. {
  50056. name: "Mega",
  50057. height: math.unit(1.87, "km")
  50058. },
  50059. {
  50060. name: "Giga",
  50061. height: math.unit(40000, "km")
  50062. },
  50063. {
  50064. name: "Stellar",
  50065. height: math.unit(158000000, "km")
  50066. },
  50067. {
  50068. name: "Cosmic",
  50069. height: math.unit(9.46e12, "km")
  50070. },
  50071. ]
  50072. ))
  50073. characterMakers.push(() => makeCharacter(
  50074. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50075. {
  50076. front: {
  50077. height: math.unit(5 + 4/12, "feet"),
  50078. weight: math.unit(80, "lb"),
  50079. name: "Front",
  50080. image: {
  50081. source: "./media/characters/mizu-gieeg/front.svg",
  50082. extra: 850/709,
  50083. bottom: 52/902
  50084. }
  50085. },
  50086. back: {
  50087. height: math.unit(5 + 4/12, "feet"),
  50088. weight: math.unit(80, "lb"),
  50089. name: "Back",
  50090. image: {
  50091. source: "./media/characters/mizu-gieeg/back.svg",
  50092. extra: 882/745,
  50093. bottom: 25/907
  50094. }
  50095. },
  50096. },
  50097. [
  50098. {
  50099. name: "Normal",
  50100. height: math.unit(5 + 4/12, "feet"),
  50101. default: true
  50102. },
  50103. ]
  50104. ))
  50105. characterMakers.push(() => makeCharacter(
  50106. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50107. {
  50108. front: {
  50109. height: math.unit(6, "feet"),
  50110. name: "Front",
  50111. image: {
  50112. source: "./media/characters/roselle-st-papier/front.svg",
  50113. extra: 1430/1280,
  50114. bottom: 37/1467
  50115. }
  50116. },
  50117. back: {
  50118. height: math.unit(6, "feet"),
  50119. name: "Back",
  50120. image: {
  50121. source: "./media/characters/roselle-st-papier/back.svg",
  50122. extra: 1491/1296,
  50123. bottom: 23/1514
  50124. }
  50125. },
  50126. ear: {
  50127. height: math.unit(1.26, "feet"),
  50128. name: "Ear",
  50129. image: {
  50130. source: "./media/characters/roselle-st-papier/ear.svg"
  50131. }
  50132. },
  50133. },
  50134. [
  50135. {
  50136. name: "Normal",
  50137. height: math.unit(150, "feet"),
  50138. default: true
  50139. },
  50140. ]
  50141. ))
  50142. characterMakers.push(() => makeCharacter(
  50143. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50144. {
  50145. front: {
  50146. height: math.unit(1, "inches"),
  50147. name: "Front",
  50148. image: {
  50149. source: "./media/characters/valargent/front.svg",
  50150. extra: 1825/1694,
  50151. bottom: 62/1887
  50152. }
  50153. },
  50154. back: {
  50155. height: math.unit(1, "inches"),
  50156. name: "Back",
  50157. image: {
  50158. source: "./media/characters/valargent/back.svg",
  50159. extra: 1775/1682,
  50160. bottom: 88/1863
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Micro",
  50167. height: math.unit(1, "inch"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50174. {
  50175. front: {
  50176. height: math.unit(3.4, "meters"),
  50177. name: "Front",
  50178. image: {
  50179. source: "./media/characters/zarina/front.svg",
  50180. extra: 1733/1425,
  50181. bottom: 93/1826
  50182. }
  50183. },
  50184. squatting: {
  50185. height: math.unit(2.14, "meters"),
  50186. name: "Squatting",
  50187. image: {
  50188. source: "./media/characters/zarina/squatting.svg",
  50189. extra: 1073/788,
  50190. bottom: 63/1136
  50191. }
  50192. },
  50193. back: {
  50194. height: math.unit(2.14, "meters"),
  50195. name: "Back",
  50196. image: {
  50197. source: "./media/characters/zarina/back.svg",
  50198. extra: 1128/885,
  50199. bottom: 0/1128
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Normal",
  50206. height: math.unit(3.4, "meters"),
  50207. default: true
  50208. },
  50209. {
  50210. name: "Big",
  50211. height: math.unit(5, "meters")
  50212. },
  50213. {
  50214. name: "Macro",
  50215. height: math.unit(110, "meters")
  50216. },
  50217. ]
  50218. ))
  50219. characterMakers.push(() => makeCharacter(
  50220. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50221. {
  50222. front: {
  50223. height: math.unit(7, "feet"),
  50224. name: "Front",
  50225. image: {
  50226. source: "./media/characters/ventus-astro-fox/front.svg",
  50227. extra: 1792/1623,
  50228. bottom: 28/1820
  50229. }
  50230. },
  50231. back: {
  50232. height: math.unit(7, "feet"),
  50233. name: "Back",
  50234. image: {
  50235. source: "./media/characters/ventus-astro-fox/back.svg",
  50236. extra: 1789/1620,
  50237. bottom: 31/1820
  50238. }
  50239. },
  50240. outfit: {
  50241. height: math.unit(7, "feet"),
  50242. name: "Outfit",
  50243. image: {
  50244. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50245. extra: 1054/925,
  50246. bottom: 15/1069
  50247. }
  50248. },
  50249. head: {
  50250. height: math.unit(1.12, "feet"),
  50251. name: "Head",
  50252. image: {
  50253. source: "./media/characters/ventus-astro-fox/head.svg",
  50254. extra: 866/504,
  50255. bottom: 0/866
  50256. }
  50257. },
  50258. hand: {
  50259. height: math.unit(1, "feet"),
  50260. name: "Hand",
  50261. image: {
  50262. source: "./media/characters/ventus-astro-fox/hand.svg"
  50263. }
  50264. },
  50265. paw: {
  50266. height: math.unit(1.5, "feet"),
  50267. name: "Paw",
  50268. image: {
  50269. source: "./media/characters/ventus-astro-fox/paw.svg"
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(7, "feet"),
  50277. default: true
  50278. },
  50279. {
  50280. name: "Macro",
  50281. height: math.unit(200, "feet")
  50282. },
  50283. {
  50284. name: "Cosmic",
  50285. height: math.unit(3, "universes")
  50286. },
  50287. ]
  50288. ))
  50289. characterMakers.push(() => makeCharacter(
  50290. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50291. {
  50292. front: {
  50293. height: math.unit(3, "meters"),
  50294. weight: math.unit(7000, "lb"),
  50295. name: "Front",
  50296. image: {
  50297. source: "./media/characters/core-t/front.svg",
  50298. extra: 5729/4941,
  50299. bottom: 1129/6858
  50300. }
  50301. },
  50302. },
  50303. [
  50304. {
  50305. name: "Big",
  50306. height: math.unit(3, "meters"),
  50307. default: true
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50313. {
  50314. normal: {
  50315. height: math.unit(6 + 6/12, "feet"),
  50316. weight: math.unit(275, "lb"),
  50317. name: "Front",
  50318. image: {
  50319. source: "./media/characters/cadbunny/normal.svg",
  50320. extra: 1129/947,
  50321. bottom: 93/1222
  50322. },
  50323. default: true,
  50324. form: "normal"
  50325. },
  50326. gigantamax: {
  50327. height: math.unit(26, "feet"),
  50328. weight: math.unit(16000, "lb"),
  50329. name: "Front",
  50330. image: {
  50331. source: "./media/characters/cadbunny/gigantamax.svg",
  50332. extra: 1133/944,
  50333. bottom: 90/1223
  50334. },
  50335. default: true,
  50336. form: "gigantamax"
  50337. },
  50338. },
  50339. [
  50340. {
  50341. name: "Normal",
  50342. height: math.unit(6 + 6/12, "feet"),
  50343. default: true,
  50344. form: "normal"
  50345. },
  50346. {
  50347. name: "Small",
  50348. height: math.unit(26, "feet"),
  50349. default: true,
  50350. form: "gigantamax"
  50351. },
  50352. {
  50353. name: "Large",
  50354. height: math.unit(78, "feet"),
  50355. form: "gigantamax"
  50356. },
  50357. ],
  50358. {
  50359. "normal": {
  50360. name: "Normal",
  50361. default: true
  50362. },
  50363. "gigantamax": {
  50364. name: "Gigantamax"
  50365. }
  50366. }
  50367. ))
  50368. characterMakers.push(() => makeCharacter(
  50369. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50370. {
  50371. anthroFront: {
  50372. height: math.unit(8, "feet"),
  50373. weight: math.unit(300, "lb"),
  50374. name: "Front",
  50375. image: {
  50376. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50377. extra: 1272/1176,
  50378. bottom: 53/1325
  50379. },
  50380. form: "anthro",
  50381. default: true
  50382. },
  50383. feralSide: {
  50384. height: math.unit(4, "feet"),
  50385. weight: math.unit(250, "lb"),
  50386. name: "Side",
  50387. image: {
  50388. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50389. extra: 731/621,
  50390. bottom: 0/731
  50391. },
  50392. form: "feral",
  50393. default: true
  50394. },
  50395. },
  50396. [
  50397. {
  50398. name: "Regular",
  50399. height: math.unit(8, "feet"),
  50400. form: "anthro"
  50401. },
  50402. {
  50403. name: "Macro",
  50404. height: math.unit(250, "feet"),
  50405. form: "anthro",
  50406. default: true
  50407. },
  50408. {
  50409. name: "Regular",
  50410. height: math.unit(4, "feet"),
  50411. form: "feral"
  50412. },
  50413. {
  50414. name: "Macro",
  50415. height: math.unit(125, "feet"),
  50416. form: "feral",
  50417. default: true
  50418. },
  50419. ],
  50420. {
  50421. "anthro": {
  50422. name: "Anthro",
  50423. default: true
  50424. },
  50425. "feral": {
  50426. name: "Feral",
  50427. },
  50428. }
  50429. ))
  50430. characterMakers.push(() => makeCharacter(
  50431. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50432. {
  50433. front: {
  50434. height: math.unit(11 + 10/12, "feet"),
  50435. weight: math.unit(1587, "kg"),
  50436. name: "Front",
  50437. image: {
  50438. source: "./media/characters/maple-javira-dragon/front.svg",
  50439. extra: 1136/744,
  50440. bottom: 73/1209
  50441. }
  50442. },
  50443. side: {
  50444. height: math.unit(11 + 10/12, "feet"),
  50445. weight: math.unit(1587, "kg"),
  50446. name: "Side",
  50447. image: {
  50448. source: "./media/characters/maple-javira-dragon/side.svg",
  50449. extra: 712/505,
  50450. bottom: 17/729
  50451. }
  50452. },
  50453. head: {
  50454. height: math.unit(8.05, "feet"),
  50455. name: "Head",
  50456. image: {
  50457. source: "./media/characters/maple-javira-dragon/head.svg",
  50458. extra: 1420/1344,
  50459. bottom: 0/1420
  50460. }
  50461. },
  50462. },
  50463. [
  50464. {
  50465. name: "Normal",
  50466. height: math.unit(11 + 10/12, "feet"),
  50467. default: true
  50468. },
  50469. ]
  50470. ))
  50471. characterMakers.push(() => makeCharacter(
  50472. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50473. {
  50474. front: {
  50475. height: math.unit(117, "cm"),
  50476. weight: math.unit(50, "kg"),
  50477. name: "Front",
  50478. image: {
  50479. source: "./media/characters/sonia-wyverntail/front.svg",
  50480. extra: 708/592,
  50481. bottom: 25/733
  50482. }
  50483. },
  50484. },
  50485. [
  50486. {
  50487. name: "Normal",
  50488. height: math.unit(117, "cm"),
  50489. default: true
  50490. },
  50491. ]
  50492. ))
  50493. characterMakers.push(() => makeCharacter(
  50494. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50495. {
  50496. front: {
  50497. height: math.unit(6 + 5/12, "feet"),
  50498. name: "Front",
  50499. image: {
  50500. source: "./media/characters/micah/front.svg",
  50501. extra: 1758/1546,
  50502. bottom: 214/1972
  50503. }
  50504. },
  50505. },
  50506. [
  50507. {
  50508. name: "Normal",
  50509. height: math.unit(6 + 5/12, "feet"),
  50510. default: true
  50511. },
  50512. ]
  50513. ))
  50514. characterMakers.push(() => makeCharacter(
  50515. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50516. {
  50517. front: {
  50518. height: math.unit(5 + 10/12, "feet"),
  50519. weight: math.unit(220, "lb"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/zarya/front.svg",
  50523. extra: 593/572,
  50524. bottom: 50/643
  50525. }
  50526. },
  50527. back: {
  50528. height: math.unit(5 + 10/12, "feet"),
  50529. weight: math.unit(220, "lb"),
  50530. name: "Back",
  50531. image: {
  50532. source: "./media/characters/zarya/back.svg",
  50533. extra: 603/582,
  50534. bottom: 38/641
  50535. }
  50536. },
  50537. },
  50538. [
  50539. {
  50540. name: "Normal",
  50541. height: math.unit(5 + 10/12, "feet"),
  50542. default: true
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(7.5, "feet"),
  50551. name: "Front",
  50552. image: {
  50553. source: "./media/characters/sven-hatisson/front.svg",
  50554. extra: 917/857,
  50555. bottom: 42/959
  50556. }
  50557. },
  50558. back: {
  50559. height: math.unit(7.5, "feet"),
  50560. name: "Back",
  50561. image: {
  50562. source: "./media/characters/sven-hatisson/back.svg",
  50563. extra: 903/856,
  50564. bottom: 15/918
  50565. }
  50566. },
  50567. },
  50568. [
  50569. {
  50570. name: "Base Height",
  50571. height: math.unit(7.5, "feet")
  50572. },
  50573. {
  50574. name: "Usual Height",
  50575. height: math.unit(13.5, "feet"),
  50576. default: true
  50577. },
  50578. {
  50579. name: "Smaller Macro",
  50580. height: math.unit(85, "feet")
  50581. },
  50582. {
  50583. name: "Moderate Macro",
  50584. height: math.unit(320, "feet")
  50585. },
  50586. {
  50587. name: "Large Macro",
  50588. height: math.unit(1000, "feet")
  50589. },
  50590. {
  50591. name: "Largest Size",
  50592. height: math.unit(2, "miles")
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50598. {
  50599. side: {
  50600. height: math.unit(1.8, "meters"),
  50601. weight: math.unit(275, "kg"),
  50602. name: "Side",
  50603. image: {
  50604. source: "./media/characters/terra/side.svg",
  50605. extra: 1273/1147,
  50606. bottom: 0/1273
  50607. }
  50608. },
  50609. },
  50610. [
  50611. {
  50612. name: "Normal",
  50613. height: math.unit(16.2, "meters"),
  50614. default: true
  50615. },
  50616. ]
  50617. ))
  50618. characterMakers.push(() => makeCharacter(
  50619. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50620. {
  50621. borzoiFront: {
  50622. height: math.unit(6 + 9/12, "feet"),
  50623. name: "Front",
  50624. image: {
  50625. source: "./media/characters/rae/borzoi-front.svg",
  50626. extra: 1161/1098,
  50627. bottom: 31/1192
  50628. },
  50629. form: "borzoi",
  50630. default: true
  50631. },
  50632. werewolfFront: {
  50633. height: math.unit(8 + 7/12, "feet"),
  50634. name: "Front",
  50635. image: {
  50636. source: "./media/characters/rae/werewolf-front.svg",
  50637. extra: 1411/1334,
  50638. bottom: 127/1538
  50639. },
  50640. form: "werewolf",
  50641. default: true
  50642. },
  50643. },
  50644. [
  50645. {
  50646. name: "Normal",
  50647. height: math.unit(6 + 9/12, "feet"),
  50648. default: true,
  50649. form: "borzoi"
  50650. },
  50651. {
  50652. name: "Normal",
  50653. height: math.unit(8 + 7/12, "feet"),
  50654. default: true,
  50655. form: "werewolf"
  50656. },
  50657. ],
  50658. {
  50659. "borzoi": {
  50660. name: "Borzoi",
  50661. default: true
  50662. },
  50663. "werewolf": {
  50664. name: "Werewolf",
  50665. },
  50666. }
  50667. ))
  50668. characterMakers.push(() => makeCharacter(
  50669. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50670. {
  50671. front: {
  50672. height: math.unit(8 + 7/12, "feet"),
  50673. weight: math.unit(482, "lb"),
  50674. name: "Front",
  50675. image: {
  50676. source: "./media/characters/kit/front.svg",
  50677. extra: 1247/1103,
  50678. bottom: 41/1288
  50679. }
  50680. },
  50681. back: {
  50682. height: math.unit(8 + 7/12, "feet"),
  50683. weight: math.unit(482, "lb"),
  50684. name: "Back",
  50685. image: {
  50686. source: "./media/characters/kit/back.svg",
  50687. extra: 1252/1123,
  50688. bottom: 21/1273
  50689. }
  50690. },
  50691. paw: {
  50692. height: math.unit(1.46, "feet"),
  50693. name: "Paw",
  50694. image: {
  50695. source: "./media/characters/kit/paw.svg"
  50696. }
  50697. },
  50698. },
  50699. [
  50700. {
  50701. name: "Normal",
  50702. height: math.unit(2.61, "meters"),
  50703. default: true
  50704. },
  50705. {
  50706. name: "\"Tall\"",
  50707. height: math.unit(8.21, "meters")
  50708. },
  50709. {
  50710. name: "Tall",
  50711. height: math.unit(19.6, "meters")
  50712. },
  50713. {
  50714. name: "Very Tall",
  50715. height: math.unit(57.91, "meters")
  50716. },
  50717. {
  50718. name: "Semi-Macro",
  50719. height: math.unit(138.64, "meters")
  50720. },
  50721. {
  50722. name: "Macro",
  50723. height: math.unit(831.99, "meters")
  50724. },
  50725. {
  50726. name: "EX-Macro",
  50727. height: math.unit(96451121, "meters")
  50728. },
  50729. {
  50730. name: "S1-Omnipotent",
  50731. height: math.unit(4.42074e+9, "meters")
  50732. },
  50733. {
  50734. name: "S2-Omnipotent",
  50735. height: math.unit(9.42074e+17, "meters")
  50736. },
  50737. {
  50738. name: "Omnipotent",
  50739. height: math.unit(4.23112e+24, "meters")
  50740. },
  50741. {
  50742. name: "Hypergod",
  50743. height: math.unit(5.05176e+27, "meters")
  50744. },
  50745. {
  50746. name: "Hypergod-EX",
  50747. height: math.unit(9.45532e+49, "meters")
  50748. },
  50749. {
  50750. name: "Hypergod-SP",
  50751. height: math.unit(9.45532e+195, "meters")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50757. {
  50758. side: {
  50759. height: math.unit(0.6, "meters"),
  50760. weight: math.unit(24, "kg"),
  50761. name: "Side",
  50762. image: {
  50763. source: "./media/characters/celeste/side.svg",
  50764. extra: 810/517,
  50765. bottom: 53/863
  50766. }
  50767. },
  50768. },
  50769. [
  50770. {
  50771. name: "Velociraptor",
  50772. height: math.unit(0.6, "meters"),
  50773. default: true
  50774. },
  50775. {
  50776. name: "Utahraptor",
  50777. height: math.unit(1.8, "meters")
  50778. },
  50779. {
  50780. name: "Gallimimus",
  50781. height: math.unit(4.0, "meters")
  50782. },
  50783. {
  50784. name: "Large",
  50785. height: math.unit(20, "meters")
  50786. },
  50787. {
  50788. name: "Planetary",
  50789. height: math.unit(50, "megameters")
  50790. },
  50791. {
  50792. name: "Stellar",
  50793. height: math.unit(1.5, "gigameters")
  50794. },
  50795. {
  50796. name: "Galactic",
  50797. height: math.unit(100, "exameters")
  50798. },
  50799. ]
  50800. ))
  50801. characterMakers.push(() => makeCharacter(
  50802. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50803. {
  50804. front: {
  50805. height: math.unit(6, "feet"),
  50806. weight: math.unit(210, "lb"),
  50807. name: "Front",
  50808. image: {
  50809. source: "./media/characters/glacia/front.svg",
  50810. extra: 958/901,
  50811. bottom: 45/1003
  50812. }
  50813. },
  50814. },
  50815. [
  50816. {
  50817. name: "Macro",
  50818. height: math.unit(1000, "meters"),
  50819. default: true
  50820. },
  50821. ]
  50822. ))
  50823. characterMakers.push(() => makeCharacter(
  50824. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50825. {
  50826. front: {
  50827. height: math.unit(4, "meters"),
  50828. name: "Front",
  50829. image: {
  50830. source: "./media/characters/giri/front.svg",
  50831. extra: 966/894,
  50832. bottom: 21/987
  50833. }
  50834. },
  50835. },
  50836. [
  50837. {
  50838. name: "Normal",
  50839. height: math.unit(4, "meters"),
  50840. default: true
  50841. },
  50842. ]
  50843. ))
  50844. characterMakers.push(() => makeCharacter(
  50845. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50846. {
  50847. back: {
  50848. height: math.unit(4, "feet"),
  50849. weight: math.unit(37, "lb"),
  50850. name: "Back",
  50851. image: {
  50852. source: "./media/characters/tin/back.svg",
  50853. extra: 845/780,
  50854. bottom: 28/873
  50855. }
  50856. },
  50857. },
  50858. [
  50859. {
  50860. name: "Normal",
  50861. height: math.unit(4, "feet"),
  50862. default: true
  50863. },
  50864. ]
  50865. ))
  50866. characterMakers.push(() => makeCharacter(
  50867. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50868. {
  50869. front: {
  50870. height: math.unit(25, "feet"),
  50871. name: "Front",
  50872. image: {
  50873. source: "./media/characters/cadenza-vivace/front.svg",
  50874. extra: 1842/1578,
  50875. bottom: 30/1872
  50876. }
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Macro",
  50882. height: math.unit(25, "feet"),
  50883. default: true
  50884. },
  50885. ]
  50886. ))
  50887. characterMakers.push(() => makeCharacter(
  50888. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50889. {
  50890. front: {
  50891. height: math.unit(10, "feet"),
  50892. weight: math.unit(625, "kg"),
  50893. name: "Front",
  50894. image: {
  50895. source: "./media/characters/zain/front.svg",
  50896. extra: 1682/1498,
  50897. bottom: 223/1905
  50898. }
  50899. },
  50900. back: {
  50901. height: math.unit(10, "feet"),
  50902. weight: math.unit(625, "kg"),
  50903. name: "Back",
  50904. image: {
  50905. source: "./media/characters/zain/back.svg",
  50906. extra: 1814/1657,
  50907. bottom: 152/1966
  50908. }
  50909. },
  50910. head: {
  50911. height: math.unit(10, "feet"),
  50912. weight: math.unit(625, "kg"),
  50913. name: "Head",
  50914. image: {
  50915. source: "./media/characters/zain/head.svg",
  50916. extra: 1059/762,
  50917. bottom: 0/1059
  50918. }
  50919. },
  50920. },
  50921. [
  50922. {
  50923. name: "Normal",
  50924. height: math.unit(10, "feet"),
  50925. default: true
  50926. },
  50927. ]
  50928. ))
  50929. characterMakers.push(() => makeCharacter(
  50930. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50931. {
  50932. front: {
  50933. height: math.unit(6 + 5/12, "feet"),
  50934. weight: math.unit(750, "lb"),
  50935. name: "Front",
  50936. image: {
  50937. source: "./media/characters/ruchex/front.svg",
  50938. extra: 877/820,
  50939. bottom: 17/894
  50940. },
  50941. extraAttributes: {
  50942. "width": {
  50943. name: "Width",
  50944. power: 1,
  50945. type: "length",
  50946. base: math.unit(4.757, "feet")
  50947. },
  50948. }
  50949. },
  50950. },
  50951. [
  50952. {
  50953. name: "Normal",
  50954. height: math.unit(6 + 5/12, "feet"),
  50955. default: true
  50956. },
  50957. ]
  50958. ))
  50959. characterMakers.push(() => makeCharacter(
  50960. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50961. {
  50962. dressedFront: {
  50963. height: math.unit(191, "cm"),
  50964. weight: math.unit(80, "kg"),
  50965. name: "Front",
  50966. image: {
  50967. source: "./media/characters/buster/dressed-front.svg",
  50968. extra: 1022/973,
  50969. bottom: 69/1091
  50970. }
  50971. },
  50972. dressedBack: {
  50973. height: math.unit(191, "cm"),
  50974. weight: math.unit(80, "kg"),
  50975. name: "Back",
  50976. image: {
  50977. source: "./media/characters/buster/dressed-back.svg",
  50978. extra: 1018/970,
  50979. bottom: 55/1073
  50980. }
  50981. },
  50982. nudeFront: {
  50983. height: math.unit(191, "cm"),
  50984. weight: math.unit(80, "kg"),
  50985. name: "Front (Nude)",
  50986. image: {
  50987. source: "./media/characters/buster/nude-front.svg",
  50988. extra: 1022/973,
  50989. bottom: 69/1091
  50990. }
  50991. },
  50992. nudeBack: {
  50993. height: math.unit(191, "cm"),
  50994. weight: math.unit(80, "kg"),
  50995. name: "Back (Nude)",
  50996. image: {
  50997. source: "./media/characters/buster/nude-back.svg",
  50998. extra: 1018/970,
  50999. bottom: 55/1073
  51000. }
  51001. },
  51002. dick: {
  51003. height: math.unit(2.59, "feet"),
  51004. name: "Dick",
  51005. image: {
  51006. source: "./media/characters/buster/dick.svg"
  51007. }
  51008. },
  51009. ass: {
  51010. height: math.unit(1.2, "feet"),
  51011. name: "Ass",
  51012. image: {
  51013. source: "./media/characters/buster/ass.svg"
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Normal",
  51020. height: math.unit(191, "cm"),
  51021. default: true
  51022. },
  51023. ]
  51024. ))
  51025. characterMakers.push(() => makeCharacter(
  51026. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51027. {
  51028. side: {
  51029. height: math.unit(8.1, "feet"),
  51030. weight: math.unit(3500, "lb"),
  51031. name: "Side",
  51032. image: {
  51033. source: "./media/characters/sonya/side.svg",
  51034. extra: 1730/1317,
  51035. bottom: 86/1816
  51036. }
  51037. },
  51038. },
  51039. [
  51040. {
  51041. name: "Normal",
  51042. height: math.unit(8.1, "feet"),
  51043. default: true
  51044. },
  51045. ]
  51046. ))
  51047. characterMakers.push(() => makeCharacter(
  51048. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51049. {
  51050. front: {
  51051. height: math.unit(6, "feet"),
  51052. weight: math.unit(150, "lb"),
  51053. name: "Front",
  51054. image: {
  51055. source: "./media/characters/cadence-andrysiak/front.svg",
  51056. extra: 1164/1121,
  51057. bottom: 60/1224
  51058. }
  51059. },
  51060. back: {
  51061. height: math.unit(6, "feet"),
  51062. weight: math.unit(150, "lb"),
  51063. name: "Back",
  51064. image: {
  51065. source: "./media/characters/cadence-andrysiak/back.svg",
  51066. extra: 1200/1165,
  51067. bottom: 9/1209
  51068. }
  51069. },
  51070. dressed: {
  51071. height: math.unit(6, "feet"),
  51072. weight: math.unit(150, "lb"),
  51073. name: "Dressed",
  51074. image: {
  51075. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51076. extra: 1164/1121,
  51077. bottom: 60/1224
  51078. }
  51079. },
  51080. },
  51081. [
  51082. {
  51083. name: "Micro",
  51084. height: math.unit(1, "mm")
  51085. },
  51086. {
  51087. name: "Normal",
  51088. height: math.unit(6, "feet"),
  51089. default: true
  51090. },
  51091. ]
  51092. ))
  51093. characterMakers.push(() => makeCharacter(
  51094. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51095. {
  51096. front: {
  51097. height: math.unit(60, "inches"),
  51098. weight: math.unit(16, "lb"),
  51099. preyCapacity: math.unit(80, "liters"),
  51100. name: "Front",
  51101. image: {
  51102. source: "./media/characters/penny-lynx/front.svg",
  51103. extra: 1959/1769,
  51104. bottom: 49/2008
  51105. }
  51106. },
  51107. },
  51108. [
  51109. {
  51110. name: "Nokia",
  51111. height: math.unit(2, "inches")
  51112. },
  51113. {
  51114. name: "Desktop",
  51115. height: math.unit(24, "inches")
  51116. },
  51117. {
  51118. name: "TV",
  51119. height: math.unit(60, "inches")
  51120. },
  51121. {
  51122. name: "Jumbotron",
  51123. height: math.unit(12, "feet")
  51124. },
  51125. {
  51126. name: "Billboard",
  51127. height: math.unit(48, "feet"),
  51128. default: true
  51129. },
  51130. {
  51131. name: "IMAX",
  51132. height: math.unit(96, "feet")
  51133. },
  51134. {
  51135. name: "SINGULARITY",
  51136. height: math.unit(864938, "miles")
  51137. },
  51138. ]
  51139. ))
  51140. characterMakers.push(() => makeCharacter(
  51141. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51142. {
  51143. front: {
  51144. height: math.unit(5 + 4/12, "feet"),
  51145. weight: math.unit(230, "lb"),
  51146. name: "Front",
  51147. image: {
  51148. source: "./media/characters/sukebe/front.svg",
  51149. extra: 2130/2038,
  51150. bottom: 90/2220
  51151. }
  51152. },
  51153. back: {
  51154. height: math.unit(3.48, "feet"),
  51155. weight: math.unit(230, "lb"),
  51156. name: "Back",
  51157. image: {
  51158. source: "./media/characters/sukebe/back.svg",
  51159. extra: 1670/1604,
  51160. bottom: 0/1670
  51161. }
  51162. },
  51163. },
  51164. [
  51165. {
  51166. name: "Normal",
  51167. height: math.unit(5 + 4/12, "feet"),
  51168. default: true
  51169. },
  51170. ]
  51171. ))
  51172. characterMakers.push(() => makeCharacter(
  51173. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51174. {
  51175. front: {
  51176. height: math.unit(6, "feet"),
  51177. name: "Front",
  51178. image: {
  51179. source: "./media/characters/nylla/front.svg",
  51180. extra: 1868/1699,
  51181. bottom: 97/1965
  51182. }
  51183. },
  51184. back: {
  51185. height: math.unit(6, "feet"),
  51186. name: "Back",
  51187. image: {
  51188. source: "./media/characters/nylla/back.svg",
  51189. extra: 1889/1712,
  51190. bottom: 93/1982
  51191. }
  51192. },
  51193. frontNsfw: {
  51194. height: math.unit(6, "feet"),
  51195. name: "Front (NSFW)",
  51196. image: {
  51197. source: "./media/characters/nylla/front-nsfw.svg",
  51198. extra: 1868/1699,
  51199. bottom: 97/1965
  51200. },
  51201. extraAttributes: {
  51202. "dickLength": {
  51203. name: "Dick Length",
  51204. power: 1,
  51205. type: "length",
  51206. base: math.unit(1.4, "feet")
  51207. },
  51208. "cumVolume": {
  51209. name: "Cum Volume",
  51210. power: 3,
  51211. type: "volume",
  51212. base: math.unit(100, "mL")
  51213. },
  51214. }
  51215. },
  51216. backNsfw: {
  51217. height: math.unit(6, "feet"),
  51218. name: "Back (NSFW)",
  51219. image: {
  51220. source: "./media/characters/nylla/back-nsfw.svg",
  51221. extra: 1889/1712,
  51222. bottom: 93/1982
  51223. }
  51224. },
  51225. maw: {
  51226. height: math.unit(2.10, "feet"),
  51227. name: "Maw",
  51228. image: {
  51229. source: "./media/characters/nylla/maw.svg"
  51230. }
  51231. },
  51232. paws: {
  51233. height: math.unit(2.06, "feet"),
  51234. name: "Paws",
  51235. image: {
  51236. source: "./media/characters/nylla/paws.svg"
  51237. }
  51238. },
  51239. muzzle: {
  51240. height: math.unit(0.61, "feet"),
  51241. name: "Muzzle",
  51242. image: {
  51243. source: "./media/characters/nylla/muzzle.svg"
  51244. }
  51245. },
  51246. sheath: {
  51247. height: math.unit(1.305, "feet"),
  51248. name: "Sheath",
  51249. image: {
  51250. source: "./media/characters/nylla/sheath.svg"
  51251. }
  51252. },
  51253. },
  51254. [
  51255. {
  51256. name: "Micro",
  51257. height: math.unit(7.5, "inches")
  51258. },
  51259. {
  51260. name: "Normal",
  51261. height: math.unit(7, "feet"),
  51262. default: true
  51263. },
  51264. {
  51265. name: "Macro",
  51266. height: math.unit(60, "feet")
  51267. },
  51268. {
  51269. name: "Mega",
  51270. height: math.unit(200, "feet")
  51271. },
  51272. ]
  51273. ))
  51274. characterMakers.push(() => makeCharacter(
  51275. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51276. {
  51277. front: {
  51278. height: math.unit(10, "feet"),
  51279. weight: math.unit(2300, "lb"),
  51280. name: "Front",
  51281. image: {
  51282. source: "./media/characters/hunt3r/front.svg",
  51283. extra: 1909/1742,
  51284. bottom: 46/1955
  51285. }
  51286. },
  51287. },
  51288. [
  51289. {
  51290. name: "Normal",
  51291. height: math.unit(10, "feet"),
  51292. default: true
  51293. },
  51294. ]
  51295. ))
  51296. characterMakers.push(() => makeCharacter(
  51297. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51298. {
  51299. dressed: {
  51300. height: math.unit(11, "feet"),
  51301. weight: math.unit(18500, "lb"),
  51302. preyCapacity: math.unit(9, "people"),
  51303. name: "Dressed",
  51304. image: {
  51305. source: "./media/characters/cylphis/dressed.svg",
  51306. extra: 1028/1003,
  51307. bottom: 75/1103
  51308. },
  51309. },
  51310. undressed: {
  51311. height: math.unit(11, "feet"),
  51312. weight: math.unit(18500, "lb"),
  51313. preyCapacity: math.unit(9, "people"),
  51314. name: "Undressed",
  51315. image: {
  51316. source: "./media/characters/cylphis/undressed.svg",
  51317. extra: 1028/1003,
  51318. bottom: 75/1103
  51319. }
  51320. },
  51321. full: {
  51322. height: math.unit(11, "feet"),
  51323. weight: math.unit(18500 + 150*9, "lb"),
  51324. preyCapacity: math.unit(9, "people"),
  51325. name: "Full",
  51326. image: {
  51327. source: "./media/characters/cylphis/full.svg",
  51328. extra: 1028/1003,
  51329. bottom: 75/1103
  51330. }
  51331. },
  51332. },
  51333. [
  51334. {
  51335. name: "Small",
  51336. height: math.unit(8, "feet")
  51337. },
  51338. {
  51339. name: "Normal",
  51340. height: math.unit(11, "feet"),
  51341. default: true
  51342. },
  51343. ]
  51344. ))
  51345. characterMakers.push(() => makeCharacter(
  51346. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51347. {
  51348. front: {
  51349. height: math.unit(2 + 7/12, "feet"),
  51350. name: "Front",
  51351. image: {
  51352. source: "./media/characters/orishan/front.svg",
  51353. extra: 1058/1023,
  51354. bottom: 23/1081
  51355. }
  51356. },
  51357. back: {
  51358. height: math.unit(2 + 7/12, "feet"),
  51359. name: "Back",
  51360. image: {
  51361. source: "./media/characters/orishan/back.svg",
  51362. extra: 1058/1023,
  51363. bottom: 23/1081
  51364. }
  51365. },
  51366. },
  51367. [
  51368. {
  51369. name: "Micro",
  51370. height: math.unit(2, "cm")
  51371. },
  51372. {
  51373. name: "Normal",
  51374. height: math.unit(2 + 7/12, "feet"),
  51375. default: true
  51376. },
  51377. ]
  51378. ))
  51379. characterMakers.push(() => makeCharacter(
  51380. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51381. {
  51382. front: {
  51383. height: math.unit(3, "meters"),
  51384. weight: math.unit(508, "kg"),
  51385. name: "Front",
  51386. image: {
  51387. source: "./media/characters/seranis/front.svg",
  51388. extra: 1478/1454,
  51389. bottom: 41/1519
  51390. }
  51391. },
  51392. },
  51393. [
  51394. {
  51395. name: "Normal",
  51396. height: math.unit(3, "meters"),
  51397. default: true
  51398. },
  51399. {
  51400. name: "Macro",
  51401. height: math.unit(108, "meters")
  51402. },
  51403. {
  51404. name: "Megamacro",
  51405. height: math.unit(1250, "meters")
  51406. },
  51407. ]
  51408. ))
  51409. characterMakers.push(() => makeCharacter(
  51410. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51411. {
  51412. undressed: {
  51413. height: math.unit(5 + 3/12, "feet"),
  51414. name: "Undressed",
  51415. image: {
  51416. source: "./media/characters/ankou/undressed.svg",
  51417. extra: 1301/1213,
  51418. bottom: 87/1388
  51419. }
  51420. },
  51421. dressed: {
  51422. height: math.unit(5 + 3/12, "feet"),
  51423. name: "Dressed",
  51424. image: {
  51425. source: "./media/characters/ankou/dressed.svg",
  51426. extra: 1301/1213,
  51427. bottom: 87/1388
  51428. }
  51429. },
  51430. head: {
  51431. height: math.unit(1.61, "feet"),
  51432. name: "Head",
  51433. image: {
  51434. source: "./media/characters/ankou/head.svg"
  51435. }
  51436. },
  51437. },
  51438. [
  51439. {
  51440. name: "Normal",
  51441. height: math.unit(5 + 3/12, "feet"),
  51442. default: true
  51443. },
  51444. ]
  51445. ))
  51446. characterMakers.push(() => makeCharacter(
  51447. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51448. {
  51449. side: {
  51450. height: math.unit(6 + 3/12, "feet"),
  51451. weight: math.unit(200, "kg"),
  51452. name: "Side",
  51453. image: {
  51454. source: "./media/characters/juniper-skunktaur/side.svg",
  51455. extra: 1574/1229,
  51456. bottom: 38/1612
  51457. }
  51458. },
  51459. front: {
  51460. height: math.unit(6 + 3/12, "feet"),
  51461. weight: math.unit(200, "kg"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/juniper-skunktaur/front.svg",
  51465. extra: 1337/1278,
  51466. bottom: 22/1359
  51467. }
  51468. },
  51469. back: {
  51470. height: math.unit(6 + 3/12, "feet"),
  51471. weight: math.unit(200, "kg"),
  51472. name: "Back",
  51473. image: {
  51474. source: "./media/characters/juniper-skunktaur/back.svg",
  51475. extra: 1618/1273,
  51476. bottom: 13/1631
  51477. }
  51478. },
  51479. top: {
  51480. height: math.unit(2.62, "feet"),
  51481. weight: math.unit(200, "kg"),
  51482. name: "Top",
  51483. image: {
  51484. source: "./media/characters/juniper-skunktaur/top.svg"
  51485. }
  51486. },
  51487. },
  51488. [
  51489. {
  51490. name: "Normal",
  51491. height: math.unit(6 + 3/12, "feet"),
  51492. default: true
  51493. },
  51494. ]
  51495. ))
  51496. characterMakers.push(() => makeCharacter(
  51497. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51498. {
  51499. front: {
  51500. height: math.unit(20.5, "feet"),
  51501. name: "Front",
  51502. image: {
  51503. source: "./media/characters/rei/front.svg",
  51504. extra: 1349/1195,
  51505. bottom: 31/1380
  51506. }
  51507. },
  51508. back: {
  51509. height: math.unit(20.5, "feet"),
  51510. name: "Back",
  51511. image: {
  51512. source: "./media/characters/rei/back.svg",
  51513. extra: 1358/1204,
  51514. bottom: 22/1380
  51515. }
  51516. },
  51517. pawsDigi: {
  51518. height: math.unit(3.45, "feet"),
  51519. name: "Paws (Digi)",
  51520. image: {
  51521. source: "./media/characters/rei/paws-digi.svg"
  51522. }
  51523. },
  51524. pawsPlanti: {
  51525. height: math.unit(3.45, "feet"),
  51526. name: "Paws (Planti)",
  51527. image: {
  51528. source: "./media/characters/rei/paws-planti.svg"
  51529. }
  51530. },
  51531. },
  51532. [
  51533. {
  51534. name: "Normal",
  51535. height: math.unit(20.5, "feet"),
  51536. default: true
  51537. },
  51538. ]
  51539. ))
  51540. characterMakers.push(() => makeCharacter(
  51541. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51542. {
  51543. front: {
  51544. height: math.unit(5 + 11/12, "feet"),
  51545. name: "Front",
  51546. image: {
  51547. source: "./media/characters/carina/front.svg",
  51548. extra: 1720/1449,
  51549. bottom: 14/1734
  51550. }
  51551. },
  51552. back: {
  51553. height: math.unit(5 + 11/12, "feet"),
  51554. name: "Back",
  51555. image: {
  51556. source: "./media/characters/carina/back.svg",
  51557. extra: 1493/1445,
  51558. bottom: 17/1510
  51559. }
  51560. },
  51561. paw: {
  51562. height: math.unit(0.92, "feet"),
  51563. name: "Paw",
  51564. image: {
  51565. source: "./media/characters/carina/paw.svg"
  51566. }
  51567. },
  51568. },
  51569. [
  51570. {
  51571. name: "Normal",
  51572. height: math.unit(5 + 11/12, "feet"),
  51573. default: true
  51574. },
  51575. ]
  51576. ))
  51577. characterMakers.push(() => makeCharacter(
  51578. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51579. {
  51580. front: {
  51581. height: math.unit(4.88, "meters"),
  51582. name: "Front",
  51583. image: {
  51584. source: "./media/characters/maya/front.svg",
  51585. extra: 1222/1145,
  51586. bottom: 57/1279
  51587. }
  51588. },
  51589. },
  51590. [
  51591. {
  51592. name: "Normal",
  51593. height: math.unit(4.88, "meters"),
  51594. default: true
  51595. },
  51596. {
  51597. name: "Macro",
  51598. height: math.unit(38.1, "meters")
  51599. },
  51600. {
  51601. name: "Macro+",
  51602. height: math.unit(152.4, "meters")
  51603. },
  51604. {
  51605. name: "Macro++",
  51606. height: math.unit(16.09, "km")
  51607. },
  51608. {
  51609. name: "Mega-macro",
  51610. height: math.unit(700, "megameters")
  51611. },
  51612. ]
  51613. ))
  51614. characterMakers.push(() => makeCharacter(
  51615. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51616. {
  51617. front: {
  51618. height: math.unit(6 + 2/12, "feet"),
  51619. weight: math.unit(500, "lb"),
  51620. preyCapacity: math.unit(4, "people"),
  51621. name: "Front",
  51622. image: {
  51623. source: "./media/characters/yepir/front.svg"
  51624. }
  51625. },
  51626. side: {
  51627. height: math.unit(6 + 2/12, "feet"),
  51628. weight: math.unit(500, "lb"),
  51629. preyCapacity: math.unit(4, "people"),
  51630. name: "Side",
  51631. image: {
  51632. source: "./media/characters/yepir/side.svg"
  51633. }
  51634. },
  51635. paw: {
  51636. height: math.unit(1.05, "feet"),
  51637. name: "Paw",
  51638. image: {
  51639. source: "./media/characters/yepir/paw.svg"
  51640. }
  51641. },
  51642. },
  51643. [
  51644. {
  51645. name: "Normal",
  51646. height: math.unit(6 + 2/12, "feet"),
  51647. default: true
  51648. },
  51649. ]
  51650. ))
  51651. characterMakers.push(() => makeCharacter(
  51652. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51653. {
  51654. front: {
  51655. height: math.unit(5 + 4/12, "feet"),
  51656. name: "Front",
  51657. image: {
  51658. source: "./media/characters/russec/front.svg",
  51659. extra: 1926/1626,
  51660. bottom: 72/1998
  51661. }
  51662. },
  51663. back: {
  51664. height: math.unit(5 + 4/12, "feet"),
  51665. name: "Back",
  51666. image: {
  51667. source: "./media/characters/russec/back.svg",
  51668. extra: 1910/1591,
  51669. bottom: 48/1958
  51670. }
  51671. },
  51672. },
  51673. [
  51674. {
  51675. name: "Small",
  51676. height: math.unit(5 + 4/12, "feet")
  51677. },
  51678. {
  51679. name: "Normal",
  51680. height: math.unit(72, "feet"),
  51681. default: true
  51682. },
  51683. ]
  51684. ))
  51685. characterMakers.push(() => makeCharacter(
  51686. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51687. {
  51688. side: {
  51689. height: math.unit(12, "feet"),
  51690. name: "Side",
  51691. image: {
  51692. source: "./media/characters/cianus/side.svg",
  51693. extra: 808/526,
  51694. bottom: 61/869
  51695. }
  51696. },
  51697. },
  51698. [
  51699. {
  51700. name: "Normal",
  51701. height: math.unit(12, "feet"),
  51702. default: true
  51703. },
  51704. ]
  51705. ))
  51706. characterMakers.push(() => makeCharacter(
  51707. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51708. {
  51709. front: {
  51710. height: math.unit(9 + 6/12, "feet"),
  51711. weight: math.unit(300, "lb"),
  51712. name: "Front",
  51713. image: {
  51714. source: "./media/characters/ahab/front.svg",
  51715. extra: 1897/1868,
  51716. bottom: 121/2018
  51717. }
  51718. },
  51719. frontNsfw: {
  51720. height: math.unit(9 + 6/12, "feet"),
  51721. weight: math.unit(300, "lb"),
  51722. name: "Front-nsfw",
  51723. image: {
  51724. source: "./media/characters/ahab/front-nsfw.svg",
  51725. extra: 1897/1868,
  51726. bottom: 121/2018
  51727. }
  51728. },
  51729. },
  51730. [
  51731. {
  51732. name: "Normal",
  51733. height: math.unit(9 + 6/12, "feet")
  51734. },
  51735. {
  51736. name: "Macro",
  51737. height: math.unit(657, "feet"),
  51738. default: true
  51739. },
  51740. ]
  51741. ))
  51742. characterMakers.push(() => makeCharacter(
  51743. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51744. {
  51745. front: {
  51746. height: math.unit(2.69, "meters"),
  51747. weight: math.unit(132, "kg"),
  51748. name: "Front",
  51749. image: {
  51750. source: "./media/characters/aarkus/front.svg",
  51751. extra: 1400/1231,
  51752. bottom: 34/1434
  51753. }
  51754. },
  51755. back: {
  51756. height: math.unit(2.69, "meters"),
  51757. weight: math.unit(132, "kg"),
  51758. name: "Back",
  51759. image: {
  51760. source: "./media/characters/aarkus/back.svg",
  51761. extra: 1381/1218,
  51762. bottom: 30/1411
  51763. }
  51764. },
  51765. frontNsfw: {
  51766. height: math.unit(2.69, "meters"),
  51767. weight: math.unit(132, "kg"),
  51768. name: "Front (NSFW)",
  51769. image: {
  51770. source: "./media/characters/aarkus/front-nsfw.svg",
  51771. extra: 1400/1231,
  51772. bottom: 34/1434
  51773. }
  51774. },
  51775. foot: {
  51776. height: math.unit(1.45, "feet"),
  51777. name: "Foot",
  51778. image: {
  51779. source: "./media/characters/aarkus/foot.svg"
  51780. }
  51781. },
  51782. head: {
  51783. height: math.unit(2.85, "feet"),
  51784. name: "Head",
  51785. image: {
  51786. source: "./media/characters/aarkus/head.svg"
  51787. }
  51788. },
  51789. headAlt: {
  51790. height: math.unit(3.07, "feet"),
  51791. name: "Head (Alt)",
  51792. image: {
  51793. source: "./media/characters/aarkus/head-alt.svg"
  51794. }
  51795. },
  51796. mouth: {
  51797. height: math.unit(1.25, "feet"),
  51798. name: "Mouth",
  51799. image: {
  51800. source: "./media/characters/aarkus/mouth.svg"
  51801. }
  51802. },
  51803. dick: {
  51804. height: math.unit(1.77, "feet"),
  51805. name: "Dick",
  51806. image: {
  51807. source: "./media/characters/aarkus/dick.svg"
  51808. }
  51809. },
  51810. },
  51811. [
  51812. {
  51813. name: "Normal",
  51814. height: math.unit(2.69, "meters"),
  51815. default: true
  51816. },
  51817. {
  51818. name: "Macro",
  51819. height: math.unit(269, "meters")
  51820. },
  51821. {
  51822. name: "Macro+",
  51823. height: math.unit(672.5, "meters")
  51824. },
  51825. {
  51826. name: "Megamacro",
  51827. height: math.unit(2.017, "km")
  51828. },
  51829. ]
  51830. ))
  51831. characterMakers.push(() => makeCharacter(
  51832. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51833. {
  51834. front: {
  51835. height: math.unit(23.47, "cm"),
  51836. weight: math.unit(600, "grams"),
  51837. name: "Front",
  51838. image: {
  51839. source: "./media/characters/diode/front.svg",
  51840. extra: 1778/1396,
  51841. bottom: 95/1873
  51842. }
  51843. },
  51844. side: {
  51845. height: math.unit(23.47, "cm"),
  51846. weight: math.unit(600, "grams"),
  51847. name: "Side",
  51848. image: {
  51849. source: "./media/characters/diode/side.svg",
  51850. extra: 1831/1404,
  51851. bottom: 86/1917
  51852. }
  51853. },
  51854. wings: {
  51855. height: math.unit(0.683, "feet"),
  51856. name: "Wings",
  51857. image: {
  51858. source: "./media/characters/diode/wings.svg"
  51859. }
  51860. },
  51861. },
  51862. [
  51863. {
  51864. name: "Normal",
  51865. height: math.unit(23.47, "cm"),
  51866. default: true
  51867. },
  51868. ]
  51869. ))
  51870. characterMakers.push(() => makeCharacter(
  51871. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51872. {
  51873. front: {
  51874. height: math.unit(6 + 3/12, "feet"),
  51875. weight: math.unit(250, "lb"),
  51876. name: "Front",
  51877. image: {
  51878. source: "./media/characters/reika/front.svg",
  51879. extra: 1120/1078,
  51880. bottom: 86/1206
  51881. }
  51882. },
  51883. },
  51884. [
  51885. {
  51886. name: "Normal",
  51887. height: math.unit(6 + 3/12, "feet"),
  51888. default: true
  51889. },
  51890. ]
  51891. ))
  51892. characterMakers.push(() => makeCharacter(
  51893. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51894. {
  51895. front: {
  51896. height: math.unit(16 + 8/12, "feet"),
  51897. weight: math.unit(9000, "lb"),
  51898. name: "Front",
  51899. image: {
  51900. source: "./media/characters/lokuto-takama/front.svg",
  51901. extra: 1774/1632,
  51902. bottom: 147/1921
  51903. },
  51904. extraAttributes: {
  51905. "bustWidth": {
  51906. name: "Bust Width",
  51907. power: 1,
  51908. type: "length",
  51909. base: math.unit(2.4, "meters")
  51910. },
  51911. "breastWeight": {
  51912. name: "Breast Weight",
  51913. power: 3,
  51914. type: "mass",
  51915. base: math.unit(1000, "kg")
  51916. },
  51917. }
  51918. },
  51919. },
  51920. [
  51921. {
  51922. name: "Normal",
  51923. height: math.unit(16 + 8/12, "feet"),
  51924. default: true
  51925. },
  51926. ]
  51927. ))
  51928. characterMakers.push(() => makeCharacter(
  51929. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51930. {
  51931. front: {
  51932. height: math.unit(10, "cm"),
  51933. weight: math.unit(850, "grams"),
  51934. name: "Front",
  51935. image: {
  51936. source: "./media/characters/owak-bone/front.svg",
  51937. extra: 1965/1801,
  51938. bottom: 31/1996
  51939. }
  51940. },
  51941. },
  51942. [
  51943. {
  51944. name: "Normal",
  51945. height: math.unit(10, "cm"),
  51946. default: true
  51947. },
  51948. ]
  51949. ))
  51950. characterMakers.push(() => makeCharacter(
  51951. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51952. {
  51953. front: {
  51954. height: math.unit(2 + 6/12, "feet"),
  51955. weight: math.unit(9, "lb"),
  51956. name: "Front",
  51957. image: {
  51958. source: "./media/characters/muffin/front.svg",
  51959. extra: 1220/1195,
  51960. bottom: 84/1304
  51961. }
  51962. },
  51963. },
  51964. [
  51965. {
  51966. name: "Normal",
  51967. height: math.unit(2 + 6/12, "feet"),
  51968. default: true
  51969. },
  51970. ]
  51971. ))
  51972. characterMakers.push(() => makeCharacter(
  51973. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  51974. {
  51975. front: {
  51976. height: math.unit(7, "feet"),
  51977. name: "Front",
  51978. image: {
  51979. source: "./media/characters/chimera/front.svg",
  51980. extra: 1752/1614,
  51981. bottom: 68/1820
  51982. }
  51983. },
  51984. },
  51985. [
  51986. {
  51987. name: "Normal",
  51988. height: math.unit(7, "feet")
  51989. },
  51990. {
  51991. name: "Gigamacro",
  51992. height: math.unit(2.9, "gigameters"),
  51993. default: true
  51994. },
  51995. {
  51996. name: "Universal",
  51997. height: math.unit(1.56e26, "yottameters")
  51998. },
  51999. ]
  52000. ))
  52001. characterMakers.push(() => makeCharacter(
  52002. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52003. {
  52004. front: {
  52005. height: math.unit(3, "feet"),
  52006. weight: math.unit(20, "lb"),
  52007. name: "Front",
  52008. image: {
  52009. source: "./media/characters/kit-fennec-fox/front.svg",
  52010. extra: 1027/932,
  52011. bottom: 16/1043
  52012. }
  52013. },
  52014. back: {
  52015. height: math.unit(3, "feet"),
  52016. weight: math.unit(20, "lb"),
  52017. name: "Back",
  52018. image: {
  52019. source: "./media/characters/kit-fennec-fox/back.svg",
  52020. extra: 1027/932,
  52021. bottom: 16/1043
  52022. }
  52023. },
  52024. },
  52025. [
  52026. {
  52027. name: "Normal",
  52028. height: math.unit(3, "feet"),
  52029. default: true
  52030. },
  52031. ]
  52032. ))
  52033. characterMakers.push(() => makeCharacter(
  52034. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52035. {
  52036. front: {
  52037. height: math.unit(167, "cm"),
  52038. name: "Front",
  52039. image: {
  52040. source: "./media/characters/blue-otter/front.svg",
  52041. extra: 1951/1920,
  52042. bottom: 31/1982
  52043. }
  52044. },
  52045. },
  52046. [
  52047. {
  52048. name: "Otter-Sized",
  52049. height: math.unit(100, "cm")
  52050. },
  52051. {
  52052. name: "Normal",
  52053. height: math.unit(167, "cm"),
  52054. default: true
  52055. },
  52056. ]
  52057. ))
  52058. characterMakers.push(() => makeCharacter(
  52059. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52060. {
  52061. front: {
  52062. height: math.unit(4 + 4/12, "feet"),
  52063. name: "Front",
  52064. image: {
  52065. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52066. extra: 1072/1067,
  52067. bottom: 117/1189
  52068. }
  52069. },
  52070. back: {
  52071. height: math.unit(4 + 4/12, "feet"),
  52072. name: "Back",
  52073. image: {
  52074. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52075. extra: 1135/1129,
  52076. bottom: 57/1192
  52077. }
  52078. },
  52079. head: {
  52080. height: math.unit(1.77, "feet"),
  52081. name: "Head",
  52082. image: {
  52083. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52084. }
  52085. },
  52086. },
  52087. [
  52088. {
  52089. name: "Normal",
  52090. height: math.unit(4 + 4/12, "feet"),
  52091. default: true
  52092. },
  52093. ]
  52094. ))
  52095. characterMakers.push(() => makeCharacter(
  52096. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52097. {
  52098. front: {
  52099. height: math.unit(2, "inches"),
  52100. name: "Front",
  52101. image: {
  52102. source: "./media/characters/carley-hartford/front.svg",
  52103. extra: 1035/988,
  52104. bottom: 23/1058
  52105. }
  52106. },
  52107. back: {
  52108. height: math.unit(2, "inches"),
  52109. name: "Back",
  52110. image: {
  52111. source: "./media/characters/carley-hartford/back.svg",
  52112. extra: 1035/988,
  52113. bottom: 23/1058
  52114. }
  52115. },
  52116. dressed: {
  52117. height: math.unit(2, "inches"),
  52118. name: "Dressed",
  52119. image: {
  52120. source: "./media/characters/carley-hartford/dressed.svg",
  52121. extra: 651/620,
  52122. bottom: 0/651
  52123. }
  52124. },
  52125. },
  52126. [
  52127. {
  52128. name: "Micro",
  52129. height: math.unit(2, "inches"),
  52130. default: true
  52131. },
  52132. {
  52133. name: "Macro",
  52134. height: math.unit(6 + 3/12, "feet")
  52135. },
  52136. ]
  52137. ))
  52138. characterMakers.push(() => makeCharacter(
  52139. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52140. {
  52141. front: {
  52142. height: math.unit(2 + 3/12, "feet"),
  52143. weight: math.unit(15 + 7/16, "lb"),
  52144. name: "Front",
  52145. image: {
  52146. source: "./media/characters/duke/front.svg",
  52147. extra: 910/815,
  52148. bottom: 30/940
  52149. }
  52150. },
  52151. },
  52152. [
  52153. {
  52154. name: "Normal",
  52155. height: math.unit(2 + 3/12, "feet"),
  52156. default: true
  52157. },
  52158. ]
  52159. ))
  52160. characterMakers.push(() => makeCharacter(
  52161. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52162. {
  52163. front: {
  52164. height: math.unit(5 + 4/12, "feet"),
  52165. weight: math.unit(156, "lb"),
  52166. name: "Front",
  52167. image: {
  52168. source: "./media/characters/dein/front.svg",
  52169. extra: 855/815,
  52170. bottom: 48/903
  52171. }
  52172. },
  52173. side: {
  52174. height: math.unit(5 + 4/12, "feet"),
  52175. weight: math.unit(156, "lb"),
  52176. name: "side",
  52177. image: {
  52178. source: "./media/characters/dein/side.svg",
  52179. extra: 846/803,
  52180. bottom: 25/871
  52181. }
  52182. },
  52183. maw: {
  52184. height: math.unit(1.45, "feet"),
  52185. name: "Maw",
  52186. image: {
  52187. source: "./media/characters/dein/maw.svg"
  52188. }
  52189. },
  52190. },
  52191. [
  52192. {
  52193. name: "Ferret Sized",
  52194. height: math.unit(2 + 5/12, "feet")
  52195. },
  52196. {
  52197. name: "Normal",
  52198. height: math.unit(5 + 4/12, "feet"),
  52199. default: true
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52205. {
  52206. front: {
  52207. height: math.unit(84 + 8/12, "feet"),
  52208. weight: math.unit(942180, "lb"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/daurine-arima/front.svg",
  52212. extra: 1989/1782,
  52213. bottom: 37/2026
  52214. }
  52215. },
  52216. side: {
  52217. height: math.unit(84 + 8/12, "feet"),
  52218. weight: math.unit(942180, "lb"),
  52219. name: "Side",
  52220. image: {
  52221. source: "./media/characters/daurine-arima/side.svg",
  52222. extra: 1997/1790,
  52223. bottom: 21/2018
  52224. }
  52225. },
  52226. back: {
  52227. height: math.unit(84 + 8/12, "feet"),
  52228. weight: math.unit(942180, "lb"),
  52229. name: "Back",
  52230. image: {
  52231. source: "./media/characters/daurine-arima/back.svg",
  52232. extra: 1992/1800,
  52233. bottom: 12/2004
  52234. }
  52235. },
  52236. head: {
  52237. height: math.unit(15.5, "feet"),
  52238. name: "Head",
  52239. image: {
  52240. source: "./media/characters/daurine-arima/head.svg"
  52241. }
  52242. },
  52243. headAlt: {
  52244. height: math.unit(19.19, "feet"),
  52245. name: "Head (Alt)",
  52246. image: {
  52247. source: "./media/characters/daurine-arima/head-alt.svg"
  52248. }
  52249. },
  52250. },
  52251. [
  52252. {
  52253. name: "Minimum height",
  52254. height: math.unit(8 + 10/12, "feet")
  52255. },
  52256. {
  52257. name: "Comfort height",
  52258. height: math.unit(19 + 6 /12, "feet")
  52259. },
  52260. {
  52261. name: "\"Normal\" height",
  52262. height: math.unit(28 + 10/12, "feet")
  52263. },
  52264. {
  52265. name: "Base height",
  52266. height: math.unit(84 + 8/12, "feet"),
  52267. default: true
  52268. },
  52269. {
  52270. name: "Mini-macro",
  52271. height: math.unit(2360, "feet")
  52272. },
  52273. {
  52274. name: "Macro",
  52275. height: math.unit(10, "miles")
  52276. },
  52277. {
  52278. name: "Goddess",
  52279. height: math.unit(9.99e40, "yottameters")
  52280. },
  52281. ]
  52282. ))
  52283. characterMakers.push(() => makeCharacter(
  52284. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52285. {
  52286. front: {
  52287. height: math.unit(2.3, "meters"),
  52288. name: "Front",
  52289. image: {
  52290. source: "./media/characters/cilenomon/front.svg",
  52291. extra: 1963/1778,
  52292. bottom: 54/2017
  52293. }
  52294. },
  52295. },
  52296. [
  52297. {
  52298. name: "Normal",
  52299. height: math.unit(2.3, "meters"),
  52300. default: true
  52301. },
  52302. {
  52303. name: "Big",
  52304. height: math.unit(5, "meters")
  52305. },
  52306. {
  52307. name: "Macro",
  52308. height: math.unit(30, "meters")
  52309. },
  52310. {
  52311. name: "True",
  52312. height: math.unit(1, "universe")
  52313. },
  52314. ]
  52315. ))
  52316. characterMakers.push(() => makeCharacter(
  52317. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52318. {
  52319. front: {
  52320. height: math.unit(5, "feet"),
  52321. name: "Front",
  52322. image: {
  52323. source: "./media/characters/sen-mink/front.svg",
  52324. extra: 1727/1675,
  52325. bottom: 35/1762
  52326. }
  52327. },
  52328. },
  52329. [
  52330. {
  52331. name: "Normal",
  52332. height: math.unit(5, "feet"),
  52333. default: true
  52334. },
  52335. ]
  52336. ))
  52337. characterMakers.push(() => makeCharacter(
  52338. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52339. {
  52340. front: {
  52341. height: math.unit(5.42999, "feet"),
  52342. weight: math.unit(100, "lb"),
  52343. name: "Front",
  52344. image: {
  52345. source: "./media/characters/ophois/front.svg",
  52346. extra: 1429/1286,
  52347. bottom: 60/1489
  52348. }
  52349. },
  52350. },
  52351. [
  52352. {
  52353. name: "Normal",
  52354. height: math.unit(5.42999, "feet"),
  52355. default: true
  52356. },
  52357. ]
  52358. ))
  52359. characterMakers.push(() => makeCharacter(
  52360. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52361. {
  52362. front: {
  52363. height: math.unit(2, "meters"),
  52364. name: "Front",
  52365. image: {
  52366. source: "./media/characters/riley/front.svg",
  52367. extra: 1779/1754,
  52368. bottom: 139/1918
  52369. }
  52370. },
  52371. },
  52372. [
  52373. {
  52374. name: "Normal",
  52375. height: math.unit(2, "meters"),
  52376. default: true
  52377. },
  52378. ]
  52379. ))
  52380. characterMakers.push(() => makeCharacter(
  52381. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52382. {
  52383. front: {
  52384. height: math.unit(6 + 2/12, "feet"),
  52385. weight: math.unit(195, "lb"),
  52386. preyCapacity: math.unit(6, "people"),
  52387. name: "Front",
  52388. image: {
  52389. source: "./media/characters/shuken-flash/front.svg",
  52390. extra: 1905/1739,
  52391. bottom: 65/1970
  52392. }
  52393. },
  52394. back: {
  52395. height: math.unit(6 + 2/12, "feet"),
  52396. weight: math.unit(195, "lb"),
  52397. preyCapacity: math.unit(6, "people"),
  52398. name: "Back",
  52399. image: {
  52400. source: "./media/characters/shuken-flash/back.svg",
  52401. extra: 1912/1751,
  52402. bottom: 13/1925
  52403. }
  52404. },
  52405. },
  52406. [
  52407. {
  52408. name: "Normal",
  52409. height: math.unit(6 + 2/12, "feet"),
  52410. default: true
  52411. },
  52412. ]
  52413. ))
  52414. //characters
  52415. function makeCharacters() {
  52416. const results = [];
  52417. characterMakers.forEach(character => {
  52418. results.push(character());
  52419. });
  52420. return results;
  52421. }