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.
 
 
 

55460 lines
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. "coelacanth": {
  2087. name: "Coelacanth",
  2088. parents: ["fish"]
  2089. },
  2090. "silvally": {
  2091. name: "Silvally",
  2092. parents: ["legendary-pokemon"]
  2093. },
  2094. "legendary-pokemon": {
  2095. name: "Legendary Pokemon",
  2096. parents: ["pokemon"]
  2097. },
  2098. }
  2099. //species
  2100. function getSpeciesInfo(speciesList) {
  2101. let result = new Set();
  2102. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2103. result.add(entry)
  2104. });
  2105. return Array.from(result);
  2106. };
  2107. function getSpeciesInfoHelper(species) {
  2108. if (!speciesData[species]) {
  2109. console.warn(species + " doesn't exist");
  2110. return [];
  2111. }
  2112. if (speciesData[species].parents) {
  2113. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2114. } else {
  2115. return [species];
  2116. }
  2117. }
  2118. characterMakers.push(() => makeCharacter(
  2119. {
  2120. name: "Fen",
  2121. species: ["crux"],
  2122. description: {
  2123. title: "Bio",
  2124. text: "Very furry. Sheds on everything."
  2125. },
  2126. tags: [
  2127. "anthro",
  2128. "goo"
  2129. ]
  2130. },
  2131. {
  2132. front: {
  2133. height: math.unit(12, "feet"),
  2134. weight: math.unit(2400, "lb"),
  2135. preyCapacity: math.unit(1, "people"),
  2136. name: "Front",
  2137. image: {
  2138. source: "./media/characters/fen/front.svg",
  2139. extra: 1804/1562,
  2140. bottom: 205/2009
  2141. },
  2142. extraAttributes: {
  2143. pawSize: {
  2144. name: "Paw Size",
  2145. power: 2,
  2146. type: "area",
  2147. base: math.unit(0.35, "m^2")
  2148. }
  2149. }
  2150. },
  2151. diving: {
  2152. height: math.unit(4.9, "meters"),
  2153. weight: math.unit(2400, "lb"),
  2154. name: "Diving",
  2155. image: {
  2156. source: "./media/characters/fen/diving.svg"
  2157. }
  2158. },
  2159. sleeby: {
  2160. height: math.unit(3.45, "meters"),
  2161. weight: math.unit(2400, "lb"),
  2162. name: "Sleeby",
  2163. image: {
  2164. source: "./media/characters/fen/sleeby.svg"
  2165. }
  2166. },
  2167. goo: {
  2168. height: math.unit(12, "feet"),
  2169. weight: math.unit(3600, "lb"),
  2170. volume: math.unit(1000, "liters"),
  2171. preyCapacity: math.unit(6, "people"),
  2172. name: "Goo",
  2173. image: {
  2174. source: "./media/characters/fen/goo.svg",
  2175. extra: 1307/1071,
  2176. bottom: 134/1441
  2177. }
  2178. },
  2179. gooNsfw: {
  2180. height: math.unit(12, "feet"),
  2181. weight: math.unit(3750, "lb"),
  2182. volume: math.unit(1000, "liters"),
  2183. preyCapacity: math.unit(6, "people"),
  2184. name: "Goo (NSFW)",
  2185. image: {
  2186. source: "./media/characters/fen/goo-nsfw.svg",
  2187. extra: 1875/1734,
  2188. bottom: 122/1997
  2189. }
  2190. },
  2191. maw: {
  2192. height: math.unit(5.03, "feet"),
  2193. name: "Maw",
  2194. image: {
  2195. source: "./media/characters/fen/maw.svg"
  2196. }
  2197. },
  2198. gooCeiling: {
  2199. height: math.unit(6.6, "feet"),
  2200. weight: math.unit(3000, "lb"),
  2201. volume: math.unit(1000, "liters"),
  2202. preyCapacity: math.unit(6, "people"),
  2203. name: "Goo (Ceiling)",
  2204. image: {
  2205. source: "./media/characters/fen/goo-ceiling.svg"
  2206. }
  2207. },
  2208. paw: {
  2209. height: math.unit(3.77, "feet"),
  2210. name: "Paw",
  2211. image: {
  2212. source: "./media/characters/fen/paw.svg"
  2213. },
  2214. extraAttributes: {
  2215. "toeSize": {
  2216. name: "Toe Size",
  2217. power: 2,
  2218. type: "area",
  2219. base: math.unit(0.02875, "m^2")
  2220. },
  2221. "pawSize": {
  2222. name: "Paw Size",
  2223. power: 2,
  2224. type: "area",
  2225. base: math.unit(0.378, "m^2")
  2226. },
  2227. }
  2228. },
  2229. tail: {
  2230. height: math.unit(12.1, "feet"),
  2231. name: "Tail",
  2232. image: {
  2233. source: "./media/characters/fen/tail.svg"
  2234. }
  2235. },
  2236. tailFull: {
  2237. height: math.unit(12.1, "feet"),
  2238. name: "Full Tail",
  2239. image: {
  2240. source: "./media/characters/fen/tail-full.svg"
  2241. }
  2242. },
  2243. back: {
  2244. height: math.unit(12, "feet"),
  2245. weight: math.unit(2400, "lb"),
  2246. name: "Back",
  2247. image: {
  2248. source: "./media/characters/fen/back.svg",
  2249. },
  2250. info: {
  2251. description: {
  2252. mode: "append",
  2253. text: "\n\nHe is not currently looking at you."
  2254. }
  2255. }
  2256. },
  2257. full: {
  2258. height: math.unit(1.85, "meter"),
  2259. weight: math.unit(3200, "lb"),
  2260. name: "Full",
  2261. image: {
  2262. source: "./media/characters/fen/full.svg",
  2263. extra: 1133/859,
  2264. bottom: 145/1278
  2265. },
  2266. info: {
  2267. description: {
  2268. mode: "append",
  2269. text: "\n\nMunch."
  2270. }
  2271. }
  2272. },
  2273. gooLounging: {
  2274. height: math.unit(4.53, "feet"),
  2275. weight: math.unit(3000, "lb"),
  2276. preyCapacity: math.unit(6, "people"),
  2277. name: "Goo (Lounging)",
  2278. image: {
  2279. source: "./media/characters/fen/goo-lounging.svg",
  2280. bottom: 116 / 613
  2281. }
  2282. },
  2283. lounging: {
  2284. height: math.unit(10.52, "feet"),
  2285. weight: math.unit(2400, "lb"),
  2286. name: "Lounging",
  2287. image: {
  2288. source: "./media/characters/fen/lounging.svg"
  2289. }
  2290. },
  2291. },
  2292. [
  2293. {
  2294. name: "Small",
  2295. height: math.unit(2.2428, "meter")
  2296. },
  2297. {
  2298. name: "Normal",
  2299. height: math.unit(12, "feet"),
  2300. default: true,
  2301. },
  2302. {
  2303. name: "Big",
  2304. height: math.unit(20, "feet")
  2305. },
  2306. {
  2307. name: "Minimacro",
  2308. height: math.unit(40, "feet"),
  2309. info: {
  2310. description: {
  2311. mode: "append",
  2312. text: "\n\nTOO DAMN BIG"
  2313. }
  2314. }
  2315. },
  2316. {
  2317. name: "Macro",
  2318. height: math.unit(100, "feet"),
  2319. info: {
  2320. description: {
  2321. mode: "append",
  2322. text: "\n\nTOO DAMN BIG"
  2323. }
  2324. }
  2325. },
  2326. {
  2327. name: "Megamacro",
  2328. height: math.unit(2, "miles")
  2329. },
  2330. {
  2331. name: "Gigamacro",
  2332. height: math.unit(10, "earths")
  2333. },
  2334. ]
  2335. ))
  2336. characterMakers.push(() => makeCharacter(
  2337. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2338. {
  2339. front: {
  2340. height: math.unit(183, "cm"),
  2341. weight: math.unit(80, "kg"),
  2342. name: "Front",
  2343. image: {
  2344. source: "./media/characters/sofia-fluttertail/front.svg",
  2345. bottom: 0.01,
  2346. extra: 2154 / 2081
  2347. }
  2348. },
  2349. frontAlt: {
  2350. height: math.unit(183, "cm"),
  2351. weight: math.unit(80, "kg"),
  2352. name: "Front (alt)",
  2353. image: {
  2354. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2355. }
  2356. },
  2357. back: {
  2358. height: math.unit(183, "cm"),
  2359. weight: math.unit(80, "kg"),
  2360. name: "Back",
  2361. image: {
  2362. source: "./media/characters/sofia-fluttertail/back.svg"
  2363. }
  2364. },
  2365. kneeling: {
  2366. height: math.unit(125, "cm"),
  2367. weight: math.unit(80, "kg"),
  2368. name: "Kneeling",
  2369. image: {
  2370. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2371. extra: 1033 / 977,
  2372. bottom: 23.7 / 1057
  2373. }
  2374. },
  2375. maw: {
  2376. height: math.unit(183 / 5, "cm"),
  2377. name: "Maw",
  2378. image: {
  2379. source: "./media/characters/sofia-fluttertail/maw.svg"
  2380. }
  2381. },
  2382. mawcloseup: {
  2383. height: math.unit(183 / 5 * 0.41, "cm"),
  2384. name: "Maw (Closeup)",
  2385. image: {
  2386. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2387. }
  2388. },
  2389. paws: {
  2390. height: math.unit(1.17, "feet"),
  2391. name: "Paws",
  2392. image: {
  2393. source: "./media/characters/sofia-fluttertail/paws.svg",
  2394. extra: 851 / 851,
  2395. bottom: 17 / 868
  2396. }
  2397. },
  2398. },
  2399. [
  2400. {
  2401. name: "Normal",
  2402. height: math.unit(1.83, "meter")
  2403. },
  2404. {
  2405. name: "Size Thief",
  2406. height: math.unit(18, "feet")
  2407. },
  2408. {
  2409. name: "50 Foot Collie",
  2410. height: math.unit(50, "feet")
  2411. },
  2412. {
  2413. name: "Macro",
  2414. height: math.unit(96, "feet"),
  2415. default: true
  2416. },
  2417. {
  2418. name: "Megamerger",
  2419. height: math.unit(650, "feet")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(7, "feet"),
  2428. weight: math.unit(100, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/march/front.svg",
  2432. extra: 1992/1851,
  2433. bottom: 39/2031
  2434. }
  2435. },
  2436. foot: {
  2437. height: math.unit(0.9, "feet"),
  2438. name: "Foot",
  2439. image: {
  2440. source: "./media/characters/march/foot.svg"
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(7.9, "feet")
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(220, "meters")
  2452. },
  2453. {
  2454. name: "Megamacro",
  2455. height: math.unit(2.98, "km"),
  2456. default: true
  2457. },
  2458. {
  2459. name: "Gigamacro",
  2460. height: math.unit(15963, "km")
  2461. },
  2462. {
  2463. name: "Teramacro",
  2464. height: math.unit(2980000000, "km")
  2465. },
  2466. {
  2467. name: "Examacro",
  2468. height: math.unit(250, "parsecs")
  2469. },
  2470. ]
  2471. ))
  2472. characterMakers.push(() => makeCharacter(
  2473. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2474. {
  2475. front: {
  2476. height: math.unit(6, "feet"),
  2477. weight: math.unit(60, "kg"),
  2478. name: "Front",
  2479. image: {
  2480. source: "./media/characters/noir/front.svg",
  2481. extra: 1,
  2482. bottom: 0.032
  2483. }
  2484. },
  2485. },
  2486. [
  2487. {
  2488. name: "Normal",
  2489. height: math.unit(6.6, "feet")
  2490. },
  2491. {
  2492. name: "Macro",
  2493. height: math.unit(500, "feet")
  2494. },
  2495. {
  2496. name: "Megamacro",
  2497. height: math.unit(2.5, "km"),
  2498. default: true
  2499. },
  2500. {
  2501. name: "Gigamacro",
  2502. height: math.unit(22500, "km")
  2503. },
  2504. {
  2505. name: "Teramacro",
  2506. height: math.unit(2500000000, "km")
  2507. },
  2508. {
  2509. name: "Examacro",
  2510. height: math.unit(200, "parsecs")
  2511. },
  2512. ]
  2513. ))
  2514. characterMakers.push(() => makeCharacter(
  2515. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2516. {
  2517. front: {
  2518. height: math.unit(7, "feet"),
  2519. weight: math.unit(100, "kg"),
  2520. name: "Front",
  2521. image: {
  2522. source: "./media/characters/okuri/front.svg",
  2523. extra: 739/665,
  2524. bottom: 39/778
  2525. }
  2526. },
  2527. back: {
  2528. height: math.unit(7, "feet"),
  2529. weight: math.unit(100, "kg"),
  2530. name: "Back",
  2531. image: {
  2532. source: "./media/characters/okuri/back.svg",
  2533. extra: 734/653,
  2534. bottom: 13/747
  2535. }
  2536. },
  2537. sitting: {
  2538. height: math.unit(2.95, "feet"),
  2539. weight: math.unit(100, "kg"),
  2540. name: "Sitting",
  2541. image: {
  2542. source: "./media/characters/okuri/sitting.svg",
  2543. extra: 370/318,
  2544. bottom: 99/469
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Smallest",
  2551. height: math.unit(5 + 2/12, "feet")
  2552. },
  2553. {
  2554. name: "Smaller",
  2555. height: math.unit(300, "feet")
  2556. },
  2557. {
  2558. name: "Small",
  2559. height: math.unit(1000, "feet")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(1, "mile")
  2564. },
  2565. {
  2566. name: "Mega Macro (Small)",
  2567. height: math.unit(20, "km")
  2568. },
  2569. {
  2570. name: "Mega Macro (Large)",
  2571. height: math.unit(600, "km")
  2572. },
  2573. {
  2574. name: "Giga Macro",
  2575. height: math.unit(10000, "km")
  2576. },
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(577560, "km"),
  2580. default: true
  2581. },
  2582. {
  2583. name: "Large",
  2584. height: math.unit(4, "galaxies")
  2585. },
  2586. {
  2587. name: "Largest",
  2588. height: math.unit(15, "multiverses")
  2589. },
  2590. ]
  2591. ))
  2592. characterMakers.push(() => makeCharacter(
  2593. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2594. {
  2595. front: {
  2596. height: math.unit(7, "feet"),
  2597. weight: math.unit(100, "kg"),
  2598. name: "Front",
  2599. image: {
  2600. source: "./media/characters/manny/front.svg",
  2601. extra: 1,
  2602. bottom: 0.06
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7, "feet"),
  2607. weight: math.unit(100, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/manny/back.svg",
  2611. extra: 1,
  2612. bottom: 0.014
  2613. }
  2614. },
  2615. },
  2616. [
  2617. {
  2618. name: "Normal",
  2619. height: math.unit(7, "feet"),
  2620. },
  2621. {
  2622. name: "Macro",
  2623. height: math.unit(78, "feet"),
  2624. default: true
  2625. },
  2626. {
  2627. name: "Macro+",
  2628. height: math.unit(300, "meters")
  2629. },
  2630. {
  2631. name: "Macro++",
  2632. height: math.unit(2400, "meters")
  2633. },
  2634. {
  2635. name: "Megamacro",
  2636. height: math.unit(5167, "meters")
  2637. },
  2638. {
  2639. name: "Gigamacro",
  2640. height: math.unit(41769, "miles")
  2641. },
  2642. ]
  2643. ))
  2644. characterMakers.push(() => makeCharacter(
  2645. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2646. {
  2647. front: {
  2648. height: math.unit(7, "feet"),
  2649. weight: math.unit(100, "kg"),
  2650. name: "Front",
  2651. image: {
  2652. source: "./media/characters/adake/front-1.svg"
  2653. }
  2654. },
  2655. frontAlt: {
  2656. height: math.unit(7, "feet"),
  2657. weight: math.unit(100, "kg"),
  2658. name: "Front (Alt)",
  2659. image: {
  2660. source: "./media/characters/adake/front-2.svg",
  2661. extra: 1,
  2662. bottom: 0.01
  2663. }
  2664. },
  2665. back: {
  2666. height: math.unit(7, "feet"),
  2667. weight: math.unit(100, "kg"),
  2668. name: "Back",
  2669. image: {
  2670. source: "./media/characters/adake/back.svg",
  2671. }
  2672. },
  2673. kneel: {
  2674. height: math.unit(5.385, "feet"),
  2675. weight: math.unit(100, "kg"),
  2676. name: "Kneeling",
  2677. image: {
  2678. source: "./media/characters/adake/kneel.svg",
  2679. bottom: 0.052
  2680. }
  2681. },
  2682. },
  2683. [
  2684. {
  2685. name: "Normal",
  2686. height: math.unit(7, "feet"),
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(78, "feet"),
  2691. default: true
  2692. },
  2693. {
  2694. name: "Macro+",
  2695. height: math.unit(300, "meters")
  2696. },
  2697. {
  2698. name: "Macro++",
  2699. height: math.unit(2400, "meters")
  2700. },
  2701. {
  2702. name: "Megamacro",
  2703. height: math.unit(5167, "meters")
  2704. },
  2705. {
  2706. name: "Gigamacro",
  2707. height: math.unit(41769, "miles")
  2708. },
  2709. ]
  2710. ))
  2711. characterMakers.push(() => makeCharacter(
  2712. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2713. {
  2714. front: {
  2715. height: math.unit(1.65, "meters"),
  2716. weight: math.unit(50, "kg"),
  2717. name: "Front",
  2718. image: {
  2719. source: "./media/characters/elijah/front.svg",
  2720. extra: 858 / 830,
  2721. bottom: 95.5 / 953.8559
  2722. }
  2723. },
  2724. back: {
  2725. height: math.unit(1.65, "meters"),
  2726. weight: math.unit(50, "kg"),
  2727. name: "Back",
  2728. image: {
  2729. source: "./media/characters/elijah/back.svg",
  2730. extra: 895 / 850,
  2731. bottom: 5.3 / 897.956
  2732. }
  2733. },
  2734. frontNsfw: {
  2735. height: math.unit(1.65, "meters"),
  2736. weight: math.unit(50, "kg"),
  2737. name: "Front (NSFW)",
  2738. image: {
  2739. source: "./media/characters/elijah/front-nsfw.svg",
  2740. extra: 858 / 830,
  2741. bottom: 95.5 / 953.8559
  2742. }
  2743. },
  2744. backNsfw: {
  2745. height: math.unit(1.65, "meters"),
  2746. weight: math.unit(50, "kg"),
  2747. name: "Back (NSFW)",
  2748. image: {
  2749. source: "./media/characters/elijah/back-nsfw.svg",
  2750. extra: 895 / 850,
  2751. bottom: 5.3 / 897.956
  2752. }
  2753. },
  2754. dick: {
  2755. height: math.unit(1, "feet"),
  2756. name: "Dick",
  2757. image: {
  2758. source: "./media/characters/elijah/dick.svg"
  2759. }
  2760. },
  2761. beakOpen: {
  2762. height: math.unit(1.25, "feet"),
  2763. name: "Beak (Open)",
  2764. image: {
  2765. source: "./media/characters/elijah/beak-open.svg"
  2766. }
  2767. },
  2768. beakShut: {
  2769. height: math.unit(1.25, "feet"),
  2770. name: "Beak (Shut)",
  2771. image: {
  2772. source: "./media/characters/elijah/beak-shut.svg"
  2773. }
  2774. },
  2775. footFlexing: {
  2776. height: math.unit(1.61, "feet"),
  2777. name: "Foot (Flexing)",
  2778. image: {
  2779. source: "./media/characters/elijah/foot-flexing.svg"
  2780. }
  2781. },
  2782. footStepping: {
  2783. height: math.unit(1.44, "feet"),
  2784. name: "Foot (Stepping)",
  2785. image: {
  2786. source: "./media/characters/elijah/foot-stepping.svg"
  2787. }
  2788. },
  2789. plantigradeLeg: {
  2790. height: math.unit(2.34, "feet"),
  2791. name: "Plantigrade Leg",
  2792. image: {
  2793. source: "./media/characters/elijah/plantigrade-leg.svg"
  2794. }
  2795. },
  2796. plantigradeFootLeft: {
  2797. height: math.unit(0.9, "feet"),
  2798. name: "Plantigrade Foot (Left)",
  2799. image: {
  2800. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2801. }
  2802. },
  2803. plantigradeFootRight: {
  2804. height: math.unit(0.9, "feet"),
  2805. name: "Plantigrade Foot (Right)",
  2806. image: {
  2807. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2808. }
  2809. },
  2810. },
  2811. [
  2812. {
  2813. name: "Normal",
  2814. height: math.unit(1.65, "meters")
  2815. },
  2816. {
  2817. name: "Macro",
  2818. height: math.unit(55, "meters"),
  2819. default: true
  2820. },
  2821. {
  2822. name: "Macro+",
  2823. height: math.unit(105, "meters")
  2824. },
  2825. ]
  2826. ))
  2827. characterMakers.push(() => makeCharacter(
  2828. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2829. {
  2830. front: {
  2831. height: math.unit(7 + 2/12, "feet"),
  2832. weight: math.unit(320, "kg"),
  2833. preyCapacity: math.unit(0.276549935, "people"),
  2834. name: "Front",
  2835. image: {
  2836. source: "./media/characters/rai/front.svg",
  2837. extra: 1802/1696,
  2838. bottom: 68/1870
  2839. },
  2840. form: "anthro",
  2841. default: true
  2842. },
  2843. frontDressed: {
  2844. height: math.unit(7 + 2/12, "feet"),
  2845. weight: math.unit(320, "kg"),
  2846. preyCapacity: math.unit(0.276549935, "people"),
  2847. name: "Front (Dressed)",
  2848. image: {
  2849. source: "./media/characters/rai/front-dressed.svg",
  2850. extra: 1802/1696,
  2851. bottom: 68/1870
  2852. },
  2853. form: "anthro"
  2854. },
  2855. side: {
  2856. height: math.unit(7 + 2/12, "feet"),
  2857. weight: math.unit(320, "kg"),
  2858. preyCapacity: math.unit(0.276549935, "people"),
  2859. name: "Side",
  2860. image: {
  2861. source: "./media/characters/rai/side.svg",
  2862. extra: 1789/1710,
  2863. bottom: 115/1904
  2864. },
  2865. form: "anthro"
  2866. },
  2867. back: {
  2868. height: math.unit(7 + 2/12, "feet"),
  2869. weight: math.unit(320, "kg"),
  2870. preyCapacity: math.unit(0.276549935, "people"),
  2871. name: "Back",
  2872. image: {
  2873. source: "./media/characters/rai/back.svg",
  2874. extra: 1770/1707,
  2875. bottom: 28/1798
  2876. },
  2877. form: "anthro"
  2878. },
  2879. feral: {
  2880. height: math.unit(9.5, "feet"),
  2881. weight: math.unit(640, "kg"),
  2882. preyCapacity: math.unit(4, "people"),
  2883. name: "Feral",
  2884. image: {
  2885. source: "./media/characters/rai/feral.svg",
  2886. extra: 945/553,
  2887. bottom: 176/1121
  2888. },
  2889. form: "feral",
  2890. default: true
  2891. },
  2892. dragon: {
  2893. height: math.unit(23, "feet"),
  2894. weight: math.unit(50000, "lb"),
  2895. name: "Dragon",
  2896. image: {
  2897. source: "./media/characters/rai/dragon.svg",
  2898. extra: 2498 / 2030,
  2899. bottom: 85.2 / 2584
  2900. },
  2901. form: "dragon",
  2902. default: true
  2903. },
  2904. maw: {
  2905. height: math.unit(1.69, "feet"),
  2906. name: "Maw",
  2907. image: {
  2908. source: "./media/characters/rai/maw.svg"
  2909. },
  2910. form: "anthro"
  2911. },
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(7 + 2/12, "feet"),
  2917. form: "anthro"
  2918. },
  2919. {
  2920. name: "Big",
  2921. height: math.unit(11, "feet"),
  2922. form: "anthro"
  2923. },
  2924. {
  2925. name: "Minimacro",
  2926. height: math.unit(77, "feet"),
  2927. form: "anthro"
  2928. },
  2929. {
  2930. name: "Macro",
  2931. height: math.unit(302, "feet"),
  2932. default: true,
  2933. form: "anthro"
  2934. },
  2935. {
  2936. name: "Normal",
  2937. height: math.unit(9.5, "feet"),
  2938. form: "feral",
  2939. default: true
  2940. },
  2941. {
  2942. name: "Normal",
  2943. height: math.unit(23, "feet"),
  2944. form: "dragon",
  2945. default: true
  2946. }
  2947. ],
  2948. {
  2949. "anthro": {
  2950. name: "Anthro",
  2951. default: true
  2952. },
  2953. "feral": {
  2954. name: "Feral",
  2955. },
  2956. "dragon": {
  2957. name: "Dragon",
  2958. },
  2959. }
  2960. ))
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2963. {
  2964. frontDressed: {
  2965. height: math.unit(216, "feet"),
  2966. weight: math.unit(7000000, "lb"),
  2967. preyCapacity: math.unit(1321, "people"),
  2968. name: "Front (Dressed)",
  2969. image: {
  2970. source: "./media/characters/jazzy/front-dressed.svg",
  2971. extra: 2738 / 2651,
  2972. bottom: 41.8 / 2786
  2973. }
  2974. },
  2975. backDressed: {
  2976. height: math.unit(216, "feet"),
  2977. weight: math.unit(7000000, "lb"),
  2978. preyCapacity: math.unit(1321, "people"),
  2979. name: "Back (Dressed)",
  2980. image: {
  2981. source: "./media/characters/jazzy/back-dressed.svg",
  2982. extra: 2775 / 2673,
  2983. bottom: 36.8 / 2817
  2984. }
  2985. },
  2986. front: {
  2987. height: math.unit(216, "feet"),
  2988. weight: math.unit(7000000, "lb"),
  2989. preyCapacity: math.unit(1321, "people"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/jazzy/front.svg",
  2993. extra: 2738 / 2651,
  2994. bottom: 41.8 / 2786
  2995. }
  2996. },
  2997. back: {
  2998. height: math.unit(216, "feet"),
  2999. weight: math.unit(7000000, "lb"),
  3000. preyCapacity: math.unit(1321, "people"),
  3001. name: "Back",
  3002. image: {
  3003. source: "./media/characters/jazzy/back.svg",
  3004. extra: 2775 / 2673,
  3005. bottom: 36.8 / 2817
  3006. }
  3007. },
  3008. maw: {
  3009. height: math.unit(20, "feet"),
  3010. name: "Maw",
  3011. image: {
  3012. source: "./media/characters/jazzy/maw.svg"
  3013. }
  3014. },
  3015. paws: {
  3016. height: math.unit(27.5, "feet"),
  3017. name: "Paws",
  3018. image: {
  3019. source: "./media/characters/jazzy/paws.svg"
  3020. }
  3021. },
  3022. eye: {
  3023. height: math.unit(4.4, "feet"),
  3024. name: "Eye",
  3025. image: {
  3026. source: "./media/characters/jazzy/eye.svg"
  3027. }
  3028. },
  3029. droneOffense: {
  3030. height: math.unit(9.5, "inches"),
  3031. name: "Drone (Offense)",
  3032. image: {
  3033. source: "./media/characters/jazzy/drone-offense.svg"
  3034. }
  3035. },
  3036. droneRecon: {
  3037. height: math.unit(9.5, "inches"),
  3038. name: "Drone (Recon)",
  3039. image: {
  3040. source: "./media/characters/jazzy/drone-recon.svg"
  3041. }
  3042. },
  3043. droneDefense: {
  3044. height: math.unit(9.5, "inches"),
  3045. name: "Drone (Defense)",
  3046. image: {
  3047. source: "./media/characters/jazzy/drone-defense.svg"
  3048. }
  3049. },
  3050. },
  3051. [
  3052. {
  3053. name: "Macro",
  3054. height: math.unit(216, "feet"),
  3055. default: true
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(9 + 6/12, "feet"),
  3064. weight: math.unit(700, "lb"),
  3065. name: "Front",
  3066. image: {
  3067. source: "./media/characters/flamm/front.svg",
  3068. extra: 1751/1632,
  3069. bottom: 46/1797
  3070. }
  3071. },
  3072. buff: {
  3073. height: math.unit(9 + 6/12, "feet"),
  3074. weight: math.unit(950, "lb"),
  3075. name: "Buff",
  3076. image: {
  3077. source: "./media/characters/flamm/buff.svg",
  3078. extra: 3018/2874,
  3079. bottom: 221/3239
  3080. }
  3081. },
  3082. },
  3083. [
  3084. {
  3085. name: "Normal",
  3086. height: math.unit(9.5, "feet")
  3087. },
  3088. {
  3089. name: "Macro",
  3090. height: math.unit(200, "feet"),
  3091. default: true
  3092. },
  3093. ]
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3097. {
  3098. front: {
  3099. height: math.unit(5 + 3/12, "feet"),
  3100. weight: math.unit(60, "kg"),
  3101. name: "Front",
  3102. image: {
  3103. source: "./media/characters/zephiro/front.svg",
  3104. extra: 1873/1761,
  3105. bottom: 147/2020
  3106. }
  3107. },
  3108. side: {
  3109. height: math.unit(5 + 3/12, "feet"),
  3110. weight: math.unit(60, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/zephiro/side.svg",
  3114. extra: 1929/1827,
  3115. bottom: 65/1994
  3116. }
  3117. },
  3118. back: {
  3119. height: math.unit(5 + 3/12, "feet"),
  3120. weight: math.unit(60, "kg"),
  3121. name: "Back",
  3122. image: {
  3123. source: "./media/characters/zephiro/back.svg",
  3124. extra: 1926/1816,
  3125. bottom: 41/1967
  3126. }
  3127. },
  3128. hand: {
  3129. height: math.unit(0.68, "feet"),
  3130. name: "Hand",
  3131. image: {
  3132. source: "./media/characters/zephiro/hand.svg"
  3133. }
  3134. },
  3135. paw: {
  3136. height: math.unit(1, "feet"),
  3137. name: "Paw",
  3138. image: {
  3139. source: "./media/characters/zephiro/paw.svg"
  3140. }
  3141. },
  3142. beans: {
  3143. height: math.unit(0.93, "feet"),
  3144. name: "Beans",
  3145. image: {
  3146. source: "./media/characters/zephiro/beans.svg"
  3147. }
  3148. },
  3149. },
  3150. [
  3151. {
  3152. name: "Micro",
  3153. height: math.unit(3, "inches")
  3154. },
  3155. {
  3156. name: "Normal",
  3157. height: math.unit(5 + 3 / 12, "feet"),
  3158. default: true
  3159. },
  3160. {
  3161. name: "Macro",
  3162. height: math.unit(118, "feet")
  3163. },
  3164. ]
  3165. ))
  3166. characterMakers.push(() => makeCharacter(
  3167. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3168. {
  3169. front: {
  3170. height: math.unit(5, "feet"),
  3171. weight: math.unit(90, "kg"),
  3172. name: "Front",
  3173. image: {
  3174. source: "./media/characters/fory/front.svg",
  3175. extra: 2862 / 2674,
  3176. bottom: 180 / 3043.8
  3177. }
  3178. },
  3179. back: {
  3180. height: math.unit(5, "feet"),
  3181. weight: math.unit(90, "kg"),
  3182. name: "Back",
  3183. image: {
  3184. source: "./media/characters/fory/back.svg",
  3185. extra: 2962 / 2791,
  3186. bottom: 106 / 3071.8
  3187. }
  3188. },
  3189. foot: {
  3190. height: math.unit(2.14, "feet"),
  3191. name: "Foot",
  3192. image: {
  3193. source: "./media/characters/fory/foot.svg"
  3194. }
  3195. },
  3196. },
  3197. [
  3198. {
  3199. name: "Normal",
  3200. height: math.unit(5, "feet")
  3201. },
  3202. {
  3203. name: "Macro",
  3204. height: math.unit(50, "feet"),
  3205. default: true
  3206. },
  3207. {
  3208. name: "Megamacro",
  3209. height: math.unit(10, "miles")
  3210. },
  3211. {
  3212. name: "Gigamacro",
  3213. height: math.unit(5, "earths")
  3214. },
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3219. {
  3220. front: {
  3221. height: math.unit(7, "feet"),
  3222. weight: math.unit(90, "kg"),
  3223. name: "Front",
  3224. image: {
  3225. source: "./media/characters/kurrikage/front.svg",
  3226. extra: 1845/1733,
  3227. bottom: 119/1964
  3228. }
  3229. },
  3230. back: {
  3231. height: math.unit(7, "feet"),
  3232. weight: math.unit(90, "kg"),
  3233. name: "Back",
  3234. image: {
  3235. source: "./media/characters/kurrikage/back.svg",
  3236. extra: 1790/1677,
  3237. bottom: 61/1851
  3238. }
  3239. },
  3240. dressed: {
  3241. height: math.unit(7, "feet"),
  3242. weight: math.unit(90, "kg"),
  3243. name: "Dressed",
  3244. image: {
  3245. source: "./media/characters/kurrikage/dressed.svg",
  3246. extra: 1845/1733,
  3247. bottom: 119/1964
  3248. }
  3249. },
  3250. foot: {
  3251. height: math.unit(1.5, "feet"),
  3252. name: "Foot",
  3253. image: {
  3254. source: "./media/characters/kurrikage/foot.svg"
  3255. }
  3256. },
  3257. staff: {
  3258. height: math.unit(6.7, "feet"),
  3259. name: "Staff",
  3260. image: {
  3261. source: "./media/characters/kurrikage/staff.svg"
  3262. }
  3263. },
  3264. peek: {
  3265. height: math.unit(1.05, "feet"),
  3266. name: "Peeking",
  3267. image: {
  3268. source: "./media/characters/kurrikage/peek.svg",
  3269. bottom: 0.08
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(12, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Big",
  3281. height: math.unit(20, "feet")
  3282. },
  3283. {
  3284. name: "Macro",
  3285. height: math.unit(500, "feet")
  3286. },
  3287. {
  3288. name: "Megamacro",
  3289. height: math.unit(20, "miles")
  3290. },
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(6, "feet"),
  3298. weight: math.unit(75, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/shingo/front.svg",
  3302. extra: 1900/1825,
  3303. bottom: 82/1982
  3304. }
  3305. },
  3306. side: {
  3307. height: math.unit(6, "feet"),
  3308. weight: math.unit(75, "kg"),
  3309. name: "Side",
  3310. image: {
  3311. source: "./media/characters/shingo/side.svg",
  3312. extra: 1930/1865,
  3313. bottom: 16/1946
  3314. }
  3315. },
  3316. back: {
  3317. height: math.unit(6, "feet"),
  3318. weight: math.unit(75, "kg"),
  3319. name: "Back",
  3320. image: {
  3321. source: "./media/characters/shingo/back.svg",
  3322. extra: 1922/1852,
  3323. bottom: 16/1938
  3324. }
  3325. },
  3326. frontDressed: {
  3327. height: math.unit(6, "feet"),
  3328. weight: math.unit(150, "lb"),
  3329. name: "Front-dressed",
  3330. image: {
  3331. source: "./media/characters/shingo/front-dressed.svg",
  3332. extra: 1900/1825,
  3333. bottom: 82/1982
  3334. }
  3335. },
  3336. paw: {
  3337. height: math.unit(1.29, "feet"),
  3338. name: "Paw",
  3339. image: {
  3340. source: "./media/characters/shingo/paw.svg"
  3341. }
  3342. },
  3343. hand: {
  3344. height: math.unit(1.07, "feet"),
  3345. name: "Hand",
  3346. image: {
  3347. source: "./media/characters/shingo/hand.svg"
  3348. }
  3349. },
  3350. frontAlt: {
  3351. height: math.unit(6, "feet"),
  3352. weight: math.unit(75, "kg"),
  3353. name: "Front (Alt)",
  3354. image: {
  3355. source: "./media/characters/shingo/front-alt.svg",
  3356. extra: 3511 / 3338,
  3357. bottom: 0.005
  3358. }
  3359. },
  3360. frontAlt2: {
  3361. height: math.unit(6, "feet"),
  3362. weight: math.unit(75, "kg"),
  3363. name: "Front (Alt 2)",
  3364. image: {
  3365. source: "./media/characters/shingo/front-alt-2.svg",
  3366. extra: 706/681,
  3367. bottom: 11/717
  3368. }
  3369. },
  3370. pawAlt: {
  3371. height: math.unit(1, "feet"),
  3372. name: "Paw (Alt)",
  3373. image: {
  3374. source: "./media/characters/shingo/paw-alt.svg"
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Micro",
  3381. height: math.unit(4, "inches")
  3382. },
  3383. {
  3384. name: "Normal",
  3385. height: math.unit(6, "feet"),
  3386. default: true
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(108, "feet")
  3391. },
  3392. {
  3393. name: "Macro+",
  3394. height: math.unit(1500, "feet")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3400. {
  3401. side: {
  3402. height: math.unit(6, "feet"),
  3403. weight: math.unit(75, "kg"),
  3404. name: "Side",
  3405. image: {
  3406. source: "./media/characters/aigey/side.svg"
  3407. }
  3408. },
  3409. },
  3410. [
  3411. {
  3412. name: "Macro",
  3413. height: math.unit(200, "feet"),
  3414. default: true
  3415. },
  3416. {
  3417. name: "Megamacro",
  3418. height: math.unit(100, "miles")
  3419. },
  3420. ]
  3421. )
  3422. )
  3423. characterMakers.push(() => makeCharacter(
  3424. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3425. {
  3426. front: {
  3427. height: math.unit(5 + 5 / 12, "feet"),
  3428. weight: math.unit(75, "kg"),
  3429. name: "Front",
  3430. image: {
  3431. source: "./media/characters/natasha/front.svg",
  3432. extra: 859 / 824,
  3433. bottom: 23 / 879.6
  3434. }
  3435. },
  3436. frontNsfw: {
  3437. height: math.unit(5 + 5 / 12, "feet"),
  3438. weight: math.unit(75, "kg"),
  3439. name: "Front (NSFW)",
  3440. image: {
  3441. source: "./media/characters/natasha/front-nsfw.svg",
  3442. extra: 859 / 824,
  3443. bottom: 23 / 879.6
  3444. }
  3445. },
  3446. frontErect: {
  3447. height: math.unit(5 + 5 / 12, "feet"),
  3448. weight: math.unit(75, "kg"),
  3449. name: "Front (Erect)",
  3450. image: {
  3451. source: "./media/characters/natasha/front-erect.svg",
  3452. extra: 859 / 824,
  3453. bottom: 23 / 879.6
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(5 + 5 / 12, "feet"),
  3458. weight: math.unit(75, "kg"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/natasha/back.svg",
  3462. extra: 887.9 / 852.6,
  3463. bottom: 9.7 / 896.4
  3464. }
  3465. },
  3466. backAlt: {
  3467. height: math.unit(5 + 5 / 12, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Back (Alt)",
  3470. image: {
  3471. source: "./media/characters/natasha/back-alt.svg",
  3472. extra: 1236.7 / 1192,
  3473. bottom: 22.3 / 1258.2
  3474. }
  3475. },
  3476. dick: {
  3477. height: math.unit(1.772, "feet"),
  3478. name: "Dick",
  3479. image: {
  3480. source: "./media/characters/natasha/dick.svg"
  3481. }
  3482. },
  3483. paw: {
  3484. height: math.unit(0.250, "meters"),
  3485. name: "Paw",
  3486. image: {
  3487. source: "./media/characters/natasha/paw.svg"
  3488. },
  3489. extraAttributes: {
  3490. "toeSize": {
  3491. name: "Toe Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.0024, "m^2")
  3495. },
  3496. "padSize": {
  3497. name: "Pad Size",
  3498. power: 2,
  3499. type: "area",
  3500. base: math.unit(0.00889, "m^2")
  3501. },
  3502. "pawSize": {
  3503. name: "Paw Size",
  3504. power: 2,
  3505. type: "area",
  3506. base: math.unit(0.023667, "m^2")
  3507. },
  3508. }
  3509. },
  3510. },
  3511. [
  3512. {
  3513. name: "Shortstack",
  3514. height: math.unit(3, "feet"),
  3515. default: true
  3516. },
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(5 + 5 / 12, "feet")
  3520. },
  3521. {
  3522. name: "Large",
  3523. height: math.unit(12, "feet")
  3524. },
  3525. {
  3526. name: "Macro",
  3527. height: math.unit(100, "feet")
  3528. },
  3529. {
  3530. name: "Macro+",
  3531. height: math.unit(260, "feet")
  3532. },
  3533. {
  3534. name: "Macro++",
  3535. height: math.unit(1, "mile")
  3536. },
  3537. ]
  3538. ))
  3539. characterMakers.push(() => makeCharacter(
  3540. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3541. {
  3542. front: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Front",
  3546. image: {
  3547. source: "./media/characters/malik/front.svg",
  3548. extra: 1750/1561,
  3549. bottom: 80/1830
  3550. },
  3551. extraAttributes: {
  3552. "toeSize": {
  3553. name: "Toe Size",
  3554. power: 2,
  3555. type: "area",
  3556. base: math.unit(0.0159, "m^2")
  3557. },
  3558. "pawSize": {
  3559. name: "Paw Size",
  3560. power: 2,
  3561. type: "area",
  3562. base: math.unit(0.09834, "m^2")
  3563. },
  3564. }
  3565. },
  3566. side: {
  3567. height: math.unit(6, "feet"),
  3568. weight: math.unit(75, "kg"),
  3569. name: "Side",
  3570. image: {
  3571. source: "./media/characters/malik/side.svg",
  3572. extra: 1802/1685,
  3573. bottom: 42/1844
  3574. },
  3575. extraAttributes: {
  3576. "toeSize": {
  3577. name: "Toe Size",
  3578. power: 2,
  3579. type: "area",
  3580. base: math.unit(0.0159, "m^2")
  3581. },
  3582. "pawSize": {
  3583. name: "Paw Size",
  3584. power: 2,
  3585. type: "area",
  3586. base: math.unit(0.09834, "m^2")
  3587. },
  3588. }
  3589. },
  3590. back: {
  3591. height: math.unit(6, "feet"),
  3592. weight: math.unit(75, "kg"),
  3593. name: "Back",
  3594. image: {
  3595. source: "./media/characters/malik/back.svg",
  3596. extra: 1803/1607,
  3597. bottom: 33/1836
  3598. },
  3599. extraAttributes: {
  3600. "toeSize": {
  3601. name: "Toe Size",
  3602. power: 2,
  3603. type: "area",
  3604. base: math.unit(0.0159, "m^2")
  3605. },
  3606. "pawSize": {
  3607. name: "Paw Size",
  3608. power: 2,
  3609. type: "area",
  3610. base: math.unit(0.09834, "m^2")
  3611. },
  3612. }
  3613. },
  3614. },
  3615. [
  3616. {
  3617. name: "Macro",
  3618. height: math.unit(156, "feet"),
  3619. default: true
  3620. },
  3621. {
  3622. name: "Macro+",
  3623. height: math.unit(1188, "feet")
  3624. },
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3629. {
  3630. front: {
  3631. height: math.unit(6, "feet"),
  3632. weight: math.unit(75, "kg"),
  3633. name: "Front",
  3634. image: {
  3635. source: "./media/characters/sefer/front.svg",
  3636. extra: 848 / 659,
  3637. bottom: 28.3 / 876.442
  3638. }
  3639. },
  3640. back: {
  3641. height: math.unit(6, "feet"),
  3642. weight: math.unit(75, "kg"),
  3643. name: "Back",
  3644. image: {
  3645. source: "./media/characters/sefer/back.svg",
  3646. extra: 864 / 695,
  3647. bottom: 10 / 871
  3648. }
  3649. },
  3650. frontDressed: {
  3651. height: math.unit(6, "feet"),
  3652. weight: math.unit(75, "kg"),
  3653. name: "Dressed",
  3654. image: {
  3655. source: "./media/characters/sefer/dressed.svg",
  3656. extra: 839 / 653,
  3657. bottom: 37.6 / 878
  3658. }
  3659. },
  3660. },
  3661. [
  3662. {
  3663. name: "Normal",
  3664. height: math.unit(6, "feet"),
  3665. default: true
  3666. },
  3667. {
  3668. name: "Big",
  3669. height: math.unit(8, "meters")
  3670. },
  3671. ]
  3672. ))
  3673. characterMakers.push(() => makeCharacter(
  3674. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3675. {
  3676. body: {
  3677. height: math.unit(2.2428, "meter"),
  3678. weight: math.unit(124.738, "kg"),
  3679. name: "Body",
  3680. image: {
  3681. extra: 1225 / 1050,
  3682. source: "./media/characters/north/front.svg"
  3683. }
  3684. }
  3685. },
  3686. [
  3687. {
  3688. name: "Micro",
  3689. height: math.unit(4, "inches")
  3690. },
  3691. {
  3692. name: "Macro",
  3693. height: math.unit(63, "meters")
  3694. },
  3695. {
  3696. name: "Megamacro",
  3697. height: math.unit(101, "miles"),
  3698. default: true
  3699. }
  3700. ]
  3701. ))
  3702. characterMakers.push(() => makeCharacter(
  3703. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3704. {
  3705. angled: {
  3706. height: math.unit(4, "meter"),
  3707. weight: math.unit(150, "kg"),
  3708. name: "Angled",
  3709. image: {
  3710. source: "./media/characters/talan/angled-sfw.svg",
  3711. bottom: 29 / 3734
  3712. }
  3713. },
  3714. angledNsfw: {
  3715. height: math.unit(4, "meter"),
  3716. weight: math.unit(150, "kg"),
  3717. name: "Angled (NSFW)",
  3718. image: {
  3719. source: "./media/characters/talan/angled-nsfw.svg",
  3720. bottom: 29 / 3734
  3721. }
  3722. },
  3723. frontNsfw: {
  3724. height: math.unit(4, "meter"),
  3725. weight: math.unit(150, "kg"),
  3726. name: "Front (NSFW)",
  3727. image: {
  3728. source: "./media/characters/talan/front-nsfw.svg",
  3729. bottom: 29 / 3734
  3730. }
  3731. },
  3732. sideNsfw: {
  3733. height: math.unit(4, "meter"),
  3734. weight: math.unit(150, "kg"),
  3735. name: "Side (NSFW)",
  3736. image: {
  3737. source: "./media/characters/talan/side-nsfw.svg",
  3738. bottom: 29 / 3734
  3739. }
  3740. },
  3741. back: {
  3742. height: math.unit(4, "meter"),
  3743. weight: math.unit(150, "kg"),
  3744. name: "Back",
  3745. image: {
  3746. source: "./media/characters/talan/back.svg"
  3747. }
  3748. },
  3749. dickBottom: {
  3750. height: math.unit(0.621, "meter"),
  3751. name: "Dick (Bottom)",
  3752. image: {
  3753. source: "./media/characters/talan/dick-bottom.svg"
  3754. }
  3755. },
  3756. dickTop: {
  3757. height: math.unit(0.621, "meter"),
  3758. name: "Dick (Top)",
  3759. image: {
  3760. source: "./media/characters/talan/dick-top.svg"
  3761. }
  3762. },
  3763. dickSide: {
  3764. height: math.unit(0.305, "meter"),
  3765. name: "Dick (Side)",
  3766. image: {
  3767. source: "./media/characters/talan/dick-side.svg"
  3768. }
  3769. },
  3770. dickFront: {
  3771. height: math.unit(0.305, "meter"),
  3772. name: "Dick (Front)",
  3773. image: {
  3774. source: "./media/characters/talan/dick-front.svg"
  3775. }
  3776. },
  3777. },
  3778. [
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(4, "meters")
  3782. },
  3783. {
  3784. name: "Macro",
  3785. height: math.unit(100, "meters")
  3786. },
  3787. {
  3788. name: "Megamacro",
  3789. height: math.unit(2, "miles"),
  3790. default: true
  3791. },
  3792. {
  3793. name: "Gigamacro",
  3794. height: math.unit(5000, "miles")
  3795. },
  3796. {
  3797. name: "Teramacro",
  3798. height: math.unit(100, "parsecs")
  3799. }
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(2, "meter"),
  3807. weight: math.unit(90, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/gael'rathus/front.svg"
  3811. }
  3812. },
  3813. frontAlt: {
  3814. height: math.unit(2, "meter"),
  3815. weight: math.unit(90, "kg"),
  3816. name: "Front (alt)",
  3817. image: {
  3818. source: "./media/characters/gael'rathus/front-alt.svg"
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(2, "meter"),
  3823. weight: math.unit(90, "kg"),
  3824. name: "Front (alt 2)",
  3825. image: {
  3826. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3827. }
  3828. }
  3829. },
  3830. [
  3831. {
  3832. name: "Normal",
  3833. height: math.unit(9, "feet"),
  3834. default: true
  3835. },
  3836. {
  3837. name: "Large",
  3838. height: math.unit(25, "feet")
  3839. },
  3840. {
  3841. name: "Macro",
  3842. height: math.unit(0.25, "miles")
  3843. },
  3844. {
  3845. name: "Megamacro",
  3846. height: math.unit(10, "miles")
  3847. }
  3848. ]
  3849. ))
  3850. characterMakers.push(() => makeCharacter(
  3851. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3852. {
  3853. side: {
  3854. height: math.unit(2, "meter"),
  3855. weight: math.unit(140, "kg"),
  3856. name: "Side",
  3857. image: {
  3858. source: "./media/characters/sosha/side.svg",
  3859. extra: 1170/1006,
  3860. bottom: 94/1264
  3861. }
  3862. },
  3863. maw: {
  3864. height: math.unit(2.87, "feet"),
  3865. name: "Maw",
  3866. image: {
  3867. source: "./media/characters/sosha/maw.svg",
  3868. extra: 966/865,
  3869. bottom: 0/966
  3870. }
  3871. },
  3872. cooch: {
  3873. height: math.unit(5.6, "feet"),
  3874. name: "Cooch",
  3875. image: {
  3876. source: "./media/characters/sosha/cooch.svg"
  3877. }
  3878. },
  3879. },
  3880. [
  3881. {
  3882. name: "Normal",
  3883. height: math.unit(12, "feet"),
  3884. default: true
  3885. }
  3886. ]
  3887. ))
  3888. characterMakers.push(() => makeCharacter(
  3889. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3890. {
  3891. side: {
  3892. height: math.unit(5 + 5 / 12, "feet"),
  3893. weight: math.unit(170, "kg"),
  3894. name: "Side",
  3895. image: {
  3896. source: "./media/characters/runnola/side.svg",
  3897. extra: 741 / 448,
  3898. bottom: 0.05
  3899. }
  3900. },
  3901. },
  3902. [
  3903. {
  3904. name: "Small",
  3905. height: math.unit(3, "feet")
  3906. },
  3907. {
  3908. name: "Normal",
  3909. height: math.unit(5 + 5 / 12, "feet"),
  3910. default: true
  3911. },
  3912. {
  3913. name: "Big",
  3914. height: math.unit(10, "feet")
  3915. },
  3916. ]
  3917. ))
  3918. characterMakers.push(() => makeCharacter(
  3919. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3920. {
  3921. front: {
  3922. height: math.unit(2, "meter"),
  3923. weight: math.unit(50, "kg"),
  3924. name: "Front",
  3925. image: {
  3926. source: "./media/characters/kurribird/front.svg",
  3927. bottom: 0.015
  3928. }
  3929. },
  3930. frontAlt: {
  3931. height: math.unit(1.5, "meter"),
  3932. weight: math.unit(50, "kg"),
  3933. name: "Front (Alt)",
  3934. image: {
  3935. source: "./media/characters/kurribird/front-alt.svg",
  3936. extra: 1.45
  3937. }
  3938. },
  3939. },
  3940. [
  3941. {
  3942. name: "Normal",
  3943. height: math.unit(7, "feet")
  3944. },
  3945. {
  3946. name: "Big",
  3947. height: math.unit(12, "feet"),
  3948. default: true
  3949. },
  3950. {
  3951. name: "Macro",
  3952. height: math.unit(1500, "feet")
  3953. },
  3954. {
  3955. name: "Megamacro",
  3956. height: math.unit(2, "miles")
  3957. }
  3958. ]
  3959. ))
  3960. characterMakers.push(() => makeCharacter(
  3961. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3962. {
  3963. front: {
  3964. height: math.unit(2, "meter"),
  3965. weight: math.unit(80, "kg"),
  3966. name: "Front",
  3967. image: {
  3968. source: "./media/characters/elbial/front.svg",
  3969. extra: 1643 / 1556,
  3970. bottom: 60.2 / 1696
  3971. }
  3972. },
  3973. side: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(80, "kg"),
  3976. name: "Side",
  3977. image: {
  3978. source: "./media/characters/elbial/side.svg",
  3979. extra: 1601/1528,
  3980. bottom: 97/1698
  3981. }
  3982. },
  3983. back: {
  3984. height: math.unit(2, "meter"),
  3985. weight: math.unit(80, "kg"),
  3986. name: "Back",
  3987. image: {
  3988. source: "./media/characters/elbial/back.svg",
  3989. extra: 1653/1569,
  3990. bottom: 20/1673
  3991. }
  3992. },
  3993. frontDressed: {
  3994. height: math.unit(2, "meter"),
  3995. weight: math.unit(80, "kg"),
  3996. name: "Front (Dressed)",
  3997. image: {
  3998. source: "./media/characters/elbial/front-dressed.svg",
  3999. extra: 1638/1569,
  4000. bottom: 70/1708
  4001. }
  4002. },
  4003. genitals: {
  4004. height: math.unit(2 / 3.367, "meter"),
  4005. name: "Genitals",
  4006. image: {
  4007. source: "./media/characters/elbial/genitals.svg"
  4008. }
  4009. },
  4010. },
  4011. [
  4012. {
  4013. name: "Large",
  4014. height: math.unit(100, "feet")
  4015. },
  4016. {
  4017. name: "Macro",
  4018. height: math.unit(500, "feet"),
  4019. default: true
  4020. },
  4021. {
  4022. name: "Megamacro",
  4023. height: math.unit(10, "miles")
  4024. },
  4025. {
  4026. name: "Gigamacro",
  4027. height: math.unit(25000, "miles")
  4028. },
  4029. {
  4030. name: "Full-Size",
  4031. height: math.unit(8000000, "gigaparsecs")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2, "meter"),
  4040. weight: math.unit(60, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/noah/front.svg"
  4044. }
  4045. },
  4046. talons: {
  4047. height: math.unit(0.315, "meter"),
  4048. name: "Talons",
  4049. image: {
  4050. source: "./media/characters/noah/talons.svg"
  4051. }
  4052. }
  4053. },
  4054. [
  4055. {
  4056. name: "Large",
  4057. height: math.unit(50, "feet")
  4058. },
  4059. {
  4060. name: "Macro",
  4061. height: math.unit(750, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Megamacro",
  4066. height: math.unit(50, "miles")
  4067. },
  4068. {
  4069. name: "Gigamacro",
  4070. height: math.unit(100000, "miles")
  4071. },
  4072. {
  4073. name: "Full-Size",
  4074. height: math.unit(3000000000, "miles")
  4075. }
  4076. ]
  4077. ))
  4078. characterMakers.push(() => makeCharacter(
  4079. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4080. {
  4081. front: {
  4082. height: math.unit(2, "meter"),
  4083. weight: math.unit(80, "kg"),
  4084. name: "Front",
  4085. image: {
  4086. source: "./media/characters/natalya/front.svg"
  4087. }
  4088. },
  4089. back: {
  4090. height: math.unit(2, "meter"),
  4091. weight: math.unit(80, "kg"),
  4092. name: "Back",
  4093. image: {
  4094. source: "./media/characters/natalya/back.svg"
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(150, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Megamacro",
  4106. height: math.unit(5, "miles")
  4107. },
  4108. {
  4109. name: "Full-Size",
  4110. height: math.unit(600, "kiloparsecs")
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4116. {
  4117. front: {
  4118. height: math.unit(2, "meter"),
  4119. weight: math.unit(50, "kg"),
  4120. name: "Front",
  4121. image: {
  4122. source: "./media/characters/erestrebah/front.svg",
  4123. extra: 1262/1162,
  4124. bottom: 96/1358
  4125. }
  4126. },
  4127. back: {
  4128. height: math.unit(2, "meter"),
  4129. weight: math.unit(50, "kg"),
  4130. name: "Back",
  4131. image: {
  4132. source: "./media/characters/erestrebah/back.svg",
  4133. extra: 1257/1139,
  4134. bottom: 13/1270
  4135. }
  4136. },
  4137. wing: {
  4138. height: math.unit(2, "meter"),
  4139. weight: math.unit(50, "kg"),
  4140. name: "Wing",
  4141. image: {
  4142. source: "./media/characters/erestrebah/wing.svg",
  4143. extra: 1262/1162,
  4144. bottom: 96/1358
  4145. }
  4146. },
  4147. mouth: {
  4148. height: math.unit(0.39, "feet"),
  4149. name: "Mouth",
  4150. image: {
  4151. source: "./media/characters/erestrebah/mouth.svg"
  4152. }
  4153. }
  4154. },
  4155. [
  4156. {
  4157. name: "Normal",
  4158. height: math.unit(10, "feet")
  4159. },
  4160. {
  4161. name: "Large",
  4162. height: math.unit(50, "feet"),
  4163. default: true
  4164. },
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(300, "feet")
  4168. },
  4169. {
  4170. name: "Macro+",
  4171. height: math.unit(750, "feet")
  4172. },
  4173. {
  4174. name: "Megamacro",
  4175. height: math.unit(3, "miles")
  4176. }
  4177. ]
  4178. ))
  4179. characterMakers.push(() => makeCharacter(
  4180. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4181. {
  4182. front: {
  4183. height: math.unit(2, "meter"),
  4184. weight: math.unit(80, "kg"),
  4185. name: "Front",
  4186. image: {
  4187. source: "./media/characters/jennifer/front.svg",
  4188. bottom: 0.11,
  4189. extra: 1.16
  4190. }
  4191. },
  4192. frontAlt: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(80, "kg"),
  4195. name: "Front (Alt)",
  4196. image: {
  4197. source: "./media/characters/jennifer/front-alt.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Canon Height",
  4204. height: math.unit(120, "feet"),
  4205. default: true
  4206. },
  4207. {
  4208. name: "Macro+",
  4209. height: math.unit(300, "feet")
  4210. },
  4211. {
  4212. name: "Megamacro",
  4213. height: math.unit(20000, "feet")
  4214. }
  4215. ]
  4216. ))
  4217. characterMakers.push(() => makeCharacter(
  4218. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4219. {
  4220. front: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(50, "kg"),
  4223. name: "Front",
  4224. image: {
  4225. source: "./media/characters/kalista/front.svg",
  4226. extra: 1314/1145,
  4227. bottom: 101/1415
  4228. }
  4229. },
  4230. back: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(50, "kg"),
  4233. name: "Back",
  4234. image: {
  4235. source: "./media/characters/kalista/back.svg",
  4236. extra: 1366 / 1156,
  4237. bottom: 33.9 / 1362.78
  4238. }
  4239. }
  4240. },
  4241. [
  4242. {
  4243. name: "Uncomfortably Small",
  4244. height: math.unit(10, "feet")
  4245. },
  4246. {
  4247. name: "Small",
  4248. height: math.unit(30, "feet")
  4249. },
  4250. {
  4251. name: "Macro",
  4252. height: math.unit(100, "feet"),
  4253. default: true
  4254. },
  4255. {
  4256. name: "Macro+",
  4257. height: math.unit(2000, "feet")
  4258. },
  4259. {
  4260. name: "True Form",
  4261. height: math.unit(8924, "miles")
  4262. }
  4263. ]
  4264. ))
  4265. characterMakers.push(() => makeCharacter(
  4266. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4267. {
  4268. front: {
  4269. height: math.unit(2, "meter"),
  4270. weight: math.unit(120, "kg"),
  4271. name: "Front",
  4272. image: {
  4273. source: "./media/characters/ggv/front.svg"
  4274. }
  4275. },
  4276. side: {
  4277. height: math.unit(2, "meter"),
  4278. weight: math.unit(120, "kg"),
  4279. name: "Side",
  4280. image: {
  4281. source: "./media/characters/ggv/side.svg"
  4282. }
  4283. }
  4284. },
  4285. [
  4286. {
  4287. name: "Extremely Puny",
  4288. height: math.unit(9 + 5 / 12, "feet")
  4289. },
  4290. {
  4291. name: "Horribly Small",
  4292. height: math.unit(47.7, "miles"),
  4293. default: true
  4294. },
  4295. {
  4296. name: "Reasonably Sized",
  4297. height: math.unit(25000, "parsecs")
  4298. },
  4299. {
  4300. name: "Slightly Uncompressed",
  4301. height: math.unit(7.77e31, "parsecs")
  4302. },
  4303. {
  4304. name: "Omniversal",
  4305. height: math.unit(1e300, "meters")
  4306. },
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(75, "lb"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/napalm/front.svg"
  4318. }
  4319. },
  4320. back: {
  4321. height: math.unit(2, "meter"),
  4322. weight: math.unit(75, "lb"),
  4323. name: "Back",
  4324. image: {
  4325. source: "./media/characters/napalm/back.svg"
  4326. }
  4327. }
  4328. },
  4329. [
  4330. {
  4331. name: "Standard",
  4332. height: math.unit(55, "feet"),
  4333. default: true
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(7 + 5 / 6, "feet"),
  4342. weight: math.unit(325, "lb"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/asana/front.svg",
  4346. extra: 1133 / 1060,
  4347. bottom: 15.2 / 1148.6
  4348. }
  4349. },
  4350. back: {
  4351. height: math.unit(7 + 5 / 6, "feet"),
  4352. weight: math.unit(325, "lb"),
  4353. name: "Back",
  4354. image: {
  4355. source: "./media/characters/asana/back.svg",
  4356. extra: 1114 / 1043,
  4357. bottom: 5 / 1120
  4358. }
  4359. },
  4360. dressedDark: {
  4361. height: math.unit(7 + 5 / 6, "feet"),
  4362. weight: math.unit(325, "lb"),
  4363. name: "Dressed (Dark)",
  4364. image: {
  4365. source: "./media/characters/asana/dressed-dark.svg",
  4366. extra: 1133 / 1060,
  4367. bottom: 15.2 / 1148.6
  4368. }
  4369. },
  4370. dressedLight: {
  4371. height: math.unit(7 + 5 / 6, "feet"),
  4372. weight: math.unit(325, "lb"),
  4373. name: "Dressed (Light)",
  4374. image: {
  4375. source: "./media/characters/asana/dressed-light.svg",
  4376. extra: 1133 / 1060,
  4377. bottom: 15.2 / 1148.6
  4378. }
  4379. },
  4380. },
  4381. [
  4382. {
  4383. name: "Standard",
  4384. height: math.unit(7 + 5 / 6, "feet"),
  4385. default: true
  4386. },
  4387. {
  4388. name: "Large",
  4389. height: math.unit(10, "meters")
  4390. },
  4391. {
  4392. name: "Macro",
  4393. height: math.unit(2500, "meters")
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(5e6, "meters")
  4398. },
  4399. {
  4400. name: "Examacro",
  4401. height: math.unit(5e12, "lightyears")
  4402. },
  4403. {
  4404. name: "Max Size",
  4405. height: math.unit(1e31, "lightyears")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(60, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/ebony/front.svg",
  4418. bottom: 0.03,
  4419. extra: 1045 / 810 + 0.03
  4420. }
  4421. },
  4422. side: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(60, "kg"),
  4425. name: "Side",
  4426. image: {
  4427. source: "./media/characters/ebony/side.svg",
  4428. bottom: 0.03,
  4429. extra: 1045 / 810 + 0.03
  4430. }
  4431. },
  4432. back: {
  4433. height: math.unit(2, "meter"),
  4434. weight: math.unit(60, "kg"),
  4435. name: "Back",
  4436. image: {
  4437. source: "./media/characters/ebony/back.svg",
  4438. bottom: 0.01,
  4439. extra: 1045 / 810 + 0.01
  4440. }
  4441. },
  4442. },
  4443. [
  4444. // TODO check why I did this lol
  4445. {
  4446. name: "Standard",
  4447. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Macro",
  4452. height: math.unit(200, "feet")
  4453. },
  4454. {
  4455. name: "Gigamacro",
  4456. height: math.unit(13000, "km")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(6, "feet"),
  4465. weight: math.unit(175, "lb"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/mountain/front.svg",
  4469. extra: 972 / 955,
  4470. bottom: 64 / 1036.6
  4471. }
  4472. },
  4473. back: {
  4474. height: math.unit(6, "feet"),
  4475. weight: math.unit(175, "lb"),
  4476. name: "Back",
  4477. image: {
  4478. source: "./media/characters/mountain/back.svg",
  4479. extra: 970 / 950,
  4480. bottom: 28.25 / 999
  4481. }
  4482. },
  4483. },
  4484. [
  4485. {
  4486. name: "Large",
  4487. height: math.unit(20, "meters")
  4488. },
  4489. {
  4490. name: "Macro",
  4491. height: math.unit(300, "meters")
  4492. },
  4493. {
  4494. name: "Gigamacro",
  4495. height: math.unit(10000, "km"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Examacro",
  4500. height: math.unit(10e9, "lightyears")
  4501. }
  4502. ]
  4503. ))
  4504. characterMakers.push(() => makeCharacter(
  4505. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4506. {
  4507. front: {
  4508. height: math.unit(8, "feet"),
  4509. weight: math.unit(500, "lb"),
  4510. name: "Front",
  4511. image: {
  4512. source: "./media/characters/rick/front.svg"
  4513. }
  4514. }
  4515. },
  4516. [
  4517. {
  4518. name: "Normal",
  4519. height: math.unit(8, "feet"),
  4520. default: true
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(5, "km")
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(8, "feet"),
  4533. weight: math.unit(120, "lb"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/ona/front.svg"
  4537. }
  4538. },
  4539. frontAlt: {
  4540. height: math.unit(8, "feet"),
  4541. weight: math.unit(120, "lb"),
  4542. name: "Front (Alt)",
  4543. image: {
  4544. source: "./media/characters/ona/front-alt.svg"
  4545. }
  4546. },
  4547. back: {
  4548. height: math.unit(8, "feet"),
  4549. weight: math.unit(120, "lb"),
  4550. name: "Back",
  4551. image: {
  4552. source: "./media/characters/ona/back.svg"
  4553. }
  4554. },
  4555. foot: {
  4556. height: math.unit(1.1, "feet"),
  4557. name: "Foot",
  4558. image: {
  4559. source: "./media/characters/ona/foot.svg"
  4560. }
  4561. }
  4562. },
  4563. [
  4564. {
  4565. name: "Megamacro",
  4566. height: math.unit(70, "km"),
  4567. default: true
  4568. },
  4569. {
  4570. name: "Gigamacro",
  4571. height: math.unit(681818, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(3800000, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(12, "feet"),
  4584. weight: math.unit(3000, "lb"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/mech/front.svg",
  4588. extra: 2900 / 2770,
  4589. bottom: 110 / 3010
  4590. }
  4591. },
  4592. back: {
  4593. height: math.unit(12, "feet"),
  4594. weight: math.unit(3000, "lb"),
  4595. name: "Back",
  4596. image: {
  4597. source: "./media/characters/mech/back.svg",
  4598. extra: 3011 / 2890,
  4599. bottom: 94 / 3105
  4600. }
  4601. },
  4602. maw: {
  4603. height: math.unit(3.07, "feet"),
  4604. name: "Maw",
  4605. image: {
  4606. source: "./media/characters/mech/maw.svg"
  4607. }
  4608. },
  4609. head: {
  4610. height: math.unit(3.07, "feet"),
  4611. name: "Head",
  4612. image: {
  4613. source: "./media/characters/mech/head.svg"
  4614. }
  4615. },
  4616. dick: {
  4617. height: math.unit(1.43, "feet"),
  4618. name: "Dick",
  4619. image: {
  4620. source: "./media/characters/mech/dick.svg"
  4621. }
  4622. },
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(12, "feet")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(300, "feet"),
  4632. default: true
  4633. },
  4634. {
  4635. name: "Macro+",
  4636. height: math.unit(1500, "feet")
  4637. },
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4642. {
  4643. front: {
  4644. height: math.unit(1.3, "meter"),
  4645. weight: math.unit(30, "kg"),
  4646. name: "Front",
  4647. image: {
  4648. source: "./media/characters/gregory/front.svg",
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(1.3, "meter"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "Macro",
  4660. height: math.unit(20, "meter")
  4661. }
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(2.8, "meter"),
  4669. weight: math.unit(200, "kg"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/elory/front.svg",
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(2.8, "meter"),
  4680. default: true
  4681. },
  4682. {
  4683. name: "Macro",
  4684. height: math.unit(38, "meter")
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(470, "feet"),
  4693. weight: math.unit(924, "tons"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/angelpatamon/front.svg",
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(470, "feet"),
  4704. default: true
  4705. },
  4706. {
  4707. name: "Deity Size I",
  4708. height: math.unit(28651.2, "km")
  4709. },
  4710. {
  4711. name: "Deity Size II",
  4712. height: math.unit(171907.2, "km")
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4718. {
  4719. side: {
  4720. height: math.unit(7.2, "meter"),
  4721. weight: math.unit(8.2, "tons"),
  4722. name: "Side",
  4723. image: {
  4724. source: "./media/characters/cryae/side.svg",
  4725. extra: 3500 / 1500
  4726. }
  4727. }
  4728. },
  4729. [
  4730. {
  4731. name: "Normal",
  4732. height: math.unit(7.2, "meter"),
  4733. default: true
  4734. }
  4735. ]
  4736. ))
  4737. characterMakers.push(() => makeCharacter(
  4738. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4739. {
  4740. front: {
  4741. height: math.unit(6, "feet"),
  4742. weight: math.unit(175, "lb"),
  4743. name: "Front",
  4744. image: {
  4745. source: "./media/characters/xera/front.svg",
  4746. extra: 2377 / 1972,
  4747. bottom: 75.5 / 2452
  4748. }
  4749. },
  4750. side: {
  4751. height: math.unit(6, "feet"),
  4752. weight: math.unit(175, "lb"),
  4753. name: "Side",
  4754. image: {
  4755. source: "./media/characters/xera/side.svg",
  4756. extra: 2345 / 2019,
  4757. bottom: 39.7 / 2384
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(6, "feet"),
  4762. weight: math.unit(175, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/xera/back.svg",
  4766. extra: 2095 / 1984,
  4767. bottom: 67 / 2166
  4768. }
  4769. },
  4770. },
  4771. [
  4772. {
  4773. name: "Small",
  4774. height: math.unit(10, "feet")
  4775. },
  4776. {
  4777. name: "Macro",
  4778. height: math.unit(500, "meters"),
  4779. default: true
  4780. },
  4781. {
  4782. name: "Macro+",
  4783. height: math.unit(10, "km")
  4784. },
  4785. {
  4786. name: "Gigamacro",
  4787. height: math.unit(25000, "km")
  4788. },
  4789. {
  4790. name: "Teramacro",
  4791. height: math.unit(3e6, "km")
  4792. }
  4793. ]
  4794. ))
  4795. characterMakers.push(() => makeCharacter(
  4796. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4797. {
  4798. front: {
  4799. height: math.unit(6, "feet"),
  4800. weight: math.unit(175, "lb"),
  4801. name: "Front",
  4802. image: {
  4803. source: "./media/characters/nebula/front.svg",
  4804. extra: 2566 / 2362,
  4805. bottom: 81 / 2644
  4806. }
  4807. }
  4808. },
  4809. [
  4810. {
  4811. name: "Small",
  4812. height: math.unit(4.5, "meters")
  4813. },
  4814. {
  4815. name: "Macro",
  4816. height: math.unit(1500, "meters"),
  4817. default: true
  4818. },
  4819. {
  4820. name: "Megamacro",
  4821. height: math.unit(150, "km")
  4822. },
  4823. {
  4824. name: "Gigamacro",
  4825. height: math.unit(27000, "km")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4831. {
  4832. front: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(225, "lb"),
  4835. name: "Front",
  4836. image: {
  4837. source: "./media/characters/abysgar/front.svg",
  4838. extra: 1739/1614,
  4839. bottom: 71/1810
  4840. }
  4841. },
  4842. frontNsfw: {
  4843. height: math.unit(6, "feet"),
  4844. weight: math.unit(225, "lb"),
  4845. name: "Front (NSFW)",
  4846. image: {
  4847. source: "./media/characters/abysgar/front-nsfw.svg",
  4848. extra: 1739/1614,
  4849. bottom: 71/1810
  4850. }
  4851. },
  4852. back: {
  4853. height: math.unit(4.6, "feet"),
  4854. weight: math.unit(225, "lb"),
  4855. name: "Back",
  4856. image: {
  4857. source: "./media/characters/abysgar/back.svg",
  4858. extra: 1384/1327,
  4859. bottom: 0/1384
  4860. }
  4861. },
  4862. head: {
  4863. height: math.unit(1.25, "feet"),
  4864. name: "Head",
  4865. image: {
  4866. source: "./media/characters/abysgar/head.svg",
  4867. extra: 669/569,
  4868. bottom: 0/669
  4869. }
  4870. },
  4871. },
  4872. [
  4873. {
  4874. name: "Small",
  4875. height: math.unit(4.5, "meters")
  4876. },
  4877. {
  4878. name: "Macro",
  4879. height: math.unit(1250, "meters"),
  4880. default: true
  4881. },
  4882. {
  4883. name: "Megamacro",
  4884. height: math.unit(125, "km")
  4885. },
  4886. {
  4887. name: "Gigamacro",
  4888. height: math.unit(26000, "km")
  4889. }
  4890. ]
  4891. ))
  4892. characterMakers.push(() => makeCharacter(
  4893. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4894. {
  4895. front: {
  4896. height: math.unit(6, "feet"),
  4897. weight: math.unit(180, "lb"),
  4898. name: "Front",
  4899. image: {
  4900. source: "./media/characters/yakuz/front.svg"
  4901. }
  4902. }
  4903. },
  4904. [
  4905. {
  4906. name: "Small",
  4907. height: math.unit(5, "meters")
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(1500, "meters"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Megamacro",
  4916. height: math.unit(200, "km")
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(100000, "km")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(175, "lb"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/mirova/front.svg",
  4933. extra: 3334 / 3071,
  4934. bottom: 42 / 3375.6
  4935. }
  4936. }
  4937. },
  4938. [
  4939. {
  4940. name: "Small",
  4941. height: math.unit(5, "meters")
  4942. },
  4943. {
  4944. name: "Macro",
  4945. height: math.unit(900, "meters"),
  4946. default: true
  4947. },
  4948. {
  4949. name: "Megamacro",
  4950. height: math.unit(135, "km")
  4951. },
  4952. {
  4953. name: "Gigamacro",
  4954. height: math.unit(20000, "km")
  4955. }
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4960. {
  4961. side: {
  4962. height: math.unit(28.35, "feet"),
  4963. weight: math.unit(99.75, "tons"),
  4964. name: "Side",
  4965. image: {
  4966. source: "./media/characters/asana-mech/side.svg",
  4967. extra: 923 / 699,
  4968. bottom: 50 / 975
  4969. }
  4970. },
  4971. chaingun: {
  4972. height: math.unit(7, "feet"),
  4973. weight: math.unit(2400, "lb"),
  4974. name: "Chaingun",
  4975. image: {
  4976. source: "./media/characters/asana-mech/chaingun.svg"
  4977. }
  4978. },
  4979. laser: {
  4980. height: math.unit(7.12, "feet"),
  4981. weight: math.unit(2000, "lb"),
  4982. name: "Laser",
  4983. image: {
  4984. source: "./media/characters/asana-mech/laser.svg"
  4985. }
  4986. },
  4987. },
  4988. [
  4989. {
  4990. name: "Normal",
  4991. height: math.unit(28.35, "feet"),
  4992. default: true
  4993. },
  4994. {
  4995. name: "Macro",
  4996. height: math.unit(2500, "feet")
  4997. },
  4998. {
  4999. name: "Megamacro",
  5000. height: math.unit(25, "miles")
  5001. },
  5002. {
  5003. name: "Examacro",
  5004. height: math.unit(6e8, "lightyears")
  5005. },
  5006. ]
  5007. ))
  5008. characterMakers.push(() => makeCharacter(
  5009. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5010. {
  5011. front: {
  5012. height: math.unit(5, "meters"),
  5013. weight: math.unit(1000, "kg"),
  5014. name: "Front",
  5015. image: {
  5016. source: "./media/characters/asche/front.svg",
  5017. extra: 1258 / 1190,
  5018. bottom: 47 / 1305
  5019. }
  5020. },
  5021. frontUnderwear: {
  5022. height: math.unit(5, "meters"),
  5023. weight: math.unit(1000, "kg"),
  5024. name: "Front (Underwear)",
  5025. image: {
  5026. source: "./media/characters/asche/front-underwear.svg",
  5027. extra: 1258 / 1190,
  5028. bottom: 47 / 1305
  5029. }
  5030. },
  5031. frontDressed: {
  5032. height: math.unit(5, "meters"),
  5033. weight: math.unit(1000, "kg"),
  5034. name: "Front (Dressed)",
  5035. image: {
  5036. source: "./media/characters/asche/front-dressed.svg",
  5037. extra: 1258 / 1190,
  5038. bottom: 47 / 1305
  5039. }
  5040. },
  5041. frontArmor: {
  5042. height: math.unit(5, "meters"),
  5043. weight: math.unit(1000, "kg"),
  5044. name: "Front (Armored)",
  5045. image: {
  5046. source: "./media/characters/asche/front-armored.svg",
  5047. extra: 1374 / 1308,
  5048. bottom: 23 / 1397
  5049. }
  5050. },
  5051. mp724: {
  5052. height: math.unit(0.96, "meters"),
  5053. weight: math.unit(38, "kg"),
  5054. name: "H&K MP724",
  5055. image: {
  5056. source: "./media/characters/asche/h&k-mp724.svg"
  5057. }
  5058. },
  5059. side: {
  5060. height: math.unit(5, "meters"),
  5061. weight: math.unit(1000, "kg"),
  5062. name: "Side",
  5063. image: {
  5064. source: "./media/characters/asche/side.svg",
  5065. extra: 1717 / 1609,
  5066. bottom: 0.005
  5067. }
  5068. },
  5069. back: {
  5070. height: math.unit(5, "meters"),
  5071. weight: math.unit(1000, "kg"),
  5072. name: "Back",
  5073. image: {
  5074. source: "./media/characters/asche/back.svg",
  5075. extra: 1570 / 1501
  5076. }
  5077. },
  5078. },
  5079. [
  5080. {
  5081. name: "DEFCON 5",
  5082. height: math.unit(5, "meters")
  5083. },
  5084. {
  5085. name: "DEFCON 4",
  5086. height: math.unit(500, "meters"),
  5087. default: true
  5088. },
  5089. {
  5090. name: "DEFCON 3",
  5091. height: math.unit(5, "km")
  5092. },
  5093. {
  5094. name: "DEFCON 2",
  5095. height: math.unit(500, "km")
  5096. },
  5097. {
  5098. name: "DEFCON 1",
  5099. height: math.unit(500000, "km")
  5100. },
  5101. {
  5102. name: "DEFCON 0",
  5103. height: math.unit(3, "gigaparsecs")
  5104. },
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5109. {
  5110. front: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(76, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/gale/front.svg"
  5116. }
  5117. },
  5118. frontAlt1: {
  5119. height: math.unit(2, "meters"),
  5120. weight: math.unit(76, "kg"),
  5121. name: "Front (Alt 1)",
  5122. image: {
  5123. source: "./media/characters/gale/front-alt-1.svg"
  5124. }
  5125. },
  5126. frontAlt2: {
  5127. height: math.unit(2, "meters"),
  5128. weight: math.unit(76, "kg"),
  5129. name: "Front (Alt 2)",
  5130. image: {
  5131. source: "./media/characters/gale/front-alt-2.svg"
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Normal",
  5138. height: math.unit(7, "feet")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(150, "feet"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro+",
  5147. height: math.unit(300, "feet")
  5148. },
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(5 + 10/12, "feet"),
  5156. weight: math.unit(67, "kg"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/draylen/front.svg",
  5160. extra: 832/777,
  5161. bottom: 85/917
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(5 + 10/12, "feet")
  5169. },
  5170. {
  5171. name: "Macro",
  5172. height: math.unit(150, "feet"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(7 + 9 / 12, "feet"),
  5182. weight: math.unit(379, "lbs"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/chez/front.svg"
  5186. }
  5187. },
  5188. side: {
  5189. height: math.unit(7 + 9 / 12, "feet"),
  5190. weight: math.unit(379, "lbs"),
  5191. name: "Side",
  5192. image: {
  5193. source: "./media/characters/chez/side.svg"
  5194. }
  5195. }
  5196. },
  5197. [
  5198. {
  5199. name: "Normal",
  5200. height: math.unit(7 + 9 / 12, "feet"),
  5201. default: true
  5202. },
  5203. {
  5204. name: "God King",
  5205. height: math.unit(9750000, "meters")
  5206. }
  5207. ]
  5208. ))
  5209. characterMakers.push(() => makeCharacter(
  5210. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5211. {
  5212. front: {
  5213. height: math.unit(6, "feet"),
  5214. weight: math.unit(275, "lbs"),
  5215. name: "Front",
  5216. image: {
  5217. source: "./media/characters/kaylum/front.svg",
  5218. bottom: 0.01,
  5219. extra: 1166 / 1031
  5220. }
  5221. },
  5222. frontWingless: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(275, "lbs"),
  5225. name: "Front (Wingless)",
  5226. image: {
  5227. source: "./media/characters/kaylum/front-wingless.svg",
  5228. bottom: 0.01,
  5229. extra: 1117 / 1031
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Normal",
  5236. height: math.unit(3.05, "meters")
  5237. },
  5238. {
  5239. name: "Master",
  5240. height: math.unit(5.5, "meters")
  5241. },
  5242. {
  5243. name: "Rampage",
  5244. height: math.unit(19, "meters")
  5245. },
  5246. {
  5247. name: "Macro Lite",
  5248. height: math.unit(37, "meters")
  5249. },
  5250. {
  5251. name: "Hyper Predator",
  5252. height: math.unit(61, "meters")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(138, "meters"),
  5257. default: true
  5258. }
  5259. ]
  5260. ))
  5261. characterMakers.push(() => makeCharacter(
  5262. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5263. {
  5264. front: {
  5265. height: math.unit(5 + 5 / 12, "feet"),
  5266. weight: math.unit(120, "lbs"),
  5267. name: "Front",
  5268. image: {
  5269. source: "./media/characters/geta/front.svg",
  5270. extra: 1003/933,
  5271. bottom: 21/1024
  5272. }
  5273. },
  5274. paw: {
  5275. height: math.unit(0.35, "feet"),
  5276. name: "Paw",
  5277. image: {
  5278. source: "./media/characters/geta/paw.svg"
  5279. }
  5280. },
  5281. },
  5282. [
  5283. {
  5284. name: "Micro",
  5285. height: math.unit(3, "inches"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Normal",
  5290. height: math.unit(5 + 5 / 12, "feet")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(300, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/tyrnn/front.svg"
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Main Height",
  5309. height: math.unit(355, "feet"),
  5310. default: true
  5311. },
  5312. {
  5313. name: "Fave. Height",
  5314. height: math.unit(2400, "feet")
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(300, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/appledectomy/front.svg"
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(2500, "feet")
  5334. },
  5335. {
  5336. name: "Megamacro",
  5337. height: math.unit(50, "miles"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Gigamacro",
  5342. height: math.unit(5000, "miles")
  5343. },
  5344. {
  5345. name: "Teramacro",
  5346. height: math.unit(250000, "miles")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(200, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/vulpes/front.svg",
  5359. extra: 573 / 543,
  5360. bottom: 0.033
  5361. }
  5362. },
  5363. side: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(200, "lbs"),
  5366. name: "Side",
  5367. image: {
  5368. source: "./media/characters/vulpes/side.svg",
  5369. extra: 577 / 549,
  5370. bottom: 11 / 588
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(200, "lbs"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/vulpes/back.svg",
  5379. extra: 573 / 549,
  5380. bottom: 20 / 593
  5381. }
  5382. },
  5383. feet: {
  5384. height: math.unit(1.276, "feet"),
  5385. name: "Feet",
  5386. image: {
  5387. source: "./media/characters/vulpes/feet.svg"
  5388. }
  5389. },
  5390. maw: {
  5391. height: math.unit(1.18, "feet"),
  5392. name: "Maw",
  5393. image: {
  5394. source: "./media/characters/vulpes/maw.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Micro",
  5401. height: math.unit(2, "inches")
  5402. },
  5403. {
  5404. name: "Normal",
  5405. height: math.unit(6.3, "feet")
  5406. },
  5407. {
  5408. name: "Macro",
  5409. height: math.unit(850, "feet")
  5410. },
  5411. {
  5412. name: "Megamacro",
  5413. height: math.unit(7500, "feet"),
  5414. default: true
  5415. },
  5416. {
  5417. name: "Gigamacro",
  5418. height: math.unit(570000, "miles")
  5419. }
  5420. ]
  5421. ))
  5422. characterMakers.push(() => makeCharacter(
  5423. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5424. {
  5425. front: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(210, "lbs"),
  5428. name: "Front",
  5429. image: {
  5430. source: "./media/characters/rain-fallen/front.svg"
  5431. }
  5432. },
  5433. side: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(210, "lbs"),
  5436. name: "Side",
  5437. image: {
  5438. source: "./media/characters/rain-fallen/side.svg"
  5439. }
  5440. },
  5441. back: {
  5442. height: math.unit(6, "feet"),
  5443. weight: math.unit(210, "lbs"),
  5444. name: "Back",
  5445. image: {
  5446. source: "./media/characters/rain-fallen/back.svg"
  5447. }
  5448. },
  5449. feral: {
  5450. height: math.unit(9, "feet"),
  5451. weight: math.unit(700, "lbs"),
  5452. name: "Feral",
  5453. image: {
  5454. source: "./media/characters/rain-fallen/feral.svg"
  5455. }
  5456. },
  5457. },
  5458. [
  5459. {
  5460. name: "Meddling with Mortals",
  5461. height: math.unit(8 + 8/12, "feet")
  5462. },
  5463. {
  5464. name: "Normal",
  5465. height: math.unit(5, "meter")
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(150, "meter"),
  5470. default: true
  5471. },
  5472. {
  5473. name: "Megamacro",
  5474. height: math.unit(278e6, "meter")
  5475. },
  5476. {
  5477. name: "Gigamacro",
  5478. height: math.unit(2e9, "meter")
  5479. },
  5480. {
  5481. name: "Teramacro",
  5482. height: math.unit(8e12, "meter")
  5483. },
  5484. {
  5485. name: "Devourer",
  5486. height: math.unit(14, "zettameters")
  5487. },
  5488. {
  5489. name: "Scarlet King",
  5490. height: math.unit(18, "yottameters")
  5491. },
  5492. {
  5493. name: "Void",
  5494. height: math.unit(1e88, "yottameters")
  5495. }
  5496. ]
  5497. ))
  5498. characterMakers.push(() => makeCharacter(
  5499. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5500. {
  5501. standing: {
  5502. height: math.unit(6, "feet"),
  5503. weight: math.unit(180, "lbs"),
  5504. name: "Standing",
  5505. image: {
  5506. source: "./media/characters/zaakira/standing.svg",
  5507. extra: 1599/1504,
  5508. bottom: 39/1638
  5509. }
  5510. },
  5511. laying: {
  5512. height: math.unit(3.3, "feet"),
  5513. weight: math.unit(180, "lbs"),
  5514. name: "Laying",
  5515. image: {
  5516. source: "./media/characters/zaakira/laying.svg"
  5517. }
  5518. },
  5519. },
  5520. [
  5521. {
  5522. name: "Normal",
  5523. height: math.unit(12, "feet")
  5524. },
  5525. {
  5526. name: "Macro",
  5527. height: math.unit(279, "feet"),
  5528. default: true
  5529. }
  5530. ]
  5531. ))
  5532. characterMakers.push(() => makeCharacter(
  5533. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5534. {
  5535. femSfw: {
  5536. height: math.unit(8, "feet"),
  5537. weight: math.unit(350, "lb"),
  5538. name: "Fem",
  5539. image: {
  5540. source: "./media/characters/sigvald/fem-sfw.svg",
  5541. extra: 182 / 164,
  5542. bottom: 8.7 / 190.5
  5543. }
  5544. },
  5545. femNsfw: {
  5546. height: math.unit(8, "feet"),
  5547. weight: math.unit(350, "lb"),
  5548. name: "Fem (NSFW)",
  5549. image: {
  5550. source: "./media/characters/sigvald/fem-nsfw.svg",
  5551. extra: 182 / 164,
  5552. bottom: 8.7 / 190.5
  5553. }
  5554. },
  5555. maleNsfw: {
  5556. height: math.unit(8, "feet"),
  5557. weight: math.unit(350, "lb"),
  5558. name: "Male (NSFW)",
  5559. image: {
  5560. source: "./media/characters/sigvald/male-nsfw.svg",
  5561. extra: 182 / 164,
  5562. bottom: 8.7 / 190.5
  5563. }
  5564. },
  5565. hermNsfw: {
  5566. height: math.unit(8, "feet"),
  5567. weight: math.unit(350, "lb"),
  5568. name: "Herm (NSFW)",
  5569. image: {
  5570. source: "./media/characters/sigvald/herm-nsfw.svg",
  5571. extra: 182 / 164,
  5572. bottom: 8.7 / 190.5
  5573. }
  5574. },
  5575. dick: {
  5576. height: math.unit(2.36, "feet"),
  5577. name: "Dick",
  5578. image: {
  5579. source: "./media/characters/sigvald/dick.svg"
  5580. }
  5581. },
  5582. eye: {
  5583. height: math.unit(0.31, "feet"),
  5584. name: "Eye",
  5585. image: {
  5586. source: "./media/characters/sigvald/eye.svg"
  5587. }
  5588. },
  5589. mouth: {
  5590. height: math.unit(0.92, "feet"),
  5591. name: "Mouth",
  5592. image: {
  5593. source: "./media/characters/sigvald/mouth.svg"
  5594. }
  5595. },
  5596. paws: {
  5597. height: math.unit(2.2, "feet"),
  5598. name: "Paws",
  5599. image: {
  5600. source: "./media/characters/sigvald/paws.svg"
  5601. }
  5602. }
  5603. },
  5604. [
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(8, "feet")
  5608. },
  5609. {
  5610. name: "Large",
  5611. height: math.unit(12, "feet")
  5612. },
  5613. {
  5614. name: "Larger",
  5615. height: math.unit(20, "feet")
  5616. },
  5617. {
  5618. name: "Macro",
  5619. height: math.unit(150, "feet")
  5620. },
  5621. {
  5622. name: "Macro+",
  5623. height: math.unit(200, "feet"),
  5624. default: true
  5625. },
  5626. ]
  5627. ))
  5628. characterMakers.push(() => makeCharacter(
  5629. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5630. {
  5631. side: {
  5632. height: math.unit(12, "feet"),
  5633. weight: math.unit(2000, "kg"),
  5634. name: "Side",
  5635. image: {
  5636. source: "./media/characters/scott/side.svg",
  5637. extra: 754 / 724,
  5638. bottom: 0.069
  5639. }
  5640. },
  5641. upright: {
  5642. height: math.unit(12, "feet"),
  5643. weight: math.unit(2000, "kg"),
  5644. name: "Upright",
  5645. image: {
  5646. source: "./media/characters/scott/upright.svg",
  5647. extra: 3881 / 3722,
  5648. bottom: 0.05
  5649. }
  5650. },
  5651. },
  5652. [
  5653. {
  5654. name: "Normal",
  5655. height: math.unit(12, "feet"),
  5656. default: true
  5657. },
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5662. {
  5663. side: {
  5664. height: math.unit(8, "meters"),
  5665. weight: math.unit(84755, "lbs"),
  5666. name: "Side",
  5667. image: {
  5668. source: "./media/characters/tobias/side.svg",
  5669. extra: 1474 / 1096,
  5670. bottom: 38.9 / 1513.1235
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(8, "meters"),
  5678. default: true
  5679. },
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5684. {
  5685. front: {
  5686. height: math.unit(5.5, "feet"),
  5687. weight: math.unit(400, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/kieran/front.svg",
  5691. extra: 2694 / 2364,
  5692. bottom: 217 / 2908
  5693. }
  5694. },
  5695. side: {
  5696. height: math.unit(5.5, "feet"),
  5697. weight: math.unit(400, "lbs"),
  5698. name: "Side",
  5699. image: {
  5700. source: "./media/characters/kieran/side.svg",
  5701. extra: 875 / 777,
  5702. bottom: 84.6 / 959
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(5.5, "feet"),
  5710. default: true
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5716. {
  5717. side: {
  5718. height: math.unit(2, "meters"),
  5719. weight: math.unit(70, "kg"),
  5720. name: "Side",
  5721. image: {
  5722. source: "./media/characters/sanya/side.svg",
  5723. bottom: 0.02,
  5724. extra: 1.02
  5725. }
  5726. },
  5727. },
  5728. [
  5729. {
  5730. name: "Small",
  5731. height: math.unit(2, "meters")
  5732. },
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3, "meters")
  5736. },
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(16, "meters"),
  5740. default: true
  5741. },
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(2, "meters"),
  5749. weight: math.unit(120, "kg"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/miranda/front.svg",
  5753. extra: 195 / 185,
  5754. bottom: 10.9 / 206.5
  5755. }
  5756. },
  5757. back: {
  5758. height: math.unit(2, "meters"),
  5759. weight: math.unit(120, "kg"),
  5760. name: "Back",
  5761. image: {
  5762. source: "./media/characters/miranda/back.svg",
  5763. extra: 201 / 193,
  5764. bottom: 2.3 / 203.7
  5765. }
  5766. },
  5767. },
  5768. [
  5769. {
  5770. name: "Normal",
  5771. height: math.unit(10, "feet"),
  5772. default: true
  5773. }
  5774. ]
  5775. ))
  5776. characterMakers.push(() => makeCharacter(
  5777. { name: "James", species: ["deer"], tags: ["anthro"] },
  5778. {
  5779. side: {
  5780. height: math.unit(2, "meters"),
  5781. weight: math.unit(100, "kg"),
  5782. name: "Front",
  5783. image: {
  5784. source: "./media/characters/james/front.svg",
  5785. extra: 10 / 8.5
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(8.5, "feet"),
  5793. default: true
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5799. {
  5800. side: {
  5801. height: math.unit(9.5, "feet"),
  5802. weight: math.unit(2500, "lbs"),
  5803. name: "Side",
  5804. image: {
  5805. source: "./media/characters/heather/side.svg"
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(9.5, "feet"),
  5813. default: true
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5819. {
  5820. side: {
  5821. height: math.unit(6.5, "feet"),
  5822. weight: math.unit(400, "lbs"),
  5823. name: "Side",
  5824. image: {
  5825. source: "./media/characters/lukas/side.svg",
  5826. extra: 7.25 / 6.5
  5827. }
  5828. },
  5829. },
  5830. [
  5831. {
  5832. name: "Normal",
  5833. height: math.unit(6.5, "feet"),
  5834. default: true
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5840. {
  5841. side: {
  5842. height: math.unit(5, "feet"),
  5843. weight: math.unit(3000, "lbs"),
  5844. name: "Side",
  5845. image: {
  5846. source: "./media/characters/louise/side.svg"
  5847. }
  5848. },
  5849. },
  5850. [
  5851. {
  5852. name: "Normal",
  5853. height: math.unit(5, "feet"),
  5854. default: true
  5855. }
  5856. ]
  5857. ))
  5858. characterMakers.push(() => makeCharacter(
  5859. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5860. {
  5861. side: {
  5862. height: math.unit(6, "feet"),
  5863. weight: math.unit(150, "lbs"),
  5864. name: "Side",
  5865. image: {
  5866. source: "./media/characters/ramona/side.svg",
  5867. extra: 871/854,
  5868. bottom: 41/912
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Normal",
  5875. height: math.unit(6 + 4/12, "feet")
  5876. },
  5877. {
  5878. name: "Minimacro",
  5879. height: math.unit(5.3, "meters"),
  5880. default: true
  5881. },
  5882. {
  5883. name: "Macro",
  5884. height: math.unit(20, "stories")
  5885. },
  5886. {
  5887. name: "Macro+",
  5888. height: math.unit(50, "stories")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5894. {
  5895. standing: {
  5896. height: math.unit(5.75, "feet"),
  5897. weight: math.unit(160, "lbs"),
  5898. name: "Standing",
  5899. image: {
  5900. source: "./media/characters/deerpuff/standing.svg",
  5901. extra: 682 / 624
  5902. }
  5903. },
  5904. sitting: {
  5905. height: math.unit(5.75 / 1.79, "feet"),
  5906. weight: math.unit(160, "lbs"),
  5907. name: "Sitting",
  5908. image: {
  5909. source: "./media/characters/deerpuff/sitting.svg",
  5910. bottom: 44 / 400,
  5911. extra: 1
  5912. }
  5913. },
  5914. taurLaying: {
  5915. height: math.unit(6, "feet"),
  5916. weight: math.unit(400, "lbs"),
  5917. name: "Taur (Laying)",
  5918. image: {
  5919. source: "./media/characters/deerpuff/taur-laying.svg"
  5920. }
  5921. },
  5922. },
  5923. [
  5924. {
  5925. name: "Puffball",
  5926. height: math.unit(6, "inches")
  5927. },
  5928. {
  5929. name: "Normalpuff",
  5930. height: math.unit(5.75, "feet")
  5931. },
  5932. {
  5933. name: "Macropuff",
  5934. height: math.unit(1500, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Megapuff",
  5939. height: math.unit(500, "miles")
  5940. },
  5941. {
  5942. name: "Gigapuff",
  5943. height: math.unit(250000, "miles")
  5944. },
  5945. {
  5946. name: "Omegapuff",
  5947. height: math.unit(1000, "lightyears")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5953. {
  5954. stomping: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(170, "lbs"),
  5957. name: "Stomping",
  5958. image: {
  5959. source: "./media/characters/vivian/stomping.svg"
  5960. }
  5961. },
  5962. sitting: {
  5963. height: math.unit(6 / 1.75, "feet"),
  5964. weight: math.unit(170, "lbs"),
  5965. name: "Sitting",
  5966. image: {
  5967. source: "./media/characters/vivian/sitting.svg",
  5968. bottom: 1 / 6.4,
  5969. extra: 1,
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Normal",
  5976. height: math.unit(7, "feet"),
  5977. default: true
  5978. },
  5979. {
  5980. name: "Macro",
  5981. height: math.unit(10, "stories")
  5982. },
  5983. {
  5984. name: "Macro+",
  5985. height: math.unit(30, "stories")
  5986. },
  5987. {
  5988. name: "Megamacro",
  5989. height: math.unit(10, "miles")
  5990. },
  5991. {
  5992. name: "Megamacro+",
  5993. height: math.unit(2750000, "meters")
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5999. {
  6000. front: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(160, "lbs"),
  6003. name: "Front",
  6004. image: {
  6005. source: "./media/characters/prince/front.svg",
  6006. extra: 3400 / 3000
  6007. }
  6008. },
  6009. jumping: {
  6010. height: math.unit(6, "feet"),
  6011. weight: math.unit(160, "lbs"),
  6012. name: "Jumping",
  6013. image: {
  6014. source: "./media/characters/prince/jump.svg",
  6015. extra: 2555 / 2134
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(7.75, "feet"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Not cute",
  6027. height: math.unit(17, "feet")
  6028. },
  6029. {
  6030. name: "I said NOT",
  6031. height: math.unit(91, "feet")
  6032. },
  6033. {
  6034. name: "Please stop",
  6035. height: math.unit(560, "feet")
  6036. },
  6037. {
  6038. name: "What have you done",
  6039. height: math.unit(2200, "feet")
  6040. },
  6041. {
  6042. name: "Deer God",
  6043. height: math.unit(3.6, "miles")
  6044. },
  6045. ]
  6046. ))
  6047. characterMakers.push(() => makeCharacter(
  6048. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6049. {
  6050. standing: {
  6051. height: math.unit(6, "feet"),
  6052. weight: math.unit(300, "lbs"),
  6053. name: "Standing",
  6054. image: {
  6055. source: "./media/characters/psymon/standing.svg",
  6056. extra: 1888 / 1810,
  6057. bottom: 0.05
  6058. }
  6059. },
  6060. slithering: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(300, "lbs"),
  6063. name: "Slithering",
  6064. image: {
  6065. source: "./media/characters/psymon/slithering.svg",
  6066. extra: 1330 / 1224
  6067. }
  6068. },
  6069. slitheringAlt: {
  6070. height: math.unit(6, "feet"),
  6071. weight: math.unit(300, "lbs"),
  6072. name: "Slithering (Alt)",
  6073. image: {
  6074. source: "./media/characters/psymon/slithering-alt.svg",
  6075. extra: 1330 / 1224
  6076. }
  6077. },
  6078. },
  6079. [
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(11.25, "feet"),
  6083. default: true
  6084. },
  6085. {
  6086. name: "Large",
  6087. height: math.unit(27, "feet")
  6088. },
  6089. {
  6090. name: "Giant",
  6091. height: math.unit(87, "feet")
  6092. },
  6093. {
  6094. name: "Macro",
  6095. height: math.unit(365, "feet")
  6096. },
  6097. {
  6098. name: "Megamacro",
  6099. height: math.unit(3, "miles")
  6100. },
  6101. {
  6102. name: "World Serpent",
  6103. height: math.unit(8000, "miles")
  6104. },
  6105. ]
  6106. ))
  6107. characterMakers.push(() => makeCharacter(
  6108. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6109. {
  6110. front: {
  6111. height: math.unit(6, "feet"),
  6112. weight: math.unit(180, "lbs"),
  6113. name: "Front",
  6114. image: {
  6115. source: "./media/characters/daimos/front.svg",
  6116. extra: 4160 / 3897,
  6117. bottom: 0.021
  6118. }
  6119. }
  6120. },
  6121. [
  6122. {
  6123. name: "Normal",
  6124. height: math.unit(8, "feet"),
  6125. default: true
  6126. },
  6127. {
  6128. name: "Big Dog",
  6129. height: math.unit(22, "feet")
  6130. },
  6131. {
  6132. name: "Macro",
  6133. height: math.unit(127, "feet")
  6134. },
  6135. {
  6136. name: "Megamacro",
  6137. height: math.unit(3600, "feet")
  6138. },
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6143. {
  6144. side: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(180, "lbs"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/blake/side.svg",
  6150. extra: 1212 / 1120,
  6151. bottom: 0.05
  6152. }
  6153. },
  6154. crouched: {
  6155. height: math.unit(6 * 0.57, "feet"),
  6156. weight: math.unit(180, "lbs"),
  6157. name: "Crouched",
  6158. image: {
  6159. source: "./media/characters/blake/crouched.svg",
  6160. extra: 840 / 587,
  6161. bottom: 0.04
  6162. }
  6163. },
  6164. bent: {
  6165. height: math.unit(6 * 0.75, "feet"),
  6166. weight: math.unit(180, "lbs"),
  6167. name: "Bent",
  6168. image: {
  6169. source: "./media/characters/blake/bent.svg",
  6170. extra: 592 / 544,
  6171. bottom: 0.035
  6172. }
  6173. },
  6174. },
  6175. [
  6176. {
  6177. name: "Normal",
  6178. height: math.unit(8 + 1 / 6, "feet"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Big Backside",
  6183. height: math.unit(37, "feet")
  6184. },
  6185. {
  6186. name: "Subway Shredder",
  6187. height: math.unit(72, "feet")
  6188. },
  6189. {
  6190. name: "City Carver",
  6191. height: math.unit(1675, "feet")
  6192. },
  6193. {
  6194. name: "Tectonic Tweaker",
  6195. height: math.unit(2300, "miles")
  6196. },
  6197. ]
  6198. ))
  6199. characterMakers.push(() => makeCharacter(
  6200. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6201. {
  6202. front: {
  6203. height: math.unit(6, "feet"),
  6204. weight: math.unit(180, "lbs"),
  6205. name: "Front",
  6206. image: {
  6207. source: "./media/characters/guisetto/front.svg",
  6208. extra: 856 / 817,
  6209. bottom: 0.06
  6210. }
  6211. },
  6212. airborne: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(180, "lbs"),
  6215. name: "Airborne",
  6216. image: {
  6217. source: "./media/characters/guisetto/airborne.svg",
  6218. extra: 584 / 525
  6219. }
  6220. },
  6221. },
  6222. [
  6223. {
  6224. name: "Normal",
  6225. height: math.unit(10 + 11 / 12, "feet"),
  6226. default: true
  6227. },
  6228. {
  6229. name: "Large",
  6230. height: math.unit(35, "feet")
  6231. },
  6232. {
  6233. name: "Macro",
  6234. height: math.unit(475, "feet")
  6235. },
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6240. {
  6241. front: {
  6242. height: math.unit(6, "feet"),
  6243. weight: math.unit(180, "lbs"),
  6244. name: "Front",
  6245. image: {
  6246. source: "./media/characters/luxor/front.svg",
  6247. extra: 2940 / 2152
  6248. }
  6249. },
  6250. back: {
  6251. height: math.unit(6, "feet"),
  6252. weight: math.unit(180, "lbs"),
  6253. name: "Back",
  6254. image: {
  6255. source: "./media/characters/luxor/back.svg",
  6256. extra: 1083 / 960
  6257. }
  6258. },
  6259. },
  6260. [
  6261. {
  6262. name: "Normal",
  6263. height: math.unit(5 + 5 / 6, "feet"),
  6264. default: true
  6265. },
  6266. {
  6267. name: "Lamp",
  6268. height: math.unit(50, "feet")
  6269. },
  6270. {
  6271. name: "Lämp",
  6272. height: math.unit(300, "feet")
  6273. },
  6274. {
  6275. name: "The sun is a lamp",
  6276. height: math.unit(250000, "miles")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(50, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/huoyan/front.svg"
  6289. }
  6290. },
  6291. side: {
  6292. height: math.unit(6, "feet"),
  6293. weight: math.unit(180, "lbs"),
  6294. name: "Side",
  6295. image: {
  6296. source: "./media/characters/huoyan/side.svg"
  6297. }
  6298. },
  6299. },
  6300. [
  6301. {
  6302. name: "Chef",
  6303. height: math.unit(9, "feet")
  6304. },
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(65, "feet"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(780, "feet")
  6313. },
  6314. {
  6315. name: "Flaming Mountain",
  6316. height: math.unit(4.8, "miles")
  6317. },
  6318. {
  6319. name: "Celestial",
  6320. height: math.unit(765000, "miles")
  6321. },
  6322. ]
  6323. ))
  6324. characterMakers.push(() => makeCharacter(
  6325. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6326. {
  6327. front: {
  6328. height: math.unit(5 + 3 / 4, "feet"),
  6329. weight: math.unit(120, "lbs"),
  6330. name: "Front",
  6331. image: {
  6332. source: "./media/characters/tails/front.svg"
  6333. }
  6334. }
  6335. },
  6336. [
  6337. {
  6338. name: "Normal",
  6339. height: math.unit(5 + 3 / 4, "feet"),
  6340. default: true
  6341. }
  6342. ]
  6343. ))
  6344. characterMakers.push(() => makeCharacter(
  6345. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6346. {
  6347. front: {
  6348. height: math.unit(4, "feet"),
  6349. weight: math.unit(50, "lbs"),
  6350. name: "Front",
  6351. image: {
  6352. source: "./media/characters/rainy/front.svg"
  6353. }
  6354. }
  6355. },
  6356. [
  6357. {
  6358. name: "Macro",
  6359. height: math.unit(800, "feet"),
  6360. default: true
  6361. }
  6362. ]
  6363. ))
  6364. characterMakers.push(() => makeCharacter(
  6365. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6366. {
  6367. front: {
  6368. height: math.unit(6, "feet"),
  6369. weight: math.unit(150, "lbs"),
  6370. name: "Front",
  6371. image: {
  6372. source: "./media/characters/rainier/front.svg"
  6373. }
  6374. }
  6375. },
  6376. [
  6377. {
  6378. name: "Micro",
  6379. height: math.unit(2, "mm"),
  6380. default: true
  6381. }
  6382. ]
  6383. ))
  6384. characterMakers.push(() => makeCharacter(
  6385. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6386. {
  6387. front: {
  6388. height: math.unit(8 + 4/12, "feet"),
  6389. weight: math.unit(450, "kilograms"),
  6390. volume: math.unit(5, "cups"),
  6391. name: "Front",
  6392. image: {
  6393. source: "./media/characters/andy-renard/front.svg",
  6394. extra: 1839/1726,
  6395. bottom: 134/1973
  6396. }
  6397. },
  6398. back: {
  6399. height: math.unit(8 + 4/12, "feet"),
  6400. weight: math.unit(450, "kilograms"),
  6401. volume: math.unit(5, "cups"),
  6402. name: "Back",
  6403. image: {
  6404. source: "./media/characters/andy-renard/back.svg",
  6405. extra: 1838/1710,
  6406. bottom: 105/1943
  6407. }
  6408. },
  6409. },
  6410. [
  6411. {
  6412. name: "Tall",
  6413. height: math.unit(8 + 4/12, "feet")
  6414. },
  6415. {
  6416. name: "Mini Macro",
  6417. height: math.unit(15, "feet"),
  6418. default: true
  6419. },
  6420. {
  6421. name: "Macro",
  6422. height: math.unit(100, "feet")
  6423. },
  6424. {
  6425. name: "Mega Macro",
  6426. height: math.unit(1000, "feet")
  6427. },
  6428. {
  6429. name: "Giga Macro",
  6430. height: math.unit(10, "miles")
  6431. },
  6432. {
  6433. name: "God Macro",
  6434. height: math.unit(1, "multiverse")
  6435. },
  6436. ]
  6437. ))
  6438. characterMakers.push(() => makeCharacter(
  6439. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6440. {
  6441. front: {
  6442. height: math.unit(6, "feet"),
  6443. weight: math.unit(210, "lbs"),
  6444. name: "Front",
  6445. image: {
  6446. source: "./media/characters/cimmaron/front-sfw.svg",
  6447. extra: 701 / 676,
  6448. bottom: 0.046
  6449. }
  6450. },
  6451. back: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(210, "lbs"),
  6454. name: "Back",
  6455. image: {
  6456. source: "./media/characters/cimmaron/back-sfw.svg",
  6457. extra: 701 / 676,
  6458. bottom: 0.046
  6459. }
  6460. },
  6461. frontNsfw: {
  6462. height: math.unit(6, "feet"),
  6463. weight: math.unit(210, "lbs"),
  6464. name: "Front (NSFW)",
  6465. image: {
  6466. source: "./media/characters/cimmaron/front-nsfw.svg",
  6467. extra: 701 / 676,
  6468. bottom: 0.046
  6469. }
  6470. },
  6471. backNsfw: {
  6472. height: math.unit(6, "feet"),
  6473. weight: math.unit(210, "lbs"),
  6474. name: "Back (NSFW)",
  6475. image: {
  6476. source: "./media/characters/cimmaron/back-nsfw.svg",
  6477. extra: 701 / 676,
  6478. bottom: 0.046
  6479. }
  6480. },
  6481. dick: {
  6482. height: math.unit(1.714, "feet"),
  6483. name: "Dick",
  6484. image: {
  6485. source: "./media/characters/cimmaron/dick.svg"
  6486. }
  6487. },
  6488. },
  6489. [
  6490. {
  6491. name: "Normal",
  6492. height: math.unit(6, "feet"),
  6493. default: true
  6494. },
  6495. {
  6496. name: "Macro Mayor",
  6497. height: math.unit(350, "meters")
  6498. },
  6499. ]
  6500. ))
  6501. characterMakers.push(() => makeCharacter(
  6502. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6503. {
  6504. front: {
  6505. height: math.unit(6, "feet"),
  6506. weight: math.unit(200, "lbs"),
  6507. name: "Front",
  6508. image: {
  6509. source: "./media/characters/akari/front.svg",
  6510. extra: 962 / 901,
  6511. bottom: 0.04
  6512. }
  6513. }
  6514. },
  6515. [
  6516. {
  6517. name: "Micro",
  6518. height: math.unit(5, "inches"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Normal",
  6523. height: math.unit(7, "feet")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(6, "feet"),
  6532. weight: math.unit(140, "lbs"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/cynosura/front.svg",
  6536. extra: 437/410,
  6537. bottom: 9/446
  6538. }
  6539. },
  6540. back: {
  6541. height: math.unit(6, "feet"),
  6542. weight: math.unit(140, "lbs"),
  6543. name: "Back",
  6544. image: {
  6545. source: "./media/characters/cynosura/back.svg",
  6546. extra: 1304/1160,
  6547. bottom: 71/1375
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Micro",
  6554. height: math.unit(4, "inches")
  6555. },
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(5.75, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Tall",
  6563. height: math.unit(10, "feet")
  6564. },
  6565. {
  6566. name: "Big",
  6567. height: math.unit(20, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(50, "feet")
  6572. },
  6573. ]
  6574. ))
  6575. characterMakers.push(() => makeCharacter(
  6576. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6577. {
  6578. front: {
  6579. height: math.unit(13 + 2/12, "feet"),
  6580. weight: math.unit(800, "kg"),
  6581. name: "Front",
  6582. image: {
  6583. source: "./media/characters/gin/front.svg",
  6584. extra: 1312/1191,
  6585. bottom: 45/1357
  6586. }
  6587. },
  6588. mouth: {
  6589. height: math.unit(2.39 * 1.8, "feet"),
  6590. name: "Mouth",
  6591. image: {
  6592. source: "./media/characters/gin/mouth.svg"
  6593. }
  6594. },
  6595. hand: {
  6596. height: math.unit(1.57 * 2.19, "feet"),
  6597. name: "Hand",
  6598. image: {
  6599. source: "./media/characters/gin/hand.svg"
  6600. }
  6601. },
  6602. foot: {
  6603. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6604. name: "Foot",
  6605. image: {
  6606. source: "./media/characters/gin/foot.svg"
  6607. }
  6608. },
  6609. sole: {
  6610. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6611. name: "Sole",
  6612. image: {
  6613. source: "./media/characters/gin/sole.svg"
  6614. }
  6615. },
  6616. },
  6617. [
  6618. {
  6619. name: "Very Small",
  6620. height: math.unit(13 + 2 / 12, "feet")
  6621. },
  6622. {
  6623. name: "Micro",
  6624. height: math.unit(600, "miles")
  6625. },
  6626. {
  6627. name: "Regular",
  6628. height: math.unit(20, "earths"),
  6629. default: true
  6630. },
  6631. {
  6632. name: "Macro",
  6633. height: math.unit(2.2, "solarradii")
  6634. },
  6635. {
  6636. name: "Teramacro",
  6637. height: math.unit(1.2, "galaxies")
  6638. },
  6639. {
  6640. name: "Omegamacro",
  6641. height: math.unit(200, "universes")
  6642. },
  6643. ]
  6644. ))
  6645. characterMakers.push(() => makeCharacter(
  6646. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6647. {
  6648. front: {
  6649. height: math.unit(6 + 1 / 6, "feet"),
  6650. weight: math.unit(178, "lbs"),
  6651. name: "Front",
  6652. image: {
  6653. source: "./media/characters/guy/front.svg"
  6654. }
  6655. }
  6656. },
  6657. [
  6658. {
  6659. name: "Normal",
  6660. height: math.unit(6 + 1 / 6, "feet"),
  6661. default: true
  6662. },
  6663. {
  6664. name: "Large",
  6665. height: math.unit(25 + 7 / 12, "feet")
  6666. },
  6667. {
  6668. name: "Macro",
  6669. height: math.unit(60 + 9 / 12, "feet")
  6670. },
  6671. {
  6672. name: "Macro+",
  6673. height: math.unit(246, "feet")
  6674. },
  6675. {
  6676. name: "Macro++",
  6677. height: math.unit(878, "feet")
  6678. }
  6679. ]
  6680. ))
  6681. characterMakers.push(() => makeCharacter(
  6682. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6683. {
  6684. front: {
  6685. height: math.unit(9, "feet"),
  6686. weight: math.unit(800, "lbs"),
  6687. name: "Front",
  6688. image: {
  6689. source: "./media/characters/tiberius/front.svg",
  6690. extra: 2295 / 2071
  6691. }
  6692. },
  6693. back: {
  6694. height: math.unit(9, "feet"),
  6695. weight: math.unit(800, "lbs"),
  6696. name: "Back",
  6697. image: {
  6698. source: "./media/characters/tiberius/back.svg",
  6699. extra: 2373 / 2160
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(9, "feet"),
  6707. default: true
  6708. }
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6713. {
  6714. front: {
  6715. height: math.unit(6, "feet"),
  6716. weight: math.unit(600, "lbs"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/surgo/front.svg",
  6720. extra: 3591 / 2227
  6721. }
  6722. },
  6723. back: {
  6724. height: math.unit(6, "feet"),
  6725. weight: math.unit(600, "lbs"),
  6726. name: "Back",
  6727. image: {
  6728. source: "./media/characters/surgo/back.svg",
  6729. extra: 3557 / 2228
  6730. }
  6731. },
  6732. laying: {
  6733. height: math.unit(6 * 0.85, "feet"),
  6734. weight: math.unit(600, "lbs"),
  6735. name: "Laying",
  6736. image: {
  6737. source: "./media/characters/surgo/laying.svg"
  6738. }
  6739. },
  6740. },
  6741. [
  6742. {
  6743. name: "Normal",
  6744. height: math.unit(6, "feet"),
  6745. default: true
  6746. }
  6747. ]
  6748. ))
  6749. characterMakers.push(() => makeCharacter(
  6750. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6751. {
  6752. side: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(150, "lbs"),
  6755. name: "Side",
  6756. image: {
  6757. source: "./media/characters/cibus/side.svg",
  6758. extra: 800 / 400
  6759. }
  6760. },
  6761. },
  6762. [
  6763. {
  6764. name: "Normal",
  6765. height: math.unit(6, "feet"),
  6766. default: true
  6767. }
  6768. ]
  6769. ))
  6770. characterMakers.push(() => makeCharacter(
  6771. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6772. {
  6773. front: {
  6774. height: math.unit(6, "feet"),
  6775. weight: math.unit(240, "lbs"),
  6776. name: "Front",
  6777. image: {
  6778. source: "./media/characters/nibbles/front.svg"
  6779. }
  6780. },
  6781. side: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(240, "lbs"),
  6784. name: "Side",
  6785. image: {
  6786. source: "./media/characters/nibbles/side.svg"
  6787. }
  6788. },
  6789. },
  6790. [
  6791. {
  6792. name: "Normal",
  6793. height: math.unit(9, "feet"),
  6794. default: true
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6800. {
  6801. side: {
  6802. height: math.unit(5 + 1 / 6, "feet"),
  6803. weight: math.unit(130, "lbs"),
  6804. name: "Side",
  6805. image: {
  6806. source: "./media/characters/rikky/side.svg",
  6807. extra: 851 / 801
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(5 + 1 / 6, "feet")
  6815. },
  6816. {
  6817. name: "Macro",
  6818. height: math.unit(152, "feet"),
  6819. default: true
  6820. },
  6821. {
  6822. name: "Megamacro",
  6823. height: math.unit(7, "miles")
  6824. }
  6825. ]
  6826. ))
  6827. characterMakers.push(() => makeCharacter(
  6828. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6829. {
  6830. side: {
  6831. height: math.unit(370, "cm"),
  6832. weight: math.unit(350, "lbs"),
  6833. name: "Side",
  6834. image: {
  6835. source: "./media/characters/malfressa/side.svg"
  6836. }
  6837. },
  6838. walking: {
  6839. height: math.unit(370, "cm"),
  6840. weight: math.unit(350, "lbs"),
  6841. name: "Walking",
  6842. image: {
  6843. source: "./media/characters/malfressa/walking.svg"
  6844. }
  6845. },
  6846. feral: {
  6847. height: math.unit(2500, "cm"),
  6848. weight: math.unit(100000, "lbs"),
  6849. name: "Feral",
  6850. image: {
  6851. source: "./media/characters/malfressa/feral.svg",
  6852. extra: 2108 / 837,
  6853. bottom: 0.02
  6854. }
  6855. },
  6856. },
  6857. [
  6858. {
  6859. name: "Normal",
  6860. height: math.unit(370, "cm")
  6861. },
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(300, "meters"),
  6865. default: true
  6866. }
  6867. ]
  6868. ))
  6869. characterMakers.push(() => makeCharacter(
  6870. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6871. {
  6872. front: {
  6873. height: math.unit(6, "feet"),
  6874. weight: math.unit(60, "kg"),
  6875. name: "Front",
  6876. image: {
  6877. source: "./media/characters/jaro/front.svg",
  6878. extra: 845/817,
  6879. bottom: 45/890
  6880. }
  6881. },
  6882. back: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(60, "kg"),
  6885. name: "Back",
  6886. image: {
  6887. source: "./media/characters/jaro/back.svg",
  6888. extra: 847/817,
  6889. bottom: 34/881
  6890. }
  6891. },
  6892. },
  6893. [
  6894. {
  6895. name: "Micro",
  6896. height: math.unit(7, "inches")
  6897. },
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(5.5, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Minimacro",
  6905. height: math.unit(20, "feet")
  6906. },
  6907. {
  6908. name: "Macro",
  6909. height: math.unit(200, "meters")
  6910. }
  6911. ]
  6912. ))
  6913. characterMakers.push(() => makeCharacter(
  6914. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6915. {
  6916. front: {
  6917. height: math.unit(6, "feet"),
  6918. weight: math.unit(195, "lb"),
  6919. name: "Front",
  6920. image: {
  6921. source: "./media/characters/rogue/front.svg"
  6922. }
  6923. },
  6924. },
  6925. [
  6926. {
  6927. name: "Macro",
  6928. height: math.unit(90, "feet"),
  6929. default: true
  6930. },
  6931. ]
  6932. ))
  6933. characterMakers.push(() => makeCharacter(
  6934. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6935. {
  6936. standing: {
  6937. height: math.unit(5 + 8 / 12, "feet"),
  6938. weight: math.unit(140, "lb"),
  6939. name: "Standing",
  6940. image: {
  6941. source: "./media/characters/piper/standing.svg",
  6942. extra: 1440/1284,
  6943. bottom: 66/1506
  6944. }
  6945. },
  6946. running: {
  6947. height: math.unit(5 + 8 / 12, "feet"),
  6948. weight: math.unit(140, "lb"),
  6949. name: "Running",
  6950. image: {
  6951. source: "./media/characters/piper/running.svg",
  6952. extra: 3948/3655,
  6953. bottom: 0/3948
  6954. }
  6955. },
  6956. sole: {
  6957. height: math.unit(0.81, "feet"),
  6958. weight: math.unit(2, "kg"),
  6959. name: "Sole",
  6960. image: {
  6961. source: "./media/characters/piper/sole.svg"
  6962. }
  6963. },
  6964. nipple: {
  6965. height: math.unit(0.25, "feet"),
  6966. weight: math.unit(1.5, "lb"),
  6967. name: "Nipple",
  6968. image: {
  6969. source: "./media/characters/piper/nipple.svg"
  6970. }
  6971. },
  6972. head: {
  6973. height: math.unit(1.1, "feet"),
  6974. name: "Head",
  6975. image: {
  6976. source: "./media/characters/piper/head.svg"
  6977. }
  6978. },
  6979. },
  6980. [
  6981. {
  6982. name: "Micro",
  6983. height: math.unit(2, "inches")
  6984. },
  6985. {
  6986. name: "Normal",
  6987. height: math.unit(5 + 8 / 12, "feet")
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(250, "feet"),
  6992. default: true
  6993. },
  6994. {
  6995. name: "Megamacro",
  6996. height: math.unit(7, "miles")
  6997. },
  6998. ]
  6999. ))
  7000. characterMakers.push(() => makeCharacter(
  7001. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7002. {
  7003. front: {
  7004. height: math.unit(6, "feet"),
  7005. weight: math.unit(220, "lb"),
  7006. name: "Front",
  7007. image: {
  7008. source: "./media/characters/gemini/front.svg"
  7009. }
  7010. },
  7011. back: {
  7012. height: math.unit(6, "feet"),
  7013. weight: math.unit(220, "lb"),
  7014. name: "Back",
  7015. image: {
  7016. source: "./media/characters/gemini/back.svg"
  7017. }
  7018. },
  7019. kneeling: {
  7020. height: math.unit(6 / 1.5, "feet"),
  7021. weight: math.unit(220, "lb"),
  7022. name: "Kneeling",
  7023. image: {
  7024. source: "./media/characters/gemini/kneeling.svg",
  7025. bottom: 0.02
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(300, "meters"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(6900, "meters")
  7038. },
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7043. {
  7044. anthro: {
  7045. height: math.unit(2.35, "meters"),
  7046. weight: math.unit(73, "kg"),
  7047. name: "Anthro",
  7048. image: {
  7049. source: "./media/characters/alicia/anthro.svg",
  7050. extra: 2571 / 2385,
  7051. bottom: 75 / 2648
  7052. }
  7053. },
  7054. paw: {
  7055. height: math.unit(1.32, "feet"),
  7056. name: "Paw",
  7057. image: {
  7058. source: "./media/characters/alicia/paw.svg"
  7059. }
  7060. },
  7061. feral: {
  7062. height: math.unit(1.69, "meters"),
  7063. weight: math.unit(73, "kg"),
  7064. name: "Feral",
  7065. image: {
  7066. source: "./media/characters/alicia/feral.svg",
  7067. extra: 2123 / 1715,
  7068. bottom: 222 / 2349
  7069. }
  7070. },
  7071. },
  7072. [
  7073. {
  7074. name: "Normal",
  7075. height: math.unit(2.35, "meters")
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(60, "meters"),
  7080. default: true
  7081. },
  7082. {
  7083. name: "Megamacro",
  7084. height: math.unit(10000, "kilometers")
  7085. },
  7086. ]
  7087. ))
  7088. characterMakers.push(() => makeCharacter(
  7089. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7090. {
  7091. front: {
  7092. height: math.unit(7, "feet"),
  7093. weight: math.unit(250, "lbs"),
  7094. name: "Front",
  7095. image: {
  7096. source: "./media/characters/archy/front.svg"
  7097. }
  7098. }
  7099. },
  7100. [
  7101. {
  7102. name: "Micro",
  7103. height: math.unit(1, "inch")
  7104. },
  7105. {
  7106. name: "Shorty",
  7107. height: math.unit(5, "feet")
  7108. },
  7109. {
  7110. name: "Normal",
  7111. height: math.unit(7, "feet")
  7112. },
  7113. {
  7114. name: "Macro",
  7115. height: math.unit(600, "meters"),
  7116. default: true
  7117. },
  7118. {
  7119. name: "Megamacro",
  7120. height: math.unit(1, "mile")
  7121. },
  7122. ]
  7123. ))
  7124. characterMakers.push(() => makeCharacter(
  7125. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7126. {
  7127. front: {
  7128. height: math.unit(1.65, "meters"),
  7129. weight: math.unit(74, "kg"),
  7130. name: "Front",
  7131. image: {
  7132. source: "./media/characters/berri/front.svg",
  7133. extra: 857 / 837,
  7134. bottom: 18 / 877
  7135. }
  7136. },
  7137. bum: {
  7138. height: math.unit(1.46, "feet"),
  7139. name: "Bum",
  7140. image: {
  7141. source: "./media/characters/berri/bum.svg"
  7142. }
  7143. },
  7144. mouth: {
  7145. height: math.unit(0.44, "feet"),
  7146. name: "Mouth",
  7147. image: {
  7148. source: "./media/characters/berri/mouth.svg"
  7149. }
  7150. },
  7151. paw: {
  7152. height: math.unit(0.826, "feet"),
  7153. name: "Paw",
  7154. image: {
  7155. source: "./media/characters/berri/paw.svg"
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(1.65, "meters")
  7163. },
  7164. {
  7165. name: "Macro",
  7166. height: math.unit(60, "m"),
  7167. default: true
  7168. },
  7169. {
  7170. name: "Megamacro",
  7171. height: math.unit(9.213, "km")
  7172. },
  7173. {
  7174. name: "Planet Eater",
  7175. height: math.unit(489, "megameters")
  7176. },
  7177. {
  7178. name: "Teramacro",
  7179. height: math.unit(2471635000000, "meters")
  7180. },
  7181. {
  7182. name: "Examacro",
  7183. height: math.unit(8.0624e+26, "meters")
  7184. }
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(1.72, "meters"),
  7192. weight: math.unit(68, "kg"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/lexi/front.svg"
  7196. }
  7197. }
  7198. },
  7199. [
  7200. {
  7201. name: "Very Smol",
  7202. height: math.unit(10, "mm")
  7203. },
  7204. {
  7205. name: "Micro",
  7206. height: math.unit(6.8, "cm"),
  7207. default: true
  7208. },
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(1.72, "m")
  7212. }
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(1.69, "meters"),
  7220. weight: math.unit(68, "kg"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/martin/front.svg",
  7224. extra: 596 / 581
  7225. }
  7226. }
  7227. },
  7228. [
  7229. {
  7230. name: "Micro",
  7231. height: math.unit(6.85, "cm"),
  7232. default: true
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(1.69, "m")
  7237. }
  7238. ]
  7239. ))
  7240. characterMakers.push(() => makeCharacter(
  7241. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7242. {
  7243. front: {
  7244. height: math.unit(1.69, "meters"),
  7245. weight: math.unit(68, "kg"),
  7246. name: "Front",
  7247. image: {
  7248. source: "./media/characters/juno/front.svg"
  7249. }
  7250. }
  7251. },
  7252. [
  7253. {
  7254. name: "Micro",
  7255. height: math.unit(7, "cm")
  7256. },
  7257. {
  7258. name: "Normal",
  7259. height: math.unit(1.89, "m")
  7260. },
  7261. {
  7262. name: "Macro",
  7263. height: math.unit(353, "meters"),
  7264. default: true
  7265. }
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(1.93, "meters"),
  7273. weight: math.unit(83, "kg"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/samantha/front.svg"
  7277. }
  7278. },
  7279. frontClothed: {
  7280. height: math.unit(1.93, "meters"),
  7281. weight: math.unit(83, "kg"),
  7282. name: "Front (Clothed)",
  7283. image: {
  7284. source: "./media/characters/samantha/front-clothed.svg"
  7285. }
  7286. },
  7287. back: {
  7288. height: math.unit(1.93, "meters"),
  7289. weight: math.unit(83, "kg"),
  7290. name: "Back",
  7291. image: {
  7292. source: "./media/characters/samantha/back.svg"
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(1.93, "m")
  7300. },
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(74, "meters"),
  7304. default: true
  7305. },
  7306. {
  7307. name: "Macro+",
  7308. height: math.unit(223, "meters"),
  7309. },
  7310. {
  7311. name: "Megamacro",
  7312. height: math.unit(8381, "meters"),
  7313. },
  7314. {
  7315. name: "Megamacro+",
  7316. height: math.unit(12000, "kilometers")
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7322. {
  7323. front: {
  7324. height: math.unit(1.92, "meters"),
  7325. weight: math.unit(80, "kg"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/dr-clay/front.svg"
  7329. }
  7330. },
  7331. frontClothed: {
  7332. height: math.unit(1.92, "meters"),
  7333. weight: math.unit(80, "kg"),
  7334. name: "Front (Clothed)",
  7335. image: {
  7336. source: "./media/characters/dr-clay/front-clothed.svg"
  7337. }
  7338. }
  7339. },
  7340. [
  7341. {
  7342. name: "Normal",
  7343. height: math.unit(1.92, "m")
  7344. },
  7345. {
  7346. name: "Macro",
  7347. height: math.unit(214, "meters"),
  7348. default: true
  7349. },
  7350. {
  7351. name: "Macro+",
  7352. height: math.unit(12.237, "meters"),
  7353. },
  7354. {
  7355. name: "Megamacro",
  7356. height: math.unit(557, "megameters"),
  7357. },
  7358. {
  7359. name: "Unimaginable",
  7360. height: math.unit(120e9, "lightyears")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(2, "meters"),
  7369. weight: math.unit(80, "kg"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7373. }
  7374. }
  7375. },
  7376. [
  7377. {
  7378. name: "Teramacro",
  7379. height: math.unit(500000, "lightyears"),
  7380. default: true
  7381. },
  7382. ]
  7383. ))
  7384. characterMakers.push(() => makeCharacter(
  7385. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7386. {
  7387. crux: {
  7388. height: math.unit(2, "meters"),
  7389. weight: math.unit(150, "kg"),
  7390. name: "Crux",
  7391. image: {
  7392. source: "./media/characters/vemus/crux.svg",
  7393. extra: 1074/936,
  7394. bottom: 23/1097
  7395. }
  7396. },
  7397. skunkTanuki: {
  7398. height: math.unit(2, "meters"),
  7399. weight: math.unit(150, "kg"),
  7400. name: "Skunk-Tanuki",
  7401. image: {
  7402. source: "./media/characters/vemus/skunk-tanuki.svg",
  7403. extra: 926/893,
  7404. bottom: 20/946
  7405. }
  7406. },
  7407. },
  7408. [
  7409. {
  7410. name: "Normal",
  7411. height: math.unit(4, "meters"),
  7412. default: true
  7413. },
  7414. {
  7415. name: "Big",
  7416. height: math.unit(8, "meters")
  7417. },
  7418. {
  7419. name: "Macro",
  7420. height: math.unit(100, "meters")
  7421. },
  7422. {
  7423. name: "Macro+",
  7424. height: math.unit(1500, "meters")
  7425. },
  7426. {
  7427. name: "Stellar",
  7428. height: math.unit(14e8, "meters")
  7429. },
  7430. ]
  7431. ))
  7432. characterMakers.push(() => makeCharacter(
  7433. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7434. {
  7435. front: {
  7436. height: math.unit(2, "meters"),
  7437. weight: math.unit(70, "kg"),
  7438. name: "Front",
  7439. image: {
  7440. source: "./media/characters/beherit/front.svg",
  7441. extra: 1234/1109,
  7442. bottom: 55/1289
  7443. }
  7444. }
  7445. },
  7446. [
  7447. {
  7448. name: "Normal",
  7449. height: math.unit(6, "feet")
  7450. },
  7451. {
  7452. name: "Lorg",
  7453. height: math.unit(25, "feet"),
  7454. default: true
  7455. },
  7456. {
  7457. name: "Lorger",
  7458. height: math.unit(75, "feet")
  7459. },
  7460. {
  7461. name: "Macro",
  7462. height: math.unit(200, "meters")
  7463. },
  7464. ]
  7465. ))
  7466. characterMakers.push(() => makeCharacter(
  7467. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7468. {
  7469. front: {
  7470. height: math.unit(2, "meters"),
  7471. weight: math.unit(150, "kg"),
  7472. name: "Front",
  7473. image: {
  7474. source: "./media/characters/everett/front.svg",
  7475. extra: 1017/866,
  7476. bottom: 86/1103
  7477. }
  7478. },
  7479. paw: {
  7480. height: math.unit(2 / 3.6, "meters"),
  7481. name: "Paw",
  7482. image: {
  7483. source: "./media/characters/everett/paw.svg"
  7484. }
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "Normal",
  7490. height: math.unit(15, "feet"),
  7491. default: true
  7492. },
  7493. {
  7494. name: "Lorg",
  7495. height: math.unit(70, "feet"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Lorger",
  7500. height: math.unit(250, "feet")
  7501. },
  7502. {
  7503. name: "Macro",
  7504. height: math.unit(500, "meters")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(2, "meters"),
  7513. weight: math.unit(86, "kg"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/rose/front.svg",
  7517. extra: 1785/1636,
  7518. bottom: 30/1815
  7519. },
  7520. form: "liom",
  7521. default: true
  7522. },
  7523. frontSporty: {
  7524. height: math.unit(2, "meters"),
  7525. weight: math.unit(86, "kg"),
  7526. name: "Front (Sporty)",
  7527. image: {
  7528. source: "./media/characters/rose/front-sporty.svg",
  7529. extra: 350/335,
  7530. bottom: 10/360
  7531. },
  7532. form: "liom"
  7533. },
  7534. frontAlt: {
  7535. height: math.unit(1.6, "meters"),
  7536. weight: math.unit(86, "kg"),
  7537. name: "Front (Alt)",
  7538. image: {
  7539. source: "./media/characters/rose/front-alt.svg",
  7540. extra: 299/283,
  7541. bottom: 3/302
  7542. },
  7543. form: "liom"
  7544. },
  7545. plush: {
  7546. height: math.unit(2, "meters"),
  7547. weight: math.unit(86/3, "kg"),
  7548. name: "Plush",
  7549. image: {
  7550. source: "./media/characters/rose/plush.svg",
  7551. extra: 361/337,
  7552. bottom: 11/372
  7553. },
  7554. form: "plush",
  7555. default: true
  7556. },
  7557. faeStanding: {
  7558. height: math.unit(10, "cm"),
  7559. weight: math.unit(10, "grams"),
  7560. name: "Standing",
  7561. image: {
  7562. source: "./media/characters/rose/fae-standing.svg",
  7563. extra: 1189/1060,
  7564. bottom: 27/1216
  7565. },
  7566. form: "fae",
  7567. default: true
  7568. },
  7569. faeSitting: {
  7570. height: math.unit(5, "cm"),
  7571. weight: math.unit(10, "grams"),
  7572. name: "Sitting",
  7573. image: {
  7574. source: "./media/characters/rose/fae-sitting.svg",
  7575. extra: 737/577,
  7576. bottom: 356/1093
  7577. },
  7578. form: "fae"
  7579. },
  7580. faePaw: {
  7581. height: math.unit(1.35, "cm"),
  7582. name: "Paw",
  7583. image: {
  7584. source: "./media/characters/rose/fae-paw.svg"
  7585. },
  7586. form: "fae"
  7587. },
  7588. },
  7589. [
  7590. {
  7591. name: "True Micro",
  7592. height: math.unit(9, "cm"),
  7593. form: "liom"
  7594. },
  7595. {
  7596. name: "Micro",
  7597. height: math.unit(16, "cm"),
  7598. form: "liom"
  7599. },
  7600. {
  7601. name: "Normal",
  7602. height: math.unit(1.85, "meters"),
  7603. default: true,
  7604. form: "liom"
  7605. },
  7606. {
  7607. name: "Mini-Macro",
  7608. height: math.unit(5, "meters"),
  7609. form: "liom"
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(15, "meters"),
  7614. form: "liom"
  7615. },
  7616. {
  7617. name: "True Macro",
  7618. height: math.unit(40, "meters"),
  7619. form: "liom"
  7620. },
  7621. {
  7622. name: "City Scale",
  7623. height: math.unit(1, "km"),
  7624. form: "liom"
  7625. },
  7626. {
  7627. name: "Plushie",
  7628. height: math.unit(9, "cm"),
  7629. form: "plush",
  7630. default: true
  7631. },
  7632. {
  7633. name: "Fae",
  7634. height: math.unit(10, "cm"),
  7635. form: "fae",
  7636. default: true
  7637. },
  7638. ],
  7639. {
  7640. "liom": {
  7641. name: "Liom"
  7642. },
  7643. "plush": {
  7644. name: "Plush"
  7645. },
  7646. "fae": {
  7647. name: "Fae Fox",
  7648. default: true
  7649. }
  7650. }
  7651. ))
  7652. characterMakers.push(() => makeCharacter(
  7653. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7654. {
  7655. front: {
  7656. height: math.unit(2, "meters"),
  7657. weight: math.unit(350, "lbs"),
  7658. name: "Front",
  7659. image: {
  7660. source: "./media/characters/regal/front.svg"
  7661. }
  7662. },
  7663. back: {
  7664. height: math.unit(2, "meters"),
  7665. weight: math.unit(350, "lbs"),
  7666. name: "Back",
  7667. image: {
  7668. source: "./media/characters/regal/back.svg"
  7669. }
  7670. },
  7671. },
  7672. [
  7673. {
  7674. name: "Macro",
  7675. height: math.unit(350, "feet"),
  7676. default: true
  7677. }
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(4 + 11 / 12, "feet"),
  7685. weight: math.unit(100, "lbs"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/opal/front.svg"
  7689. }
  7690. },
  7691. frontAlt: {
  7692. height: math.unit(4 + 11 / 12, "feet"),
  7693. weight: math.unit(100, "lbs"),
  7694. name: "Front (Alt)",
  7695. image: {
  7696. source: "./media/characters/opal/front-alt.svg"
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Small",
  7703. height: math.unit(4 + 11 / 12, "feet")
  7704. },
  7705. {
  7706. name: "Normal",
  7707. height: math.unit(20, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Macro",
  7712. height: math.unit(120, "feet")
  7713. },
  7714. {
  7715. name: "Megamacro",
  7716. height: math.unit(80, "miles")
  7717. },
  7718. {
  7719. name: "True Size",
  7720. height: math.unit(100000, "lightyears")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(200, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/vector-wuff/front.svg"
  7733. }
  7734. }
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(2.8, "meters")
  7740. },
  7741. {
  7742. name: "Macro",
  7743. height: math.unit(450, "meters"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Megamacro",
  7748. height: math.unit(15, "kilometers")
  7749. }
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7754. {
  7755. front: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(256, "lbs"),
  7758. name: "Front",
  7759. image: {
  7760. source: "./media/characters/dannik/front.svg"
  7761. }
  7762. }
  7763. },
  7764. [
  7765. {
  7766. name: "Macro",
  7767. height: math.unit(69.57, "meters"),
  7768. default: true
  7769. },
  7770. ]
  7771. ))
  7772. characterMakers.push(() => makeCharacter(
  7773. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7774. {
  7775. front: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(120, "lbs"),
  7778. name: "Front",
  7779. image: {
  7780. source: "./media/characters/azura-saharah/front.svg"
  7781. }
  7782. },
  7783. back: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(120, "lbs"),
  7786. name: "Back",
  7787. image: {
  7788. source: "./media/characters/azura-saharah/back.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Macro",
  7795. height: math.unit(100, "feet"),
  7796. default: true
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7802. {
  7803. side: {
  7804. height: math.unit(5 + 4 / 12, "feet"),
  7805. weight: math.unit(163, "lbs"),
  7806. name: "Side",
  7807. image: {
  7808. source: "./media/characters/kennedy/side.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Standard Doggo",
  7815. height: math.unit(5 + 4 / 12, "feet")
  7816. },
  7817. {
  7818. name: "Big Doggo",
  7819. height: math.unit(25 + 3 / 12, "feet"),
  7820. default: true
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(5 + 5/12, "feet"),
  7829. weight: math.unit(100, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/odios-de-lunar/front.svg",
  7833. extra: 1468/1323,
  7834. bottom: 22/1490
  7835. }
  7836. }
  7837. },
  7838. [
  7839. {
  7840. name: "Micro",
  7841. height: math.unit(3, "inches")
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(5.5, "feet"),
  7846. default: true
  7847. },
  7848. {
  7849. name: "Macro",
  7850. height: math.unit(100, "feet")
  7851. },
  7852. ]
  7853. ))
  7854. characterMakers.push(() => makeCharacter(
  7855. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7856. {
  7857. back: {
  7858. height: math.unit(6, "feet"),
  7859. weight: math.unit(220, "lbs"),
  7860. name: "Back",
  7861. image: {
  7862. source: "./media/characters/mandake/back.svg"
  7863. }
  7864. }
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(7, "feet"),
  7870. default: true
  7871. },
  7872. {
  7873. name: "Macro",
  7874. height: math.unit(78, "feet")
  7875. },
  7876. {
  7877. name: "Macro+",
  7878. height: math.unit(300, "meters")
  7879. },
  7880. {
  7881. name: "Macro++",
  7882. height: math.unit(2400, "feet")
  7883. },
  7884. {
  7885. name: "Megamacro",
  7886. height: math.unit(5167, "meters")
  7887. },
  7888. {
  7889. name: "Gigamacro",
  7890. height: math.unit(41769, "miles")
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(120, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/yozey/front.svg"
  7903. }
  7904. },
  7905. frontAlt: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(120, "lbs"),
  7908. name: "Front (Alt)",
  7909. image: {
  7910. source: "./media/characters/yozey/front-alt.svg"
  7911. }
  7912. },
  7913. side: {
  7914. height: math.unit(6, "feet"),
  7915. weight: math.unit(120, "lbs"),
  7916. name: "Side",
  7917. image: {
  7918. source: "./media/characters/yozey/side.svg"
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Micro",
  7925. height: math.unit(3, "inches"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Normal",
  7930. height: math.unit(6, "feet")
  7931. }
  7932. ]
  7933. ))
  7934. characterMakers.push(() => makeCharacter(
  7935. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7936. {
  7937. front: {
  7938. height: math.unit(6, "feet"),
  7939. weight: math.unit(103, "lbs"),
  7940. name: "Front",
  7941. image: {
  7942. source: "./media/characters/valeska-voss/front.svg"
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Mini-Sized Sub",
  7949. height: math.unit(3.1, "inches")
  7950. },
  7951. {
  7952. name: "Mid-Sized Sub",
  7953. height: math.unit(6.2, "inches")
  7954. },
  7955. {
  7956. name: "Full-Sized Sub",
  7957. height: math.unit(9.3, "inches")
  7958. },
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(5 + 2 / 12, "foot"),
  7962. default: true
  7963. },
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(6, "feet"),
  7971. weight: math.unit(160, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/gene-zeta/front.svg",
  7975. extra: 3006 / 2826,
  7976. bottom: 182 / 3188
  7977. }
  7978. }
  7979. },
  7980. [
  7981. {
  7982. name: "Micro",
  7983. height: math.unit(6, "inches")
  7984. },
  7985. {
  7986. name: "Normal",
  7987. height: math.unit(5 + 11 / 12, "foot"),
  7988. default: true
  7989. },
  7990. {
  7991. name: "Macro",
  7992. height: math.unit(140, "feet")
  7993. },
  7994. {
  7995. name: "Supercharged",
  7996. height: math.unit(2500, "feet")
  7997. },
  7998. ]
  7999. ))
  8000. characterMakers.push(() => makeCharacter(
  8001. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8002. {
  8003. front: {
  8004. height: math.unit(6, "feet"),
  8005. weight: math.unit(350, "lbs"),
  8006. name: "Front",
  8007. image: {
  8008. source: "./media/characters/razinox/front.svg",
  8009. extra: 1686 / 1548,
  8010. bottom: 28.2 / 1868
  8011. }
  8012. },
  8013. back: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(350, "lbs"),
  8016. name: "Back",
  8017. image: {
  8018. source: "./media/characters/razinox/back.svg",
  8019. extra: 1660 / 1590,
  8020. bottom: 15 / 1665
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Normal",
  8027. height: math.unit(10 + 8 / 12, "foot")
  8028. },
  8029. {
  8030. name: "Minimacro",
  8031. height: math.unit(15, "foot")
  8032. },
  8033. {
  8034. name: "Macro",
  8035. height: math.unit(60, "foot"),
  8036. default: true
  8037. },
  8038. {
  8039. name: "Megamacro",
  8040. height: math.unit(5, "miles")
  8041. },
  8042. {
  8043. name: "Gigamacro",
  8044. height: math.unit(6000, "miles")
  8045. },
  8046. ]
  8047. ))
  8048. characterMakers.push(() => makeCharacter(
  8049. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8050. {
  8051. front: {
  8052. height: math.unit(6, "feet"),
  8053. weight: math.unit(150, "lbs"),
  8054. name: "Front",
  8055. image: {
  8056. source: "./media/characters/cobalt/front.svg"
  8057. }
  8058. }
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(8 + 1 / 12, "foot")
  8064. },
  8065. {
  8066. name: "Macro",
  8067. height: math.unit(111, "foot"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Supracosmic",
  8072. height: math.unit(1e42, "feet")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8078. {
  8079. front: {
  8080. height: math.unit(5, "inches"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/amanda/front.svg",
  8084. extra: 926/791,
  8085. bottom: 38/964
  8086. }
  8087. },
  8088. back: {
  8089. height: math.unit(5, "inches"),
  8090. name: "Back",
  8091. image: {
  8092. source: "./media/characters/amanda/back.svg",
  8093. extra: 909/805,
  8094. bottom: 43/952
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Micro",
  8101. height: math.unit(5, "inches"),
  8102. default: true
  8103. },
  8104. ]
  8105. ))
  8106. characterMakers.push(() => makeCharacter(
  8107. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8108. {
  8109. front: {
  8110. height: math.unit(2.75, "meters"),
  8111. weight: math.unit(1200, "lb"),
  8112. name: "Front",
  8113. image: {
  8114. source: "./media/characters/teal/front.svg",
  8115. extra: 2463 / 2320,
  8116. bottom: 166 / 2629
  8117. }
  8118. },
  8119. back: {
  8120. height: math.unit(2.75, "meters"),
  8121. weight: math.unit(1200, "lb"),
  8122. name: "Back",
  8123. image: {
  8124. source: "./media/characters/teal/back.svg",
  8125. extra: 2580 / 2489,
  8126. bottom: 151 / 2731
  8127. }
  8128. },
  8129. sitting: {
  8130. height: math.unit(1.9, "meters"),
  8131. weight: math.unit(1200, "lb"),
  8132. name: "Sitting",
  8133. image: {
  8134. source: "./media/characters/teal/sitting.svg",
  8135. extra: 623 / 590,
  8136. bottom: 121 / 744
  8137. }
  8138. },
  8139. standing: {
  8140. height: math.unit(2.75, "meters"),
  8141. weight: math.unit(1200, "lb"),
  8142. name: "Standing",
  8143. image: {
  8144. source: "./media/characters/teal/standing.svg",
  8145. extra: 923 / 893,
  8146. bottom: 60 / 983
  8147. }
  8148. },
  8149. stretching: {
  8150. height: math.unit(3.65, "meters"),
  8151. weight: math.unit(1200, "lb"),
  8152. name: "Stretching",
  8153. image: {
  8154. source: "./media/characters/teal/stretching.svg",
  8155. extra: 1276 / 1244,
  8156. bottom: 0 / 1276
  8157. }
  8158. },
  8159. legged: {
  8160. height: math.unit(1.3, "meters"),
  8161. weight: math.unit(100, "lb"),
  8162. name: "Legged",
  8163. image: {
  8164. source: "./media/characters/teal/legged.svg",
  8165. extra: 462 / 437,
  8166. bottom: 24 / 486
  8167. }
  8168. },
  8169. naga: {
  8170. height: math.unit(5.4, "meters"),
  8171. weight: math.unit(4000, "lb"),
  8172. name: "Naga",
  8173. image: {
  8174. source: "./media/characters/teal/naga.svg",
  8175. extra: 1902 / 1858,
  8176. bottom: 0 / 1902
  8177. }
  8178. },
  8179. hand: {
  8180. height: math.unit(0.52, "meters"),
  8181. name: "Hand",
  8182. image: {
  8183. source: "./media/characters/teal/hand.svg"
  8184. }
  8185. },
  8186. maw: {
  8187. height: math.unit(0.43, "meters"),
  8188. name: "Maw",
  8189. image: {
  8190. source: "./media/characters/teal/maw.svg"
  8191. }
  8192. },
  8193. slit: {
  8194. height: math.unit(0.25, "meters"),
  8195. name: "Slit",
  8196. image: {
  8197. source: "./media/characters/teal/slit.svg"
  8198. }
  8199. },
  8200. },
  8201. [
  8202. {
  8203. name: "Normal",
  8204. height: math.unit(2.75, "meters"),
  8205. default: true
  8206. },
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(300, "feet")
  8210. },
  8211. {
  8212. name: "Macro+",
  8213. height: math.unit(2000, "feet")
  8214. },
  8215. ]
  8216. ))
  8217. characterMakers.push(() => makeCharacter(
  8218. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8219. {
  8220. frontCat: {
  8221. height: math.unit(6, "feet"),
  8222. weight: math.unit(180, "lbs"),
  8223. name: "Front (Cat)",
  8224. image: {
  8225. source: "./media/characters/ravin-amulet/front-cat.svg"
  8226. }
  8227. },
  8228. frontCatAlt: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(180, "lbs"),
  8231. name: "Front (Alt, Cat)",
  8232. image: {
  8233. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8234. }
  8235. },
  8236. frontWerewolf: {
  8237. height: math.unit(6 * 1.2, "feet"),
  8238. weight: math.unit(225, "lbs"),
  8239. name: "Front (Werewolf)",
  8240. image: {
  8241. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8242. }
  8243. },
  8244. backWerewolf: {
  8245. height: math.unit(6 * 1.2, "feet"),
  8246. weight: math.unit(225, "lbs"),
  8247. name: "Back (Werewolf)",
  8248. image: {
  8249. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8250. }
  8251. },
  8252. },
  8253. [
  8254. {
  8255. name: "Nano",
  8256. height: math.unit(1, "micrometer")
  8257. },
  8258. {
  8259. name: "Micro",
  8260. height: math.unit(1, "inch")
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(6, "feet"),
  8265. default: true
  8266. },
  8267. {
  8268. name: "Macro",
  8269. height: math.unit(60, "feet")
  8270. }
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8275. {
  8276. front: {
  8277. height: math.unit(6, "feet"),
  8278. weight: math.unit(165, "lbs"),
  8279. name: "Front",
  8280. image: {
  8281. source: "./media/characters/fluoresce/front.svg"
  8282. }
  8283. }
  8284. },
  8285. [
  8286. {
  8287. name: "Micro",
  8288. height: math.unit(6, "cm")
  8289. },
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(5 + 7 / 12, "feet"),
  8293. default: true
  8294. },
  8295. {
  8296. name: "Macro",
  8297. height: math.unit(56, "feet")
  8298. },
  8299. {
  8300. name: "Megamacro",
  8301. height: math.unit(1.9, "miles")
  8302. },
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(9 + 6 / 12, "feet"),
  8310. weight: math.unit(523, "lbs"),
  8311. name: "Side",
  8312. image: {
  8313. source: "./media/characters/aurora/side.svg",
  8314. extra: 474/393,
  8315. bottom: 5/479
  8316. }
  8317. }
  8318. },
  8319. [
  8320. {
  8321. name: "Normal",
  8322. height: math.unit(9 + 6 / 12, "feet")
  8323. },
  8324. {
  8325. name: "Macro",
  8326. height: math.unit(96, "feet"),
  8327. default: true
  8328. },
  8329. {
  8330. name: "Macro+",
  8331. height: math.unit(243, "feet")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(194, "cm"),
  8340. weight: math.unit(90, "kg"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/ranek/front.svg",
  8344. extra: 1862/1791,
  8345. bottom: 80/1942
  8346. }
  8347. },
  8348. back: {
  8349. height: math.unit(194, "cm"),
  8350. weight: math.unit(90, "kg"),
  8351. name: "Back",
  8352. image: {
  8353. source: "./media/characters/ranek/back.svg",
  8354. extra: 1853/1787,
  8355. bottom: 74/1927
  8356. }
  8357. },
  8358. feral: {
  8359. height: math.unit(30, "cm"),
  8360. weight: math.unit(1.6, "lbs"),
  8361. name: "Feral",
  8362. image: {
  8363. source: "./media/characters/ranek/feral.svg",
  8364. extra: 990/631,
  8365. bottom: 29/1019
  8366. }
  8367. },
  8368. },
  8369. [
  8370. {
  8371. name: "Normal",
  8372. height: math.unit(194, "cm"),
  8373. default: true
  8374. },
  8375. {
  8376. name: "Macro",
  8377. height: math.unit(100, "meters")
  8378. },
  8379. ]
  8380. ))
  8381. characterMakers.push(() => makeCharacter(
  8382. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8383. {
  8384. front: {
  8385. height: math.unit(5 + 6 / 12, "feet"),
  8386. weight: math.unit(153, "lbs"),
  8387. name: "Front",
  8388. image: {
  8389. source: "./media/characters/andrew-cooper/front.svg"
  8390. }
  8391. },
  8392. },
  8393. [
  8394. {
  8395. name: "Nano",
  8396. height: math.unit(1, "mm")
  8397. },
  8398. {
  8399. name: "Micro",
  8400. height: math.unit(2, "inches")
  8401. },
  8402. {
  8403. name: "Normal",
  8404. height: math.unit(5 + 6 / 12, "feet"),
  8405. default: true
  8406. }
  8407. ]
  8408. ))
  8409. characterMakers.push(() => makeCharacter(
  8410. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8411. {
  8412. front: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(180, "lbs"),
  8415. name: "Front",
  8416. image: {
  8417. source: "./media/characters/akane-sato/front.svg",
  8418. extra: 1219 / 1140
  8419. }
  8420. },
  8421. back: {
  8422. height: math.unit(6, "feet"),
  8423. weight: math.unit(180, "lbs"),
  8424. name: "Back",
  8425. image: {
  8426. source: "./media/characters/akane-sato/back.svg",
  8427. extra: 1219 / 1170
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Normal",
  8434. height: math.unit(2.5, "meters")
  8435. },
  8436. {
  8437. name: "Macro",
  8438. height: math.unit(250, "meters"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Megamacro",
  8443. height: math.unit(25, "km")
  8444. },
  8445. ]
  8446. ))
  8447. characterMakers.push(() => makeCharacter(
  8448. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8449. {
  8450. front: {
  8451. height: math.unit(6, "feet"),
  8452. weight: math.unit(65, "kg"),
  8453. name: "Front",
  8454. image: {
  8455. source: "./media/characters/rook/front.svg",
  8456. extra: 960 / 950
  8457. }
  8458. }
  8459. },
  8460. [
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(8.8, "feet")
  8464. },
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(88, "feet"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Megamacro",
  8472. height: math.unit(8, "miles")
  8473. },
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8478. {
  8479. front: {
  8480. height: math.unit(12 + 2 / 12, "feet"),
  8481. weight: math.unit(808, "lbs"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/prodigy/front.svg"
  8485. }
  8486. }
  8487. },
  8488. [
  8489. {
  8490. name: "Normal",
  8491. height: math.unit(12 + 2 / 12, "feet"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Macro",
  8496. height: math.unit(143, "feet")
  8497. },
  8498. {
  8499. name: "Macro+",
  8500. height: math.unit(400, "feet")
  8501. },
  8502. ]
  8503. ))
  8504. characterMakers.push(() => makeCharacter(
  8505. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8506. {
  8507. front: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(225, "lbs"),
  8510. name: "Front",
  8511. image: {
  8512. source: "./media/characters/daniel/front.svg"
  8513. }
  8514. },
  8515. leaning: {
  8516. height: math.unit(6, "feet"),
  8517. weight: math.unit(225, "lbs"),
  8518. name: "Leaning",
  8519. image: {
  8520. source: "./media/characters/daniel/leaning.svg"
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(1000, "feet"),
  8528. default: true
  8529. },
  8530. ]
  8531. ))
  8532. characterMakers.push(() => makeCharacter(
  8533. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8534. {
  8535. front: {
  8536. height: math.unit(6, "feet"),
  8537. weight: math.unit(88, "lbs"),
  8538. name: "Front",
  8539. image: {
  8540. source: "./media/characters/chiros/front.svg",
  8541. extra: 306 / 226
  8542. }
  8543. },
  8544. side: {
  8545. height: math.unit(6, "feet"),
  8546. weight: math.unit(88, "lbs"),
  8547. name: "Side",
  8548. image: {
  8549. source: "./media/characters/chiros/side.svg",
  8550. extra: 306 / 226
  8551. }
  8552. },
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(6, "cm"),
  8558. default: true
  8559. },
  8560. ]
  8561. ))
  8562. characterMakers.push(() => makeCharacter(
  8563. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8564. {
  8565. front: {
  8566. height: math.unit(6, "feet"),
  8567. weight: math.unit(100, "lbs"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/selka/front.svg",
  8571. extra: 947 / 887
  8572. }
  8573. }
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5, "cm"),
  8579. default: true
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(8 + 3 / 12, "feet"),
  8588. weight: math.unit(424, "lbs"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/verin/front.svg",
  8592. extra: 1845 / 1550
  8593. }
  8594. },
  8595. frontArmored: {
  8596. height: math.unit(8 + 3 / 12, "feet"),
  8597. weight: math.unit(424, "lbs"),
  8598. name: "Front (Armored)",
  8599. image: {
  8600. source: "./media/characters/verin/front-armor.svg",
  8601. extra: 1845 / 1550,
  8602. bottom: 0.01
  8603. }
  8604. },
  8605. back: {
  8606. height: math.unit(8 + 3 / 12, "feet"),
  8607. weight: math.unit(424, "lbs"),
  8608. name: "Back",
  8609. image: {
  8610. source: "./media/characters/verin/back.svg",
  8611. bottom: 0.1,
  8612. extra: 1
  8613. }
  8614. },
  8615. foot: {
  8616. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8617. name: "Foot",
  8618. image: {
  8619. source: "./media/characters/verin/foot.svg"
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(8 + 3 / 12, "feet")
  8627. },
  8628. {
  8629. name: "Minimacro",
  8630. height: math.unit(21, "feet"),
  8631. default: true
  8632. },
  8633. {
  8634. name: "Macro",
  8635. height: math.unit(626, "feet")
  8636. },
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8641. {
  8642. front: {
  8643. height: math.unit(2.718, "meters"),
  8644. weight: math.unit(150, "lbs"),
  8645. name: "Front",
  8646. image: {
  8647. source: "./media/characters/sovrim-terraquian/front.svg",
  8648. extra: 1752/1689,
  8649. bottom: 36/1788
  8650. }
  8651. },
  8652. back: {
  8653. height: math.unit(2.718, "meters"),
  8654. weight: math.unit(150, "lbs"),
  8655. name: "Back",
  8656. image: {
  8657. source: "./media/characters/sovrim-terraquian/back.svg",
  8658. extra: 1698/1657,
  8659. bottom: 58/1756
  8660. }
  8661. },
  8662. tongue: {
  8663. height: math.unit(2.865, "feet"),
  8664. name: "Tongue",
  8665. image: {
  8666. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8667. }
  8668. },
  8669. hand: {
  8670. height: math.unit(1.61, "feet"),
  8671. name: "Hand",
  8672. image: {
  8673. source: "./media/characters/sovrim-terraquian/hand.svg"
  8674. }
  8675. },
  8676. foot: {
  8677. height: math.unit(1.05, "feet"),
  8678. name: "Foot",
  8679. image: {
  8680. source: "./media/characters/sovrim-terraquian/foot.svg"
  8681. }
  8682. },
  8683. footAlt: {
  8684. height: math.unit(0.88, "feet"),
  8685. name: "Foot (Alt)",
  8686. image: {
  8687. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Micro",
  8694. height: math.unit(2, "inches")
  8695. },
  8696. {
  8697. name: "Small",
  8698. height: math.unit(1, "meter")
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(Math.E, "meters"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "Macro",
  8707. height: math.unit(20, "meters")
  8708. },
  8709. {
  8710. name: "Macro+",
  8711. height: math.unit(400, "meters")
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(7, "feet"),
  8720. weight: math.unit(489, "lbs"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/reece-silvermane/front.svg",
  8724. bottom: 0.02,
  8725. extra: 1
  8726. }
  8727. },
  8728. },
  8729. [
  8730. {
  8731. name: "Macro",
  8732. height: math.unit(1.5, "miles"),
  8733. default: true
  8734. },
  8735. ]
  8736. ))
  8737. characterMakers.push(() => makeCharacter(
  8738. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8739. {
  8740. front: {
  8741. height: math.unit(6, "feet"),
  8742. weight: math.unit(78, "kg"),
  8743. name: "Front",
  8744. image: {
  8745. source: "./media/characters/kane/front.svg",
  8746. extra: 978 / 899
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(2.1, "m"),
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(1, "km"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(6, "feet"),
  8767. weight: math.unit(200, "kg"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/tegon/front.svg",
  8771. bottom: 0.01,
  8772. extra: 1
  8773. }
  8774. },
  8775. },
  8776. [
  8777. {
  8778. name: "Micro",
  8779. height: math.unit(1, "inch")
  8780. },
  8781. {
  8782. name: "Normal",
  8783. height: math.unit(6 + 3 / 12, "feet"),
  8784. default: true
  8785. },
  8786. {
  8787. name: "Macro",
  8788. height: math.unit(300, "feet")
  8789. },
  8790. {
  8791. name: "Megamacro",
  8792. height: math.unit(69, "miles")
  8793. },
  8794. ]
  8795. ))
  8796. characterMakers.push(() => makeCharacter(
  8797. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8798. {
  8799. side: {
  8800. height: math.unit(6, "feet"),
  8801. weight: math.unit(2304, "lbs"),
  8802. name: "Side",
  8803. image: {
  8804. source: "./media/characters/arcturax/side.svg",
  8805. extra: 790 / 376,
  8806. bottom: 0.01
  8807. }
  8808. },
  8809. },
  8810. [
  8811. {
  8812. name: "Micro",
  8813. height: math.unit(2, "inch")
  8814. },
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(6, "feet")
  8818. },
  8819. {
  8820. name: "Macro",
  8821. height: math.unit(39, "feet"),
  8822. default: true
  8823. },
  8824. {
  8825. name: "Megamacro",
  8826. height: math.unit(7, "miles")
  8827. },
  8828. ]
  8829. ))
  8830. characterMakers.push(() => makeCharacter(
  8831. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8832. {
  8833. front: {
  8834. height: math.unit(6, "feet"),
  8835. weight: math.unit(50, "lbs"),
  8836. name: "Front",
  8837. image: {
  8838. source: "./media/characters/sentri/front.svg",
  8839. extra: 1750 / 1570,
  8840. bottom: 0.025
  8841. }
  8842. },
  8843. frontAlt: {
  8844. height: math.unit(6, "feet"),
  8845. weight: math.unit(50, "lbs"),
  8846. name: "Front (Alt)",
  8847. image: {
  8848. source: "./media/characters/sentri/front-alt.svg",
  8849. extra: 1750 / 1570,
  8850. bottom: 0.025
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(15, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Macro",
  8862. height: math.unit(2500, "feet")
  8863. }
  8864. ]
  8865. ))
  8866. characterMakers.push(() => makeCharacter(
  8867. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8868. {
  8869. front: {
  8870. height: math.unit(5 + 8 / 12, "feet"),
  8871. weight: math.unit(130, "lbs"),
  8872. name: "Front",
  8873. image: {
  8874. source: "./media/characters/corvin/front.svg",
  8875. extra: 1803 / 1629
  8876. }
  8877. },
  8878. frontShirt: {
  8879. height: math.unit(5 + 8 / 12, "feet"),
  8880. weight: math.unit(130, "lbs"),
  8881. name: "Front (Shirt)",
  8882. image: {
  8883. source: "./media/characters/corvin/front-shirt.svg",
  8884. extra: 1803 / 1629
  8885. }
  8886. },
  8887. frontPoncho: {
  8888. height: math.unit(5 + 8 / 12, "feet"),
  8889. weight: math.unit(130, "lbs"),
  8890. name: "Front (Poncho)",
  8891. image: {
  8892. source: "./media/characters/corvin/front-poncho.svg",
  8893. extra: 1803 / 1629
  8894. }
  8895. },
  8896. side: {
  8897. height: math.unit(5 + 8 / 12, "feet"),
  8898. weight: math.unit(130, "lbs"),
  8899. name: "Side",
  8900. image: {
  8901. source: "./media/characters/corvin/side.svg",
  8902. extra: 1012 / 945
  8903. }
  8904. },
  8905. back: {
  8906. height: math.unit(5 + 8 / 12, "feet"),
  8907. weight: math.unit(130, "lbs"),
  8908. name: "Back",
  8909. image: {
  8910. source: "./media/characters/corvin/back.svg",
  8911. extra: 1803 / 1629
  8912. }
  8913. },
  8914. },
  8915. [
  8916. {
  8917. name: "Micro",
  8918. height: math.unit(3, "inches")
  8919. },
  8920. {
  8921. name: "Normal",
  8922. height: math.unit(5 + 8 / 12, "feet")
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(300, "feet"),
  8927. default: true
  8928. },
  8929. {
  8930. name: "Megamacro",
  8931. height: math.unit(500, "miles")
  8932. }
  8933. ]
  8934. ))
  8935. characterMakers.push(() => makeCharacter(
  8936. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8937. {
  8938. front: {
  8939. height: math.unit(6, "feet"),
  8940. weight: math.unit(135, "lbs"),
  8941. name: "Front",
  8942. image: {
  8943. source: "./media/characters/q/front.svg",
  8944. extra: 854 / 752,
  8945. bottom: 0.005
  8946. }
  8947. },
  8948. back: {
  8949. height: math.unit(6, "feet"),
  8950. weight: math.unit(130, "lbs"),
  8951. name: "Back",
  8952. image: {
  8953. source: "./media/characters/q/back.svg",
  8954. extra: 854 / 752
  8955. }
  8956. },
  8957. },
  8958. [
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(90, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Extra Macro",
  8966. height: math.unit(300, "feet"),
  8967. },
  8968. {
  8969. name: "BIG WALF",
  8970. height: math.unit(750, "feet"),
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(3, "feet"),
  8979. weight: math.unit(28, "lbs"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/citrine/front.svg"
  8983. }
  8984. }
  8985. },
  8986. [
  8987. {
  8988. name: "Normal",
  8989. height: math.unit(3, "feet"),
  8990. default: true
  8991. }
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8996. {
  8997. front: {
  8998. height: math.unit(14, "feet"),
  8999. weight: math.unit(1450, "kg"),
  9000. preyCapacity: math.unit(15, "people"),
  9001. name: "Front",
  9002. image: {
  9003. source: "./media/characters/aura-starwind/front.svg",
  9004. extra: 1440/1327,
  9005. bottom: 11/1451
  9006. }
  9007. },
  9008. side: {
  9009. height: math.unit(14, "feet"),
  9010. weight: math.unit(1450, "kg"),
  9011. preyCapacity: math.unit(15, "people"),
  9012. name: "Side",
  9013. image: {
  9014. source: "./media/characters/aura-starwind/side.svg",
  9015. extra: 1654 / 1497
  9016. }
  9017. },
  9018. taur: {
  9019. height: math.unit(18, "feet"),
  9020. weight: math.unit(5500, "kg"),
  9021. preyCapacity: math.unit(50, "people"),
  9022. name: "Taur",
  9023. image: {
  9024. source: "./media/characters/aura-starwind/taur.svg",
  9025. extra: 1760 / 1650
  9026. }
  9027. },
  9028. feral: {
  9029. height: math.unit(46, "feet"),
  9030. weight: math.unit(25000, "kg"),
  9031. preyCapacity: math.unit(120, "people"),
  9032. name: "Feral",
  9033. image: {
  9034. source: "./media/characters/aura-starwind/feral.svg"
  9035. }
  9036. },
  9037. },
  9038. [
  9039. {
  9040. name: "Normal",
  9041. height: math.unit(14, "feet"),
  9042. default: true
  9043. },
  9044. {
  9045. name: "Macro",
  9046. height: math.unit(50, "meters")
  9047. },
  9048. {
  9049. name: "Megamacro",
  9050. height: math.unit(5000, "meters")
  9051. },
  9052. {
  9053. name: "Gigamacro",
  9054. height: math.unit(100000, "kilometers")
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(2 + 7 / 12, "feet"),
  9063. weight: math.unit(32, "lbs"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/rivet/front.svg",
  9067. extra: 1716 / 1658,
  9068. bottom: 0.03
  9069. }
  9070. },
  9071. foot: {
  9072. height: math.unit(0.551, "feet"),
  9073. name: "Rivet's Foot",
  9074. image: {
  9075. source: "./media/characters/rivet/foot.svg"
  9076. },
  9077. rename: true
  9078. }
  9079. },
  9080. [
  9081. {
  9082. name: "Micro",
  9083. height: math.unit(1.5, "inches"),
  9084. },
  9085. {
  9086. name: "Normal",
  9087. height: math.unit(2 + 7 / 12, "feet"),
  9088. default: true
  9089. },
  9090. {
  9091. name: "Macro",
  9092. height: math.unit(85, "feet")
  9093. },
  9094. {
  9095. name: "Megamacro",
  9096. height: math.unit(2.2, "km")
  9097. }
  9098. ]
  9099. ))
  9100. characterMakers.push(() => makeCharacter(
  9101. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9102. {
  9103. front: {
  9104. height: math.unit(5 + 9 / 12, "feet"),
  9105. weight: math.unit(150, "lbs"),
  9106. name: "Front",
  9107. image: {
  9108. source: "./media/characters/coffee/front.svg",
  9109. extra: 946/880,
  9110. bottom: 66/1012
  9111. }
  9112. },
  9113. foot: {
  9114. height: math.unit(1.29, "feet"),
  9115. name: "Foot",
  9116. image: {
  9117. source: "./media/characters/coffee/foot.svg"
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Micro",
  9124. height: math.unit(2, "inches"),
  9125. },
  9126. {
  9127. name: "Normal",
  9128. height: math.unit(5 + 9 / 12, "feet"),
  9129. default: true
  9130. },
  9131. {
  9132. name: "Macro",
  9133. height: math.unit(800, "feet")
  9134. },
  9135. {
  9136. name: "Megamacro",
  9137. height: math.unit(25, "miles")
  9138. }
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(6, "feet"),
  9146. weight: math.unit(200, "lbs"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/chari-gal/front.svg",
  9150. extra: 1568 / 1385,
  9151. bottom: 0.047
  9152. }
  9153. },
  9154. gigantamax: {
  9155. height: math.unit(6 * 16, "feet"),
  9156. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9157. name: "Gigantamax",
  9158. image: {
  9159. source: "./media/characters/chari-gal/gigantamax.svg",
  9160. extra: 1124 / 888,
  9161. bottom: 0.03
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(5 + 7 / 12, "feet")
  9169. },
  9170. {
  9171. name: "Macro",
  9172. height: math.unit(200, "feet"),
  9173. default: true
  9174. }
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(150, "lbs"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/nova/front.svg",
  9186. extra: 5000 / 4722,
  9187. bottom: 0.02
  9188. }
  9189. }
  9190. },
  9191. [
  9192. {
  9193. name: "Micro-",
  9194. height: math.unit(0.8, "inches")
  9195. },
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(2, "inches"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9205. {
  9206. koboldFront: {
  9207. height: math.unit(3 + 1 / 12, "feet"),
  9208. weight: math.unit(21.7, "lbs"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/argent/kobold-front.svg",
  9212. extra: 1471 / 1331,
  9213. bottom: 100.8 / 1575.5
  9214. },
  9215. form: "kobold",
  9216. default: true
  9217. },
  9218. dragonFront: {
  9219. height: math.unit(75, "inches"),
  9220. name: "Front",
  9221. image: {
  9222. source: "./media/characters/argent/dragon-front.svg",
  9223. extra: 1389/1248,
  9224. bottom: 54/1443
  9225. },
  9226. form: "dragon",
  9227. },
  9228. dragonBack: {
  9229. height: math.unit(75, "inches"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/argent/dragon-back.svg",
  9233. extra: 1399/1271,
  9234. bottom: 23/1422
  9235. },
  9236. form: "dragon",
  9237. },
  9238. dragonDressed: {
  9239. height: math.unit(75, "inches"),
  9240. name: "Dressed",
  9241. image: {
  9242. source: "./media/characters/argent/dragon-dressed.svg",
  9243. extra: 1350/1215,
  9244. bottom: 26/1376
  9245. },
  9246. form: "dragon"
  9247. },
  9248. dragonHead: {
  9249. height: math.unit(23.5, "inches"),
  9250. name: "Head",
  9251. image: {
  9252. source: "./media/characters/argent/dragon-head.svg"
  9253. },
  9254. form: "dragon",
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Micro",
  9260. height: math.unit(2, "inches"),
  9261. form: "kobold",
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(3 + 1 / 12, "feet"),
  9266. form: "kobold",
  9267. default: true
  9268. },
  9269. {
  9270. name: "Macro",
  9271. height: math.unit(120, "feet"),
  9272. form: "kobold",
  9273. },
  9274. {
  9275. name: "Speck",
  9276. height: math.unit(1, "mm"),
  9277. form: "dragon",
  9278. },
  9279. {
  9280. name: "Tiny",
  9281. height: math.unit(1, "cm"),
  9282. form: "dragon",
  9283. },
  9284. {
  9285. name: "Micro",
  9286. height: math.unit(5, "cm"),
  9287. form: "dragon",
  9288. },
  9289. {
  9290. name: "Normal",
  9291. height: math.unit(75, "inches"),
  9292. form: "dragon",
  9293. default: true
  9294. },
  9295. {
  9296. name: "Extra Tall",
  9297. height: math.unit(9, "feet"),
  9298. form: "dragon",
  9299. },
  9300. {
  9301. name: "Inconvenient",
  9302. height: math.unit(5, "meters"),
  9303. form: "dragon",
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(70, "meters"),
  9308. form: "dragon",
  9309. },
  9310. {
  9311. name: "Macro+",
  9312. height: math.unit(250, "meters"),
  9313. form: "dragon",
  9314. },
  9315. {
  9316. name: "Megamacro",
  9317. height: math.unit(20, "km"),
  9318. form: "dragon",
  9319. },
  9320. {
  9321. name: "Mountainous",
  9322. height: math.unit(100, "km"),
  9323. form: "dragon",
  9324. },
  9325. {
  9326. name: "Continental",
  9327. height: math.unit(2, "megameters"),
  9328. form: "dragon",
  9329. },
  9330. {
  9331. name: "Too Big",
  9332. height: math.unit(900, "megameters"),
  9333. form: "dragon",
  9334. },
  9335. ],
  9336. {
  9337. "kobold": {
  9338. name: "Kobold",
  9339. default: true
  9340. },
  9341. "dragon": {
  9342. name: "Dragon",
  9343. },
  9344. }
  9345. ))
  9346. characterMakers.push(() => makeCharacter(
  9347. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9348. {
  9349. lamp: {
  9350. height: math.unit(7 * 1559 / 989, "feet"),
  9351. name: "Magic Lamp",
  9352. image: {
  9353. source: "./media/characters/mira-al-cul/lamp.svg",
  9354. extra: 1617 / 1559
  9355. }
  9356. },
  9357. front: {
  9358. height: math.unit(7, "feet"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/mira-al-cul/front.svg",
  9362. extra: 1044 / 990
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Heavily Restricted",
  9369. height: math.unit(7 * 1559 / 989, "feet")
  9370. },
  9371. {
  9372. name: "Freshly Freed",
  9373. height: math.unit(50 * 1559 / 989, "feet")
  9374. },
  9375. {
  9376. name: "World Encompassing",
  9377. height: math.unit(10000 * 1559 / 989, "miles")
  9378. },
  9379. {
  9380. name: "Galactic",
  9381. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9382. },
  9383. {
  9384. name: "Palmed Universe",
  9385. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Multiversal Matriarch",
  9390. height: math.unit(8.87e10, "yottameters")
  9391. },
  9392. {
  9393. name: "Void Mother",
  9394. height: math.unit(3.14e110, "yottaparsecs")
  9395. },
  9396. {
  9397. name: "Toying with Transcendence",
  9398. height: math.unit(1e307, "meters")
  9399. },
  9400. ]
  9401. ))
  9402. characterMakers.push(() => makeCharacter(
  9403. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9404. {
  9405. front: {
  9406. height: math.unit(17 + 1 / 12, "feet"),
  9407. weight: math.unit(476.2 * 5, "lbs"),
  9408. name: "Front",
  9409. image: {
  9410. source: "./media/characters/kuro-shi-uchū/front.svg",
  9411. extra: 2329 / 1835,
  9412. bottom: 0.02
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Micro",
  9419. height: math.unit(2, "inches")
  9420. },
  9421. {
  9422. name: "Normal",
  9423. height: math.unit(12, "meters")
  9424. },
  9425. {
  9426. name: "Planetary",
  9427. height: math.unit(0.00929, "AU"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Universal",
  9432. height: math.unit(20, "gigaparsecs")
  9433. },
  9434. ]
  9435. ))
  9436. characterMakers.push(() => makeCharacter(
  9437. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9438. {
  9439. front: {
  9440. height: math.unit(5 + 2 / 12, "feet"),
  9441. weight: math.unit(120, "lbs"),
  9442. name: "Front",
  9443. image: {
  9444. source: "./media/characters/katherine/front.svg",
  9445. extra: 2075 / 1969
  9446. }
  9447. },
  9448. dress: {
  9449. height: math.unit(5 + 2 / 12, "feet"),
  9450. weight: math.unit(120, "lbs"),
  9451. name: "Dress",
  9452. image: {
  9453. source: "./media/characters/katherine/dress.svg",
  9454. extra: 2258 / 2064
  9455. }
  9456. },
  9457. },
  9458. [
  9459. {
  9460. name: "Micro",
  9461. height: math.unit(1, "inches"),
  9462. default: true
  9463. },
  9464. {
  9465. name: "Normal",
  9466. height: math.unit(5 + 2 / 12, "feet")
  9467. },
  9468. {
  9469. name: "Macro",
  9470. height: math.unit(100, "meters")
  9471. },
  9472. {
  9473. name: "Megamacro",
  9474. height: math.unit(80, "miles")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(7 + 8 / 12, "feet"),
  9483. weight: math.unit(250, "lbs"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/yevis/front.svg",
  9487. extra: 1938 / 1755
  9488. }
  9489. }
  9490. },
  9491. [
  9492. {
  9493. name: "Mortal",
  9494. height: math.unit(7 + 8 / 12, "feet")
  9495. },
  9496. {
  9497. name: "Battle",
  9498. height: math.unit(25 + 11 / 12, "feet")
  9499. },
  9500. {
  9501. name: "Wrath",
  9502. height: math.unit(1654 + 11 / 12, "feet")
  9503. },
  9504. {
  9505. name: "Planet Destroyer",
  9506. height: math.unit(12000, "miles")
  9507. },
  9508. {
  9509. name: "Galaxy Conqueror",
  9510. height: math.unit(1.45, "zettameters"),
  9511. default: true
  9512. },
  9513. {
  9514. name: "Universal War",
  9515. height: math.unit(184, "gigaparsecs")
  9516. },
  9517. {
  9518. name: "Eternity War",
  9519. height: math.unit(1.98e55, "yottaparsecs")
  9520. },
  9521. ]
  9522. ))
  9523. characterMakers.push(() => makeCharacter(
  9524. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9525. {
  9526. front: {
  9527. height: math.unit(5 + 8 / 12, "feet"),
  9528. weight: math.unit(63, "kg"),
  9529. name: "Front",
  9530. image: {
  9531. source: "./media/characters/xavier/front.svg",
  9532. extra: 944 / 883
  9533. }
  9534. },
  9535. frontStretch: {
  9536. height: math.unit(5 + 8 / 12, "feet"),
  9537. weight: math.unit(63, "kg"),
  9538. name: "Stretching",
  9539. image: {
  9540. source: "./media/characters/xavier/front-stretch.svg",
  9541. extra: 962 / 820
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(5 + 8 / 12, "feet")
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(100, "meters"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "McLargeHuge",
  9557. height: math.unit(10, "miles")
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9563. {
  9564. front: {
  9565. height: math.unit(5 + 5 / 12, "feet"),
  9566. weight: math.unit(150, "lb"),
  9567. name: "Front",
  9568. image: {
  9569. source: "./media/characters/joshii/front.svg",
  9570. extra: 765 / 653,
  9571. bottom: 51 / 816
  9572. }
  9573. },
  9574. foot: {
  9575. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9576. name: "Foot",
  9577. image: {
  9578. source: "./media/characters/joshii/foot.svg"
  9579. }
  9580. },
  9581. },
  9582. [
  9583. {
  9584. name: "Micro",
  9585. height: math.unit(2, "inches")
  9586. },
  9587. {
  9588. name: "Normal",
  9589. height: math.unit(5 + 5 / 12, "feet")
  9590. },
  9591. {
  9592. name: "Macro",
  9593. height: math.unit(785, "feet"),
  9594. default: true
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(24.5, "miles")
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(6, "feet"),
  9607. weight: math.unit(150, "lb"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/goddess-elizabeth/front.svg",
  9611. extra: 1800 / 1525,
  9612. bottom: 0.005
  9613. }
  9614. },
  9615. foot: {
  9616. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9617. name: "Foot",
  9618. image: {
  9619. source: "./media/characters/goddess-elizabeth/foot.svg"
  9620. }
  9621. },
  9622. mouth: {
  9623. height: math.unit(6, "feet"),
  9624. name: "Mouth",
  9625. image: {
  9626. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9627. }
  9628. },
  9629. },
  9630. [
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(12, "feet")
  9634. },
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(80, "miles"),
  9638. default: true
  9639. },
  9640. {
  9641. name: "Macro",
  9642. height: math.unit(15000, "parsecs")
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(5 + 9 / 12, "feet"),
  9651. weight: math.unit(144, "lb"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/kara/front.svg"
  9655. }
  9656. },
  9657. feet: {
  9658. height: math.unit(6 / 6.765, "feet"),
  9659. name: "Kara's Feet",
  9660. rename: true,
  9661. image: {
  9662. source: "./media/characters/kara/feet.svg"
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(5 + 9 / 12, "feet")
  9670. },
  9671. {
  9672. name: "Macro",
  9673. height: math.unit(174, "feet"),
  9674. default: true
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(18, "feet"),
  9683. weight: math.unit(4050, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/tyrone/front.svg",
  9687. extra: 2405 / 2270,
  9688. bottom: 182 / 2587
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Normal",
  9695. height: math.unit(18, "feet"),
  9696. default: true
  9697. },
  9698. {
  9699. name: "Macro",
  9700. height: math.unit(300, "feet")
  9701. },
  9702. {
  9703. name: "Megamacro",
  9704. height: math.unit(15, "km")
  9705. },
  9706. {
  9707. name: "Gigamacro",
  9708. height: math.unit(500, "km")
  9709. },
  9710. {
  9711. name: "Teramacro",
  9712. height: math.unit(0.5, "gigameters")
  9713. },
  9714. {
  9715. name: "Omnimacro",
  9716. height: math.unit(1e252, "yottauniverse")
  9717. },
  9718. ]
  9719. ))
  9720. characterMakers.push(() => makeCharacter(
  9721. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9722. {
  9723. front: {
  9724. height: math.unit(7 + 8 / 12, "feet"),
  9725. weight: math.unit(120, "lb"),
  9726. name: "Front",
  9727. image: {
  9728. source: "./media/characters/danny/front.svg",
  9729. extra: 1490 / 1350
  9730. }
  9731. },
  9732. back: {
  9733. height: math.unit(7 + 8 / 12, "feet"),
  9734. weight: math.unit(120, "lb"),
  9735. name: "Back",
  9736. image: {
  9737. source: "./media/characters/danny/back.svg",
  9738. extra: 1490 / 1350
  9739. }
  9740. },
  9741. },
  9742. [
  9743. {
  9744. name: "Normal",
  9745. height: math.unit(7 + 8 / 12, "feet"),
  9746. default: true
  9747. },
  9748. ]
  9749. ))
  9750. characterMakers.push(() => makeCharacter(
  9751. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9752. {
  9753. front: {
  9754. height: math.unit(3.5, "inches"),
  9755. weight: math.unit(19, "grams"),
  9756. name: "Front",
  9757. image: {
  9758. source: "./media/characters/mallow/front.svg",
  9759. extra: 471 / 431
  9760. }
  9761. },
  9762. back: {
  9763. height: math.unit(3.5, "inches"),
  9764. weight: math.unit(19, "grams"),
  9765. name: "Back",
  9766. image: {
  9767. source: "./media/characters/mallow/back.svg",
  9768. extra: 471 / 431
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(3.5, "inches"),
  9776. default: true
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9782. {
  9783. front: {
  9784. height: math.unit(9, "feet"),
  9785. weight: math.unit(230, "kg"),
  9786. name: "Front",
  9787. image: {
  9788. source: "./media/characters/starry-aqua/front.svg"
  9789. }
  9790. },
  9791. back: {
  9792. height: math.unit(9, "feet"),
  9793. weight: math.unit(230, "kg"),
  9794. name: "Back",
  9795. image: {
  9796. source: "./media/characters/starry-aqua/back.svg"
  9797. }
  9798. },
  9799. hand: {
  9800. height: math.unit(9 * 0.1168, "feet"),
  9801. name: "Hand",
  9802. image: {
  9803. source: "./media/characters/starry-aqua/hand.svg"
  9804. }
  9805. },
  9806. foot: {
  9807. height: math.unit(9 * 0.18, "feet"),
  9808. name: "Foot",
  9809. image: {
  9810. source: "./media/characters/starry-aqua/foot.svg"
  9811. }
  9812. }
  9813. },
  9814. [
  9815. {
  9816. name: "Micro",
  9817. height: math.unit(3, "inches")
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(9, "feet")
  9822. },
  9823. {
  9824. name: "Macro",
  9825. height: math.unit(300, "feet"),
  9826. default: true
  9827. },
  9828. {
  9829. name: "Megamacro",
  9830. height: math.unit(3200, "feet")
  9831. }
  9832. ]
  9833. ))
  9834. characterMakers.push(() => makeCharacter(
  9835. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9836. {
  9837. front: {
  9838. height: math.unit(15, "feet"),
  9839. weight: math.unit(5026, "lb"),
  9840. name: "Front",
  9841. image: {
  9842. source: "./media/characters/luka-towers/front.svg",
  9843. extra: 1269/1133,
  9844. bottom: 51/1320
  9845. }
  9846. },
  9847. },
  9848. [
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(15, "feet"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Minimacro",
  9856. height: math.unit(25, "feet")
  9857. },
  9858. {
  9859. name: "Macro",
  9860. height: math.unit(320, "feet")
  9861. },
  9862. {
  9863. name: "Megamacro",
  9864. height: math.unit(35000, "feet")
  9865. },
  9866. {
  9867. name: "Gigamacro",
  9868. height: math.unit(4000, "miles")
  9869. },
  9870. {
  9871. name: "Teramacro",
  9872. height: math.unit(15000, "miles")
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9878. {
  9879. front: {
  9880. height: math.unit(6, "feet"),
  9881. weight: math.unit(150, "lb"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/natalie-nightring/front.svg",
  9885. extra: 1,
  9886. bottom: 0.06
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Uh Oh",
  9893. height: math.unit(0.1, "mm")
  9894. },
  9895. {
  9896. name: "Small",
  9897. height: math.unit(3, "inches")
  9898. },
  9899. {
  9900. name: "Human Scale",
  9901. height: math.unit(6, "feet")
  9902. },
  9903. {
  9904. name: "Librarian",
  9905. height: math.unit(50, "feet"),
  9906. default: true
  9907. },
  9908. {
  9909. name: "Immense",
  9910. height: math.unit(200, "miles")
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9916. {
  9917. front: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(180, "lbs"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/danni-rosie/front.svg",
  9923. extra: 1260 / 1128,
  9924. bottom: 0.022
  9925. }
  9926. },
  9927. },
  9928. [
  9929. {
  9930. name: "Micro",
  9931. height: math.unit(2, "inches"),
  9932. default: true
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9938. {
  9939. front: {
  9940. height: math.unit(5 + 9 / 12, "feet"),
  9941. weight: math.unit(220, "lb"),
  9942. name: "Front",
  9943. image: {
  9944. source: "./media/characters/samantha-kruse/front.svg",
  9945. extra: (985 / 935),
  9946. bottom: 0.03
  9947. }
  9948. },
  9949. frontUndressed: {
  9950. height: math.unit(5 + 9 / 12, "feet"),
  9951. weight: math.unit(220, "lb"),
  9952. name: "Front (Undressed)",
  9953. image: {
  9954. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9955. extra: (973 / 923),
  9956. bottom: 0.025
  9957. }
  9958. },
  9959. fat: {
  9960. height: math.unit(5 + 9 / 12, "feet"),
  9961. weight: math.unit(900, "lb"),
  9962. name: "Front (Fat)",
  9963. image: {
  9964. source: "./media/characters/samantha-kruse/fat.svg",
  9965. extra: 2688 / 2561
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(5 + 9 / 12, "feet"),
  9973. default: true
  9974. }
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9979. {
  9980. back: {
  9981. height: math.unit(5 + 4 / 12, "feet"),
  9982. weight: math.unit(4963, "lb"),
  9983. name: "Back",
  9984. image: {
  9985. source: "./media/characters/amelia-rosie/back.svg",
  9986. extra: 1113 / 963,
  9987. bottom: 0.01
  9988. }
  9989. },
  9990. },
  9991. [
  9992. {
  9993. name: "Level 0",
  9994. height: math.unit(5 + 4 / 12, "feet")
  9995. },
  9996. {
  9997. name: "Level 1",
  9998. height: math.unit(164597, "feet"),
  9999. default: true
  10000. },
  10001. {
  10002. name: "Level 2",
  10003. height: math.unit(956243, "miles")
  10004. },
  10005. {
  10006. name: "Level 3",
  10007. height: math.unit(29421709423, "miles")
  10008. },
  10009. {
  10010. name: "Level 4",
  10011. height: math.unit(154, "lightyears")
  10012. },
  10013. {
  10014. name: "Level 5",
  10015. height: math.unit(4738272, "lightyears")
  10016. },
  10017. {
  10018. name: "Level 6",
  10019. height: math.unit(145787152896, "lightyears")
  10020. },
  10021. ]
  10022. ))
  10023. characterMakers.push(() => makeCharacter(
  10024. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10025. {
  10026. front: {
  10027. height: math.unit(5 + 11 / 12, "feet"),
  10028. weight: math.unit(65, "kg"),
  10029. name: "Front",
  10030. image: {
  10031. source: "./media/characters/rook-kitara/front.svg",
  10032. extra: 1347 / 1274,
  10033. bottom: 0.005
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Totally Unfair",
  10040. height: math.unit(1.8, "mm")
  10041. },
  10042. {
  10043. name: "Lap Rookie",
  10044. height: math.unit(1.4, "feet")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(5 + 11 / 12, "feet"),
  10049. default: true
  10050. },
  10051. {
  10052. name: "How Did This Happen",
  10053. height: math.unit(80, "miles")
  10054. }
  10055. ]
  10056. ))
  10057. characterMakers.push(() => makeCharacter(
  10058. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10059. {
  10060. front: {
  10061. height: math.unit(7, "feet"),
  10062. weight: math.unit(300, "lb"),
  10063. name: "Front",
  10064. image: {
  10065. source: "./media/characters/pisces/front.svg",
  10066. extra: 2255 / 2115,
  10067. bottom: 0.03
  10068. }
  10069. },
  10070. back: {
  10071. height: math.unit(7, "feet"),
  10072. weight: math.unit(300, "lb"),
  10073. name: "Back",
  10074. image: {
  10075. source: "./media/characters/pisces/back.svg",
  10076. extra: 2146 / 2055,
  10077. bottom: 0.04
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(7, "feet"),
  10085. default: true
  10086. },
  10087. {
  10088. name: "Swimming Pool",
  10089. height: math.unit(12.2, "meters")
  10090. },
  10091. {
  10092. name: "Olympic Swimming Pool",
  10093. height: math.unit(56.3, "meters")
  10094. },
  10095. {
  10096. name: "Lake Superior",
  10097. height: math.unit(93900, "meters")
  10098. },
  10099. {
  10100. name: "Mediterranean Sea",
  10101. height: math.unit(644457, "meters")
  10102. },
  10103. {
  10104. name: "World's Oceans",
  10105. height: math.unit(4567491, "meters")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(2.3, "meters"),
  10114. weight: math.unit(120, "kg"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/zelas/front.svg"
  10118. }
  10119. },
  10120. side: {
  10121. height: math.unit(2.3, "meters"),
  10122. weight: math.unit(120, "kg"),
  10123. name: "Side",
  10124. image: {
  10125. source: "./media/characters/zelas/side.svg"
  10126. }
  10127. },
  10128. back: {
  10129. height: math.unit(2.3, "meters"),
  10130. weight: math.unit(120, "kg"),
  10131. name: "Back",
  10132. image: {
  10133. source: "./media/characters/zelas/back.svg"
  10134. }
  10135. },
  10136. foot: {
  10137. height: math.unit(1.116, "feet"),
  10138. name: "Foot",
  10139. image: {
  10140. source: "./media/characters/zelas/foot.svg"
  10141. }
  10142. },
  10143. },
  10144. [
  10145. {
  10146. name: "Normal",
  10147. height: math.unit(2.3, "meters")
  10148. },
  10149. {
  10150. name: "Macro",
  10151. height: math.unit(30, "meters"),
  10152. default: true
  10153. },
  10154. ]
  10155. ))
  10156. characterMakers.push(() => makeCharacter(
  10157. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10158. {
  10159. front: {
  10160. height: math.unit(1, "inch"),
  10161. weight: math.unit(0.21, "grams"),
  10162. name: "Front",
  10163. image: {
  10164. source: "./media/characters/talbot/front.svg",
  10165. extra: 594 / 544
  10166. }
  10167. },
  10168. },
  10169. [
  10170. {
  10171. name: "Micro",
  10172. height: math.unit(1, "inch"),
  10173. default: true
  10174. },
  10175. ]
  10176. ))
  10177. characterMakers.push(() => makeCharacter(
  10178. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10179. {
  10180. front: {
  10181. height: math.unit(3 + 3 / 12, "feet"),
  10182. weight: math.unit(51.8, "lb"),
  10183. name: "Front",
  10184. image: {
  10185. source: "./media/characters/fliss/front.svg",
  10186. extra: 840 / 640
  10187. }
  10188. },
  10189. },
  10190. [
  10191. {
  10192. name: "Teeny Tiny",
  10193. height: math.unit(1, "mm")
  10194. },
  10195. {
  10196. name: "Small",
  10197. height: math.unit(1, "inch"),
  10198. default: true
  10199. },
  10200. {
  10201. name: "Standard Sylveon",
  10202. height: math.unit(3 + 3 / 12, "feet")
  10203. },
  10204. {
  10205. name: "Large Nuisance",
  10206. height: math.unit(33, "feet")
  10207. },
  10208. {
  10209. name: "City Filler",
  10210. height: math.unit(3000, "feet")
  10211. },
  10212. {
  10213. name: "New Horizon",
  10214. height: math.unit(6000, "miles")
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(5, "cm"),
  10223. weight: math.unit(1.94, "g"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/fleta/front.svg",
  10227. extra: 835 / 803
  10228. }
  10229. },
  10230. back: {
  10231. height: math.unit(5, "cm"),
  10232. weight: math.unit(1.94, "g"),
  10233. name: "Back",
  10234. image: {
  10235. source: "./media/characters/fleta/back.svg",
  10236. extra: 835 / 803
  10237. }
  10238. },
  10239. },
  10240. [
  10241. {
  10242. name: "Micro",
  10243. height: math.unit(5, "cm"),
  10244. default: true
  10245. },
  10246. ]
  10247. ))
  10248. characterMakers.push(() => makeCharacter(
  10249. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10250. {
  10251. front: {
  10252. height: math.unit(6, "feet"),
  10253. weight: math.unit(225, "lb"),
  10254. name: "Front",
  10255. image: {
  10256. source: "./media/characters/dominic/front.svg",
  10257. extra: 1770 / 1620,
  10258. bottom: 0.025
  10259. }
  10260. },
  10261. back: {
  10262. height: math.unit(6, "feet"),
  10263. weight: math.unit(225, "lb"),
  10264. name: "Back",
  10265. image: {
  10266. source: "./media/characters/dominic/back.svg",
  10267. extra: 1745 / 1620,
  10268. bottom: 0.065
  10269. }
  10270. },
  10271. },
  10272. [
  10273. {
  10274. name: "Nano",
  10275. height: math.unit(0.1, "mm")
  10276. },
  10277. {
  10278. name: "Micro-",
  10279. height: math.unit(1, "mm")
  10280. },
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(4, "inches")
  10284. },
  10285. {
  10286. name: "Normal",
  10287. height: math.unit(6 + 4 / 12, "feet"),
  10288. default: true
  10289. },
  10290. {
  10291. name: "Macro",
  10292. height: math.unit(115, "feet")
  10293. },
  10294. {
  10295. name: "Macro+",
  10296. height: math.unit(955, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(8990, "feet")
  10301. },
  10302. {
  10303. name: "Gigmacro",
  10304. height: math.unit(9310, "miles")
  10305. },
  10306. {
  10307. name: "Teramacro",
  10308. height: math.unit(1567005010, "miles")
  10309. },
  10310. {
  10311. name: "Examacro",
  10312. height: math.unit(1425, "parsecs")
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(400, "feet"),
  10321. weight: math.unit(44444444, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/major-colonel/front.svg"
  10325. }
  10326. },
  10327. back: {
  10328. height: math.unit(400, "feet"),
  10329. weight: math.unit(44444444, "lb"),
  10330. name: "Back",
  10331. image: {
  10332. source: "./media/characters/major-colonel/back.svg"
  10333. }
  10334. },
  10335. },
  10336. [
  10337. {
  10338. name: "Macro",
  10339. height: math.unit(400, "feet"),
  10340. default: true
  10341. },
  10342. ]
  10343. ))
  10344. characterMakers.push(() => makeCharacter(
  10345. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10346. {
  10347. catFront: {
  10348. height: math.unit(6, "feet"),
  10349. weight: math.unit(120, "lb"),
  10350. name: "Front (Cat Side)",
  10351. image: {
  10352. source: "./media/characters/axel-lycan/cat-front.svg",
  10353. extra: 430 / 402,
  10354. bottom: 43 / 472.35
  10355. }
  10356. },
  10357. catBack: {
  10358. height: math.unit(6, "feet"),
  10359. weight: math.unit(120, "lb"),
  10360. name: "Back (Cat Side)",
  10361. image: {
  10362. source: "./media/characters/axel-lycan/cat-back.svg",
  10363. extra: 447 / 419,
  10364. bottom: 23.3 / 469
  10365. }
  10366. },
  10367. wolfFront: {
  10368. height: math.unit(6, "feet"),
  10369. weight: math.unit(120, "lb"),
  10370. name: "Front (Wolf Side)",
  10371. image: {
  10372. source: "./media/characters/axel-lycan/wolf-front.svg",
  10373. extra: 485 / 456,
  10374. bottom: 19 / 504
  10375. }
  10376. },
  10377. wolfBack: {
  10378. height: math.unit(6, "feet"),
  10379. weight: math.unit(120, "lb"),
  10380. name: "Back (Wolf Side)",
  10381. image: {
  10382. source: "./media/characters/axel-lycan/wolf-back.svg",
  10383. extra: 475 / 438,
  10384. bottom: 39.2 / 514
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Macro",
  10391. height: math.unit(1, "km"),
  10392. default: true
  10393. },
  10394. ]
  10395. ))
  10396. characterMakers.push(() => makeCharacter(
  10397. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10398. {
  10399. front: {
  10400. height: math.unit(5 + 9 / 12, "feet"),
  10401. weight: math.unit(175, "lb"),
  10402. name: "Front",
  10403. image: {
  10404. source: "./media/characters/vanrel-hyena/front.svg",
  10405. extra: 1086 / 1010,
  10406. bottom: 0.04
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(5 + 9 / 12, "feet"),
  10414. default: true
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(103, "lb"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/abbott-absol/front.svg",
  10427. extra: 2010 / 1842
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Megamicro",
  10434. height: math.unit(0.1, "mm")
  10435. },
  10436. {
  10437. name: "Micro",
  10438. height: math.unit(1, "inch")
  10439. },
  10440. {
  10441. name: "Normal",
  10442. height: math.unit(6, "feet"),
  10443. default: true
  10444. },
  10445. ]
  10446. ))
  10447. characterMakers.push(() => makeCharacter(
  10448. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10449. {
  10450. front: {
  10451. height: math.unit(6, "feet"),
  10452. weight: math.unit(264, "lb"),
  10453. name: "Front",
  10454. image: {
  10455. source: "./media/characters/hector/front.svg",
  10456. extra: 2280 / 2130,
  10457. bottom: 0.07
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(12.25, "foot"),
  10465. default: true
  10466. },
  10467. {
  10468. name: "Macro",
  10469. height: math.unit(160, "feet")
  10470. },
  10471. ]
  10472. ))
  10473. characterMakers.push(() => makeCharacter(
  10474. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10475. {
  10476. front: {
  10477. height: math.unit(6, "feet"),
  10478. weight: math.unit(150, "lb"),
  10479. name: "Front",
  10480. image: {
  10481. source: "./media/characters/sal/front.svg",
  10482. extra: 1846 / 1699,
  10483. bottom: 0.04
  10484. }
  10485. },
  10486. },
  10487. [
  10488. {
  10489. name: "Megamacro",
  10490. height: math.unit(10, "miles"),
  10491. default: true
  10492. },
  10493. ]
  10494. ))
  10495. characterMakers.push(() => makeCharacter(
  10496. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10497. {
  10498. front: {
  10499. height: math.unit(3, "meters"),
  10500. weight: math.unit(450, "kg"),
  10501. name: "front",
  10502. image: {
  10503. source: "./media/characters/ranger/front.svg",
  10504. extra: 2401 / 2243,
  10505. bottom: 0.05
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(3, "meters"),
  10513. default: true
  10514. },
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10519. {
  10520. front: {
  10521. height: math.unit(14, "feet"),
  10522. weight: math.unit(800, "kg"),
  10523. name: "Front",
  10524. image: {
  10525. source: "./media/characters/theresa/front.svg",
  10526. extra: 3575 / 3346,
  10527. bottom: 0.03
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(14, "feet"),
  10535. default: true
  10536. },
  10537. ]
  10538. ))
  10539. characterMakers.push(() => makeCharacter(
  10540. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10541. {
  10542. front: {
  10543. height: math.unit(6, "feet"),
  10544. weight: math.unit(3, "kg"),
  10545. name: "Front",
  10546. image: {
  10547. source: "./media/characters/ine/front.svg",
  10548. extra: 678 / 539,
  10549. bottom: 0.023
  10550. }
  10551. },
  10552. },
  10553. [
  10554. {
  10555. name: "Normal",
  10556. height: math.unit(2.265, "feet"),
  10557. default: true
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(5, "feet"),
  10566. weight: math.unit(30, "kg"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/vial/front.svg",
  10570. extra: 1365 / 1277,
  10571. bottom: 0.04
  10572. }
  10573. },
  10574. },
  10575. [
  10576. {
  10577. name: "Normal",
  10578. height: math.unit(5, "feet"),
  10579. default: true
  10580. },
  10581. ]
  10582. ))
  10583. characterMakers.push(() => makeCharacter(
  10584. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10585. {
  10586. side: {
  10587. height: math.unit(3.4, "meters"),
  10588. weight: math.unit(1000, "lb"),
  10589. name: "Side",
  10590. image: {
  10591. source: "./media/characters/rovoska/side.svg",
  10592. extra: 4403 / 1515
  10593. }
  10594. },
  10595. },
  10596. [
  10597. {
  10598. name: "Normal",
  10599. height: math.unit(3.4, "meters"),
  10600. default: true
  10601. },
  10602. ]
  10603. ))
  10604. characterMakers.push(() => makeCharacter(
  10605. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10606. {
  10607. front: {
  10608. height: math.unit(8, "feet"),
  10609. weight: math.unit(315, "lb"),
  10610. name: "Front",
  10611. image: {
  10612. source: "./media/characters/gunner-rotthbauer/front.svg"
  10613. }
  10614. },
  10615. back: {
  10616. height: math.unit(8, "feet"),
  10617. weight: math.unit(315, "lb"),
  10618. name: "Back",
  10619. image: {
  10620. source: "./media/characters/gunner-rotthbauer/back.svg"
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Micro",
  10627. height: math.unit(3.5, "inches")
  10628. },
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(8, "feet"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Macro",
  10636. height: math.unit(250, "feet")
  10637. },
  10638. {
  10639. name: "Megamacro",
  10640. height: math.unit(1, "AU")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10646. {
  10647. front: {
  10648. height: math.unit(5 + 5 / 12, "feet"),
  10649. weight: math.unit(140, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/allatia/front.svg",
  10653. extra: 1227 / 1180,
  10654. bottom: 0.027
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(5 + 5 / 12, "feet")
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(250, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(8, "miles")
  10671. }
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10676. {
  10677. front: {
  10678. height: math.unit(6, "feet"),
  10679. weight: math.unit(120, "lb"),
  10680. name: "Front",
  10681. image: {
  10682. source: "./media/characters/tene/front.svg",
  10683. extra: 814/750,
  10684. bottom: 36/850
  10685. }
  10686. },
  10687. stomping: {
  10688. height: math.unit(2.025, "meters"),
  10689. weight: math.unit(120, "lb"),
  10690. name: "Stomping",
  10691. image: {
  10692. source: "./media/characters/tene/stomping.svg",
  10693. extra: 885/821,
  10694. bottom: 15/900
  10695. }
  10696. },
  10697. sitting: {
  10698. height: math.unit(1, "meter"),
  10699. weight: math.unit(120, "lb"),
  10700. name: "Sitting",
  10701. image: {
  10702. source: "./media/characters/tene/sitting.svg",
  10703. extra: 396/366,
  10704. bottom: 79/475
  10705. }
  10706. },
  10707. smiling: {
  10708. height: math.unit(1.2, "feet"),
  10709. name: "Smiling",
  10710. image: {
  10711. source: "./media/characters/tene/smiling.svg",
  10712. extra: 1364/1071,
  10713. bottom: 0/1364
  10714. }
  10715. },
  10716. smug: {
  10717. height: math.unit(1.3, "feet"),
  10718. name: "Smug",
  10719. image: {
  10720. source: "./media/characters/tene/smug.svg",
  10721. extra: 1323/1082,
  10722. bottom: 0/1323
  10723. }
  10724. },
  10725. feral: {
  10726. height: math.unit(3.9, "feet"),
  10727. weight: math.unit(250, "lb"),
  10728. name: "Feral",
  10729. image: {
  10730. source: "./media/characters/tene/feral.svg",
  10731. extra: 717 / 458,
  10732. bottom: 0.179
  10733. }
  10734. },
  10735. },
  10736. [
  10737. {
  10738. name: "Normal",
  10739. height: math.unit(6, "feet")
  10740. },
  10741. {
  10742. name: "Macro",
  10743. height: math.unit(300, "feet"),
  10744. default: true
  10745. },
  10746. {
  10747. name: "Megamacro",
  10748. height: math.unit(5, "miles")
  10749. },
  10750. ]
  10751. ))
  10752. characterMakers.push(() => makeCharacter(
  10753. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10754. {
  10755. side: {
  10756. height: math.unit(6, "feet"),
  10757. name: "Side",
  10758. image: {
  10759. source: "./media/characters/evander/side.svg",
  10760. extra: 877 / 477
  10761. }
  10762. },
  10763. },
  10764. [
  10765. {
  10766. name: "Normal",
  10767. height: math.unit(0.83, "meters"),
  10768. default: true
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10774. {
  10775. front: {
  10776. height: math.unit(12, "feet"),
  10777. weight: math.unit(1000, "lb"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10781. extra: 1762 / 1611
  10782. }
  10783. },
  10784. back: {
  10785. height: math.unit(12, "feet"),
  10786. weight: math.unit(1000, "lb"),
  10787. name: "Back",
  10788. image: {
  10789. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10790. extra: 1762 / 1611
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(12, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Kaiju",
  10802. height: math.unit(150, "feet")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/zero-alurus/front.svg"
  10815. }
  10816. },
  10817. back: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(150, "lb"),
  10820. name: "Back",
  10821. image: {
  10822. source: "./media/characters/zero-alurus/back.svg"
  10823. }
  10824. },
  10825. },
  10826. [
  10827. {
  10828. name: "Normal",
  10829. height: math.unit(5 + 10 / 12, "feet")
  10830. },
  10831. {
  10832. name: "Macro",
  10833. height: math.unit(60, "feet"),
  10834. default: true
  10835. },
  10836. {
  10837. name: "Macro+",
  10838. height: math.unit(450, "feet")
  10839. },
  10840. ]
  10841. ))
  10842. characterMakers.push(() => makeCharacter(
  10843. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10844. {
  10845. front: {
  10846. height: math.unit(6, "feet"),
  10847. weight: math.unit(200, "lb"),
  10848. name: "Front",
  10849. image: {
  10850. source: "./media/characters/mega-shi/front.svg",
  10851. extra: 1279 / 1250,
  10852. bottom: 0.02
  10853. }
  10854. },
  10855. back: {
  10856. height: math.unit(6, "feet"),
  10857. weight: math.unit(200, "lb"),
  10858. name: "Back",
  10859. image: {
  10860. source: "./media/characters/mega-shi/back.svg",
  10861. extra: 1279 / 1250,
  10862. bottom: 0.02
  10863. }
  10864. },
  10865. },
  10866. [
  10867. {
  10868. name: "Micro",
  10869. height: math.unit(16 + 6 / 12, "feet")
  10870. },
  10871. {
  10872. name: "Third Dimension",
  10873. height: math.unit(40, "meters")
  10874. },
  10875. {
  10876. name: "Normal",
  10877. height: math.unit(660, "feet"),
  10878. default: true
  10879. },
  10880. {
  10881. name: "Megamacro",
  10882. height: math.unit(10, "miles")
  10883. },
  10884. {
  10885. name: "Planetary Launch",
  10886. height: math.unit(500, "miles")
  10887. },
  10888. {
  10889. name: "Interstellar",
  10890. height: math.unit(1e9, "miles")
  10891. },
  10892. {
  10893. name: "Leaving the Universe",
  10894. height: math.unit(1, "gigaparsec")
  10895. },
  10896. {
  10897. name: "Travelling Universes",
  10898. height: math.unit(30e15, "parsecs")
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(5 + 4/12, "feet"),
  10907. weight: math.unit(120, "lb"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/odyssey/front.svg",
  10911. extra: 1747/1571,
  10912. bottom: 47/1794
  10913. }
  10914. },
  10915. side: {
  10916. height: math.unit(5.1, "feet"),
  10917. weight: math.unit(120, "lb"),
  10918. name: "Side",
  10919. image: {
  10920. source: "./media/characters/odyssey/side.svg",
  10921. extra: 1847/1619,
  10922. bottom: 47/1894
  10923. }
  10924. },
  10925. lounging: {
  10926. height: math.unit(1.464, "feet"),
  10927. weight: math.unit(120, "lb"),
  10928. name: "Lounging",
  10929. image: {
  10930. source: "./media/characters/odyssey/lounging.svg",
  10931. extra: 1235/837,
  10932. bottom: 551/1786
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(5 + 4 / 12, "feet")
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(1, "km")
  10944. },
  10945. {
  10946. name: "Megamacro",
  10947. height: math.unit(3000, "km")
  10948. },
  10949. {
  10950. name: "Gigamacro",
  10951. height: math.unit(1, "AU"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Omniversal",
  10956. height: math.unit(100e14, "lightyears")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(6, "feet"),
  10965. weight: math.unit(300, "lb"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/mekuto/front.svg",
  10969. extra: 921 / 832,
  10970. bottom: 0.03
  10971. }
  10972. },
  10973. hand: {
  10974. height: math.unit(6 / 10.24, "feet"),
  10975. name: "Hand",
  10976. image: {
  10977. source: "./media/characters/mekuto/hand.svg"
  10978. }
  10979. },
  10980. foot: {
  10981. height: math.unit(6 / 5.05, "feet"),
  10982. name: "Foot",
  10983. image: {
  10984. source: "./media/characters/mekuto/foot.svg"
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Minimicro",
  10991. height: math.unit(0.2, "inches")
  10992. },
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(1.5, "inches")
  10996. },
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(5 + 11 / 12, "feet"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Minimacro",
  11004. height: math.unit(17 + 9 / 12, "feet")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(177.5, "feet")
  11009. },
  11010. {
  11011. name: "Megamacro",
  11012. height: math.unit(152, "miles")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11018. {
  11019. front: {
  11020. height: math.unit(6.5, "inches"),
  11021. weight: math.unit(13, "oz"),
  11022. name: "Front",
  11023. image: {
  11024. source: "./media/characters/dafydd-tomos/front.svg",
  11025. extra: 2990 / 2603,
  11026. bottom: 0.03
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Micro",
  11033. height: math.unit(6.5, "inches"),
  11034. default: true
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(150, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/splinter/front.svg",
  11047. extra: 2990 / 2882,
  11048. bottom: 0.04
  11049. }
  11050. },
  11051. back: {
  11052. height: math.unit(6, "feet"),
  11053. weight: math.unit(150, "lb"),
  11054. name: "Back",
  11055. image: {
  11056. source: "./media/characters/splinter/back.svg",
  11057. extra: 2990 / 2882,
  11058. bottom: 0.04
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(6, "feet")
  11066. },
  11067. {
  11068. name: "Macro",
  11069. height: math.unit(230, "meters"),
  11070. default: true
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(4 + 10 / 12, "feet"),
  11079. weight: math.unit(480, "lb"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/snow-gabumon/front.svg",
  11083. extra: 1140 / 963,
  11084. bottom: 0.058
  11085. }
  11086. },
  11087. back: {
  11088. height: math.unit(4 + 10 / 12, "feet"),
  11089. weight: math.unit(480, "lb"),
  11090. name: "Back",
  11091. image: {
  11092. source: "./media/characters/snow-gabumon/back.svg",
  11093. extra: 1115 / 962,
  11094. bottom: 0.041
  11095. }
  11096. },
  11097. frontUndresed: {
  11098. height: math.unit(4 + 10 / 12, "feet"),
  11099. weight: math.unit(480, "lb"),
  11100. name: "Front (Undressed)",
  11101. image: {
  11102. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11103. extra: 1061 / 960,
  11104. bottom: 0.045
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Micro",
  11111. height: math.unit(1, "inch")
  11112. },
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(4 + 10 / 12, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(200, "feet")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(120, "miles")
  11125. },
  11126. {
  11127. name: "Gigamacro",
  11128. height: math.unit(9800, "miles")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(1.7, "meters"),
  11137. weight: math.unit(140, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/moody/front.svg",
  11141. extra: 3226 / 3007,
  11142. bottom: 0.087
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Micro",
  11149. height: math.unit(1, "mm")
  11150. },
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(1.7, "meters"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Macro",
  11158. height: math.unit(80, "meters")
  11159. },
  11160. {
  11161. name: "Macro+",
  11162. height: math.unit(500, "meters")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(150, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/zyas/front.svg",
  11175. extra: 1180 / 1120,
  11176. bottom: 0.045
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Normal",
  11183. height: math.unit(10, "feet"),
  11184. default: true
  11185. },
  11186. {
  11187. name: "Macro",
  11188. height: math.unit(500, "feet")
  11189. },
  11190. {
  11191. name: "Megamacro",
  11192. height: math.unit(5, "miles")
  11193. },
  11194. {
  11195. name: "Teramacro",
  11196. height: math.unit(150000, "miles")
  11197. },
  11198. ]
  11199. ))
  11200. characterMakers.push(() => makeCharacter(
  11201. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11202. {
  11203. front: {
  11204. height: math.unit(6, "feet"),
  11205. weight: math.unit(150, "lb"),
  11206. name: "Front",
  11207. image: {
  11208. source: "./media/characters/cuon/front.svg",
  11209. extra: 1390 / 1320,
  11210. bottom: 0.008
  11211. }
  11212. },
  11213. },
  11214. [
  11215. {
  11216. name: "Micro",
  11217. height: math.unit(3, "inches")
  11218. },
  11219. {
  11220. name: "Normal",
  11221. height: math.unit(18 + 9 / 12, "feet"),
  11222. default: true
  11223. },
  11224. {
  11225. name: "Macro",
  11226. height: math.unit(360, "feet")
  11227. },
  11228. {
  11229. name: "Megamacro",
  11230. height: math.unit(360, "miles")
  11231. },
  11232. ]
  11233. ))
  11234. characterMakers.push(() => makeCharacter(
  11235. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11236. {
  11237. front: {
  11238. height: math.unit(2.4, "meters"),
  11239. weight: math.unit(70, "kg"),
  11240. name: "Front",
  11241. image: {
  11242. source: "./media/characters/nyanuxk/front.svg",
  11243. extra: 1172 / 1084,
  11244. bottom: 0.065
  11245. }
  11246. },
  11247. side: {
  11248. height: math.unit(2.4, "meters"),
  11249. weight: math.unit(70, "kg"),
  11250. name: "Side",
  11251. image: {
  11252. source: "./media/characters/nyanuxk/side.svg",
  11253. extra: 1190 / 1132,
  11254. bottom: 0.007
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(2.4, "meters"),
  11259. weight: math.unit(70, "kg"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/nyanuxk/back.svg",
  11263. extra: 1200 / 1141,
  11264. bottom: 0.015
  11265. }
  11266. },
  11267. foot: {
  11268. height: math.unit(0.52, "meters"),
  11269. name: "Foot",
  11270. image: {
  11271. source: "./media/characters/nyanuxk/foot.svg"
  11272. }
  11273. },
  11274. },
  11275. [
  11276. {
  11277. name: "Micro",
  11278. height: math.unit(2, "cm")
  11279. },
  11280. {
  11281. name: "Normal",
  11282. height: math.unit(2.4, "meters"),
  11283. default: true
  11284. },
  11285. {
  11286. name: "Smaller Macro",
  11287. height: math.unit(120, "meters")
  11288. },
  11289. {
  11290. name: "Bigger Macro",
  11291. height: math.unit(1.2, "km")
  11292. },
  11293. {
  11294. name: "Megamacro",
  11295. height: math.unit(15, "kilometers")
  11296. },
  11297. {
  11298. name: "Gigamacro",
  11299. height: math.unit(2000, "km")
  11300. },
  11301. {
  11302. name: "Teramacro",
  11303. height: math.unit(500000, "km")
  11304. },
  11305. ]
  11306. ))
  11307. characterMakers.push(() => makeCharacter(
  11308. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11309. {
  11310. side: {
  11311. height: math.unit(6, "feet"),
  11312. name: "Side",
  11313. image: {
  11314. source: "./media/characters/ailbhe/side.svg",
  11315. extra: 757 / 464,
  11316. bottom: 0.041
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Normal",
  11323. height: math.unit(1.07, "meters"),
  11324. default: true
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(120, "kg"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/zevulfius/front.svg",
  11337. extra: 965 / 903
  11338. }
  11339. },
  11340. side: {
  11341. height: math.unit(6, "feet"),
  11342. weight: math.unit(120, "kg"),
  11343. name: "Side",
  11344. image: {
  11345. source: "./media/characters/zevulfius/side.svg",
  11346. extra: 939 / 900
  11347. }
  11348. },
  11349. back: {
  11350. height: math.unit(6, "feet"),
  11351. weight: math.unit(120, "kg"),
  11352. name: "Back",
  11353. image: {
  11354. source: "./media/characters/zevulfius/back.svg",
  11355. extra: 918 / 854,
  11356. bottom: 0.005
  11357. }
  11358. },
  11359. foot: {
  11360. height: math.unit(6 / 3.72, "feet"),
  11361. name: "Foot",
  11362. image: {
  11363. source: "./media/characters/zevulfius/foot.svg"
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(750, "meters")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(20, "km"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Gigamacro",
  11379. height: math.unit(2000, "km")
  11380. },
  11381. {
  11382. name: "Teramacro",
  11383. height: math.unit(250000, "km")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(100, "feet"),
  11392. weight: math.unit(350, "kg"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/rikes/front.svg",
  11396. extra: 1565 / 1483,
  11397. bottom: 0.017
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(100, "feet"),
  11405. default: true
  11406. },
  11407. ]
  11408. ))
  11409. characterMakers.push(() => makeCharacter(
  11410. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11411. {
  11412. front: {
  11413. height: math.unit(8, "feet"),
  11414. weight: math.unit(356, "lb"),
  11415. name: "Front",
  11416. image: {
  11417. source: "./media/characters/adam-silver-mane/front.svg",
  11418. extra: 1036/937,
  11419. bottom: 63/1099
  11420. }
  11421. },
  11422. side: {
  11423. height: math.unit(8, "feet"),
  11424. weight: math.unit(356, "lb"),
  11425. name: "Side",
  11426. image: {
  11427. source: "./media/characters/adam-silver-mane/side.svg",
  11428. extra: 997/901,
  11429. bottom: 59/1056
  11430. }
  11431. },
  11432. frontNsfw: {
  11433. height: math.unit(8, "feet"),
  11434. weight: math.unit(356, "lb"),
  11435. name: "Front (NSFW)",
  11436. image: {
  11437. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11438. extra: 1036/937,
  11439. bottom: 63/1099
  11440. }
  11441. },
  11442. sideNsfw: {
  11443. height: math.unit(8, "feet"),
  11444. weight: math.unit(356, "lb"),
  11445. name: "Side (NSFW)",
  11446. image: {
  11447. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11448. extra: 997/901,
  11449. bottom: 59/1056
  11450. }
  11451. },
  11452. dick: {
  11453. height: math.unit(2.1, "feet"),
  11454. name: "Dick",
  11455. image: {
  11456. source: "./media/characters/adam-silver-mane/dick.svg"
  11457. }
  11458. },
  11459. taur: {
  11460. height: math.unit(16, "feet"),
  11461. weight: math.unit(1500, "kg"),
  11462. name: "Taur",
  11463. image: {
  11464. source: "./media/characters/adam-silver-mane/taur.svg",
  11465. extra: 1713 / 1571,
  11466. bottom: 0.01
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(8, "feet")
  11474. },
  11475. {
  11476. name: "Minimacro",
  11477. height: math.unit(80, "feet")
  11478. },
  11479. {
  11480. name: "MDA",
  11481. height: math.unit(80, "meters")
  11482. },
  11483. {
  11484. name: "Macro",
  11485. height: math.unit(800, "feet"),
  11486. default: true
  11487. },
  11488. {
  11489. name: "Megamacro",
  11490. height: math.unit(8000, "feet")
  11491. },
  11492. {
  11493. name: "Gigamacro",
  11494. height: math.unit(800, "miles")
  11495. },
  11496. {
  11497. name: "Teramacro",
  11498. height: math.unit(80000, "miles")
  11499. },
  11500. {
  11501. name: "Celestial",
  11502. height: math.unit(8e6, "miles")
  11503. },
  11504. {
  11505. name: "Star Dragon",
  11506. height: math.unit(800000, "parsecs")
  11507. },
  11508. {
  11509. name: "Godly",
  11510. height: math.unit(800, "teraparsecs")
  11511. },
  11512. ]
  11513. ))
  11514. characterMakers.push(() => makeCharacter(
  11515. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11516. {
  11517. front: {
  11518. height: math.unit(6, "feet"),
  11519. weight: math.unit(150, "lb"),
  11520. name: "Front",
  11521. image: {
  11522. source: "./media/characters/ky'owin/front.svg",
  11523. extra: 3888 / 3068,
  11524. bottom: 0.015
  11525. }
  11526. },
  11527. },
  11528. [
  11529. {
  11530. name: "Normal",
  11531. height: math.unit(6 + 8 / 12, "feet")
  11532. },
  11533. {
  11534. name: "Large",
  11535. height: math.unit(68, "feet")
  11536. },
  11537. {
  11538. name: "Macro",
  11539. height: math.unit(132, "feet")
  11540. },
  11541. {
  11542. name: "Macro+",
  11543. height: math.unit(340, "feet")
  11544. },
  11545. {
  11546. name: "Macro++",
  11547. height: math.unit(680, "feet"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Megamacro",
  11552. height: math.unit(1, "mile")
  11553. },
  11554. {
  11555. name: "Megamacro+",
  11556. height: math.unit(10, "miles")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(4, "feet"),
  11565. weight: math.unit(50, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/mal/front.svg",
  11569. extra: 785 / 724,
  11570. bottom: 0.07
  11571. }
  11572. },
  11573. },
  11574. [
  11575. {
  11576. name: "Micro",
  11577. height: math.unit(4, "inches")
  11578. },
  11579. {
  11580. name: "Normal",
  11581. height: math.unit(4, "feet"),
  11582. default: true
  11583. },
  11584. {
  11585. name: "Macro",
  11586. height: math.unit(200, "feet")
  11587. },
  11588. ]
  11589. ))
  11590. characterMakers.push(() => makeCharacter(
  11591. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11592. {
  11593. front: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Front",
  11597. image: {
  11598. source: "./media/characters/jordan-deware/front.svg",
  11599. extra: 1191 / 1012
  11600. }
  11601. },
  11602. },
  11603. [
  11604. {
  11605. name: "Nano",
  11606. height: math.unit(0.01, "mm")
  11607. },
  11608. {
  11609. name: "Minimicro",
  11610. height: math.unit(1, "mm")
  11611. },
  11612. {
  11613. name: "Micro",
  11614. height: math.unit(0.5, "inches")
  11615. },
  11616. {
  11617. name: "Normal",
  11618. height: math.unit(4, "feet"),
  11619. default: true
  11620. },
  11621. {
  11622. name: "Minimacro",
  11623. height: math.unit(40, "meters")
  11624. },
  11625. {
  11626. name: "Small Macro",
  11627. height: math.unit(400, "meters")
  11628. },
  11629. {
  11630. name: "Macro",
  11631. height: math.unit(4, "miles")
  11632. },
  11633. {
  11634. name: "Megamacro",
  11635. height: math.unit(40, "miles")
  11636. },
  11637. {
  11638. name: "Megamacro+",
  11639. height: math.unit(400, "miles")
  11640. },
  11641. {
  11642. name: "Gigamacro",
  11643. height: math.unit(400000, "miles")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11649. {
  11650. side: {
  11651. height: math.unit(6, "feet"),
  11652. weight: math.unit(150, "lb"),
  11653. name: "Side",
  11654. image: {
  11655. source: "./media/characters/kimiko/side.svg",
  11656. extra: 600 / 358
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(15, "feet"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(220, "feet")
  11669. },
  11670. {
  11671. name: "Macro+",
  11672. height: math.unit(1450, "feet")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(11500, "feet")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(9500, "miles")
  11681. },
  11682. {
  11683. name: "Teramacro",
  11684. height: math.unit(2208005005, "miles")
  11685. },
  11686. {
  11687. name: "Examacro",
  11688. height: math.unit(2750, "parsecs")
  11689. },
  11690. {
  11691. name: "Zettamacro",
  11692. height: math.unit(101500, "parsecs")
  11693. },
  11694. ]
  11695. ))
  11696. characterMakers.push(() => makeCharacter(
  11697. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11698. {
  11699. front: {
  11700. height: math.unit(6, "feet"),
  11701. weight: math.unit(70, "kg"),
  11702. name: "Front",
  11703. image: {
  11704. source: "./media/characters/andrew-sleepy/front.svg"
  11705. }
  11706. },
  11707. side: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(70, "kg"),
  11710. name: "Side",
  11711. image: {
  11712. source: "./media/characters/andrew-sleepy/side.svg"
  11713. }
  11714. },
  11715. },
  11716. [
  11717. {
  11718. name: "Micro",
  11719. height: math.unit(1, "mm"),
  11720. default: true
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11726. {
  11727. front: {
  11728. height: math.unit(6, "feet"),
  11729. weight: math.unit(150, "lb"),
  11730. name: "Front",
  11731. image: {
  11732. source: "./media/characters/judio/front.svg",
  11733. extra: 1258 / 1110
  11734. }
  11735. },
  11736. },
  11737. [
  11738. {
  11739. name: "Normal",
  11740. height: math.unit(5 + 6 / 12, "feet")
  11741. },
  11742. {
  11743. name: "Macro",
  11744. height: math.unit(1000, "feet"),
  11745. default: true
  11746. },
  11747. {
  11748. name: "Megamacro",
  11749. height: math.unit(10, "miles")
  11750. },
  11751. ]
  11752. ))
  11753. characterMakers.push(() => makeCharacter(
  11754. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11755. {
  11756. frontDressed: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(68, "kg"),
  11759. name: "Front (Dressed)",
  11760. image: {
  11761. source: "./media/characters/nomaxice/front-dressed.svg",
  11762. extra: 1137/824,
  11763. bottom: 74/1211
  11764. }
  11765. },
  11766. frontShorts: {
  11767. height: math.unit(6, "feet"),
  11768. weight: math.unit(68, "kg"),
  11769. name: "Front (Shorts)",
  11770. image: {
  11771. source: "./media/characters/nomaxice/front-shorts.svg",
  11772. extra: 1137/824,
  11773. bottom: 74/1211
  11774. }
  11775. },
  11776. back: {
  11777. height: math.unit(6, "feet"),
  11778. weight: math.unit(68, "kg"),
  11779. name: "Back",
  11780. image: {
  11781. source: "./media/characters/nomaxice/back.svg",
  11782. extra: 822/786,
  11783. bottom: 39/861
  11784. }
  11785. },
  11786. hand: {
  11787. height: math.unit(0.565, "feet"),
  11788. name: "Hand",
  11789. image: {
  11790. source: "./media/characters/nomaxice/hand.svg"
  11791. }
  11792. },
  11793. foot: {
  11794. height: math.unit(1, "feet"),
  11795. name: "Foot",
  11796. image: {
  11797. source: "./media/characters/nomaxice/foot.svg"
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(8, "cm")
  11805. },
  11806. {
  11807. name: "Norm",
  11808. height: math.unit(1.82, "m")
  11809. },
  11810. {
  11811. name: "Norm+",
  11812. height: math.unit(8.8, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Big",
  11817. height: math.unit(8, "meters")
  11818. },
  11819. {
  11820. name: "Macro",
  11821. height: math.unit(18, "meters")
  11822. },
  11823. {
  11824. name: "Macro+",
  11825. height: math.unit(88, "meters")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(12, "feet"),
  11834. weight: math.unit(1.5, "tons"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/dydros/front.svg",
  11838. extra: 863 / 800,
  11839. bottom: 0.015
  11840. }
  11841. },
  11842. back: {
  11843. height: math.unit(12, "feet"),
  11844. weight: math.unit(1.5, "tons"),
  11845. name: "Back",
  11846. image: {
  11847. source: "./media/characters/dydros/back.svg",
  11848. extra: 900 / 843,
  11849. bottom: 0.005
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Normal",
  11856. height: math.unit(12, "feet"),
  11857. default: true
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11863. {
  11864. front: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(100, "kg"),
  11867. name: "Front",
  11868. image: {
  11869. source: "./media/characters/riggi/front.svg",
  11870. extra: 5787 / 5303
  11871. }
  11872. },
  11873. hyper: {
  11874. height: math.unit(6 * 5 / 3, "feet"),
  11875. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11876. name: "Hyper",
  11877. image: {
  11878. source: "./media/characters/riggi/hyper.svg",
  11879. extra: 3595 / 3485
  11880. }
  11881. },
  11882. },
  11883. [
  11884. {
  11885. name: "Small Macro",
  11886. height: math.unit(50, "feet")
  11887. },
  11888. {
  11889. name: "Default",
  11890. height: math.unit(200, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Loom",
  11895. height: math.unit(10000, "feet")
  11896. },
  11897. {
  11898. name: "Cruising Altitude",
  11899. height: math.unit(30000, "feet")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(100, "miles")
  11904. },
  11905. {
  11906. name: "Continent Sized",
  11907. height: math.unit(2800, "miles")
  11908. },
  11909. {
  11910. name: "Earth Sized",
  11911. height: math.unit(8000, "miles")
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(250, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/alexi/front.svg",
  11924. extra: 3483 / 3291,
  11925. bottom: 0.04
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(6, "feet"),
  11930. weight: math.unit(250, "lb"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/alexi/back.svg",
  11934. extra: 3533 / 3356,
  11935. bottom: 0.021
  11936. }
  11937. },
  11938. frontTransforming: {
  11939. height: math.unit(8.58, "feet"),
  11940. weight: math.unit(1300, "lb"),
  11941. name: "Transforming",
  11942. image: {
  11943. source: "./media/characters/alexi/front-transforming.svg",
  11944. extra: 437 / 409,
  11945. bottom: 19 / 458.66
  11946. }
  11947. },
  11948. frontTransformed: {
  11949. height: math.unit(12.5, "feet"),
  11950. weight: math.unit(4000, "lb"),
  11951. name: "Transformed",
  11952. image: {
  11953. source: "./media/characters/alexi/front-transformed.svg",
  11954. extra: 639 / 614,
  11955. bottom: 30.55 / 671
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(14, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Minimacro",
  11967. height: math.unit(30, "meters")
  11968. },
  11969. {
  11970. name: "Macro",
  11971. height: math.unit(500, "meters")
  11972. },
  11973. {
  11974. name: "Megamacro",
  11975. height: math.unit(9000, "km")
  11976. },
  11977. {
  11978. name: "Teramacro",
  11979. height: math.unit(384000, "km")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(6, "feet"),
  11988. weight: math.unit(150, "lb"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/kayroo/front.svg",
  11992. extra: 1153 / 1038,
  11993. bottom: 0.06
  11994. }
  11995. },
  11996. foot: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Foot",
  12000. image: {
  12001. source: "./media/characters/kayroo/foot.svg"
  12002. }
  12003. },
  12004. },
  12005. [
  12006. {
  12007. name: "Normal",
  12008. height: math.unit(8, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Minimacro",
  12013. height: math.unit(250, "feet")
  12014. },
  12015. {
  12016. name: "Macro",
  12017. height: math.unit(2800, "feet")
  12018. },
  12019. {
  12020. name: "Megamacro",
  12021. height: math.unit(5200, "feet")
  12022. },
  12023. {
  12024. name: "Gigamacro",
  12025. height: math.unit(27000, "feet")
  12026. },
  12027. {
  12028. name: "Omega",
  12029. height: math.unit(45000, "feet")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(18, "feet"),
  12038. weight: math.unit(5800, "lb"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/rhys/front.svg",
  12042. extra: 3386 / 3090,
  12043. bottom: 0.07
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Normal",
  12050. height: math.unit(18, "feet"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Working Size",
  12055. height: math.unit(200, "feet")
  12056. },
  12057. {
  12058. name: "Demolition Size",
  12059. height: math.unit(2000, "feet")
  12060. },
  12061. {
  12062. name: "Maximum Licensed Size",
  12063. height: math.unit(5, "miles")
  12064. },
  12065. {
  12066. name: "Maximum Observed Size",
  12067. height: math.unit(10, "yottameters")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(6, "feet"),
  12076. weight: math.unit(250, "lb"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/toto/front.svg",
  12080. extra: 527 / 479,
  12081. bottom: 0.05
  12082. }
  12083. },
  12084. },
  12085. [
  12086. {
  12087. name: "Micro",
  12088. height: math.unit(3, "feet")
  12089. },
  12090. {
  12091. name: "Normal",
  12092. height: math.unit(10, "feet")
  12093. },
  12094. {
  12095. name: "Macro",
  12096. height: math.unit(150, "feet"),
  12097. default: true
  12098. },
  12099. {
  12100. name: "Megamacro",
  12101. height: math.unit(1200, "feet")
  12102. },
  12103. ]
  12104. ))
  12105. characterMakers.push(() => makeCharacter(
  12106. { name: "King", species: ["lion"], tags: ["anthro"] },
  12107. {
  12108. back: {
  12109. height: math.unit(6, "feet"),
  12110. weight: math.unit(150, "lb"),
  12111. name: "Back",
  12112. image: {
  12113. source: "./media/characters/king/back.svg"
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Micro",
  12120. height: math.unit(2, "inches")
  12121. },
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(8, "feet")
  12125. },
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(200, "feet"),
  12129. default: true
  12130. },
  12131. {
  12132. name: "Megamacro",
  12133. height: math.unit(50, "miles")
  12134. },
  12135. ]
  12136. ))
  12137. characterMakers.push(() => makeCharacter(
  12138. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12139. {
  12140. front: {
  12141. height: math.unit(11, "feet"),
  12142. weight: math.unit(1400, "lb"),
  12143. name: "Front",
  12144. image: {
  12145. source: "./media/characters/cordite/front.svg",
  12146. extra: 1919/1827,
  12147. bottom: 40/1959
  12148. }
  12149. },
  12150. side: {
  12151. height: math.unit(11, "feet"),
  12152. weight: math.unit(1400, "lb"),
  12153. name: "Side",
  12154. image: {
  12155. source: "./media/characters/cordite/side.svg",
  12156. extra: 1908/1793,
  12157. bottom: 38/1946
  12158. }
  12159. },
  12160. back: {
  12161. height: math.unit(11, "feet"),
  12162. weight: math.unit(1400, "lb"),
  12163. name: "Back",
  12164. image: {
  12165. source: "./media/characters/cordite/back.svg",
  12166. extra: 1938/1837,
  12167. bottom: 10/1948
  12168. }
  12169. },
  12170. feral: {
  12171. height: math.unit(2, "feet"),
  12172. weight: math.unit(90, "lb"),
  12173. name: "Feral",
  12174. image: {
  12175. source: "./media/characters/cordite/feral.svg",
  12176. extra: 1260 / 755,
  12177. bottom: 0.05
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(11, "feet"),
  12185. default: true
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12191. {
  12192. front: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Front",
  12196. image: {
  12197. source: "./media/characters/pianostrong/front.svg",
  12198. extra: 6577 / 6254,
  12199. bottom: 0.02
  12200. }
  12201. },
  12202. side: {
  12203. height: math.unit(6, "feet"),
  12204. weight: math.unit(150, "lb"),
  12205. name: "Side",
  12206. image: {
  12207. source: "./media/characters/pianostrong/side.svg",
  12208. extra: 6106 / 5730
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(150, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/pianostrong/back.svg",
  12217. extra: 6085 / 5733,
  12218. bottom: 0.01
  12219. }
  12220. },
  12221. },
  12222. [
  12223. {
  12224. name: "Macro",
  12225. height: math.unit(100, "feet")
  12226. },
  12227. {
  12228. name: "Macro+",
  12229. height: math.unit(300, "feet"),
  12230. default: true
  12231. },
  12232. {
  12233. name: "Macro++",
  12234. height: math.unit(1000, "feet")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(150, "lb"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/kona/front.svg",
  12247. extra: 2960 / 2629,
  12248. bottom: 0.005
  12249. }
  12250. },
  12251. },
  12252. [
  12253. {
  12254. name: "Normal",
  12255. height: math.unit(11 + 8 / 12, "feet")
  12256. },
  12257. {
  12258. name: "Macro",
  12259. height: math.unit(850, "feet"),
  12260. default: true
  12261. },
  12262. {
  12263. name: "Macro+",
  12264. height: math.unit(1.5, "km"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Megamacro",
  12269. height: math.unit(80, "miles")
  12270. },
  12271. {
  12272. name: "Gigamacro",
  12273. height: math.unit(3500, "miles")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12279. {
  12280. side: {
  12281. height: math.unit(1.9, "meters"),
  12282. weight: math.unit(326, "kg"),
  12283. name: "Side",
  12284. image: {
  12285. source: "./media/characters/levi/side.svg",
  12286. extra: 1704 / 1334,
  12287. bottom: 0.02
  12288. }
  12289. },
  12290. },
  12291. [
  12292. {
  12293. name: "Normal",
  12294. height: math.unit(1.9, "meters"),
  12295. default: true
  12296. },
  12297. {
  12298. name: "Macro",
  12299. height: math.unit(20, "meters")
  12300. },
  12301. {
  12302. name: "Macro+",
  12303. height: math.unit(200, "meters")
  12304. },
  12305. {
  12306. name: "Megamacro",
  12307. height: math.unit(2, "km")
  12308. },
  12309. {
  12310. name: "Megamacro+",
  12311. height: math.unit(20, "km")
  12312. },
  12313. {
  12314. name: "Gigamacro",
  12315. height: math.unit(2500, "km")
  12316. },
  12317. {
  12318. name: "Gigamacro+",
  12319. height: math.unit(120000, "km")
  12320. },
  12321. {
  12322. name: "Teramacro",
  12323. height: math.unit(7.77e6, "km")
  12324. },
  12325. ]
  12326. ))
  12327. characterMakers.push(() => makeCharacter(
  12328. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12329. {
  12330. front: {
  12331. height: math.unit(6 + 4/12, "feet"),
  12332. weight: math.unit(190, "lb"),
  12333. name: "Front",
  12334. image: {
  12335. source: "./media/characters/bmc/front.svg",
  12336. extra: 1626/1472,
  12337. bottom: 79/1705
  12338. }
  12339. },
  12340. back: {
  12341. height: math.unit(6 + 4/12, "feet"),
  12342. weight: math.unit(190, "lb"),
  12343. name: "Back",
  12344. image: {
  12345. source: "./media/characters/bmc/back.svg",
  12346. extra: 1640/1479,
  12347. bottom: 45/1685
  12348. }
  12349. },
  12350. frontArmor: {
  12351. height: math.unit(6 + 4/12, "feet"),
  12352. weight: math.unit(190, "lb"),
  12353. name: "Front-armor",
  12354. image: {
  12355. source: "./media/characters/bmc/front-armor.svg",
  12356. extra: 1538/1468,
  12357. bottom: 79/1617
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Human-sized",
  12364. height: math.unit(6 + 4 / 12, "feet")
  12365. },
  12366. {
  12367. name: "Interactive Size",
  12368. height: math.unit(25, "feet")
  12369. },
  12370. {
  12371. name: "Small",
  12372. height: math.unit(250, "feet")
  12373. },
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(1250, "feet"),
  12377. default: true
  12378. },
  12379. {
  12380. name: "Good Day",
  12381. height: math.unit(88, "miles")
  12382. },
  12383. {
  12384. name: "Largest Measured Size",
  12385. height: math.unit(105.960, "galaxies")
  12386. },
  12387. ]
  12388. ))
  12389. characterMakers.push(() => makeCharacter(
  12390. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12391. {
  12392. front: {
  12393. height: math.unit(20, "feet"),
  12394. weight: math.unit(2016, "kg"),
  12395. name: "Front",
  12396. image: {
  12397. source: "./media/characters/sven-the-kaiju/front.svg",
  12398. extra: 1277/1250,
  12399. bottom: 35/1312
  12400. }
  12401. },
  12402. mouth: {
  12403. height: math.unit(1.85, "feet"),
  12404. name: "Mouth",
  12405. image: {
  12406. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12407. }
  12408. },
  12409. },
  12410. [
  12411. {
  12412. name: "Fairy",
  12413. height: math.unit(6, "inches")
  12414. },
  12415. {
  12416. name: "Normal",
  12417. height: math.unit(20, "feet"),
  12418. default: true
  12419. },
  12420. {
  12421. name: "Rampage",
  12422. height: math.unit(200, "feet")
  12423. },
  12424. {
  12425. name: "Archfey Forest Guardian",
  12426. height: math.unit(1, "mile")
  12427. },
  12428. ]
  12429. ))
  12430. characterMakers.push(() => makeCharacter(
  12431. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12432. {
  12433. front: {
  12434. height: math.unit(4, "meters"),
  12435. weight: math.unit(2, "tons"),
  12436. name: "Front",
  12437. image: {
  12438. source: "./media/characters/marik/front.svg",
  12439. extra: 1057 / 1003,
  12440. bottom: 0.08
  12441. }
  12442. },
  12443. },
  12444. [
  12445. {
  12446. name: "Normal",
  12447. height: math.unit(4, "meters"),
  12448. default: true
  12449. },
  12450. {
  12451. name: "Macro",
  12452. height: math.unit(20, "meters")
  12453. },
  12454. {
  12455. name: "Megamacro",
  12456. height: math.unit(50, "km")
  12457. },
  12458. {
  12459. name: "Gigamacro",
  12460. height: math.unit(100, "km")
  12461. },
  12462. {
  12463. name: "Alpha Macro",
  12464. height: math.unit(7.88e7, "yottameters")
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(6, "feet"),
  12473. weight: math.unit(110, "lb"),
  12474. name: "Front",
  12475. image: {
  12476. source: "./media/characters/mel/front.svg",
  12477. extra: 736 / 617,
  12478. bottom: 0.017
  12479. }
  12480. },
  12481. },
  12482. [
  12483. {
  12484. name: "Pico",
  12485. height: math.unit(3, "pm")
  12486. },
  12487. {
  12488. name: "Nano",
  12489. height: math.unit(3, "nm")
  12490. },
  12491. {
  12492. name: "Micro",
  12493. height: math.unit(0.3, "mm"),
  12494. default: true
  12495. },
  12496. {
  12497. name: "Micro+",
  12498. height: math.unit(3, "mm")
  12499. },
  12500. {
  12501. name: "Normal",
  12502. height: math.unit(5 + 10.5 / 12, "feet")
  12503. },
  12504. ]
  12505. ))
  12506. characterMakers.push(() => makeCharacter(
  12507. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12508. {
  12509. kaiju: {
  12510. height: math.unit(1.75, "meters"),
  12511. weight: math.unit(55, "kg"),
  12512. name: "Kaiju",
  12513. image: {
  12514. source: "./media/characters/lykonous/kaiju.svg",
  12515. extra: 1055 / 946,
  12516. bottom: 0.135
  12517. }
  12518. },
  12519. },
  12520. [
  12521. {
  12522. name: "Normal",
  12523. height: math.unit(2.5, "meters"),
  12524. default: true
  12525. },
  12526. {
  12527. name: "Kaiju Dragon",
  12528. height: math.unit(60, "meters")
  12529. },
  12530. {
  12531. name: "Mega Kaiju",
  12532. height: math.unit(120, "km")
  12533. },
  12534. {
  12535. name: "Giga Kaiju",
  12536. height: math.unit(200, "megameters")
  12537. },
  12538. {
  12539. name: "Terra Kaiju",
  12540. height: math.unit(400, "gigameters")
  12541. },
  12542. {
  12543. name: "Kaiju Dragon God",
  12544. height: math.unit(13000, "exaparsecs")
  12545. },
  12546. ]
  12547. ))
  12548. characterMakers.push(() => makeCharacter(
  12549. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12550. {
  12551. front: {
  12552. height: math.unit(6, "feet"),
  12553. weight: math.unit(150, "lb"),
  12554. name: "Front",
  12555. image: {
  12556. source: "./media/characters/blü/front.svg",
  12557. extra: 1883 / 1564,
  12558. bottom: 0.031
  12559. }
  12560. },
  12561. },
  12562. [
  12563. {
  12564. name: "Normal",
  12565. height: math.unit(13, "feet"),
  12566. default: true
  12567. },
  12568. {
  12569. name: "Big Boi",
  12570. height: math.unit(150, "meters")
  12571. },
  12572. {
  12573. name: "Mini Stomper",
  12574. height: math.unit(300, "meters")
  12575. },
  12576. {
  12577. name: "Macro",
  12578. height: math.unit(1000, "meters")
  12579. },
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(11000, "meters")
  12583. },
  12584. {
  12585. name: "Gigamacro",
  12586. height: math.unit(11000, "km")
  12587. },
  12588. {
  12589. name: "Teramacro",
  12590. height: math.unit(420000, "km")
  12591. },
  12592. {
  12593. name: "Examacro",
  12594. height: math.unit(120, "parsecs")
  12595. },
  12596. {
  12597. name: "God Tho",
  12598. height: math.unit(98000000000, "parsecs")
  12599. },
  12600. ]
  12601. ))
  12602. characterMakers.push(() => makeCharacter(
  12603. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12604. {
  12605. taurFront: {
  12606. height: math.unit(6, "feet"),
  12607. weight: math.unit(200, "lb"),
  12608. name: "Taur (Front)",
  12609. image: {
  12610. source: "./media/characters/scales/taur-front.svg",
  12611. extra: 1,
  12612. bottom: 0.05
  12613. }
  12614. },
  12615. taurBack: {
  12616. height: math.unit(6, "feet"),
  12617. weight: math.unit(200, "lb"),
  12618. name: "Taur (Back)",
  12619. image: {
  12620. source: "./media/characters/scales/taur-back.svg",
  12621. extra: 1,
  12622. bottom: 0.08
  12623. }
  12624. },
  12625. anthro: {
  12626. height: math.unit(6 * 7 / 12, "feet"),
  12627. weight: math.unit(100, "lb"),
  12628. name: "Anthro",
  12629. image: {
  12630. source: "./media/characters/scales/anthro.svg",
  12631. extra: 1,
  12632. bottom: 0.06
  12633. }
  12634. },
  12635. },
  12636. [
  12637. {
  12638. name: "Normal",
  12639. height: math.unit(12, "feet"),
  12640. default: true
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(6, "feet"),
  12649. weight: math.unit(150, "lb"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/koragos/front.svg",
  12653. extra: 841 / 794,
  12654. bottom: 0.035
  12655. }
  12656. },
  12657. back: {
  12658. height: math.unit(6, "feet"),
  12659. weight: math.unit(150, "lb"),
  12660. name: "Back",
  12661. image: {
  12662. source: "./media/characters/koragos/back.svg",
  12663. extra: 841 / 810,
  12664. bottom: 0.022
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(6 + 11 / 12, "feet"),
  12672. default: true
  12673. },
  12674. {
  12675. name: "Macro",
  12676. height: math.unit(490, "feet")
  12677. },
  12678. {
  12679. name: "Megamacro",
  12680. height: math.unit(10, "miles")
  12681. },
  12682. {
  12683. name: "Gigamacro",
  12684. height: math.unit(50, "miles")
  12685. },
  12686. ]
  12687. ))
  12688. characterMakers.push(() => makeCharacter(
  12689. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12690. {
  12691. front: {
  12692. height: math.unit(6, "feet"),
  12693. weight: math.unit(250, "lb"),
  12694. name: "Front",
  12695. image: {
  12696. source: "./media/characters/xylrem/front.svg",
  12697. extra: 3323 / 3050,
  12698. bottom: 0.065
  12699. }
  12700. },
  12701. },
  12702. [
  12703. {
  12704. name: "Micro",
  12705. height: math.unit(4, "feet")
  12706. },
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(16, "feet"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Macro",
  12714. height: math.unit(2720, "feet")
  12715. },
  12716. {
  12717. name: "Megamacro",
  12718. height: math.unit(25000, "miles")
  12719. },
  12720. ]
  12721. ))
  12722. characterMakers.push(() => makeCharacter(
  12723. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12724. {
  12725. front: {
  12726. height: math.unit(8, "feet"),
  12727. weight: math.unit(250, "kg"),
  12728. name: "Front",
  12729. image: {
  12730. source: "./media/characters/ikideru/front.svg",
  12731. extra: 930 / 870,
  12732. bottom: 0.087
  12733. }
  12734. },
  12735. back: {
  12736. height: math.unit(8, "feet"),
  12737. weight: math.unit(250, "kg"),
  12738. name: "Back",
  12739. image: {
  12740. source: "./media/characters/ikideru/back.svg",
  12741. extra: 919 / 852,
  12742. bottom: 0.055
  12743. }
  12744. },
  12745. },
  12746. [
  12747. {
  12748. name: "Rare",
  12749. height: math.unit(8, "feet"),
  12750. default: true
  12751. },
  12752. {
  12753. name: "Playful Loom",
  12754. height: math.unit(80, "feet")
  12755. },
  12756. {
  12757. name: "City Leaner",
  12758. height: math.unit(230, "feet")
  12759. },
  12760. {
  12761. name: "Megamacro",
  12762. height: math.unit(2500, "feet")
  12763. },
  12764. {
  12765. name: "Gigamacro",
  12766. height: math.unit(26400, "feet")
  12767. },
  12768. {
  12769. name: "Tectonic Shifter",
  12770. height: math.unit(1.7, "megameters")
  12771. },
  12772. {
  12773. name: "Planet Carer",
  12774. height: math.unit(21, "megameters")
  12775. },
  12776. {
  12777. name: "God",
  12778. height: math.unit(11157.22, "parsecs")
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(6, "feet"),
  12787. weight: math.unit(120, "lb"),
  12788. name: "Front",
  12789. image: {
  12790. source: "./media/characters/neo/front.svg"
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Micro",
  12797. height: math.unit(2, "inches"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Human Size",
  12802. height: math.unit(5 + 8 / 12, "feet")
  12803. },
  12804. ]
  12805. ))
  12806. characterMakers.push(() => makeCharacter(
  12807. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12808. {
  12809. front: {
  12810. height: math.unit(13 + 10 / 12, "feet"),
  12811. weight: math.unit(5320, "lb"),
  12812. name: "Front",
  12813. image: {
  12814. source: "./media/characters/chauncey-chantz/front.svg",
  12815. extra: 1587 / 1435,
  12816. bottom: 0.02
  12817. }
  12818. },
  12819. },
  12820. [
  12821. {
  12822. name: "Normal",
  12823. height: math.unit(13 + 10 / 12, "feet"),
  12824. default: true
  12825. },
  12826. {
  12827. name: "Macro",
  12828. height: math.unit(45, "feet")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(250, "miles")
  12833. },
  12834. {
  12835. name: "Planetary",
  12836. height: math.unit(10000, "miles")
  12837. },
  12838. {
  12839. name: "Galactic",
  12840. height: math.unit(40000, "parsecs")
  12841. },
  12842. {
  12843. name: "Universal",
  12844. height: math.unit(1, "yottameter")
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/epifox/front.svg",
  12857. extra: 1,
  12858. bottom: 0.075
  12859. }
  12860. },
  12861. },
  12862. [
  12863. {
  12864. name: "Micro",
  12865. height: math.unit(6, "inches")
  12866. },
  12867. {
  12868. name: "Normal",
  12869. height: math.unit(12, "feet"),
  12870. default: true
  12871. },
  12872. {
  12873. name: "Macro",
  12874. height: math.unit(3810, "feet")
  12875. },
  12876. {
  12877. name: "Megamacro",
  12878. height: math.unit(500, "miles")
  12879. },
  12880. ]
  12881. ))
  12882. characterMakers.push(() => makeCharacter(
  12883. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12884. {
  12885. front: {
  12886. height: math.unit(1.8796, "m"),
  12887. weight: math.unit(230, "lb"),
  12888. name: "Front",
  12889. image: {
  12890. source: "./media/characters/colin-t/front.svg",
  12891. extra: 1272 / 1193,
  12892. bottom: 0.07
  12893. }
  12894. },
  12895. },
  12896. [
  12897. {
  12898. name: "Micro",
  12899. height: math.unit(0.571, "meters")
  12900. },
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(1.8796, "meters"),
  12904. default: true
  12905. },
  12906. {
  12907. name: "Tall",
  12908. height: math.unit(4, "meters")
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(67.241, "meters")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(371.856, "meters")
  12917. },
  12918. {
  12919. name: "Planetary",
  12920. height: math.unit(12631.5689, "km")
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(1.85, "meters"),
  12929. weight: math.unit(80, "kg"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/matvei/front.svg",
  12933. extra: 614 / 594,
  12934. bottom: 0.01
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(1.85, "meters"),
  12942. default: true
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12948. {
  12949. front: {
  12950. height: math.unit(5 + 9 / 12, "feet"),
  12951. weight: math.unit(70, "lb"),
  12952. name: "Front",
  12953. image: {
  12954. source: "./media/characters/quincy/front.svg",
  12955. extra: 3041 / 2751
  12956. }
  12957. },
  12958. back: {
  12959. height: math.unit(5 + 9 / 12, "feet"),
  12960. weight: math.unit(70, "lb"),
  12961. name: "Back",
  12962. image: {
  12963. source: "./media/characters/quincy/back.svg",
  12964. extra: 3041 / 2751
  12965. }
  12966. },
  12967. flying: {
  12968. height: math.unit(5 + 4 / 12, "feet"),
  12969. weight: math.unit(70, "lb"),
  12970. name: "Flying",
  12971. image: {
  12972. source: "./media/characters/quincy/flying.svg",
  12973. extra: 1044 / 930
  12974. }
  12975. },
  12976. },
  12977. [
  12978. {
  12979. name: "Micro",
  12980. height: math.unit(3, "cm")
  12981. },
  12982. {
  12983. name: "Normal",
  12984. height: math.unit(5 + 9 / 12, "feet")
  12985. },
  12986. {
  12987. name: "Macro",
  12988. height: math.unit(200, "meters"),
  12989. default: true
  12990. },
  12991. {
  12992. name: "Megamacro",
  12993. height: math.unit(1000, "meters")
  12994. },
  12995. ]
  12996. ))
  12997. characterMakers.push(() => makeCharacter(
  12998. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12999. {
  13000. front: {
  13001. height: math.unit(3 + 11/12, "feet"),
  13002. weight: math.unit(50, "lb"),
  13003. name: "Front",
  13004. image: {
  13005. source: "./media/characters/vanrel/front.svg",
  13006. extra: 1104/949,
  13007. bottom: 52/1156
  13008. }
  13009. },
  13010. back: {
  13011. height: math.unit(3 + 11/12, "feet"),
  13012. weight: math.unit(50, "lb"),
  13013. name: "Back",
  13014. image: {
  13015. source: "./media/characters/vanrel/back.svg",
  13016. extra: 1119/976,
  13017. bottom: 37/1156
  13018. }
  13019. },
  13020. tome: {
  13021. height: math.unit(1.35, "feet"),
  13022. weight: math.unit(10, "lb"),
  13023. name: "Vanrel's Tome",
  13024. rename: true,
  13025. image: {
  13026. source: "./media/characters/vanrel/tome.svg"
  13027. }
  13028. },
  13029. beans: {
  13030. height: math.unit(0.89, "feet"),
  13031. name: "Beans",
  13032. image: {
  13033. source: "./media/characters/vanrel/beans.svg"
  13034. }
  13035. },
  13036. },
  13037. [
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(3 + 11/12, "feet"),
  13041. default: true
  13042. },
  13043. ]
  13044. ))
  13045. characterMakers.push(() => makeCharacter(
  13046. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13047. {
  13048. front: {
  13049. height: math.unit(7 + 5 / 12, "feet"),
  13050. name: "Front",
  13051. image: {
  13052. source: "./media/characters/kuiper-vanrel/front.svg",
  13053. extra: 1219/1169,
  13054. bottom: 69/1288
  13055. }
  13056. },
  13057. back: {
  13058. height: math.unit(7 + 5 / 12, "feet"),
  13059. name: "Back",
  13060. image: {
  13061. source: "./media/characters/kuiper-vanrel/back.svg",
  13062. extra: 1236/1193,
  13063. bottom: 27/1263
  13064. }
  13065. },
  13066. foot: {
  13067. height: math.unit(0.55, "meters"),
  13068. name: "Foot",
  13069. image: {
  13070. source: "./media/characters/kuiper-vanrel/foot.svg",
  13071. }
  13072. },
  13073. battle: {
  13074. height: math.unit(6.824, "feet"),
  13075. name: "Battle",
  13076. image: {
  13077. source: "./media/characters/kuiper-vanrel/battle.svg",
  13078. extra: 1466 / 1327,
  13079. bottom: 29 / 1492.5
  13080. }
  13081. },
  13082. meerkui: {
  13083. height: math.unit(18, "inches"),
  13084. name: "Meerkui",
  13085. image: {
  13086. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13087. extra: 1354/1289,
  13088. bottom: 69/1423
  13089. }
  13090. },
  13091. },
  13092. [
  13093. {
  13094. name: "Normal",
  13095. height: math.unit(7 + 5 / 12, "feet"),
  13096. default: true
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(8 + 5 / 12, "feet"),
  13105. name: "Front",
  13106. image: {
  13107. source: "./media/characters/keset-vanrel/front.svg",
  13108. extra: 1231/1148,
  13109. bottom: 82/1313
  13110. }
  13111. },
  13112. back: {
  13113. height: math.unit(8 + 5 / 12, "feet"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/keset-vanrel/back.svg",
  13117. extra: 1240/1174,
  13118. bottom: 33/1273
  13119. }
  13120. },
  13121. hand: {
  13122. height: math.unit(0.6, "meters"),
  13123. name: "Hand",
  13124. image: {
  13125. source: "./media/characters/keset-vanrel/hand.svg"
  13126. }
  13127. },
  13128. foot: {
  13129. height: math.unit(0.94978, "meters"),
  13130. name: "Foot",
  13131. image: {
  13132. source: "./media/characters/keset-vanrel/foot.svg"
  13133. }
  13134. },
  13135. battle: {
  13136. height: math.unit(7.408, "feet"),
  13137. name: "Battle",
  13138. image: {
  13139. source: "./media/characters/keset-vanrel/battle.svg",
  13140. extra: 1890 / 1386,
  13141. bottom: 73.28 / 1970
  13142. }
  13143. },
  13144. },
  13145. [
  13146. {
  13147. name: "Normal",
  13148. height: math.unit(8 + 5 / 12, "feet"),
  13149. default: true
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(6, "feet"),
  13158. weight: math.unit(150, "lb"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/neos/front.svg",
  13162. extra: 1696 / 992,
  13163. bottom: 0.14
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(54, "cm"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(100, "m")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(10, "km")
  13180. },
  13181. {
  13182. name: "Megamacro+",
  13183. height: math.unit(100, "km")
  13184. },
  13185. {
  13186. name: "Gigamacro",
  13187. height: math.unit(100, "Mm")
  13188. },
  13189. {
  13190. name: "Teramacro",
  13191. height: math.unit(100, "Gm")
  13192. },
  13193. {
  13194. name: "Examacro",
  13195. height: math.unit(100, "Em")
  13196. },
  13197. {
  13198. name: "Godly",
  13199. height: math.unit(10000, "Ym")
  13200. },
  13201. {
  13202. name: "Beyond Godly",
  13203. height: math.unit(25, "multiverses")
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13209. {
  13210. feminine: {
  13211. height: math.unit(5, "feet"),
  13212. weight: math.unit(100, "lb"),
  13213. name: "Feminine",
  13214. image: {
  13215. source: "./media/characters/sammy-mouse/feminine.svg",
  13216. extra: 2526 / 2425,
  13217. bottom: 0.123
  13218. }
  13219. },
  13220. masculine: {
  13221. height: math.unit(5, "feet"),
  13222. weight: math.unit(100, "lb"),
  13223. name: "Masculine",
  13224. image: {
  13225. source: "./media/characters/sammy-mouse/masculine.svg",
  13226. extra: 2526 / 2425,
  13227. bottom: 0.123
  13228. }
  13229. },
  13230. },
  13231. [
  13232. {
  13233. name: "Micro",
  13234. height: math.unit(5, "inches")
  13235. },
  13236. {
  13237. name: "Normal",
  13238. height: math.unit(5, "feet"),
  13239. default: true
  13240. },
  13241. {
  13242. name: "Macro",
  13243. height: math.unit(60, "feet")
  13244. },
  13245. ]
  13246. ))
  13247. characterMakers.push(() => makeCharacter(
  13248. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13249. {
  13250. front: {
  13251. height: math.unit(4, "feet"),
  13252. weight: math.unit(50, "lb"),
  13253. name: "Front",
  13254. image: {
  13255. source: "./media/characters/kole/front.svg",
  13256. extra: 1423 / 1303,
  13257. bottom: 0.025
  13258. }
  13259. },
  13260. back: {
  13261. height: math.unit(4, "feet"),
  13262. weight: math.unit(50, "lb"),
  13263. name: "Back",
  13264. image: {
  13265. source: "./media/characters/kole/back.svg",
  13266. extra: 1426 / 1280,
  13267. bottom: 0.02
  13268. }
  13269. },
  13270. },
  13271. [
  13272. {
  13273. name: "Normal",
  13274. height: math.unit(4, "feet"),
  13275. default: true
  13276. },
  13277. ]
  13278. ))
  13279. characterMakers.push(() => makeCharacter(
  13280. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13281. {
  13282. front: {
  13283. height: math.unit(2.5, "feet"),
  13284. weight: math.unit(32, "lb"),
  13285. name: "Front",
  13286. image: {
  13287. source: "./media/characters/rufran/front.svg",
  13288. extra: 1313/885,
  13289. bottom: 94/1407
  13290. }
  13291. },
  13292. side: {
  13293. height: math.unit(2.5, "feet"),
  13294. weight: math.unit(32, "lb"),
  13295. name: "Side",
  13296. image: {
  13297. source: "./media/characters/rufran/side.svg",
  13298. extra: 1109/852,
  13299. bottom: 118/1227
  13300. }
  13301. },
  13302. back: {
  13303. height: math.unit(2.5, "feet"),
  13304. weight: math.unit(32, "lb"),
  13305. name: "Back",
  13306. image: {
  13307. source: "./media/characters/rufran/back.svg",
  13308. extra: 1280/878,
  13309. bottom: 131/1411
  13310. }
  13311. },
  13312. mouth: {
  13313. height: math.unit(1.13, "feet"),
  13314. name: "Mouth",
  13315. image: {
  13316. source: "./media/characters/rufran/mouth.svg"
  13317. }
  13318. },
  13319. foot: {
  13320. height: math.unit(1.33, "feet"),
  13321. name: "Foot",
  13322. image: {
  13323. source: "./media/characters/rufran/foot.svg"
  13324. }
  13325. },
  13326. koboldFront: {
  13327. height: math.unit(2 + 6 / 12, "feet"),
  13328. weight: math.unit(20, "lb"),
  13329. name: "Front (Kobold)",
  13330. image: {
  13331. source: "./media/characters/rufran/kobold-front.svg",
  13332. extra: 2041 / 1839,
  13333. bottom: 0.055
  13334. }
  13335. },
  13336. koboldBack: {
  13337. height: math.unit(2 + 6 / 12, "feet"),
  13338. weight: math.unit(20, "lb"),
  13339. name: "Back (Kobold)",
  13340. image: {
  13341. source: "./media/characters/rufran/kobold-back.svg",
  13342. extra: 2054 / 1839,
  13343. bottom: 0.01
  13344. }
  13345. },
  13346. koboldHand: {
  13347. height: math.unit(0.2166, "meters"),
  13348. name: "Hand (Kobold)",
  13349. image: {
  13350. source: "./media/characters/rufran/kobold-hand.svg"
  13351. }
  13352. },
  13353. koboldFoot: {
  13354. height: math.unit(0.185, "meters"),
  13355. name: "Foot (Kobold)",
  13356. image: {
  13357. source: "./media/characters/rufran/kobold-foot.svg"
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Micro",
  13364. height: math.unit(1, "inch")
  13365. },
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(2 + 6 / 12, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Big",
  13373. height: math.unit(60, "feet")
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(325, "feet")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(0.3, "meters"),
  13386. weight: math.unit(3.5, "kg"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/chip/front.svg",
  13390. extra: 748 / 674
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Micro",
  13397. height: math.unit(1, "inch"),
  13398. default: true
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13404. {
  13405. side: {
  13406. height: math.unit(2.3, "meters"),
  13407. weight: math.unit(3500, "lb"),
  13408. name: "Side",
  13409. image: {
  13410. source: "./media/characters/torvid/side.svg",
  13411. extra: 1972 / 722,
  13412. bottom: 0.035
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Normal",
  13419. height: math.unit(2.3, "meters"),
  13420. default: true
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(2, "meters"),
  13429. weight: math.unit(150.5, "kg"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/susan/front.svg",
  13433. extra: 693 / 635,
  13434. bottom: 0.05
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(505, "miles"),
  13442. default: true
  13443. },
  13444. ]
  13445. ))
  13446. characterMakers.push(() => makeCharacter(
  13447. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13448. {
  13449. front: {
  13450. height: math.unit(6, "feet"),
  13451. weight: math.unit(150, "lb"),
  13452. name: "Front",
  13453. image: {
  13454. source: "./media/characters/raindrops/front.svg",
  13455. extra: 2655 / 2461,
  13456. bottom: 49 / 2705
  13457. }
  13458. },
  13459. back: {
  13460. height: math.unit(6, "feet"),
  13461. weight: math.unit(150, "lb"),
  13462. name: "Back",
  13463. image: {
  13464. source: "./media/characters/raindrops/back.svg",
  13465. extra: 2574 / 2400,
  13466. bottom: 65 / 2634
  13467. }
  13468. },
  13469. },
  13470. [
  13471. {
  13472. name: "Micro",
  13473. height: math.unit(6, "inches")
  13474. },
  13475. {
  13476. name: "Normal",
  13477. height: math.unit(6 + 2 / 12, "feet")
  13478. },
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(131, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Megamacro",
  13486. height: math.unit(15, "miles")
  13487. },
  13488. {
  13489. name: "Gigamacro",
  13490. height: math.unit(4000, "miles")
  13491. },
  13492. {
  13493. name: "Teramacro",
  13494. height: math.unit(315000, "miles")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(2.794, "meters"),
  13503. weight: math.unit(325, "kg"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/tezwa/front.svg",
  13507. extra: 2083 / 1906,
  13508. bottom: 0.031
  13509. }
  13510. },
  13511. foot: {
  13512. height: math.unit(0.687, "meters"),
  13513. name: "Foot",
  13514. image: {
  13515. source: "./media/characters/tezwa/foot.svg"
  13516. }
  13517. },
  13518. },
  13519. [
  13520. {
  13521. name: "Normal",
  13522. height: math.unit(9 + 2 / 12, "feet"),
  13523. default: true
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(58, "feet"),
  13532. weight: math.unit(89000, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/typhus/front.svg",
  13536. extra: 816 / 800,
  13537. bottom: 0.065
  13538. }
  13539. },
  13540. },
  13541. [
  13542. {
  13543. name: "Macro",
  13544. height: math.unit(58, "feet"),
  13545. default: true
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(12, "feet"),
  13554. weight: math.unit(6, "tonnes"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/lyra-von-wulf/front.svg",
  13558. extra: 1,
  13559. bottom: 0.10
  13560. }
  13561. },
  13562. frontMecha: {
  13563. height: math.unit(12, "feet"),
  13564. weight: math.unit(12, "tonnes"),
  13565. name: "Front (Mecha)",
  13566. image: {
  13567. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13568. extra: 1,
  13569. bottom: 0.042
  13570. }
  13571. },
  13572. maw: {
  13573. height: math.unit(2.2, "feet"),
  13574. name: "Maw",
  13575. image: {
  13576. source: "./media/characters/lyra-von-wulf/maw.svg"
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Normal",
  13583. height: math.unit(12, "feet"),
  13584. default: true
  13585. },
  13586. {
  13587. name: "Classic",
  13588. height: math.unit(50, "feet")
  13589. },
  13590. {
  13591. name: "Macro",
  13592. height: math.unit(500, "feet")
  13593. },
  13594. {
  13595. name: "Megamacro",
  13596. height: math.unit(1, "mile")
  13597. },
  13598. {
  13599. name: "Gigamacro",
  13600. height: math.unit(400, "miles")
  13601. },
  13602. {
  13603. name: "Teramacro",
  13604. height: math.unit(22000, "miles")
  13605. },
  13606. {
  13607. name: "Solarmacro",
  13608. height: math.unit(8600000, "miles")
  13609. },
  13610. {
  13611. name: "Galactic",
  13612. height: math.unit(1057000, "lightyears")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6 + 10 / 12, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/dixon/front.svg",
  13625. extra: 3361 / 3209,
  13626. bottom: 0.01
  13627. }
  13628. },
  13629. },
  13630. [
  13631. {
  13632. name: "Normal",
  13633. height: math.unit(6 + 10 / 12, "feet"),
  13634. default: true
  13635. },
  13636. {
  13637. name: "Big",
  13638. height: math.unit(12, "meters")
  13639. },
  13640. {
  13641. name: "Macro",
  13642. height: math.unit(500, "meters")
  13643. },
  13644. {
  13645. name: "Megamacro",
  13646. height: math.unit(2, "km")
  13647. },
  13648. ]
  13649. ))
  13650. characterMakers.push(() => makeCharacter(
  13651. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13652. {
  13653. front: {
  13654. height: math.unit(185, "cm"),
  13655. weight: math.unit(68, "kg"),
  13656. name: "Front",
  13657. image: {
  13658. source: "./media/characters/kauko/front.svg",
  13659. extra: 1455 / 1421,
  13660. bottom: 0.03
  13661. }
  13662. },
  13663. back: {
  13664. height: math.unit(185, "cm"),
  13665. weight: math.unit(68, "kg"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/kauko/back.svg",
  13669. extra: 1455 / 1421,
  13670. bottom: 0.004
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Normal",
  13677. height: math.unit(185, "cm"),
  13678. default: true
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13684. {
  13685. front: {
  13686. height: math.unit(6, "feet"),
  13687. weight: math.unit(150, "kg"),
  13688. name: "Front",
  13689. image: {
  13690. source: "./media/characters/varg/front.svg",
  13691. extra: 1108 / 1018,
  13692. bottom: 0.0375
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(5, "meters")
  13700. },
  13701. {
  13702. name: "Macro",
  13703. height: math.unit(200, "meters")
  13704. },
  13705. {
  13706. name: "Megamacro",
  13707. height: math.unit(20, "kilometers")
  13708. },
  13709. {
  13710. name: "True Size",
  13711. height: math.unit(211, "km"),
  13712. default: true
  13713. },
  13714. {
  13715. name: "Gigamacro",
  13716. height: math.unit(1000, "km")
  13717. },
  13718. {
  13719. name: "Gigamacro+",
  13720. height: math.unit(8000, "km")
  13721. },
  13722. {
  13723. name: "Teramacro",
  13724. height: math.unit(1000000, "km")
  13725. },
  13726. ]
  13727. ))
  13728. characterMakers.push(() => makeCharacter(
  13729. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13730. {
  13731. front: {
  13732. height: math.unit(7 + 7 / 12, "feet"),
  13733. weight: math.unit(267, "lb"),
  13734. name: "Front",
  13735. image: {
  13736. source: "./media/characters/dayza/front.svg",
  13737. extra: 1262 / 1200,
  13738. bottom: 0.035
  13739. }
  13740. },
  13741. side: {
  13742. height: math.unit(7 + 7 / 12, "feet"),
  13743. weight: math.unit(267, "lb"),
  13744. name: "Side",
  13745. image: {
  13746. source: "./media/characters/dayza/side.svg",
  13747. extra: 1295 / 1245,
  13748. bottom: 0.05
  13749. }
  13750. },
  13751. back: {
  13752. height: math.unit(7 + 7 / 12, "feet"),
  13753. weight: math.unit(267, "lb"),
  13754. name: "Back",
  13755. image: {
  13756. source: "./media/characters/dayza/back.svg",
  13757. extra: 1241 / 1170
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(7 + 7 / 12, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Macro",
  13769. height: math.unit(155, "feet")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(6 + 5 / 12, "feet"),
  13778. weight: math.unit(160, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/xanthos/front.svg",
  13782. extra: 1,
  13783. bottom: 0.04
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(6 + 5 / 12, "feet"),
  13788. weight: math.unit(160, "lb"),
  13789. name: "Back",
  13790. image: {
  13791. source: "./media/characters/xanthos/back.svg",
  13792. extra: 1,
  13793. bottom: 0.03
  13794. }
  13795. },
  13796. hand: {
  13797. height: math.unit(0.928, "feet"),
  13798. name: "Hand",
  13799. image: {
  13800. source: "./media/characters/xanthos/hand.svg"
  13801. }
  13802. },
  13803. foot: {
  13804. height: math.unit(1.286, "feet"),
  13805. name: "Foot",
  13806. image: {
  13807. source: "./media/characters/xanthos/foot.svg"
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(6 + 5 / 12, "feet"),
  13815. default: true
  13816. },
  13817. {
  13818. name: "Normal+",
  13819. height: math.unit(6, "meters")
  13820. },
  13821. {
  13822. name: "Macro",
  13823. height: math.unit(40, "feet")
  13824. },
  13825. {
  13826. name: "Macro+",
  13827. height: math.unit(200, "meters")
  13828. },
  13829. {
  13830. name: "Megamacro",
  13831. height: math.unit(20, "km")
  13832. },
  13833. {
  13834. name: "Megamacro+",
  13835. height: math.unit(100, "km")
  13836. },
  13837. {
  13838. name: "Gigamacro",
  13839. height: math.unit(200, "megameters")
  13840. },
  13841. {
  13842. name: "Gigamacro+",
  13843. height: math.unit(1.5, "gigameters")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(6 + 3 / 12, "feet"),
  13852. weight: math.unit(215, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/grynn/front.svg",
  13856. extra: 4627 / 4209,
  13857. bottom: 0.047
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(6, "inches")
  13865. },
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(6 + 3 / 12, "feet"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Big",
  13873. height: math.unit(104, "feet")
  13874. },
  13875. {
  13876. name: "Macro",
  13877. height: math.unit(944, "feet")
  13878. },
  13879. {
  13880. name: "Macro+",
  13881. height: math.unit(9480, "feet")
  13882. },
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(78752, "feet")
  13886. },
  13887. {
  13888. name: "Megamacro+",
  13889. height: math.unit(630128, "feet")
  13890. },
  13891. {
  13892. name: "Megamacro++",
  13893. height: math.unit(3150695, "feet")
  13894. },
  13895. ]
  13896. ))
  13897. characterMakers.push(() => makeCharacter(
  13898. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13899. {
  13900. front: {
  13901. height: math.unit(7 + 5 / 12, "feet"),
  13902. weight: math.unit(450, "lb"),
  13903. name: "Front",
  13904. image: {
  13905. source: "./media/characters/mocha-aura/front.svg",
  13906. extra: 1907 / 1817,
  13907. bottom: 0.04
  13908. }
  13909. },
  13910. back: {
  13911. height: math.unit(7 + 5 / 12, "feet"),
  13912. weight: math.unit(450, "lb"),
  13913. name: "Back",
  13914. image: {
  13915. source: "./media/characters/mocha-aura/back.svg",
  13916. extra: 1900 / 1825,
  13917. bottom: 0.045
  13918. }
  13919. },
  13920. },
  13921. [
  13922. {
  13923. name: "Nano",
  13924. height: math.unit(1, "nm")
  13925. },
  13926. {
  13927. name: "Megamicro",
  13928. height: math.unit(1, "mm")
  13929. },
  13930. {
  13931. name: "Micro",
  13932. height: math.unit(3, "inches")
  13933. },
  13934. {
  13935. name: "Normal",
  13936. height: math.unit(7 + 5 / 12, "feet"),
  13937. default: true
  13938. },
  13939. {
  13940. name: "Macro",
  13941. height: math.unit(30, "feet")
  13942. },
  13943. {
  13944. name: "Megamacro",
  13945. height: math.unit(3500, "feet")
  13946. },
  13947. {
  13948. name: "Teramacro",
  13949. height: math.unit(500000, "miles")
  13950. },
  13951. {
  13952. name: "Petamacro",
  13953. height: math.unit(50000000000000000, "parsecs")
  13954. },
  13955. ]
  13956. ))
  13957. characterMakers.push(() => makeCharacter(
  13958. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13959. {
  13960. front: {
  13961. height: math.unit(6, "feet"),
  13962. weight: math.unit(150, "lb"),
  13963. name: "Front",
  13964. image: {
  13965. source: "./media/characters/ilisha-devya/front.svg",
  13966. extra: 1053/1049,
  13967. bottom: 270/1323
  13968. }
  13969. },
  13970. back: {
  13971. height: math.unit(6, "feet"),
  13972. weight: math.unit(150, "lb"),
  13973. name: "Back",
  13974. image: {
  13975. source: "./media/characters/ilisha-devya/back.svg",
  13976. extra: 1131/1128,
  13977. bottom: 39/1170
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Macro",
  13984. height: math.unit(500, "feet"),
  13985. default: true
  13986. },
  13987. {
  13988. name: "Megamacro",
  13989. height: math.unit(10, "miles")
  13990. },
  13991. {
  13992. name: "Gigamacro",
  13993. height: math.unit(100000, "miles")
  13994. },
  13995. {
  13996. name: "Examacro",
  13997. height: math.unit(1e9, "lightyears")
  13998. },
  13999. {
  14000. name: "Omniversal",
  14001. height: math.unit(1e33, "lightyears")
  14002. },
  14003. {
  14004. name: "Beyond Infinite",
  14005. height: math.unit(1e100, "lightyears")
  14006. },
  14007. ]
  14008. ))
  14009. characterMakers.push(() => makeCharacter(
  14010. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14011. {
  14012. Side: {
  14013. height: math.unit(6, "feet"),
  14014. weight: math.unit(150, "lb"),
  14015. name: "Side",
  14016. image: {
  14017. source: "./media/characters/mira/side.svg",
  14018. extra: 900 / 799,
  14019. bottom: 0.02
  14020. }
  14021. },
  14022. },
  14023. [
  14024. {
  14025. name: "Human Size",
  14026. height: math.unit(6, "feet")
  14027. },
  14028. {
  14029. name: "Macro",
  14030. height: math.unit(100, "feet"),
  14031. default: true
  14032. },
  14033. {
  14034. name: "Megamacro",
  14035. height: math.unit(10, "miles")
  14036. },
  14037. {
  14038. name: "Gigamacro",
  14039. height: math.unit(25000, "miles")
  14040. },
  14041. {
  14042. name: "Teramacro",
  14043. height: math.unit(300, "AU")
  14044. },
  14045. {
  14046. name: "Full Size",
  14047. height: math.unit(4.5e10, "lightyears")
  14048. },
  14049. ]
  14050. ))
  14051. characterMakers.push(() => makeCharacter(
  14052. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14053. {
  14054. front: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Front",
  14058. image: {
  14059. source: "./media/characters/holly/front.svg",
  14060. extra: 639 / 606
  14061. }
  14062. },
  14063. back: {
  14064. height: math.unit(6, "feet"),
  14065. weight: math.unit(150, "lb"),
  14066. name: "Back",
  14067. image: {
  14068. source: "./media/characters/holly/back.svg",
  14069. extra: 623 / 598
  14070. }
  14071. },
  14072. frontWorking: {
  14073. height: math.unit(6, "feet"),
  14074. weight: math.unit(150, "lb"),
  14075. name: "Front (Working)",
  14076. image: {
  14077. source: "./media/characters/holly/front-working.svg",
  14078. extra: 607 / 577,
  14079. bottom: 0.048
  14080. }
  14081. },
  14082. },
  14083. [
  14084. {
  14085. name: "Normal",
  14086. height: math.unit(12 + 3 / 12, "feet"),
  14087. default: true
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/porter/front.svg",
  14100. extra: 1,
  14101. bottom: 0.01
  14102. }
  14103. },
  14104. frontRobes: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Front (Robes)",
  14108. image: {
  14109. source: "./media/characters/porter/front-robes.svg",
  14110. extra: 1.01,
  14111. bottom: 0.01
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Normal",
  14118. height: math.unit(11 + 9 / 12, "feet"),
  14119. default: true
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14125. {
  14126. legendary: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(150, "lb"),
  14129. name: "Legendary",
  14130. image: {
  14131. source: "./media/characters/lucy/legendary.svg",
  14132. extra: 1355 / 1100,
  14133. bottom: 0.045
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Legendary",
  14140. height: math.unit(86882 * 2, "miles"),
  14141. default: true
  14142. },
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14147. {
  14148. front: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/drusilla/front.svg",
  14154. extra: 678 / 635,
  14155. bottom: 0.03
  14156. }
  14157. },
  14158. back: {
  14159. height: math.unit(6, "feet"),
  14160. weight: math.unit(150, "lb"),
  14161. name: "Back",
  14162. image: {
  14163. source: "./media/characters/drusilla/back.svg",
  14164. extra: 678 / 635,
  14165. bottom: 0.005
  14166. }
  14167. },
  14168. },
  14169. [
  14170. {
  14171. name: "Macro",
  14172. height: math.unit(100, "feet")
  14173. },
  14174. {
  14175. name: "Canon Height",
  14176. height: math.unit(2000, "feet"),
  14177. default: true
  14178. },
  14179. ]
  14180. ))
  14181. characterMakers.push(() => makeCharacter(
  14182. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14183. {
  14184. front: {
  14185. height: math.unit(6, "feet"),
  14186. weight: math.unit(180, "lb"),
  14187. name: "Front",
  14188. image: {
  14189. source: "./media/characters/renard-thatch/front.svg",
  14190. extra: 2411 / 2275,
  14191. bottom: 0.01
  14192. }
  14193. },
  14194. frontPosing: {
  14195. height: math.unit(6, "feet"),
  14196. weight: math.unit(180, "lb"),
  14197. name: "Front (Posing)",
  14198. image: {
  14199. source: "./media/characters/renard-thatch/front-posing.svg",
  14200. extra: 2381 / 2261,
  14201. bottom: 0.01
  14202. }
  14203. },
  14204. back: {
  14205. height: math.unit(6, "feet"),
  14206. weight: math.unit(180, "lb"),
  14207. name: "Back",
  14208. image: {
  14209. source: "./media/characters/renard-thatch/back.svg",
  14210. extra: 2428 / 2288
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Micro",
  14217. height: math.unit(3, "inches")
  14218. },
  14219. {
  14220. name: "Default",
  14221. height: math.unit(6, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Macro",
  14226. height: math.unit(75, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(1450, "feet"),
  14235. weight: math.unit(1.21e6, "tons"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/sekvra/front.svg",
  14239. extra: 1193/1190,
  14240. bottom: 78/1271
  14241. }
  14242. },
  14243. side: {
  14244. height: math.unit(1450, "feet"),
  14245. weight: math.unit(1.21e6, "tons"),
  14246. name: "Side",
  14247. image: {
  14248. source: "./media/characters/sekvra/side.svg",
  14249. extra: 1193/1190,
  14250. bottom: 52/1245
  14251. }
  14252. },
  14253. back: {
  14254. height: math.unit(1450, "feet"),
  14255. weight: math.unit(1.21e6, "tons"),
  14256. name: "Back",
  14257. image: {
  14258. source: "./media/characters/sekvra/back.svg",
  14259. extra: 1219/1216,
  14260. bottom: 21/1240
  14261. }
  14262. },
  14263. frontClothed: {
  14264. height: math.unit(1450, "feet"),
  14265. weight: math.unit(1.21e6, "tons"),
  14266. name: "Front (Clothed)",
  14267. image: {
  14268. source: "./media/characters/sekvra/front-clothed.svg",
  14269. extra: 1192/1189,
  14270. bottom: 79/1271
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(1450, "feet"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Megamacro",
  14282. height: math.unit(15000, "feet")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(150, "lb"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/carmine/front.svg",
  14295. extra: 1,
  14296. bottom: 0.035
  14297. }
  14298. },
  14299. frontArmor: {
  14300. height: math.unit(6, "feet"),
  14301. weight: math.unit(150, "lb"),
  14302. name: "Front (Armor)",
  14303. image: {
  14304. source: "./media/characters/carmine/front-armor.svg",
  14305. extra: 1,
  14306. bottom: 0.035
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Large",
  14313. height: math.unit(1, "mile")
  14314. },
  14315. {
  14316. name: "Huge",
  14317. height: math.unit(40, "miles"),
  14318. default: true
  14319. },
  14320. {
  14321. name: "Colossal",
  14322. height: math.unit(2500, "miles")
  14323. },
  14324. ]
  14325. ))
  14326. characterMakers.push(() => makeCharacter(
  14327. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14328. {
  14329. front: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Front",
  14333. image: {
  14334. source: "./media/characters/elyssia/front.svg",
  14335. extra: 2201 / 2035,
  14336. bottom: 0.05
  14337. }
  14338. },
  14339. frontClothed: {
  14340. height: math.unit(6, "feet"),
  14341. weight: math.unit(150, "lb"),
  14342. name: "Front (Clothed)",
  14343. image: {
  14344. source: "./media/characters/elyssia/front-clothed.svg",
  14345. extra: 2201 / 2035,
  14346. bottom: 0.05
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(6, "feet"),
  14351. weight: math.unit(150, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/elyssia/back.svg",
  14355. extra: 2201 / 2035,
  14356. bottom: 0.013
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Smaller",
  14363. height: math.unit(150, "feet")
  14364. },
  14365. {
  14366. name: "Standard",
  14367. height: math.unit(1400, "feet"),
  14368. default: true
  14369. },
  14370. {
  14371. name: "Distracted",
  14372. height: math.unit(15000, "feet")
  14373. },
  14374. ]
  14375. ))
  14376. characterMakers.push(() => makeCharacter(
  14377. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14378. {
  14379. front: {
  14380. height: math.unit(7 + 4/12, "feet"),
  14381. weight: math.unit(690, "lb"),
  14382. name: "Front",
  14383. image: {
  14384. source: "./media/characters/geno-maxwell/front.svg",
  14385. extra: 984/856,
  14386. bottom: 87/1071
  14387. }
  14388. },
  14389. back: {
  14390. height: math.unit(7 + 4/12, "feet"),
  14391. weight: math.unit(690, "lb"),
  14392. name: "Back",
  14393. image: {
  14394. source: "./media/characters/geno-maxwell/back.svg",
  14395. extra: 981/854,
  14396. bottom: 57/1038
  14397. }
  14398. },
  14399. frontCostume: {
  14400. height: math.unit(7 + 4/12, "feet"),
  14401. weight: math.unit(690, "lb"),
  14402. name: "Front (Costume)",
  14403. image: {
  14404. source: "./media/characters/geno-maxwell/front-costume.svg",
  14405. extra: 984/856,
  14406. bottom: 87/1071
  14407. }
  14408. },
  14409. backcostume: {
  14410. height: math.unit(7 + 4/12, "feet"),
  14411. weight: math.unit(690, "lb"),
  14412. name: "Back (Costume)",
  14413. image: {
  14414. source: "./media/characters/geno-maxwell/back-costume.svg",
  14415. extra: 981/854,
  14416. bottom: 57/1038
  14417. }
  14418. },
  14419. },
  14420. [
  14421. {
  14422. name: "Micro",
  14423. height: math.unit(3, "inches")
  14424. },
  14425. {
  14426. name: "Normal",
  14427. height: math.unit(7 + 4 / 12, "feet"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Macro",
  14432. height: math.unit(220, "feet")
  14433. },
  14434. {
  14435. name: "Megamacro",
  14436. height: math.unit(11, "miles")
  14437. },
  14438. ]
  14439. ))
  14440. characterMakers.push(() => makeCharacter(
  14441. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14442. {
  14443. front: {
  14444. height: math.unit(7 + 4/12, "feet"),
  14445. weight: math.unit(750, "lb"),
  14446. name: "Front",
  14447. image: {
  14448. source: "./media/characters/regena-maxwell/front.svg",
  14449. extra: 984/856,
  14450. bottom: 87/1071
  14451. }
  14452. },
  14453. back: {
  14454. height: math.unit(7 + 4/12, "feet"),
  14455. weight: math.unit(750, "lb"),
  14456. name: "Back",
  14457. image: {
  14458. source: "./media/characters/regena-maxwell/back.svg",
  14459. extra: 981/854,
  14460. bottom: 57/1038
  14461. }
  14462. },
  14463. frontCostume: {
  14464. height: math.unit(7 + 4/12, "feet"),
  14465. weight: math.unit(750, "lb"),
  14466. name: "Front (Costume)",
  14467. image: {
  14468. source: "./media/characters/regena-maxwell/front-costume.svg",
  14469. extra: 984/856,
  14470. bottom: 87/1071
  14471. }
  14472. },
  14473. backcostume: {
  14474. height: math.unit(7 + 4/12, "feet"),
  14475. weight: math.unit(750, "lb"),
  14476. name: "Back (Costume)",
  14477. image: {
  14478. source: "./media/characters/regena-maxwell/back-costume.svg",
  14479. extra: 981/854,
  14480. bottom: 57/1038
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(7 + 4 / 12, "feet"),
  14488. default: true
  14489. },
  14490. {
  14491. name: "Macro",
  14492. height: math.unit(220, "feet")
  14493. },
  14494. {
  14495. name: "Megamacro",
  14496. height: math.unit(11, "miles")
  14497. },
  14498. ]
  14499. ))
  14500. characterMakers.push(() => makeCharacter(
  14501. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14502. {
  14503. front: {
  14504. height: math.unit(6, "feet"),
  14505. weight: math.unit(150, "lb"),
  14506. name: "Front",
  14507. image: {
  14508. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14509. extra: 860 / 690,
  14510. bottom: 0.03
  14511. }
  14512. },
  14513. },
  14514. [
  14515. {
  14516. name: "Normal",
  14517. height: math.unit(1.7, "meters"),
  14518. default: true
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/quilly/front.svg",
  14531. extra: 890 / 776
  14532. }
  14533. },
  14534. },
  14535. [
  14536. {
  14537. name: "Gigamacro",
  14538. height: math.unit(404090, "miles"),
  14539. default: true
  14540. },
  14541. ]
  14542. ))
  14543. characterMakers.push(() => makeCharacter(
  14544. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14545. {
  14546. front: {
  14547. height: math.unit(7 + 8 / 12, "feet"),
  14548. weight: math.unit(350, "lb"),
  14549. name: "Front",
  14550. image: {
  14551. source: "./media/characters/tempest/front.svg",
  14552. extra: 1175 / 1086,
  14553. bottom: 0.02
  14554. }
  14555. },
  14556. },
  14557. [
  14558. {
  14559. name: "Normal",
  14560. height: math.unit(7 + 8 / 12, "feet"),
  14561. default: true
  14562. },
  14563. ]
  14564. ))
  14565. characterMakers.push(() => makeCharacter(
  14566. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14567. {
  14568. side: {
  14569. height: math.unit(4 + 5 / 12, "feet"),
  14570. weight: math.unit(80, "lb"),
  14571. name: "Side",
  14572. image: {
  14573. source: "./media/characters/rodger/side.svg",
  14574. extra: 1235 / 1118
  14575. }
  14576. },
  14577. },
  14578. [
  14579. {
  14580. name: "Micro",
  14581. height: math.unit(1, "inch")
  14582. },
  14583. {
  14584. name: "Normal",
  14585. height: math.unit(4 + 5 / 12, "feet"),
  14586. default: true
  14587. },
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(120, "feet")
  14591. },
  14592. ]
  14593. ))
  14594. characterMakers.push(() => makeCharacter(
  14595. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14596. {
  14597. front: {
  14598. height: math.unit(6, "feet"),
  14599. weight: math.unit(150, "lb"),
  14600. name: "Front",
  14601. image: {
  14602. source: "./media/characters/danyel/front.svg",
  14603. extra: 1185 / 1123,
  14604. bottom: 0.05
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Shrunken",
  14611. height: math.unit(0.5, "mm")
  14612. },
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(1, "mm"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Upsized",
  14620. height: math.unit(5 + 5 / 12, "feet")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(5 + 6 / 12, "feet"),
  14629. weight: math.unit(200, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/vivian-bijoux/front.svg",
  14633. extra: 1217/1209,
  14634. bottom: 76/1293
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(5 + 6 / 12, "feet"),
  14639. weight: math.unit(200, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/vivian-bijoux/back.svg",
  14643. extra: 1214/1208,
  14644. bottom: 51/1265
  14645. }
  14646. },
  14647. dressed: {
  14648. height: math.unit(5 + 6 / 12, "feet"),
  14649. weight: math.unit(200, "lb"),
  14650. name: "Dressed",
  14651. image: {
  14652. source: "./media/characters/vivian-bijoux/dressed.svg",
  14653. extra: 1217/1209,
  14654. bottom: 76/1293
  14655. }
  14656. },
  14657. },
  14658. [
  14659. {
  14660. name: "Normal",
  14661. height: math.unit(5 + 6 / 12, "feet"),
  14662. default: true
  14663. },
  14664. {
  14665. name: "Bad Dream",
  14666. height: math.unit(500, "feet")
  14667. },
  14668. {
  14669. name: "Nightmare",
  14670. height: math.unit(500, "miles")
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(6 + 1 / 12, "feet"),
  14679. weight: math.unit(260, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/zeta/front.svg",
  14683. extra: 1968 / 1889,
  14684. bottom: 0.06
  14685. }
  14686. },
  14687. back: {
  14688. height: math.unit(6 + 1 / 12, "feet"),
  14689. weight: math.unit(260, "lb"),
  14690. name: "Back",
  14691. image: {
  14692. source: "./media/characters/zeta/back.svg",
  14693. extra: 1944 / 1858,
  14694. bottom: 0.03
  14695. }
  14696. },
  14697. hand: {
  14698. height: math.unit(1.112, "feet"),
  14699. name: "Hand",
  14700. image: {
  14701. source: "./media/characters/zeta/hand.svg"
  14702. }
  14703. },
  14704. foot: {
  14705. height: math.unit(1.48, "feet"),
  14706. name: "Foot",
  14707. image: {
  14708. source: "./media/characters/zeta/foot.svg"
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Micro",
  14715. height: math.unit(6, "inches")
  14716. },
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(6 + 1 / 12, "feet"),
  14720. default: true
  14721. },
  14722. {
  14723. name: "Macro",
  14724. height: math.unit(20, "feet")
  14725. },
  14726. ]
  14727. ))
  14728. characterMakers.push(() => makeCharacter(
  14729. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14730. {
  14731. front: {
  14732. height: math.unit(6, "feet"),
  14733. weight: math.unit(150, "lb"),
  14734. name: "Front",
  14735. image: {
  14736. source: "./media/characters/jamie-larsen/front.svg",
  14737. extra: 962 / 933,
  14738. bottom: 0.02
  14739. }
  14740. },
  14741. back: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Back",
  14745. image: {
  14746. source: "./media/characters/jamie-larsen/back.svg",
  14747. extra: 997 / 946
  14748. }
  14749. },
  14750. },
  14751. [
  14752. {
  14753. name: "Macro",
  14754. height: math.unit(28 + 7 / 12, "feet"),
  14755. default: true
  14756. },
  14757. {
  14758. name: "Macro+",
  14759. height: math.unit(180, "feet")
  14760. },
  14761. {
  14762. name: "Megamacro",
  14763. height: math.unit(10, "miles")
  14764. },
  14765. {
  14766. name: "Gigamacro",
  14767. height: math.unit(200000, "miles")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(6, "feet"),
  14776. weight: math.unit(120, "lb"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/vance/front.svg",
  14780. extra: 1980 / 1890,
  14781. bottom: 0.09
  14782. }
  14783. },
  14784. back: {
  14785. height: math.unit(6, "feet"),
  14786. weight: math.unit(120, "lb"),
  14787. name: "Back",
  14788. image: {
  14789. source: "./media/characters/vance/back.svg",
  14790. extra: 2081 / 1994,
  14791. bottom: 0.014
  14792. }
  14793. },
  14794. hand: {
  14795. height: math.unit(0.88, "feet"),
  14796. name: "Hand",
  14797. image: {
  14798. source: "./media/characters/vance/hand.svg"
  14799. }
  14800. },
  14801. foot: {
  14802. height: math.unit(0.64, "feet"),
  14803. name: "Foot",
  14804. image: {
  14805. source: "./media/characters/vance/foot.svg"
  14806. }
  14807. },
  14808. },
  14809. [
  14810. {
  14811. name: "Small",
  14812. height: math.unit(90, "feet"),
  14813. default: true
  14814. },
  14815. {
  14816. name: "Macro",
  14817. height: math.unit(100, "meters")
  14818. },
  14819. {
  14820. name: "Megamacro",
  14821. height: math.unit(15, "miles")
  14822. },
  14823. ]
  14824. ))
  14825. characterMakers.push(() => makeCharacter(
  14826. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14827. {
  14828. front: {
  14829. height: math.unit(6, "feet"),
  14830. weight: math.unit(180, "lb"),
  14831. name: "Front",
  14832. image: {
  14833. source: "./media/characters/xochitl/front.svg",
  14834. extra: 2297 / 2261,
  14835. bottom: 0.065
  14836. }
  14837. },
  14838. back: {
  14839. height: math.unit(6, "feet"),
  14840. weight: math.unit(180, "lb"),
  14841. name: "Back",
  14842. image: {
  14843. source: "./media/characters/xochitl/back.svg",
  14844. extra: 2386 / 2354,
  14845. bottom: 0.01
  14846. }
  14847. },
  14848. foot: {
  14849. height: math.unit(6 / 5 * 1.15, "feet"),
  14850. weight: math.unit(150, "lb"),
  14851. name: "Foot",
  14852. image: {
  14853. source: "./media/characters/xochitl/foot.svg"
  14854. }
  14855. },
  14856. },
  14857. [
  14858. {
  14859. name: "Macro",
  14860. height: math.unit(80, "feet")
  14861. },
  14862. {
  14863. name: "Macro+",
  14864. height: math.unit(400, "feet"),
  14865. default: true
  14866. },
  14867. {
  14868. name: "Gigamacro",
  14869. height: math.unit(80000, "miles")
  14870. },
  14871. {
  14872. name: "Gigamacro+",
  14873. height: math.unit(400000, "miles")
  14874. },
  14875. {
  14876. name: "Teramacro",
  14877. height: math.unit(300, "AU")
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(6, "feet"),
  14886. weight: math.unit(150, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/vincent/front.svg",
  14890. extra: 1130 / 1080,
  14891. bottom: 0.055
  14892. }
  14893. },
  14894. beak: {
  14895. height: math.unit(6 * 0.1, "feet"),
  14896. name: "Beak",
  14897. image: {
  14898. source: "./media/characters/vincent/beak.svg"
  14899. }
  14900. },
  14901. hand: {
  14902. height: math.unit(6 * 0.85, "feet"),
  14903. weight: math.unit(150, "lb"),
  14904. name: "Hand",
  14905. image: {
  14906. source: "./media/characters/vincent/hand.svg"
  14907. }
  14908. },
  14909. foot: {
  14910. height: math.unit(6 * 0.19, "feet"),
  14911. weight: math.unit(150, "lb"),
  14912. name: "Foot",
  14913. image: {
  14914. source: "./media/characters/vincent/foot.svg"
  14915. }
  14916. },
  14917. },
  14918. [
  14919. {
  14920. name: "Base",
  14921. height: math.unit(6 + 5 / 12, "feet"),
  14922. default: true
  14923. },
  14924. {
  14925. name: "Macro",
  14926. height: math.unit(300, "feet")
  14927. },
  14928. {
  14929. name: "Megamacro",
  14930. height: math.unit(2, "miles")
  14931. },
  14932. {
  14933. name: "Gigamacro",
  14934. height: math.unit(1000, "miles")
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(2, "meters"),
  14943. weight: math.unit(500, "kg"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/coatl/front.svg",
  14947. extra: 3948 / 3500,
  14948. bottom: 0.082
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(4, "meters")
  14956. },
  14957. {
  14958. name: "Macro",
  14959. height: math.unit(100, "meters"),
  14960. default: true
  14961. },
  14962. {
  14963. name: "Macro+",
  14964. height: math.unit(300, "meters")
  14965. },
  14966. {
  14967. name: "Megamacro",
  14968. height: math.unit(3, "gigameters")
  14969. },
  14970. {
  14971. name: "Megamacro+",
  14972. height: math.unit(300, "terameters")
  14973. },
  14974. {
  14975. name: "Megamacro++",
  14976. height: math.unit(3, "lightyears")
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(6, "feet"),
  14985. weight: math.unit(50, "kg"),
  14986. name: "front",
  14987. image: {
  14988. source: "./media/characters/shiroryu/front.svg",
  14989. extra: 1990 / 1935
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Mortal Mingling",
  14996. height: math.unit(3, "meters")
  14997. },
  14998. {
  14999. name: "Kaiju-ish",
  15000. height: math.unit(250, "meters")
  15001. },
  15002. {
  15003. name: "Somewhat Godly",
  15004. height: math.unit(400, "km"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Planetary",
  15009. height: math.unit(300, "megameters")
  15010. },
  15011. {
  15012. name: "Galaxy-dwarfing",
  15013. height: math.unit(450, "kiloparsecs")
  15014. },
  15015. {
  15016. name: "Universe Eater",
  15017. height: math.unit(150, "gigaparsecs")
  15018. },
  15019. {
  15020. name: "Almost Immeasurable",
  15021. height: math.unit(1.3e266, "yottaparsecs")
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(150, "lb"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/umeko/front.svg",
  15034. extra: 1,
  15035. bottom: 0.019
  15036. }
  15037. },
  15038. frontArmored: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(150, "lb"),
  15041. name: "Front (Armored)",
  15042. image: {
  15043. source: "./media/characters/umeko/front-armored.svg",
  15044. extra: 1,
  15045. bottom: 0.021
  15046. }
  15047. },
  15048. },
  15049. [
  15050. {
  15051. name: "Macro",
  15052. height: math.unit(220, "feet"),
  15053. default: true
  15054. },
  15055. {
  15056. name: "Guardian Dragon",
  15057. height: math.unit(50, "miles")
  15058. },
  15059. {
  15060. name: "Cosmic",
  15061. height: math.unit(800000, "miles")
  15062. },
  15063. ]
  15064. ))
  15065. characterMakers.push(() => makeCharacter(
  15066. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15067. {
  15068. front: {
  15069. height: math.unit(6, "feet"),
  15070. weight: math.unit(150, "lb"),
  15071. name: "Front",
  15072. image: {
  15073. source: "./media/characters/cassidy/front.svg",
  15074. extra: 810/808,
  15075. bottom: 41/851
  15076. }
  15077. },
  15078. },
  15079. [
  15080. {
  15081. name: "Canon Height",
  15082. height: math.unit(120, "feet"),
  15083. default: true
  15084. },
  15085. {
  15086. name: "Macro+",
  15087. height: math.unit(400, "feet")
  15088. },
  15089. {
  15090. name: "Macro++",
  15091. height: math.unit(4000, "feet")
  15092. },
  15093. {
  15094. name: "Megamacro",
  15095. height: math.unit(3, "miles")
  15096. },
  15097. ]
  15098. ))
  15099. characterMakers.push(() => makeCharacter(
  15100. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15101. {
  15102. front: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front",
  15106. image: {
  15107. source: "./media/characters/isaac/front.svg",
  15108. extra: 896 / 815,
  15109. bottom: 0.11
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Human Size",
  15116. height: math.unit(8, "feet"),
  15117. default: true
  15118. },
  15119. {
  15120. name: "Macro",
  15121. height: math.unit(400, "feet")
  15122. },
  15123. {
  15124. name: "Megamacro",
  15125. height: math.unit(50, "miles")
  15126. },
  15127. {
  15128. name: "Canon Height",
  15129. height: math.unit(200, "AU")
  15130. },
  15131. ]
  15132. ))
  15133. characterMakers.push(() => makeCharacter(
  15134. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15135. {
  15136. front: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(72, "kg"),
  15139. name: "Front",
  15140. image: {
  15141. source: "./media/characters/sleekit/front.svg",
  15142. extra: 4693 / 4487,
  15143. bottom: 0.012
  15144. }
  15145. },
  15146. },
  15147. [
  15148. {
  15149. name: "Minimum Height",
  15150. height: math.unit(10, "meters")
  15151. },
  15152. {
  15153. name: "Smaller",
  15154. height: math.unit(25, "meters")
  15155. },
  15156. {
  15157. name: "Larger",
  15158. height: math.unit(38, "meters"),
  15159. default: true
  15160. },
  15161. {
  15162. name: "Maximum height",
  15163. height: math.unit(100, "meters")
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(6, "feet"),
  15172. weight: math.unit(150, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/nillia/front.svg",
  15176. extra: 2195 / 2037,
  15177. bottom: 0.005
  15178. }
  15179. },
  15180. back: {
  15181. height: math.unit(6, "feet"),
  15182. weight: math.unit(150, "lb"),
  15183. name: "Back",
  15184. image: {
  15185. source: "./media/characters/nillia/back.svg",
  15186. extra: 2195 / 2037,
  15187. bottom: 0.005
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Canon Height",
  15194. height: math.unit(489, "feet"),
  15195. default: true
  15196. }
  15197. ]
  15198. ))
  15199. characterMakers.push(() => makeCharacter(
  15200. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15201. {
  15202. front: {
  15203. height: math.unit(6, "feet"),
  15204. weight: math.unit(150, "lb"),
  15205. name: "Front",
  15206. image: {
  15207. source: "./media/characters/mesmyriza/front.svg",
  15208. extra: 2067 / 1784,
  15209. bottom: 0.035
  15210. }
  15211. },
  15212. foot: {
  15213. height: math.unit(6 / (250 / 35), "feet"),
  15214. name: "Foot",
  15215. image: {
  15216. source: "./media/characters/mesmyriza/foot.svg"
  15217. }
  15218. },
  15219. },
  15220. [
  15221. {
  15222. name: "Macro",
  15223. height: math.unit(457, "meters"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Megamacro",
  15228. height: math.unit(8, "megameters")
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(250, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/saudade/front.svg",
  15241. extra: 1172 / 1139,
  15242. bottom: 0.035
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Micro",
  15249. height: math.unit(3, "inches")
  15250. },
  15251. {
  15252. name: "Normal",
  15253. height: math.unit(6, "feet"),
  15254. default: true
  15255. },
  15256. {
  15257. name: "Macro",
  15258. height: math.unit(50, "feet")
  15259. },
  15260. {
  15261. name: "Megamacro",
  15262. height: math.unit(2800, "feet")
  15263. },
  15264. ]
  15265. ))
  15266. characterMakers.push(() => makeCharacter(
  15267. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15268. {
  15269. front: {
  15270. height: math.unit(5 + 4 / 12, "feet"),
  15271. weight: math.unit(100, "lb"),
  15272. name: "Front",
  15273. image: {
  15274. source: "./media/characters/keireer/front.svg",
  15275. extra: 716 / 666,
  15276. bottom: 0.05
  15277. }
  15278. },
  15279. },
  15280. [
  15281. {
  15282. name: "Normal",
  15283. height: math.unit(5 + 4 / 12, "feet"),
  15284. default: true
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(5.5, "feet"),
  15293. weight: math.unit(90, "kg"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/mirja/front.svg",
  15297. extra: 1452/1262,
  15298. bottom: 67/1519
  15299. }
  15300. },
  15301. frontDressed: {
  15302. height: math.unit(5.5, "feet"),
  15303. weight: math.unit(90, "lb"),
  15304. name: "Front (Dressed)",
  15305. image: {
  15306. source: "./media/characters/mirja/dressed.svg",
  15307. extra: 1452/1262,
  15308. bottom: 67/1519
  15309. }
  15310. },
  15311. back: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(90, "lb"),
  15314. name: "Back",
  15315. image: {
  15316. source: "./media/characters/mirja/back.svg",
  15317. extra: 1892/1795,
  15318. bottom: 48/1940
  15319. }
  15320. },
  15321. maw: {
  15322. height: math.unit(1.312, "feet"),
  15323. name: "Maw",
  15324. image: {
  15325. source: "./media/characters/mirja/maw.svg"
  15326. }
  15327. },
  15328. paw: {
  15329. height: math.unit(1.15, "feet"),
  15330. name: "Paw",
  15331. image: {
  15332. source: "./media/characters/mirja/paw.svg"
  15333. }
  15334. },
  15335. },
  15336. [
  15337. {
  15338. name: "\"Incognito\"",
  15339. height: math.unit(3, "meters")
  15340. },
  15341. {
  15342. name: "Strolling Size",
  15343. height: math.unit(15, "km")
  15344. },
  15345. {
  15346. name: "Larger Strolling Size",
  15347. height: math.unit(400, "km")
  15348. },
  15349. {
  15350. name: "Preferred Size",
  15351. height: math.unit(5000, "km"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "True Size",
  15356. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(15, "feet"),
  15365. weight: math.unit(880, "kg"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/nightraver/front.svg",
  15369. extra: 2444 / 2160,
  15370. bottom: 0.027
  15371. }
  15372. },
  15373. back: {
  15374. height: math.unit(15, "feet"),
  15375. weight: math.unit(880, "kg"),
  15376. name: "Back",
  15377. image: {
  15378. source: "./media/characters/nightraver/back.svg",
  15379. extra: 2309 / 2180,
  15380. bottom: 0.005
  15381. }
  15382. },
  15383. sole: {
  15384. height: math.unit(2.878, "feet"),
  15385. name: "Sole",
  15386. image: {
  15387. source: "./media/characters/nightraver/sole.svg"
  15388. }
  15389. },
  15390. foot: {
  15391. height: math.unit(2.285, "feet"),
  15392. name: "Foot",
  15393. image: {
  15394. source: "./media/characters/nightraver/foot.svg"
  15395. }
  15396. },
  15397. maw: {
  15398. height: math.unit(2.67, "feet"),
  15399. name: "Maw",
  15400. image: {
  15401. source: "./media/characters/nightraver/maw.svg"
  15402. }
  15403. },
  15404. },
  15405. [
  15406. {
  15407. name: "Micro",
  15408. height: math.unit(1, "cm")
  15409. },
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(15, "feet"),
  15413. default: true
  15414. },
  15415. {
  15416. name: "Macro",
  15417. height: math.unit(300, "feet")
  15418. },
  15419. {
  15420. name: "Megamacro",
  15421. height: math.unit(300, "miles")
  15422. },
  15423. {
  15424. name: "Gigamacro",
  15425. height: math.unit(10000, "miles")
  15426. },
  15427. ]
  15428. ))
  15429. characterMakers.push(() => makeCharacter(
  15430. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15431. {
  15432. side: {
  15433. height: math.unit(2, "inches"),
  15434. weight: math.unit(5, "grams"),
  15435. name: "Side",
  15436. image: {
  15437. source: "./media/characters/arc/side.svg"
  15438. }
  15439. },
  15440. },
  15441. [
  15442. {
  15443. name: "Micro",
  15444. height: math.unit(2, "inches"),
  15445. default: true
  15446. },
  15447. ]
  15448. ))
  15449. characterMakers.push(() => makeCharacter(
  15450. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15451. {
  15452. front: {
  15453. height: math.unit(1.1938, "meters"),
  15454. weight: math.unit(54, "kg"),
  15455. name: "Front",
  15456. image: {
  15457. source: "./media/characters/nebula-shahar/front.svg",
  15458. extra: 1642 / 1436,
  15459. bottom: 0.06
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Megamicro",
  15466. height: math.unit(0.3, "mm")
  15467. },
  15468. {
  15469. name: "Micro",
  15470. height: math.unit(3, "cm")
  15471. },
  15472. {
  15473. name: "Normal",
  15474. height: math.unit(138, "cm"),
  15475. default: true
  15476. },
  15477. {
  15478. name: "Macro",
  15479. height: math.unit(30, "m")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(5.24, "feet"),
  15488. weight: math.unit(150, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/shayla/front.svg",
  15492. extra: 1512 / 1414,
  15493. bottom: 0.01
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(5.24, "feet"),
  15498. weight: math.unit(150, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/shayla/back.svg",
  15502. extra: 1512 / 1414
  15503. }
  15504. },
  15505. hand: {
  15506. height: math.unit(0.7781496062992126, "feet"),
  15507. name: "Hand",
  15508. image: {
  15509. source: "./media/characters/shayla/hand.svg"
  15510. }
  15511. },
  15512. foot: {
  15513. height: math.unit(1.4206036745406823, "feet"),
  15514. name: "Foot",
  15515. image: {
  15516. source: "./media/characters/shayla/foot.svg"
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Micro",
  15523. height: math.unit(0.32, "feet")
  15524. },
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(5.24, "feet"),
  15528. default: true
  15529. },
  15530. {
  15531. name: "Macro",
  15532. height: math.unit(492.12, "feet")
  15533. },
  15534. {
  15535. name: "Megamacro",
  15536. height: math.unit(186.41, "miles")
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(2.2, "m"),
  15545. weight: math.unit(120, "kg"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/pia-jr/front.svg",
  15549. extra: 1000 / 970,
  15550. bottom: 0.035
  15551. }
  15552. },
  15553. hand: {
  15554. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15555. name: "Hand",
  15556. image: {
  15557. source: "./media/characters/pia-jr/hand.svg"
  15558. }
  15559. },
  15560. paw: {
  15561. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15562. name: "Paw",
  15563. image: {
  15564. source: "./media/characters/pia-jr/paw.svg"
  15565. }
  15566. },
  15567. },
  15568. [
  15569. {
  15570. name: "Micro",
  15571. height: math.unit(1.2, "cm")
  15572. },
  15573. {
  15574. name: "Normal",
  15575. height: math.unit(2.2, "m"),
  15576. default: true
  15577. },
  15578. {
  15579. name: "Macro",
  15580. height: math.unit(180, "m")
  15581. },
  15582. {
  15583. name: "Megamacro",
  15584. height: math.unit(420, "km")
  15585. },
  15586. ]
  15587. ))
  15588. characterMakers.push(() => makeCharacter(
  15589. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15590. {
  15591. front: {
  15592. height: math.unit(2, "m"),
  15593. weight: math.unit(115, "kg"),
  15594. name: "Front",
  15595. image: {
  15596. source: "./media/characters/pia-sr/front.svg",
  15597. extra: 760 / 730,
  15598. bottom: 0.015
  15599. }
  15600. },
  15601. back: {
  15602. height: math.unit(2, "m"),
  15603. weight: math.unit(115, "kg"),
  15604. name: "Back",
  15605. image: {
  15606. source: "./media/characters/pia-sr/back.svg",
  15607. extra: 760 / 730,
  15608. bottom: 0.01
  15609. }
  15610. },
  15611. hand: {
  15612. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15613. name: "Hand",
  15614. image: {
  15615. source: "./media/characters/pia-sr/hand.svg"
  15616. }
  15617. },
  15618. foot: {
  15619. height: math.unit(1.83, "feet"),
  15620. name: "Foot",
  15621. image: {
  15622. source: "./media/characters/pia-sr/foot.svg"
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Micro",
  15629. height: math.unit(88, "mm")
  15630. },
  15631. {
  15632. name: "Normal",
  15633. height: math.unit(2, "m"),
  15634. default: true
  15635. },
  15636. {
  15637. name: "Macro",
  15638. height: math.unit(200, "m")
  15639. },
  15640. {
  15641. name: "Megamacro",
  15642. height: math.unit(420, "km")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(8 + 2 / 12, "feet"),
  15651. weight: math.unit(300, "lb"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/kibibyte/front.svg",
  15655. extra: 2221 / 2098,
  15656. bottom: 0.04
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(8 + 2 / 12, "feet"),
  15664. default: true
  15665. },
  15666. {
  15667. name: "Socialable Macro",
  15668. height: math.unit(50, "feet")
  15669. },
  15670. {
  15671. name: "Macro",
  15672. height: math.unit(300, "feet")
  15673. },
  15674. {
  15675. name: "Megamacro",
  15676. height: math.unit(500, "miles")
  15677. },
  15678. ]
  15679. ))
  15680. characterMakers.push(() => makeCharacter(
  15681. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15682. {
  15683. front: {
  15684. height: math.unit(6, "feet"),
  15685. weight: math.unit(150, "lb"),
  15686. name: "Front",
  15687. image: {
  15688. source: "./media/characters/felix/front.svg",
  15689. extra: 762 / 722,
  15690. bottom: 0.02
  15691. }
  15692. },
  15693. frontClothed: {
  15694. height: math.unit(6, "feet"),
  15695. weight: math.unit(150, "lb"),
  15696. name: "Front (Clothed)",
  15697. image: {
  15698. source: "./media/characters/felix/front-clothed.svg",
  15699. extra: 762 / 722,
  15700. bottom: 0.02
  15701. }
  15702. },
  15703. },
  15704. [
  15705. {
  15706. name: "Normal",
  15707. height: math.unit(6 + 8 / 12, "feet"),
  15708. default: true
  15709. },
  15710. {
  15711. name: "Macro",
  15712. height: math.unit(2600, "feet")
  15713. },
  15714. {
  15715. name: "Megamacro",
  15716. height: math.unit(450, "miles")
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(6 + 1 / 12, "feet"),
  15725. weight: math.unit(250, "lb"),
  15726. name: "Front",
  15727. image: {
  15728. source: "./media/characters/tobo/front.svg",
  15729. extra: 608 / 586,
  15730. bottom: 0.023
  15731. }
  15732. },
  15733. back: {
  15734. height: math.unit(6 + 1 / 12, "feet"),
  15735. weight: math.unit(250, "lb"),
  15736. name: "Back",
  15737. image: {
  15738. source: "./media/characters/tobo/back.svg",
  15739. extra: 608 / 586
  15740. }
  15741. },
  15742. },
  15743. [
  15744. {
  15745. name: "Nano",
  15746. height: math.unit(2, "nm")
  15747. },
  15748. {
  15749. name: "Megamicro",
  15750. height: math.unit(0.1, "mm")
  15751. },
  15752. {
  15753. name: "Micro",
  15754. height: math.unit(1, "inch"),
  15755. default: true
  15756. },
  15757. {
  15758. name: "Human-sized",
  15759. height: math.unit(6 + 1 / 12, "feet")
  15760. },
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(250, "feet")
  15764. },
  15765. {
  15766. name: "Megamacro",
  15767. height: math.unit(75, "miles")
  15768. },
  15769. {
  15770. name: "Texas-sized",
  15771. height: math.unit(750, "miles")
  15772. },
  15773. {
  15774. name: "Teramacro",
  15775. height: math.unit(50000, "miles")
  15776. },
  15777. ]
  15778. ))
  15779. characterMakers.push(() => makeCharacter(
  15780. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15781. {
  15782. front: {
  15783. height: math.unit(6, "feet"),
  15784. weight: math.unit(269, "lb"),
  15785. name: "Front",
  15786. image: {
  15787. source: "./media/characters/danny-kapowsky/front.svg",
  15788. extra: 766 / 736,
  15789. bottom: 0.044
  15790. }
  15791. },
  15792. back: {
  15793. height: math.unit(6, "feet"),
  15794. weight: math.unit(269, "lb"),
  15795. name: "Back",
  15796. image: {
  15797. source: "./media/characters/danny-kapowsky/back.svg",
  15798. extra: 797 / 760,
  15799. bottom: 0.025
  15800. }
  15801. },
  15802. },
  15803. [
  15804. {
  15805. name: "Macro",
  15806. height: math.unit(150, "feet"),
  15807. default: true
  15808. },
  15809. {
  15810. name: "Macro+",
  15811. height: math.unit(200, "feet")
  15812. },
  15813. {
  15814. name: "Macro++",
  15815. height: math.unit(300, "feet")
  15816. },
  15817. {
  15818. name: "Macro+++",
  15819. height: math.unit(400, "feet")
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15825. {
  15826. side: {
  15827. height: math.unit(6, "feet"),
  15828. weight: math.unit(170, "lb"),
  15829. name: "Side",
  15830. image: {
  15831. source: "./media/characters/finn/side.svg",
  15832. extra: 1953 / 1807,
  15833. bottom: 0.057
  15834. }
  15835. },
  15836. },
  15837. [
  15838. {
  15839. name: "Megamacro",
  15840. height: math.unit(14445, "feet"),
  15841. default: true
  15842. },
  15843. ]
  15844. ))
  15845. characterMakers.push(() => makeCharacter(
  15846. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15847. {
  15848. front: {
  15849. height: math.unit(5 + 6 / 12, "feet"),
  15850. weight: math.unit(125, "lb"),
  15851. name: "Front",
  15852. image: {
  15853. source: "./media/characters/roy/front.svg",
  15854. extra: 1,
  15855. bottom: 0.11
  15856. }
  15857. },
  15858. },
  15859. [
  15860. {
  15861. name: "Micro",
  15862. height: math.unit(3, "inches"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(5 + 6 / 12, "feet")
  15868. },
  15869. {
  15870. name: "Lesser Macro",
  15871. height: math.unit(60, "feet")
  15872. },
  15873. {
  15874. name: "Greater Macro",
  15875. height: math.unit(120, "feet")
  15876. },
  15877. ]
  15878. ))
  15879. characterMakers.push(() => makeCharacter(
  15880. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15881. {
  15882. front: {
  15883. height: math.unit(6, "feet"),
  15884. weight: math.unit(100, "lb"),
  15885. name: "Front",
  15886. image: {
  15887. source: "./media/characters/aevsivs/front.svg",
  15888. extra: 1,
  15889. bottom: 0.03
  15890. }
  15891. },
  15892. back: {
  15893. height: math.unit(6, "feet"),
  15894. weight: math.unit(100, "lb"),
  15895. name: "Back",
  15896. image: {
  15897. source: "./media/characters/aevsivs/back.svg"
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Micro",
  15904. height: math.unit(2, "inches"),
  15905. default: true
  15906. },
  15907. {
  15908. name: "Normal",
  15909. height: math.unit(5, "feet")
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(5 + 7 / 12, "feet"),
  15918. weight: math.unit(159, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/hildegard/front.svg",
  15922. extra: 289 / 269,
  15923. bottom: 7.63 / 297.8
  15924. }
  15925. },
  15926. back: {
  15927. height: math.unit(5 + 7 / 12, "feet"),
  15928. weight: math.unit(159, "lb"),
  15929. name: "Back",
  15930. image: {
  15931. source: "./media/characters/hildegard/back.svg",
  15932. extra: 280 / 260,
  15933. bottom: 2.3 / 282
  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: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15947. {
  15948. bernard: {
  15949. height: math.unit(2 + 7 / 12, "feet"),
  15950. weight: math.unit(66, "lb"),
  15951. name: "Bernard",
  15952. rename: true,
  15953. image: {
  15954. source: "./media/characters/bernard-wilder/bernard.svg",
  15955. extra: 192 / 128,
  15956. bottom: 0.05
  15957. }
  15958. },
  15959. wilder: {
  15960. height: math.unit(5 + 8 / 12, "feet"),
  15961. weight: math.unit(143, "lb"),
  15962. name: "Wilder",
  15963. rename: true,
  15964. image: {
  15965. source: "./media/characters/bernard-wilder/wilder.svg",
  15966. extra: 361 / 312,
  15967. bottom: 0.02
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(2 + 7 / 12, "feet"),
  15975. default: true
  15976. },
  15977. ]
  15978. ))
  15979. characterMakers.push(() => makeCharacter(
  15980. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15981. {
  15982. anthro: {
  15983. height: math.unit(6 + 1 / 12, "feet"),
  15984. weight: math.unit(155, "lb"),
  15985. name: "Anthro",
  15986. image: {
  15987. source: "./media/characters/hearth/anthro.svg",
  15988. extra: 1178/1136,
  15989. bottom: 28/1206
  15990. }
  15991. },
  15992. feral: {
  15993. height: math.unit(3.78, "feet"),
  15994. weight: math.unit(35, "kg"),
  15995. name: "Feral",
  15996. image: {
  15997. source: "./media/characters/hearth/feral.svg",
  15998. extra: 153 / 135,
  15999. bottom: 0.03
  16000. }
  16001. },
  16002. },
  16003. [
  16004. {
  16005. name: "Normal",
  16006. height: math.unit(6 + 1 / 12, "feet"),
  16007. default: true
  16008. },
  16009. ]
  16010. ))
  16011. characterMakers.push(() => makeCharacter(
  16012. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16013. {
  16014. front: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(182, "lb"),
  16017. name: "Front",
  16018. image: {
  16019. source: "./media/characters/ingrid/front.svg",
  16020. extra: 294 / 268,
  16021. bottom: 0.027
  16022. }
  16023. },
  16024. },
  16025. [
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(6, "feet"),
  16029. default: true
  16030. },
  16031. ]
  16032. ))
  16033. characterMakers.push(() => makeCharacter(
  16034. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16035. {
  16036. eevee: {
  16037. height: math.unit(2 + 10 / 12, "feet"),
  16038. weight: math.unit(86, "lb"),
  16039. name: "Malgam",
  16040. image: {
  16041. source: "./media/characters/malgam/eevee.svg",
  16042. extra: 952/784,
  16043. bottom: 38/990
  16044. }
  16045. },
  16046. sylveon: {
  16047. height: math.unit(4, "feet"),
  16048. weight: math.unit(101, "lb"),
  16049. name: "Future Malgam",
  16050. rename: true,
  16051. image: {
  16052. source: "./media/characters/malgam/sylveon.svg",
  16053. extra: 371 / 325,
  16054. bottom: 0.015
  16055. }
  16056. },
  16057. gigantamax: {
  16058. height: math.unit(50, "feet"),
  16059. name: "Gigantamax Malgam",
  16060. rename: true,
  16061. image: {
  16062. source: "./media/characters/malgam/gigantamax.svg"
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Normal",
  16069. height: math.unit(2 + 10 / 12, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(5 + 11 / 12, "feet"),
  16079. weight: math.unit(188, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/fleur/front.svg",
  16083. extra: 309 / 283,
  16084. bottom: 0.007
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Normal",
  16091. height: math.unit(5 + 11 / 12, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(5 + 4 / 12, "feet"),
  16101. weight: math.unit(122, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/jude/front.svg",
  16105. extra: 288 / 273,
  16106. bottom: 0.03
  16107. }
  16108. },
  16109. },
  16110. [
  16111. {
  16112. name: "Normal",
  16113. height: math.unit(5 + 4 / 12, "feet"),
  16114. default: true
  16115. },
  16116. ]
  16117. ))
  16118. characterMakers.push(() => makeCharacter(
  16119. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16120. {
  16121. front: {
  16122. height: math.unit(5 + 11 / 12, "feet"),
  16123. weight: math.unit(190, "lb"),
  16124. name: "Front",
  16125. image: {
  16126. source: "./media/characters/seara/front.svg",
  16127. extra: 1,
  16128. bottom: 0.05
  16129. }
  16130. },
  16131. },
  16132. [
  16133. {
  16134. name: "Normal",
  16135. height: math.unit(5 + 11 / 12, "feet"),
  16136. default: true
  16137. },
  16138. ]
  16139. ))
  16140. characterMakers.push(() => makeCharacter(
  16141. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16142. {
  16143. front: {
  16144. height: math.unit(16 + 5 / 12, "feet"),
  16145. weight: math.unit(524, "lb"),
  16146. name: "Front",
  16147. image: {
  16148. source: "./media/characters/caspian-lugia/front.svg",
  16149. extra: 1,
  16150. bottom: 0.04
  16151. }
  16152. },
  16153. },
  16154. [
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(16 + 5 / 12, "feet"),
  16158. default: true
  16159. },
  16160. ]
  16161. ))
  16162. characterMakers.push(() => makeCharacter(
  16163. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16164. {
  16165. front: {
  16166. height: math.unit(5 + 7 / 12, "feet"),
  16167. weight: math.unit(170, "lb"),
  16168. name: "Front",
  16169. image: {
  16170. source: "./media/characters/mika/front.svg",
  16171. extra: 1,
  16172. bottom: 0.016
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(5 + 7 / 12, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(6 + 2 / 12, "feet"),
  16189. weight: math.unit(268, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/sol/front.svg",
  16193. extra: 247 / 231,
  16194. bottom: 0.05
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(6 + 2 / 12, "feet"),
  16202. default: true
  16203. },
  16204. ]
  16205. ))
  16206. characterMakers.push(() => makeCharacter(
  16207. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16208. {
  16209. buizel: {
  16210. height: math.unit(2 + 5 / 12, "feet"),
  16211. weight: math.unit(87, "lb"),
  16212. name: "Front",
  16213. image: {
  16214. source: "./media/characters/umiko/buizel.svg",
  16215. extra: 172 / 157,
  16216. bottom: 0.01
  16217. },
  16218. form: "buizel",
  16219. default: true
  16220. },
  16221. floatzel: {
  16222. height: math.unit(5 + 9 / 12, "feet"),
  16223. weight: math.unit(250, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/umiko/floatzel.svg",
  16227. extra: 1076/1006,
  16228. bottom: 15/1091
  16229. },
  16230. form: "floatzel",
  16231. default: true
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(2 + 5 / 12, "feet"),
  16238. form: "buizel",
  16239. default: true
  16240. },
  16241. {
  16242. name: "Normal",
  16243. height: math.unit(5 + 9 / 12, "feet"),
  16244. form: "floatzel",
  16245. default: true
  16246. },
  16247. ],
  16248. {
  16249. "buizel": {
  16250. name: "Buizel"
  16251. },
  16252. "floatzel": {
  16253. name: "Floatzel",
  16254. default: true
  16255. }
  16256. }
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6 + 2 / 12, "feet"),
  16263. weight: math.unit(146, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/iliac/front.svg",
  16267. extra: 389 / 365,
  16268. bottom: 0.035
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Normal",
  16275. height: math.unit(6 + 2 / 12, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(170, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/topaz/front.svg",
  16289. extra: 317 / 303,
  16290. bottom: 0.055
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Normal",
  16297. height: math.unit(6, "feet"),
  16298. default: true
  16299. },
  16300. ]
  16301. ))
  16302. characterMakers.push(() => makeCharacter(
  16303. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16304. {
  16305. front: {
  16306. height: math.unit(5 + 11 / 12, "feet"),
  16307. weight: math.unit(144, "lb"),
  16308. name: "Front",
  16309. image: {
  16310. source: "./media/characters/gabriel/front.svg",
  16311. extra: 285 / 262,
  16312. bottom: 0.004
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Normal",
  16319. height: math.unit(5 + 11 / 12, "feet"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16326. {
  16327. side: {
  16328. height: math.unit(6 + 5 / 12, "feet"),
  16329. weight: math.unit(300, "lb"),
  16330. name: "Side",
  16331. image: {
  16332. source: "./media/characters/tempest-suicune/side.svg",
  16333. extra: 195 / 154,
  16334. bottom: 0.04
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(6 + 5 / 12, "feet"),
  16342. default: true
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(7 + 2 / 12, "feet"),
  16351. weight: math.unit(322, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/vulcan/front.svg",
  16355. extra: 154 / 147,
  16356. bottom: 0.04
  16357. }
  16358. },
  16359. },
  16360. [
  16361. {
  16362. name: "Normal",
  16363. height: math.unit(7 + 2 / 12, "feet"),
  16364. default: true
  16365. },
  16366. ]
  16367. ))
  16368. characterMakers.push(() => makeCharacter(
  16369. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16370. {
  16371. front: {
  16372. height: math.unit(5 + 10 / 12, "feet"),
  16373. weight: math.unit(264, "lb"),
  16374. name: "Front",
  16375. image: {
  16376. source: "./media/characters/gault/front.svg",
  16377. extra: 161 / 140,
  16378. bottom: 0.028
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(5 + 10 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16392. {
  16393. front: {
  16394. height: math.unit(6, "feet"),
  16395. weight: math.unit(150, "lb"),
  16396. name: "Front",
  16397. image: {
  16398. source: "./media/characters/shard/front.svg",
  16399. extra: 273 / 238,
  16400. bottom: 0.02
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(3 + 6 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(5 + 11 / 12, "feet"),
  16417. weight: math.unit(146, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/ashe/front.svg",
  16421. extra: 400 / 373,
  16422. bottom: 0.01
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(5 + 11 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(5 + 5 / 12, "feet"),
  16439. weight: math.unit(135, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/beatrix/front.svg",
  16443. extra: 392 / 379,
  16444. bottom: 0.01
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(6, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(6 + 2/12, "feet"),
  16461. weight: math.unit(135, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/ignatius/front.svg",
  16465. extra: 1380/1259,
  16466. bottom: 27/1407
  16467. }
  16468. },
  16469. },
  16470. [
  16471. {
  16472. name: "Normal",
  16473. height: math.unit(6 + 2/12, "feet"),
  16474. default: true
  16475. },
  16476. ]
  16477. ))
  16478. characterMakers.push(() => makeCharacter(
  16479. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16480. {
  16481. front: {
  16482. height: math.unit(6 + 2 / 12, "feet"),
  16483. weight: math.unit(138, "lb"),
  16484. name: "Front",
  16485. image: {
  16486. source: "./media/characters/mei-li/front.svg",
  16487. extra: 237 / 229,
  16488. bottom: 0.03
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(6 + 2 / 12, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(2 + 4 / 12, "feet"),
  16505. weight: math.unit(62, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/puru/front.svg",
  16509. extra: 206 / 149,
  16510. bottom: 0.06
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(2 + 4 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16524. {
  16525. anthro: {
  16526. height: math.unit(5 + 8/12, "feet"),
  16527. weight: math.unit(200, "lb"),
  16528. energyNeed: math.unit(2000, "kcal"),
  16529. name: "Anthro",
  16530. image: {
  16531. source: "./media/characters/kee/anthro.svg",
  16532. extra: 3251/3184,
  16533. bottom: 250/3501
  16534. }
  16535. },
  16536. taur: {
  16537. height: math.unit(11, "feet"),
  16538. weight: math.unit(500, "lb"),
  16539. energyNeed: math.unit(5000, "kcal"),
  16540. name: "Taur",
  16541. image: {
  16542. source: "./media/characters/kee/taur.svg",
  16543. extra: 1362/1320,
  16544. bottom: 83/1445
  16545. }
  16546. },
  16547. },
  16548. [
  16549. {
  16550. name: "Normal",
  16551. height: math.unit(5 + 8/12, "feet"),
  16552. default: true
  16553. },
  16554. {
  16555. name: "Macro",
  16556. height: math.unit(35, "feet")
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16562. {
  16563. anthro: {
  16564. height: math.unit(7, "feet"),
  16565. weight: math.unit(190, "lb"),
  16566. name: "Anthro",
  16567. image: {
  16568. source: "./media/characters/cobalt-dracha/anthro.svg",
  16569. extra: 231 / 225,
  16570. bottom: 0.04
  16571. }
  16572. },
  16573. feral: {
  16574. height: math.unit(9 + 7 / 12, "feet"),
  16575. weight: math.unit(294, "lb"),
  16576. name: "Feral",
  16577. image: {
  16578. source: "./media/characters/cobalt-dracha/feral.svg",
  16579. extra: 692 / 633,
  16580. bottom: 0.05
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(7, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16594. {
  16595. fallen: {
  16596. height: math.unit(11 + 8 / 12, "feet"),
  16597. weight: math.unit(485, "lb"),
  16598. name: "Java (Fallen)",
  16599. rename: true,
  16600. image: {
  16601. source: "./media/characters/java/fallen.svg",
  16602. extra: 226 / 208,
  16603. bottom: 0.005
  16604. }
  16605. },
  16606. godkin: {
  16607. height: math.unit(10 + 6 / 12, "feet"),
  16608. weight: math.unit(328, "lb"),
  16609. name: "Java (Godkin)",
  16610. rename: true,
  16611. image: {
  16612. source: "./media/characters/java/godkin.svg",
  16613. extra: 1104/1068,
  16614. bottom: 36/1140
  16615. }
  16616. },
  16617. },
  16618. [
  16619. {
  16620. name: "Normal",
  16621. height: math.unit(11 + 8 / 12, "feet"),
  16622. default: true
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(5 + 9 / 12, "feet"),
  16631. weight: math.unit(170, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/purna/front.svg",
  16635. extra: 239 / 229,
  16636. bottom: 0.01
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(5 + 9 / 12, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(5 + 9 / 12, "feet"),
  16653. weight: math.unit(142, "lb"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/kuva/front.svg",
  16657. extra: 281 / 271,
  16658. bottom: 0.006
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(5 + 9 / 12, "feet"),
  16666. default: true
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16672. {
  16673. anthro: {
  16674. height: math.unit(9 + 2 / 12, "feet"),
  16675. weight: math.unit(270, "lb"),
  16676. name: "Anthro",
  16677. image: {
  16678. source: "./media/characters/embra/anthro.svg",
  16679. extra: 200 / 187,
  16680. bottom: 0.02
  16681. }
  16682. },
  16683. feral: {
  16684. height: math.unit(18 + 8 / 12, "feet"),
  16685. weight: math.unit(576, "lb"),
  16686. name: "Feral",
  16687. image: {
  16688. source: "./media/characters/embra/feral.svg",
  16689. extra: 152 / 137,
  16690. bottom: 0.037
  16691. }
  16692. },
  16693. },
  16694. [
  16695. {
  16696. name: "Normal",
  16697. height: math.unit(9 + 2 / 12, "feet"),
  16698. default: true
  16699. },
  16700. ]
  16701. ))
  16702. characterMakers.push(() => makeCharacter(
  16703. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16704. {
  16705. anthro: {
  16706. height: math.unit(10 + 9 / 12, "feet"),
  16707. weight: math.unit(224, "lb"),
  16708. name: "Anthro",
  16709. image: {
  16710. source: "./media/characters/grottos/anthro.svg",
  16711. extra: 350 / 332,
  16712. bottom: 0.045
  16713. }
  16714. },
  16715. feral: {
  16716. height: math.unit(20 + 7 / 12, "feet"),
  16717. weight: math.unit(629, "lb"),
  16718. name: "Feral",
  16719. image: {
  16720. source: "./media/characters/grottos/feral.svg",
  16721. extra: 207 / 190,
  16722. bottom: 0.05
  16723. }
  16724. },
  16725. },
  16726. [
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(10 + 9 / 12, "feet"),
  16730. default: true
  16731. },
  16732. ]
  16733. ))
  16734. characterMakers.push(() => makeCharacter(
  16735. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16736. {
  16737. anthro: {
  16738. height: math.unit(9 + 6 / 12, "feet"),
  16739. weight: math.unit(298, "lb"),
  16740. name: "Anthro",
  16741. image: {
  16742. source: "./media/characters/frifna/anthro.svg",
  16743. extra: 282 / 269,
  16744. bottom: 0.015
  16745. }
  16746. },
  16747. feral: {
  16748. height: math.unit(16 + 2 / 12, "feet"),
  16749. weight: math.unit(624, "lb"),
  16750. name: "Feral",
  16751. image: {
  16752. source: "./media/characters/frifna/feral.svg"
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Normal",
  16759. height: math.unit(9 + 6 / 12, "feet"),
  16760. default: true
  16761. },
  16762. ]
  16763. ))
  16764. characterMakers.push(() => makeCharacter(
  16765. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16766. {
  16767. front: {
  16768. height: math.unit(6 + 2 / 12, "feet"),
  16769. weight: math.unit(168, "lb"),
  16770. name: "Front",
  16771. image: {
  16772. source: "./media/characters/elise/front.svg",
  16773. extra: 276 / 271
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(6 + 2 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(5 + 10 / 12, "feet"),
  16790. weight: math.unit(210, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/glade/front.svg",
  16794. extra: 258 / 247,
  16795. bottom: 0.008
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(5 + 10 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 10 / 12, "feet"),
  16812. weight: math.unit(129, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/rina/front.svg",
  16816. extra: 266 / 255,
  16817. bottom: 0.005
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(5 + 10 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(6 + 1 / 12, "feet"),
  16834. weight: math.unit(192, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/veronica/front.svg",
  16838. extra: 319 / 309,
  16839. bottom: 0.005
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(6 + 1 / 12, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(9 + 3 / 12, "feet"),
  16856. weight: math.unit(1100, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/braxton/front.svg",
  16860. extra: 1057 / 984,
  16861. bottom: 0.05
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(9 + 3 / 12, "feet")
  16869. },
  16870. {
  16871. name: "Giant",
  16872. height: math.unit(300, "feet"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Macro",
  16877. height: math.unit(700, "feet")
  16878. },
  16879. {
  16880. name: "Megamacro",
  16881. height: math.unit(6000, "feet")
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6 + 7 / 12, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/blue-feyonics/front.svg",
  16894. extra: 1403 / 1306,
  16895. bottom: 0.047
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(6 + 7 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(1.8, "meters"),
  16912. weight: math.unit(60, "kg"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/maxwell/front.svg",
  16916. extra: 2060 / 1873
  16917. }
  16918. },
  16919. },
  16920. [
  16921. {
  16922. name: "Micro",
  16923. height: math.unit(1, "mm")
  16924. },
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(1.8, "meter"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Macro",
  16932. height: math.unit(30, "meters")
  16933. },
  16934. {
  16935. name: "Megamacro",
  16936. height: math.unit(10, "km")
  16937. },
  16938. ]
  16939. ))
  16940. characterMakers.push(() => makeCharacter(
  16941. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16942. {
  16943. front: {
  16944. height: math.unit(6, "feet"),
  16945. weight: math.unit(150, "lb"),
  16946. name: "Front",
  16947. image: {
  16948. source: "./media/characters/jack/front.svg",
  16949. extra: 1754 / 1640,
  16950. bottom: 0.01
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(80000, "feet"),
  16958. default: true
  16959. },
  16960. {
  16961. name: "Max size",
  16962. height: math.unit(10, "lightyears")
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16968. {
  16969. urban: {
  16970. height: math.unit(5, "feet"),
  16971. weight: math.unit(240, "lb"),
  16972. name: "Urban",
  16973. image: {
  16974. source: "./media/characters/cafat/urban.svg",
  16975. extra: 1223/1126,
  16976. bottom: 205/1428
  16977. }
  16978. },
  16979. summer: {
  16980. height: math.unit(5, "feet"),
  16981. weight: math.unit(240, "lb"),
  16982. name: "Summer",
  16983. image: {
  16984. source: "./media/characters/cafat/summer.svg",
  16985. extra: 1223/1126,
  16986. bottom: 205/1428
  16987. }
  16988. },
  16989. winter: {
  16990. height: math.unit(5, "feet"),
  16991. weight: math.unit(240, "lb"),
  16992. name: "Winter",
  16993. image: {
  16994. source: "./media/characters/cafat/winter.svg",
  16995. extra: 1223/1126,
  16996. bottom: 205/1428
  16997. }
  16998. },
  16999. lingerie: {
  17000. height: math.unit(5, "feet"),
  17001. weight: math.unit(240, "lb"),
  17002. name: "Lingerie",
  17003. image: {
  17004. source: "./media/characters/cafat/lingerie.svg",
  17005. extra: 1223/1126,
  17006. bottom: 205/1428
  17007. }
  17008. },
  17009. upright: {
  17010. height: math.unit(6.3, "feet"),
  17011. weight: math.unit(240, "lb"),
  17012. name: "Upright",
  17013. image: {
  17014. source: "./media/characters/cafat/upright.svg",
  17015. bottom: 0.01
  17016. }
  17017. },
  17018. uprightFull: {
  17019. height: math.unit(6.3, "feet"),
  17020. weight: math.unit(240, "lb"),
  17021. name: "Upright (Full)",
  17022. image: {
  17023. source: "./media/characters/cafat/upright-full.svg",
  17024. bottom: 0.01
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Small",
  17031. height: math.unit(5, "feet"),
  17032. default: true
  17033. },
  17034. {
  17035. name: "Large",
  17036. height: math.unit(13, "feet")
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(6, "feet"),
  17045. weight: math.unit(150, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/verin-raharra/front.svg",
  17049. extra: 5019 / 4835,
  17050. bottom: 0.023
  17051. }
  17052. },
  17053. },
  17054. [
  17055. {
  17056. name: "Normal",
  17057. height: math.unit(7 + 5 / 12, "feet"),
  17058. default: true
  17059. },
  17060. {
  17061. name: "Upsized",
  17062. height: math.unit(20, "feet")
  17063. },
  17064. ]
  17065. ))
  17066. characterMakers.push(() => makeCharacter(
  17067. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17068. {
  17069. front: {
  17070. height: math.unit(7, "feet"),
  17071. weight: math.unit(230, "lb"),
  17072. name: "Front",
  17073. image: {
  17074. source: "./media/characters/nakata/front.svg",
  17075. extra: 1.005,
  17076. bottom: 0.01
  17077. }
  17078. },
  17079. },
  17080. [
  17081. {
  17082. name: "Normal",
  17083. height: math.unit(7, "feet"),
  17084. default: true
  17085. },
  17086. {
  17087. name: "Big",
  17088. height: math.unit(14, "feet")
  17089. },
  17090. {
  17091. name: "Macro",
  17092. height: math.unit(400, "feet")
  17093. },
  17094. ]
  17095. ))
  17096. characterMakers.push(() => makeCharacter(
  17097. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17098. {
  17099. front: {
  17100. height: math.unit(4.91, "feet"),
  17101. weight: math.unit(100, "lb"),
  17102. name: "Front",
  17103. image: {
  17104. source: "./media/characters/lily/front.svg",
  17105. extra: 1585 / 1415,
  17106. bottom: 0.02
  17107. }
  17108. },
  17109. },
  17110. [
  17111. {
  17112. name: "Normal",
  17113. height: math.unit(4.91, "feet"),
  17114. default: true
  17115. },
  17116. ]
  17117. ))
  17118. characterMakers.push(() => makeCharacter(
  17119. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17120. {
  17121. laying: {
  17122. height: math.unit(4 + 4 / 12, "feet"),
  17123. weight: math.unit(600, "lb"),
  17124. name: "Laying",
  17125. image: {
  17126. source: "./media/characters/sheila/laying.svg",
  17127. extra: 1333 / 1265,
  17128. bottom: 0.16
  17129. }
  17130. },
  17131. },
  17132. [
  17133. {
  17134. name: "Normal",
  17135. height: math.unit(4 + 4 / 12, "feet"),
  17136. default: true
  17137. },
  17138. ]
  17139. ))
  17140. characterMakers.push(() => makeCharacter(
  17141. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17142. {
  17143. front: {
  17144. height: math.unit(6, "feet"),
  17145. weight: math.unit(190, "lb"),
  17146. name: "Front",
  17147. image: {
  17148. source: "./media/characters/sax/front.svg",
  17149. extra: 1187 / 973,
  17150. bottom: 0.042
  17151. }
  17152. },
  17153. },
  17154. [
  17155. {
  17156. name: "Micro",
  17157. height: math.unit(4, "inches"),
  17158. default: true
  17159. },
  17160. ]
  17161. ))
  17162. characterMakers.push(() => makeCharacter(
  17163. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17164. {
  17165. front: {
  17166. height: math.unit(6, "feet"),
  17167. weight: math.unit(150, "lb"),
  17168. name: "Front",
  17169. image: {
  17170. source: "./media/characters/pandora/front.svg",
  17171. extra: 2720 / 2556,
  17172. bottom: 0.015
  17173. }
  17174. },
  17175. back: {
  17176. height: math.unit(6, "feet"),
  17177. weight: math.unit(150, "lb"),
  17178. name: "Back",
  17179. image: {
  17180. source: "./media/characters/pandora/back.svg",
  17181. extra: 2720 / 2556,
  17182. bottom: 0.01
  17183. }
  17184. },
  17185. beans: {
  17186. height: math.unit(6 / 8, "feet"),
  17187. name: "Beans",
  17188. image: {
  17189. source: "./media/characters/pandora/beans.svg"
  17190. }
  17191. },
  17192. collar: {
  17193. height: math.unit(0.31, "feet"),
  17194. name: "Collar",
  17195. image: {
  17196. source: "./media/characters/pandora/collar.svg"
  17197. }
  17198. },
  17199. skirt: {
  17200. height: math.unit(6, "feet"),
  17201. weight: math.unit(150, "lb"),
  17202. name: "Skirt",
  17203. image: {
  17204. source: "./media/characters/pandora/skirt.svg",
  17205. extra: 1622 / 1525,
  17206. bottom: 0.015
  17207. }
  17208. },
  17209. hoodie: {
  17210. height: math.unit(6, "feet"),
  17211. weight: math.unit(150, "lb"),
  17212. name: "Hoodie",
  17213. image: {
  17214. source: "./media/characters/pandora/hoodie.svg",
  17215. extra: 1622 / 1525,
  17216. bottom: 0.015
  17217. }
  17218. },
  17219. casual: {
  17220. height: math.unit(6, "feet"),
  17221. weight: math.unit(150, "lb"),
  17222. name: "Casual",
  17223. image: {
  17224. source: "./media/characters/pandora/casual.svg",
  17225. extra: 1622 / 1525,
  17226. bottom: 0.015
  17227. }
  17228. },
  17229. },
  17230. [
  17231. {
  17232. name: "Normal",
  17233. height: math.unit(6, "feet")
  17234. },
  17235. {
  17236. name: "Big Steppy",
  17237. height: math.unit(1, "km"),
  17238. default: true
  17239. },
  17240. {
  17241. name: "Galactic Steppy",
  17242. height: math.unit(2, "gigameters")
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17248. {
  17249. side: {
  17250. height: math.unit(10, "feet"),
  17251. weight: math.unit(800, "kg"),
  17252. name: "Side",
  17253. image: {
  17254. source: "./media/characters/venio-darcony/side.svg",
  17255. extra: 1373 / 1003,
  17256. bottom: 0.037
  17257. }
  17258. },
  17259. front: {
  17260. height: math.unit(19, "feet"),
  17261. weight: math.unit(800, "kg"),
  17262. name: "Front",
  17263. image: {
  17264. source: "./media/characters/venio-darcony/front.svg"
  17265. }
  17266. },
  17267. back: {
  17268. height: math.unit(19, "feet"),
  17269. weight: math.unit(800, "kg"),
  17270. name: "Back",
  17271. image: {
  17272. source: "./media/characters/venio-darcony/back.svg"
  17273. }
  17274. },
  17275. sideNsfw: {
  17276. height: math.unit(10, "feet"),
  17277. weight: math.unit(800, "kg"),
  17278. name: "Side (NSFW)",
  17279. image: {
  17280. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17281. extra: 1373 / 1003,
  17282. bottom: 0.037
  17283. }
  17284. },
  17285. frontNsfw: {
  17286. height: math.unit(19, "feet"),
  17287. weight: math.unit(800, "kg"),
  17288. name: "Front (NSFW)",
  17289. image: {
  17290. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17291. }
  17292. },
  17293. backNsfw: {
  17294. height: math.unit(19, "feet"),
  17295. weight: math.unit(800, "kg"),
  17296. name: "Back (NSFW)",
  17297. image: {
  17298. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17299. }
  17300. },
  17301. sideArmored: {
  17302. height: math.unit(10, "feet"),
  17303. weight: math.unit(800, "kg"),
  17304. name: "Side (Armored)",
  17305. image: {
  17306. source: "./media/characters/venio-darcony/side-armored.svg",
  17307. extra: 1373 / 1003,
  17308. bottom: 0.037
  17309. }
  17310. },
  17311. frontArmored: {
  17312. height: math.unit(19, "feet"),
  17313. weight: math.unit(900, "kg"),
  17314. name: "Front (Armored)",
  17315. image: {
  17316. source: "./media/characters/venio-darcony/front-armored.svg"
  17317. }
  17318. },
  17319. backArmored: {
  17320. height: math.unit(19, "feet"),
  17321. weight: math.unit(900, "kg"),
  17322. name: "Back (Armored)",
  17323. image: {
  17324. source: "./media/characters/venio-darcony/back-armored.svg"
  17325. }
  17326. },
  17327. sword: {
  17328. height: math.unit(10, "feet"),
  17329. weight: math.unit(50, "lb"),
  17330. name: "Sword",
  17331. image: {
  17332. source: "./media/characters/venio-darcony/sword.svg"
  17333. }
  17334. },
  17335. },
  17336. [
  17337. {
  17338. name: "Normal",
  17339. height: math.unit(10, "feet")
  17340. },
  17341. {
  17342. name: "Macro",
  17343. height: math.unit(130, "feet"),
  17344. default: true
  17345. },
  17346. {
  17347. name: "Macro+",
  17348. height: math.unit(240, "feet")
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(6, "feet"),
  17357. weight: math.unit(150, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/veski/front.svg",
  17361. extra: 1299 / 1225,
  17362. bottom: 0.04
  17363. }
  17364. },
  17365. back: {
  17366. height: math.unit(6, "feet"),
  17367. weight: math.unit(150, "lb"),
  17368. name: "Back",
  17369. image: {
  17370. source: "./media/characters/veski/back.svg",
  17371. extra: 1299 / 1225,
  17372. bottom: 0.008
  17373. }
  17374. },
  17375. maw: {
  17376. height: math.unit(1.5 * 1.21, "feet"),
  17377. name: "Maw",
  17378. image: {
  17379. source: "./media/characters/veski/maw.svg"
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Macro",
  17386. height: math.unit(2, "km"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(5 + 7 / 12, "feet"),
  17396. name: "Front",
  17397. image: {
  17398. source: "./media/characters/isabelle/front.svg",
  17399. extra: 2130 / 1976,
  17400. bottom: 0.05
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Supermicro",
  17407. height: math.unit(10, "micrometers")
  17408. },
  17409. {
  17410. name: "Micro",
  17411. height: math.unit(1, "inch")
  17412. },
  17413. {
  17414. name: "Tiny",
  17415. height: math.unit(5, "inches")
  17416. },
  17417. {
  17418. name: "Standard",
  17419. height: math.unit(5 + 7 / 12, "inches")
  17420. },
  17421. {
  17422. name: "Macro",
  17423. height: math.unit(80, "meters"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Megamacro",
  17428. height: math.unit(250, "meters")
  17429. },
  17430. {
  17431. name: "Gigamacro",
  17432. height: math.unit(5, "km")
  17433. },
  17434. {
  17435. name: "Cosmic",
  17436. height: math.unit(2.5e6, "miles")
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(150, "lb"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/hanzo/front.svg",
  17449. extra: 374 / 344,
  17450. bottom: 0.02
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(8, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(7, "feet"),
  17467. weight: math.unit(130, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/anna/front.svg",
  17471. extra: 169 / 145,
  17472. bottom: 0.06
  17473. }
  17474. },
  17475. full: {
  17476. height: math.unit(4.96, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Full",
  17479. image: {
  17480. source: "./media/characters/anna/full.svg",
  17481. extra: 138 / 114,
  17482. bottom: 0.15
  17483. }
  17484. },
  17485. tongue: {
  17486. height: math.unit(2.53, "feet"),
  17487. name: "Tongue",
  17488. image: {
  17489. source: "./media/characters/anna/tongue.svg"
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(7, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17503. {
  17504. front: {
  17505. height: math.unit(7, "feet"),
  17506. weight: math.unit(150, "lb"),
  17507. name: "Front",
  17508. image: {
  17509. source: "./media/characters/ian-corvid/front.svg",
  17510. extra: 150 / 142,
  17511. bottom: 0.02
  17512. }
  17513. },
  17514. back: {
  17515. height: math.unit(7, "feet"),
  17516. weight: math.unit(150, "lb"),
  17517. name: "Back",
  17518. image: {
  17519. source: "./media/characters/ian-corvid/back.svg",
  17520. extra: 150 / 143,
  17521. bottom: 0.01
  17522. }
  17523. },
  17524. stomping: {
  17525. height: math.unit(7, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Stomping",
  17528. image: {
  17529. source: "./media/characters/ian-corvid/stomping.svg",
  17530. extra: 76 / 72
  17531. }
  17532. },
  17533. sitting: {
  17534. height: math.unit(7 / 1.8, "feet"),
  17535. weight: math.unit(150, "lb"),
  17536. name: "Sitting",
  17537. image: {
  17538. source: "./media/characters/ian-corvid/sitting.svg",
  17539. extra: 1400 / 1269,
  17540. bottom: 0.15
  17541. }
  17542. },
  17543. },
  17544. [
  17545. {
  17546. name: "Tiny Microw",
  17547. height: math.unit(1, "inch")
  17548. },
  17549. {
  17550. name: "Microw",
  17551. height: math.unit(6, "inches")
  17552. },
  17553. {
  17554. name: "Crow",
  17555. height: math.unit(7 + 1 / 12, "feet"),
  17556. default: true
  17557. },
  17558. {
  17559. name: "Macrow",
  17560. height: math.unit(176, "feet")
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(5 + 7 / 12, "feet"),
  17569. weight: math.unit(147, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/natalie-kellon/front.svg",
  17573. extra: 1214 / 1141,
  17574. bottom: 0.02
  17575. }
  17576. },
  17577. },
  17578. [
  17579. {
  17580. name: "Micro",
  17581. height: math.unit(1 / 16, "inch")
  17582. },
  17583. {
  17584. name: "Tiny",
  17585. height: math.unit(4, "inches")
  17586. },
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(5 + 7 / 12, "feet"),
  17590. default: true
  17591. },
  17592. {
  17593. name: "Amazon",
  17594. height: math.unit(12, "feet")
  17595. },
  17596. {
  17597. name: "Giantess",
  17598. height: math.unit(160, "meters")
  17599. },
  17600. {
  17601. name: "Titaness",
  17602. height: math.unit(800, "meters")
  17603. },
  17604. ]
  17605. ))
  17606. characterMakers.push(() => makeCharacter(
  17607. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17608. {
  17609. front: {
  17610. height: math.unit(6, "feet"),
  17611. weight: math.unit(150, "lb"),
  17612. name: "Front",
  17613. image: {
  17614. source: "./media/characters/alluria/front.svg",
  17615. extra: 806 / 738,
  17616. bottom: 0.01
  17617. }
  17618. },
  17619. side: {
  17620. height: math.unit(6, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Side",
  17623. image: {
  17624. source: "./media/characters/alluria/side.svg",
  17625. extra: 800 / 750,
  17626. }
  17627. },
  17628. back: {
  17629. height: math.unit(6, "feet"),
  17630. weight: math.unit(150, "lb"),
  17631. name: "Back",
  17632. image: {
  17633. source: "./media/characters/alluria/back.svg",
  17634. extra: 806 / 738,
  17635. }
  17636. },
  17637. frontMaid: {
  17638. height: math.unit(6, "feet"),
  17639. weight: math.unit(150, "lb"),
  17640. name: "Front (Maid)",
  17641. image: {
  17642. source: "./media/characters/alluria/front-maid.svg",
  17643. extra: 806 / 738,
  17644. bottom: 0.01
  17645. }
  17646. },
  17647. sideMaid: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(150, "lb"),
  17650. name: "Side (Maid)",
  17651. image: {
  17652. source: "./media/characters/alluria/side-maid.svg",
  17653. extra: 800 / 750,
  17654. bottom: 0.005
  17655. }
  17656. },
  17657. backMaid: {
  17658. height: math.unit(6, "feet"),
  17659. weight: math.unit(150, "lb"),
  17660. name: "Back (Maid)",
  17661. image: {
  17662. source: "./media/characters/alluria/back-maid.svg",
  17663. extra: 806 / 738,
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Micro",
  17670. height: math.unit(6, "inches"),
  17671. default: true
  17672. },
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(150, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/kyle/front.svg",
  17684. extra: 1069 / 962,
  17685. bottom: 77.228 / 1727.45
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Macro",
  17692. height: math.unit(150, "feet"),
  17693. default: true
  17694. },
  17695. ]
  17696. ))
  17697. characterMakers.push(() => makeCharacter(
  17698. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17699. {
  17700. front: {
  17701. height: math.unit(6, "feet"),
  17702. weight: math.unit(300, "lb"),
  17703. name: "Front",
  17704. image: {
  17705. source: "./media/characters/duncan/front.svg",
  17706. extra: 1650 / 1482,
  17707. bottom: 0.05
  17708. }
  17709. },
  17710. },
  17711. [
  17712. {
  17713. name: "Macro",
  17714. height: math.unit(100, "feet"),
  17715. default: true
  17716. },
  17717. ]
  17718. ))
  17719. characterMakers.push(() => makeCharacter(
  17720. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17721. {
  17722. front: {
  17723. height: math.unit(5 + 4 / 12, "feet"),
  17724. weight: math.unit(220, "lb"),
  17725. name: "Front",
  17726. image: {
  17727. source: "./media/characters/memory/front.svg",
  17728. extra: 3641 / 3545,
  17729. bottom: 0.03
  17730. }
  17731. },
  17732. back: {
  17733. height: math.unit(5 + 4 / 12, "feet"),
  17734. weight: math.unit(220, "lb"),
  17735. name: "Back",
  17736. image: {
  17737. source: "./media/characters/memory/back.svg",
  17738. extra: 3641 / 3545,
  17739. bottom: 0.025
  17740. }
  17741. },
  17742. frontSkirt: {
  17743. height: math.unit(5 + 4 / 12, "feet"),
  17744. weight: math.unit(220, "lb"),
  17745. name: "Front (Skirt)",
  17746. image: {
  17747. source: "./media/characters/memory/front-skirt.svg",
  17748. extra: 3641 / 3545,
  17749. bottom: 0.03
  17750. }
  17751. },
  17752. frontDress: {
  17753. height: math.unit(5 + 4 / 12, "feet"),
  17754. weight: math.unit(220, "lb"),
  17755. name: "Front (Dress)",
  17756. image: {
  17757. source: "./media/characters/memory/front-dress.svg",
  17758. extra: 3641 / 3545,
  17759. bottom: 0.03
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Micro",
  17766. height: math.unit(6, "inches"),
  17767. default: true
  17768. },
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(5 + 4 / 12, "feet")
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(4 + 11 / 12, "feet"),
  17780. weight: math.unit(100, "lb"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/luno/front.svg",
  17784. extra: 1535 / 1487,
  17785. bottom: 0.03
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Micro",
  17792. height: math.unit(3, "inches")
  17793. },
  17794. {
  17795. name: "Normal",
  17796. height: math.unit(4 + 11 / 12, "feet"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Macro",
  17801. height: math.unit(300, "feet")
  17802. },
  17803. {
  17804. name: "Megamacro",
  17805. height: math.unit(700, "miles")
  17806. },
  17807. ]
  17808. ))
  17809. characterMakers.push(() => makeCharacter(
  17810. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17811. {
  17812. front: {
  17813. height: math.unit(6 + 2 / 12, "feet"),
  17814. weight: math.unit(170, "lb"),
  17815. name: "Front",
  17816. image: {
  17817. source: "./media/characters/jamesy/front.svg",
  17818. extra: 440 / 382,
  17819. bottom: 0.005
  17820. }
  17821. },
  17822. },
  17823. [
  17824. {
  17825. name: "Micro",
  17826. height: math.unit(3, "inches")
  17827. },
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(6 + 2 / 12, "feet"),
  17831. default: true
  17832. },
  17833. {
  17834. name: "Macro",
  17835. height: math.unit(300, "feet")
  17836. },
  17837. {
  17838. name: "Megamacro",
  17839. height: math.unit(700, "miles")
  17840. },
  17841. ]
  17842. ))
  17843. characterMakers.push(() => makeCharacter(
  17844. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17845. {
  17846. front: {
  17847. height: math.unit(6, "feet"),
  17848. weight: math.unit(160, "lb"),
  17849. name: "Front",
  17850. image: {
  17851. source: "./media/characters/mark/front.svg",
  17852. extra: 3300 / 3100,
  17853. bottom: 136.42 / 3440.47
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Macro",
  17860. height: math.unit(120, "meters")
  17861. },
  17862. {
  17863. name: "Bigger Macro",
  17864. height: math.unit(350, "meters")
  17865. },
  17866. {
  17867. name: "Megamacro",
  17868. height: math.unit(8, "km"),
  17869. default: true
  17870. },
  17871. {
  17872. name: "Continental",
  17873. height: math.unit(4550, "km")
  17874. },
  17875. {
  17876. name: "Planetary",
  17877. height: math.unit(65000, "km")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(6, "feet"),
  17886. weight: math.unit(400, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/mac/front.svg",
  17890. extra: 1048 / 987.7,
  17891. bottom: 60 / 1107.6,
  17892. }
  17893. },
  17894. },
  17895. [
  17896. {
  17897. name: "Macro",
  17898. height: math.unit(500, "feet"),
  17899. default: true
  17900. },
  17901. ]
  17902. ))
  17903. characterMakers.push(() => makeCharacter(
  17904. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17905. {
  17906. front: {
  17907. height: math.unit(5 + 2 / 12, "feet"),
  17908. weight: math.unit(190, "lb"),
  17909. name: "Front",
  17910. image: {
  17911. source: "./media/characters/bari/front.svg",
  17912. extra: 3156 / 2880,
  17913. bottom: 0.03
  17914. }
  17915. },
  17916. back: {
  17917. height: math.unit(5 + 2 / 12, "feet"),
  17918. weight: math.unit(190, "lb"),
  17919. name: "Back",
  17920. image: {
  17921. source: "./media/characters/bari/back.svg",
  17922. extra: 3260 / 2834,
  17923. bottom: 0.025
  17924. }
  17925. },
  17926. frontPlush: {
  17927. height: math.unit(5 + 2 / 12, "feet"),
  17928. weight: math.unit(190, "lb"),
  17929. name: "Front (Plush)",
  17930. image: {
  17931. source: "./media/characters/bari/front-plush.svg",
  17932. extra: 1112 / 1061,
  17933. bottom: 0.002
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(3, "inches")
  17941. },
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(5 + 2 / 12, "feet"),
  17945. default: true
  17946. },
  17947. {
  17948. name: "Macro",
  17949. height: math.unit(20, "feet")
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(6 + 1 / 12, "feet"),
  17958. weight: math.unit(275, "lb"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/hunter-misha-raven/front.svg"
  17962. }
  17963. },
  17964. },
  17965. [
  17966. {
  17967. name: "Mortal",
  17968. height: math.unit(6 + 1 / 12, "feet")
  17969. },
  17970. {
  17971. name: "Divine",
  17972. height: math.unit(1.12134e34, "parsecs"),
  17973. default: true
  17974. },
  17975. ]
  17976. ))
  17977. characterMakers.push(() => makeCharacter(
  17978. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17979. {
  17980. front: {
  17981. height: math.unit(6 + 3 / 12, "feet"),
  17982. weight: math.unit(220, "lb"),
  17983. name: "Front",
  17984. image: {
  17985. source: "./media/characters/max-calore/front.svg",
  17986. extra: 1700 / 1648,
  17987. bottom: 0.01
  17988. }
  17989. },
  17990. back: {
  17991. height: math.unit(6 + 3 / 12, "feet"),
  17992. weight: math.unit(220, "lb"),
  17993. name: "Back",
  17994. image: {
  17995. source: "./media/characters/max-calore/back.svg",
  17996. extra: 1700 / 1648,
  17997. bottom: 0.01
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(6 + 3 / 12, "feet"),
  18005. default: true
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18011. {
  18012. side: {
  18013. height: math.unit(2 + 8 / 12, "feet"),
  18014. weight: math.unit(99, "lb"),
  18015. name: "Side",
  18016. image: {
  18017. source: "./media/characters/aspen/side.svg",
  18018. extra: 152 / 138,
  18019. bottom: 0.032
  18020. }
  18021. },
  18022. },
  18023. [
  18024. {
  18025. name: "Normal",
  18026. height: math.unit(2 + 8 / 12, "feet"),
  18027. default: true
  18028. },
  18029. ]
  18030. ))
  18031. characterMakers.push(() => makeCharacter(
  18032. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18033. {
  18034. side: {
  18035. height: math.unit(3 + 2 / 12, "feet"),
  18036. weight: math.unit(224, "lb"),
  18037. name: "Side",
  18038. image: {
  18039. source: "./media/characters/sheila-feral-wolf/side.svg",
  18040. extra: 179 / 166,
  18041. bottom: 0.03
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Normal",
  18048. height: math.unit(3 + 2 / 12, "feet"),
  18049. default: true
  18050. },
  18051. ]
  18052. ))
  18053. characterMakers.push(() => makeCharacter(
  18054. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18055. {
  18056. side: {
  18057. height: math.unit(1 + 9 / 12, "feet"),
  18058. weight: math.unit(38, "lb"),
  18059. name: "Side",
  18060. image: {
  18061. source: "./media/characters/michelle/side.svg",
  18062. extra: 147 / 136.7,
  18063. bottom: 0.03
  18064. }
  18065. },
  18066. },
  18067. [
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(1 + 9 / 12, "feet"),
  18071. default: true
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(1.54, "feet"),
  18080. weight: math.unit(50, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/nino/front.svg"
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(1.54, "feet"),
  18091. default: true
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(1.49, "feet"),
  18100. weight: math.unit(45, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/viola/front.svg"
  18104. }
  18105. },
  18106. },
  18107. [
  18108. {
  18109. name: "Normal",
  18110. height: math.unit(1.49, "feet"),
  18111. default: true
  18112. },
  18113. ]
  18114. ))
  18115. characterMakers.push(() => makeCharacter(
  18116. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18117. {
  18118. front: {
  18119. height: math.unit(6 + 5 / 12, "feet"),
  18120. weight: math.unit(580, "lb"),
  18121. name: "Front",
  18122. image: {
  18123. source: "./media/characters/atlas/front.svg",
  18124. extra: 298.5 / 290,
  18125. bottom: 0.015
  18126. }
  18127. },
  18128. },
  18129. [
  18130. {
  18131. name: "Normal",
  18132. height: math.unit(6 + 5 / 12, "feet"),
  18133. default: true
  18134. },
  18135. ]
  18136. ))
  18137. characterMakers.push(() => makeCharacter(
  18138. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18139. {
  18140. side: {
  18141. height: math.unit(15.6, "inches"),
  18142. weight: math.unit(10, "lb"),
  18143. name: "Side",
  18144. image: {
  18145. source: "./media/characters/davy/side.svg",
  18146. extra: 200 / 170,
  18147. bottom: 0.01
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(15.6, "inches"),
  18155. default: true
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18161. {
  18162. side: {
  18163. height: math.unit(4 + 8 / 12, "feet"),
  18164. weight: math.unit(166, "lb"),
  18165. name: "Side",
  18166. image: {
  18167. source: "./media/characters/fiona/side.svg",
  18168. extra: 232 / 220,
  18169. bottom: 0.03
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Normal",
  18176. height: math.unit(4 + 8 / 12, "feet"),
  18177. default: true
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18183. {
  18184. front: {
  18185. height: math.unit(26, "inches"),
  18186. weight: math.unit(35, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/lyla/front.svg",
  18190. bottom: 0.1
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(3, "feet"),
  18198. default: true
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18204. {
  18205. side: {
  18206. height: math.unit(1.8, "feet"),
  18207. weight: math.unit(44, "lb"),
  18208. name: "Side",
  18209. image: {
  18210. source: "./media/characters/perseus/side.svg",
  18211. bottom: 0.21
  18212. }
  18213. },
  18214. },
  18215. [
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(1.8, "feet"),
  18219. default: true
  18220. },
  18221. ]
  18222. ))
  18223. characterMakers.push(() => makeCharacter(
  18224. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18225. {
  18226. side: {
  18227. height: math.unit(4 + 2 / 12, "feet"),
  18228. weight: math.unit(20, "lb"),
  18229. name: "Side",
  18230. image: {
  18231. source: "./media/characters/remus/side.svg"
  18232. }
  18233. },
  18234. },
  18235. [
  18236. {
  18237. name: "Normal",
  18238. height: math.unit(4 + 2 / 12, "feet"),
  18239. default: true
  18240. },
  18241. ]
  18242. ))
  18243. characterMakers.push(() => makeCharacter(
  18244. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18245. {
  18246. front: {
  18247. height: math.unit(4 + 11 / 12, "feet"),
  18248. weight: math.unit(114, "lb"),
  18249. name: "Front",
  18250. image: {
  18251. source: "./media/characters/raf/front.svg",
  18252. extra: 1504/1339,
  18253. bottom: 26/1530
  18254. }
  18255. },
  18256. side: {
  18257. height: math.unit(4 + 11 / 12, "feet"),
  18258. weight: math.unit(114, "lb"),
  18259. name: "Side",
  18260. image: {
  18261. source: "./media/characters/raf/side.svg",
  18262. extra: 1466/1316,
  18263. bottom: 29/1495
  18264. }
  18265. },
  18266. paw: {
  18267. height: math.unit(1.45, "feet"),
  18268. name: "Paw",
  18269. image: {
  18270. source: "./media/characters/raf/paw.svg"
  18271. },
  18272. extraAttributes: {
  18273. "toeSize": {
  18274. name: "Toe Size",
  18275. power: 2,
  18276. type: "area",
  18277. base: math.unit(0.004, "m^2")
  18278. },
  18279. "padSize": {
  18280. name: "Pad Size",
  18281. power: 2,
  18282. type: "area",
  18283. base: math.unit(0.04, "m^2")
  18284. },
  18285. "footSize": {
  18286. name: "Foot Size",
  18287. power: 2,
  18288. type: "area",
  18289. base: math.unit(0.08, "m^2")
  18290. },
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Micro",
  18297. height: math.unit(2, "inches")
  18298. },
  18299. {
  18300. name: "Normal",
  18301. height: math.unit(4 + 11 / 12, "feet"),
  18302. default: true
  18303. },
  18304. {
  18305. name: "Macro",
  18306. height: math.unit(70, "feet")
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(1.5, "meters"),
  18315. weight: math.unit(68, "kg"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/liam-einarr/front.svg",
  18319. extra: 2822 / 2666
  18320. }
  18321. },
  18322. back: {
  18323. height: math.unit(1.5, "meters"),
  18324. weight: math.unit(68, "kg"),
  18325. name: "Back",
  18326. image: {
  18327. source: "./media/characters/liam-einarr/back.svg",
  18328. extra: 2822 / 2666,
  18329. bottom: 0.015
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(1.5, "meters"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Macro",
  18341. height: math.unit(150, "meters")
  18342. },
  18343. {
  18344. name: "Megamacro",
  18345. height: math.unit(35, "km")
  18346. },
  18347. ]
  18348. ))
  18349. characterMakers.push(() => makeCharacter(
  18350. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18351. {
  18352. front: {
  18353. height: math.unit(6, "feet"),
  18354. weight: math.unit(75, "kg"),
  18355. name: "Front",
  18356. image: {
  18357. source: "./media/characters/linda/front.svg",
  18358. extra: 930 / 874,
  18359. bottom: 0.004
  18360. }
  18361. },
  18362. },
  18363. [
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(6, "feet"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(6 + 8 / 12, "feet"),
  18376. weight: math.unit(220, "lb"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/caylex/front.svg",
  18380. extra: 821 / 772,
  18381. bottom: 0.07
  18382. }
  18383. },
  18384. back: {
  18385. height: math.unit(6 + 8 / 12, "feet"),
  18386. weight: math.unit(220, "lb"),
  18387. name: "Back",
  18388. image: {
  18389. source: "./media/characters/caylex/back.svg",
  18390. extra: 821 / 772,
  18391. bottom: 0.022
  18392. }
  18393. },
  18394. hand: {
  18395. height: math.unit(1.25, "feet"),
  18396. name: "Hand",
  18397. image: {
  18398. source: "./media/characters/caylex/hand.svg"
  18399. }
  18400. },
  18401. foot: {
  18402. height: math.unit(1.6, "feet"),
  18403. name: "Foot",
  18404. image: {
  18405. source: "./media/characters/caylex/foot.svg"
  18406. }
  18407. },
  18408. armored: {
  18409. height: math.unit(6 + 8 / 12, "feet"),
  18410. weight: math.unit(250, "lb"),
  18411. name: "Armored",
  18412. image: {
  18413. source: "./media/characters/caylex/armored.svg",
  18414. extra: 1420 / 1310,
  18415. bottom: 0.045
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Normal",
  18422. height: math.unit(6 + 8 / 12, "feet"),
  18423. default: true
  18424. },
  18425. {
  18426. name: "Normal+",
  18427. height: math.unit(12, "feet")
  18428. },
  18429. ]
  18430. ))
  18431. characterMakers.push(() => makeCharacter(
  18432. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18433. {
  18434. front: {
  18435. height: math.unit(7 + 6 / 12, "feet"),
  18436. weight: math.unit(288, "lb"),
  18437. name: "Front",
  18438. image: {
  18439. source: "./media/characters/alana/front.svg",
  18440. extra: 679 / 653,
  18441. bottom: 22.5 / 701
  18442. }
  18443. },
  18444. },
  18445. [
  18446. {
  18447. name: "Normal",
  18448. height: math.unit(7 + 6 / 12, "feet")
  18449. },
  18450. {
  18451. name: "Large",
  18452. height: math.unit(50, "feet")
  18453. },
  18454. {
  18455. name: "Macro",
  18456. height: math.unit(100, "feet"),
  18457. default: true
  18458. },
  18459. {
  18460. name: "Macro+",
  18461. height: math.unit(200, "feet")
  18462. },
  18463. ]
  18464. ))
  18465. characterMakers.push(() => makeCharacter(
  18466. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18467. {
  18468. front: {
  18469. height: math.unit(6 + 1 / 12, "feet"),
  18470. weight: math.unit(210, "lb"),
  18471. name: "Front",
  18472. image: {
  18473. source: "./media/characters/hasani/front.svg",
  18474. extra: 244 / 232,
  18475. bottom: 0.01
  18476. }
  18477. },
  18478. back: {
  18479. height: math.unit(6 + 1 / 12, "feet"),
  18480. weight: math.unit(210, "lb"),
  18481. name: "Back",
  18482. image: {
  18483. source: "./media/characters/hasani/back.svg",
  18484. extra: 244 / 232,
  18485. bottom: 0.01
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Normal",
  18492. height: math.unit(6 + 1 / 12, "feet")
  18493. },
  18494. {
  18495. name: "Macro",
  18496. height: math.unit(175, "feet"),
  18497. default: true
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(1.82, "meters"),
  18506. weight: math.unit(140, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/nita/front.svg",
  18510. extra: 2473 / 2363,
  18511. bottom: 0.01
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Normal",
  18518. height: math.unit(1.82, "m")
  18519. },
  18520. {
  18521. name: "Macro",
  18522. height: math.unit(300, "m")
  18523. },
  18524. {
  18525. name: "Mistake Canon",
  18526. height: math.unit(0.5, "miles"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Big Mistake",
  18531. height: math.unit(13, "miles")
  18532. },
  18533. {
  18534. name: "Playing God",
  18535. height: math.unit(2450, "miles")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18541. {
  18542. front: {
  18543. height: math.unit(4, "feet"),
  18544. weight: math.unit(120, "lb"),
  18545. name: "Front",
  18546. image: {
  18547. source: "./media/characters/shiriko/front.svg",
  18548. extra: 970/934,
  18549. bottom: 5/975
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(4, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18563. {
  18564. front: {
  18565. height: math.unit(6, "feet"),
  18566. name: "front",
  18567. image: {
  18568. source: "./media/characters/deja/front.svg",
  18569. extra: 926 / 840,
  18570. bottom: 0.07
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Planck Length",
  18577. height: math.unit(1.6e-35, "meters")
  18578. },
  18579. {
  18580. name: "Normal",
  18581. height: math.unit(30.48, "meters"),
  18582. default: true
  18583. },
  18584. {
  18585. name: "Universal",
  18586. height: math.unit(8.8e26, "meters")
  18587. },
  18588. ]
  18589. ))
  18590. characterMakers.push(() => makeCharacter(
  18591. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18592. {
  18593. side: {
  18594. height: math.unit(8, "feet"),
  18595. weight: math.unit(6300, "lb"),
  18596. name: "Side",
  18597. image: {
  18598. source: "./media/characters/anima/side.svg",
  18599. bottom: 0.035
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Normal",
  18606. height: math.unit(8, "feet"),
  18607. default: true
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(8, "feet"),
  18616. weight: math.unit(350, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/bianca/front.svg",
  18620. extra: 234 / 225,
  18621. bottom: 0.03
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Normal",
  18628. height: math.unit(8, "feet"),
  18629. default: true
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18635. {
  18636. front: {
  18637. height: math.unit(11 + 5/12, "feet"),
  18638. weight: math.unit(1200, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/adinia/front.svg",
  18642. extra: 1767/1641,
  18643. bottom: 44/1811
  18644. },
  18645. extraAttributes: {
  18646. "energyIntake": {
  18647. name: "Energy Intake",
  18648. power: 3,
  18649. type: "energy",
  18650. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18651. },
  18652. }
  18653. },
  18654. back: {
  18655. height: math.unit(11 + 5/12, "feet"),
  18656. weight: math.unit(1200, "lb"),
  18657. name: "Back",
  18658. image: {
  18659. source: "./media/characters/adinia/back.svg",
  18660. extra: 1834/1684,
  18661. bottom: 14/1848
  18662. },
  18663. extraAttributes: {
  18664. "energyIntake": {
  18665. name: "Energy Intake",
  18666. power: 3,
  18667. type: "energy",
  18668. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18669. },
  18670. }
  18671. },
  18672. maw: {
  18673. height: math.unit(3.79, "feet"),
  18674. name: "Maw",
  18675. image: {
  18676. source: "./media/characters/adinia/maw.svg"
  18677. }
  18678. },
  18679. rump: {
  18680. height: math.unit(4.6, "feet"),
  18681. name: "Rump",
  18682. image: {
  18683. source: "./media/characters/adinia/rump.svg"
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Normal",
  18690. height: math.unit(11 + 5 / 12, "feet"),
  18691. default: true
  18692. },
  18693. ]
  18694. ))
  18695. characterMakers.push(() => makeCharacter(
  18696. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18697. {
  18698. front: {
  18699. height: math.unit(3, "meters"),
  18700. weight: math.unit(200, "kg"),
  18701. name: "Front",
  18702. image: {
  18703. source: "./media/characters/lykasa/front.svg",
  18704. extra: 1076 / 976,
  18705. bottom: 0.06
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(3, "meters")
  18713. },
  18714. {
  18715. name: "Kaiju",
  18716. height: math.unit(120, "meters"),
  18717. default: true
  18718. },
  18719. {
  18720. name: "Mega Kaiju",
  18721. height: math.unit(240, "km")
  18722. },
  18723. {
  18724. name: "Giga Kaiju",
  18725. height: math.unit(400, "megameters")
  18726. },
  18727. {
  18728. name: "Tera Kaiju",
  18729. height: math.unit(800, "gigameters")
  18730. },
  18731. {
  18732. name: "Kaiju Dragon Goddess",
  18733. height: math.unit(26, "zettaparsecs")
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18739. {
  18740. side: {
  18741. height: math.unit(283 / 124 * 6, "feet"),
  18742. weight: math.unit(35000, "lb"),
  18743. name: "Side",
  18744. image: {
  18745. source: "./media/characters/malfaren/side.svg",
  18746. extra: 1310/529,
  18747. bottom: 24/1334
  18748. }
  18749. },
  18750. front: {
  18751. height: math.unit(22.36, "feet"),
  18752. weight: math.unit(35000, "lb"),
  18753. name: "Front",
  18754. image: {
  18755. source: "./media/characters/malfaren/front.svg",
  18756. extra: 1237/1115,
  18757. bottom: 32/1269
  18758. }
  18759. },
  18760. maw: {
  18761. height: math.unit(6.9, "feet"),
  18762. name: "Maw",
  18763. image: {
  18764. source: "./media/characters/malfaren/maw.svg"
  18765. }
  18766. },
  18767. dick: {
  18768. height: math.unit(6.19, "feet"),
  18769. name: "Dick",
  18770. image: {
  18771. source: "./media/characters/malfaren/dick.svg"
  18772. }
  18773. },
  18774. eye: {
  18775. height: math.unit(0.69, "feet"),
  18776. name: "Eye",
  18777. image: {
  18778. source: "./media/characters/malfaren/eye.svg"
  18779. }
  18780. },
  18781. },
  18782. [
  18783. {
  18784. name: "Big",
  18785. height: math.unit(283 / 162 * 6, "feet"),
  18786. },
  18787. {
  18788. name: "Bigger",
  18789. height: math.unit(283 / 124 * 6, "feet")
  18790. },
  18791. {
  18792. name: "Massive",
  18793. height: math.unit(283 / 92 * 6, "feet"),
  18794. default: true
  18795. },
  18796. {
  18797. name: "👀💦",
  18798. height: math.unit(283 / 73 * 6, "feet"),
  18799. },
  18800. ]
  18801. ))
  18802. characterMakers.push(() => makeCharacter(
  18803. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18804. {
  18805. front: {
  18806. height: math.unit(1.7, "m"),
  18807. weight: math.unit(70, "kg"),
  18808. name: "Front",
  18809. image: {
  18810. source: "./media/characters/kernel/front.svg",
  18811. extra: 222 / 210,
  18812. bottom: 0.007
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Nano",
  18819. height: math.unit(17, "micrometers")
  18820. },
  18821. {
  18822. name: "Micro",
  18823. height: math.unit(1.7, "mm")
  18824. },
  18825. {
  18826. name: "Small",
  18827. height: math.unit(1.7, "cm")
  18828. },
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(1.7, "m"),
  18832. default: true
  18833. },
  18834. ]
  18835. ))
  18836. characterMakers.push(() => makeCharacter(
  18837. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18838. {
  18839. front: {
  18840. height: math.unit(1.75, "meters"),
  18841. weight: math.unit(65, "kg"),
  18842. name: "Front",
  18843. image: {
  18844. source: "./media/characters/jayne-folest/front.svg",
  18845. extra: 2115 / 2007,
  18846. bottom: 0.02
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(1.75, "meters"),
  18851. weight: math.unit(65, "kg"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/jayne-folest/back.svg",
  18855. extra: 2115 / 2007,
  18856. bottom: 0.005
  18857. }
  18858. },
  18859. frontClothed: {
  18860. height: math.unit(1.75, "meters"),
  18861. weight: math.unit(65, "kg"),
  18862. name: "Front (Clothed)",
  18863. image: {
  18864. source: "./media/characters/jayne-folest/front-clothed.svg",
  18865. extra: 2115 / 2007,
  18866. bottom: 0.035
  18867. }
  18868. },
  18869. hand: {
  18870. height: math.unit(1 / 1.260, "feet"),
  18871. name: "Hand",
  18872. image: {
  18873. source: "./media/characters/jayne-folest/hand.svg"
  18874. }
  18875. },
  18876. foot: {
  18877. height: math.unit(1 / 0.918, "feet"),
  18878. name: "Foot",
  18879. image: {
  18880. source: "./media/characters/jayne-folest/foot.svg"
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Micro",
  18887. height: math.unit(4, "cm")
  18888. },
  18889. {
  18890. name: "Normal",
  18891. height: math.unit(1.75, "meters")
  18892. },
  18893. {
  18894. name: "Macro",
  18895. height: math.unit(47.5, "meters"),
  18896. default: true
  18897. },
  18898. ]
  18899. ))
  18900. characterMakers.push(() => makeCharacter(
  18901. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18902. {
  18903. front: {
  18904. height: math.unit(180, "cm"),
  18905. weight: math.unit(70, "kg"),
  18906. name: "Front",
  18907. image: {
  18908. source: "./media/characters/algier/front.svg",
  18909. extra: 596 / 572,
  18910. bottom: 0.04
  18911. }
  18912. },
  18913. back: {
  18914. height: math.unit(180, "cm"),
  18915. weight: math.unit(70, "kg"),
  18916. name: "Back",
  18917. image: {
  18918. source: "./media/characters/algier/back.svg",
  18919. extra: 596 / 572,
  18920. bottom: 0.025
  18921. }
  18922. },
  18923. frontdressed: {
  18924. height: math.unit(180, "cm"),
  18925. weight: math.unit(150, "kg"),
  18926. name: "Front-dressed",
  18927. image: {
  18928. source: "./media/characters/algier/front-dressed.svg",
  18929. extra: 596 / 572,
  18930. bottom: 0.038
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(5, "cm")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(180, "cm"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(64, "m")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18952. {
  18953. upright: {
  18954. height: math.unit(7, "feet"),
  18955. weight: math.unit(300, "lb"),
  18956. name: "Upright",
  18957. image: {
  18958. source: "./media/characters/pretzel/upright.svg",
  18959. extra: 534 / 522,
  18960. bottom: 0.065
  18961. }
  18962. },
  18963. sprawling: {
  18964. height: math.unit(3.75, "feet"),
  18965. weight: math.unit(300, "lb"),
  18966. name: "Sprawling",
  18967. image: {
  18968. source: "./media/characters/pretzel/sprawling.svg",
  18969. extra: 314 / 281,
  18970. bottom: 0.1
  18971. }
  18972. },
  18973. tongue: {
  18974. height: math.unit(2, "feet"),
  18975. name: "Tongue",
  18976. image: {
  18977. source: "./media/characters/pretzel/tongue.svg"
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(7, "feet"),
  18985. default: true
  18986. },
  18987. {
  18988. name: "Oversized",
  18989. height: math.unit(15, "feet")
  18990. },
  18991. {
  18992. name: "Huge",
  18993. height: math.unit(30, "feet")
  18994. },
  18995. {
  18996. name: "Macro",
  18997. height: math.unit(250, "feet")
  18998. },
  18999. ]
  19000. ))
  19001. characterMakers.push(() => makeCharacter(
  19002. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19003. {
  19004. sideFront: {
  19005. height: math.unit(5 + 2 / 12, "feet"),
  19006. weight: math.unit(120, "lb"),
  19007. name: "Front Side",
  19008. image: {
  19009. source: "./media/characters/roxi/side-front.svg",
  19010. extra: 2924 / 2717,
  19011. bottom: 0.08
  19012. }
  19013. },
  19014. sideBack: {
  19015. height: math.unit(5 + 2 / 12, "feet"),
  19016. weight: math.unit(120, "lb"),
  19017. name: "Back Side",
  19018. image: {
  19019. source: "./media/characters/roxi/side-back.svg",
  19020. extra: 2904 / 2693,
  19021. bottom: 0.06
  19022. }
  19023. },
  19024. front: {
  19025. height: math.unit(5 + 2 / 12, "feet"),
  19026. weight: math.unit(120, "lb"),
  19027. name: "Front",
  19028. image: {
  19029. source: "./media/characters/roxi/front.svg",
  19030. extra: 2028 / 1907,
  19031. bottom: 0.01
  19032. }
  19033. },
  19034. frontAlt: {
  19035. height: math.unit(5 + 2 / 12, "feet"),
  19036. weight: math.unit(120, "lb"),
  19037. name: "Front (Alt)",
  19038. image: {
  19039. source: "./media/characters/roxi/front-alt.svg",
  19040. extra: 1828 / 1798,
  19041. bottom: 0.01
  19042. }
  19043. },
  19044. sitting: {
  19045. height: math.unit(2.8, "feet"),
  19046. weight: math.unit(120, "lb"),
  19047. name: "Sitting",
  19048. image: {
  19049. source: "./media/characters/roxi/sitting.svg",
  19050. extra: 2660 / 2462,
  19051. bottom: 0.1
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(5 + 2 / 12, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19065. {
  19066. side: {
  19067. height: math.unit(55, "feet"),
  19068. weight: math.unit(153, "tons"),
  19069. name: "Side",
  19070. image: {
  19071. source: "./media/characters/shadow/side.svg",
  19072. extra: 701 / 628,
  19073. bottom: 0.02
  19074. }
  19075. },
  19076. flying: {
  19077. height: math.unit(145, "feet"),
  19078. weight: math.unit(153, "tons"),
  19079. name: "Flying",
  19080. image: {
  19081. source: "./media/characters/shadow/flying.svg"
  19082. }
  19083. },
  19084. },
  19085. [
  19086. {
  19087. name: "Normal",
  19088. height: math.unit(55, "feet"),
  19089. default: true
  19090. },
  19091. ]
  19092. ))
  19093. characterMakers.push(() => makeCharacter(
  19094. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19095. {
  19096. front: {
  19097. height: math.unit(6, "feet"),
  19098. weight: math.unit(200, "lb"),
  19099. name: "Front",
  19100. image: {
  19101. source: "./media/characters/marcie/front.svg",
  19102. extra: 960 / 876,
  19103. bottom: 58 / 1017.87
  19104. }
  19105. },
  19106. },
  19107. [
  19108. {
  19109. name: "Macro",
  19110. height: math.unit(1, "mile"),
  19111. default: true
  19112. },
  19113. ]
  19114. ))
  19115. characterMakers.push(() => makeCharacter(
  19116. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19117. {
  19118. front: {
  19119. height: math.unit(7, "feet"),
  19120. weight: math.unit(200, "lb"),
  19121. name: "Front",
  19122. image: {
  19123. source: "./media/characters/kachina/front.svg",
  19124. extra: 1290.68 / 1119,
  19125. bottom: 36.5 / 1327.18
  19126. }
  19127. },
  19128. },
  19129. [
  19130. {
  19131. name: "Normal",
  19132. height: math.unit(7, "feet"),
  19133. default: true
  19134. },
  19135. ]
  19136. ))
  19137. characterMakers.push(() => makeCharacter(
  19138. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19139. {
  19140. looking: {
  19141. height: math.unit(2, "meters"),
  19142. weight: math.unit(300, "kg"),
  19143. name: "Looking",
  19144. image: {
  19145. source: "./media/characters/kash/looking.svg",
  19146. extra: 474 / 344,
  19147. bottom: 0.03
  19148. }
  19149. },
  19150. side: {
  19151. height: math.unit(2, "meters"),
  19152. weight: math.unit(300, "kg"),
  19153. name: "Side",
  19154. image: {
  19155. source: "./media/characters/kash/side.svg",
  19156. extra: 302 / 251,
  19157. bottom: 0.03
  19158. }
  19159. },
  19160. front: {
  19161. height: math.unit(2, "meters"),
  19162. weight: math.unit(300, "kg"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/kash/front.svg",
  19166. extra: 495 / 360,
  19167. bottom: 0.015
  19168. }
  19169. },
  19170. },
  19171. [
  19172. {
  19173. name: "Normal",
  19174. height: math.unit(2, "meters"),
  19175. default: true
  19176. },
  19177. {
  19178. name: "Big",
  19179. height: math.unit(3, "meters")
  19180. },
  19181. {
  19182. name: "Large",
  19183. height: math.unit(5, "meters")
  19184. },
  19185. ]
  19186. ))
  19187. characterMakers.push(() => makeCharacter(
  19188. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19189. {
  19190. feeding: {
  19191. height: math.unit(6.7, "feet"),
  19192. weight: math.unit(350, "lb"),
  19193. name: "Feeding",
  19194. image: {
  19195. source: "./media/characters/lalim/feeding.svg",
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(6.7, "feet"),
  19203. default: true
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19209. {
  19210. front: {
  19211. height: math.unit(9.5, "feet"),
  19212. weight: math.unit(600, "lb"),
  19213. name: "Front",
  19214. image: {
  19215. source: "./media/characters/de'vout/front.svg",
  19216. extra: 1443 / 1328,
  19217. bottom: 0.025
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(9.5, "feet"),
  19222. weight: math.unit(600, "lb"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/de'vout/back.svg",
  19226. extra: 1443 / 1328
  19227. }
  19228. },
  19229. frontDressed: {
  19230. height: math.unit(9.5, "feet"),
  19231. weight: math.unit(600, "lb"),
  19232. name: "Front (Dressed",
  19233. image: {
  19234. source: "./media/characters/de'vout/front-dressed.svg",
  19235. extra: 1443 / 1328,
  19236. bottom: 0.025
  19237. }
  19238. },
  19239. backDressed: {
  19240. height: math.unit(9.5, "feet"),
  19241. weight: math.unit(600, "lb"),
  19242. name: "Back (Dressed",
  19243. image: {
  19244. source: "./media/characters/de'vout/back-dressed.svg",
  19245. extra: 1443 / 1328
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(9.5, "feet"),
  19253. default: true
  19254. },
  19255. ]
  19256. ))
  19257. characterMakers.push(() => makeCharacter(
  19258. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19259. {
  19260. front: {
  19261. height: math.unit(8, "feet"),
  19262. weight: math.unit(225, "lb"),
  19263. name: "Front",
  19264. image: {
  19265. source: "./media/characters/talana/front.svg",
  19266. extra: 1410 / 1300,
  19267. bottom: 0.015
  19268. }
  19269. },
  19270. frontDressed: {
  19271. height: math.unit(8, "feet"),
  19272. weight: math.unit(225, "lb"),
  19273. name: "Front (Dressed",
  19274. image: {
  19275. source: "./media/characters/talana/front-dressed.svg",
  19276. extra: 1410 / 1300,
  19277. bottom: 0.015
  19278. }
  19279. },
  19280. },
  19281. [
  19282. {
  19283. name: "Normal",
  19284. height: math.unit(8, "feet"),
  19285. default: true
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19291. {
  19292. side: {
  19293. height: math.unit(7.2, "feet"),
  19294. weight: math.unit(150, "lb"),
  19295. name: "Side",
  19296. image: {
  19297. source: "./media/characters/xeauvok/side.svg",
  19298. extra: 1975 / 1523,
  19299. bottom: 0.07
  19300. }
  19301. },
  19302. },
  19303. [
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(7.2, "feet"),
  19307. default: true
  19308. },
  19309. ]
  19310. ))
  19311. characterMakers.push(() => makeCharacter(
  19312. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19313. {
  19314. side: {
  19315. height: math.unit(4, "meters"),
  19316. weight: math.unit(2200, "kg"),
  19317. name: "Side",
  19318. image: {
  19319. source: "./media/characters/zara/side.svg",
  19320. extra: 765/744,
  19321. bottom: 156/921
  19322. }
  19323. },
  19324. },
  19325. [
  19326. {
  19327. name: "Normal",
  19328. height: math.unit(4, "meters"),
  19329. default: true
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19335. {
  19336. side: {
  19337. height: math.unit(6, "feet"),
  19338. weight: math.unit(150, "lb"),
  19339. name: "Side",
  19340. image: {
  19341. source: "./media/characters/richard-dragon/side.svg",
  19342. extra: 845 / 340,
  19343. bottom: 0.017
  19344. }
  19345. },
  19346. maw: {
  19347. height: math.unit(2.97, "feet"),
  19348. name: "Maw",
  19349. image: {
  19350. source: "./media/characters/richard-dragon/maw.svg"
  19351. }
  19352. },
  19353. },
  19354. [
  19355. ]
  19356. ))
  19357. characterMakers.push(() => makeCharacter(
  19358. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19359. {
  19360. front: {
  19361. height: math.unit(4, "feet"),
  19362. weight: math.unit(100, "lb"),
  19363. name: "Front",
  19364. image: {
  19365. source: "./media/characters/richard-smeargle/front.svg",
  19366. extra: 2952 / 2820,
  19367. bottom: 0.028
  19368. }
  19369. },
  19370. },
  19371. [
  19372. {
  19373. name: "Normal",
  19374. height: math.unit(4, "feet"),
  19375. default: true
  19376. },
  19377. {
  19378. name: "Dynamax",
  19379. height: math.unit(20, "meters")
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(6, "feet"),
  19388. weight: math.unit(110, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/klay/front.svg",
  19392. extra: 962 / 883,
  19393. bottom: 0.04
  19394. }
  19395. },
  19396. back: {
  19397. height: math.unit(6, "feet"),
  19398. weight: math.unit(110, "lb"),
  19399. name: "Back",
  19400. image: {
  19401. source: "./media/characters/klay/back.svg",
  19402. extra: 962 / 883
  19403. }
  19404. },
  19405. beans: {
  19406. height: math.unit(1.15, "feet"),
  19407. name: "Beans",
  19408. image: {
  19409. source: "./media/characters/klay/beans.svg"
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Micro",
  19416. height: math.unit(6, "inches")
  19417. },
  19418. {
  19419. name: "Mini",
  19420. height: math.unit(3, "feet")
  19421. },
  19422. {
  19423. name: "Normal",
  19424. height: math.unit(6, "feet"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Big",
  19429. height: math.unit(25, "feet")
  19430. },
  19431. {
  19432. name: "Macro",
  19433. height: math.unit(100, "feet")
  19434. },
  19435. {
  19436. name: "Megamacro",
  19437. height: math.unit(400, "feet")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(6, "feet"),
  19446. weight: math.unit(160, "lb"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/marcus/front.svg",
  19450. extra: 734 / 676,
  19451. bottom: 0.03
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Little",
  19458. height: math.unit(6, "feet")
  19459. },
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(110, "feet"),
  19463. default: true
  19464. },
  19465. {
  19466. name: "Macro",
  19467. height: math.unit(250, "feet")
  19468. },
  19469. {
  19470. name: "Megamacro",
  19471. height: math.unit(1000, "feet")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(7, "feet"),
  19480. weight: math.unit(275, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/claude-delroute/front.svg",
  19484. extra: 902/827,
  19485. bottom: 26/928
  19486. }
  19487. },
  19488. side: {
  19489. height: math.unit(7, "feet"),
  19490. weight: math.unit(275, "lb"),
  19491. name: "Side",
  19492. image: {
  19493. source: "./media/characters/claude-delroute/side.svg",
  19494. extra: 908/853,
  19495. bottom: 16/924
  19496. }
  19497. },
  19498. back: {
  19499. height: math.unit(7, "feet"),
  19500. weight: math.unit(275, "lb"),
  19501. name: "Back",
  19502. image: {
  19503. source: "./media/characters/claude-delroute/back.svg",
  19504. extra: 911/829,
  19505. bottom: 18/929
  19506. }
  19507. },
  19508. maw: {
  19509. height: math.unit(0.6407, "meters"),
  19510. name: "Maw",
  19511. image: {
  19512. source: "./media/characters/claude-delroute/maw.svg"
  19513. }
  19514. },
  19515. },
  19516. [
  19517. {
  19518. name: "Normal",
  19519. height: math.unit(7, "feet"),
  19520. default: true
  19521. },
  19522. {
  19523. name: "Lorge",
  19524. height: math.unit(20, "feet")
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(8 + 4 / 12, "feet"),
  19533. weight: math.unit(600, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/dragonien/front.svg",
  19537. extra: 100 / 94,
  19538. bottom: 3.3 / 103.3445
  19539. }
  19540. },
  19541. back: {
  19542. height: math.unit(8 + 4 / 12, "feet"),
  19543. weight: math.unit(600, "lb"),
  19544. name: "Back",
  19545. image: {
  19546. source: "./media/characters/dragonien/back.svg",
  19547. extra: 776 / 746,
  19548. bottom: 6.4 / 782.0616
  19549. }
  19550. },
  19551. foot: {
  19552. height: math.unit(1.54, "feet"),
  19553. name: "Foot",
  19554. image: {
  19555. source: "./media/characters/dragonien/foot.svg",
  19556. }
  19557. },
  19558. },
  19559. [
  19560. {
  19561. name: "Normal",
  19562. height: math.unit(8 + 4 / 12, "feet"),
  19563. default: true
  19564. },
  19565. {
  19566. name: "Macro",
  19567. height: math.unit(200, "feet")
  19568. },
  19569. {
  19570. name: "Megamacro",
  19571. height: math.unit(1, "mile")
  19572. },
  19573. {
  19574. name: "Gigamacro",
  19575. height: math.unit(1000, "miles")
  19576. },
  19577. ]
  19578. ))
  19579. characterMakers.push(() => makeCharacter(
  19580. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19581. {
  19582. front: {
  19583. height: math.unit(5 + 2 / 12, "feet"),
  19584. weight: math.unit(110, "lb"),
  19585. name: "Front",
  19586. image: {
  19587. source: "./media/characters/desta/front.svg",
  19588. extra: 767 / 726,
  19589. bottom: 11.7 / 779
  19590. }
  19591. },
  19592. back: {
  19593. height: math.unit(5 + 2 / 12, "feet"),
  19594. weight: math.unit(110, "lb"),
  19595. name: "Back",
  19596. image: {
  19597. source: "./media/characters/desta/back.svg",
  19598. extra: 777 / 728,
  19599. bottom: 6 / 784
  19600. }
  19601. },
  19602. frontAlt: {
  19603. height: math.unit(5 + 2 / 12, "feet"),
  19604. weight: math.unit(110, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/desta/front-alt.svg",
  19608. extra: 1482 / 1417
  19609. }
  19610. },
  19611. side: {
  19612. height: math.unit(5 + 2 / 12, "feet"),
  19613. weight: math.unit(110, "lb"),
  19614. name: "Side",
  19615. image: {
  19616. source: "./media/characters/desta/side.svg",
  19617. extra: 2579 / 2491,
  19618. bottom: 0.053
  19619. }
  19620. },
  19621. },
  19622. [
  19623. {
  19624. name: "Micro",
  19625. height: math.unit(6, "inches")
  19626. },
  19627. {
  19628. name: "Normal",
  19629. height: math.unit(5 + 2 / 12, "feet"),
  19630. default: true
  19631. },
  19632. {
  19633. name: "Macro",
  19634. height: math.unit(62, "feet")
  19635. },
  19636. {
  19637. name: "Megamacro",
  19638. height: math.unit(1800, "feet")
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19644. {
  19645. front: {
  19646. height: math.unit(10, "feet"),
  19647. weight: math.unit(700, "lb"),
  19648. name: "Front",
  19649. image: {
  19650. source: "./media/characters/storm-alystar/front.svg",
  19651. extra: 2112 / 1898,
  19652. bottom: 0.034
  19653. }
  19654. },
  19655. },
  19656. [
  19657. {
  19658. name: "Micro",
  19659. height: math.unit(3.5, "inches")
  19660. },
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(10, "feet"),
  19664. default: true
  19665. },
  19666. {
  19667. name: "Macro",
  19668. height: math.unit(400, "feet")
  19669. },
  19670. {
  19671. name: "Deific",
  19672. height: math.unit(60, "miles")
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(2.35, "meters"),
  19681. weight: math.unit(119, "kg"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/ilia/front.svg",
  19685. extra: 1285 / 1255,
  19686. bottom: 0.06
  19687. }
  19688. },
  19689. },
  19690. [
  19691. {
  19692. name: "Normal",
  19693. height: math.unit(2.35, "meters")
  19694. },
  19695. {
  19696. name: "Macro",
  19697. height: math.unit(140, "meters"),
  19698. default: true
  19699. },
  19700. {
  19701. name: "Megamacro",
  19702. height: math.unit(100, "miles")
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6 + 5 / 12, "feet"),
  19711. weight: math.unit(190, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/kingdead/front.svg",
  19715. extra: 1228 / 1177
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Micro",
  19722. height: math.unit(7, "inches")
  19723. },
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(6 + 5 / 12, "feet")
  19727. },
  19728. {
  19729. name: "Macro",
  19730. height: math.unit(150, "feet"),
  19731. default: true
  19732. },
  19733. {
  19734. name: "Megamacro",
  19735. height: math.unit(200, "miles")
  19736. },
  19737. ]
  19738. ))
  19739. characterMakers.push(() => makeCharacter(
  19740. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19741. {
  19742. front: {
  19743. height: math.unit(8, "feet"),
  19744. weight: math.unit(600, "lb"),
  19745. name: "Front",
  19746. image: {
  19747. source: "./media/characters/kyrehx/front.svg",
  19748. extra: 1195 / 1095,
  19749. bottom: 0.034
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Micro",
  19756. height: math.unit(2, "inches")
  19757. },
  19758. {
  19759. name: "Normal",
  19760. height: math.unit(8, "feet"),
  19761. default: true
  19762. },
  19763. {
  19764. name: "Macro",
  19765. height: math.unit(255, "feet")
  19766. },
  19767. ]
  19768. ))
  19769. characterMakers.push(() => makeCharacter(
  19770. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19771. {
  19772. front: {
  19773. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19774. weight: math.unit(184, "lb"),
  19775. name: "Front",
  19776. image: {
  19777. source: "./media/characters/xang/front.svg",
  19778. extra: 845 / 755
  19779. }
  19780. },
  19781. },
  19782. [
  19783. {
  19784. name: "Normal",
  19785. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19786. default: true
  19787. },
  19788. {
  19789. name: "Macro",
  19790. height: math.unit(0.935 * 146, "feet")
  19791. },
  19792. {
  19793. name: "Megamacro",
  19794. height: math.unit(0.935 * 3, "miles")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19800. {
  19801. frontDressed: {
  19802. height: math.unit(5 + 7 / 12, "feet"),
  19803. weight: math.unit(140, "lb"),
  19804. name: "Front (Dressed)",
  19805. image: {
  19806. source: "./media/characters/doc-weardno/front-dressed.svg",
  19807. extra: 263 / 234
  19808. }
  19809. },
  19810. backDressed: {
  19811. height: math.unit(5 + 7 / 12, "feet"),
  19812. weight: math.unit(140, "lb"),
  19813. name: "Back (Dressed)",
  19814. image: {
  19815. source: "./media/characters/doc-weardno/back-dressed.svg",
  19816. extra: 266 / 238
  19817. }
  19818. },
  19819. front: {
  19820. height: math.unit(5 + 7 / 12, "feet"),
  19821. weight: math.unit(140, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/doc-weardno/front.svg",
  19825. extra: 254 / 233
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Micro",
  19832. height: math.unit(3, "inches")
  19833. },
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(5 + 7 / 12, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Macro",
  19841. height: math.unit(25, "feet")
  19842. },
  19843. {
  19844. name: "Megamacro",
  19845. height: math.unit(2, "miles")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19851. {
  19852. front: {
  19853. height: math.unit(6 + 2 / 12, "feet"),
  19854. weight: math.unit(153, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/seth-whilst/front.svg",
  19858. bottom: 0.07
  19859. }
  19860. },
  19861. },
  19862. [
  19863. {
  19864. name: "Micro",
  19865. height: math.unit(5, "inches")
  19866. },
  19867. {
  19868. name: "Normal",
  19869. height: math.unit(6 + 2 / 12, "feet"),
  19870. default: true
  19871. },
  19872. ]
  19873. ))
  19874. characterMakers.push(() => makeCharacter(
  19875. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19876. {
  19877. front: {
  19878. height: math.unit(3, "inches"),
  19879. weight: math.unit(8, "grams"),
  19880. name: "Front",
  19881. image: {
  19882. source: "./media/characters/pocket-jabari/front.svg",
  19883. extra: 1024 / 974,
  19884. bottom: 0.039
  19885. }
  19886. },
  19887. },
  19888. [
  19889. {
  19890. name: "Minimicro",
  19891. height: math.unit(8, "mm")
  19892. },
  19893. {
  19894. name: "Micro",
  19895. height: math.unit(3, "inches"),
  19896. default: true
  19897. },
  19898. {
  19899. name: "Normal",
  19900. height: math.unit(3, "feet")
  19901. },
  19902. ]
  19903. ))
  19904. characterMakers.push(() => makeCharacter(
  19905. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19906. {
  19907. frontDressed: {
  19908. height: math.unit(15, "feet"),
  19909. weight: math.unit(3280, "lb"),
  19910. name: "Front (Dressed)",
  19911. image: {
  19912. source: "./media/characters/sapphy/front-dressed.svg",
  19913. extra: 1951/1654,
  19914. bottom: 194/2145
  19915. },
  19916. form: "anthro",
  19917. default: true
  19918. },
  19919. backDressed: {
  19920. height: math.unit(15, "feet"),
  19921. weight: math.unit(3280, "lb"),
  19922. name: "Back (Dressed)",
  19923. image: {
  19924. source: "./media/characters/sapphy/back-dressed.svg",
  19925. extra: 2058/1918,
  19926. bottom: 125/2183
  19927. },
  19928. form: "anthro"
  19929. },
  19930. frontNude: {
  19931. height: math.unit(15, "feet"),
  19932. weight: math.unit(3280, "lb"),
  19933. name: "Front (Nude)",
  19934. image: {
  19935. source: "./media/characters/sapphy/front-nude.svg",
  19936. extra: 1951/1654,
  19937. bottom: 194/2145
  19938. },
  19939. form: "anthro"
  19940. },
  19941. backNude: {
  19942. height: math.unit(15, "feet"),
  19943. weight: math.unit(3280, "lb"),
  19944. name: "Back (Nude)",
  19945. image: {
  19946. source: "./media/characters/sapphy/back-nude.svg",
  19947. extra: 2058/1918,
  19948. bottom: 125/2183
  19949. },
  19950. form: "anthro"
  19951. },
  19952. full: {
  19953. height: math.unit(15, "feet"),
  19954. weight: math.unit(3280, "lb"),
  19955. name: "Full",
  19956. image: {
  19957. source: "./media/characters/sapphy/full.svg",
  19958. extra: 1396/1317,
  19959. bottom: 44/1440
  19960. },
  19961. form: "anthro"
  19962. },
  19963. dick: {
  19964. height: math.unit(3.8, "feet"),
  19965. name: "Dick",
  19966. image: {
  19967. source: "./media/characters/sapphy/dick.svg"
  19968. },
  19969. form: "anthro"
  19970. },
  19971. feral: {
  19972. height: math.unit(35, "feet"),
  19973. weight: math.unit(160, "tons"),
  19974. name: "Feral",
  19975. image: {
  19976. source: "./media/characters/sapphy/feral.svg",
  19977. extra: 1050/573,
  19978. bottom: 60/1110
  19979. },
  19980. form: "feral",
  19981. default: true
  19982. },
  19983. },
  19984. [
  19985. {
  19986. name: "Normal",
  19987. height: math.unit(15, "feet"),
  19988. form: "anthro"
  19989. },
  19990. {
  19991. name: "Casual Macro",
  19992. height: math.unit(120, "feet"),
  19993. form: "anthro"
  19994. },
  19995. {
  19996. name: "Macro",
  19997. height: math.unit(2150, "feet"),
  19998. default: true,
  19999. form: "anthro"
  20000. },
  20001. {
  20002. name: "Megamacro",
  20003. height: math.unit(8, "miles"),
  20004. form: "anthro"
  20005. },
  20006. {
  20007. name: "Galaxy Mom",
  20008. height: math.unit(6, "megalightyears"),
  20009. form: "anthro"
  20010. },
  20011. {
  20012. name: "Normal",
  20013. height: math.unit(35, "feet"),
  20014. form: "feral",
  20015. default: true
  20016. },
  20017. {
  20018. name: "Macro",
  20019. height: math.unit(300, "feet"),
  20020. form: "feral"
  20021. },
  20022. {
  20023. name: "Galaxy Mom",
  20024. height: math.unit(10, "megalightyears"),
  20025. form: "feral"
  20026. },
  20027. ],
  20028. {
  20029. "anthro": {
  20030. name: "Anthro",
  20031. default: true
  20032. },
  20033. "feral": {
  20034. name: "Feral"
  20035. }
  20036. }
  20037. ))
  20038. characterMakers.push(() => makeCharacter(
  20039. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20040. {
  20041. hyenaFront: {
  20042. height: math.unit(6, "feet"),
  20043. weight: math.unit(190, "lb"),
  20044. name: "Front",
  20045. image: {
  20046. source: "./media/characters/kiro/hyena-front.svg",
  20047. extra: 927/839,
  20048. bottom: 91/1018
  20049. },
  20050. form: "hyena",
  20051. default: true
  20052. },
  20053. front: {
  20054. height: math.unit(6, "feet"),
  20055. weight: math.unit(170, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/kiro/front.svg",
  20059. extra: 1064 / 1012,
  20060. bottom: 0.052
  20061. },
  20062. form: "folf",
  20063. default: true
  20064. },
  20065. },
  20066. [
  20067. {
  20068. name: "Micro",
  20069. height: math.unit(6, "inches"),
  20070. form: "folf"
  20071. },
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6, "feet"),
  20075. form: "folf",
  20076. default: true
  20077. },
  20078. {
  20079. name: "Macro",
  20080. height: math.unit(72, "feet"),
  20081. form: "folf"
  20082. },
  20083. {
  20084. name: "Micro",
  20085. height: math.unit(6, "inches"),
  20086. form: "hyena"
  20087. },
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(6, "feet"),
  20091. form: "hyena",
  20092. default: true
  20093. },
  20094. {
  20095. name: "Macro",
  20096. height: math.unit(72, "feet"),
  20097. form: "hyena"
  20098. },
  20099. ],
  20100. {
  20101. "hyena": {
  20102. name: "Hyena",
  20103. default: true
  20104. },
  20105. "folf": {
  20106. name: "Folf",
  20107. },
  20108. }
  20109. ))
  20110. characterMakers.push(() => makeCharacter(
  20111. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20112. {
  20113. front: {
  20114. height: math.unit(5 + 9 / 12, "feet"),
  20115. weight: math.unit(175, "lb"),
  20116. name: "Front",
  20117. image: {
  20118. source: "./media/characters/irishfox/front.svg",
  20119. extra: 1912 / 1680,
  20120. bottom: 0.02
  20121. }
  20122. },
  20123. },
  20124. [
  20125. {
  20126. name: "Nano",
  20127. height: math.unit(1, "mm")
  20128. },
  20129. {
  20130. name: "Micro",
  20131. height: math.unit(2, "inches")
  20132. },
  20133. {
  20134. name: "Normal",
  20135. height: math.unit(5 + 9 / 12, "feet"),
  20136. default: true
  20137. },
  20138. {
  20139. name: "Macro",
  20140. height: math.unit(45, "feet")
  20141. },
  20142. ]
  20143. ))
  20144. characterMakers.push(() => makeCharacter(
  20145. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20146. {
  20147. front: {
  20148. height: math.unit(6 + 1 / 12, "feet"),
  20149. weight: math.unit(75, "lb"),
  20150. name: "Front",
  20151. image: {
  20152. source: "./media/characters/aronai-sieyes/front.svg",
  20153. extra: 1532/1450,
  20154. bottom: 42/1574
  20155. }
  20156. },
  20157. side: {
  20158. height: math.unit(6 + 1 / 12, "feet"),
  20159. weight: math.unit(75, "lb"),
  20160. name: "Side",
  20161. image: {
  20162. source: "./media/characters/aronai-sieyes/side.svg",
  20163. extra: 1422/1365,
  20164. bottom: 148/1570
  20165. }
  20166. },
  20167. back: {
  20168. height: math.unit(6 + 1 / 12, "feet"),
  20169. weight: math.unit(75, "lb"),
  20170. name: "Back",
  20171. image: {
  20172. source: "./media/characters/aronai-sieyes/back.svg",
  20173. extra: 1526/1464,
  20174. bottom: 51/1577
  20175. }
  20176. },
  20177. dressed: {
  20178. height: math.unit(6 + 1 / 12, "feet"),
  20179. weight: math.unit(75, "lb"),
  20180. name: "Dressed",
  20181. image: {
  20182. source: "./media/characters/aronai-sieyes/dressed.svg",
  20183. extra: 1559/1483,
  20184. bottom: 39/1598
  20185. }
  20186. },
  20187. slit: {
  20188. height: math.unit(1.3, "feet"),
  20189. name: "Slit",
  20190. image: {
  20191. source: "./media/characters/aronai-sieyes/slit.svg"
  20192. }
  20193. },
  20194. slitSpread: {
  20195. height: math.unit(0.9, "feet"),
  20196. name: "Slit (Spread)",
  20197. image: {
  20198. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20199. }
  20200. },
  20201. rump: {
  20202. height: math.unit(1.3, "feet"),
  20203. name: "Rump",
  20204. image: {
  20205. source: "./media/characters/aronai-sieyes/rump.svg"
  20206. }
  20207. },
  20208. maw: {
  20209. height: math.unit(1.25, "feet"),
  20210. name: "Maw",
  20211. image: {
  20212. source: "./media/characters/aronai-sieyes/maw.svg"
  20213. }
  20214. },
  20215. feral: {
  20216. height: math.unit(18, "feet"),
  20217. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20218. name: "Feral",
  20219. image: {
  20220. source: "./media/characters/aronai-sieyes/feral.svg",
  20221. extra: 1530 / 1240,
  20222. bottom: 0.035
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Micro",
  20229. height: math.unit(2, "inches")
  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: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(12, "feet"),
  20243. weight: math.unit(410, "kg"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/xuna/front.svg",
  20247. extra: 2184 / 1980
  20248. }
  20249. },
  20250. side: {
  20251. height: math.unit(12, "feet"),
  20252. weight: math.unit(410, "kg"),
  20253. name: "Side",
  20254. image: {
  20255. source: "./media/characters/xuna/side.svg",
  20256. extra: 2184 / 1980
  20257. }
  20258. },
  20259. back: {
  20260. height: math.unit(12, "feet"),
  20261. weight: math.unit(410, "kg"),
  20262. name: "Back",
  20263. image: {
  20264. source: "./media/characters/xuna/back.svg",
  20265. extra: 2184 / 1980
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Nano glow",
  20272. height: math.unit(10, "nm")
  20273. },
  20274. {
  20275. name: "Micro floof",
  20276. height: math.unit(0.3, "m")
  20277. },
  20278. {
  20279. name: "Huggable softy boi",
  20280. height: math.unit(3.6576, "m"),
  20281. default: true
  20282. },
  20283. {
  20284. name: "Admirable floof",
  20285. height: math.unit(80, "meters")
  20286. },
  20287. {
  20288. name: "Gentle macro",
  20289. height: math.unit(300, "meters")
  20290. },
  20291. {
  20292. name: "Very careful floof",
  20293. height: math.unit(3200, "meters")
  20294. },
  20295. {
  20296. name: "The mega floof",
  20297. height: math.unit(36000, "meters")
  20298. },
  20299. {
  20300. name: "Giga-fur-Wicker",
  20301. height: math.unit(4800000, "meters")
  20302. },
  20303. {
  20304. name: "Licky world",
  20305. height: math.unit(20000000, "meters")
  20306. },
  20307. {
  20308. name: "Floofy cyan sun",
  20309. height: math.unit(1500000000, "meters")
  20310. },
  20311. {
  20312. name: "Milky Wicker",
  20313. height: math.unit(1000000000000000000000, "meters")
  20314. },
  20315. {
  20316. name: "The observing Wicker",
  20317. height: math.unit(999999999999999999999999999, "meters")
  20318. },
  20319. ]
  20320. ))
  20321. characterMakers.push(() => makeCharacter(
  20322. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20323. {
  20324. front: {
  20325. height: math.unit(5 + 9 / 12, "feet"),
  20326. weight: math.unit(150, "lb"),
  20327. name: "Front",
  20328. image: {
  20329. source: "./media/characters/arokha-sieyes/front.svg",
  20330. extra: 1425 / 1284,
  20331. bottom: 0.05
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(5 + 9 / 12, "feet")
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(30, "meters"),
  20343. default: true
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20349. {
  20350. front: {
  20351. height: math.unit(6, "feet"),
  20352. weight: math.unit(180, "lb"),
  20353. name: "Front",
  20354. image: {
  20355. source: "./media/characters/arokh-sieyes/front.svg",
  20356. extra: 1830 / 1769,
  20357. bottom: 0.01
  20358. }
  20359. },
  20360. },
  20361. [
  20362. {
  20363. name: "Normal",
  20364. height: math.unit(6, "feet")
  20365. },
  20366. {
  20367. name: "Macro",
  20368. height: math.unit(30, "meters"),
  20369. default: true
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20375. {
  20376. side: {
  20377. height: math.unit(13 + 1 / 12, "feet"),
  20378. weight: math.unit(8.5, "tonnes"),
  20379. preyCapacity: math.unit(36, "people"),
  20380. name: "Side",
  20381. image: {
  20382. source: "./media/characters/goldeneye/side.svg",
  20383. extra: 1139/741,
  20384. bottom: 98/1237
  20385. }
  20386. },
  20387. front: {
  20388. height: math.unit(5.1, "feet"),
  20389. weight: math.unit(8.5, "tonnes"),
  20390. preyCapacity: math.unit(36, "people"),
  20391. name: "Front",
  20392. image: {
  20393. source: "./media/characters/goldeneye/front.svg",
  20394. extra: 635/365,
  20395. bottom: 598/1233
  20396. }
  20397. },
  20398. maw: {
  20399. height: math.unit(6.6, "feet"),
  20400. name: "Maw",
  20401. image: {
  20402. source: "./media/characters/goldeneye/maw.svg"
  20403. }
  20404. },
  20405. headFront: {
  20406. height: math.unit(8, "feet"),
  20407. name: "Head (Front)",
  20408. image: {
  20409. source: "./media/characters/goldeneye/head-front.svg"
  20410. }
  20411. },
  20412. headSide: {
  20413. height: math.unit(6, "feet"),
  20414. name: "Head (Side)",
  20415. image: {
  20416. source: "./media/characters/goldeneye/head-side.svg"
  20417. }
  20418. },
  20419. headBack: {
  20420. height: math.unit(8, "feet"),
  20421. name: "Head (Back)",
  20422. image: {
  20423. source: "./media/characters/goldeneye/head-back.svg"
  20424. }
  20425. },
  20426. paw: {
  20427. height: math.unit(3.4, "feet"),
  20428. name: "Paw",
  20429. image: {
  20430. source: "./media/characters/goldeneye/paw.svg"
  20431. }
  20432. },
  20433. toering: {
  20434. height: math.unit(0.45, "feet"),
  20435. name: "Toering",
  20436. image: {
  20437. source: "./media/characters/goldeneye/toering.svg"
  20438. }
  20439. },
  20440. eyes: {
  20441. height: math.unit(0.5, "feet"),
  20442. name: "Eyes",
  20443. image: {
  20444. source: "./media/characters/goldeneye/eyes.svg"
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(13 + 1 / 12, "feet"),
  20452. default: true
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20458. {
  20459. front: {
  20460. height: math.unit(6 + 1 / 12, "feet"),
  20461. weight: math.unit(210, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/leonardo-lycheborne/front.svg",
  20465. extra: 776/723,
  20466. bottom: 34/810
  20467. }
  20468. },
  20469. side: {
  20470. height: math.unit(6 + 1 / 12, "feet"),
  20471. weight: math.unit(210, "lb"),
  20472. name: "Side",
  20473. image: {
  20474. source: "./media/characters/leonardo-lycheborne/side.svg",
  20475. extra: 780/728,
  20476. bottom: 12/792
  20477. }
  20478. },
  20479. back: {
  20480. height: math.unit(6 + 1 / 12, "feet"),
  20481. weight: math.unit(210, "lb"),
  20482. name: "Back",
  20483. image: {
  20484. source: "./media/characters/leonardo-lycheborne/back.svg",
  20485. extra: 775/721,
  20486. bottom: 17/792
  20487. }
  20488. },
  20489. hand: {
  20490. height: math.unit(1.08, "feet"),
  20491. name: "Hand",
  20492. image: {
  20493. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20494. }
  20495. },
  20496. foot: {
  20497. height: math.unit(1.32, "feet"),
  20498. name: "Foot",
  20499. image: {
  20500. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20501. }
  20502. },
  20503. maw: {
  20504. height: math.unit(1, "feet"),
  20505. name: "Maw",
  20506. image: {
  20507. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20508. }
  20509. },
  20510. were: {
  20511. height: math.unit(20, "feet"),
  20512. weight: math.unit(7800, "lb"),
  20513. name: "Were",
  20514. image: {
  20515. source: "./media/characters/leonardo-lycheborne/were.svg",
  20516. extra: 1224/1165,
  20517. bottom: 72/1296
  20518. }
  20519. },
  20520. feral: {
  20521. height: math.unit(7.5, "feet"),
  20522. weight: math.unit(600, "lb"),
  20523. name: "Feral",
  20524. image: {
  20525. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20526. extra: 797/702,
  20527. bottom: 139/936
  20528. }
  20529. },
  20530. taur: {
  20531. height: math.unit(11, "feet"),
  20532. weight: math.unit(3300, "lb"),
  20533. name: "Taur",
  20534. image: {
  20535. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20536. extra: 1271/1197,
  20537. bottom: 47/1318
  20538. }
  20539. },
  20540. barghest: {
  20541. height: math.unit(11, "feet"),
  20542. weight: math.unit(1300, "lb"),
  20543. name: "Barghest",
  20544. image: {
  20545. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20546. extra: 1291/1204,
  20547. bottom: 37/1328
  20548. }
  20549. },
  20550. dick: {
  20551. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20552. name: "Dick",
  20553. image: {
  20554. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20555. }
  20556. },
  20557. dickWere: {
  20558. height: math.unit((20) / 3.8, "feet"),
  20559. name: "Dick (Were)",
  20560. image: {
  20561. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20562. }
  20563. },
  20564. },
  20565. [
  20566. {
  20567. name: "Normal",
  20568. height: math.unit(6 + 1 / 12, "feet"),
  20569. default: true
  20570. },
  20571. ]
  20572. ))
  20573. characterMakers.push(() => makeCharacter(
  20574. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20575. {
  20576. front: {
  20577. height: math.unit(10, "feet"),
  20578. weight: math.unit(350, "lb"),
  20579. name: "Front",
  20580. image: {
  20581. source: "./media/characters/jet/front.svg",
  20582. extra: 2050 / 1980,
  20583. bottom: 0.013
  20584. }
  20585. },
  20586. back: {
  20587. height: math.unit(10, "feet"),
  20588. weight: math.unit(350, "lb"),
  20589. name: "Back",
  20590. image: {
  20591. source: "./media/characters/jet/back.svg",
  20592. extra: 2050 / 1980,
  20593. bottom: 0.013
  20594. }
  20595. },
  20596. },
  20597. [
  20598. {
  20599. name: "Micro",
  20600. height: math.unit(6, "inches")
  20601. },
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(10, "feet"),
  20605. default: true
  20606. },
  20607. {
  20608. name: "Macro",
  20609. height: math.unit(100, "feet")
  20610. },
  20611. ]
  20612. ))
  20613. characterMakers.push(() => makeCharacter(
  20614. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20615. {
  20616. front: {
  20617. height: math.unit(15, "feet"),
  20618. weight: math.unit(2800, "lb"),
  20619. name: "Front",
  20620. image: {
  20621. source: "./media/characters/tanarath/front.svg",
  20622. extra: 2392 / 2220,
  20623. bottom: 0.03
  20624. }
  20625. },
  20626. back: {
  20627. height: math.unit(15, "feet"),
  20628. weight: math.unit(2800, "lb"),
  20629. name: "Back",
  20630. image: {
  20631. source: "./media/characters/tanarath/back.svg",
  20632. extra: 2392 / 2220,
  20633. bottom: 0.03
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(15, "feet"),
  20641. default: true
  20642. },
  20643. ]
  20644. ))
  20645. characterMakers.push(() => makeCharacter(
  20646. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20647. {
  20648. front: {
  20649. height: math.unit(7 + 1 / 12, "feet"),
  20650. weight: math.unit(175, "lb"),
  20651. name: "Front",
  20652. image: {
  20653. source: "./media/characters/patty-cattybatty/front.svg",
  20654. extra: 908 / 874,
  20655. bottom: 0.025
  20656. }
  20657. },
  20658. },
  20659. [
  20660. {
  20661. name: "Micro",
  20662. height: math.unit(1, "inch")
  20663. },
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(7 + 1 / 12, "feet")
  20667. },
  20668. {
  20669. name: "Mini Macro",
  20670. height: math.unit(155, "feet")
  20671. },
  20672. {
  20673. name: "Macro",
  20674. height: math.unit(1077, "feet")
  20675. },
  20676. {
  20677. name: "Mega Macro",
  20678. height: math.unit(47650, "feet"),
  20679. default: true
  20680. },
  20681. {
  20682. name: "Giga Macro",
  20683. height: math.unit(440, "miles")
  20684. },
  20685. {
  20686. name: "Tera Macro",
  20687. height: math.unit(8700, "miles")
  20688. },
  20689. {
  20690. name: "Planetary Macro",
  20691. height: math.unit(32700, "miles")
  20692. },
  20693. {
  20694. name: "Solar Macro",
  20695. height: math.unit(550000, "miles")
  20696. },
  20697. {
  20698. name: "Celestial Macro",
  20699. height: math.unit(2.5, "AU")
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(4 + 5 / 12, "feet"),
  20708. weight: math.unit(90, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/cappu/front.svg",
  20712. extra: 1247 / 1152,
  20713. bottom: 0.012
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(4 + 5 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20727. {
  20728. frontDressed: {
  20729. height: math.unit(70, "cm"),
  20730. weight: math.unit(6, "kg"),
  20731. name: "Front (Dressed)",
  20732. image: {
  20733. source: "./media/characters/sebi/front-dressed.svg",
  20734. extra: 713.5 / 686.5,
  20735. bottom: 0.003
  20736. }
  20737. },
  20738. front: {
  20739. height: math.unit(70, "cm"),
  20740. weight: math.unit(5, "kg"),
  20741. name: "Front",
  20742. image: {
  20743. source: "./media/characters/sebi/front.svg",
  20744. extra: 713.5 / 686.5,
  20745. bottom: 0.003
  20746. }
  20747. }
  20748. },
  20749. [
  20750. {
  20751. name: "Normal",
  20752. height: math.unit(70, "cm"),
  20753. default: true
  20754. },
  20755. {
  20756. name: "Macro",
  20757. height: math.unit(8, "meters")
  20758. },
  20759. ]
  20760. ))
  20761. characterMakers.push(() => makeCharacter(
  20762. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20763. {
  20764. front: {
  20765. height: math.unit(6, "feet"),
  20766. weight: math.unit(150, "lb"),
  20767. name: "Front",
  20768. image: {
  20769. source: "./media/characters/typhek/front.svg",
  20770. extra: 1948 / 1929,
  20771. bottom: 0.025
  20772. }
  20773. },
  20774. side: {
  20775. height: math.unit(6, "feet"),
  20776. weight: math.unit(150, "lb"),
  20777. name: "Side",
  20778. image: {
  20779. source: "./media/characters/typhek/side.svg",
  20780. extra: 2034 / 2010,
  20781. bottom: 0.003
  20782. }
  20783. },
  20784. back: {
  20785. height: math.unit(6, "feet"),
  20786. weight: math.unit(150, "lb"),
  20787. name: "Back",
  20788. image: {
  20789. source: "./media/characters/typhek/back.svg",
  20790. extra: 2005 / 1978,
  20791. bottom: 0.004
  20792. }
  20793. },
  20794. palm: {
  20795. height: math.unit(1.2, "feet"),
  20796. name: "Palm",
  20797. image: {
  20798. source: "./media/characters/typhek/palm.svg"
  20799. }
  20800. },
  20801. fist: {
  20802. height: math.unit(1.1, "feet"),
  20803. name: "Fist",
  20804. image: {
  20805. source: "./media/characters/typhek/fist.svg"
  20806. }
  20807. },
  20808. foot: {
  20809. height: math.unit(1.57, "feet"),
  20810. name: "Foot",
  20811. image: {
  20812. source: "./media/characters/typhek/foot.svg"
  20813. }
  20814. },
  20815. sole: {
  20816. height: math.unit(2.05, "feet"),
  20817. name: "Sole",
  20818. image: {
  20819. source: "./media/characters/typhek/sole.svg"
  20820. }
  20821. },
  20822. },
  20823. [
  20824. {
  20825. name: "Macro",
  20826. height: math.unit(40, "stories"),
  20827. default: true
  20828. },
  20829. {
  20830. name: "Megamacro",
  20831. height: math.unit(1, "mile")
  20832. },
  20833. {
  20834. name: "Gigamacro",
  20835. height: math.unit(4000, "solarradii")
  20836. },
  20837. {
  20838. name: "Universal",
  20839. height: math.unit(1.1, "universes")
  20840. }
  20841. ]
  20842. ))
  20843. characterMakers.push(() => makeCharacter(
  20844. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20845. {
  20846. side: {
  20847. height: math.unit(5 + 7 / 12, "feet"),
  20848. weight: math.unit(150, "lb"),
  20849. name: "Side",
  20850. image: {
  20851. source: "./media/characters/kassy/side.svg",
  20852. extra: 1280 / 1225,
  20853. bottom: 0.002
  20854. }
  20855. },
  20856. front: {
  20857. height: math.unit(5 + 7 / 12, "feet"),
  20858. weight: math.unit(150, "lb"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/kassy/front.svg",
  20862. extra: 1280 / 1225,
  20863. bottom: 0.025
  20864. }
  20865. },
  20866. back: {
  20867. height: math.unit(5 + 7 / 12, "feet"),
  20868. weight: math.unit(150, "lb"),
  20869. name: "Back",
  20870. image: {
  20871. source: "./media/characters/kassy/back.svg",
  20872. extra: 1280 / 1225,
  20873. bottom: 0.002
  20874. }
  20875. },
  20876. foot: {
  20877. height: math.unit(1.266, "feet"),
  20878. name: "Foot",
  20879. image: {
  20880. source: "./media/characters/kassy/foot.svg"
  20881. }
  20882. },
  20883. },
  20884. [
  20885. {
  20886. name: "Normal",
  20887. height: math.unit(5 + 7 / 12, "feet")
  20888. },
  20889. {
  20890. name: "Macro",
  20891. height: math.unit(137, "feet"),
  20892. default: true
  20893. },
  20894. {
  20895. name: "Megamacro",
  20896. height: math.unit(1, "mile")
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(6 + 1 / 12, "feet"),
  20905. weight: math.unit(200, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/neil/front.svg",
  20909. extra: 1326 / 1250,
  20910. bottom: 0.023
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(6 + 1 / 12, "feet"),
  20918. default: true
  20919. },
  20920. {
  20921. name: "Macro",
  20922. height: math.unit(200, "feet")
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(5 + 9 / 12, "feet"),
  20931. weight: math.unit(190, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/atticus/front.svg",
  20935. extra: 2934 / 2785,
  20936. bottom: 0.025
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(5 + 9 / 12, "feet"),
  20944. default: true
  20945. },
  20946. {
  20947. name: "Macro",
  20948. height: math.unit(180, "feet")
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20954. {
  20955. side: {
  20956. height: math.unit(9, "feet"),
  20957. weight: math.unit(650, "lb"),
  20958. name: "Side",
  20959. image: {
  20960. source: "./media/characters/milo/side.svg",
  20961. extra: 2644 / 2310,
  20962. bottom: 0.032
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(9, "feet"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Macro",
  20974. height: math.unit(300, "feet")
  20975. },
  20976. ]
  20977. ))
  20978. characterMakers.push(() => makeCharacter(
  20979. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20980. {
  20981. side: {
  20982. height: math.unit(8, "meters"),
  20983. weight: math.unit(90000, "kg"),
  20984. name: "Side",
  20985. image: {
  20986. source: "./media/characters/ijzer/side.svg",
  20987. extra: 2756 / 1600,
  20988. bottom: 0.01
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Small",
  20995. height: math.unit(3, "meters")
  20996. },
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(8, "meters"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Normal+",
  21004. height: math.unit(10, "meters")
  21005. },
  21006. {
  21007. name: "Bigger",
  21008. height: math.unit(24, "meters")
  21009. },
  21010. {
  21011. name: "Huge",
  21012. height: math.unit(80, "meters")
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(6 + 2 / 12, "feet"),
  21021. weight: math.unit(153, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/luca-cervicum/front.svg",
  21025. extra: 370 / 327,
  21026. bottom: 0.015
  21027. }
  21028. },
  21029. back: {
  21030. height: math.unit(6 + 2 / 12, "feet"),
  21031. weight: math.unit(153, "lb"),
  21032. name: "Back",
  21033. image: {
  21034. source: "./media/characters/luca-cervicum/back.svg",
  21035. extra: 367 / 333,
  21036. bottom: 0.005
  21037. }
  21038. },
  21039. frontGear: {
  21040. height: math.unit(6 + 2 / 12, "feet"),
  21041. weight: math.unit(173, "lb"),
  21042. name: "Front (Gear)",
  21043. image: {
  21044. source: "./media/characters/luca-cervicum/front-gear.svg",
  21045. extra: 377 / 333,
  21046. bottom: 0.006
  21047. }
  21048. },
  21049. },
  21050. [
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(6 + 2 / 12, "feet"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(6 + 1 / 12, "feet"),
  21063. weight: math.unit(304, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/oliver/front.svg",
  21067. extra: 157 / 143,
  21068. bottom: 0.08
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Normal",
  21075. height: math.unit(6 + 1 / 12, "feet"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(5 + 7 / 12, "feet"),
  21085. weight: math.unit(140, "lb"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/shane/front.svg",
  21089. extra: 304 / 289,
  21090. bottom: 0.005
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(5 + 7 / 12, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21104. {
  21105. front: {
  21106. height: math.unit(5 + 9 / 12, "feet"),
  21107. weight: math.unit(178, "lb"),
  21108. name: "Front",
  21109. image: {
  21110. source: "./media/characters/shin/front.svg",
  21111. extra: 159 / 151,
  21112. bottom: 0.015
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(5 + 9 / 12, "feet"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(5 + 10 / 12, "feet"),
  21129. weight: math.unit(168, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/xerxes/front.svg",
  21133. extra: 282 / 260,
  21134. bottom: 0.045
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(5 + 10 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21148. {
  21149. front: {
  21150. height: math.unit(6 + 7 / 12, "feet"),
  21151. weight: math.unit(208, "lb"),
  21152. name: "Front",
  21153. image: {
  21154. source: "./media/characters/chaska/front.svg",
  21155. extra: 332 / 319,
  21156. bottom: 0.015
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(6 + 7 / 12, "feet"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5 + 8 / 12, "feet"),
  21173. weight: math.unit(208, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/enuk/front.svg",
  21177. extra: 437 / 406,
  21178. bottom: 0.02
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(5 + 8 / 12, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(5 + 10 / 12, "feet"),
  21195. weight: math.unit(252, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/bruun/front.svg",
  21199. extra: 197 / 187,
  21200. bottom: 0.012
  21201. }
  21202. },
  21203. },
  21204. [
  21205. {
  21206. name: "Normal",
  21207. height: math.unit(5 + 10 / 12, "feet"),
  21208. default: true
  21209. },
  21210. ]
  21211. ))
  21212. characterMakers.push(() => makeCharacter(
  21213. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21214. {
  21215. front: {
  21216. height: math.unit(6 + 10 / 12, "feet"),
  21217. weight: math.unit(255, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/alexeev/front.svg",
  21221. extra: 213 / 200,
  21222. bottom: 0.05
  21223. }
  21224. },
  21225. },
  21226. [
  21227. {
  21228. name: "Normal",
  21229. height: math.unit(6 + 10 / 12, "feet"),
  21230. default: true
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(2 + 8 / 12, "feet"),
  21239. weight: math.unit(22, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/evelyn/front.svg",
  21243. extra: 208 / 180
  21244. }
  21245. },
  21246. },
  21247. [
  21248. {
  21249. name: "Normal",
  21250. height: math.unit(2 + 8 / 12, "feet"),
  21251. default: true
  21252. },
  21253. ]
  21254. ))
  21255. characterMakers.push(() => makeCharacter(
  21256. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21257. {
  21258. front: {
  21259. height: math.unit(5 + 9 / 12, "feet"),
  21260. weight: math.unit(139, "lb"),
  21261. name: "Front",
  21262. image: {
  21263. source: "./media/characters/inca/front.svg",
  21264. extra: 294 / 291,
  21265. bottom: 0.03
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(5 + 9 / 12, "feet"),
  21273. default: true
  21274. },
  21275. ]
  21276. ))
  21277. characterMakers.push(() => makeCharacter(
  21278. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21279. {
  21280. front: {
  21281. height: math.unit(6 + 3 / 12, "feet"),
  21282. weight: math.unit(185, "lb"),
  21283. name: "Front",
  21284. image: {
  21285. source: "./media/characters/mera/front.svg",
  21286. extra: 291 / 277,
  21287. bottom: 0.03
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(6 + 3 / 12, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21301. {
  21302. front: {
  21303. height: math.unit(6 + 7 / 12, "feet"),
  21304. weight: math.unit(160, "lb"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/ceres/front.svg",
  21308. extra: 1023 / 950,
  21309. bottom: 0.027
  21310. }
  21311. },
  21312. back: {
  21313. height: math.unit(6 + 7 / 12, "feet"),
  21314. weight: math.unit(160, "lb"),
  21315. name: "Back",
  21316. image: {
  21317. source: "./media/characters/ceres/back.svg",
  21318. extra: 1023 / 950
  21319. }
  21320. },
  21321. },
  21322. [
  21323. {
  21324. name: "Normal",
  21325. height: math.unit(6 + 7 / 12, "feet"),
  21326. default: true
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(5 + 10 / 12, "feet"),
  21335. weight: math.unit(150, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/kris/front.svg",
  21339. extra: 885 / 803,
  21340. bottom: 0.03
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(5 + 10 / 12, "feet"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21354. {
  21355. front: {
  21356. height: math.unit(7, "feet"),
  21357. weight: math.unit(120, "kg"),
  21358. name: "Front",
  21359. image: {
  21360. source: "./media/characters/taluthus/front.svg",
  21361. extra: 903 / 833,
  21362. bottom: 0.015
  21363. }
  21364. },
  21365. },
  21366. [
  21367. {
  21368. name: "Normal",
  21369. height: math.unit(7, "feet"),
  21370. default: true
  21371. },
  21372. {
  21373. name: "Macro",
  21374. height: math.unit(300, "feet")
  21375. },
  21376. ]
  21377. ))
  21378. characterMakers.push(() => makeCharacter(
  21379. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21380. {
  21381. front: {
  21382. height: math.unit(5 + 9 / 12, "feet"),
  21383. weight: math.unit(145, "lb"),
  21384. name: "Front",
  21385. image: {
  21386. source: "./media/characters/dawn/front.svg",
  21387. extra: 2094 / 2016,
  21388. bottom: 0.025
  21389. }
  21390. },
  21391. back: {
  21392. height: math.unit(5 + 9 / 12, "feet"),
  21393. weight: math.unit(160, "lb"),
  21394. name: "Back",
  21395. image: {
  21396. source: "./media/characters/dawn/back.svg",
  21397. extra: 2112 / 2080,
  21398. bottom: 0.005
  21399. }
  21400. },
  21401. },
  21402. [
  21403. {
  21404. name: "Normal",
  21405. height: math.unit(6 + 7 / 12, "feet"),
  21406. default: true
  21407. },
  21408. ]
  21409. ))
  21410. characterMakers.push(() => makeCharacter(
  21411. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21412. {
  21413. anthro: {
  21414. height: math.unit(8 + 3 / 12, "feet"),
  21415. weight: math.unit(450, "lb"),
  21416. name: "Anthro",
  21417. image: {
  21418. source: "./media/characters/arador/anthro.svg",
  21419. extra: 1835 / 1718,
  21420. bottom: 0.025
  21421. }
  21422. },
  21423. feral: {
  21424. height: math.unit(4, "feet"),
  21425. weight: math.unit(200, "lb"),
  21426. name: "Feral",
  21427. image: {
  21428. source: "./media/characters/arador/feral.svg",
  21429. extra: 1683 / 1514,
  21430. bottom: 0.07
  21431. }
  21432. },
  21433. },
  21434. [
  21435. {
  21436. name: "Normal",
  21437. height: math.unit(8 + 3 / 12, "feet")
  21438. },
  21439. {
  21440. name: "Macro",
  21441. height: math.unit(82.5, "feet"),
  21442. default: true
  21443. },
  21444. ]
  21445. ))
  21446. characterMakers.push(() => makeCharacter(
  21447. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21448. {
  21449. front: {
  21450. height: math.unit(5 + 10 / 12, "feet"),
  21451. weight: math.unit(125, "lb"),
  21452. name: "Front",
  21453. image: {
  21454. source: "./media/characters/dharsi/front.svg",
  21455. extra: 716 / 630,
  21456. bottom: 0.035
  21457. }
  21458. },
  21459. },
  21460. [
  21461. {
  21462. name: "Nano",
  21463. height: math.unit(100, "nm")
  21464. },
  21465. {
  21466. name: "Micro",
  21467. height: math.unit(2, "inches")
  21468. },
  21469. {
  21470. name: "Normal",
  21471. height: math.unit(5 + 10 / 12, "feet"),
  21472. default: true
  21473. },
  21474. {
  21475. name: "Macro",
  21476. height: math.unit(1000, "feet")
  21477. },
  21478. {
  21479. name: "Megamacro",
  21480. height: math.unit(10, "miles")
  21481. },
  21482. {
  21483. name: "Gigamacro",
  21484. height: math.unit(3000, "miles")
  21485. },
  21486. {
  21487. name: "Teramacro",
  21488. height: math.unit(500000, "miles")
  21489. },
  21490. {
  21491. name: "Teramacro+",
  21492. height: math.unit(30, "galaxies")
  21493. },
  21494. ]
  21495. ))
  21496. characterMakers.push(() => makeCharacter(
  21497. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21498. {
  21499. front: {
  21500. height: math.unit(6, "feet"),
  21501. weight: math.unit(150, "lb"),
  21502. name: "Front",
  21503. image: {
  21504. source: "./media/characters/deathy/front.svg",
  21505. extra: 1552 / 1463,
  21506. bottom: 0.025
  21507. }
  21508. },
  21509. side: {
  21510. height: math.unit(6, "feet"),
  21511. weight: math.unit(150, "lb"),
  21512. name: "Side",
  21513. image: {
  21514. source: "./media/characters/deathy/side.svg",
  21515. extra: 1604 / 1455,
  21516. bottom: 0.025
  21517. }
  21518. },
  21519. back: {
  21520. height: math.unit(6, "feet"),
  21521. weight: math.unit(150, "lb"),
  21522. name: "Back",
  21523. image: {
  21524. source: "./media/characters/deathy/back.svg",
  21525. extra: 1580 / 1463,
  21526. bottom: 0.005
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Micro",
  21533. height: math.unit(5, "millimeters")
  21534. },
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(6 + 5 / 12, "feet"),
  21538. default: true
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21544. {
  21545. front: {
  21546. height: math.unit(16, "feet"),
  21547. weight: math.unit(4000, "lb"),
  21548. name: "Front",
  21549. image: {
  21550. source: "./media/characters/juniper/front.svg",
  21551. bottom: 0.04
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(16, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(6, "feet"),
  21568. weight: math.unit(150, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/hipster/front.svg",
  21572. extra: 1312 / 1209,
  21573. bottom: 0.025
  21574. }
  21575. },
  21576. back: {
  21577. height: math.unit(6, "feet"),
  21578. weight: math.unit(150, "lb"),
  21579. name: "Back",
  21580. image: {
  21581. source: "./media/characters/hipster/back.svg",
  21582. extra: 1281 / 1196,
  21583. bottom: 0.01
  21584. }
  21585. },
  21586. },
  21587. [
  21588. {
  21589. name: "Micro",
  21590. height: math.unit(1, "mm")
  21591. },
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(4, "inches"),
  21595. default: true
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(500, "feet")
  21600. },
  21601. {
  21602. name: "Megamacro",
  21603. height: math.unit(1000, "miles")
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(6, "feet"),
  21612. weight: math.unit(150, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/tendirmuldr/front.svg",
  21616. extra: 1878 / 1772,
  21617. bottom: 0.015
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Megamacro",
  21624. height: math.unit(1500, "miles"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21631. {
  21632. front: {
  21633. height: math.unit(14, "feet"),
  21634. weight: math.unit(12000, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/mort/front.svg",
  21638. extra: 365 / 318,
  21639. bottom: 0.01
  21640. }
  21641. },
  21642. side: {
  21643. height: math.unit(14, "feet"),
  21644. weight: math.unit(12000, "lb"),
  21645. name: "Side",
  21646. image: {
  21647. source: "./media/characters/mort/side.svg",
  21648. extra: 365 / 318,
  21649. bottom: 0.052
  21650. },
  21651. default: true
  21652. },
  21653. back: {
  21654. height: math.unit(14, "feet"),
  21655. weight: math.unit(12000, "lb"),
  21656. name: "Back",
  21657. image: {
  21658. source: "./media/characters/mort/back.svg",
  21659. extra: 371 / 332,
  21660. bottom: 0.18
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(14, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21674. {
  21675. front: {
  21676. height: math.unit(8, "feet"),
  21677. weight: math.unit(1, "ton"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/lycoa/front.svg",
  21681. extra: 1836/1728,
  21682. bottom: 81/1917
  21683. }
  21684. },
  21685. back: {
  21686. height: math.unit(8, "feet"),
  21687. weight: math.unit(1, "ton"),
  21688. name: "Back",
  21689. image: {
  21690. source: "./media/characters/lycoa/back.svg",
  21691. extra: 1785/1720,
  21692. bottom: 91/1876
  21693. }
  21694. },
  21695. head: {
  21696. height: math.unit(1.6243, "feet"),
  21697. name: "Head",
  21698. image: {
  21699. source: "./media/characters/lycoa/head.svg",
  21700. extra: 1011/782,
  21701. bottom: 0/1011
  21702. }
  21703. },
  21704. tailmaw: {
  21705. height: math.unit(1.9, "feet"),
  21706. name: "Tailmaw",
  21707. image: {
  21708. source: "./media/characters/lycoa/tailmaw.svg"
  21709. }
  21710. },
  21711. tentacles: {
  21712. height: math.unit(2.1, "feet"),
  21713. name: "Tentacles",
  21714. image: {
  21715. source: "./media/characters/lycoa/tentacles.svg"
  21716. }
  21717. },
  21718. dick: {
  21719. height: math.unit(1.73, "feet"),
  21720. name: "Dick",
  21721. image: {
  21722. source: "./media/characters/lycoa/dick.svg"
  21723. }
  21724. },
  21725. },
  21726. [
  21727. {
  21728. name: "Normal",
  21729. height: math.unit(8, "feet"),
  21730. default: true
  21731. },
  21732. {
  21733. name: "Macro",
  21734. height: math.unit(30, "feet")
  21735. },
  21736. ]
  21737. ))
  21738. characterMakers.push(() => makeCharacter(
  21739. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21740. {
  21741. front: {
  21742. height: math.unit(4 + 2 / 12, "feet"),
  21743. weight: math.unit(70, "lb"),
  21744. name: "Front",
  21745. image: {
  21746. source: "./media/characters/naldara/front.svg",
  21747. extra: 1664/1387,
  21748. bottom: 81/1745
  21749. },
  21750. form: "anthro",
  21751. default: true
  21752. },
  21753. naga: {
  21754. height: math.unit(20, "feet"),
  21755. weight: math.unit(15000, "kg"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/naldara/naga.svg",
  21759. extra: 1590/1396,
  21760. bottom: 285/1875
  21761. },
  21762. form: "naga",
  21763. default: true
  21764. },
  21765. },
  21766. [
  21767. {
  21768. name: "Normal",
  21769. height: math.unit(4 + 2 / 12, "feet"),
  21770. form: "anthro",
  21771. default: true
  21772. },
  21773. {
  21774. name: "Normal",
  21775. height: math.unit(20, "feet"),
  21776. form: "naga",
  21777. default: true
  21778. },
  21779. ],
  21780. {
  21781. "anthro": {
  21782. name: "Anthro",
  21783. default: true
  21784. },
  21785. "naga": {
  21786. name: "Naga"
  21787. }
  21788. }
  21789. ))
  21790. characterMakers.push(() => makeCharacter(
  21791. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21792. {
  21793. front: {
  21794. height: math.unit(13 + 7 / 12, "feet"),
  21795. weight: math.unit(1500, "lb"),
  21796. name: "Front",
  21797. image: {
  21798. source: "./media/characters/briar/front.svg",
  21799. extra: 1223/1157,
  21800. bottom: 123/1346
  21801. }
  21802. },
  21803. },
  21804. [
  21805. {
  21806. name: "Normal",
  21807. height: math.unit(13 + 7 / 12, "feet"),
  21808. default: true
  21809. },
  21810. ]
  21811. ))
  21812. characterMakers.push(() => makeCharacter(
  21813. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21814. {
  21815. side: {
  21816. height: math.unit(16, "feet"),
  21817. weight: math.unit(500, "lb"),
  21818. name: "Side",
  21819. image: {
  21820. source: "./media/characters/vanguard/side.svg",
  21821. extra: 1022/914,
  21822. bottom: 30/1052
  21823. }
  21824. },
  21825. sideAlt: {
  21826. height: math.unit(10, "feet"),
  21827. weight: math.unit(500, "lb"),
  21828. name: "Side (Alt)",
  21829. image: {
  21830. source: "./media/characters/vanguard/side-alt.svg",
  21831. extra: 502 / 425,
  21832. bottom: 0.087
  21833. }
  21834. },
  21835. },
  21836. [
  21837. {
  21838. name: "Normal",
  21839. height: math.unit(17.71, "feet"),
  21840. default: true
  21841. },
  21842. ]
  21843. ))
  21844. characterMakers.push(() => makeCharacter(
  21845. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21846. {
  21847. front: {
  21848. height: math.unit(7.5, "feet"),
  21849. weight: math.unit(2, "lb"),
  21850. name: "Front",
  21851. image: {
  21852. source: "./media/characters/artemis/work-safe-front.svg",
  21853. extra: 1192 / 1075,
  21854. bottom: 0.07
  21855. },
  21856. form: "work-safe",
  21857. default: true
  21858. },
  21859. frontNsfw: {
  21860. height: math.unit(7.5, "feet"),
  21861. weight: math.unit(2, "lb"),
  21862. name: "Front",
  21863. image: {
  21864. source: "./media/characters/artemis/calibrating-front.svg",
  21865. extra: 1192 / 1075,
  21866. bottom: 0.07
  21867. },
  21868. form: "calibrating",
  21869. default: true
  21870. },
  21871. frontNsfwer: {
  21872. height: math.unit(7.5, "feet"),
  21873. weight: math.unit(2, "lb"),
  21874. name: "Front",
  21875. image: {
  21876. source: "./media/characters/artemis/oversize-load-front.svg",
  21877. extra: 1192 / 1075,
  21878. bottom: 0.07
  21879. },
  21880. form: "oversize-load",
  21881. default: true
  21882. },
  21883. side: {
  21884. height: math.unit(7.5, "feet"),
  21885. weight: math.unit(2, "lb"),
  21886. name: "Side",
  21887. image: {
  21888. source: "./media/characters/artemis/work-safe-side.svg",
  21889. extra: 1192 / 1075,
  21890. bottom: 0.07
  21891. },
  21892. form: "work-safe"
  21893. },
  21894. sideNsfw: {
  21895. height: math.unit(7.5, "feet"),
  21896. weight: math.unit(2, "lb"),
  21897. name: "Side",
  21898. image: {
  21899. source: "./media/characters/artemis/calibrating-side.svg",
  21900. extra: 1192 / 1075,
  21901. bottom: 0.07
  21902. },
  21903. form: "calibrating"
  21904. },
  21905. sideNsfwer: {
  21906. height: math.unit(7.5, "feet"),
  21907. weight: math.unit(2, "lb"),
  21908. name: "Side",
  21909. image: {
  21910. source: "./media/characters/artemis/oversize-load-side.svg",
  21911. extra: 1192 / 1075,
  21912. bottom: 0.07
  21913. },
  21914. form: "oversize-load"
  21915. },
  21916. maw: {
  21917. height: math.unit(1.1, "feet"),
  21918. name: "Maw",
  21919. image: {
  21920. source: "./media/characters/artemis/maw.svg"
  21921. },
  21922. form: "work-safe"
  21923. },
  21924. stomach: {
  21925. height: math.unit(0.95, "feet"),
  21926. name: "Stomach",
  21927. image: {
  21928. source: "./media/characters/artemis/stomach.svg"
  21929. },
  21930. form: "work-safe"
  21931. },
  21932. dickCanine: {
  21933. height: math.unit(1, "feet"),
  21934. name: "Dick (Canine)",
  21935. image: {
  21936. source: "./media/characters/artemis/dick-canine.svg"
  21937. },
  21938. form: "calibrating"
  21939. },
  21940. dickEquine: {
  21941. height: math.unit(0.85, "feet"),
  21942. name: "Dick (Equine)",
  21943. image: {
  21944. source: "./media/characters/artemis/dick-equine.svg"
  21945. },
  21946. form: "calibrating"
  21947. },
  21948. dickExotic: {
  21949. height: math.unit(0.85, "feet"),
  21950. name: "Dick (Exotic)",
  21951. image: {
  21952. source: "./media/characters/artemis/dick-exotic.svg"
  21953. },
  21954. form: "calibrating"
  21955. },
  21956. dickCanineBigger: {
  21957. height: math.unit(1 * 1.33, "feet"),
  21958. name: "Dick (Canine)",
  21959. image: {
  21960. source: "./media/characters/artemis/dick-canine.svg"
  21961. },
  21962. form: "oversize-load"
  21963. },
  21964. dickEquineBigger: {
  21965. height: math.unit(0.85 * 1.33, "feet"),
  21966. name: "Dick (Equine)",
  21967. image: {
  21968. source: "./media/characters/artemis/dick-equine.svg"
  21969. },
  21970. form: "oversize-load"
  21971. },
  21972. dickExoticBigger: {
  21973. height: math.unit(0.85 * 1.33, "feet"),
  21974. name: "Dick (Exotic)",
  21975. image: {
  21976. source: "./media/characters/artemis/dick-exotic.svg"
  21977. },
  21978. form: "oversize-load"
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Normal",
  21984. height: math.unit(7.5, "feet"),
  21985. form: "work-safe",
  21986. default: true
  21987. },
  21988. {
  21989. name: "Normal",
  21990. height: math.unit(7.5, "feet"),
  21991. form: "calibrating",
  21992. default: true
  21993. },
  21994. {
  21995. name: "Normal",
  21996. height: math.unit(7.5, "feet"),
  21997. form: "oversize-load",
  21998. default: true
  21999. },
  22000. {
  22001. name: "Enlarged",
  22002. height: math.unit(12, "feet"),
  22003. form: "work-safe",
  22004. },
  22005. {
  22006. name: "Enlarged",
  22007. height: math.unit(12, "feet"),
  22008. form: "calibrating",
  22009. },
  22010. {
  22011. name: "Enlarged",
  22012. height: math.unit(12, "feet"),
  22013. form: "oversize-load",
  22014. },
  22015. ],
  22016. {
  22017. "work-safe": {
  22018. name: "Work-Safe",
  22019. default: true
  22020. },
  22021. "calibrating": {
  22022. name: "Calibrating"
  22023. },
  22024. "oversize-load": {
  22025. name: "Oversize Load"
  22026. }
  22027. }
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22031. {
  22032. front: {
  22033. height: math.unit(5 + 3 / 12, "feet"),
  22034. weight: math.unit(160, "lb"),
  22035. name: "Front",
  22036. image: {
  22037. source: "./media/characters/kira/front.svg",
  22038. extra: 906 / 786,
  22039. bottom: 0.01
  22040. }
  22041. },
  22042. back: {
  22043. height: math.unit(5 + 3 / 12, "feet"),
  22044. weight: math.unit(160, "lb"),
  22045. name: "Back",
  22046. image: {
  22047. source: "./media/characters/kira/back.svg",
  22048. extra: 882 / 757,
  22049. bottom: 0.005
  22050. }
  22051. },
  22052. frontDressed: {
  22053. height: math.unit(5 + 3 / 12, "feet"),
  22054. weight: math.unit(160, "lb"),
  22055. name: "Front (Dressed)",
  22056. image: {
  22057. source: "./media/characters/kira/front-dressed.svg",
  22058. extra: 906 / 786,
  22059. bottom: 0.01
  22060. }
  22061. },
  22062. beans: {
  22063. height: math.unit(0.92, "feet"),
  22064. name: "Beans",
  22065. image: {
  22066. source: "./media/characters/kira/beans.svg"
  22067. }
  22068. },
  22069. },
  22070. [
  22071. {
  22072. name: "Normal",
  22073. height: math.unit(5 + 3 / 12, "feet"),
  22074. default: true
  22075. },
  22076. ]
  22077. ))
  22078. characterMakers.push(() => makeCharacter(
  22079. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22080. {
  22081. front: {
  22082. height: math.unit(5 + 4 / 12, "feet"),
  22083. weight: math.unit(145, "lb"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/scramble/front.svg",
  22087. extra: 763 / 727,
  22088. bottom: 0.05
  22089. }
  22090. },
  22091. back: {
  22092. height: math.unit(5 + 4 / 12, "feet"),
  22093. weight: math.unit(145, "lb"),
  22094. name: "Back",
  22095. image: {
  22096. source: "./media/characters/scramble/back.svg",
  22097. extra: 826 / 737,
  22098. bottom: 0.002
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5 + 4 / 12, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22112. {
  22113. side: {
  22114. height: math.unit(6 + 2 / 12, "feet"),
  22115. weight: math.unit(190, "lb"),
  22116. name: "Side",
  22117. image: {
  22118. source: "./media/characters/biscuit/side.svg",
  22119. extra: 858 / 791,
  22120. bottom: 0.044
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Normal",
  22127. height: math.unit(6 + 2 / 12, "feet"),
  22128. default: true
  22129. },
  22130. ]
  22131. ))
  22132. characterMakers.push(() => makeCharacter(
  22133. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22134. {
  22135. front: {
  22136. height: math.unit(5 + 2 / 12, "feet"),
  22137. weight: math.unit(120, "lb"),
  22138. name: "Front",
  22139. image: {
  22140. source: "./media/characters/poffin/front.svg",
  22141. extra: 786 / 680,
  22142. bottom: 0.005
  22143. }
  22144. },
  22145. },
  22146. [
  22147. {
  22148. name: "Normal",
  22149. height: math.unit(5 + 2 / 12, "feet"),
  22150. default: true
  22151. },
  22152. ]
  22153. ))
  22154. characterMakers.push(() => makeCharacter(
  22155. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22156. {
  22157. front: {
  22158. height: math.unit(6 + 3 / 12, "feet"),
  22159. weight: math.unit(519, "lb"),
  22160. name: "Front",
  22161. image: {
  22162. source: "./media/characters/dhari/front.svg",
  22163. extra: 1048 / 946,
  22164. bottom: 0.015
  22165. }
  22166. },
  22167. back: {
  22168. height: math.unit(6 + 3 / 12, "feet"),
  22169. weight: math.unit(519, "lb"),
  22170. name: "Back",
  22171. image: {
  22172. source: "./media/characters/dhari/back.svg",
  22173. extra: 1048 / 931,
  22174. bottom: 0.005
  22175. }
  22176. },
  22177. frontDressed: {
  22178. height: math.unit(6 + 3 / 12, "feet"),
  22179. weight: math.unit(519, "lb"),
  22180. name: "Front (Dressed)",
  22181. image: {
  22182. source: "./media/characters/dhari/front-dressed.svg",
  22183. extra: 1713 / 1546,
  22184. bottom: 0.02
  22185. }
  22186. },
  22187. backDressed: {
  22188. height: math.unit(6 + 3 / 12, "feet"),
  22189. weight: math.unit(519, "lb"),
  22190. name: "Back (Dressed)",
  22191. image: {
  22192. source: "./media/characters/dhari/back-dressed.svg",
  22193. extra: 1699 / 1537,
  22194. bottom: 0.01
  22195. }
  22196. },
  22197. maw: {
  22198. height: math.unit(0.95, "feet"),
  22199. name: "Maw",
  22200. image: {
  22201. source: "./media/characters/dhari/maw.svg"
  22202. }
  22203. },
  22204. wereFront: {
  22205. height: math.unit(12 + 8 / 12, "feet"),
  22206. weight: math.unit(4000, "lb"),
  22207. name: "Front (Were)",
  22208. image: {
  22209. source: "./media/characters/dhari/were-front.svg",
  22210. extra: 1065 / 969,
  22211. bottom: 0.015
  22212. }
  22213. },
  22214. wereBack: {
  22215. height: math.unit(12 + 8 / 12, "feet"),
  22216. weight: math.unit(4000, "lb"),
  22217. name: "Back (Were)",
  22218. image: {
  22219. source: "./media/characters/dhari/were-back.svg",
  22220. extra: 1065 / 969,
  22221. bottom: 0.012
  22222. }
  22223. },
  22224. wereMaw: {
  22225. height: math.unit(0.625, "meters"),
  22226. name: "Maw (Were)",
  22227. image: {
  22228. source: "./media/characters/dhari/were-maw.svg"
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Normal",
  22235. height: math.unit(6 + 3 / 12, "feet"),
  22236. default: true
  22237. },
  22238. ]
  22239. ))
  22240. characterMakers.push(() => makeCharacter(
  22241. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22242. {
  22243. anthro: {
  22244. height: math.unit(5 + 7 / 12, "feet"),
  22245. weight: math.unit(175, "lb"),
  22246. name: "Anthro",
  22247. image: {
  22248. source: "./media/characters/rena-dyne/anthro.svg",
  22249. extra: 1849 / 1785,
  22250. bottom: 0.005
  22251. }
  22252. },
  22253. taur: {
  22254. height: math.unit(15 + 6 / 12, "feet"),
  22255. weight: math.unit(8000, "lb"),
  22256. name: "Taur",
  22257. image: {
  22258. source: "./media/characters/rena-dyne/taur.svg",
  22259. extra: 2315 / 2234,
  22260. bottom: 0.033
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(5 + 7 / 12, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(8, "feet"),
  22277. weight: math.unit(600, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/weremeep/front.svg",
  22281. extra: 970/849,
  22282. bottom: 7/977
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(8, "feet"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Lorg",
  22294. height: math.unit(12, "feet")
  22295. },
  22296. {
  22297. name: "Oh Lawd She Comin'",
  22298. height: math.unit(20, "feet")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22304. {
  22305. front: {
  22306. height: math.unit(4, "feet"),
  22307. weight: math.unit(90, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/reza/front.svg",
  22311. extra: 1183 / 1111,
  22312. bottom: 0.017
  22313. }
  22314. },
  22315. back: {
  22316. height: math.unit(4, "feet"),
  22317. weight: math.unit(90, "lb"),
  22318. name: "Back",
  22319. image: {
  22320. source: "./media/characters/reza/back.svg",
  22321. extra: 1183 / 1111,
  22322. bottom: 0.01
  22323. }
  22324. },
  22325. drake: {
  22326. height: math.unit(30, "feet"),
  22327. weight: math.unit(246960, "lb"),
  22328. name: "Drake",
  22329. image: {
  22330. source: "./media/characters/reza/drake.svg",
  22331. extra: 2350 / 2024,
  22332. bottom: 60.7 / 2403
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(4, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22346. {
  22347. side: {
  22348. height: math.unit(15, "feet"),
  22349. weight: math.unit(14, "tons"),
  22350. name: "Side",
  22351. image: {
  22352. source: "./media/characters/athea/side.svg",
  22353. extra: 960 / 540,
  22354. bottom: 0.003
  22355. }
  22356. },
  22357. sitting: {
  22358. height: math.unit(6 * 2.85, "feet"),
  22359. weight: math.unit(14, "tons"),
  22360. name: "Sitting",
  22361. image: {
  22362. source: "./media/characters/athea/sitting.svg",
  22363. extra: 621 / 581,
  22364. bottom: 0.075
  22365. }
  22366. },
  22367. maw: {
  22368. height: math.unit(7.59498031496063, "feet"),
  22369. name: "Maw",
  22370. image: {
  22371. source: "./media/characters/athea/maw.svg"
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Lap Cat",
  22378. height: math.unit(2.5, "feet")
  22379. },
  22380. {
  22381. name: "Minimacro",
  22382. height: math.unit(15, "feet"),
  22383. default: true
  22384. },
  22385. {
  22386. name: "Macro",
  22387. height: math.unit(120, "feet")
  22388. },
  22389. {
  22390. name: "Macro+",
  22391. height: math.unit(640, "feet")
  22392. },
  22393. {
  22394. name: "Colossus",
  22395. height: math.unit(2.2, "miles")
  22396. },
  22397. ]
  22398. ))
  22399. characterMakers.push(() => makeCharacter(
  22400. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22401. {
  22402. front: {
  22403. height: math.unit(8 + 8 / 12, "feet"),
  22404. weight: math.unit(130, "kg"),
  22405. name: "Front",
  22406. image: {
  22407. source: "./media/characters/seroko/front.svg",
  22408. extra: 1385 / 1280,
  22409. bottom: 0.025
  22410. }
  22411. },
  22412. back: {
  22413. height: math.unit(8 + 8 / 12, "feet"),
  22414. weight: math.unit(130, "kg"),
  22415. name: "Back",
  22416. image: {
  22417. source: "./media/characters/seroko/back.svg",
  22418. extra: 1369 / 1238,
  22419. bottom: 0.018
  22420. }
  22421. },
  22422. frontDressed: {
  22423. height: math.unit(8 + 8 / 12, "feet"),
  22424. weight: math.unit(130, "kg"),
  22425. name: "Front (Dressed)",
  22426. image: {
  22427. source: "./media/characters/seroko/front-dressed.svg",
  22428. extra: 1366 / 1275,
  22429. bottom: 0.03
  22430. }
  22431. },
  22432. },
  22433. [
  22434. {
  22435. name: "Normal",
  22436. height: math.unit(8 + 8 / 12, "feet"),
  22437. default: true
  22438. },
  22439. ]
  22440. ))
  22441. characterMakers.push(() => makeCharacter(
  22442. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22443. {
  22444. front: {
  22445. height: math.unit(5.5, "feet"),
  22446. weight: math.unit(160, "lb"),
  22447. name: "Front",
  22448. image: {
  22449. source: "./media/characters/quatzi/front.svg",
  22450. extra: 2346 / 2242,
  22451. bottom: 0.015
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Normal",
  22458. height: math.unit(5.5, "feet"),
  22459. default: true
  22460. },
  22461. {
  22462. name: "Big",
  22463. height: math.unit(7.7, "feet")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(5 + 11 / 12, "feet"),
  22472. weight: math.unit(180, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/sen/front.svg",
  22476. extra: 1321 / 1254,
  22477. bottom: 0.015
  22478. }
  22479. },
  22480. side: {
  22481. height: math.unit(5 + 11 / 12, "feet"),
  22482. weight: math.unit(180, "lb"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/sen/side.svg",
  22486. extra: 1321 / 1254,
  22487. bottom: 0.007
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(5 + 11 / 12, "feet"),
  22492. weight: math.unit(180, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/sen/back.svg",
  22496. extra: 1321 / 1254
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(5 + 11 / 12, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(166.6, "cm"),
  22513. weight: math.unit(66.6, "kg"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/fruity/front.svg",
  22517. extra: 1510 / 1386,
  22518. bottom: 0.04
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(166.6, "cm"),
  22523. weight: math.unit(66.6, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/fruity/back.svg",
  22527. extra: 1563 / 1435,
  22528. bottom: 0.005
  22529. }
  22530. },
  22531. },
  22532. [
  22533. {
  22534. name: "Normal",
  22535. height: math.unit(166.6, "cm"),
  22536. default: true
  22537. },
  22538. {
  22539. name: "Demonic",
  22540. height: math.unit(166.6, "feet")
  22541. },
  22542. ]
  22543. ))
  22544. characterMakers.push(() => makeCharacter(
  22545. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22546. {
  22547. side: {
  22548. height: math.unit(10, "feet"),
  22549. weight: math.unit(500, "lb"),
  22550. name: "Side",
  22551. image: {
  22552. source: "./media/characters/zost/side.svg",
  22553. extra: 2870/2533,
  22554. bottom: 252/3122
  22555. }
  22556. },
  22557. mawFront: {
  22558. height: math.unit(1.08, "meters"),
  22559. name: "Maw (Front)",
  22560. image: {
  22561. source: "./media/characters/zost/maw-front.svg"
  22562. }
  22563. },
  22564. mawSide: {
  22565. height: math.unit(2.66, "feet"),
  22566. name: "Maw (Side)",
  22567. image: {
  22568. source: "./media/characters/zost/maw-side.svg"
  22569. }
  22570. },
  22571. wingspan: {
  22572. height: math.unit(7.4, "feet"),
  22573. name: "Wingspan",
  22574. image: {
  22575. source: "./media/characters/zost/wingspan.svg"
  22576. }
  22577. },
  22578. },
  22579. [
  22580. {
  22581. name: "Normal",
  22582. height: math.unit(10, "feet"),
  22583. default: true
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(5 + 4 / 12, "feet"),
  22592. weight: math.unit(120, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/luci/front.svg",
  22596. extra: 1985 / 1884,
  22597. bottom: 0.04
  22598. }
  22599. },
  22600. back: {
  22601. height: math.unit(5 + 4 / 12, "feet"),
  22602. weight: math.unit(120, "lb"),
  22603. name: "Back",
  22604. image: {
  22605. source: "./media/characters/luci/back.svg",
  22606. extra: 1892 / 1791,
  22607. bottom: 0.002
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(5 + 4 / 12, "feet"),
  22615. default: true
  22616. },
  22617. ]
  22618. ))
  22619. characterMakers.push(() => makeCharacter(
  22620. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22621. {
  22622. front: {
  22623. height: math.unit(1500, "feet"),
  22624. weight: math.unit(3.8e6, "tons"),
  22625. name: "Front",
  22626. image: {
  22627. source: "./media/characters/2th/front.svg",
  22628. extra: 3489 / 3350,
  22629. bottom: 0.1
  22630. }
  22631. },
  22632. foot: {
  22633. height: math.unit(461, "feet"),
  22634. name: "Foot",
  22635. image: {
  22636. source: "./media/characters/2th/foot.svg"
  22637. }
  22638. },
  22639. },
  22640. [
  22641. {
  22642. name: "\"Micro\"",
  22643. height: math.unit(15 + 7 / 12, "feet")
  22644. },
  22645. {
  22646. name: "Normal",
  22647. height: math.unit(1500, "feet"),
  22648. default: true
  22649. },
  22650. {
  22651. name: "Macro",
  22652. height: math.unit(5000, "feet")
  22653. },
  22654. {
  22655. name: "Megamacro",
  22656. height: math.unit(15, "miles")
  22657. },
  22658. {
  22659. name: "Gigamacro",
  22660. height: math.unit(4000, "miles")
  22661. },
  22662. {
  22663. name: "Galactic",
  22664. height: math.unit(50, "AU")
  22665. },
  22666. ]
  22667. ))
  22668. characterMakers.push(() => makeCharacter(
  22669. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22670. {
  22671. front: {
  22672. height: math.unit(5 + 6 / 12, "feet"),
  22673. weight: math.unit(220, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/amethyst/front.svg",
  22677. extra: 2078 / 2040,
  22678. bottom: 0.045
  22679. }
  22680. },
  22681. back: {
  22682. height: math.unit(5 + 6 / 12, "feet"),
  22683. weight: math.unit(220, "lb"),
  22684. name: "Back",
  22685. image: {
  22686. source: "./media/characters/amethyst/back.svg",
  22687. extra: 2021 / 1989,
  22688. bottom: 0.02
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(5 + 6 / 12, "feet"),
  22696. default: true
  22697. },
  22698. ]
  22699. ))
  22700. characterMakers.push(() => makeCharacter(
  22701. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22702. {
  22703. front: {
  22704. height: math.unit(4 + 11 / 12, "feet"),
  22705. weight: math.unit(120, "lb"),
  22706. name: "Front",
  22707. image: {
  22708. source: "./media/characters/yumi-akiyama/front.svg",
  22709. extra: 1327 / 1235,
  22710. bottom: 0.02
  22711. }
  22712. },
  22713. back: {
  22714. height: math.unit(4 + 11 / 12, "feet"),
  22715. weight: math.unit(120, "lb"),
  22716. name: "Back",
  22717. image: {
  22718. source: "./media/characters/yumi-akiyama/back.svg",
  22719. extra: 1287 / 1245,
  22720. bottom: 0.002
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Galactic",
  22727. height: math.unit(50, "galaxies"),
  22728. default: true
  22729. },
  22730. {
  22731. name: "Universal",
  22732. height: math.unit(100, "universes")
  22733. },
  22734. ]
  22735. ))
  22736. characterMakers.push(() => makeCharacter(
  22737. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22738. {
  22739. front: {
  22740. height: math.unit(8, "feet"),
  22741. weight: math.unit(500, "lb"),
  22742. name: "Front",
  22743. image: {
  22744. source: "./media/characters/rifter-yrmori/front.svg",
  22745. extra: 1180 / 1125,
  22746. bottom: 0.02
  22747. }
  22748. },
  22749. back: {
  22750. height: math.unit(8, "feet"),
  22751. weight: math.unit(500, "lb"),
  22752. name: "Back",
  22753. image: {
  22754. source: "./media/characters/rifter-yrmori/back.svg",
  22755. extra: 1190 / 1145,
  22756. bottom: 0.001
  22757. }
  22758. },
  22759. wings: {
  22760. height: math.unit(7.75, "feet"),
  22761. weight: math.unit(500, "lb"),
  22762. name: "Wings",
  22763. image: {
  22764. source: "./media/characters/rifter-yrmori/wings.svg",
  22765. extra: 1357 / 1285
  22766. }
  22767. },
  22768. maw: {
  22769. height: math.unit(0.8, "feet"),
  22770. name: "Maw",
  22771. image: {
  22772. source: "./media/characters/rifter-yrmori/maw.svg"
  22773. }
  22774. },
  22775. mawfront: {
  22776. height: math.unit(1.45, "feet"),
  22777. name: "Maw (Front)",
  22778. image: {
  22779. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Normal",
  22786. height: math.unit(8, "feet"),
  22787. default: true
  22788. },
  22789. {
  22790. name: "Macro",
  22791. height: math.unit(42, "meters")
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22797. {
  22798. were: {
  22799. height: math.unit(25 + 6 / 12, "feet"),
  22800. weight: math.unit(10000, "lb"),
  22801. name: "Were",
  22802. image: {
  22803. source: "./media/characters/tahajin/were.svg",
  22804. extra: 801 / 770,
  22805. bottom: 0.042
  22806. }
  22807. },
  22808. aquatic: {
  22809. height: math.unit(6 + 4 / 12, "feet"),
  22810. weight: math.unit(160, "lb"),
  22811. name: "Aquatic",
  22812. image: {
  22813. source: "./media/characters/tahajin/aquatic.svg",
  22814. extra: 572 / 542,
  22815. bottom: 0.04
  22816. }
  22817. },
  22818. chow: {
  22819. height: math.unit(8 + 11 / 12, "feet"),
  22820. weight: math.unit(450, "lb"),
  22821. name: "Chow",
  22822. image: {
  22823. source: "./media/characters/tahajin/chow.svg",
  22824. extra: 660 / 640,
  22825. bottom: 0.015
  22826. }
  22827. },
  22828. demiNaga: {
  22829. height: math.unit(6 + 8 / 12, "feet"),
  22830. weight: math.unit(300, "lb"),
  22831. name: "Demi Naga",
  22832. image: {
  22833. source: "./media/characters/tahajin/demi-naga.svg",
  22834. extra: 643 / 615,
  22835. bottom: 0.1
  22836. }
  22837. },
  22838. data: {
  22839. height: math.unit(5, "inches"),
  22840. weight: math.unit(0.1, "lb"),
  22841. name: "Data",
  22842. image: {
  22843. source: "./media/characters/tahajin/data.svg"
  22844. }
  22845. },
  22846. fluu: {
  22847. height: math.unit(5 + 7 / 12, "feet"),
  22848. weight: math.unit(140, "lb"),
  22849. name: "Fluu",
  22850. image: {
  22851. source: "./media/characters/tahajin/fluu.svg",
  22852. extra: 628 / 592,
  22853. bottom: 0.02
  22854. }
  22855. },
  22856. starWarrior: {
  22857. height: math.unit(4 + 5 / 12, "feet"),
  22858. weight: math.unit(50, "lb"),
  22859. name: "Star Warrior",
  22860. image: {
  22861. source: "./media/characters/tahajin/star-warrior.svg"
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(25 + 6 / 12, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(8, "feet"),
  22878. weight: math.unit(350, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/gabira/front.svg",
  22882. extra: 1261/1154,
  22883. bottom: 51/1312
  22884. }
  22885. },
  22886. back: {
  22887. height: math.unit(8, "feet"),
  22888. weight: math.unit(350, "lb"),
  22889. name: "Back",
  22890. image: {
  22891. source: "./media/characters/gabira/back.svg",
  22892. extra: 1265/1163,
  22893. bottom: 46/1311
  22894. }
  22895. },
  22896. head: {
  22897. height: math.unit(2.85, "feet"),
  22898. name: "Head",
  22899. image: {
  22900. source: "./media/characters/gabira/head.svg"
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Normal",
  22907. height: math.unit(8, "feet"),
  22908. default: true
  22909. },
  22910. ]
  22911. ))
  22912. characterMakers.push(() => makeCharacter(
  22913. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22914. {
  22915. front: {
  22916. height: math.unit(5 + 3 / 12, "feet"),
  22917. weight: math.unit(137, "lb"),
  22918. name: "Front",
  22919. image: {
  22920. source: "./media/characters/sasha-katraine/front.svg",
  22921. extra: 1745/1694,
  22922. bottom: 37/1782
  22923. }
  22924. },
  22925. back: {
  22926. height: math.unit(5 + 3 / 12, "feet"),
  22927. weight: math.unit(137, "lb"),
  22928. name: "Back",
  22929. image: {
  22930. source: "./media/characters/sasha-katraine/back.svg",
  22931. extra: 1776/1699,
  22932. bottom: 26/1802
  22933. }
  22934. },
  22935. },
  22936. [
  22937. {
  22938. name: "Micro",
  22939. height: math.unit(5, "inches")
  22940. },
  22941. {
  22942. name: "Normal",
  22943. height: math.unit(5 + 3 / 12, "feet"),
  22944. default: true
  22945. },
  22946. ]
  22947. ))
  22948. characterMakers.push(() => makeCharacter(
  22949. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22950. {
  22951. side: {
  22952. height: math.unit(4, "inches"),
  22953. weight: math.unit(200, "grams"),
  22954. name: "Side",
  22955. image: {
  22956. source: "./media/characters/der/side.svg",
  22957. extra: 719 / 400,
  22958. bottom: 30.6 / 749.9187
  22959. }
  22960. },
  22961. },
  22962. [
  22963. {
  22964. name: "Micro",
  22965. height: math.unit(4, "inches"),
  22966. default: true
  22967. },
  22968. ]
  22969. ))
  22970. characterMakers.push(() => makeCharacter(
  22971. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22972. {
  22973. side: {
  22974. height: math.unit(30, "meters"),
  22975. weight: math.unit(700, "tonnes"),
  22976. name: "Side",
  22977. image: {
  22978. source: "./media/characters/fixerdragon/side.svg",
  22979. extra: (1293.0514 - 116.03) / 1106.86,
  22980. bottom: 116.03 / 1293.0514
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Planck",
  22987. height: math.unit(1.6e-35, "meters")
  22988. },
  22989. {
  22990. name: "Micro",
  22991. height: math.unit(0.4, "meters")
  22992. },
  22993. {
  22994. name: "Normal",
  22995. height: math.unit(30, "meters"),
  22996. default: true
  22997. },
  22998. {
  22999. name: "Megamacro",
  23000. height: math.unit(1.2, "megameters")
  23001. },
  23002. {
  23003. name: "Teramacro",
  23004. height: math.unit(130, "terameters")
  23005. },
  23006. {
  23007. name: "Yottamacro",
  23008. height: math.unit(6200, "yottameters")
  23009. },
  23010. ]
  23011. ));
  23012. characterMakers.push(() => makeCharacter(
  23013. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23014. {
  23015. front: {
  23016. height: math.unit(8, "feet"),
  23017. weight: math.unit(250, "lb"),
  23018. name: "Front",
  23019. image: {
  23020. source: "./media/characters/kite/front.svg",
  23021. extra: 2796 / 2659,
  23022. bottom: 0.002
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(8, "feet"),
  23030. default: true
  23031. },
  23032. {
  23033. name: "Macro",
  23034. height: math.unit(360, "feet")
  23035. },
  23036. {
  23037. name: "Megamacro",
  23038. height: math.unit(1500, "feet")
  23039. },
  23040. ]
  23041. ))
  23042. characterMakers.push(() => makeCharacter(
  23043. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23044. {
  23045. front: {
  23046. height: math.unit(5 + 11/12, "feet"),
  23047. weight: math.unit(170, "lb"),
  23048. name: "Front",
  23049. image: {
  23050. source: "./media/characters/poojawa-vynar/front.svg",
  23051. extra: 1735/1585,
  23052. bottom: 96/1831
  23053. }
  23054. },
  23055. back: {
  23056. height: math.unit(5 + 11/12, "feet"),
  23057. weight: math.unit(170, "lb"),
  23058. name: "Back",
  23059. image: {
  23060. source: "./media/characters/poojawa-vynar/back.svg",
  23061. extra: 1749/1607,
  23062. bottom: 28/1777
  23063. }
  23064. },
  23065. male: {
  23066. height: math.unit(5 + 11/12, "feet"),
  23067. weight: math.unit(170, "lb"),
  23068. name: "Male",
  23069. image: {
  23070. source: "./media/characters/poojawa-vynar/male.svg",
  23071. extra: 1855/1713,
  23072. bottom: 63/1918
  23073. }
  23074. },
  23075. taur: {
  23076. height: math.unit(5 + 11/12, "feet"),
  23077. weight: math.unit(170, "lb"),
  23078. name: "Taur",
  23079. image: {
  23080. source: "./media/characters/poojawa-vynar/taur.svg",
  23081. extra: 1151/1059,
  23082. bottom: 356/1507
  23083. }
  23084. },
  23085. frontDressed: {
  23086. height: math.unit(5 + 11/12, "feet"),
  23087. weight: math.unit(170, "lb"),
  23088. name: "Front (Dressed)",
  23089. image: {
  23090. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23091. extra: 1735/1585,
  23092. bottom: 96/1831
  23093. }
  23094. },
  23095. backDressed: {
  23096. height: math.unit(5 + 11/12, "feet"),
  23097. weight: math.unit(170, "lb"),
  23098. name: "Back (Dressed)",
  23099. image: {
  23100. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23101. extra: 1749/1607,
  23102. bottom: 28/1777
  23103. }
  23104. },
  23105. maleDressed: {
  23106. height: math.unit(5 + 11/12, "feet"),
  23107. weight: math.unit(170, "lb"),
  23108. name: "Male (Dressed)",
  23109. image: {
  23110. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23111. extra: 1855/1713,
  23112. bottom: 63/1918
  23113. }
  23114. },
  23115. taurDressed: {
  23116. height: math.unit(5 + 11/12, "feet"),
  23117. weight: math.unit(170, "lb"),
  23118. name: "Taur (Dressed)",
  23119. image: {
  23120. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23121. extra: 1151/1059,
  23122. bottom: 356/1507
  23123. }
  23124. },
  23125. maw: {
  23126. height: math.unit(1.46, "feet"),
  23127. name: "Maw",
  23128. image: {
  23129. source: "./media/characters/poojawa-vynar/maw.svg"
  23130. }
  23131. },
  23132. head: {
  23133. height: math.unit(2.34, "feet"),
  23134. name: "Head",
  23135. image: {
  23136. source: "./media/characters/poojawa-vynar/head.svg"
  23137. }
  23138. },
  23139. paw: {
  23140. height: math.unit(1.61, "feet"),
  23141. name: "Paw",
  23142. image: {
  23143. source: "./media/characters/poojawa-vynar/paw.svg"
  23144. }
  23145. },
  23146. pawToering: {
  23147. height: math.unit(1.72, "feet"),
  23148. name: "Paw (Toering)",
  23149. image: {
  23150. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23151. }
  23152. },
  23153. toering: {
  23154. height: math.unit(2.9, "inches"),
  23155. name: "Toering",
  23156. image: {
  23157. source: "./media/characters/poojawa-vynar/toering.svg"
  23158. }
  23159. },
  23160. shaft: {
  23161. height: math.unit(0.625, "feet"),
  23162. name: "Shaft",
  23163. image: {
  23164. source: "./media/characters/poojawa-vynar/shaft.svg"
  23165. }
  23166. },
  23167. spade: {
  23168. height: math.unit(0.42, "feet"),
  23169. name: "Spade",
  23170. image: {
  23171. source: "./media/characters/poojawa-vynar/spade.svg"
  23172. }
  23173. },
  23174. },
  23175. [
  23176. {
  23177. name: "Shortstack",
  23178. height: math.unit(4, "feet")
  23179. },
  23180. {
  23181. name: "Normal",
  23182. height: math.unit(5 + 11 / 12, "feet"),
  23183. default: true
  23184. },
  23185. {
  23186. name: "Tauric",
  23187. height: math.unit(4, "meters")
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23193. {
  23194. front: {
  23195. height: math.unit(293, "meters"),
  23196. weight: math.unit(70400, "tons"),
  23197. name: "Front",
  23198. image: {
  23199. source: "./media/characters/violette/front.svg",
  23200. extra: 1227 / 1180,
  23201. bottom: 0.005
  23202. }
  23203. },
  23204. back: {
  23205. height: math.unit(293, "meters"),
  23206. weight: math.unit(70400, "tons"),
  23207. name: "Back",
  23208. image: {
  23209. source: "./media/characters/violette/back.svg",
  23210. extra: 1227 / 1180,
  23211. bottom: 0.005
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Macro",
  23218. height: math.unit(293, "meters"),
  23219. default: true
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(1050, "feet"),
  23228. weight: math.unit(200000, "tons"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/alessandra/front.svg",
  23232. extra: 960 / 912,
  23233. bottom: 0.06
  23234. }
  23235. },
  23236. },
  23237. [
  23238. {
  23239. name: "Macro",
  23240. height: math.unit(1050, "feet")
  23241. },
  23242. {
  23243. name: "Macro+",
  23244. height: math.unit(900, "meters"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(5, "feet"),
  23254. weight: math.unit(187, "lb"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/person/front.svg",
  23258. extra: 3087 / 2945,
  23259. bottom: 91 / 3181
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Micro",
  23266. height: math.unit(3, "inches")
  23267. },
  23268. {
  23269. name: "Normal",
  23270. height: math.unit(5, "feet"),
  23271. default: true
  23272. },
  23273. {
  23274. name: "Macro",
  23275. height: math.unit(90, "feet")
  23276. },
  23277. {
  23278. name: "Max Size",
  23279. height: math.unit(280, "feet")
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(4.5, "meters"),
  23288. weight: math.unit(3200, "lb"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/ty/front.svg",
  23292. extra: 1038 / 960,
  23293. bottom: 31.156 / 1068
  23294. }
  23295. },
  23296. back: {
  23297. height: math.unit(4.5, "meters"),
  23298. weight: math.unit(3200, "lb"),
  23299. name: "Back",
  23300. image: {
  23301. source: "./media/characters/ty/back.svg",
  23302. extra: 1044 / 966,
  23303. bottom: 7.48 / 1049
  23304. }
  23305. },
  23306. },
  23307. [
  23308. {
  23309. name: "Normal",
  23310. height: math.unit(4.5, "meters"),
  23311. default: true
  23312. },
  23313. ]
  23314. ))
  23315. characterMakers.push(() => makeCharacter(
  23316. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23317. {
  23318. front: {
  23319. height: math.unit(5 + 4 / 12, "feet"),
  23320. weight: math.unit(115, "lb"),
  23321. name: "Front",
  23322. image: {
  23323. source: "./media/characters/rocky/front.svg",
  23324. extra: 1012 / 975,
  23325. bottom: 54 / 1066
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(5 + 4 / 12, "feet"),
  23333. default: true
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23339. {
  23340. upright: {
  23341. height: math.unit(6, "meters"),
  23342. weight: math.unit(4000, "kg"),
  23343. name: "Upright",
  23344. image: {
  23345. source: "./media/characters/ruin/upright.svg",
  23346. extra: 668 / 661,
  23347. bottom: 42 / 799.8396
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(6, "meters"),
  23355. default: true
  23356. },
  23357. ]
  23358. ))
  23359. characterMakers.push(() => makeCharacter(
  23360. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23361. {
  23362. front: {
  23363. height: math.unit(5, "feet"),
  23364. weight: math.unit(106, "lb"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/robin/front.svg",
  23368. extra: 862 / 799,
  23369. bottom: 42.4 / 914.8856
  23370. }
  23371. },
  23372. },
  23373. [
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(5, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23383. {
  23384. side: {
  23385. height: math.unit(3, "feet"),
  23386. weight: math.unit(225, "lb"),
  23387. name: "Side",
  23388. image: {
  23389. source: "./media/characters/saian/side.svg",
  23390. extra: 566 / 356,
  23391. bottom: 79.7 / 643
  23392. }
  23393. },
  23394. maw: {
  23395. height: math.unit(2.85, "feet"),
  23396. name: "Maw",
  23397. image: {
  23398. source: "./media/characters/saian/maw.svg"
  23399. }
  23400. },
  23401. },
  23402. [
  23403. {
  23404. name: "Normal",
  23405. height: math.unit(3, "feet"),
  23406. default: true
  23407. },
  23408. ]
  23409. ))
  23410. characterMakers.push(() => makeCharacter(
  23411. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23412. {
  23413. side: {
  23414. height: math.unit(8, "feet"),
  23415. weight: math.unit(300, "lb"),
  23416. name: "Side",
  23417. image: {
  23418. source: "./media/characters/equus-silvermane/side.svg",
  23419. extra: 2176 / 2050,
  23420. bottom: 65.7 / 2245
  23421. }
  23422. },
  23423. front: {
  23424. height: math.unit(8, "feet"),
  23425. weight: math.unit(300, "lb"),
  23426. name: "Front",
  23427. image: {
  23428. source: "./media/characters/equus-silvermane/front.svg",
  23429. extra: 4633 / 4400,
  23430. bottom: 71.3 / 4706.915
  23431. }
  23432. },
  23433. sideStepping: {
  23434. height: math.unit(8, "feet"),
  23435. weight: math.unit(300, "lb"),
  23436. name: "Side (Stepping)",
  23437. image: {
  23438. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23439. extra: 1968 / 1860,
  23440. bottom: 16.4 / 1989
  23441. }
  23442. },
  23443. },
  23444. [
  23445. {
  23446. name: "Normal",
  23447. height: math.unit(8, "feet")
  23448. },
  23449. {
  23450. name: "Minimacro",
  23451. height: math.unit(75, "feet"),
  23452. default: true
  23453. },
  23454. {
  23455. name: "Macro",
  23456. height: math.unit(150, "feet")
  23457. },
  23458. {
  23459. name: "Macro+",
  23460. height: math.unit(1000, "feet")
  23461. },
  23462. {
  23463. name: "Megamacro",
  23464. height: math.unit(1, "mile")
  23465. },
  23466. ]
  23467. ))
  23468. characterMakers.push(() => makeCharacter(
  23469. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23470. {
  23471. side: {
  23472. height: math.unit(20, "feet"),
  23473. weight: math.unit(30000, "kg"),
  23474. name: "Side",
  23475. image: {
  23476. source: "./media/characters/windar/side.svg",
  23477. extra: 1491 / 1248,
  23478. bottom: 82.56 / 1568
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(20, "feet"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23492. {
  23493. side: {
  23494. height: math.unit(15.66, "feet"),
  23495. weight: math.unit(150, "lb"),
  23496. name: "Side",
  23497. image: {
  23498. source: "./media/characters/melody/side.svg",
  23499. extra: 1097 / 944,
  23500. bottom: 11.8 / 1109
  23501. }
  23502. },
  23503. sideOutfit: {
  23504. height: math.unit(15.66, "feet"),
  23505. weight: math.unit(150, "lb"),
  23506. name: "Side (Outfit)",
  23507. image: {
  23508. source: "./media/characters/melody/side-outfit.svg",
  23509. extra: 1097 / 944,
  23510. bottom: 11.8 / 1109
  23511. }
  23512. },
  23513. },
  23514. [
  23515. {
  23516. name: "Normal",
  23517. height: math.unit(15.66, "feet"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23524. {
  23525. armoredFront: {
  23526. height: math.unit(8, "feet"),
  23527. weight: math.unit(325, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/windera/armored-front.svg",
  23531. extra: 1830/1598,
  23532. bottom: 151/1981
  23533. },
  23534. form: "armored",
  23535. default: true
  23536. },
  23537. macroFront: {
  23538. height: math.unit(70, "feet"),
  23539. weight: math.unit(315453, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/windera/macro-front.svg",
  23543. extra: 963/883,
  23544. bottom: 23/986
  23545. },
  23546. form: "macro",
  23547. default: true
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "Normal",
  23553. height: math.unit(8, "feet"),
  23554. default: true,
  23555. form: "armored"
  23556. },
  23557. {
  23558. name: "Normal",
  23559. height: math.unit(70, "feet"),
  23560. default: true,
  23561. form: "macro"
  23562. },
  23563. ],
  23564. {
  23565. "armored": {
  23566. name: "Armored",
  23567. default: true
  23568. },
  23569. "macro": {
  23570. name: "Macro",
  23571. },
  23572. }
  23573. ))
  23574. characterMakers.push(() => makeCharacter(
  23575. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23576. {
  23577. front: {
  23578. height: math.unit(28.75, "feet"),
  23579. weight: math.unit(2000, "kg"),
  23580. name: "Front",
  23581. image: {
  23582. source: "./media/characters/sonear/front.svg",
  23583. extra: 1041.1 / 964.9,
  23584. bottom: 53.7 / 1096.6
  23585. }
  23586. },
  23587. },
  23588. [
  23589. {
  23590. name: "Normal",
  23591. height: math.unit(28.75, "feet"),
  23592. default: true
  23593. },
  23594. ]
  23595. ))
  23596. characterMakers.push(() => makeCharacter(
  23597. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23598. {
  23599. side: {
  23600. height: math.unit(25.5, "feet"),
  23601. weight: math.unit(23000, "kg"),
  23602. name: "Side",
  23603. image: {
  23604. source: "./media/characters/kanara/side.svg"
  23605. }
  23606. },
  23607. },
  23608. [
  23609. {
  23610. name: "Normal",
  23611. height: math.unit(25.5, "feet"),
  23612. default: true
  23613. },
  23614. ]
  23615. ))
  23616. characterMakers.push(() => makeCharacter(
  23617. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23618. {
  23619. side: {
  23620. height: math.unit(10, "feet"),
  23621. weight: math.unit(1000, "kg"),
  23622. name: "Side",
  23623. image: {
  23624. source: "./media/characters/ereus/side.svg",
  23625. extra: 1157 / 959,
  23626. bottom: 153 / 1312.5
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Normal",
  23633. height: math.unit(10, "feet"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23640. {
  23641. side: {
  23642. height: math.unit(4.5, "feet"),
  23643. weight: math.unit(500, "lb"),
  23644. name: "Side",
  23645. image: {
  23646. source: "./media/characters/e-ter/side.svg",
  23647. extra: 1550 / 1248,
  23648. bottom: 146 / 1694
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Normal",
  23655. height: math.unit(4.5, "feet"),
  23656. default: true
  23657. },
  23658. ]
  23659. ))
  23660. characterMakers.push(() => makeCharacter(
  23661. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23662. {
  23663. side: {
  23664. height: math.unit(9.7, "feet"),
  23665. weight: math.unit(4000, "kg"),
  23666. name: "Side",
  23667. image: {
  23668. source: "./media/characters/yamie/side.svg"
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Normal",
  23675. height: math.unit(9.7, "feet"),
  23676. default: true
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(50, "feet"),
  23685. weight: math.unit(50000, "kg"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/anders/front.svg",
  23689. extra: 570 / 539,
  23690. bottom: 14.7 / 586.7
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Large",
  23697. height: math.unit(50, "feet")
  23698. },
  23699. {
  23700. name: "Macro",
  23701. height: math.unit(2000, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Megamacro",
  23706. height: math.unit(12, "miles")
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(7 + 2 / 12, "feet"),
  23715. weight: math.unit(300, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/reban/front.svg",
  23719. extra: 1287/1212,
  23720. bottom: 148/1435
  23721. }
  23722. },
  23723. head: {
  23724. height: math.unit(1.95, "feet"),
  23725. name: "Head",
  23726. image: {
  23727. source: "./media/characters/reban/head.svg"
  23728. }
  23729. },
  23730. maw: {
  23731. height: math.unit(0.95, "feet"),
  23732. name: "Maw",
  23733. image: {
  23734. source: "./media/characters/reban/maw.svg"
  23735. }
  23736. },
  23737. foot: {
  23738. height: math.unit(1.65, "feet"),
  23739. name: "Foot",
  23740. image: {
  23741. source: "./media/characters/reban/foot.svg"
  23742. }
  23743. },
  23744. dick: {
  23745. height: math.unit(7 / 5, "feet"),
  23746. name: "Dick",
  23747. image: {
  23748. source: "./media/characters/reban/dick.svg"
  23749. }
  23750. },
  23751. },
  23752. [
  23753. {
  23754. name: "Natural Height",
  23755. height: math.unit(7 + 2 / 12, "feet")
  23756. },
  23757. {
  23758. name: "Macro",
  23759. height: math.unit(500, "feet"),
  23760. default: true
  23761. },
  23762. {
  23763. name: "Canon Height",
  23764. height: math.unit(50, "AU")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(6, "feet"),
  23773. weight: math.unit(150, "lb"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/terrance-keayes/front.svg",
  23777. extra: 1.005,
  23778. bottom: 151 / 1615
  23779. }
  23780. },
  23781. side: {
  23782. height: math.unit(6, "feet"),
  23783. weight: math.unit(150, "lb"),
  23784. name: "Side",
  23785. image: {
  23786. source: "./media/characters/terrance-keayes/side.svg",
  23787. extra: 1.005,
  23788. bottom: 129.4 / 1544
  23789. }
  23790. },
  23791. back: {
  23792. height: math.unit(6, "feet"),
  23793. weight: math.unit(150, "lb"),
  23794. name: "Back",
  23795. image: {
  23796. source: "./media/characters/terrance-keayes/back.svg",
  23797. extra: 1.005,
  23798. bottom: 58.4 / 1557.3
  23799. }
  23800. },
  23801. dick: {
  23802. height: math.unit(6 * 0.208, "feet"),
  23803. name: "Dick",
  23804. image: {
  23805. source: "./media/characters/terrance-keayes/dick.svg"
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Canon Height",
  23812. height: math.unit(35, "miles"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23819. {
  23820. front: {
  23821. height: math.unit(6, "feet"),
  23822. weight: math.unit(150, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/ofelia/front.svg",
  23826. extra: 1130/1117,
  23827. bottom: 91/1221
  23828. }
  23829. },
  23830. back: {
  23831. height: math.unit(6, "feet"),
  23832. weight: math.unit(150, "lb"),
  23833. name: "Back",
  23834. image: {
  23835. source: "./media/characters/ofelia/back.svg",
  23836. extra: 1172/1159,
  23837. bottom: 28/1200
  23838. }
  23839. },
  23840. maw: {
  23841. height: math.unit(1, "feet"),
  23842. name: "Maw",
  23843. image: {
  23844. source: "./media/characters/ofelia/maw.svg"
  23845. }
  23846. },
  23847. foot: {
  23848. height: math.unit(1.949, "feet"),
  23849. name: "Foot",
  23850. image: {
  23851. source: "./media/characters/ofelia/foot.svg"
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Canon Height",
  23858. height: math.unit(2000, "miles"),
  23859. default: true
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23865. {
  23866. front: {
  23867. height: math.unit(6, "feet"),
  23868. weight: math.unit(150, "lb"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/samuel/front.svg",
  23872. extra: 265 / 258,
  23873. bottom: 2 / 266.1566
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Macro",
  23880. height: math.unit(100, "feet"),
  23881. default: true
  23882. },
  23883. {
  23884. name: "Full Size",
  23885. height: math.unit(1000, "miles")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23891. {
  23892. front: {
  23893. height: math.unit(6, "feet"),
  23894. weight: math.unit(300, "lb"),
  23895. name: "Front",
  23896. image: {
  23897. source: "./media/characters/beishir-kiel/front.svg",
  23898. extra: 569 / 547,
  23899. bottom: 41.9 / 609
  23900. }
  23901. },
  23902. maw: {
  23903. height: math.unit(6 * 0.202, "feet"),
  23904. name: "Maw",
  23905. image: {
  23906. source: "./media/characters/beishir-kiel/maw.svg"
  23907. }
  23908. },
  23909. },
  23910. [
  23911. {
  23912. name: "Macro",
  23913. height: math.unit(300, "feet"),
  23914. default: true
  23915. },
  23916. ]
  23917. ))
  23918. characterMakers.push(() => makeCharacter(
  23919. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23920. {
  23921. front: {
  23922. height: math.unit(5 + 7/12, "feet"),
  23923. weight: math.unit(120, "lb"),
  23924. name: "Front",
  23925. image: {
  23926. source: "./media/characters/logan-grey/front.svg",
  23927. extra: 1836/1738,
  23928. bottom: 108/1944
  23929. }
  23930. },
  23931. back: {
  23932. height: math.unit(5 + 7/12, "feet"),
  23933. weight: math.unit(120, "lb"),
  23934. name: "Back",
  23935. image: {
  23936. source: "./media/characters/logan-grey/back.svg",
  23937. extra: 1880/1794,
  23938. bottom: 24/1904
  23939. }
  23940. },
  23941. frontSfw: {
  23942. height: math.unit(5 + 7/12, "feet"),
  23943. weight: math.unit(120, "lb"),
  23944. name: "Front (SFW)",
  23945. image: {
  23946. source: "./media/characters/logan-grey/front-sfw.svg",
  23947. extra: 1836/1738,
  23948. bottom: 108/1944
  23949. }
  23950. },
  23951. backSfw: {
  23952. height: math.unit(5 + 7/12, "feet"),
  23953. weight: math.unit(120, "lb"),
  23954. name: "Back (SFW)",
  23955. image: {
  23956. source: "./media/characters/logan-grey/back-sfw.svg",
  23957. extra: 1880/1794,
  23958. bottom: 24/1904
  23959. }
  23960. },
  23961. hands: {
  23962. height: math.unit(0.84, "feet"),
  23963. name: "Hands",
  23964. image: {
  23965. source: "./media/characters/logan-grey/hands.svg"
  23966. }
  23967. },
  23968. paws: {
  23969. height: math.unit(0.72, "feet"),
  23970. name: "Paws",
  23971. image: {
  23972. source: "./media/characters/logan-grey/paws.svg"
  23973. }
  23974. },
  23975. cock: {
  23976. height: math.unit(1.45, "feet"),
  23977. name: "Cock",
  23978. image: {
  23979. source: "./media/characters/logan-grey/cock.svg"
  23980. }
  23981. },
  23982. cockAlt: {
  23983. height: math.unit(1.437, "feet"),
  23984. name: "Cock (alt)",
  23985. image: {
  23986. source: "./media/characters/logan-grey/cock-alt.svg"
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(5 + 8 / 12, "feet")
  23994. },
  23995. {
  23996. name: "The 500 Foot Femboy",
  23997. height: math.unit(500, "feet"),
  23998. default: true
  23999. },
  24000. {
  24001. name: "Megmacro",
  24002. height: math.unit(20, "miles")
  24003. },
  24004. ]
  24005. ))
  24006. characterMakers.push(() => makeCharacter(
  24007. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24008. {
  24009. front: {
  24010. height: math.unit(8 + 2 / 12, "feet"),
  24011. weight: math.unit(275, "lb"),
  24012. name: "Front",
  24013. image: {
  24014. source: "./media/characters/draganta/front.svg",
  24015. extra: 1177 / 1135,
  24016. bottom: 33.46 / 1212.1
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Normal",
  24023. height: math.unit(8 + 6 / 12, "feet"),
  24024. default: true
  24025. },
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(150, "feet")
  24029. },
  24030. {
  24031. name: "Megamacro",
  24032. height: math.unit(1000, "miles")
  24033. },
  24034. ]
  24035. ))
  24036. characterMakers.push(() => makeCharacter(
  24037. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24038. {
  24039. front: {
  24040. height: math.unit(1.72, "m"),
  24041. weight: math.unit(80, "lb"),
  24042. name: "Front",
  24043. image: {
  24044. source: "./media/characters/voski/front.svg",
  24045. extra: 2076.22 / 2022.4,
  24046. bottom: 102.7 / 2177.3866
  24047. }
  24048. },
  24049. frontFlaccid: {
  24050. height: math.unit(1.72, "m"),
  24051. weight: math.unit(80, "lb"),
  24052. name: "Front (Flaccid)",
  24053. image: {
  24054. source: "./media/characters/voski/front-flaccid.svg",
  24055. extra: 2076.22 / 2022.4,
  24056. bottom: 102.7 / 2177.3866
  24057. }
  24058. },
  24059. frontErect: {
  24060. height: math.unit(1.72, "m"),
  24061. weight: math.unit(80, "lb"),
  24062. name: "Front (Erect)",
  24063. image: {
  24064. source: "./media/characters/voski/front-erect.svg",
  24065. extra: 2076.22 / 2022.4,
  24066. bottom: 102.7 / 2177.3866
  24067. }
  24068. },
  24069. back: {
  24070. height: math.unit(1.72, "m"),
  24071. weight: math.unit(80, "lb"),
  24072. name: "Back",
  24073. image: {
  24074. source: "./media/characters/voski/back.svg",
  24075. extra: 2104 / 2051,
  24076. bottom: 10.45 / 2113.63
  24077. }
  24078. },
  24079. },
  24080. [
  24081. {
  24082. name: "Normal",
  24083. height: math.unit(1.72, "m")
  24084. },
  24085. {
  24086. name: "Macro",
  24087. height: math.unit(55, "m"),
  24088. default: true
  24089. },
  24090. {
  24091. name: "Macro+",
  24092. height: math.unit(300, "m")
  24093. },
  24094. {
  24095. name: "Macro++",
  24096. height: math.unit(700, "m")
  24097. },
  24098. {
  24099. name: "Macro+++",
  24100. height: math.unit(4500, "m")
  24101. },
  24102. {
  24103. name: "Macro++++",
  24104. height: math.unit(45, "km")
  24105. },
  24106. {
  24107. name: "Macro+++++",
  24108. height: math.unit(1220, "km")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(2.3, "m"),
  24117. weight: math.unit(304, "kg"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/icowom-lee/front.svg",
  24121. extra: 985 / 955,
  24122. bottom: 25.4 / 1012
  24123. }
  24124. },
  24125. fronttentacles: {
  24126. height: math.unit(2.3, "m"),
  24127. weight: math.unit(304, "kg"),
  24128. name: "Front-tentacles",
  24129. image: {
  24130. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24131. extra: 985 / 955,
  24132. bottom: 25.4 / 1012
  24133. }
  24134. },
  24135. back: {
  24136. height: math.unit(2.3, "m"),
  24137. weight: math.unit(304, "kg"),
  24138. name: "Back",
  24139. image: {
  24140. source: "./media/characters/icowom-lee/back.svg",
  24141. extra: 975 / 954,
  24142. bottom: 9.5 / 985
  24143. }
  24144. },
  24145. backtentacles: {
  24146. height: math.unit(2.3, "m"),
  24147. weight: math.unit(304, "kg"),
  24148. name: "Back-tentacles",
  24149. image: {
  24150. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24151. extra: 975 / 954,
  24152. bottom: 9.5 / 985
  24153. }
  24154. },
  24155. frontDressed: {
  24156. height: math.unit(2.3, "m"),
  24157. weight: math.unit(304, "kg"),
  24158. name: "Front (Dressed)",
  24159. image: {
  24160. source: "./media/characters/icowom-lee/front-dressed.svg",
  24161. extra: 3076 / 2933,
  24162. bottom: 51.4 / 3125.1889
  24163. }
  24164. },
  24165. rump: {
  24166. height: math.unit(0.776, "meters"),
  24167. name: "Rump",
  24168. image: {
  24169. source: "./media/characters/icowom-lee/rump.svg"
  24170. }
  24171. },
  24172. genitals: {
  24173. height: math.unit(0.78, "meters"),
  24174. name: "Genitals",
  24175. image: {
  24176. source: "./media/characters/icowom-lee/genitals.svg"
  24177. }
  24178. },
  24179. },
  24180. [
  24181. {
  24182. name: "Normal",
  24183. height: math.unit(2.3, "meters"),
  24184. default: true
  24185. },
  24186. {
  24187. name: "Macro",
  24188. height: math.unit(94, "meters"),
  24189. default: true
  24190. },
  24191. ]
  24192. ))
  24193. characterMakers.push(() => makeCharacter(
  24194. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24195. {
  24196. front: {
  24197. height: math.unit(22, "meters"),
  24198. weight: math.unit(21000, "kg"),
  24199. name: "Front",
  24200. image: {
  24201. source: "./media/characters/shock-diamond/front.svg",
  24202. extra: 2204 / 2053,
  24203. bottom: 65 / 2239.47
  24204. }
  24205. },
  24206. frontNude: {
  24207. height: math.unit(22, "meters"),
  24208. weight: math.unit(21000, "kg"),
  24209. name: "Front (Nude)",
  24210. image: {
  24211. source: "./media/characters/shock-diamond/front-nude.svg",
  24212. extra: 2514 / 2285,
  24213. bottom: 13 / 2527.56
  24214. }
  24215. },
  24216. },
  24217. [
  24218. {
  24219. name: "Normal",
  24220. height: math.unit(3, "meters")
  24221. },
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(22, "meters"),
  24225. default: true
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(5 + 4/12, "feet"),
  24234. weight: math.unit(125, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/rory/front.svg",
  24238. extra: 1790/1681,
  24239. bottom: 66/1856
  24240. }
  24241. },
  24242. back: {
  24243. height: math.unit(5 + 4/12, "feet"),
  24244. weight: math.unit(125, "lb"),
  24245. name: "Back",
  24246. image: {
  24247. source: "./media/characters/rory/back.svg",
  24248. extra: 1805/1690,
  24249. bottom: 56/1861
  24250. }
  24251. },
  24252. frontDressed: {
  24253. height: math.unit(5 + 4/12, "feet"),
  24254. weight: math.unit(125, "lb"),
  24255. name: "Front (Dressed)",
  24256. image: {
  24257. source: "./media/characters/rory/front-dressed.svg",
  24258. extra: 1790/1681,
  24259. bottom: 66/1856
  24260. }
  24261. },
  24262. backDressed: {
  24263. height: math.unit(5 + 4/12, "feet"),
  24264. weight: math.unit(125, "lb"),
  24265. name: "Back (Dressed)",
  24266. image: {
  24267. source: "./media/characters/rory/back-dressed.svg",
  24268. extra: 1805/1690,
  24269. bottom: 56/1861
  24270. }
  24271. },
  24272. frontNsfw: {
  24273. height: math.unit(5 + 4/12, "feet"),
  24274. weight: math.unit(125, "lb"),
  24275. name: "Front (NSFW)",
  24276. image: {
  24277. source: "./media/characters/rory/front-nsfw.svg",
  24278. extra: 1790/1681,
  24279. bottom: 66/1856
  24280. }
  24281. },
  24282. backNsfw: {
  24283. height: math.unit(5 + 4/12, "feet"),
  24284. weight: math.unit(125, "lb"),
  24285. name: "Back (NSFW)",
  24286. image: {
  24287. source: "./media/characters/rory/back-nsfw.svg",
  24288. extra: 1805/1690,
  24289. bottom: 56/1861
  24290. }
  24291. },
  24292. dick: {
  24293. height: math.unit(0.8, "feet"),
  24294. name: "Dick",
  24295. image: {
  24296. source: "./media/characters/rory/dick.svg"
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Micro",
  24303. height: math.unit(3, "inches")
  24304. },
  24305. {
  24306. name: "Normal",
  24307. height: math.unit(5 + 4/12, "feet"),
  24308. default: true
  24309. },
  24310. {
  24311. name: "Macro",
  24312. height: math.unit(90, "feet")
  24313. },
  24314. {
  24315. name: "Supercharged",
  24316. height: math.unit(270, "feet")
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(5 + 9 / 12, "feet"),
  24325. weight: math.unit(190, "lb"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/sprisk/front.svg",
  24329. extra: 1225 / 1180,
  24330. bottom: 42.7 / 1266.4
  24331. }
  24332. },
  24333. frontNsfw: {
  24334. height: math.unit(5 + 9 / 12, "feet"),
  24335. weight: math.unit(190, "lb"),
  24336. name: "Front (NSFW)",
  24337. image: {
  24338. source: "./media/characters/sprisk/front-nsfw.svg",
  24339. extra: 1225 / 1180,
  24340. bottom: 42.7 / 1266.4
  24341. }
  24342. },
  24343. back: {
  24344. height: math.unit(5 + 9 / 12, "feet"),
  24345. weight: math.unit(190, "lb"),
  24346. name: "Back",
  24347. image: {
  24348. source: "./media/characters/sprisk/back.svg",
  24349. extra: 1247 / 1200,
  24350. bottom: 5.6 / 1253.04
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Tiny",
  24357. height: math.unit(2, "inches")
  24358. },
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(5 + 9 / 12, "feet"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Mini Macro",
  24366. height: math.unit(18, "feet")
  24367. },
  24368. {
  24369. name: "Macro",
  24370. height: math.unit(100, "feet")
  24371. },
  24372. {
  24373. name: "MACRO",
  24374. height: math.unit(50, "miles")
  24375. },
  24376. {
  24377. name: "M A C R O",
  24378. height: math.unit(300, "miles")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24384. {
  24385. side: {
  24386. height: math.unit(15.6, "meters"),
  24387. weight: math.unit(700000, "kg"),
  24388. name: "Side",
  24389. image: {
  24390. source: "./media/characters/bunsen/side.svg",
  24391. extra: 1644 / 358
  24392. }
  24393. },
  24394. foot: {
  24395. height: math.unit(1.611 * 1644 / 358, "meter"),
  24396. name: "Foot",
  24397. image: {
  24398. source: "./media/characters/bunsen/foot.svg"
  24399. }
  24400. },
  24401. },
  24402. [
  24403. {
  24404. name: "Small",
  24405. height: math.unit(10, "feet")
  24406. },
  24407. {
  24408. name: "Normal",
  24409. height: math.unit(15.6, "meters"),
  24410. default: true
  24411. },
  24412. ]
  24413. ))
  24414. characterMakers.push(() => makeCharacter(
  24415. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24416. {
  24417. front: {
  24418. height: math.unit(4 + 11 / 12, "feet"),
  24419. weight: math.unit(140, "lb"),
  24420. name: "Front",
  24421. image: {
  24422. source: "./media/characters/sesh/front.svg",
  24423. extra: 3420 / 3231,
  24424. bottom: 72 / 3949.5
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(4 + 11 / 12, "feet")
  24432. },
  24433. {
  24434. name: "Grown",
  24435. height: math.unit(15, "feet"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "Macro",
  24440. height: math.unit(1500, "feet")
  24441. },
  24442. {
  24443. name: "Megamacro",
  24444. height: math.unit(30, "miles")
  24445. },
  24446. {
  24447. name: "Continental",
  24448. height: math.unit(3000, "miles")
  24449. },
  24450. {
  24451. name: "Gravity Mass",
  24452. height: math.unit(300000, "miles")
  24453. },
  24454. {
  24455. name: "Planet Buster",
  24456. height: math.unit(30000000, "miles")
  24457. },
  24458. {
  24459. name: "Big",
  24460. height: math.unit(3000000000, "miles")
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(9, "feet"),
  24469. weight: math.unit(350, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/pepper/front.svg",
  24473. extra: 1448 / 1312,
  24474. bottom: 9.4 / 1457.88
  24475. }
  24476. },
  24477. back: {
  24478. height: math.unit(9, "feet"),
  24479. weight: math.unit(350, "lb"),
  24480. name: "Back",
  24481. image: {
  24482. source: "./media/characters/pepper/back.svg",
  24483. extra: 1423 / 1300,
  24484. bottom: 4.6 / 1429
  24485. }
  24486. },
  24487. maw: {
  24488. height: math.unit(0.932, "feet"),
  24489. name: "Maw",
  24490. image: {
  24491. source: "./media/characters/pepper/maw.svg"
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(9, "feet"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(6, "feet"),
  24508. weight: math.unit(150, "lb"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/maelstrom/front.svg",
  24512. extra: 2100 / 1883,
  24513. bottom: 94 / 2196.7
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Less Kaiju",
  24520. height: math.unit(200, "feet")
  24521. },
  24522. {
  24523. name: "Kaiju",
  24524. height: math.unit(400, "feet"),
  24525. default: true
  24526. },
  24527. {
  24528. name: "Kaiju-er",
  24529. height: math.unit(600, "feet")
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(6 + 5 / 12, "feet"),
  24538. weight: math.unit(180, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/lexir/front.svg",
  24542. extra: 180 / 172,
  24543. bottom: 12 / 192
  24544. }
  24545. },
  24546. back: {
  24547. height: math.unit(6 + 5 / 12, "feet"),
  24548. weight: math.unit(180, "lb"),
  24549. name: "Back",
  24550. image: {
  24551. source: "./media/characters/lexir/back.svg",
  24552. extra: 1273/1201,
  24553. bottom: 39/1312
  24554. }
  24555. },
  24556. },
  24557. [
  24558. {
  24559. name: "Very Smal",
  24560. height: math.unit(1, "nm")
  24561. },
  24562. {
  24563. name: "Normal",
  24564. height: math.unit(6 + 5 / 12, "feet"),
  24565. default: true
  24566. },
  24567. {
  24568. name: "Macro",
  24569. height: math.unit(1, "mile")
  24570. },
  24571. {
  24572. name: "Megamacro",
  24573. height: math.unit(50, "miles")
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24579. {
  24580. front: {
  24581. height: math.unit(1.5, "meters"),
  24582. weight: math.unit(100, "lb"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/maksio/front.svg",
  24586. extra: 1549 / 1531,
  24587. bottom: 123.7 / 1674.5429
  24588. }
  24589. },
  24590. back: {
  24591. height: math.unit(1.5, "meters"),
  24592. weight: math.unit(100, "lb"),
  24593. name: "Back",
  24594. image: {
  24595. source: "./media/characters/maksio/back.svg",
  24596. extra: 1541 / 1509,
  24597. bottom: 97 / 1639
  24598. }
  24599. },
  24600. hand: {
  24601. height: math.unit(0.621, "feet"),
  24602. name: "Hand",
  24603. image: {
  24604. source: "./media/characters/maksio/hand.svg"
  24605. }
  24606. },
  24607. foot: {
  24608. height: math.unit(1.611, "feet"),
  24609. name: "Foot",
  24610. image: {
  24611. source: "./media/characters/maksio/foot.svg"
  24612. }
  24613. },
  24614. },
  24615. [
  24616. {
  24617. name: "Shrunken",
  24618. height: math.unit(10, "cm")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(150, "cm"),
  24623. default: true
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(100, "feet"),
  24632. name: "Front",
  24633. image: {
  24634. source: "./media/characters/erza-bear/front.svg",
  24635. extra: 2449 / 2390,
  24636. bottom: 46 / 2494
  24637. }
  24638. },
  24639. back: {
  24640. height: math.unit(100, "feet"),
  24641. name: "Back",
  24642. image: {
  24643. source: "./media/characters/erza-bear/back.svg",
  24644. extra: 2489 / 2430,
  24645. bottom: 85.4 / 2480
  24646. }
  24647. },
  24648. tail: {
  24649. height: math.unit(42, "feet"),
  24650. name: "Tail",
  24651. image: {
  24652. source: "./media/characters/erza-bear/tail.svg"
  24653. }
  24654. },
  24655. tongue: {
  24656. height: math.unit(8, "feet"),
  24657. name: "Tongue",
  24658. image: {
  24659. source: "./media/characters/erza-bear/tongue.svg"
  24660. }
  24661. },
  24662. dick: {
  24663. height: math.unit(10.5, "feet"),
  24664. name: "Dick",
  24665. image: {
  24666. source: "./media/characters/erza-bear/dick.svg"
  24667. }
  24668. },
  24669. dickVertical: {
  24670. height: math.unit(16.9, "feet"),
  24671. name: "Dick (Vertical)",
  24672. image: {
  24673. source: "./media/characters/erza-bear/dick-vertical.svg"
  24674. }
  24675. },
  24676. },
  24677. [
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(100, "feet"),
  24681. default: true
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24687. {
  24688. front: {
  24689. height: math.unit(172, "cm"),
  24690. weight: math.unit(73, "kg"),
  24691. name: "Front",
  24692. image: {
  24693. source: "./media/characters/violet-flor/front.svg",
  24694. extra: 1530 / 1442,
  24695. bottom: 61.9 / 1588.8
  24696. }
  24697. },
  24698. back: {
  24699. height: math.unit(180, "cm"),
  24700. weight: math.unit(73, "kg"),
  24701. name: "Back",
  24702. image: {
  24703. source: "./media/characters/violet-flor/back.svg",
  24704. extra: 1692 / 1630,
  24705. bottom: 20 / 1712
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Normal",
  24712. height: math.unit(172, "cm"),
  24713. default: true
  24714. },
  24715. ]
  24716. ))
  24717. characterMakers.push(() => makeCharacter(
  24718. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24719. {
  24720. front: {
  24721. height: math.unit(6, "feet"),
  24722. weight: math.unit(220, "lb"),
  24723. name: "Front",
  24724. image: {
  24725. source: "./media/characters/lynn-rhea/front.svg",
  24726. extra: 310 / 273
  24727. }
  24728. },
  24729. back: {
  24730. height: math.unit(6, "feet"),
  24731. weight: math.unit(220, "lb"),
  24732. name: "Back",
  24733. image: {
  24734. source: "./media/characters/lynn-rhea/back.svg",
  24735. extra: 310 / 273
  24736. }
  24737. },
  24738. dicks: {
  24739. height: math.unit(0.9, "feet"),
  24740. name: "Dicks",
  24741. image: {
  24742. source: "./media/characters/lynn-rhea/dicks.svg"
  24743. }
  24744. },
  24745. slit: {
  24746. height: math.unit(0.4, "feet"),
  24747. name: "Slit",
  24748. image: {
  24749. source: "./media/characters/lynn-rhea/slit.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Micro",
  24756. height: math.unit(1, "inch")
  24757. },
  24758. {
  24759. name: "Macro",
  24760. height: math.unit(60, "feet"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Megamacro",
  24765. height: math.unit(2, "miles")
  24766. },
  24767. {
  24768. name: "Gigamacro",
  24769. height: math.unit(3, "earths")
  24770. },
  24771. {
  24772. name: "Galactic",
  24773. height: math.unit(0.8, "galaxies")
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24779. {
  24780. front: {
  24781. height: math.unit(1600, "feet"),
  24782. weight: math.unit(85758785169, "kg"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/valathos/front.svg",
  24786. extra: 1451 / 1339
  24787. }
  24788. },
  24789. },
  24790. [
  24791. {
  24792. name: "Macro",
  24793. height: math.unit(1600, "feet"),
  24794. default: true
  24795. },
  24796. ]
  24797. ))
  24798. characterMakers.push(() => makeCharacter(
  24799. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24800. {
  24801. front: {
  24802. height: math.unit(7 + 5 / 12, "feet"),
  24803. weight: math.unit(300, "lb"),
  24804. name: "Front",
  24805. image: {
  24806. source: "./media/characters/azula/front.svg",
  24807. extra: 3208 / 2880,
  24808. bottom: 80.2 / 3277
  24809. }
  24810. },
  24811. back: {
  24812. height: math.unit(7 + 5 / 12, "feet"),
  24813. weight: math.unit(300, "lb"),
  24814. name: "Back",
  24815. image: {
  24816. source: "./media/characters/azula/back.svg",
  24817. extra: 3169 / 2822,
  24818. bottom: 150.6 / 3321
  24819. }
  24820. },
  24821. },
  24822. [
  24823. {
  24824. name: "Normal",
  24825. height: math.unit(7 + 5 / 12, "feet"),
  24826. default: true
  24827. },
  24828. {
  24829. name: "Big",
  24830. height: math.unit(20, "feet")
  24831. },
  24832. ]
  24833. ))
  24834. characterMakers.push(() => makeCharacter(
  24835. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24836. {
  24837. front: {
  24838. height: math.unit(5 + 1 / 12, "feet"),
  24839. weight: math.unit(110, "lb"),
  24840. name: "Front",
  24841. image: {
  24842. source: "./media/characters/rupert/front.svg",
  24843. extra: 1549 / 1495,
  24844. bottom: 54.2 / 1604.4
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(5 + 1 / 12, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24858. {
  24859. front: {
  24860. height: math.unit(8 + 4 / 12, "feet"),
  24861. weight: math.unit(350, "lb"),
  24862. name: "Front",
  24863. image: {
  24864. source: "./media/characters/sheera-castellar/front.svg",
  24865. extra: 1957 / 1894,
  24866. bottom: 26.97 / 1975.017
  24867. }
  24868. },
  24869. side: {
  24870. height: math.unit(8 + 4 / 12, "feet"),
  24871. weight: math.unit(350, "lb"),
  24872. name: "Side",
  24873. image: {
  24874. source: "./media/characters/sheera-castellar/side.svg",
  24875. extra: 1957 / 1894
  24876. }
  24877. },
  24878. back: {
  24879. height: math.unit(8 + 4 / 12, "feet"),
  24880. weight: math.unit(350, "lb"),
  24881. name: "Back",
  24882. image: {
  24883. source: "./media/characters/sheera-castellar/back.svg",
  24884. extra: 1957 / 1894
  24885. }
  24886. },
  24887. angled: {
  24888. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24889. weight: math.unit(350, "lb"),
  24890. name: "Angled",
  24891. image: {
  24892. source: "./media/characters/sheera-castellar/angled.svg",
  24893. extra: 1807 / 1707,
  24894. bottom: 68 / 1875
  24895. }
  24896. },
  24897. genitals: {
  24898. height: math.unit(2.2, "feet"),
  24899. name: "Genitals",
  24900. image: {
  24901. source: "./media/characters/sheera-castellar/genitals.svg"
  24902. }
  24903. },
  24904. taur: {
  24905. height: math.unit(10 + 6/12, "feet"),
  24906. name: "Taur",
  24907. image: {
  24908. source: "./media/characters/sheera-castellar/taur.svg",
  24909. extra: 2017/1909,
  24910. bottom: 185/2202
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(8 + 4 / 12, "feet")
  24918. },
  24919. {
  24920. name: "Macro",
  24921. height: math.unit(150, "feet"),
  24922. default: true
  24923. },
  24924. {
  24925. name: "Macro+",
  24926. height: math.unit(800, "feet")
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(6, "feet"),
  24935. weight: math.unit(150, "lb"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/jaipur/front.svg",
  24939. extra: 3860 / 3731,
  24940. bottom: 287 / 4140
  24941. }
  24942. },
  24943. back: {
  24944. height: math.unit(6, "feet"),
  24945. weight: math.unit(150, "lb"),
  24946. name: "Back",
  24947. image: {
  24948. source: "./media/characters/jaipur/back.svg",
  24949. extra: 1637/1561,
  24950. bottom: 154/1791
  24951. }
  24952. },
  24953. },
  24954. [
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(1.85, "meters"),
  24958. default: true
  24959. },
  24960. {
  24961. name: "Macro",
  24962. height: math.unit(150, "meters")
  24963. },
  24964. {
  24965. name: "Macro+",
  24966. height: math.unit(0.5, "miles")
  24967. },
  24968. {
  24969. name: "Macro++",
  24970. height: math.unit(2.5, "miles")
  24971. },
  24972. {
  24973. name: "Macro+++",
  24974. height: math.unit(12, "miles")
  24975. },
  24976. {
  24977. name: "Macro++++",
  24978. height: math.unit(120, "miles")
  24979. },
  24980. {
  24981. name: "Macro+++++",
  24982. height: math.unit(1200, "miles")
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(6, "feet"),
  24991. weight: math.unit(150, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/sheila-wolf/front.svg",
  24995. extra: 1931 / 1808,
  24996. bottom: 29.5 / 1960
  24997. }
  24998. },
  24999. dick: {
  25000. height: math.unit(1.464, "feet"),
  25001. name: "Dick",
  25002. image: {
  25003. source: "./media/characters/sheila-wolf/dick.svg"
  25004. }
  25005. },
  25006. muzzle: {
  25007. height: math.unit(0.513, "feet"),
  25008. name: "Muzzle",
  25009. image: {
  25010. source: "./media/characters/sheila-wolf/muzzle.svg"
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Macro",
  25017. height: math.unit(70, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25024. {
  25025. front: {
  25026. height: math.unit(32, "meters"),
  25027. weight: math.unit(300000, "kg"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/almor/front.svg",
  25031. extra: 1408 / 1322,
  25032. bottom: 94.6 / 1506.5
  25033. }
  25034. },
  25035. },
  25036. [
  25037. {
  25038. name: "Macro",
  25039. height: math.unit(32, "meters"),
  25040. default: true
  25041. },
  25042. ]
  25043. ))
  25044. characterMakers.push(() => makeCharacter(
  25045. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25046. {
  25047. front: {
  25048. height: math.unit(7, "feet"),
  25049. weight: math.unit(200, "lb"),
  25050. name: "Front",
  25051. image: {
  25052. source: "./media/characters/silver/front.svg",
  25053. extra: 472.1 / 450.5,
  25054. bottom: 26.5 / 499.424
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(7, "feet"),
  25062. default: true
  25063. },
  25064. {
  25065. name: "Macro",
  25066. height: math.unit(800, "feet")
  25067. },
  25068. {
  25069. name: "Megamacro",
  25070. height: math.unit(250, "miles")
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25076. {
  25077. front: {
  25078. height: math.unit(6, "feet"),
  25079. weight: math.unit(150, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/pliskin/front.svg",
  25083. extra: 1469 / 1359,
  25084. bottom: 70 / 1540
  25085. }
  25086. },
  25087. },
  25088. [
  25089. {
  25090. name: "Micro",
  25091. height: math.unit(3, "inches")
  25092. },
  25093. {
  25094. name: "Normal",
  25095. height: math.unit(5 + 11 / 12, "feet"),
  25096. default: true
  25097. },
  25098. {
  25099. name: "Macro",
  25100. height: math.unit(120, "feet")
  25101. },
  25102. ]
  25103. ))
  25104. characterMakers.push(() => makeCharacter(
  25105. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25106. {
  25107. front: {
  25108. height: math.unit(6, "feet"),
  25109. weight: math.unit(150, "lb"),
  25110. name: "Front",
  25111. image: {
  25112. source: "./media/characters/sammy/front.svg",
  25113. extra: 1193 / 1089,
  25114. bottom: 30.5 / 1226
  25115. }
  25116. },
  25117. },
  25118. [
  25119. {
  25120. name: "Macro",
  25121. height: math.unit(1700, "feet"),
  25122. default: true
  25123. },
  25124. {
  25125. name: "Examacro",
  25126. height: math.unit(2.5e9, "lightyears")
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(21, "meters"),
  25135. weight: math.unit(12, "tonnes"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/kuru/front.svg",
  25139. extra: 4301 / 3785,
  25140. bottom: 371.3 / 4691
  25141. }
  25142. },
  25143. },
  25144. [
  25145. {
  25146. name: "Macro",
  25147. height: math.unit(21, "meters"),
  25148. default: true
  25149. },
  25150. ]
  25151. ))
  25152. characterMakers.push(() => makeCharacter(
  25153. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25154. {
  25155. front: {
  25156. height: math.unit(23, "meters"),
  25157. weight: math.unit(12.2, "tonnes"),
  25158. name: "Front",
  25159. image: {
  25160. source: "./media/characters/rakka/front.svg",
  25161. extra: 4670 / 4169,
  25162. bottom: 301 / 4968.7
  25163. }
  25164. },
  25165. },
  25166. [
  25167. {
  25168. name: "Macro",
  25169. height: math.unit(23, "meters"),
  25170. default: true
  25171. },
  25172. ]
  25173. ))
  25174. characterMakers.push(() => makeCharacter(
  25175. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25176. {
  25177. front: {
  25178. height: math.unit(6, "feet"),
  25179. weight: math.unit(150, "lb"),
  25180. name: "Front",
  25181. image: {
  25182. source: "./media/characters/rhys-feline/front.svg",
  25183. extra: 2488 / 2308,
  25184. bottom: 35.67 / 2519.19
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Really Small",
  25191. height: math.unit(1, "nm")
  25192. },
  25193. {
  25194. name: "Micro",
  25195. height: math.unit(4, "inches")
  25196. },
  25197. {
  25198. name: "Normal",
  25199. height: math.unit(4 + 10 / 12, "feet"),
  25200. default: true
  25201. },
  25202. {
  25203. name: "Macro",
  25204. height: math.unit(100, "feet")
  25205. },
  25206. {
  25207. name: "Megamacto",
  25208. height: math.unit(50, "miles")
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25214. {
  25215. side: {
  25216. height: math.unit(30, "feet"),
  25217. weight: math.unit(35000, "kg"),
  25218. name: "Side",
  25219. image: {
  25220. source: "./media/characters/alydar/side.svg",
  25221. extra: 234 / 222,
  25222. bottom: 6.5 / 241
  25223. }
  25224. },
  25225. front: {
  25226. height: math.unit(30, "feet"),
  25227. weight: math.unit(35000, "kg"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/alydar/front.svg",
  25231. extra: 223.37 / 210.2,
  25232. bottom: 22.3 / 246.76
  25233. }
  25234. },
  25235. top: {
  25236. height: math.unit(64.54, "feet"),
  25237. weight: math.unit(35000, "kg"),
  25238. name: "Top",
  25239. image: {
  25240. source: "./media/characters/alydar/top.svg"
  25241. }
  25242. },
  25243. anthro: {
  25244. height: math.unit(30, "feet"),
  25245. weight: math.unit(9000, "kg"),
  25246. name: "Anthro",
  25247. image: {
  25248. source: "./media/characters/alydar/anthro.svg",
  25249. extra: 432 / 421,
  25250. bottom: 7.18 / 440
  25251. }
  25252. },
  25253. maw: {
  25254. height: math.unit(11.693, "feet"),
  25255. name: "Maw",
  25256. image: {
  25257. source: "./media/characters/alydar/maw.svg"
  25258. }
  25259. },
  25260. head: {
  25261. height: math.unit(11.693, "feet"),
  25262. name: "Head",
  25263. image: {
  25264. source: "./media/characters/alydar/head.svg"
  25265. }
  25266. },
  25267. headAlt: {
  25268. height: math.unit(12.861, "feet"),
  25269. name: "Head (Alt)",
  25270. image: {
  25271. source: "./media/characters/alydar/head-alt.svg"
  25272. }
  25273. },
  25274. wing: {
  25275. height: math.unit(20.712, "feet"),
  25276. name: "Wing",
  25277. image: {
  25278. source: "./media/characters/alydar/wing.svg"
  25279. }
  25280. },
  25281. wingFeather: {
  25282. height: math.unit(9.662, "feet"),
  25283. name: "Wing Feather",
  25284. image: {
  25285. source: "./media/characters/alydar/wing-feather.svg"
  25286. }
  25287. },
  25288. countourFeather: {
  25289. height: math.unit(4.154, "feet"),
  25290. name: "Contour Feather",
  25291. image: {
  25292. source: "./media/characters/alydar/contour-feather.svg"
  25293. }
  25294. },
  25295. },
  25296. [
  25297. {
  25298. name: "Diplomatic",
  25299. height: math.unit(13, "feet"),
  25300. default: true
  25301. },
  25302. {
  25303. name: "Small",
  25304. height: math.unit(30, "feet")
  25305. },
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(95, "feet"),
  25309. default: true
  25310. },
  25311. {
  25312. name: "Large",
  25313. height: math.unit(285, "feet")
  25314. },
  25315. {
  25316. name: "Incomprehensible",
  25317. height: math.unit(450, "megameters")
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25323. {
  25324. side: {
  25325. height: math.unit(11, "feet"),
  25326. weight: math.unit(1750, "kg"),
  25327. name: "Side",
  25328. image: {
  25329. source: "./media/characters/selicia/side.svg",
  25330. extra: 440 / 396,
  25331. bottom: 24.8 / 465.979
  25332. }
  25333. },
  25334. maw: {
  25335. height: math.unit(4.665, "feet"),
  25336. name: "Maw",
  25337. image: {
  25338. source: "./media/characters/selicia/maw.svg"
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(11, "feet"),
  25346. default: true
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25352. {
  25353. side: {
  25354. height: math.unit(2 + 6 / 12, "feet"),
  25355. weight: math.unit(30, "lb"),
  25356. name: "Side",
  25357. image: {
  25358. source: "./media/characters/layla/side.svg",
  25359. extra: 244 / 188,
  25360. bottom: 18.2 / 262.1
  25361. }
  25362. },
  25363. back: {
  25364. height: math.unit(2 + 6 / 12, "feet"),
  25365. weight: math.unit(30, "lb"),
  25366. name: "Back",
  25367. image: {
  25368. source: "./media/characters/layla/back.svg",
  25369. extra: 308 / 241.5,
  25370. bottom: 8.9 / 316.8
  25371. }
  25372. },
  25373. cumming: {
  25374. height: math.unit(2 + 6 / 12, "feet"),
  25375. weight: math.unit(30, "lb"),
  25376. name: "Cumming",
  25377. image: {
  25378. source: "./media/characters/layla/cumming.svg",
  25379. extra: 342 / 279,
  25380. bottom: 595 / 938
  25381. }
  25382. },
  25383. dickFlaccid: {
  25384. height: math.unit(2.595, "feet"),
  25385. name: "Flaccid Genitals",
  25386. image: {
  25387. source: "./media/characters/layla/dick-flaccid.svg"
  25388. }
  25389. },
  25390. dickErect: {
  25391. height: math.unit(2.359, "feet"),
  25392. name: "Erect Genitals",
  25393. image: {
  25394. source: "./media/characters/layla/dick-erect.svg"
  25395. }
  25396. },
  25397. dragon: {
  25398. height: math.unit(40, "feet"),
  25399. name: "Dragon",
  25400. image: {
  25401. source: "./media/characters/layla/dragon.svg",
  25402. extra: 610/535,
  25403. bottom: 367/977
  25404. }
  25405. },
  25406. taur: {
  25407. height: math.unit(30, "feet"),
  25408. name: "Taur",
  25409. image: {
  25410. source: "./media/characters/layla/taur.svg",
  25411. extra: 1268/1199,
  25412. bottom: 112/1380
  25413. }
  25414. },
  25415. },
  25416. [
  25417. {
  25418. name: "Micro",
  25419. height: math.unit(1, "inch")
  25420. },
  25421. {
  25422. name: "Small",
  25423. height: math.unit(1, "foot")
  25424. },
  25425. {
  25426. name: "Normal",
  25427. height: math.unit(2 + 6 / 12, "feet"),
  25428. default: true
  25429. },
  25430. {
  25431. name: "Macro",
  25432. height: math.unit(200, "feet")
  25433. },
  25434. {
  25435. name: "Megamacro",
  25436. height: math.unit(1000, "miles")
  25437. },
  25438. {
  25439. name: "Planetary",
  25440. height: math.unit(8000, "miles")
  25441. },
  25442. {
  25443. name: "True Layla",
  25444. height: math.unit(200000 * 7, "multiverses")
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25450. {
  25451. back: {
  25452. height: math.unit(10.5, "feet"),
  25453. weight: math.unit(800, "lb"),
  25454. name: "Back",
  25455. image: {
  25456. source: "./media/characters/knox/back.svg",
  25457. extra: 1486 / 1089,
  25458. bottom: 107 / 1601.4
  25459. }
  25460. },
  25461. side: {
  25462. height: math.unit(10.5, "feet"),
  25463. weight: math.unit(800, "lb"),
  25464. name: "Side",
  25465. image: {
  25466. source: "./media/characters/knox/side.svg",
  25467. extra: 244 / 218,
  25468. bottom: 14 / 260
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Compact",
  25475. height: math.unit(10.5, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Dynamax",
  25480. height: math.unit(210, "feet")
  25481. },
  25482. {
  25483. name: "Full Macro",
  25484. height: math.unit(850, "feet")
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(28, "feet"),
  25493. weight: math.unit(10500, "lb"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/kayda/front.svg",
  25497. extra: 1536 / 1428,
  25498. bottom: 68.7 / 1603
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(28, "feet"),
  25503. weight: math.unit(10500, "lb"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/kayda/back.svg",
  25507. extra: 1557 / 1464,
  25508. bottom: 39.5 / 1597.49
  25509. }
  25510. },
  25511. dick: {
  25512. height: math.unit(3.858, "feet"),
  25513. name: "Dick",
  25514. image: {
  25515. source: "./media/characters/kayda/dick.svg"
  25516. }
  25517. },
  25518. },
  25519. [
  25520. {
  25521. name: "Macro",
  25522. height: math.unit(28, "feet"),
  25523. default: true
  25524. },
  25525. ]
  25526. ))
  25527. characterMakers.push(() => makeCharacter(
  25528. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25529. {
  25530. front: {
  25531. height: math.unit(10 + 11 / 12, "feet"),
  25532. weight: math.unit(1400, "lb"),
  25533. name: "Front",
  25534. image: {
  25535. source: "./media/characters/brian/front.svg",
  25536. extra: 737 / 692,
  25537. bottom: 55.4 / 785
  25538. }
  25539. },
  25540. },
  25541. [
  25542. {
  25543. name: "Normal",
  25544. height: math.unit(10 + 11 / 12, "feet"),
  25545. default: true
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(5 + 8 / 12, "feet"),
  25554. weight: math.unit(140, "lb"),
  25555. name: "Front",
  25556. image: {
  25557. source: "./media/characters/khemri/front.svg",
  25558. extra: 4780 / 4059,
  25559. bottom: 80.1 / 4859.25
  25560. }
  25561. },
  25562. },
  25563. [
  25564. {
  25565. name: "Micro",
  25566. height: math.unit(6, "inches")
  25567. },
  25568. {
  25569. name: "Normal",
  25570. height: math.unit(5 + 8 / 12, "feet"),
  25571. default: true
  25572. },
  25573. ]
  25574. ))
  25575. characterMakers.push(() => makeCharacter(
  25576. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25577. {
  25578. front: {
  25579. height: math.unit(13, "feet"),
  25580. weight: math.unit(1700, "lb"),
  25581. name: "Front",
  25582. image: {
  25583. source: "./media/characters/felix-braveheart/front.svg",
  25584. extra: 1222 / 1157,
  25585. bottom: 53.2 / 1280
  25586. }
  25587. },
  25588. back: {
  25589. height: math.unit(13, "feet"),
  25590. weight: math.unit(1700, "lb"),
  25591. name: "Back",
  25592. image: {
  25593. source: "./media/characters/felix-braveheart/back.svg",
  25594. extra: 1277 / 1203,
  25595. bottom: 50.2 / 1327
  25596. }
  25597. },
  25598. feral: {
  25599. height: math.unit(6, "feet"),
  25600. weight: math.unit(400, "lb"),
  25601. name: "Feral",
  25602. image: {
  25603. source: "./media/characters/felix-braveheart/feral.svg",
  25604. extra: 682 / 625,
  25605. bottom: 6.9 / 688
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Normal",
  25612. height: math.unit(13, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25619. {
  25620. side: {
  25621. height: math.unit(5 + 11 / 12, "feet"),
  25622. weight: math.unit(1400, "lb"),
  25623. name: "Side",
  25624. image: {
  25625. source: "./media/characters/shadow-blade/side.svg",
  25626. extra: 1726 / 1267,
  25627. bottom: 58.4 / 1785
  25628. }
  25629. },
  25630. },
  25631. [
  25632. {
  25633. name: "Normal",
  25634. height: math.unit(5 + 11 / 12, "feet"),
  25635. default: true
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(1 + 6 / 12, "feet"),
  25644. weight: math.unit(25, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/karla-halldor/front.svg",
  25648. extra: 1459 / 1383,
  25649. bottom: 12 / 1472
  25650. }
  25651. },
  25652. },
  25653. [
  25654. {
  25655. name: "Normal",
  25656. height: math.unit(1 + 6 / 12, "feet"),
  25657. default: true
  25658. },
  25659. ]
  25660. ))
  25661. characterMakers.push(() => makeCharacter(
  25662. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25663. {
  25664. front: {
  25665. height: math.unit(6 + 2 / 12, "feet"),
  25666. weight: math.unit(160, "lb"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/ariam/front.svg",
  25670. extra: 1073/976,
  25671. bottom: 52/1125
  25672. }
  25673. },
  25674. back: {
  25675. height: math.unit(6 + 2/12, "feet"),
  25676. weight: math.unit(160, "lb"),
  25677. name: "Back",
  25678. image: {
  25679. source: "./media/characters/ariam/back.svg",
  25680. extra: 1103/1023,
  25681. bottom: 9/1112
  25682. }
  25683. },
  25684. dressed: {
  25685. height: math.unit(6 + 2/12, "feet"),
  25686. weight: math.unit(160, "lb"),
  25687. name: "Dressed",
  25688. image: {
  25689. source: "./media/characters/ariam/dressed.svg",
  25690. extra: 1099/1009,
  25691. bottom: 25/1124
  25692. }
  25693. },
  25694. squatting: {
  25695. height: math.unit(4.1, "feet"),
  25696. weight: math.unit(160, "lb"),
  25697. name: "Squatting",
  25698. image: {
  25699. source: "./media/characters/ariam/squatting.svg",
  25700. extra: 2617 / 2112,
  25701. bottom: 61.2 / 2681,
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(6 + 2 / 12, "feet"),
  25709. default: true
  25710. },
  25711. {
  25712. name: "Normal+",
  25713. height: math.unit(4, "meters")
  25714. },
  25715. {
  25716. name: "Macro",
  25717. height: math.unit(50, "meters")
  25718. },
  25719. {
  25720. name: "Macro+",
  25721. height: math.unit(100, "meters")
  25722. },
  25723. {
  25724. name: "Megamacro",
  25725. height: math.unit(20, "km")
  25726. },
  25727. {
  25728. name: "Caretaker",
  25729. height: math.unit(444, "megameters")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(1.67, "meters"),
  25738. weight: math.unit(140, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25742. extra: 438 / 410,
  25743. bottom: 0.75 / 439
  25744. }
  25745. },
  25746. },
  25747. [
  25748. {
  25749. name: "Shrunken",
  25750. height: math.unit(7.6, "cm")
  25751. },
  25752. {
  25753. name: "Human Scale",
  25754. height: math.unit(1.67, "meters")
  25755. },
  25756. {
  25757. name: "Wolxi Scale",
  25758. height: math.unit(36.7, "meters"),
  25759. default: true
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25765. {
  25766. front: {
  25767. height: math.unit(1.73, "meters"),
  25768. weight: math.unit(240, "lb"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/izue-two-mothers/front.svg",
  25772. extra: 469 / 437,
  25773. bottom: 1.24 / 470.6
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Shrunken",
  25780. height: math.unit(7.86, "cm")
  25781. },
  25782. {
  25783. name: "Human Scale",
  25784. height: math.unit(1.73, "meters")
  25785. },
  25786. {
  25787. name: "Wolxi Scale",
  25788. height: math.unit(38, "meters"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(1.55, "meters"),
  25798. weight: math.unit(120, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/teeku-love-shack/front.svg",
  25802. extra: 387 / 362,
  25803. bottom: 1.51 / 388
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Shrunken",
  25810. height: math.unit(7, "cm")
  25811. },
  25812. {
  25813. name: "Human Scale",
  25814. height: math.unit(1.55, "meters")
  25815. },
  25816. {
  25817. name: "Wolxi Scale",
  25818. height: math.unit(34.1, "meters"),
  25819. default: true
  25820. },
  25821. ]
  25822. ))
  25823. characterMakers.push(() => makeCharacter(
  25824. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25825. {
  25826. front: {
  25827. height: math.unit(1.83, "meters"),
  25828. weight: math.unit(135, "lb"),
  25829. name: "Front",
  25830. image: {
  25831. source: "./media/characters/dejma-the-red/front.svg",
  25832. extra: 480 / 458,
  25833. bottom: 1.8 / 482
  25834. }
  25835. },
  25836. },
  25837. [
  25838. {
  25839. name: "Shrunken",
  25840. height: math.unit(8.3, "cm")
  25841. },
  25842. {
  25843. name: "Human Scale",
  25844. height: math.unit(1.83, "meters")
  25845. },
  25846. {
  25847. name: "Wolxi Scale",
  25848. height: math.unit(40, "meters"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25855. {
  25856. front: {
  25857. height: math.unit(1.78, "meters"),
  25858. weight: math.unit(65, "kg"),
  25859. name: "Front",
  25860. image: {
  25861. source: "./media/characters/aki/front.svg",
  25862. extra: 452 / 415
  25863. }
  25864. },
  25865. frontNsfw: {
  25866. height: math.unit(1.78, "meters"),
  25867. weight: math.unit(65, "kg"),
  25868. name: "Front (NSFW)",
  25869. image: {
  25870. source: "./media/characters/aki/front-nsfw.svg",
  25871. extra: 452 / 415
  25872. }
  25873. },
  25874. back: {
  25875. height: math.unit(1.78, "meters"),
  25876. weight: math.unit(65, "kg"),
  25877. name: "Back",
  25878. image: {
  25879. source: "./media/characters/aki/back.svg",
  25880. extra: 452 / 415
  25881. }
  25882. },
  25883. rump: {
  25884. height: math.unit(2.05, "feet"),
  25885. name: "Rump",
  25886. image: {
  25887. source: "./media/characters/aki/rump.svg"
  25888. }
  25889. },
  25890. dick: {
  25891. height: math.unit(0.95, "feet"),
  25892. name: "Dick",
  25893. image: {
  25894. source: "./media/characters/aki/dick.svg"
  25895. }
  25896. },
  25897. },
  25898. [
  25899. {
  25900. name: "Micro",
  25901. height: math.unit(15, "cm")
  25902. },
  25903. {
  25904. name: "Normal",
  25905. height: math.unit(178, "cm"),
  25906. default: true
  25907. },
  25908. {
  25909. name: "Macro",
  25910. height: math.unit(214, "m")
  25911. },
  25912. {
  25913. name: "Macro+",
  25914. height: math.unit(534, "m")
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(5 + 5 / 12, "feet"),
  25923. weight: math.unit(120, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/ari/front.svg",
  25927. extra: 1550/1471,
  25928. bottom: 39/1589
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(5 + 5 / 12, "feet")
  25936. },
  25937. {
  25938. name: "Macro",
  25939. height: math.unit(100, "feet"),
  25940. default: true
  25941. },
  25942. {
  25943. name: "Megamacro",
  25944. height: math.unit(100, "miles")
  25945. },
  25946. {
  25947. name: "Gigamacro",
  25948. height: math.unit(80000, "miles")
  25949. },
  25950. ]
  25951. ))
  25952. characterMakers.push(() => makeCharacter(
  25953. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25954. {
  25955. side: {
  25956. height: math.unit(9, "feet"),
  25957. weight: math.unit(400, "kg"),
  25958. name: "Side",
  25959. image: {
  25960. source: "./media/characters/bolt/side.svg",
  25961. extra: 1126 / 896,
  25962. bottom: 60 / 1187.3,
  25963. }
  25964. },
  25965. },
  25966. [
  25967. {
  25968. name: "Micro",
  25969. height: math.unit(5, "inches")
  25970. },
  25971. {
  25972. name: "Normal",
  25973. height: math.unit(9, "feet"),
  25974. default: true
  25975. },
  25976. {
  25977. name: "Macro",
  25978. height: math.unit(700, "feet")
  25979. },
  25980. {
  25981. name: "Max Size",
  25982. height: math.unit(1.52e22, "yottameters")
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(4.3, "meters"),
  25991. weight: math.unit(3, "tons"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/draekon-sylviar/front.svg",
  25995. extra: 2072/1512,
  25996. bottom: 74/2146
  25997. }
  25998. },
  25999. back: {
  26000. height: math.unit(4.3, "meters"),
  26001. weight: math.unit(3, "tons"),
  26002. name: "Back",
  26003. image: {
  26004. source: "./media/characters/draekon-sylviar/back.svg",
  26005. extra: 1639/1483,
  26006. bottom: 41/1680
  26007. }
  26008. },
  26009. feral: {
  26010. height: math.unit(1.15, "meters"),
  26011. weight: math.unit(3, "tons"),
  26012. name: "Feral",
  26013. image: {
  26014. source: "./media/characters/draekon-sylviar/feral.svg",
  26015. extra: 1033/395,
  26016. bottom: 130/1163
  26017. }
  26018. },
  26019. maw: {
  26020. height: math.unit(1.3, "meters"),
  26021. name: "Maw",
  26022. image: {
  26023. source: "./media/characters/draekon-sylviar/maw.svg"
  26024. }
  26025. },
  26026. mawSeparated: {
  26027. height: math.unit(1.53, "meters"),
  26028. name: "Separated Maw",
  26029. image: {
  26030. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26031. }
  26032. },
  26033. tail: {
  26034. height: math.unit(1.15, "meters"),
  26035. name: "Tail",
  26036. image: {
  26037. source: "./media/characters/draekon-sylviar/tail.svg"
  26038. }
  26039. },
  26040. tailDick: {
  26041. height: math.unit(1.15, "meters"),
  26042. name: "Tail (Dick)",
  26043. image: {
  26044. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26045. }
  26046. },
  26047. tailDickSeparated: {
  26048. height: math.unit(1.19, "meters"),
  26049. name: "Tail (Separated Dick)",
  26050. image: {
  26051. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26052. }
  26053. },
  26054. slit: {
  26055. height: math.unit(1, "meters"),
  26056. name: "Slit",
  26057. image: {
  26058. source: "./media/characters/draekon-sylviar/slit.svg"
  26059. }
  26060. },
  26061. dick: {
  26062. height: math.unit(1.15, "meters"),
  26063. name: "Dick",
  26064. image: {
  26065. source: "./media/characters/draekon-sylviar/dick.svg"
  26066. }
  26067. },
  26068. dickSeparated: {
  26069. height: math.unit(1.1, "meters"),
  26070. name: "Separated Dick",
  26071. image: {
  26072. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26073. }
  26074. },
  26075. sheath: {
  26076. height: math.unit(1.15, "meters"),
  26077. name: "Sheath",
  26078. image: {
  26079. source: "./media/characters/draekon-sylviar/sheath.svg"
  26080. }
  26081. },
  26082. },
  26083. [
  26084. {
  26085. name: "Small",
  26086. height: math.unit(4.53 / 2, "meters"),
  26087. default: true
  26088. },
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(4.53, "meters"),
  26092. default: true
  26093. },
  26094. {
  26095. name: "Large",
  26096. height: math.unit(4.53 * 2, "meters"),
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(6 + 2 / 12, "feet"),
  26105. weight: math.unit(180, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/brawler/front.svg",
  26109. extra: 3301 / 3027,
  26110. bottom: 138 / 3439
  26111. }
  26112. },
  26113. },
  26114. [
  26115. {
  26116. name: "Normal",
  26117. height: math.unit(6 + 2 / 12, "feet"),
  26118. default: true
  26119. },
  26120. ]
  26121. ))
  26122. characterMakers.push(() => makeCharacter(
  26123. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26124. {
  26125. front: {
  26126. height: math.unit(11, "feet"),
  26127. weight: math.unit(1000, "lb"),
  26128. name: "Front",
  26129. image: {
  26130. source: "./media/characters/alex/front.svg",
  26131. bottom: 44.5 / 620
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Micro",
  26138. height: math.unit(5, "inches")
  26139. },
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(11, "feet"),
  26143. default: true
  26144. },
  26145. {
  26146. name: "Macro",
  26147. height: math.unit(9.5e9, "feet")
  26148. },
  26149. {
  26150. name: "Max Size",
  26151. height: math.unit(1.4e283, "yottameters")
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26157. {
  26158. female: {
  26159. height: math.unit(29.9, "m"),
  26160. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26161. name: "Female",
  26162. image: {
  26163. source: "./media/characters/zenari/female.svg",
  26164. extra: 3281.6 / 3217,
  26165. bottom: 72.2 / 3353
  26166. }
  26167. },
  26168. male: {
  26169. height: math.unit(27.7, "m"),
  26170. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26171. name: "Male",
  26172. image: {
  26173. source: "./media/characters/zenari/male.svg",
  26174. extra: 3008 / 2991,
  26175. bottom: 54.6 / 3069
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Macro",
  26182. height: math.unit(29.7, "meters"),
  26183. default: true
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26189. {
  26190. female: {
  26191. height: math.unit(23.8, "m"),
  26192. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26193. name: "Female",
  26194. image: {
  26195. source: "./media/characters/mactarian/female.svg",
  26196. extra: 2662 / 2569,
  26197. bottom: 73 / 2736
  26198. }
  26199. },
  26200. male: {
  26201. height: math.unit(23.8, "m"),
  26202. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26203. name: "Male",
  26204. image: {
  26205. source: "./media/characters/mactarian/male.svg",
  26206. extra: 2673 / 2600,
  26207. bottom: 76 / 2750
  26208. }
  26209. },
  26210. },
  26211. [
  26212. {
  26213. name: "Macro",
  26214. height: math.unit(23.8, "meters"),
  26215. default: true
  26216. },
  26217. ]
  26218. ))
  26219. characterMakers.push(() => makeCharacter(
  26220. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26221. {
  26222. female: {
  26223. height: math.unit(19.3, "m"),
  26224. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26225. name: "Female",
  26226. image: {
  26227. source: "./media/characters/umok/female.svg",
  26228. extra: 2186 / 2078,
  26229. bottom: 87 / 2277
  26230. }
  26231. },
  26232. male: {
  26233. height: math.unit(19.5, "m"),
  26234. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26235. name: "Male",
  26236. image: {
  26237. source: "./media/characters/umok/male.svg",
  26238. extra: 2233 / 2140,
  26239. bottom: 24.4 / 2258
  26240. }
  26241. },
  26242. },
  26243. [
  26244. {
  26245. name: "Macro",
  26246. height: math.unit(19.3, "meters"),
  26247. default: true
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26253. {
  26254. female: {
  26255. height: math.unit(26.15, "m"),
  26256. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26257. name: "Female",
  26258. image: {
  26259. source: "./media/characters/joraxian/female.svg",
  26260. extra: 2912 / 2824,
  26261. bottom: 36 / 2956
  26262. }
  26263. },
  26264. male: {
  26265. height: math.unit(25.4, "m"),
  26266. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26267. name: "Male",
  26268. image: {
  26269. source: "./media/characters/joraxian/male.svg",
  26270. extra: 2877 / 2721,
  26271. bottom: 82 / 2967
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Macro",
  26278. height: math.unit(26.15, "meters"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26285. {
  26286. female: {
  26287. height: math.unit(21.6, "m"),
  26288. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26289. name: "Female",
  26290. image: {
  26291. source: "./media/characters/sthara/female.svg",
  26292. extra: 2516 / 2347,
  26293. bottom: 21.5 / 2537
  26294. }
  26295. },
  26296. male: {
  26297. height: math.unit(24, "m"),
  26298. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26299. name: "Male",
  26300. image: {
  26301. source: "./media/characters/sthara/male.svg",
  26302. extra: 2732 / 2607,
  26303. bottom: 23 / 2732
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Macro",
  26310. height: math.unit(21.6, "meters"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(6 + 4 / 12, "feet"),
  26320. weight: math.unit(175, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/luka-bryzant/front.svg",
  26324. extra: 311 / 289,
  26325. bottom: 4 / 315
  26326. }
  26327. },
  26328. back: {
  26329. height: math.unit(6 + 4 / 12, "feet"),
  26330. weight: math.unit(175, "lb"),
  26331. name: "Back",
  26332. image: {
  26333. source: "./media/characters/luka-bryzant/back.svg",
  26334. extra: 311 / 289,
  26335. bottom: 3.8 / 313.7
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Micro",
  26342. height: math.unit(10, "inches")
  26343. },
  26344. {
  26345. name: "Normal",
  26346. height: math.unit(6 + 4 / 12, "feet"),
  26347. default: true
  26348. },
  26349. {
  26350. name: "Large",
  26351. height: math.unit(12, "feet")
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26357. {
  26358. front: {
  26359. height: math.unit(5 + 7 / 12, "feet"),
  26360. weight: math.unit(185, "lb"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/aman-aquila/front.svg",
  26364. extra: 1013 / 976,
  26365. bottom: 45.6 / 1057
  26366. }
  26367. },
  26368. side: {
  26369. height: math.unit(5 + 7 / 12, "feet"),
  26370. weight: math.unit(185, "lb"),
  26371. name: "Side",
  26372. image: {
  26373. source: "./media/characters/aman-aquila/side.svg",
  26374. extra: 1054 / 1011,
  26375. bottom: 15 / 1070
  26376. }
  26377. },
  26378. back: {
  26379. height: math.unit(5 + 7 / 12, "feet"),
  26380. weight: math.unit(185, "lb"),
  26381. name: "Back",
  26382. image: {
  26383. source: "./media/characters/aman-aquila/back.svg",
  26384. extra: 1026 / 970,
  26385. bottom: 12 / 1039
  26386. }
  26387. },
  26388. head: {
  26389. height: math.unit(1.211, "feet"),
  26390. name: "Head",
  26391. image: {
  26392. source: "./media/characters/aman-aquila/head.svg",
  26393. }
  26394. },
  26395. },
  26396. [
  26397. {
  26398. name: "Minimicro",
  26399. height: math.unit(0.057, "inches")
  26400. },
  26401. {
  26402. name: "Micro",
  26403. height: math.unit(7, "inches")
  26404. },
  26405. {
  26406. name: "Mini",
  26407. height: math.unit(3 + 7 / 12, "feet")
  26408. },
  26409. {
  26410. name: "Normal",
  26411. height: math.unit(5 + 7 / 12, "feet"),
  26412. default: true
  26413. },
  26414. {
  26415. name: "Macro",
  26416. height: math.unit(157 + 7 / 12, "feet")
  26417. },
  26418. {
  26419. name: "Megamacro",
  26420. height: math.unit(1557 + 7 / 12, "feet")
  26421. },
  26422. {
  26423. name: "Gigamacro",
  26424. height: math.unit(15557 + 7 / 12, "feet")
  26425. },
  26426. ]
  26427. ))
  26428. characterMakers.push(() => makeCharacter(
  26429. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26430. {
  26431. front: {
  26432. height: math.unit(3 + 2 / 12, "inches"),
  26433. weight: math.unit(0.3, "ounces"),
  26434. name: "Front",
  26435. image: {
  26436. source: "./media/characters/hiphae/front.svg",
  26437. extra: 1931 / 1683,
  26438. bottom: 24 / 1955
  26439. }
  26440. },
  26441. },
  26442. [
  26443. {
  26444. name: "Normal",
  26445. height: math.unit(3 + 1 / 2, "inches"),
  26446. default: true
  26447. },
  26448. ]
  26449. ))
  26450. characterMakers.push(() => makeCharacter(
  26451. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26452. {
  26453. front: {
  26454. height: math.unit(5 + 10 / 12, "feet"),
  26455. weight: math.unit(165, "lb"),
  26456. name: "Front",
  26457. image: {
  26458. source: "./media/characters/nicky/front.svg",
  26459. extra: 3144 / 2886,
  26460. bottom: 45.6 / 3192
  26461. }
  26462. },
  26463. back: {
  26464. height: math.unit(5 + 10 / 12, "feet"),
  26465. weight: math.unit(165, "lb"),
  26466. name: "Back",
  26467. image: {
  26468. source: "./media/characters/nicky/back.svg",
  26469. extra: 3055 / 2804,
  26470. bottom: 28.4 / 3087
  26471. }
  26472. },
  26473. frontclothed: {
  26474. height: math.unit(5 + 10 / 12, "feet"),
  26475. weight: math.unit(165, "lb"),
  26476. name: "Front-clothed",
  26477. image: {
  26478. source: "./media/characters/nicky/front-clothed.svg",
  26479. extra: 3184.9 / 2926.9,
  26480. bottom: 86.5 / 3239.9
  26481. }
  26482. },
  26483. foot: {
  26484. height: math.unit(1.16, "feet"),
  26485. name: "Foot",
  26486. image: {
  26487. source: "./media/characters/nicky/foot.svg"
  26488. }
  26489. },
  26490. feet: {
  26491. height: math.unit(1.34, "feet"),
  26492. name: "Feet",
  26493. image: {
  26494. source: "./media/characters/nicky/feet.svg"
  26495. }
  26496. },
  26497. maw: {
  26498. height: math.unit(0.9, "feet"),
  26499. name: "Maw",
  26500. image: {
  26501. source: "./media/characters/nicky/maw.svg"
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(5 + 10 / 12, "feet"),
  26509. default: true
  26510. },
  26511. {
  26512. name: "Macro",
  26513. height: math.unit(60, "feet")
  26514. },
  26515. {
  26516. name: "Megamacro",
  26517. height: math.unit(1, "mile")
  26518. },
  26519. ]
  26520. ))
  26521. characterMakers.push(() => makeCharacter(
  26522. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26523. {
  26524. side: {
  26525. height: math.unit(10, "feet"),
  26526. weight: math.unit(600, "lb"),
  26527. name: "Side",
  26528. image: {
  26529. source: "./media/characters/blair/side.svg",
  26530. bottom: 16.6 / 475,
  26531. extra: 458 / 431
  26532. }
  26533. },
  26534. },
  26535. [
  26536. {
  26537. name: "Micro",
  26538. height: math.unit(8, "inches")
  26539. },
  26540. {
  26541. name: "Normal",
  26542. height: math.unit(10, "feet"),
  26543. default: true
  26544. },
  26545. {
  26546. name: "Macro",
  26547. height: math.unit(180, "feet")
  26548. },
  26549. ]
  26550. ))
  26551. characterMakers.push(() => makeCharacter(
  26552. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26553. {
  26554. front: {
  26555. height: math.unit(5 + 4 / 12, "feet"),
  26556. weight: math.unit(125, "lb"),
  26557. name: "Front",
  26558. image: {
  26559. source: "./media/characters/fisher/front.svg",
  26560. extra: 444 / 390,
  26561. bottom: 2 / 444.8
  26562. }
  26563. },
  26564. },
  26565. [
  26566. {
  26567. name: "Micro",
  26568. height: math.unit(4, "inches")
  26569. },
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(5 + 4 / 12, "feet"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Macro",
  26577. height: math.unit(100, "feet")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(6.71, "feet"),
  26586. weight: math.unit(200, "lb"),
  26587. preyCapacity: math.unit(1000000, "people"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/gliss/front.svg",
  26591. extra: 2347 / 2231,
  26592. bottom: 113 / 2462
  26593. }
  26594. },
  26595. hammerspaceSize: {
  26596. height: math.unit(6.71 * 717, "feet"),
  26597. weight: math.unit(200, "lb"),
  26598. preyCapacity: math.unit(1000000, "people"),
  26599. name: "Hammerspace Size",
  26600. image: {
  26601. source: "./media/characters/gliss/front.svg",
  26602. extra: 2347 / 2231,
  26603. bottom: 113 / 2462
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(6.71, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26617. {
  26618. side: {
  26619. height: math.unit(1.44, "m"),
  26620. weight: math.unit(80, "kg"),
  26621. name: "Side",
  26622. image: {
  26623. source: "./media/characters/dune-anderson/side.svg",
  26624. bottom: 49 / 1426
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Wolf-sized",
  26631. height: math.unit(1.44, "meters")
  26632. },
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(5.05, "meters"),
  26636. default: true
  26637. },
  26638. {
  26639. name: "Big",
  26640. height: math.unit(14.4, "meters")
  26641. },
  26642. {
  26643. name: "Huge",
  26644. height: math.unit(144, "meters")
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(7, "feet"),
  26653. weight: math.unit(425, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/hind/front.svg",
  26657. extra: 2091 / 1860,
  26658. bottom: 129 / 2220
  26659. }
  26660. },
  26661. back: {
  26662. height: math.unit(7, "feet"),
  26663. weight: math.unit(425, "lb"),
  26664. name: "Back",
  26665. image: {
  26666. source: "./media/characters/hind/back.svg",
  26667. extra: 2091 / 1860,
  26668. bottom: 24.6 / 2309
  26669. }
  26670. },
  26671. tail: {
  26672. height: math.unit(2.8, "feet"),
  26673. name: "Tail",
  26674. image: {
  26675. source: "./media/characters/hind/tail.svg"
  26676. }
  26677. },
  26678. head: {
  26679. height: math.unit(2.55, "feet"),
  26680. name: "Head",
  26681. image: {
  26682. source: "./media/characters/hind/head.svg"
  26683. }
  26684. },
  26685. },
  26686. [
  26687. {
  26688. name: "XS",
  26689. height: math.unit(0.7, "feet")
  26690. },
  26691. {
  26692. name: "Normal",
  26693. height: math.unit(7, "feet"),
  26694. default: true
  26695. },
  26696. {
  26697. name: "XL",
  26698. height: math.unit(70, "feet")
  26699. },
  26700. ]
  26701. ))
  26702. characterMakers.push(() => makeCharacter(
  26703. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26704. {
  26705. front: {
  26706. height: math.unit(2.1, "meters"),
  26707. weight: math.unit(150, "lb"),
  26708. name: "Front",
  26709. image: {
  26710. source: "./media/characters/tharquench-sizestealer/front.svg",
  26711. extra: 1605/1470,
  26712. bottom: 36/1641
  26713. }
  26714. },
  26715. frontAlt: {
  26716. height: math.unit(2.1, "meters"),
  26717. weight: math.unit(150, "lb"),
  26718. name: "Front (Alt)",
  26719. image: {
  26720. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26721. extra: 2318 / 2063,
  26722. bottom: 93.4 / 2410
  26723. }
  26724. },
  26725. },
  26726. [
  26727. {
  26728. name: "Nano",
  26729. height: math.unit(1, "mm")
  26730. },
  26731. {
  26732. name: "Micro",
  26733. height: math.unit(1, "cm")
  26734. },
  26735. {
  26736. name: "Normal",
  26737. height: math.unit(2.1, "meters"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26744. {
  26745. front: {
  26746. height: math.unit(7 + 5 / 12, "feet"),
  26747. weight: math.unit(357, "lb"),
  26748. name: "Front",
  26749. image: {
  26750. source: "./media/characters/solex-draconov/front.svg",
  26751. extra: 1993 / 1865,
  26752. bottom: 117 / 2111
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Natural Height",
  26759. height: math.unit(7 + 5 / 12, "feet"),
  26760. default: true
  26761. },
  26762. {
  26763. name: "Macro",
  26764. height: math.unit(350, "feet")
  26765. },
  26766. {
  26767. name: "Macro+",
  26768. height: math.unit(1000, "feet")
  26769. },
  26770. {
  26771. name: "Megamacro",
  26772. height: math.unit(20, "km")
  26773. },
  26774. {
  26775. name: "Megamacro+",
  26776. height: math.unit(1000, "km")
  26777. },
  26778. {
  26779. name: "Gigamacro",
  26780. height: math.unit(2.5, "Gm")
  26781. },
  26782. {
  26783. name: "Teramacro",
  26784. height: math.unit(15, "Tm")
  26785. },
  26786. {
  26787. name: "Galactic",
  26788. height: math.unit(30, "Zm")
  26789. },
  26790. {
  26791. name: "Universal",
  26792. height: math.unit(21000, "Ym")
  26793. },
  26794. {
  26795. name: "Omniversal",
  26796. height: math.unit(9.861e50, "Ym")
  26797. },
  26798. {
  26799. name: "Existential",
  26800. height: math.unit(1e300, "meters")
  26801. },
  26802. ]
  26803. ))
  26804. characterMakers.push(() => makeCharacter(
  26805. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26806. {
  26807. side: {
  26808. height: math.unit(25, "feet"),
  26809. weight: math.unit(90000, "lb"),
  26810. name: "Side",
  26811. image: {
  26812. source: "./media/characters/mandarax/side.svg",
  26813. extra: 614 / 332,
  26814. bottom: 55 / 630
  26815. }
  26816. },
  26817. lounging: {
  26818. height: math.unit(15.4, "feet"),
  26819. weight: math.unit(90000, "lb"),
  26820. name: "Lounging",
  26821. image: {
  26822. source: "./media/characters/mandarax/lounging.svg",
  26823. extra: 817/609,
  26824. bottom: 685/1502
  26825. }
  26826. },
  26827. head: {
  26828. height: math.unit(11.4, "feet"),
  26829. name: "Head",
  26830. image: {
  26831. source: "./media/characters/mandarax/head.svg"
  26832. }
  26833. },
  26834. belly: {
  26835. height: math.unit(33, "feet"),
  26836. name: "Belly",
  26837. preyCapacity: math.unit(500, "people"),
  26838. image: {
  26839. source: "./media/characters/mandarax/belly.svg"
  26840. }
  26841. },
  26842. dick: {
  26843. height: math.unit(8.46, "feet"),
  26844. name: "Dick",
  26845. image: {
  26846. source: "./media/characters/mandarax/dick.svg"
  26847. }
  26848. },
  26849. top: {
  26850. height: math.unit(28, "meters"),
  26851. name: "Top",
  26852. image: {
  26853. source: "./media/characters/mandarax/top.svg"
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(25, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(5, "feet"),
  26870. weight: math.unit(90, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/pixil/front.svg",
  26874. extra: 2000 / 1618,
  26875. bottom: 12.3 / 2011
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(5, "feet"),
  26883. default: true
  26884. },
  26885. {
  26886. name: "Megamacro",
  26887. height: math.unit(10, "miles"),
  26888. },
  26889. ]
  26890. ))
  26891. characterMakers.push(() => makeCharacter(
  26892. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26893. {
  26894. front: {
  26895. height: math.unit(7 + 2 / 12, "feet"),
  26896. weight: math.unit(200, "lb"),
  26897. name: "Front",
  26898. image: {
  26899. source: "./media/characters/angel/front.svg",
  26900. extra: 1830 / 1737,
  26901. bottom: 22.6 / 1854,
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(7 + 2 / 12, "feet"),
  26909. default: true
  26910. },
  26911. {
  26912. name: "Macro",
  26913. height: math.unit(1000, "feet")
  26914. },
  26915. {
  26916. name: "Megamacro",
  26917. height: math.unit(2, "miles")
  26918. },
  26919. {
  26920. name: "Gigamacro",
  26921. height: math.unit(20, "earths")
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(5, "feet"),
  26930. weight: math.unit(180, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/mekana/front.svg",
  26934. extra: 1671 / 1605,
  26935. bottom: 3.5 / 1691
  26936. }
  26937. },
  26938. side: {
  26939. height: math.unit(5, "feet"),
  26940. weight: math.unit(180, "lb"),
  26941. name: "Side",
  26942. image: {
  26943. source: "./media/characters/mekana/side.svg",
  26944. extra: 1671 / 1605,
  26945. bottom: 3.5 / 1691
  26946. }
  26947. },
  26948. back: {
  26949. height: math.unit(5, "feet"),
  26950. weight: math.unit(180, "lb"),
  26951. name: "Back",
  26952. image: {
  26953. source: "./media/characters/mekana/back.svg",
  26954. extra: 1671 / 1605,
  26955. bottom: 3.5 / 1691
  26956. }
  26957. },
  26958. },
  26959. [
  26960. {
  26961. name: "Normal",
  26962. height: math.unit(5, "feet"),
  26963. default: true
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(4 + 6 / 12, "feet"),
  26972. weight: math.unit(80, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/pixie/front.svg",
  26976. extra: 1924 / 1825,
  26977. bottom: 22.4 / 1946
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Normal",
  26984. height: math.unit(4 + 6 / 12, "feet"),
  26985. default: true
  26986. },
  26987. {
  26988. name: "Macro",
  26989. height: math.unit(40, "feet")
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(2.1, "meters"),
  26998. weight: math.unit(200, "lb"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/the-lascivious/front.svg",
  27002. extra: 1 / 0.893,
  27003. bottom: 3.5 / 573.7
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Human Scale",
  27010. height: math.unit(2.1, "meters")
  27011. },
  27012. {
  27013. name: "Wolxi Scale",
  27014. height: math.unit(46.2, "m"),
  27015. default: true
  27016. },
  27017. {
  27018. name: "Boinker of Buildings",
  27019. height: math.unit(10, "km")
  27020. },
  27021. {
  27022. name: "Shagger of Skyscrapers",
  27023. height: math.unit(40, "km")
  27024. },
  27025. {
  27026. name: "Banger of Boroughs",
  27027. height: math.unit(4000, "km")
  27028. },
  27029. {
  27030. name: "Screwer of States",
  27031. height: math.unit(100000, "km")
  27032. },
  27033. {
  27034. name: "Pounder of Planets",
  27035. height: math.unit(2000000, "km")
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(6, "feet"),
  27044. weight: math.unit(150, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/aj/front.svg",
  27048. extra: 2039 / 1562,
  27049. bottom: 40 / 2079
  27050. }
  27051. },
  27052. },
  27053. [
  27054. {
  27055. name: "Normal",
  27056. height: math.unit(11 + 6 / 12, "feet"),
  27057. default: true
  27058. },
  27059. {
  27060. name: "Megamacro",
  27061. height: math.unit(60, "megameters")
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27067. {
  27068. side: {
  27069. height: math.unit(31 + 8 / 12, "feet"),
  27070. weight: math.unit(75000, "kg"),
  27071. name: "Side",
  27072. image: {
  27073. source: "./media/characters/koros/side.svg",
  27074. extra: 1442 / 1297,
  27075. bottom: 122.7 / 1562
  27076. }
  27077. },
  27078. dicksKingsCrown: {
  27079. height: math.unit(6, "feet"),
  27080. name: "Dicks (King's Crown)",
  27081. image: {
  27082. source: "./media/characters/koros/dicks-kings-crown.svg"
  27083. }
  27084. },
  27085. dicksTailSet: {
  27086. height: math.unit(3, "feet"),
  27087. name: "Dicks (Tail Set)",
  27088. image: {
  27089. source: "./media/characters/koros/dicks-tail-set.svg"
  27090. }
  27091. },
  27092. dickCumming: {
  27093. height: math.unit(7.98, "feet"),
  27094. name: "Dick (Cumming)",
  27095. image: {
  27096. source: "./media/characters/koros/dick-cumming.svg"
  27097. }
  27098. },
  27099. dicksBack: {
  27100. height: math.unit(5.9, "feet"),
  27101. name: "Dicks (Back)",
  27102. image: {
  27103. source: "./media/characters/koros/dicks-back.svg"
  27104. }
  27105. },
  27106. dicksFront: {
  27107. height: math.unit(3.72, "feet"),
  27108. name: "Dicks (Front)",
  27109. image: {
  27110. source: "./media/characters/koros/dicks-front.svg"
  27111. }
  27112. },
  27113. dicksPeeking: {
  27114. height: math.unit(3.0, "feet"),
  27115. name: "Dicks (Peeking)",
  27116. image: {
  27117. source: "./media/characters/koros/dicks-peeking.svg"
  27118. }
  27119. },
  27120. eye: {
  27121. height: math.unit(1.7, "feet"),
  27122. name: "Eye",
  27123. image: {
  27124. source: "./media/characters/koros/eye.svg"
  27125. }
  27126. },
  27127. headFront: {
  27128. height: math.unit(11.69, "feet"),
  27129. name: "Head (Front)",
  27130. image: {
  27131. source: "./media/characters/koros/head-front.svg"
  27132. }
  27133. },
  27134. headSide: {
  27135. height: math.unit(14, "feet"),
  27136. name: "Head (Side)",
  27137. image: {
  27138. source: "./media/characters/koros/head-side.svg"
  27139. }
  27140. },
  27141. leg: {
  27142. height: math.unit(17, "feet"),
  27143. name: "Leg",
  27144. image: {
  27145. source: "./media/characters/koros/leg.svg"
  27146. }
  27147. },
  27148. mawSide: {
  27149. height: math.unit(12.8, "feet"),
  27150. name: "Maw (Side)",
  27151. image: {
  27152. source: "./media/characters/koros/maw-side.svg"
  27153. }
  27154. },
  27155. mawSpitting: {
  27156. height: math.unit(17, "feet"),
  27157. name: "Maw (Spitting)",
  27158. image: {
  27159. source: "./media/characters/koros/maw-spitting.svg"
  27160. }
  27161. },
  27162. slit: {
  27163. height: math.unit(2.8, "feet"),
  27164. name: "Slit",
  27165. image: {
  27166. source: "./media/characters/koros/slit.svg"
  27167. }
  27168. },
  27169. stomach: {
  27170. height: math.unit(6.8, "feet"),
  27171. preyCapacity: math.unit(20, "people"),
  27172. name: "Stomach",
  27173. image: {
  27174. source: "./media/characters/koros/stomach.svg"
  27175. }
  27176. },
  27177. wingspanBottom: {
  27178. height: math.unit(114, "feet"),
  27179. name: "Wingspan (Bottom)",
  27180. image: {
  27181. source: "./media/characters/koros/wingspan-bottom.svg"
  27182. }
  27183. },
  27184. wingspanTop: {
  27185. height: math.unit(104, "feet"),
  27186. name: "Wingspan (Top)",
  27187. image: {
  27188. source: "./media/characters/koros/wingspan-top.svg"
  27189. }
  27190. },
  27191. },
  27192. [
  27193. {
  27194. name: "Normal",
  27195. height: math.unit(31 + 8 / 12, "feet"),
  27196. default: true
  27197. },
  27198. ]
  27199. ))
  27200. characterMakers.push(() => makeCharacter(
  27201. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27202. {
  27203. front: {
  27204. height: math.unit(18 + 5 / 12, "feet"),
  27205. weight: math.unit(3750, "kg"),
  27206. name: "Front",
  27207. image: {
  27208. source: "./media/characters/vexx/front.svg",
  27209. extra: 426 / 396,
  27210. bottom: 31.5 / 458
  27211. }
  27212. },
  27213. maw: {
  27214. height: math.unit(6, "feet"),
  27215. name: "Maw",
  27216. image: {
  27217. source: "./media/characters/vexx/maw.svg"
  27218. }
  27219. },
  27220. },
  27221. [
  27222. {
  27223. name: "Normal",
  27224. height: math.unit(18 + 5 / 12, "feet"),
  27225. default: true
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27231. {
  27232. front: {
  27233. height: math.unit(17 + 6 / 12, "feet"),
  27234. weight: math.unit(150, "lb"),
  27235. name: "Front",
  27236. image: {
  27237. source: "./media/characters/baadra/front.svg",
  27238. extra: 1694/1553,
  27239. bottom: 179/1873
  27240. }
  27241. },
  27242. frontAlt: {
  27243. height: math.unit(17 + 6 / 12, "feet"),
  27244. weight: math.unit(150, "lb"),
  27245. name: "Front (Alt)",
  27246. image: {
  27247. source: "./media/characters/baadra/front-alt.svg",
  27248. extra: 3137 / 2890,
  27249. bottom: 168.4 / 3305
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(17 + 6 / 12, "feet"),
  27254. weight: math.unit(150, "lb"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/baadra/back.svg",
  27258. extra: 3142 / 2890,
  27259. bottom: 220 / 3371
  27260. }
  27261. },
  27262. head: {
  27263. height: math.unit(5.45, "feet"),
  27264. name: "Head",
  27265. image: {
  27266. source: "./media/characters/baadra/head.svg"
  27267. }
  27268. },
  27269. headAngry: {
  27270. height: math.unit(4.95, "feet"),
  27271. name: "Head (Angry)",
  27272. image: {
  27273. source: "./media/characters/baadra/head-angry.svg"
  27274. }
  27275. },
  27276. headOpen: {
  27277. height: math.unit(6, "feet"),
  27278. name: "Head (Open)",
  27279. image: {
  27280. source: "./media/characters/baadra/head-open.svg"
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(17 + 6 / 12, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(7 + 3 / 12, "feet"),
  27297. weight: math.unit(180, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/juri/front.svg",
  27301. extra: 1401 / 1237,
  27302. bottom: 18.5 / 1418
  27303. }
  27304. },
  27305. side: {
  27306. height: math.unit(7 + 3 / 12, "feet"),
  27307. weight: math.unit(180, "lb"),
  27308. name: "Side",
  27309. image: {
  27310. source: "./media/characters/juri/side.svg",
  27311. extra: 1424 / 1242,
  27312. bottom: 18.5 / 1447
  27313. }
  27314. },
  27315. sitting: {
  27316. height: math.unit(6, "feet"),
  27317. weight: math.unit(180, "lb"),
  27318. name: "Sitting",
  27319. image: {
  27320. source: "./media/characters/juri/sitting.svg",
  27321. extra: 1270 / 1143,
  27322. bottom: 100 / 1343
  27323. }
  27324. },
  27325. back: {
  27326. height: math.unit(7 + 3 / 12, "feet"),
  27327. weight: math.unit(180, "lb"),
  27328. name: "Back",
  27329. image: {
  27330. source: "./media/characters/juri/back.svg",
  27331. extra: 1377 / 1240,
  27332. bottom: 23.7 / 1405
  27333. }
  27334. },
  27335. maw: {
  27336. height: math.unit(2.8, "feet"),
  27337. name: "Maw",
  27338. image: {
  27339. source: "./media/characters/juri/maw.svg"
  27340. }
  27341. },
  27342. stomach: {
  27343. height: math.unit(0.89, "feet"),
  27344. preyCapacity: math.unit(4, "liters"),
  27345. name: "Stomach",
  27346. image: {
  27347. source: "./media/characters/juri/stomach.svg"
  27348. }
  27349. },
  27350. },
  27351. [
  27352. {
  27353. name: "Normal",
  27354. height: math.unit(7 + 3 / 12, "feet"),
  27355. default: true
  27356. },
  27357. ]
  27358. ))
  27359. characterMakers.push(() => makeCharacter(
  27360. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27361. {
  27362. fox: {
  27363. height: math.unit(5 + 6 / 12, "feet"),
  27364. weight: math.unit(140, "lb"),
  27365. name: "Fox",
  27366. image: {
  27367. source: "./media/characters/maxene-sita/fox.svg",
  27368. extra: 146 / 138,
  27369. bottom: 2.1 / 148.19
  27370. }
  27371. },
  27372. foxLaying: {
  27373. height: math.unit(1.70, "feet"),
  27374. weight: math.unit(140, "lb"),
  27375. name: "Fox (Laying)",
  27376. image: {
  27377. source: "./media/characters/maxene-sita/fox-laying.svg",
  27378. extra: 910 / 572,
  27379. bottom: 71 / 981
  27380. }
  27381. },
  27382. kitsune: {
  27383. height: math.unit(10, "feet"),
  27384. weight: math.unit(800, "lb"),
  27385. name: "Kitsune",
  27386. image: {
  27387. source: "./media/characters/maxene-sita/kitsune.svg",
  27388. extra: 185 / 176,
  27389. bottom: 4.7 / 189.9
  27390. }
  27391. },
  27392. hellhound: {
  27393. height: math.unit(10, "feet"),
  27394. weight: math.unit(700, "lb"),
  27395. name: "Hellhound",
  27396. image: {
  27397. source: "./media/characters/maxene-sita/hellhound.svg",
  27398. extra: 1600 / 1545,
  27399. bottom: 81 / 1681
  27400. }
  27401. },
  27402. },
  27403. [
  27404. {
  27405. name: "Normal",
  27406. height: math.unit(5 + 6 / 12, "feet"),
  27407. default: true
  27408. },
  27409. ]
  27410. ))
  27411. characterMakers.push(() => makeCharacter(
  27412. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27413. {
  27414. front: {
  27415. height: math.unit(3 + 4 / 12, "feet"),
  27416. weight: math.unit(70, "lb"),
  27417. name: "Front",
  27418. image: {
  27419. source: "./media/characters/maia/front.svg",
  27420. extra: 227 / 219.5,
  27421. bottom: 40 / 267
  27422. }
  27423. },
  27424. back: {
  27425. height: math.unit(3 + 4 / 12, "feet"),
  27426. weight: math.unit(70, "lb"),
  27427. name: "Back",
  27428. image: {
  27429. source: "./media/characters/maia/back.svg",
  27430. extra: 237 / 225
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Normal",
  27437. height: math.unit(3 + 4 / 12, "feet"),
  27438. default: true
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(5 + 10 / 12, "feet"),
  27447. weight: math.unit(197, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/jabaro/front.svg",
  27451. extra: 225 / 216,
  27452. bottom: 5.06 / 230
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(5 + 10 / 12, "feet"),
  27457. weight: math.unit(197, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/jabaro/back.svg",
  27461. extra: 225 / 219,
  27462. bottom: 1.9 / 227
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Normal",
  27469. height: math.unit(5 + 10 / 12, "feet"),
  27470. default: true
  27471. },
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27476. {
  27477. front: {
  27478. height: math.unit(5 + 8 / 12, "feet"),
  27479. weight: math.unit(139, "lb"),
  27480. name: "Front",
  27481. image: {
  27482. source: "./media/characters/risa/front.svg",
  27483. extra: 270 / 260,
  27484. bottom: 11.2 / 282
  27485. }
  27486. },
  27487. back: {
  27488. height: math.unit(5 + 8 / 12, "feet"),
  27489. weight: math.unit(139, "lb"),
  27490. name: "Back",
  27491. image: {
  27492. source: "./media/characters/risa/back.svg",
  27493. extra: 264 / 255,
  27494. bottom: 4 / 268
  27495. }
  27496. },
  27497. },
  27498. [
  27499. {
  27500. name: "Normal",
  27501. height: math.unit(5 + 8 / 12, "feet"),
  27502. default: true
  27503. },
  27504. ]
  27505. ))
  27506. characterMakers.push(() => makeCharacter(
  27507. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27508. {
  27509. front: {
  27510. height: math.unit(2 + 11 / 12, "feet"),
  27511. weight: math.unit(30, "lb"),
  27512. name: "Front",
  27513. image: {
  27514. source: "./media/characters/weatley/front.svg",
  27515. bottom: 10.7 / 414,
  27516. extra: 403.5 / 362
  27517. }
  27518. },
  27519. back: {
  27520. height: math.unit(2 + 11 / 12, "feet"),
  27521. weight: math.unit(30, "lb"),
  27522. name: "Back",
  27523. image: {
  27524. source: "./media/characters/weatley/back.svg",
  27525. bottom: 10.7 / 414,
  27526. extra: 403.5 / 362
  27527. }
  27528. },
  27529. },
  27530. [
  27531. {
  27532. name: "Normal",
  27533. height: math.unit(2 + 11 / 12, "feet"),
  27534. default: true
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(5 + 2 / 12, "feet"),
  27543. weight: math.unit(50, "kg"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/mercury-crescent/front.svg",
  27547. extra: 1088 / 1033,
  27548. bottom: 18.9 / 1109
  27549. }
  27550. },
  27551. },
  27552. [
  27553. {
  27554. name: "Normal",
  27555. height: math.unit(5 + 2 / 12, "feet"),
  27556. default: true
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(2, "feet"),
  27565. weight: math.unit(15, "kg"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/diamond-jones/front.svg",
  27569. extra: 727/723,
  27570. bottom: 46/773
  27571. }
  27572. },
  27573. },
  27574. [
  27575. {
  27576. name: "Normal",
  27577. height: math.unit(2, "feet"),
  27578. default: true
  27579. },
  27580. ]
  27581. ))
  27582. characterMakers.push(() => makeCharacter(
  27583. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27584. {
  27585. front: {
  27586. height: math.unit(3, "feet"),
  27587. weight: math.unit(30, "kg"),
  27588. name: "Front",
  27589. image: {
  27590. source: "./media/characters/sweet-bit/front.svg",
  27591. extra: 675 / 567,
  27592. bottom: 27.7 / 703
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(3, "feet"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27606. {
  27607. side: {
  27608. height: math.unit(9.178, "feet"),
  27609. weight: math.unit(500, "lb"),
  27610. name: "Side",
  27611. image: {
  27612. source: "./media/characters/umbrazen/side.svg",
  27613. extra: 1730 / 1473,
  27614. bottom: 34.6 / 1765
  27615. }
  27616. },
  27617. },
  27618. [
  27619. {
  27620. name: "Normal",
  27621. height: math.unit(9.178, "feet"),
  27622. default: true
  27623. },
  27624. ]
  27625. ))
  27626. characterMakers.push(() => makeCharacter(
  27627. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27628. {
  27629. front: {
  27630. height: math.unit(10, "feet"),
  27631. weight: math.unit(750, "lb"),
  27632. name: "Front",
  27633. image: {
  27634. source: "./media/characters/arlist/front.svg",
  27635. extra: 961 / 778,
  27636. bottom: 6.2 / 986
  27637. }
  27638. },
  27639. },
  27640. [
  27641. {
  27642. name: "Normal",
  27643. height: math.unit(10, "feet"),
  27644. default: true
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(5 + 1 / 12, "feet"),
  27653. weight: math.unit(110, "lb"),
  27654. name: "Front",
  27655. image: {
  27656. source: "./media/characters/aradel/front.svg",
  27657. extra: 324 / 303,
  27658. bottom: 3.6 / 329.4
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(5 + 1 / 12, "feet"),
  27666. default: true
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27672. {
  27673. dressed: {
  27674. height: math.unit(3 + 8 / 12, "feet"),
  27675. weight: math.unit(50, "lb"),
  27676. name: "Dressed",
  27677. image: {
  27678. source: "./media/characters/serryn/dressed.svg",
  27679. extra: 1792 / 1656,
  27680. bottom: 43.5 / 1840
  27681. }
  27682. },
  27683. nude: {
  27684. height: math.unit(3 + 8 / 12, "feet"),
  27685. weight: math.unit(50, "lb"),
  27686. name: "Nude",
  27687. image: {
  27688. source: "./media/characters/serryn/nude.svg",
  27689. extra: 1792 / 1656,
  27690. bottom: 43.5 / 1840
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(3 + 8 / 12, "feet"),
  27698. default: true
  27699. },
  27700. ]
  27701. ))
  27702. characterMakers.push(() => makeCharacter(
  27703. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27704. {
  27705. front: {
  27706. height: math.unit(7 + 10 / 12, "feet"),
  27707. weight: math.unit(255, "lb"),
  27708. name: "Front",
  27709. image: {
  27710. source: "./media/characters/xavier-thyme/front.svg",
  27711. extra: 3733 / 3642,
  27712. bottom: 131 / 3869
  27713. }
  27714. },
  27715. frontRaven: {
  27716. height: math.unit(7 + 10 / 12, "feet"),
  27717. weight: math.unit(255, "lb"),
  27718. name: "Front (Raven)",
  27719. image: {
  27720. source: "./media/characters/xavier-thyme/front-raven.svg",
  27721. extra: 4385 / 3642,
  27722. bottom: 131 / 4517
  27723. }
  27724. },
  27725. },
  27726. [
  27727. {
  27728. name: "Normal",
  27729. height: math.unit(7 + 10 / 12, "feet"),
  27730. default: true
  27731. },
  27732. ]
  27733. ))
  27734. characterMakers.push(() => makeCharacter(
  27735. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27736. {
  27737. front: {
  27738. height: math.unit(1.6, "m"),
  27739. weight: math.unit(50, "kg"),
  27740. name: "Front",
  27741. image: {
  27742. source: "./media/characters/kiki/front.svg",
  27743. extra: 4682 / 3610,
  27744. bottom: 115 / 4777
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(1.6, "meters"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(50, "m"),
  27761. weight: math.unit(500, "tonnes"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/ryoko/front.svg",
  27765. extra: 4632 / 3926,
  27766. bottom: 193 / 4823
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Normal",
  27773. height: math.unit(50, "meters"),
  27774. default: true
  27775. },
  27776. ]
  27777. ))
  27778. characterMakers.push(() => makeCharacter(
  27779. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27780. {
  27781. front: {
  27782. height: math.unit(30, "m"),
  27783. weight: math.unit(22, "tonnes"),
  27784. name: "Front",
  27785. image: {
  27786. source: "./media/characters/elio/front.svg",
  27787. extra: 4582 / 3720,
  27788. bottom: 236 / 4828
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(30, "meters"),
  27796. default: true
  27797. },
  27798. ]
  27799. ))
  27800. characterMakers.push(() => makeCharacter(
  27801. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27802. {
  27803. front: {
  27804. height: math.unit(6 + 3 / 12, "feet"),
  27805. weight: math.unit(120, "lb"),
  27806. name: "Front",
  27807. image: {
  27808. source: "./media/characters/azura/front.svg",
  27809. extra: 1149 / 1135,
  27810. bottom: 45 / 1194
  27811. }
  27812. },
  27813. frontClothed: {
  27814. height: math.unit(6 + 3 / 12, "feet"),
  27815. weight: math.unit(120, "lb"),
  27816. name: "Front (Clothed)",
  27817. image: {
  27818. source: "./media/characters/azura/front-clothed.svg",
  27819. extra: 1149 / 1135,
  27820. bottom: 45 / 1194
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(6 + 3 / 12, "feet"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Macro",
  27832. height: math.unit(20 + 6 / 12, "feet")
  27833. },
  27834. {
  27835. name: "Megamacro",
  27836. height: math.unit(12, "miles")
  27837. },
  27838. {
  27839. name: "Gigamacro",
  27840. height: math.unit(10000, "miles")
  27841. },
  27842. {
  27843. name: "Teramacro",
  27844. height: math.unit(900000, "miles")
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27850. {
  27851. front: {
  27852. height: math.unit(12, "feet"),
  27853. weight: math.unit(1, "ton"),
  27854. capacity: math.unit(660000, "gallons"),
  27855. name: "Front",
  27856. image: {
  27857. source: "./media/characters/zeus/front.svg",
  27858. extra: 5005 / 4717,
  27859. bottom: 363 / 5388
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(12, "feet")
  27867. },
  27868. {
  27869. name: "Preferred Size",
  27870. height: math.unit(0.5, "miles"),
  27871. default: true
  27872. },
  27873. {
  27874. name: "Giga Horse",
  27875. height: math.unit(300, "miles")
  27876. },
  27877. {
  27878. name: "Riding Planets",
  27879. height: math.unit(30, "megameters")
  27880. },
  27881. {
  27882. name: "Cosmic Giant",
  27883. height: math.unit(3, "zettameters")
  27884. },
  27885. {
  27886. name: "Breeding God",
  27887. height: math.unit(9.92e22, "yottameters")
  27888. },
  27889. ]
  27890. ))
  27891. characterMakers.push(() => makeCharacter(
  27892. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27893. {
  27894. side: {
  27895. height: math.unit(9, "feet"),
  27896. weight: math.unit(1500, "kg"),
  27897. name: "Side",
  27898. image: {
  27899. source: "./media/characters/fang/side.svg",
  27900. extra: 924 / 866,
  27901. bottom: 47.5 / 972.3
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(9, "feet"),
  27909. default: true
  27910. },
  27911. {
  27912. name: "Macro",
  27913. height: math.unit(75 + 6 / 12, "feet")
  27914. },
  27915. {
  27916. name: "Teramacro",
  27917. height: math.unit(50000, "miles")
  27918. },
  27919. ]
  27920. ))
  27921. characterMakers.push(() => makeCharacter(
  27922. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27923. {
  27924. front: {
  27925. height: math.unit(10, "feet"),
  27926. weight: math.unit(2, "tons"),
  27927. name: "Front",
  27928. image: {
  27929. source: "./media/characters/rekhit/front.svg",
  27930. extra: 2796 / 2590,
  27931. bottom: 225 / 3022
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(10, "feet"),
  27939. default: true
  27940. },
  27941. {
  27942. name: "Macro",
  27943. height: math.unit(500, "feet")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(7 + 6.451 / 12, "feet"),
  27952. weight: math.unit(310, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/dahlia-verrick/front.svg",
  27956. extra: 1488 / 1365,
  27957. bottom: 6.2 / 1495
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(7 + 6.451 / 12, "feet"),
  27962. weight: math.unit(310, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/dahlia-verrick/back.svg",
  27966. extra: 1472 / 1351,
  27967. bottom: 5.28 / 1477
  27968. }
  27969. },
  27970. frontBusiness: {
  27971. height: math.unit(7 + 6.451 / 12, "feet"),
  27972. weight: math.unit(200, "lb"),
  27973. name: "Front (Business)",
  27974. image: {
  27975. source: "./media/characters/dahlia-verrick/front-business.svg",
  27976. extra: 1478 / 1381,
  27977. bottom: 5.5 / 1484
  27978. }
  27979. },
  27980. frontCasual: {
  27981. height: math.unit(7 + 6.451 / 12, "feet"),
  27982. weight: math.unit(200, "lb"),
  27983. name: "Front (Casual)",
  27984. image: {
  27985. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27986. extra: 1478 / 1381,
  27987. bottom: 5.5 / 1484
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Travel-Sized",
  27994. height: math.unit(7.45, "inches")
  27995. },
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(7 + 6.451 / 12, "feet"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Hitting the Town",
  28003. height: math.unit(37 + 8 / 12, "feet")
  28004. },
  28005. {
  28006. name: "Stomp in the Suburbs",
  28007. height: math.unit(964 + 9.728 / 12, "feet")
  28008. },
  28009. {
  28010. name: "Sit on the City",
  28011. height: math.unit(61747 + 10.592 / 12, "feet")
  28012. },
  28013. {
  28014. name: "Glomp the Globe",
  28015. height: math.unit(252919327 + 4.832 / 12, "feet")
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(6 + 4 / 12, "feet"),
  28024. weight: math.unit(320, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/balina-mahigan/front.svg",
  28028. extra: 447 / 428,
  28029. bottom: 18 / 466
  28030. }
  28031. },
  28032. back: {
  28033. height: math.unit(6 + 4 / 12, "feet"),
  28034. weight: math.unit(320, "lb"),
  28035. name: "Back",
  28036. image: {
  28037. source: "./media/characters/balina-mahigan/back.svg",
  28038. extra: 445 / 428,
  28039. bottom: 4.07 / 448
  28040. }
  28041. },
  28042. arm: {
  28043. height: math.unit(1.88, "feet"),
  28044. name: "Arm",
  28045. image: {
  28046. source: "./media/characters/balina-mahigan/arm.svg"
  28047. }
  28048. },
  28049. backPort: {
  28050. height: math.unit(0.685, "feet"),
  28051. name: "Back Port",
  28052. image: {
  28053. source: "./media/characters/balina-mahigan/back-port.svg"
  28054. }
  28055. },
  28056. hoofpaw: {
  28057. height: math.unit(1.41, "feet"),
  28058. name: "Hoofpaw",
  28059. image: {
  28060. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28061. }
  28062. },
  28063. leftHandBack: {
  28064. height: math.unit(0.938, "feet"),
  28065. name: "Left Hand (Back)",
  28066. image: {
  28067. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28068. }
  28069. },
  28070. leftHandFront: {
  28071. height: math.unit(0.938, "feet"),
  28072. name: "Left Hand (Front)",
  28073. image: {
  28074. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28075. }
  28076. },
  28077. rightHandBack: {
  28078. height: math.unit(0.95, "feet"),
  28079. name: "Right Hand (Back)",
  28080. image: {
  28081. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28082. }
  28083. },
  28084. rightHandFront: {
  28085. height: math.unit(0.95, "feet"),
  28086. name: "Right Hand (Front)",
  28087. image: {
  28088. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28089. }
  28090. },
  28091. },
  28092. [
  28093. {
  28094. name: "Normal",
  28095. height: math.unit(6 + 4 / 12, "feet"),
  28096. default: true
  28097. },
  28098. ]
  28099. ))
  28100. characterMakers.push(() => makeCharacter(
  28101. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28102. {
  28103. front: {
  28104. height: math.unit(6, "feet"),
  28105. weight: math.unit(320, "lb"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/balina-mejeri/front.svg",
  28109. extra: 517 / 488,
  28110. bottom: 44.2 / 561
  28111. }
  28112. },
  28113. },
  28114. [
  28115. {
  28116. name: "Normal",
  28117. height: math.unit(6 + 4 / 12, "feet")
  28118. },
  28119. {
  28120. name: "Business",
  28121. height: math.unit(155, "feet"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28128. {
  28129. kneeling: {
  28130. height: math.unit(6 + 4 / 12, "feet"),
  28131. weight: math.unit(300 * 20, "lb"),
  28132. name: "Kneeling",
  28133. image: {
  28134. source: "./media/characters/balbarian/kneeling.svg",
  28135. extra: 922 / 862,
  28136. bottom: 42.4 / 965
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(6 + 4 / 12, "feet")
  28144. },
  28145. {
  28146. name: "Treasured",
  28147. height: math.unit(18 + 9 / 12, "feet"),
  28148. default: true
  28149. },
  28150. {
  28151. name: "Macro",
  28152. height: math.unit(900, "feet")
  28153. },
  28154. ]
  28155. ))
  28156. characterMakers.push(() => makeCharacter(
  28157. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28158. {
  28159. front: {
  28160. height: math.unit(6 + 4 / 12, "feet"),
  28161. weight: math.unit(325, "lb"),
  28162. name: "Front",
  28163. image: {
  28164. source: "./media/characters/balina-amarini/front.svg",
  28165. extra: 415 / 403,
  28166. bottom: 19 / 433.4
  28167. }
  28168. },
  28169. back: {
  28170. height: math.unit(6 + 4 / 12, "feet"),
  28171. weight: math.unit(325, "lb"),
  28172. name: "Back",
  28173. image: {
  28174. source: "./media/characters/balina-amarini/back.svg",
  28175. extra: 415 / 403,
  28176. bottom: 13.5 / 432
  28177. }
  28178. },
  28179. overdrive: {
  28180. height: math.unit(6 + 4 / 12, "feet"),
  28181. weight: math.unit(400, "lb"),
  28182. name: "Overdrive",
  28183. image: {
  28184. source: "./media/characters/balina-amarini/overdrive.svg",
  28185. extra: 269 / 259,
  28186. bottom: 12 / 282
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Boom",
  28193. height: math.unit(9 + 10 / 12, "feet"),
  28194. default: true
  28195. },
  28196. {
  28197. name: "Macro",
  28198. height: math.unit(280, "feet")
  28199. },
  28200. ]
  28201. ))
  28202. characterMakers.push(() => makeCharacter(
  28203. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28204. {
  28205. goddess: {
  28206. height: math.unit(600, "feet"),
  28207. weight: math.unit(2000000, "tons"),
  28208. name: "Goddess",
  28209. image: {
  28210. source: "./media/characters/lady-kubwa/goddess.svg",
  28211. extra: 1240.5 / 1223,
  28212. bottom: 22 / 1263
  28213. }
  28214. },
  28215. goddesser: {
  28216. height: math.unit(900, "feet"),
  28217. weight: math.unit(20000000, "lb"),
  28218. name: "Goddess-er",
  28219. image: {
  28220. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28221. extra: 899 / 888,
  28222. bottom: 12.6 / 912
  28223. }
  28224. },
  28225. },
  28226. [
  28227. {
  28228. name: "Macro",
  28229. height: math.unit(600, "feet"),
  28230. default: true
  28231. },
  28232. {
  28233. name: "Megamacro",
  28234. height: math.unit(250, "miles")
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28240. {
  28241. front: {
  28242. height: math.unit(7 + 7 / 12, "feet"),
  28243. weight: math.unit(250, "lb"),
  28244. name: "Front",
  28245. image: {
  28246. source: "./media/characters/tala-grovehorn/front.svg",
  28247. extra: 2636 / 2525,
  28248. bottom: 147 / 2781
  28249. }
  28250. },
  28251. back: {
  28252. height: math.unit(7 + 7 / 12, "feet"),
  28253. weight: math.unit(250, "lb"),
  28254. name: "Back",
  28255. image: {
  28256. source: "./media/characters/tala-grovehorn/back.svg",
  28257. extra: 2635 / 2539,
  28258. bottom: 100 / 2732.8
  28259. }
  28260. },
  28261. mouth: {
  28262. height: math.unit(1.15, "feet"),
  28263. name: "Mouth",
  28264. image: {
  28265. source: "./media/characters/tala-grovehorn/mouth.svg"
  28266. }
  28267. },
  28268. dick: {
  28269. height: math.unit(2.36, "feet"),
  28270. name: "Dick",
  28271. image: {
  28272. source: "./media/characters/tala-grovehorn/dick.svg"
  28273. }
  28274. },
  28275. slit: {
  28276. height: math.unit(0.61, "feet"),
  28277. name: "Slit",
  28278. image: {
  28279. source: "./media/characters/tala-grovehorn/slit.svg"
  28280. }
  28281. },
  28282. },
  28283. [
  28284. ]
  28285. ))
  28286. characterMakers.push(() => makeCharacter(
  28287. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28288. {
  28289. front: {
  28290. height: math.unit(7 + 7 / 12, "feet"),
  28291. weight: math.unit(225, "lb"),
  28292. name: "Front",
  28293. image: {
  28294. source: "./media/characters/epona/front.svg",
  28295. extra: 2445 / 2290,
  28296. bottom: 251 / 2696
  28297. }
  28298. },
  28299. back: {
  28300. height: math.unit(7 + 7 / 12, "feet"),
  28301. weight: math.unit(225, "lb"),
  28302. name: "Back",
  28303. image: {
  28304. source: "./media/characters/epona/back.svg",
  28305. extra: 2546 / 2408,
  28306. bottom: 44 / 2589
  28307. }
  28308. },
  28309. genitals: {
  28310. height: math.unit(1.5, "feet"),
  28311. name: "Genitals",
  28312. image: {
  28313. source: "./media/characters/epona/genitals.svg"
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(7 + 7 / 12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(7, "feet"),
  28330. weight: math.unit(518, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/avia-bloodbourn/front.svg",
  28334. extra: 1466 / 1350,
  28335. bottom: 65 / 1527
  28336. }
  28337. },
  28338. },
  28339. [
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(9.35, "feet"),
  28347. weight: math.unit(600, "lb"),
  28348. name: "Front",
  28349. image: {
  28350. source: "./media/characters/amera/front.svg",
  28351. extra: 891 / 818,
  28352. bottom: 30 / 922.7
  28353. }
  28354. },
  28355. back: {
  28356. height: math.unit(9.35, "feet"),
  28357. weight: math.unit(600, "lb"),
  28358. name: "Back",
  28359. image: {
  28360. source: "./media/characters/amera/back.svg",
  28361. extra: 876 / 824,
  28362. bottom: 6.8 / 884
  28363. }
  28364. },
  28365. dick: {
  28366. height: math.unit(2.14, "feet"),
  28367. name: "Dick",
  28368. image: {
  28369. source: "./media/characters/amera/dick.svg"
  28370. }
  28371. },
  28372. },
  28373. [
  28374. {
  28375. name: "Normal",
  28376. height: math.unit(9.35, "feet"),
  28377. default: true
  28378. },
  28379. ]
  28380. ))
  28381. characterMakers.push(() => makeCharacter(
  28382. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28383. {
  28384. kneeling: {
  28385. height: math.unit(3 + 4 / 12, "feet"),
  28386. weight: math.unit(90, "lb"),
  28387. name: "Kneeling",
  28388. image: {
  28389. source: "./media/characters/rosewen/kneeling.svg",
  28390. extra: 1835 / 1571,
  28391. bottom: 27.7 / 1862
  28392. }
  28393. },
  28394. },
  28395. [
  28396. {
  28397. name: "Normal",
  28398. height: math.unit(3 + 4 / 12, "feet"),
  28399. default: true
  28400. },
  28401. ]
  28402. ))
  28403. characterMakers.push(() => makeCharacter(
  28404. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28405. {
  28406. front: {
  28407. height: math.unit(5 + 10 / 12, "feet"),
  28408. weight: math.unit(200, "lb"),
  28409. name: "Front",
  28410. image: {
  28411. source: "./media/characters/sabah/front.svg",
  28412. extra: 849 / 763,
  28413. bottom: 33.9 / 881
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(5 + 10 / 12, "feet"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28427. {
  28428. front: {
  28429. height: math.unit(3 + 5 / 12, "feet"),
  28430. weight: math.unit(40, "kg"),
  28431. name: "Front",
  28432. image: {
  28433. source: "./media/characters/purple-flame/front.svg",
  28434. extra: 1577 / 1412,
  28435. bottom: 97 / 1694
  28436. }
  28437. },
  28438. frontDressed: {
  28439. height: math.unit(3 + 5 / 12, "feet"),
  28440. weight: math.unit(40, "kg"),
  28441. name: "Front (Dressed)",
  28442. image: {
  28443. source: "./media/characters/purple-flame/front-dressed.svg",
  28444. extra: 1577 / 1412,
  28445. bottom: 97 / 1694
  28446. }
  28447. },
  28448. headphones: {
  28449. height: math.unit(0.85, "feet"),
  28450. name: "Headphones",
  28451. image: {
  28452. source: "./media/characters/purple-flame/headphones.svg"
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Really Small",
  28459. height: math.unit(5, "cm")
  28460. },
  28461. {
  28462. name: "Micro",
  28463. height: math.unit(1 + 5 / 12, "feet")
  28464. },
  28465. {
  28466. name: "Normal",
  28467. height: math.unit(3 + 5 / 12, "feet"),
  28468. default: true
  28469. },
  28470. {
  28471. name: "Minimacro",
  28472. height: math.unit(125, "feet")
  28473. },
  28474. {
  28475. name: "Macro",
  28476. height: math.unit(0.5, "miles")
  28477. },
  28478. {
  28479. name: "Megamacro",
  28480. height: math.unit(50, "miles")
  28481. },
  28482. {
  28483. name: "Gigantic",
  28484. height: math.unit(750, "miles")
  28485. },
  28486. {
  28487. name: "Planetary",
  28488. height: math.unit(15000, "miles")
  28489. },
  28490. ]
  28491. ))
  28492. characterMakers.push(() => makeCharacter(
  28493. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28494. {
  28495. front: {
  28496. height: math.unit(14, "feet"),
  28497. weight: math.unit(959, "lb"),
  28498. name: "Front",
  28499. image: {
  28500. source: "./media/characters/arsenal/front.svg",
  28501. extra: 2357 / 2157,
  28502. bottom: 93 / 2458
  28503. }
  28504. },
  28505. },
  28506. [
  28507. {
  28508. name: "Normal",
  28509. height: math.unit(14, "feet"),
  28510. default: true
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28516. {
  28517. front: {
  28518. height: math.unit(6, "feet"),
  28519. weight: math.unit(150, "lb"),
  28520. name: "Front",
  28521. image: {
  28522. source: "./media/characters/adira/front.svg",
  28523. extra: 1078 / 1029,
  28524. bottom: 87 / 1166
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Micro",
  28531. height: math.unit(4, "inches"),
  28532. default: true
  28533. },
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(50, "feet")
  28537. },
  28538. ]
  28539. ))
  28540. characterMakers.push(() => makeCharacter(
  28541. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28542. {
  28543. front: {
  28544. height: math.unit(16, "feet"),
  28545. weight: math.unit(1000, "lb"),
  28546. name: "Front",
  28547. image: {
  28548. source: "./media/characters/grim/front.svg",
  28549. extra: 622 / 614,
  28550. bottom: 18.1 / 642
  28551. }
  28552. },
  28553. back: {
  28554. height: math.unit(16, "feet"),
  28555. weight: math.unit(1000, "lb"),
  28556. name: "Back",
  28557. image: {
  28558. source: "./media/characters/grim/back.svg",
  28559. extra: 610.6 / 602,
  28560. bottom: 40.8 / 652
  28561. }
  28562. },
  28563. hunched: {
  28564. height: math.unit(9.75, "feet"),
  28565. weight: math.unit(1000, "lb"),
  28566. name: "Hunched",
  28567. image: {
  28568. source: "./media/characters/grim/hunched.svg",
  28569. extra: 304 / 297,
  28570. bottom: 35.4 / 394
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Normal",
  28577. height: math.unit(16, "feet"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(2.3, "meters"),
  28587. weight: math.unit(300, "lb"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/sinja/front-sfw.svg",
  28591. extra: 1393 / 1294,
  28592. bottom: 70 / 1463
  28593. }
  28594. },
  28595. frontNsfw: {
  28596. height: math.unit(2.3, "meters"),
  28597. weight: math.unit(300, "lb"),
  28598. name: "Front (NSFW)",
  28599. image: {
  28600. source: "./media/characters/sinja/front-nsfw.svg",
  28601. extra: 1393 / 1294,
  28602. bottom: 70 / 1463
  28603. }
  28604. },
  28605. back: {
  28606. height: math.unit(2.3, "meters"),
  28607. weight: math.unit(300, "lb"),
  28608. name: "Back",
  28609. image: {
  28610. source: "./media/characters/sinja/back.svg",
  28611. extra: 1393 / 1294,
  28612. bottom: 70 / 1463
  28613. }
  28614. },
  28615. head: {
  28616. height: math.unit(1.771, "feet"),
  28617. name: "Head",
  28618. image: {
  28619. source: "./media/characters/sinja/head.svg"
  28620. }
  28621. },
  28622. slit: {
  28623. height: math.unit(0.8, "feet"),
  28624. name: "Slit",
  28625. image: {
  28626. source: "./media/characters/sinja/slit.svg"
  28627. }
  28628. },
  28629. },
  28630. [
  28631. {
  28632. name: "Normal",
  28633. height: math.unit(2.3, "meters")
  28634. },
  28635. {
  28636. name: "Macro",
  28637. height: math.unit(91, "meters"),
  28638. default: true
  28639. },
  28640. {
  28641. name: "Megamacro",
  28642. height: math.unit(91440, "meters")
  28643. },
  28644. {
  28645. name: "Gigamacro",
  28646. height: math.unit(60960000, "meters")
  28647. },
  28648. {
  28649. name: "Teramacro",
  28650. height: math.unit(9144000000, "meters")
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(1.7, "meters"),
  28659. weight: math.unit(130, "lb"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/kyu/front.svg",
  28663. extra: 415 / 395,
  28664. bottom: 5 / 420
  28665. }
  28666. },
  28667. head: {
  28668. height: math.unit(1.75, "feet"),
  28669. name: "Head",
  28670. image: {
  28671. source: "./media/characters/kyu/head.svg"
  28672. }
  28673. },
  28674. foot: {
  28675. height: math.unit(0.81, "feet"),
  28676. name: "Foot",
  28677. image: {
  28678. source: "./media/characters/kyu/foot.svg"
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(1.7, "meters")
  28686. },
  28687. {
  28688. name: "Macro",
  28689. height: math.unit(131, "feet"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Megamacro",
  28694. height: math.unit(91440, "meters")
  28695. },
  28696. {
  28697. name: "Gigamacro",
  28698. height: math.unit(60960000, "meters")
  28699. },
  28700. {
  28701. name: "Teramacro",
  28702. height: math.unit(9144000000, "meters")
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28708. {
  28709. front: {
  28710. height: math.unit(7 + 1 / 12, "feet"),
  28711. weight: math.unit(250, "lb"),
  28712. name: "Front",
  28713. image: {
  28714. source: "./media/characters/joey/front.svg",
  28715. extra: 1791 / 1537,
  28716. bottom: 28 / 1816
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Micro",
  28723. height: math.unit(3, "inches")
  28724. },
  28725. {
  28726. name: "Normal",
  28727. height: math.unit(7 + 1 / 12, "feet"),
  28728. default: true
  28729. },
  28730. ]
  28731. ))
  28732. characterMakers.push(() => makeCharacter(
  28733. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28734. {
  28735. front: {
  28736. height: math.unit(165, "cm"),
  28737. weight: math.unit(140, "lb"),
  28738. name: "Front",
  28739. image: {
  28740. source: "./media/characters/sam-evans/front.svg",
  28741. extra: 3417 / 3230,
  28742. bottom: 41.3 / 3417
  28743. }
  28744. },
  28745. frontSixTails: {
  28746. height: math.unit(165, "cm"),
  28747. weight: math.unit(140, "lb"),
  28748. name: "Front-six-tails",
  28749. image: {
  28750. source: "./media/characters/sam-evans/front-six-tails.svg",
  28751. extra: 3417 / 3230,
  28752. bottom: 41.3 / 3417
  28753. }
  28754. },
  28755. back: {
  28756. height: math.unit(165, "cm"),
  28757. weight: math.unit(140, "lb"),
  28758. name: "Back",
  28759. image: {
  28760. source: "./media/characters/sam-evans/back.svg",
  28761. extra: 3227 / 3032,
  28762. bottom: 6.8 / 3234
  28763. }
  28764. },
  28765. face: {
  28766. height: math.unit(0.68, "feet"),
  28767. name: "Face",
  28768. image: {
  28769. source: "./media/characters/sam-evans/face.svg"
  28770. }
  28771. },
  28772. },
  28773. [
  28774. {
  28775. name: "Normal",
  28776. height: math.unit(165, "cm"),
  28777. default: true
  28778. },
  28779. {
  28780. name: "Macro",
  28781. height: math.unit(100, "meters")
  28782. },
  28783. {
  28784. name: "Macro+",
  28785. height: math.unit(800, "meters")
  28786. },
  28787. {
  28788. name: "Macro++",
  28789. height: math.unit(3, "km")
  28790. },
  28791. {
  28792. name: "Macro+++",
  28793. height: math.unit(30, "km")
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(10, "feet"),
  28802. weight: math.unit(750, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/juliet-a/front.svg",
  28806. extra: 1766 / 1720,
  28807. bottom: 43 / 1809
  28808. }
  28809. },
  28810. back: {
  28811. height: math.unit(10, "feet"),
  28812. weight: math.unit(750, "lb"),
  28813. name: "Back",
  28814. image: {
  28815. source: "./media/characters/juliet-a/back.svg",
  28816. extra: 1781 / 1734,
  28817. bottom: 35 / 1810,
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Normal",
  28824. height: math.unit(10, "feet"),
  28825. default: true
  28826. },
  28827. {
  28828. name: "Dragon Form",
  28829. height: math.unit(250, "feet")
  28830. },
  28831. {
  28832. name: "Macro",
  28833. height: math.unit(1000, "feet")
  28834. },
  28835. {
  28836. name: "Megamacro",
  28837. height: math.unit(10000, "feet")
  28838. }
  28839. ]
  28840. ))
  28841. characterMakers.push(() => makeCharacter(
  28842. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28843. {
  28844. regular: {
  28845. height: math.unit(7 + 3 / 12, "feet"),
  28846. weight: math.unit(260, "lb"),
  28847. name: "Regular",
  28848. image: {
  28849. source: "./media/characters/wild/regular.svg",
  28850. extra: 97.45 / 92,
  28851. bottom: 6.8 / 104.3
  28852. }
  28853. },
  28854. biggums: {
  28855. height: math.unit(8 + 6 / 12, "feet"),
  28856. weight: math.unit(425, "lb"),
  28857. name: "Biggums",
  28858. image: {
  28859. source: "./media/characters/wild/biggums.svg",
  28860. extra: 97.45 / 92,
  28861. bottom: 7.5 / 132.34
  28862. }
  28863. },
  28864. mawRegular: {
  28865. height: math.unit(1.24, "feet"),
  28866. name: "Maw (Regular)",
  28867. image: {
  28868. source: "./media/characters/wild/maw.svg"
  28869. }
  28870. },
  28871. mawBiggums: {
  28872. height: math.unit(1.47, "feet"),
  28873. name: "Maw (Biggums)",
  28874. image: {
  28875. source: "./media/characters/wild/maw.svg"
  28876. }
  28877. },
  28878. },
  28879. [
  28880. {
  28881. name: "Normal",
  28882. height: math.unit(7 + 3 / 12, "feet"),
  28883. default: true
  28884. },
  28885. ]
  28886. ))
  28887. characterMakers.push(() => makeCharacter(
  28888. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28889. {
  28890. front: {
  28891. height: math.unit(2.5, "meters"),
  28892. weight: math.unit(200, "kg"),
  28893. name: "Front",
  28894. image: {
  28895. source: "./media/characters/vidar/front.svg",
  28896. extra: 2994 / 2795,
  28897. bottom: 56 / 3061
  28898. }
  28899. },
  28900. back: {
  28901. height: math.unit(2.5, "meters"),
  28902. weight: math.unit(200, "kg"),
  28903. name: "Back",
  28904. image: {
  28905. source: "./media/characters/vidar/back.svg",
  28906. extra: 3131 / 2928,
  28907. bottom: 13.5 / 3141.5
  28908. }
  28909. },
  28910. feral: {
  28911. height: math.unit(2.5, "meters"),
  28912. weight: math.unit(2000, "kg"),
  28913. name: "Feral",
  28914. image: {
  28915. source: "./media/characters/vidar/feral.svg",
  28916. extra: 2790 / 1765,
  28917. bottom: 6 / 2796
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(2.5, "meters"),
  28925. default: true
  28926. },
  28927. {
  28928. name: "Macro",
  28929. height: math.unit(100, "meters")
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(5 + 9 / 12, "feet"),
  28938. weight: math.unit(120, "lb"),
  28939. name: "Front",
  28940. image: {
  28941. source: "./media/characters/ash/front.svg",
  28942. extra: 2189 / 1961,
  28943. bottom: 5.2 / 2194
  28944. }
  28945. },
  28946. },
  28947. [
  28948. {
  28949. name: "Normal",
  28950. height: math.unit(5 + 9 / 12, "feet"),
  28951. default: true
  28952. },
  28953. ]
  28954. ))
  28955. characterMakers.push(() => makeCharacter(
  28956. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28957. {
  28958. front: {
  28959. height: math.unit(9, "feet"),
  28960. weight: math.unit(10000, "lb"),
  28961. name: "Front",
  28962. image: {
  28963. source: "./media/characters/gygabite/front.svg",
  28964. bottom: 31.7 / 537.8,
  28965. extra: 505 / 370
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(9, "feet"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(12, "feet"),
  28982. weight: math.unit(4000, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/p0tat0/front.svg",
  28986. extra: 1065 / 921,
  28987. bottom: 55.7 / 1121.25
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(12, "feet"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29001. {
  29002. side: {
  29003. height: math.unit(6.5, "feet"),
  29004. weight: math.unit(800, "lb"),
  29005. name: "Side",
  29006. image: {
  29007. source: "./media/characters/dusk/side.svg",
  29008. extra: 615 / 373,
  29009. bottom: 53 / 664
  29010. }
  29011. },
  29012. sitting: {
  29013. height: math.unit(7, "feet"),
  29014. weight: math.unit(800, "lb"),
  29015. name: "Sitting",
  29016. image: {
  29017. source: "./media/characters/dusk/sitting.svg",
  29018. extra: 753 / 425,
  29019. bottom: 33 / 774
  29020. }
  29021. },
  29022. head: {
  29023. height: math.unit(6.1, "feet"),
  29024. name: "Head",
  29025. image: {
  29026. source: "./media/characters/dusk/head.svg"
  29027. }
  29028. },
  29029. },
  29030. [
  29031. {
  29032. name: "Normal",
  29033. height: math.unit(7, "feet"),
  29034. default: true
  29035. },
  29036. ]
  29037. ))
  29038. characterMakers.push(() => makeCharacter(
  29039. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29040. {
  29041. front: {
  29042. height: math.unit(15, "feet"),
  29043. weight: math.unit(7000, "lb"),
  29044. name: "Front",
  29045. image: {
  29046. source: "./media/characters/jay-direwolf/front.svg",
  29047. extra: 1810 / 1732,
  29048. bottom: 66 / 1892
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Normal",
  29055. height: math.unit(15, "feet"),
  29056. default: true
  29057. },
  29058. ]
  29059. ))
  29060. characterMakers.push(() => makeCharacter(
  29061. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29062. {
  29063. front: {
  29064. height: math.unit(4 + 9 / 12, "feet"),
  29065. weight: math.unit(130, "lb"),
  29066. name: "Front",
  29067. image: {
  29068. source: "./media/characters/anchovie/front.svg",
  29069. extra: 382 / 350,
  29070. bottom: 25 / 409
  29071. }
  29072. },
  29073. back: {
  29074. height: math.unit(4 + 9 / 12, "feet"),
  29075. weight: math.unit(130, "lb"),
  29076. name: "Back",
  29077. image: {
  29078. source: "./media/characters/anchovie/back.svg",
  29079. extra: 385 / 352,
  29080. bottom: 16.6 / 402
  29081. }
  29082. },
  29083. frontDressed: {
  29084. height: math.unit(4 + 9 / 12, "feet"),
  29085. weight: math.unit(130, "lb"),
  29086. name: "Front (Dressed)",
  29087. image: {
  29088. source: "./media/characters/anchovie/front-dressed.svg",
  29089. extra: 382 / 350,
  29090. bottom: 25 / 409
  29091. }
  29092. },
  29093. backDressed: {
  29094. height: math.unit(4 + 9 / 12, "feet"),
  29095. weight: math.unit(130, "lb"),
  29096. name: "Back (Dressed)",
  29097. image: {
  29098. source: "./media/characters/anchovie/back-dressed.svg",
  29099. extra: 385 / 352,
  29100. bottom: 16.6 / 402
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Micro",
  29107. height: math.unit(6.4, "inches")
  29108. },
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(4 + 9 / 12, "feet"),
  29112. default: true
  29113. },
  29114. ]
  29115. ))
  29116. characterMakers.push(() => makeCharacter(
  29117. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29118. {
  29119. front: {
  29120. height: math.unit(2, "meters"),
  29121. weight: math.unit(180, "lb"),
  29122. name: "Front",
  29123. image: {
  29124. source: "./media/characters/acidrenamon/front.svg",
  29125. extra: 987 / 890,
  29126. bottom: 22.8 / 1009
  29127. }
  29128. },
  29129. back: {
  29130. height: math.unit(2, "meters"),
  29131. weight: math.unit(180, "lb"),
  29132. name: "Back",
  29133. image: {
  29134. source: "./media/characters/acidrenamon/back.svg",
  29135. extra: 983 / 891,
  29136. bottom: 8.4 / 992
  29137. }
  29138. },
  29139. head: {
  29140. height: math.unit(1.92, "feet"),
  29141. name: "Head",
  29142. image: {
  29143. source: "./media/characters/acidrenamon/head.svg"
  29144. }
  29145. },
  29146. rump: {
  29147. height: math.unit(1.72, "feet"),
  29148. name: "Rump",
  29149. image: {
  29150. source: "./media/characters/acidrenamon/rump.svg"
  29151. }
  29152. },
  29153. tail: {
  29154. height: math.unit(4.2, "feet"),
  29155. name: "Tail",
  29156. image: {
  29157. source: "./media/characters/acidrenamon/tail.svg"
  29158. }
  29159. },
  29160. },
  29161. [
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(2, "meters"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "Minimacro",
  29169. height: math.unit(7, "meters")
  29170. },
  29171. {
  29172. name: "Macro",
  29173. height: math.unit(200, "meters")
  29174. },
  29175. {
  29176. name: "Gigamacro",
  29177. height: math.unit(0.2, "earths")
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29183. {
  29184. front: {
  29185. height: math.unit(152, "feet"),
  29186. name: "Front",
  29187. image: {
  29188. source: "./media/characters/kenzie-lee/front.svg",
  29189. extra: 1869/1774,
  29190. bottom: 128/1997
  29191. }
  29192. },
  29193. side: {
  29194. height: math.unit(86, "feet"),
  29195. name: "Side",
  29196. image: {
  29197. source: "./media/characters/kenzie-lee/side.svg",
  29198. extra: 930/815,
  29199. bottom: 177/1107
  29200. }
  29201. },
  29202. paw: {
  29203. height: math.unit(15, "feet"),
  29204. name: "Paw",
  29205. image: {
  29206. source: "./media/characters/kenzie-lee/paw.svg"
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Kenzie Flea",
  29213. height: math.unit(2, "mm"),
  29214. default: true
  29215. },
  29216. {
  29217. name: "Micro",
  29218. height: math.unit(2, "inches")
  29219. },
  29220. {
  29221. name: "Normal",
  29222. height: math.unit(152, "feet")
  29223. },
  29224. {
  29225. name: "Megamacro",
  29226. height: math.unit(7, "miles")
  29227. },
  29228. {
  29229. name: "Gigamacro",
  29230. height: math.unit(8000, "miles")
  29231. },
  29232. ]
  29233. ))
  29234. characterMakers.push(() => makeCharacter(
  29235. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29236. {
  29237. front: {
  29238. height: math.unit(6, "feet"),
  29239. name: "Front",
  29240. image: {
  29241. source: "./media/characters/withers/front.svg",
  29242. extra: 1935/1760,
  29243. bottom: 72/2007
  29244. }
  29245. },
  29246. back: {
  29247. height: math.unit(6, "feet"),
  29248. name: "Back",
  29249. image: {
  29250. source: "./media/characters/withers/back.svg",
  29251. extra: 1944/1792,
  29252. bottom: 12/1956
  29253. }
  29254. },
  29255. dressed: {
  29256. height: math.unit(6, "feet"),
  29257. name: "Dressed",
  29258. image: {
  29259. source: "./media/characters/withers/dressed.svg",
  29260. extra: 1937/1765,
  29261. bottom: 73/2010
  29262. }
  29263. },
  29264. phase1: {
  29265. height: math.unit(1.1, "feet"),
  29266. name: "Phase 1",
  29267. image: {
  29268. source: "./media/characters/withers/phase-1.svg",
  29269. extra: 1885/1232,
  29270. bottom: 0/1885
  29271. }
  29272. },
  29273. phase2: {
  29274. height: math.unit(1.05, "feet"),
  29275. name: "Phase 2",
  29276. image: {
  29277. source: "./media/characters/withers/phase-2.svg",
  29278. extra: 1792/1090,
  29279. bottom: 0/1792
  29280. }
  29281. },
  29282. partyWipe: {
  29283. height: math.unit(1.1, "feet"),
  29284. name: "Party Wipe",
  29285. image: {
  29286. source: "./media/characters/withers/party-wipe.svg",
  29287. extra: 1864/1207,
  29288. bottom: 0/1864
  29289. }
  29290. },
  29291. },
  29292. [
  29293. {
  29294. name: "Macro",
  29295. height: math.unit(167, "feet"),
  29296. default: true
  29297. },
  29298. {
  29299. name: "Megamacro",
  29300. height: math.unit(15, "miles")
  29301. }
  29302. ]
  29303. ))
  29304. characterMakers.push(() => makeCharacter(
  29305. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29306. {
  29307. front: {
  29308. height: math.unit(6 + 7 / 12, "feet"),
  29309. weight: math.unit(250, "lb"),
  29310. name: "Front",
  29311. image: {
  29312. source: "./media/characters/nemoskii/front.svg",
  29313. extra: 2270 / 1734,
  29314. bottom: 86 / 2354
  29315. }
  29316. },
  29317. back: {
  29318. height: math.unit(6 + 7 / 12, "feet"),
  29319. weight: math.unit(250, "lb"),
  29320. name: "Back",
  29321. image: {
  29322. source: "./media/characters/nemoskii/back.svg",
  29323. extra: 1845 / 1788,
  29324. bottom: 10.5 / 1852
  29325. }
  29326. },
  29327. head: {
  29328. height: math.unit(1.31, "feet"),
  29329. name: "Head",
  29330. image: {
  29331. source: "./media/characters/nemoskii/head.svg"
  29332. }
  29333. },
  29334. },
  29335. [
  29336. {
  29337. name: "Micro",
  29338. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29339. },
  29340. {
  29341. name: "Normal",
  29342. height: math.unit(6 + 7 / 12, "feet"),
  29343. default: true
  29344. },
  29345. {
  29346. name: "Macro",
  29347. height: math.unit((6 + 7 / 12) * 150, "feet")
  29348. },
  29349. {
  29350. name: "Macro+",
  29351. height: math.unit((6 + 7 / 12) * 500, "feet")
  29352. },
  29353. {
  29354. name: "Megamacro",
  29355. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29356. },
  29357. ]
  29358. ))
  29359. characterMakers.push(() => makeCharacter(
  29360. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29361. {
  29362. front: {
  29363. height: math.unit(1, "mile"),
  29364. weight: math.unit(265261.9, "lb"),
  29365. name: "Front",
  29366. image: {
  29367. source: "./media/characters/shui/front.svg",
  29368. extra: 1633 / 1564,
  29369. bottom: 91.5 / 1726
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Macro",
  29376. height: math.unit(1, "mile"),
  29377. default: true
  29378. },
  29379. ]
  29380. ))
  29381. characterMakers.push(() => makeCharacter(
  29382. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29383. {
  29384. front: {
  29385. height: math.unit(12 + 6 / 12, "feet"),
  29386. weight: math.unit(1342, "lb"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/arokh-takakura/front.svg",
  29390. extra: 1089 / 1043,
  29391. bottom: 77.4 / 1176.7
  29392. }
  29393. },
  29394. back: {
  29395. height: math.unit(12 + 6 / 12, "feet"),
  29396. weight: math.unit(1342, "lb"),
  29397. name: "Back",
  29398. image: {
  29399. source: "./media/characters/arokh-takakura/back.svg",
  29400. extra: 1046 / 1019,
  29401. bottom: 102 / 1150
  29402. }
  29403. },
  29404. },
  29405. [
  29406. {
  29407. name: "Big",
  29408. height: math.unit(12 + 6 / 12, "feet"),
  29409. default: true
  29410. },
  29411. ]
  29412. ))
  29413. characterMakers.push(() => makeCharacter(
  29414. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29415. {
  29416. front: {
  29417. height: math.unit(5 + 6 / 12, "feet"),
  29418. weight: math.unit(150, "lb"),
  29419. name: "Front",
  29420. image: {
  29421. source: "./media/characters/theo/front.svg",
  29422. extra: 1184 / 1131,
  29423. bottom: 7.4 / 1191
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Micro",
  29430. height: math.unit(5, "inches")
  29431. },
  29432. {
  29433. name: "Normal",
  29434. height: math.unit(5 + 6 / 12, "feet"),
  29435. default: true
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(5 + 9 / 12, "feet"),
  29444. weight: math.unit(130, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/cecelia-swift/front.svg",
  29448. extra: 502 / 484,
  29449. bottom: 23 / 523
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(5 + 9 / 12, "feet"),
  29454. weight: math.unit(130, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/cecelia-swift/back.svg",
  29458. extra: 499 / 485,
  29459. bottom: 12 / 511
  29460. }
  29461. },
  29462. head: {
  29463. height: math.unit(0.90, "feet"),
  29464. name: "Head",
  29465. image: {
  29466. source: "./media/characters/cecelia-swift/head.svg"
  29467. }
  29468. },
  29469. rump: {
  29470. height: math.unit(1.75, "feet"),
  29471. name: "Rump",
  29472. image: {
  29473. source: "./media/characters/cecelia-swift/rump.svg"
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(5 + 9 / 12, "feet"),
  29481. default: true
  29482. },
  29483. {
  29484. name: "Big",
  29485. height: math.unit(50, "feet")
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(100, "feet")
  29490. },
  29491. {
  29492. name: "Macro+",
  29493. height: math.unit(500, "feet")
  29494. },
  29495. {
  29496. name: "Macro++",
  29497. height: math.unit(1000, "feet")
  29498. },
  29499. ]
  29500. ))
  29501. characterMakers.push(() => makeCharacter(
  29502. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29503. {
  29504. front: {
  29505. height: math.unit(6, "feet"),
  29506. weight: math.unit(150, "lb"),
  29507. name: "Front",
  29508. image: {
  29509. source: "./media/characters/kaunan/front.svg",
  29510. extra: 2890 / 2523,
  29511. bottom: 49 / 2939
  29512. }
  29513. },
  29514. },
  29515. [
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(150, "feet"),
  29519. default: true
  29520. },
  29521. ]
  29522. ))
  29523. characterMakers.push(() => makeCharacter(
  29524. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29525. {
  29526. dressed: {
  29527. height: math.unit(175, "cm"),
  29528. weight: math.unit(60, "kg"),
  29529. name: "Dressed",
  29530. image: {
  29531. source: "./media/characters/fei/dressed.svg",
  29532. extra: 1402/1278,
  29533. bottom: 27/1429
  29534. }
  29535. },
  29536. nude: {
  29537. height: math.unit(175, "cm"),
  29538. weight: math.unit(60, "kg"),
  29539. name: "Nude",
  29540. image: {
  29541. source: "./media/characters/fei/nude.svg",
  29542. extra: 1402/1278,
  29543. bottom: 27/1429
  29544. }
  29545. },
  29546. heels: {
  29547. height: math.unit(0.466, "feet"),
  29548. name: "Heels",
  29549. image: {
  29550. source: "./media/characters/fei/heels.svg",
  29551. extra: 156/152,
  29552. bottom: 28/184
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Mortal",
  29559. height: math.unit(175, "cm")
  29560. },
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(3500, "m")
  29564. },
  29565. {
  29566. name: "Stroll",
  29567. height: math.unit(18.4, "km"),
  29568. default: true
  29569. },
  29570. {
  29571. name: "Showoff",
  29572. height: math.unit(175, "km")
  29573. },
  29574. ]
  29575. ))
  29576. characterMakers.push(() => makeCharacter(
  29577. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29578. {
  29579. front: {
  29580. height: math.unit(7, "feet"),
  29581. weight: math.unit(1000, "kg"),
  29582. name: "Front",
  29583. image: {
  29584. source: "./media/characters/edrax/front.svg",
  29585. extra: 2838 / 2550,
  29586. bottom: 130 / 2968
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Small",
  29593. height: math.unit(7, "feet")
  29594. },
  29595. {
  29596. name: "Normal",
  29597. height: math.unit(1500, "meters")
  29598. },
  29599. {
  29600. name: "Mega",
  29601. height: math.unit(12000000, "km"),
  29602. default: true
  29603. },
  29604. {
  29605. name: "Megamacro",
  29606. height: math.unit(10600000, "lightyears")
  29607. },
  29608. {
  29609. name: "Hypermacro",
  29610. height: math.unit(256, "yottameters")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(10, "feet"),
  29619. weight: math.unit(750, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/clove/front.svg",
  29623. extra: 1918/1751,
  29624. bottom: 52/1970
  29625. }
  29626. },
  29627. back: {
  29628. height: math.unit(10, "feet"),
  29629. weight: math.unit(750, "lb"),
  29630. name: "Back",
  29631. image: {
  29632. source: "./media/characters/clove/back.svg",
  29633. extra: 1912/1747,
  29634. bottom: 50/1962
  29635. }
  29636. },
  29637. },
  29638. [
  29639. {
  29640. name: "Normal",
  29641. height: math.unit(10, "feet"),
  29642. default: true
  29643. },
  29644. ]
  29645. ))
  29646. characterMakers.push(() => makeCharacter(
  29647. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29648. {
  29649. front: {
  29650. height: math.unit(4, "feet"),
  29651. weight: math.unit(50, "lb"),
  29652. name: "Front",
  29653. image: {
  29654. source: "./media/characters/alex-rabbit/front.svg",
  29655. extra: 507 / 458,
  29656. bottom: 18.5 / 527
  29657. }
  29658. },
  29659. back: {
  29660. height: math.unit(4, "feet"),
  29661. weight: math.unit(50, "lb"),
  29662. name: "Back",
  29663. image: {
  29664. source: "./media/characters/alex-rabbit/back.svg",
  29665. extra: 502 / 460,
  29666. bottom: 18.9 / 521
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Normal",
  29673. height: math.unit(4, "feet"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(1 + 3 / 12, "feet"),
  29683. weight: math.unit(80, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/zander-rose/front.svg",
  29687. extra: 916 / 797,
  29688. bottom: 17 / 933
  29689. }
  29690. },
  29691. back: {
  29692. height: math.unit(1 + 3 / 12, "feet"),
  29693. weight: math.unit(80, "lb"),
  29694. name: "Back",
  29695. image: {
  29696. source: "./media/characters/zander-rose/back.svg",
  29697. extra: 903 / 779,
  29698. bottom: 31 / 934
  29699. }
  29700. },
  29701. },
  29702. [
  29703. {
  29704. name: "Normal",
  29705. height: math.unit(1 + 3 / 12, "feet"),
  29706. default: true
  29707. },
  29708. ]
  29709. ))
  29710. characterMakers.push(() => makeCharacter(
  29711. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29712. {
  29713. anthro: {
  29714. height: math.unit(6, "feet"),
  29715. weight: math.unit(150, "lb"),
  29716. name: "Anthro",
  29717. image: {
  29718. source: "./media/characters/razz/anthro.svg",
  29719. extra: 1437 / 1343,
  29720. bottom: 48 / 1485
  29721. }
  29722. },
  29723. feral: {
  29724. height: math.unit(6, "feet"),
  29725. weight: math.unit(150, "lb"),
  29726. name: "Feral",
  29727. image: {
  29728. source: "./media/characters/razz/feral.svg",
  29729. extra: 2569 / 1385,
  29730. bottom: 95 / 2664
  29731. }
  29732. },
  29733. },
  29734. [
  29735. {
  29736. name: "Normal",
  29737. height: math.unit(6, "feet"),
  29738. default: true
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(9 + 4 / 12, "feet"),
  29747. weight: math.unit(500, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/morrigan/front.svg",
  29751. extra: 2707 / 2579,
  29752. bottom: 156 / 2863
  29753. }
  29754. },
  29755. },
  29756. [
  29757. {
  29758. name: "Normal",
  29759. height: math.unit(9 + 4 / 12, "feet"),
  29760. default: true
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(5, "stories"),
  29769. weight: math.unit(4000, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/jenene/front.svg",
  29773. extra: 1780 / 1710,
  29774. bottom: 57 / 1837
  29775. }
  29776. },
  29777. },
  29778. [
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(5, "stories"),
  29782. default: true
  29783. },
  29784. ]
  29785. ))
  29786. characterMakers.push(() => makeCharacter(
  29787. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29788. {
  29789. taurSfw: {
  29790. height: math.unit(10, "meters"),
  29791. weight: math.unit(17500, "kg"),
  29792. name: "Taur",
  29793. image: {
  29794. source: "./media/characters/faey/taur-sfw.svg",
  29795. extra: 1200 / 968,
  29796. bottom: 41 / 1241
  29797. }
  29798. },
  29799. chestmaw: {
  29800. height: math.unit(2.01, "meters"),
  29801. name: "Chestmaw",
  29802. image: {
  29803. source: "./media/characters/faey/chestmaw.svg"
  29804. }
  29805. },
  29806. foot: {
  29807. height: math.unit(2.43, "meters"),
  29808. name: "Foot",
  29809. image: {
  29810. source: "./media/characters/faey/foot.svg"
  29811. }
  29812. },
  29813. jaws: {
  29814. height: math.unit(1.66, "meters"),
  29815. name: "Jaws",
  29816. image: {
  29817. source: "./media/characters/faey/jaws.svg"
  29818. }
  29819. },
  29820. tongues: {
  29821. height: math.unit(2.01, "meters"),
  29822. name: "Tongues",
  29823. image: {
  29824. source: "./media/characters/faey/tongues.svg"
  29825. }
  29826. },
  29827. },
  29828. [
  29829. {
  29830. name: "Small",
  29831. height: math.unit(10, "meters"),
  29832. default: true
  29833. },
  29834. {
  29835. name: "Big",
  29836. height: math.unit(500000, "km")
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(7, "feet"),
  29845. weight: math.unit(275, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/roku/front.svg",
  29849. extra: 903 / 878,
  29850. bottom: 37 / 940
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Normal",
  29857. height: math.unit(7, "feet"),
  29858. default: true
  29859. },
  29860. {
  29861. name: "Macro",
  29862. height: math.unit(500, "feet")
  29863. },
  29864. {
  29865. name: "Megamacro",
  29866. height: math.unit(200, "miles")
  29867. },
  29868. ]
  29869. ))
  29870. characterMakers.push(() => makeCharacter(
  29871. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29872. {
  29873. front: {
  29874. height: math.unit(6 + 2 / 12, "feet"),
  29875. weight: math.unit(150, "lb"),
  29876. name: "Front",
  29877. image: {
  29878. source: "./media/characters/lira/front.svg",
  29879. extra: 1727 / 1605,
  29880. bottom: 26 / 1753
  29881. }
  29882. },
  29883. back: {
  29884. height: math.unit(6 + 2 / 12, "feet"),
  29885. weight: math.unit(150, "lb"),
  29886. name: "Back",
  29887. image: {
  29888. source: "./media/characters/lira/back.svg",
  29889. extra: 1713/1621,
  29890. bottom: 20/1733
  29891. }
  29892. },
  29893. hand: {
  29894. height: math.unit(0.75, "feet"),
  29895. name: "Hand",
  29896. image: {
  29897. source: "./media/characters/lira/hand.svg"
  29898. }
  29899. },
  29900. maw: {
  29901. height: math.unit(0.65, "feet"),
  29902. name: "Maw",
  29903. image: {
  29904. source: "./media/characters/lira/maw.svg"
  29905. }
  29906. },
  29907. pawDigi: {
  29908. height: math.unit(1.6, "feet"),
  29909. name: "Paw Digi",
  29910. image: {
  29911. source: "./media/characters/lira/paw-digi.svg"
  29912. }
  29913. },
  29914. pawPlanti: {
  29915. height: math.unit(1.4, "feet"),
  29916. name: "Paw Planti",
  29917. image: {
  29918. source: "./media/characters/lira/paw-planti.svg"
  29919. }
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Normal",
  29925. height: math.unit(6 + 2 / 12, "feet"),
  29926. default: true
  29927. },
  29928. {
  29929. name: "Macro",
  29930. height: math.unit(100, "feet")
  29931. },
  29932. {
  29933. name: "Macro²",
  29934. height: math.unit(1600, "feet")
  29935. },
  29936. {
  29937. name: "Planetary",
  29938. height: math.unit(20, "earths")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(6, "feet"),
  29947. weight: math.unit(150, "lb"),
  29948. name: "Front",
  29949. image: {
  29950. source: "./media/characters/hadjet/front.svg",
  29951. extra: 1480 / 1346,
  29952. bottom: 26 / 1506
  29953. }
  29954. },
  29955. frontNsfw: {
  29956. height: math.unit(6, "feet"),
  29957. weight: math.unit(150, "lb"),
  29958. name: "Front (NSFW)",
  29959. image: {
  29960. source: "./media/characters/hadjet/front-nsfw.svg",
  29961. extra: 1440 / 1358,
  29962. bottom: 52 / 1492
  29963. }
  29964. },
  29965. },
  29966. [
  29967. {
  29968. name: "Macro",
  29969. height: math.unit(10, "stories"),
  29970. default: true
  29971. },
  29972. {
  29973. name: "Megamacro",
  29974. height: math.unit(1.5, "miles")
  29975. },
  29976. {
  29977. name: "Megamacro+",
  29978. height: math.unit(5, "miles")
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29984. {
  29985. side: {
  29986. height: math.unit(106, "feet"),
  29987. weight: math.unit(500, "tonnes"),
  29988. name: "Side",
  29989. image: {
  29990. source: "./media/characters/kodran/side.svg",
  29991. extra: 553 / 480,
  29992. bottom: 33 / 586
  29993. }
  29994. },
  29995. front: {
  29996. height: math.unit(132, "feet"),
  29997. weight: math.unit(500, "tonnes"),
  29998. name: "Front",
  29999. image: {
  30000. source: "./media/characters/kodran/front.svg",
  30001. extra: 667 / 643,
  30002. bottom: 42 / 709
  30003. }
  30004. },
  30005. flying: {
  30006. height: math.unit(350, "feet"),
  30007. weight: math.unit(500, "tonnes"),
  30008. name: "Flying",
  30009. image: {
  30010. source: "./media/characters/kodran/flying.svg"
  30011. }
  30012. },
  30013. foot: {
  30014. height: math.unit(33, "feet"),
  30015. name: "Foot",
  30016. image: {
  30017. source: "./media/characters/kodran/foot.svg"
  30018. }
  30019. },
  30020. footFront: {
  30021. height: math.unit(19, "feet"),
  30022. name: "Foot (Front)",
  30023. image: {
  30024. source: "./media/characters/kodran/foot-front.svg",
  30025. extra: 261 / 261,
  30026. bottom: 91 / 352
  30027. }
  30028. },
  30029. headFront: {
  30030. height: math.unit(53, "feet"),
  30031. name: "Head (Front)",
  30032. image: {
  30033. source: "./media/characters/kodran/head-front.svg"
  30034. }
  30035. },
  30036. headSide: {
  30037. height: math.unit(65, "feet"),
  30038. name: "Head (Side)",
  30039. image: {
  30040. source: "./media/characters/kodran/head-side.svg"
  30041. }
  30042. },
  30043. throat: {
  30044. height: math.unit(79, "feet"),
  30045. name: "Throat",
  30046. image: {
  30047. source: "./media/characters/kodran/throat.svg"
  30048. }
  30049. },
  30050. },
  30051. [
  30052. {
  30053. name: "Large",
  30054. height: math.unit(106, "feet"),
  30055. default: true
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30061. {
  30062. side: {
  30063. height: math.unit(11, "feet"),
  30064. weight: math.unit(150, "lb"),
  30065. name: "Side",
  30066. image: {
  30067. source: "./media/characters/pyxaron/side.svg",
  30068. extra: 305 / 195,
  30069. bottom: 17 / 322
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(11, "feet"),
  30077. default: true
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(6, "feet"),
  30086. weight: math.unit(150, "lb"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/meep/front.svg",
  30090. extra: 88 / 80,
  30091. bottom: 6 / 94
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Fun Sized",
  30098. height: math.unit(2, "inches"),
  30099. default: true
  30100. },
  30101. {
  30102. name: "Friend Sized",
  30103. height: math.unit(8, "inches")
  30104. },
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(15, "feet"),
  30112. weight: math.unit(2500, "lb"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/holly-rabbit/front.svg",
  30116. extra: 1433 / 1233,
  30117. bottom: 125 / 1558
  30118. }
  30119. },
  30120. dick: {
  30121. height: math.unit(4.6, "feet"),
  30122. name: "Dick",
  30123. image: {
  30124. source: "./media/characters/holly-rabbit/dick.svg"
  30125. }
  30126. },
  30127. },
  30128. [
  30129. {
  30130. name: "Normal",
  30131. height: math.unit(15, "feet"),
  30132. default: true
  30133. },
  30134. {
  30135. name: "Macro",
  30136. height: math.unit(250, "feet")
  30137. },
  30138. {
  30139. name: "Macro+",
  30140. height: math.unit(2500, "feet")
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(3.02, "meters"),
  30149. weight: math.unit(500, "kg"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/drena/front.svg",
  30153. extra: 282 / 243,
  30154. bottom: 8 / 290
  30155. }
  30156. },
  30157. side: {
  30158. height: math.unit(3.02, "meters"),
  30159. weight: math.unit(500, "kg"),
  30160. name: "Side",
  30161. image: {
  30162. source: "./media/characters/drena/side.svg",
  30163. extra: 280 / 245,
  30164. bottom: 10 / 290
  30165. }
  30166. },
  30167. back: {
  30168. height: math.unit(3.02, "meters"),
  30169. weight: math.unit(500, "kg"),
  30170. name: "Back",
  30171. image: {
  30172. source: "./media/characters/drena/back.svg",
  30173. extra: 278 / 243,
  30174. bottom: 2 / 280
  30175. }
  30176. },
  30177. foot: {
  30178. height: math.unit(0.75, "meters"),
  30179. name: "Foot",
  30180. image: {
  30181. source: "./media/characters/drena/foot.svg"
  30182. }
  30183. },
  30184. maw: {
  30185. height: math.unit(0.82, "meters"),
  30186. name: "Maw",
  30187. image: {
  30188. source: "./media/characters/drena/maw.svg"
  30189. }
  30190. },
  30191. eating: {
  30192. height: math.unit(0.75, "meters"),
  30193. name: "Eating",
  30194. image: {
  30195. source: "./media/characters/drena/eating.svg"
  30196. }
  30197. },
  30198. rump: {
  30199. height: math.unit(0.93, "meters"),
  30200. name: "Rump",
  30201. image: {
  30202. source: "./media/characters/drena/rump.svg"
  30203. }
  30204. },
  30205. },
  30206. [
  30207. {
  30208. name: "Normal",
  30209. height: math.unit(3.02, "meters"),
  30210. default: true
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(6 + 4 / 12, "feet"),
  30219. weight: math.unit(250, "lb"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/remmyzilla/front.svg",
  30223. extra: 4033 / 3588,
  30224. bottom: 123 / 4156
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(6 + 4 / 12, "feet"),
  30229. weight: math.unit(250, "lb"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/remmyzilla/back.svg",
  30233. extra: 2687 / 2555,
  30234. bottom: 48 / 2735
  30235. }
  30236. },
  30237. paw: {
  30238. height: math.unit(1.73, "feet"),
  30239. name: "Paw",
  30240. image: {
  30241. source: "./media/characters/remmyzilla/paw.svg"
  30242. },
  30243. extraAttributes: {
  30244. "toeSize": {
  30245. name: "Toe Size",
  30246. power: 2,
  30247. type: "area",
  30248. base: math.unit(0.0035, "m^2")
  30249. },
  30250. "padSize": {
  30251. name: "Pad Size",
  30252. power: 2,
  30253. type: "area",
  30254. base: math.unit(0.015, "m^2")
  30255. },
  30256. "pawsize": {
  30257. name: "Paw Size",
  30258. power: 2,
  30259. type: "area",
  30260. base: math.unit(0.072, "m^2")
  30261. },
  30262. }
  30263. },
  30264. maw: {
  30265. height: math.unit(1.73, "feet"),
  30266. name: "Maw",
  30267. image: {
  30268. source: "./media/characters/remmyzilla/maw.svg"
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(6 + 4 / 12, "feet")
  30276. },
  30277. {
  30278. name: "Minimacro",
  30279. height: math.unit(12 + 8 / 12, "feet")
  30280. },
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(640, "feet"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Megamacro",
  30288. height: math.unit(6400, "feet")
  30289. },
  30290. {
  30291. name: "Gigamacro",
  30292. height: math.unit(64000, "miles")
  30293. },
  30294. ]
  30295. ))
  30296. characterMakers.push(() => makeCharacter(
  30297. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30298. {
  30299. front: {
  30300. height: math.unit(2.5, "meters"),
  30301. weight: math.unit(300, "lb"),
  30302. name: "Front",
  30303. image: {
  30304. source: "./media/characters/lawrence/front.svg",
  30305. extra: 357 / 335,
  30306. bottom: 30 / 387
  30307. }
  30308. },
  30309. back: {
  30310. height: math.unit(2.5, "meters"),
  30311. weight: math.unit(300, "lb"),
  30312. name: "Back",
  30313. image: {
  30314. source: "./media/characters/lawrence/back.svg",
  30315. extra: 357 / 338,
  30316. bottom: 16 / 373
  30317. }
  30318. },
  30319. head: {
  30320. height: math.unit(0.9, "meter"),
  30321. name: "Head",
  30322. image: {
  30323. source: "./media/characters/lawrence/head.svg"
  30324. }
  30325. },
  30326. maw: {
  30327. height: math.unit(0.7, "meter"),
  30328. name: "Maw",
  30329. image: {
  30330. source: "./media/characters/lawrence/maw.svg"
  30331. }
  30332. },
  30333. footBottom: {
  30334. height: math.unit(0.5, "meter"),
  30335. name: "Foot (Bottom)",
  30336. image: {
  30337. source: "./media/characters/lawrence/foot-bottom.svg"
  30338. }
  30339. },
  30340. footTop: {
  30341. height: math.unit(0.5, "meter"),
  30342. name: "Foot (Top)",
  30343. image: {
  30344. source: "./media/characters/lawrence/foot-top.svg"
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(2.5, "meters"),
  30352. default: true
  30353. },
  30354. {
  30355. name: "Macro",
  30356. height: math.unit(95, "meters")
  30357. },
  30358. {
  30359. name: "Megamacro",
  30360. height: math.unit(150, "km")
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30366. {
  30367. front: {
  30368. height: math.unit(4.2, "meters"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/sydney/front.svg",
  30372. extra: 1323 / 1277,
  30373. bottom: 111 / 1434
  30374. }
  30375. },
  30376. },
  30377. [
  30378. {
  30379. name: "Normal",
  30380. height: math.unit(4.2, "meters"),
  30381. default: true
  30382. },
  30383. ]
  30384. ))
  30385. characterMakers.push(() => makeCharacter(
  30386. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30387. {
  30388. back: {
  30389. height: math.unit(201, "feet"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/jessica/back.svg",
  30393. extra: 273 / 259,
  30394. bottom: 7 / 280
  30395. }
  30396. },
  30397. },
  30398. [
  30399. {
  30400. name: "Normal",
  30401. height: math.unit(201, "feet"),
  30402. default: true
  30403. },
  30404. {
  30405. name: "Megamacro",
  30406. height: math.unit(8, "miles")
  30407. },
  30408. ]
  30409. ))
  30410. characterMakers.push(() => makeCharacter(
  30411. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30412. {
  30413. side: {
  30414. height: math.unit(5.6, "m"),
  30415. weight: math.unit(8000, "kg"),
  30416. name: "Side",
  30417. image: {
  30418. source: "./media/characters/victoria/side.svg",
  30419. extra: 1542/1229,
  30420. bottom: 124/1666
  30421. }
  30422. },
  30423. maw: {
  30424. height: math.unit(7.14, "feet"),
  30425. name: "Maw",
  30426. image: {
  30427. source: "./media/characters/victoria/maw.svg"
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(5.6, "m"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30441. {
  30442. front: {
  30443. height: math.unit(5 + 6 / 12, "feet"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/cat/front.svg",
  30447. extra: 1449/1295,
  30448. bottom: 34/1483
  30449. },
  30450. form: "cat",
  30451. default: true
  30452. },
  30453. back: {
  30454. height: math.unit(5 + 6 / 12, "feet"),
  30455. name: "Back",
  30456. image: {
  30457. source: "./media/characters/cat/back.svg",
  30458. extra: 1466/1301,
  30459. bottom: 19/1485
  30460. },
  30461. form: "cat"
  30462. },
  30463. taur: {
  30464. height: math.unit(7, "feet"),
  30465. name: "Taur",
  30466. image: {
  30467. source: "./media/characters/cat/taur.svg",
  30468. extra: 1389/1233,
  30469. bottom: 83/1472
  30470. },
  30471. form: "taur",
  30472. default: true
  30473. },
  30474. lucarioFront: {
  30475. height: math.unit(4, "feet"),
  30476. name: "Lucario (Front)",
  30477. image: {
  30478. source: "./media/characters/cat/lucario-front.svg",
  30479. extra: 1149/1019,
  30480. bottom: 84/1233
  30481. },
  30482. form: "lucario",
  30483. default: true
  30484. },
  30485. lucarioBack: {
  30486. height: math.unit(4, "feet"),
  30487. name: "Lucario (Back)",
  30488. image: {
  30489. source: "./media/characters/cat/lucario-back.svg",
  30490. extra: 1190/1059,
  30491. bottom: 33/1223
  30492. },
  30493. form: "lucario"
  30494. },
  30495. megaLucario: {
  30496. height: math.unit(4, "feet"),
  30497. name: "Mega Lucario",
  30498. image: {
  30499. source: "./media/characters/cat/mega-lucario.svg",
  30500. extra: 1515 / 1319,
  30501. bottom: 63 / 1578
  30502. },
  30503. form: "lucario"
  30504. },
  30505. nickit: {
  30506. height: math.unit(2, "feet"),
  30507. name: "Nickit",
  30508. image: {
  30509. source: "./media/characters/cat/nickit.svg",
  30510. extra: 1980 / 1585,
  30511. bottom: 102 / 2082
  30512. },
  30513. form: "nickit",
  30514. default: true
  30515. },
  30516. lopunnyFront: {
  30517. height: math.unit(5, "feet"),
  30518. name: "Lopunny (Front)",
  30519. image: {
  30520. source: "./media/characters/cat/lopunny-front.svg",
  30521. extra: 1782 / 1469,
  30522. bottom: 38 / 1820
  30523. },
  30524. form: "lopunny",
  30525. default: true
  30526. },
  30527. lopunnyBack: {
  30528. height: math.unit(5, "feet"),
  30529. name: "Lopunny (Back)",
  30530. image: {
  30531. source: "./media/characters/cat/lopunny-back.svg",
  30532. extra: 1660 / 1490,
  30533. bottom: 25 / 1685
  30534. },
  30535. form: "lopunny"
  30536. },
  30537. },
  30538. [
  30539. {
  30540. name: "Really small",
  30541. height: math.unit(1, "nm")
  30542. },
  30543. {
  30544. name: "Micro",
  30545. height: math.unit(5, "inches")
  30546. },
  30547. {
  30548. name: "Normal",
  30549. height: math.unit(5 + 6 / 12, "feet"),
  30550. default: true
  30551. },
  30552. {
  30553. name: "Macro",
  30554. height: math.unit(50, "feet")
  30555. },
  30556. {
  30557. name: "Macro+",
  30558. height: math.unit(150, "feet")
  30559. },
  30560. {
  30561. name: "Megamacro",
  30562. height: math.unit(100, "miles")
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(63.4, "meters"),
  30571. weight: math.unit(3.28349e+6, "kilograms"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/kirina-violet/front.svg",
  30575. extra: 2812 / 2725,
  30576. bottom: 0 / 2812
  30577. }
  30578. },
  30579. back: {
  30580. height: math.unit(63.4, "meters"),
  30581. weight: math.unit(3.28349e+6, "kilograms"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/kirina-violet/back.svg",
  30585. extra: 2812 / 2725,
  30586. bottom: 0 / 2812
  30587. }
  30588. },
  30589. mouth: {
  30590. height: math.unit(4.35, "meters"),
  30591. name: "Mouth",
  30592. image: {
  30593. source: "./media/characters/kirina-violet/mouth.svg"
  30594. }
  30595. },
  30596. paw: {
  30597. height: math.unit(5.6, "meters"),
  30598. name: "Paw",
  30599. image: {
  30600. source: "./media/characters/kirina-violet/paw.svg"
  30601. }
  30602. },
  30603. tail: {
  30604. height: math.unit(18, "meters"),
  30605. name: "Tail",
  30606. image: {
  30607. source: "./media/characters/kirina-violet/tail.svg"
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Macro",
  30614. height: math.unit(63.4, "meters"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(75, "feet"),
  30624. name: "Front",
  30625. image: {
  30626. source: "./media/characters/cat-gigachu/front.svg",
  30627. extra: 1239/1027,
  30628. bottom: 32/1271
  30629. }
  30630. },
  30631. back: {
  30632. height: math.unit(75, "feet"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/cat-gigachu/back.svg",
  30636. extra: 1229/1030,
  30637. bottom: 9/1238
  30638. }
  30639. },
  30640. },
  30641. [
  30642. {
  30643. name: "Dynamax",
  30644. height: math.unit(75, "feet"),
  30645. default: true
  30646. },
  30647. ]
  30648. ))
  30649. characterMakers.push(() => makeCharacter(
  30650. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30651. {
  30652. front: {
  30653. height: math.unit(6, "feet"),
  30654. weight: math.unit(150, "lb"),
  30655. name: "Front",
  30656. image: {
  30657. source: "./media/characters/sfaiyan/front.svg",
  30658. extra: 999 / 978,
  30659. bottom: 5 / 1004
  30660. }
  30661. },
  30662. },
  30663. [
  30664. {
  30665. name: "Normal",
  30666. height: math.unit(1.82, "meters")
  30667. },
  30668. {
  30669. name: "Giant",
  30670. height: math.unit(2.27, "km"),
  30671. default: true
  30672. },
  30673. ]
  30674. ))
  30675. characterMakers.push(() => makeCharacter(
  30676. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30677. {
  30678. front: {
  30679. height: math.unit(179, "cm"),
  30680. weight: math.unit(100, "kg"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/raunehkeli/front.svg",
  30684. extra: 1934 / 1926,
  30685. bottom: 0 / 1934
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(179, "cm")
  30693. },
  30694. {
  30695. name: "Maximum",
  30696. height: math.unit(575, "meters"),
  30697. default: true
  30698. },
  30699. ]
  30700. ))
  30701. characterMakers.push(() => makeCharacter(
  30702. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30703. {
  30704. front: {
  30705. height: math.unit(6, "feet"),
  30706. weight: math.unit(150, "lb"),
  30707. name: "Front",
  30708. image: {
  30709. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30710. extra: 2625 / 2518,
  30711. bottom: 60 / 2685
  30712. }
  30713. },
  30714. },
  30715. [
  30716. {
  30717. name: "Normal",
  30718. height: math.unit(6 + 2 / 12, "feet")
  30719. },
  30720. {
  30721. name: "Macro",
  30722. height: math.unit(1180, "feet"),
  30723. default: true
  30724. },
  30725. ]
  30726. ))
  30727. characterMakers.push(() => makeCharacter(
  30728. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30729. {
  30730. front: {
  30731. height: math.unit(5 + 6 / 12, "feet"),
  30732. weight: math.unit(108, "lb"),
  30733. name: "Front",
  30734. image: {
  30735. source: "./media/characters/lilith-zott/front.svg",
  30736. extra: 2510 / 2238,
  30737. bottom: 100 / 2610
  30738. }
  30739. },
  30740. frontDressed: {
  30741. height: math.unit(5 + 6 / 12, "feet"),
  30742. weight: math.unit(108, "lb"),
  30743. name: "Front (Dressed)",
  30744. image: {
  30745. source: "./media/characters/lilith-zott/front-dressed.svg",
  30746. extra: 2510 / 2238,
  30747. bottom: 100 / 2610
  30748. }
  30749. },
  30750. },
  30751. [
  30752. {
  30753. name: "Normal",
  30754. height: math.unit(5 + 6 / 12, "feet")
  30755. },
  30756. {
  30757. name: "Macro",
  30758. height: math.unit(1030, "feet"),
  30759. default: true
  30760. },
  30761. ]
  30762. ))
  30763. characterMakers.push(() => makeCharacter(
  30764. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30765. {
  30766. front: {
  30767. height: math.unit(6, "feet"),
  30768. weight: math.unit(150, "lb"),
  30769. name: "Front",
  30770. image: {
  30771. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30772. extra: 2567 / 2435,
  30773. bottom: 39 / 2606
  30774. }
  30775. },
  30776. frontSuper: {
  30777. height: math.unit(6, "feet"),
  30778. name: "Front (Super)",
  30779. image: {
  30780. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30781. extra: 2567 / 2435,
  30782. bottom: 39 / 2606
  30783. }
  30784. },
  30785. },
  30786. [
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(5 + 10 / 12, "feet")
  30790. },
  30791. {
  30792. name: "Macro",
  30793. height: math.unit(1100, "feet"),
  30794. default: true
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(100, "miles"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/sona/front.svg",
  30806. extra: 2433 / 2201,
  30807. bottom: 53 / 2486
  30808. }
  30809. },
  30810. foot: {
  30811. height: math.unit(16.1, "miles"),
  30812. name: "Foot",
  30813. image: {
  30814. source: "./media/characters/sona/foot.svg"
  30815. }
  30816. },
  30817. },
  30818. [
  30819. {
  30820. name: "Macro",
  30821. height: math.unit(100, "miles"),
  30822. default: true
  30823. },
  30824. ]
  30825. ))
  30826. characterMakers.push(() => makeCharacter(
  30827. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30828. {
  30829. front: {
  30830. height: math.unit(6, "feet"),
  30831. weight: math.unit(150, "lb"),
  30832. name: "Front",
  30833. image: {
  30834. source: "./media/characters/bailey/front.svg",
  30835. extra: 1778 / 1724,
  30836. bottom: 30 / 1808
  30837. }
  30838. },
  30839. },
  30840. [
  30841. {
  30842. name: "Micro",
  30843. height: math.unit(4, "inches")
  30844. },
  30845. {
  30846. name: "Normal",
  30847. height: math.unit(5 + 5 / 12, "feet"),
  30848. default: true
  30849. },
  30850. {
  30851. name: "Macro",
  30852. height: math.unit(250, "feet")
  30853. },
  30854. {
  30855. name: "Megamacro",
  30856. height: math.unit(100, "miles")
  30857. },
  30858. ]
  30859. ))
  30860. characterMakers.push(() => makeCharacter(
  30861. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30862. {
  30863. front: {
  30864. height: math.unit(5 + 2 / 12, "feet"),
  30865. weight: math.unit(120, "lb"),
  30866. name: "Front",
  30867. image: {
  30868. source: "./media/characters/snaps/front.svg",
  30869. extra: 2370 / 2177,
  30870. bottom: 48 / 2418
  30871. }
  30872. },
  30873. back: {
  30874. height: math.unit(5 + 2 / 12, "feet"),
  30875. weight: math.unit(120, "lb"),
  30876. name: "Back",
  30877. image: {
  30878. source: "./media/characters/snaps/back.svg",
  30879. extra: 2408 / 2258,
  30880. bottom: 15 / 2423
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Micro",
  30887. height: math.unit(9, "inches")
  30888. },
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(5 + 2 / 12, "feet"),
  30892. default: true
  30893. },
  30894. {
  30895. name: "Mini Macro",
  30896. height: math.unit(10, "feet")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(1.8, "meters"),
  30905. weight: math.unit(85, "kg"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/azteck/front.svg",
  30909. extra: 2815 / 2625,
  30910. bottom: 89 / 2904
  30911. }
  30912. },
  30913. back: {
  30914. height: math.unit(1.8, "meters"),
  30915. weight: math.unit(85, "kg"),
  30916. name: "Back",
  30917. image: {
  30918. source: "./media/characters/azteck/back.svg",
  30919. extra: 2856 / 2648,
  30920. bottom: 85 / 2941
  30921. }
  30922. },
  30923. frontDressed: {
  30924. height: math.unit(1.8, "meters"),
  30925. weight: math.unit(85, "kg"),
  30926. name: "Front (Dressed)",
  30927. image: {
  30928. source: "./media/characters/azteck/front-dressed.svg",
  30929. extra: 2147 / 2003,
  30930. bottom: 68 / 2215
  30931. }
  30932. },
  30933. head: {
  30934. height: math.unit(0.47, "meters"),
  30935. weight: math.unit(85, "kg"),
  30936. name: "Head",
  30937. image: {
  30938. source: "./media/characters/azteck/head.svg"
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Bite sized",
  30945. height: math.unit(16, "cm")
  30946. },
  30947. {
  30948. name: "Normal",
  30949. height: math.unit(1.8, "meters"),
  30950. default: true
  30951. },
  30952. ]
  30953. ))
  30954. characterMakers.push(() => makeCharacter(
  30955. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30956. {
  30957. front: {
  30958. height: math.unit(6, "feet"),
  30959. weight: math.unit(150, "lb"),
  30960. name: "Front",
  30961. image: {
  30962. source: "./media/characters/pidge/front.svg",
  30963. extra: 1936/1820,
  30964. bottom: 0/1936
  30965. }
  30966. },
  30967. back: {
  30968. height: math.unit(6, "feet"),
  30969. weight: math.unit(150, "lb"),
  30970. name: "Back",
  30971. image: {
  30972. source: "./media/characters/pidge/back.svg",
  30973. extra: 1938/1843,
  30974. bottom: 0/1938
  30975. }
  30976. },
  30977. casual: {
  30978. height: math.unit(6, "feet"),
  30979. weight: math.unit(150, "lb"),
  30980. name: "Casual",
  30981. image: {
  30982. source: "./media/characters/pidge/casual.svg",
  30983. extra: 1936/1820,
  30984. bottom: 0/1936
  30985. }
  30986. },
  30987. tech: {
  30988. height: math.unit(6, "feet"),
  30989. weight: math.unit(150, "lb"),
  30990. name: "Tech",
  30991. image: {
  30992. source: "./media/characters/pidge/tech.svg",
  30993. extra: 1802/1682,
  30994. bottom: 0/1802
  30995. }
  30996. },
  30997. head: {
  30998. height: math.unit(1.61, "feet"),
  30999. name: "Head",
  31000. image: {
  31001. source: "./media/characters/pidge/head.svg"
  31002. }
  31003. },
  31004. collar: {
  31005. height: math.unit(0.82, "feet"),
  31006. name: "Collar",
  31007. image: {
  31008. source: "./media/characters/pidge/collar.svg"
  31009. }
  31010. },
  31011. },
  31012. [
  31013. {
  31014. name: "Macro",
  31015. height: math.unit(2, "mile"),
  31016. default: true
  31017. },
  31018. {
  31019. name: "PUPPY",
  31020. height: math.unit(20, "miles")
  31021. },
  31022. ]
  31023. ))
  31024. characterMakers.push(() => makeCharacter(
  31025. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31026. {
  31027. front: {
  31028. height: math.unit(6, "feet"),
  31029. weight: math.unit(150, "lb"),
  31030. name: "Front",
  31031. image: {
  31032. source: "./media/characters/en/front.svg",
  31033. extra: 1697 / 1563,
  31034. bottom: 103 / 1800
  31035. }
  31036. },
  31037. back: {
  31038. height: math.unit(6, "feet"),
  31039. weight: math.unit(150, "lb"),
  31040. name: "Back",
  31041. image: {
  31042. source: "./media/characters/en/back.svg",
  31043. extra: 1700 / 1570,
  31044. bottom: 51 / 1751
  31045. }
  31046. },
  31047. frontDressed: {
  31048. height: math.unit(6, "feet"),
  31049. weight: math.unit(150, "lb"),
  31050. name: "Front (Dressed)",
  31051. image: {
  31052. source: "./media/characters/en/front-dressed.svg",
  31053. extra: 1697 / 1563,
  31054. bottom: 103 / 1800
  31055. }
  31056. },
  31057. backDressed: {
  31058. height: math.unit(6, "feet"),
  31059. weight: math.unit(150, "lb"),
  31060. name: "Back (Dressed)",
  31061. image: {
  31062. source: "./media/characters/en/back-dressed.svg",
  31063. extra: 1700 / 1570,
  31064. bottom: 51 / 1751
  31065. }
  31066. },
  31067. },
  31068. [
  31069. {
  31070. name: "Macro",
  31071. height: math.unit(210, "feet"),
  31072. default: true
  31073. },
  31074. ]
  31075. ))
  31076. characterMakers.push(() => makeCharacter(
  31077. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31078. {
  31079. front: {
  31080. height: math.unit(6, "feet"),
  31081. weight: math.unit(150, "lb"),
  31082. name: "Front",
  31083. image: {
  31084. source: "./media/characters/haze-orris/front.svg",
  31085. extra: 3975 / 3525,
  31086. bottom: 137 / 4112
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Micro",
  31093. height: math.unit(150, "mm"),
  31094. default: true
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(6, "feet"),
  31103. weight: math.unit(150, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/casselene-yaro/front.svg",
  31107. extra: 4721 / 4541,
  31108. bottom: 82 / 4803
  31109. }
  31110. },
  31111. back: {
  31112. height: math.unit(6, "feet"),
  31113. weight: math.unit(150, "lb"),
  31114. name: "Back",
  31115. image: {
  31116. source: "./media/characters/casselene-yaro/back.svg",
  31117. extra: 4569 / 4377,
  31118. bottom: 69 / 4638
  31119. }
  31120. },
  31121. dressed: {
  31122. height: math.unit(6, "feet"),
  31123. weight: math.unit(150, "lb"),
  31124. name: "Dressed",
  31125. image: {
  31126. source: "./media/characters/casselene-yaro/dressed.svg",
  31127. extra: 4721 / 4541,
  31128. bottom: 82 / 4803
  31129. }
  31130. },
  31131. maw: {
  31132. height: math.unit(1, "feet"),
  31133. name: "Maw",
  31134. image: {
  31135. source: "./media/characters/casselene-yaro/maw.svg"
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Macro",
  31142. height: math.unit(190, "feet"),
  31143. default: true
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31149. {
  31150. front: {
  31151. height: math.unit(10, "feet"),
  31152. weight: math.unit(15015, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/platine/front.svg",
  31156. extra: 1741/1650,
  31157. bottom: 84/1825
  31158. }
  31159. },
  31160. side: {
  31161. height: math.unit(10, "feet"),
  31162. weight: math.unit(15015, "lb"),
  31163. name: "Side",
  31164. image: {
  31165. source: "./media/characters/platine/side.svg",
  31166. extra: 1790/1705,
  31167. bottom: 29/1819
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(10, "feet"),
  31175. default: true
  31176. },
  31177. {
  31178. name: "Macro",
  31179. height: math.unit(100, "feet")
  31180. },
  31181. {
  31182. name: "Megamacro",
  31183. height: math.unit(1000, "feet")
  31184. },
  31185. ]
  31186. ))
  31187. characterMakers.push(() => makeCharacter(
  31188. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31189. {
  31190. front: {
  31191. height: math.unit(15 + 5 / 12, "feet"),
  31192. weight: math.unit(4600, "lb"),
  31193. name: "Front",
  31194. image: {
  31195. source: "./media/characters/neapolitan-ananassa/front.svg",
  31196. extra: 2903 / 2736,
  31197. bottom: 0 / 2903
  31198. }
  31199. },
  31200. side: {
  31201. height: math.unit(15 + 5 / 12, "feet"),
  31202. weight: math.unit(4600, "lb"),
  31203. name: "Side",
  31204. image: {
  31205. source: "./media/characters/neapolitan-ananassa/side.svg",
  31206. extra: 2925 / 2719,
  31207. bottom: 0 / 2925
  31208. }
  31209. },
  31210. back: {
  31211. height: math.unit(15 + 5 / 12, "feet"),
  31212. weight: math.unit(4600, "lb"),
  31213. name: "Back",
  31214. image: {
  31215. source: "./media/characters/neapolitan-ananassa/back.svg",
  31216. extra: 2903 / 2736,
  31217. bottom: 0 / 2903
  31218. }
  31219. },
  31220. },
  31221. [
  31222. {
  31223. name: "Normal",
  31224. height: math.unit(15 + 5 / 12, "feet"),
  31225. default: true
  31226. },
  31227. {
  31228. name: "Post-Millenium",
  31229. height: math.unit(35 + 5 / 12, "feet")
  31230. },
  31231. {
  31232. name: "Post-Era",
  31233. height: math.unit(450 + 5 / 12, "feet")
  31234. },
  31235. ]
  31236. ))
  31237. characterMakers.push(() => makeCharacter(
  31238. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31239. {
  31240. front: {
  31241. height: math.unit(300, "meters"),
  31242. weight: math.unit(125000, "tonnes"),
  31243. name: "Front",
  31244. image: {
  31245. source: "./media/characters/pazuzu/front.svg",
  31246. extra: 877 / 794,
  31247. bottom: 47 / 924
  31248. }
  31249. },
  31250. },
  31251. [
  31252. {
  31253. name: "Macro",
  31254. height: math.unit(300, "meters"),
  31255. default: true
  31256. },
  31257. ]
  31258. ))
  31259. characterMakers.push(() => makeCharacter(
  31260. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31261. {
  31262. side: {
  31263. height: math.unit(10 + 7 / 12, "feet"),
  31264. weight: math.unit(2.5, "tons"),
  31265. name: "Side",
  31266. image: {
  31267. source: "./media/characters/aasha/side.svg",
  31268. extra: 1345 / 1245,
  31269. bottom: 111 / 1456
  31270. }
  31271. },
  31272. back: {
  31273. height: math.unit(10 + 7 / 12, "feet"),
  31274. weight: math.unit(2.5, "tons"),
  31275. name: "Back",
  31276. image: {
  31277. source: "./media/characters/aasha/back.svg",
  31278. extra: 1133 / 1057,
  31279. bottom: 257 / 1390
  31280. }
  31281. },
  31282. },
  31283. [
  31284. {
  31285. name: "Normal",
  31286. height: math.unit(10 + 7 / 12, "feet"),
  31287. default: true
  31288. },
  31289. ]
  31290. ))
  31291. characterMakers.push(() => makeCharacter(
  31292. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31293. {
  31294. front: {
  31295. height: math.unit(6 + 3 / 12, "feet"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/nevan/front.svg",
  31299. extra: 704 / 704,
  31300. bottom: 28 / 732
  31301. }
  31302. },
  31303. back: {
  31304. height: math.unit(6 + 3 / 12, "feet"),
  31305. name: "Back",
  31306. image: {
  31307. source: "./media/characters/nevan/back.svg",
  31308. extra: 714 / 714,
  31309. bottom: 21 / 735
  31310. }
  31311. },
  31312. frontFlaccid: {
  31313. height: math.unit(6 + 3 / 12, "feet"),
  31314. name: "Front (Flaccid)",
  31315. image: {
  31316. source: "./media/characters/nevan/front-flaccid.svg",
  31317. extra: 704 / 704,
  31318. bottom: 28 / 732
  31319. }
  31320. },
  31321. frontErect: {
  31322. height: math.unit(6 + 3 / 12, "feet"),
  31323. name: "Front (Erect)",
  31324. image: {
  31325. source: "./media/characters/nevan/front-erect.svg",
  31326. extra: 704 / 704,
  31327. bottom: 28 / 732
  31328. }
  31329. },
  31330. backFlaccid: {
  31331. height: math.unit(6 + 3 / 12, "feet"),
  31332. name: "Back (Flaccid)",
  31333. image: {
  31334. source: "./media/characters/nevan/back-flaccid.svg",
  31335. extra: 714 / 714,
  31336. bottom: 21 / 735
  31337. }
  31338. },
  31339. },
  31340. [
  31341. {
  31342. name: "Normal",
  31343. height: math.unit(6 + 3 / 12, "feet"),
  31344. default: true
  31345. },
  31346. ]
  31347. ))
  31348. characterMakers.push(() => makeCharacter(
  31349. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31350. {
  31351. front: {
  31352. height: math.unit(4, "feet"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/arhan/front.svg",
  31356. extra: 3368 / 3133,
  31357. bottom: 0 / 3368
  31358. }
  31359. },
  31360. side: {
  31361. height: math.unit(4, "feet"),
  31362. name: "Side",
  31363. image: {
  31364. source: "./media/characters/arhan/side.svg",
  31365. extra: 3347 / 3105,
  31366. bottom: 0 / 3347
  31367. }
  31368. },
  31369. tongue: {
  31370. height: math.unit(1.42, "feet"),
  31371. name: "Tongue",
  31372. image: {
  31373. source: "./media/characters/arhan/tongue.svg"
  31374. }
  31375. },
  31376. head: {
  31377. height: math.unit(0.85, "feet"),
  31378. name: "Head",
  31379. image: {
  31380. source: "./media/characters/arhan/head.svg"
  31381. }
  31382. },
  31383. },
  31384. [
  31385. {
  31386. name: "Normal",
  31387. height: math.unit(4, "feet"),
  31388. default: true
  31389. },
  31390. ]
  31391. ))
  31392. characterMakers.push(() => makeCharacter(
  31393. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31394. {
  31395. front: {
  31396. height: math.unit(5 + 7.5 / 12, "feet"),
  31397. weight: math.unit(120, "lb"),
  31398. name: "Front",
  31399. image: {
  31400. source: "./media/characters/digi-duncan/front.svg",
  31401. extra: 330 / 326,
  31402. bottom: 16 / 346
  31403. }
  31404. },
  31405. side: {
  31406. height: math.unit(5 + 7.5 / 12, "feet"),
  31407. weight: math.unit(120, "lb"),
  31408. name: "Side",
  31409. image: {
  31410. source: "./media/characters/digi-duncan/side.svg",
  31411. extra: 341 / 337,
  31412. bottom: 1 / 342
  31413. }
  31414. },
  31415. back: {
  31416. height: math.unit(5 + 7.5 / 12, "feet"),
  31417. weight: math.unit(120, "lb"),
  31418. name: "Back",
  31419. image: {
  31420. source: "./media/characters/digi-duncan/back.svg",
  31421. extra: 330 / 326,
  31422. bottom: 12 / 342
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Speck",
  31429. height: math.unit(0.25, "mm")
  31430. },
  31431. {
  31432. name: "Micro",
  31433. height: math.unit(5, "mm")
  31434. },
  31435. {
  31436. name: "Tiny",
  31437. height: math.unit(0.5, "inches"),
  31438. default: true
  31439. },
  31440. {
  31441. name: "Human",
  31442. height: math.unit(5 + 7.5 / 12, "feet")
  31443. },
  31444. {
  31445. name: "Minigiant",
  31446. height: math.unit(8 + 5.25, "feet")
  31447. },
  31448. {
  31449. name: "Giant",
  31450. height: math.unit(2000, "feet")
  31451. },
  31452. {
  31453. name: "Mega",
  31454. height: math.unit(371.1, "miles")
  31455. },
  31456. ]
  31457. ))
  31458. characterMakers.push(() => makeCharacter(
  31459. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31460. {
  31461. front: {
  31462. height: math.unit(2, "meters"),
  31463. weight: math.unit(350, "kg"),
  31464. name: "Front",
  31465. image: {
  31466. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31467. extra: 898 / 838,
  31468. bottom: 9 / 907
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Micro",
  31475. height: math.unit(8, "meters")
  31476. },
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(50, "meters"),
  31480. default: true
  31481. },
  31482. {
  31483. name: "Macro",
  31484. height: math.unit(500, "meters")
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(6 + 6 / 12, "feet"),
  31493. name: "Front",
  31494. image: {
  31495. source: "./media/characters/khardesh/front.svg",
  31496. extra: 1788/1596,
  31497. bottom: 66/1854
  31498. }
  31499. },
  31500. back: {
  31501. height: math.unit(6 + 6 / 12, "feet"),
  31502. name: "Back",
  31503. image: {
  31504. source: "./media/characters/khardesh/back.svg",
  31505. extra: 1781/1584,
  31506. bottom: 68/1849
  31507. }
  31508. },
  31509. },
  31510. [
  31511. {
  31512. name: "Normal",
  31513. height: math.unit(6 + 6 / 12, "feet"),
  31514. default: true
  31515. },
  31516. {
  31517. name: "Normal+",
  31518. height: math.unit(4, "meters")
  31519. },
  31520. {
  31521. name: "Macro",
  31522. height: math.unit(50, "meters")
  31523. },
  31524. {
  31525. name: "Macro+",
  31526. height: math.unit(100, "meters")
  31527. },
  31528. {
  31529. name: "Megamacro",
  31530. height: math.unit(20, "km")
  31531. },
  31532. ]
  31533. ))
  31534. characterMakers.push(() => makeCharacter(
  31535. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31536. {
  31537. front: {
  31538. height: math.unit(6, "feet"),
  31539. weight: math.unit(150, "lb"),
  31540. name: "Front",
  31541. image: {
  31542. source: "./media/characters/kosho/front.svg",
  31543. extra: 1847 / 1847,
  31544. bottom: 86 / 1933
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Second-stage micro",
  31551. height: math.unit(0.5, "inches")
  31552. },
  31553. {
  31554. name: "First-stage micro",
  31555. height: math.unit(6, "inches")
  31556. },
  31557. {
  31558. name: "Normal",
  31559. height: math.unit(6, "feet"),
  31560. default: true
  31561. },
  31562. {
  31563. name: "First-stage macro",
  31564. height: math.unit(72, "feet")
  31565. },
  31566. {
  31567. name: "Second-stage macro",
  31568. height: math.unit(864, "feet")
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31574. {
  31575. normal: {
  31576. height: math.unit(4 + 6 / 12, "feet"),
  31577. name: "Normal",
  31578. image: {
  31579. source: "./media/characters/hydra/normal.svg",
  31580. extra: 2833 / 2634,
  31581. bottom: 68 / 2901
  31582. }
  31583. },
  31584. smol: {
  31585. height: math.unit(0.705, "inches"),
  31586. name: "Smol",
  31587. image: {
  31588. source: "./media/characters/hydra/smol.svg",
  31589. extra: 2715 / 2540,
  31590. bottom: 0 / 2715
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(4 + 6 / 12, "feet"),
  31598. default: true
  31599. }
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(0.6, "cm"),
  31607. name: "Front",
  31608. image: {
  31609. source: "./media/characters/daz/front.svg",
  31610. extra: 1682 / 1164,
  31611. bottom: 42 / 1724
  31612. }
  31613. },
  31614. },
  31615. [
  31616. {
  31617. name: "Normal",
  31618. height: math.unit(0.6, "cm"),
  31619. default: true
  31620. },
  31621. ]
  31622. ))
  31623. characterMakers.push(() => makeCharacter(
  31624. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31625. {
  31626. front: {
  31627. height: math.unit(6, "feet"),
  31628. weight: math.unit(235, "lb"),
  31629. name: "Front",
  31630. image: {
  31631. source: "./media/characters/theo-pangolin/front.svg",
  31632. extra: 1996 / 1969,
  31633. bottom: 115 / 2111
  31634. }
  31635. },
  31636. back: {
  31637. height: math.unit(6, "feet"),
  31638. weight: math.unit(235, "lb"),
  31639. name: "Back",
  31640. image: {
  31641. source: "./media/characters/theo-pangolin/back.svg",
  31642. extra: 1979 / 1979,
  31643. bottom: 40 / 2019
  31644. }
  31645. },
  31646. feral: {
  31647. height: math.unit(2, "feet"),
  31648. weight: math.unit(30, "lb"),
  31649. name: "Feral",
  31650. image: {
  31651. source: "./media/characters/theo-pangolin/feral.svg",
  31652. extra: 803 / 791,
  31653. bottom: 181 / 984
  31654. }
  31655. },
  31656. footFive: {
  31657. height: math.unit(1.43, "feet"),
  31658. name: "Foot (Five Toes)",
  31659. image: {
  31660. source: "./media/characters/theo-pangolin/foot-five.svg"
  31661. }
  31662. },
  31663. footFour: {
  31664. height: math.unit(1.43, "feet"),
  31665. name: "Foot (Four Toes)",
  31666. image: {
  31667. source: "./media/characters/theo-pangolin/foot-four.svg"
  31668. }
  31669. },
  31670. handFour: {
  31671. height: math.unit(0.81, "feet"),
  31672. name: "Hand (Four Fingers)",
  31673. image: {
  31674. source: "./media/characters/theo-pangolin/hand-four.svg"
  31675. }
  31676. },
  31677. handThree: {
  31678. height: math.unit(0.81, "feet"),
  31679. name: "Hand (Three Fingers)",
  31680. image: {
  31681. source: "./media/characters/theo-pangolin/hand-three.svg"
  31682. }
  31683. },
  31684. headFront: {
  31685. height: math.unit(1.37, "feet"),
  31686. name: "Head (Front)",
  31687. image: {
  31688. source: "./media/characters/theo-pangolin/head-front.svg"
  31689. }
  31690. },
  31691. headSide: {
  31692. height: math.unit(1.43, "feet"),
  31693. name: "Head (Side)",
  31694. image: {
  31695. source: "./media/characters/theo-pangolin/head-side.svg"
  31696. }
  31697. },
  31698. tongue: {
  31699. height: math.unit(2.29, "feet"),
  31700. name: "Tongue",
  31701. image: {
  31702. source: "./media/characters/theo-pangolin/tongue.svg"
  31703. }
  31704. },
  31705. },
  31706. [
  31707. {
  31708. name: "Normal",
  31709. height: math.unit(6, "feet")
  31710. },
  31711. {
  31712. name: "Macro",
  31713. height: math.unit(400, "feet"),
  31714. default: true
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(6, "inches"),
  31723. weight: math.unit(0.036, "kg"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/renée/front.svg",
  31727. extra: 900 / 886,
  31728. bottom: 8 / 908
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Nano",
  31735. height: math.unit(1, "nm")
  31736. },
  31737. {
  31738. name: "Micro",
  31739. height: math.unit(1, "mm")
  31740. },
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(6, "inches")
  31744. },
  31745. {
  31746. name: "Macro",
  31747. height: math.unit(2000, "feet"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Megamacro",
  31752. height: math.unit(2, "km")
  31753. },
  31754. {
  31755. name: "Gigamacro",
  31756. height: math.unit(2000, "km")
  31757. },
  31758. {
  31759. name: "Teramacro",
  31760. height: math.unit(250000, "km")
  31761. },
  31762. ]
  31763. ))
  31764. characterMakers.push(() => makeCharacter(
  31765. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31766. {
  31767. front: {
  31768. height: math.unit(4, "meters"),
  31769. weight: math.unit(150, "kg"),
  31770. name: "Front",
  31771. image: {
  31772. source: "./media/characters/caledvwlch/front.svg",
  31773. extra: 1760 / 1551,
  31774. bottom: 28 / 1788
  31775. }
  31776. },
  31777. side: {
  31778. height: math.unit(4, "meters"),
  31779. weight: math.unit(150, "kg"),
  31780. name: "Side",
  31781. image: {
  31782. source: "./media/characters/caledvwlch/side.svg",
  31783. extra: 1605 / 1536,
  31784. bottom: 31 / 1636
  31785. }
  31786. },
  31787. back: {
  31788. height: math.unit(4, "meters"),
  31789. weight: math.unit(150, "kg"),
  31790. name: "Back",
  31791. image: {
  31792. source: "./media/characters/caledvwlch/back.svg",
  31793. extra: 1635 / 1565,
  31794. bottom: 27 / 1662
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "\"Incognito\"",
  31801. height: math.unit(4, "meters")
  31802. },
  31803. {
  31804. name: "Small rampage",
  31805. height: math.unit(600, "meters")
  31806. },
  31807. {
  31808. name: "Mega",
  31809. height: math.unit(30, "km")
  31810. },
  31811. {
  31812. name: "Home-size",
  31813. height: math.unit(50, "km"),
  31814. default: true
  31815. },
  31816. {
  31817. name: "Giga",
  31818. height: math.unit(300, "km")
  31819. },
  31820. {
  31821. name: "Lounging",
  31822. height: math.unit(11000, "km")
  31823. },
  31824. {
  31825. name: "Planet snacking",
  31826. height: math.unit(2000000, "km")
  31827. },
  31828. ]
  31829. ))
  31830. characterMakers.push(() => makeCharacter(
  31831. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31832. {
  31833. front: {
  31834. height: math.unit(6, "feet"),
  31835. weight: math.unit(215, "lb"),
  31836. name: "Front",
  31837. image: {
  31838. source: "./media/characters/sapphire-svell/front.svg",
  31839. extra: 495 / 455,
  31840. bottom: 20 / 515
  31841. }
  31842. },
  31843. back: {
  31844. height: math.unit(6, "feet"),
  31845. weight: math.unit(216, "lb"),
  31846. name: "Back",
  31847. image: {
  31848. source: "./media/characters/sapphire-svell/back.svg",
  31849. extra: 497 / 477,
  31850. bottom: 7 / 504
  31851. }
  31852. },
  31853. maw: {
  31854. height: math.unit(1.57, "feet"),
  31855. name: "Maw",
  31856. image: {
  31857. source: "./media/characters/sapphire-svell/maw.svg"
  31858. }
  31859. },
  31860. foot: {
  31861. height: math.unit(1.07, "feet"),
  31862. name: "Foot",
  31863. image: {
  31864. source: "./media/characters/sapphire-svell/foot.svg"
  31865. }
  31866. },
  31867. toering: {
  31868. height: math.unit(1.7, "inch"),
  31869. name: "Toering",
  31870. image: {
  31871. source: "./media/characters/sapphire-svell/toering.svg"
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(300, "feet"),
  31879. default: true
  31880. },
  31881. {
  31882. name: "Augmented",
  31883. height: math.unit(1250, "feet")
  31884. },
  31885. {
  31886. name: "Unleashed",
  31887. height: math.unit(3000, "feet")
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31893. {
  31894. side: {
  31895. height: math.unit(2 + 3 / 12, "feet"),
  31896. weight: math.unit(110, "lb"),
  31897. name: "Side",
  31898. image: {
  31899. source: "./media/characters/glitch-flux/side.svg",
  31900. extra: 997 / 805,
  31901. bottom: 20 / 1017
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(2 + 3 / 12, "feet"),
  31909. default: true
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(4, "meters"),
  31918. name: "Front",
  31919. image: {
  31920. source: "./media/characters/mid/front.svg",
  31921. extra: 507 / 476,
  31922. bottom: 17 / 524
  31923. }
  31924. },
  31925. back: {
  31926. height: math.unit(4, "meters"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/mid/back.svg",
  31930. extra: 519 / 487,
  31931. bottom: 7 / 526
  31932. }
  31933. },
  31934. stuck: {
  31935. height: math.unit(2.2, "meters"),
  31936. name: "Stuck",
  31937. image: {
  31938. source: "./media/characters/mid/stuck.svg",
  31939. extra: 1951 / 1869,
  31940. bottom: 88 / 2039
  31941. }
  31942. }
  31943. },
  31944. [
  31945. {
  31946. name: "Normal",
  31947. height: math.unit(4, "meters"),
  31948. default: true
  31949. },
  31950. {
  31951. name: "Big",
  31952. height: math.unit(10, "meters")
  31953. },
  31954. {
  31955. name: "Macro",
  31956. height: math.unit(800, "meters")
  31957. },
  31958. {
  31959. name: "Megamacro",
  31960. height: math.unit(100, "km")
  31961. },
  31962. {
  31963. name: "Overgrown",
  31964. height: math.unit(1, "parsec")
  31965. },
  31966. ]
  31967. ))
  31968. characterMakers.push(() => makeCharacter(
  31969. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31970. {
  31971. front: {
  31972. height: math.unit(2.5, "meters"),
  31973. weight: math.unit(225, "kg"),
  31974. name: "Front",
  31975. image: {
  31976. source: "./media/characters/iris/front.svg",
  31977. extra: 3348 / 3251,
  31978. bottom: 205 / 3553
  31979. }
  31980. },
  31981. maw: {
  31982. height: math.unit(0.56, "meter"),
  31983. name: "Maw",
  31984. image: {
  31985. source: "./media/characters/iris/maw.svg"
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Mewter cat",
  31992. height: math.unit(1.2, "meters")
  31993. },
  31994. {
  31995. name: "Normal",
  31996. height: math.unit(2.5, "meters"),
  31997. default: true
  31998. },
  31999. {
  32000. name: "Minimacro",
  32001. height: math.unit(18, "feet")
  32002. },
  32003. {
  32004. name: "Macro",
  32005. height: math.unit(140, "feet")
  32006. },
  32007. {
  32008. name: "Macro+",
  32009. height: math.unit(180, "meters")
  32010. },
  32011. {
  32012. name: "Megamacro",
  32013. height: math.unit(2746, "meters")
  32014. },
  32015. ]
  32016. ))
  32017. characterMakers.push(() => makeCharacter(
  32018. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32019. {
  32020. front: {
  32021. height: math.unit(6, "feet"),
  32022. weight: math.unit(135, "lb"),
  32023. name: "Front",
  32024. image: {
  32025. source: "./media/characters/axel/front.svg",
  32026. extra: 908 / 908,
  32027. bottom: 58 / 966
  32028. }
  32029. },
  32030. side: {
  32031. height: math.unit(6, "feet"),
  32032. weight: math.unit(135, "lb"),
  32033. name: "Side",
  32034. image: {
  32035. source: "./media/characters/axel/side.svg",
  32036. extra: 958 / 958,
  32037. bottom: 11 / 969
  32038. }
  32039. },
  32040. back: {
  32041. height: math.unit(6, "feet"),
  32042. weight: math.unit(135, "lb"),
  32043. name: "Back",
  32044. image: {
  32045. source: "./media/characters/axel/back.svg",
  32046. extra: 887 / 887,
  32047. bottom: 34 / 921
  32048. }
  32049. },
  32050. head: {
  32051. height: math.unit(1.07, "feet"),
  32052. name: "Head",
  32053. image: {
  32054. source: "./media/characters/axel/head.svg"
  32055. }
  32056. },
  32057. beak: {
  32058. height: math.unit(1.4, "feet"),
  32059. name: "Beak",
  32060. image: {
  32061. source: "./media/characters/axel/beak.svg"
  32062. }
  32063. },
  32064. beakSide: {
  32065. height: math.unit(1.4, "feet"),
  32066. name: "Beak Side",
  32067. image: {
  32068. source: "./media/characters/axel/beak-side.svg"
  32069. }
  32070. },
  32071. sheath: {
  32072. height: math.unit(0.5, "feet"),
  32073. name: "Sheath",
  32074. image: {
  32075. source: "./media/characters/axel/sheath.svg"
  32076. }
  32077. },
  32078. dick: {
  32079. height: math.unit(0.98, "feet"),
  32080. name: "Dick",
  32081. image: {
  32082. source: "./media/characters/axel/dick.svg"
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Macro",
  32089. height: math.unit(68, "meters"),
  32090. default: true
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32096. {
  32097. front: {
  32098. height: math.unit(3.5, "meters"),
  32099. weight: math.unit(1200, "kg"),
  32100. name: "Front",
  32101. image: {
  32102. source: "./media/characters/joanna/front.svg",
  32103. extra: 1596 / 1488,
  32104. bottom: 29 / 1625
  32105. }
  32106. },
  32107. back: {
  32108. height: math.unit(3.5, "meters"),
  32109. weight: math.unit(1200, "kg"),
  32110. name: "Back",
  32111. image: {
  32112. source: "./media/characters/joanna/back.svg",
  32113. extra: 1594 / 1495,
  32114. bottom: 26 / 1620
  32115. }
  32116. },
  32117. frontShorts: {
  32118. height: math.unit(3.5, "meters"),
  32119. weight: math.unit(1200, "kg"),
  32120. name: "Front (Shorts)",
  32121. image: {
  32122. source: "./media/characters/joanna/front-shorts.svg",
  32123. extra: 1596 / 1488,
  32124. bottom: 29 / 1625
  32125. }
  32126. },
  32127. frontBiker: {
  32128. height: math.unit(3.5, "meters"),
  32129. weight: math.unit(1200, "kg"),
  32130. name: "Front (Biker)",
  32131. image: {
  32132. source: "./media/characters/joanna/front-biker.svg",
  32133. extra: 1596 / 1488,
  32134. bottom: 29 / 1625
  32135. }
  32136. },
  32137. backBiker: {
  32138. height: math.unit(3.5, "meters"),
  32139. weight: math.unit(1200, "kg"),
  32140. name: "Back (Biker)",
  32141. image: {
  32142. source: "./media/characters/joanna/back-biker.svg",
  32143. extra: 1594 / 1495,
  32144. bottom: 88 / 1682
  32145. }
  32146. },
  32147. bikeLeft: {
  32148. height: math.unit(2.4, "meters"),
  32149. weight: math.unit(1600, "kg"),
  32150. name: "Bike (Left)",
  32151. image: {
  32152. source: "./media/characters/joanna/bike-left.svg",
  32153. extra: 720 / 720,
  32154. bottom: 8 / 728
  32155. }
  32156. },
  32157. bikeRight: {
  32158. height: math.unit(2.4, "meters"),
  32159. weight: math.unit(1600, "kg"),
  32160. name: "Bike (Right)",
  32161. image: {
  32162. source: "./media/characters/joanna/bike-right.svg",
  32163. extra: 720 / 720,
  32164. bottom: 8 / 728
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Incognito",
  32171. height: math.unit(3.5, "meters")
  32172. },
  32173. {
  32174. name: "Casual Big",
  32175. height: math.unit(200, "meters")
  32176. },
  32177. {
  32178. name: "Macro",
  32179. height: math.unit(600, "meters")
  32180. },
  32181. {
  32182. name: "Original",
  32183. height: math.unit(20, "km"),
  32184. default: true
  32185. },
  32186. {
  32187. name: "Giga",
  32188. height: math.unit(400, "km")
  32189. },
  32190. {
  32191. name: "Lounging",
  32192. height: math.unit(1500, "km")
  32193. },
  32194. {
  32195. name: "Planetary",
  32196. height: math.unit(200000, "km")
  32197. },
  32198. ]
  32199. ))
  32200. characterMakers.push(() => makeCharacter(
  32201. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32202. {
  32203. front: {
  32204. height: math.unit(6, "feet"),
  32205. weight: math.unit(150, "lb"),
  32206. name: "Front",
  32207. image: {
  32208. source: "./media/characters/hugo-sigil/front.svg",
  32209. extra: 522 / 500,
  32210. bottom: 2 / 524
  32211. }
  32212. },
  32213. back: {
  32214. height: math.unit(6, "feet"),
  32215. weight: math.unit(150, "lb"),
  32216. name: "Back",
  32217. image: {
  32218. source: "./media/characters/hugo-sigil/back.svg",
  32219. extra: 519 / 495,
  32220. bottom: 5 / 524
  32221. }
  32222. },
  32223. maw: {
  32224. height: math.unit(1.4, "feet"),
  32225. weight: math.unit(150, "lb"),
  32226. name: "Maw",
  32227. image: {
  32228. source: "./media/characters/hugo-sigil/maw.svg"
  32229. }
  32230. },
  32231. feet: {
  32232. height: math.unit(1.56, "feet"),
  32233. weight: math.unit(150, "lb"),
  32234. name: "Feet",
  32235. image: {
  32236. source: "./media/characters/hugo-sigil/feet.svg",
  32237. extra: 177 / 177,
  32238. bottom: 12 / 189
  32239. }
  32240. },
  32241. },
  32242. [
  32243. {
  32244. name: "Normal",
  32245. height: math.unit(6, "feet")
  32246. },
  32247. {
  32248. name: "Macro",
  32249. height: math.unit(200, "feet"),
  32250. default: true
  32251. },
  32252. ]
  32253. ))
  32254. characterMakers.push(() => makeCharacter(
  32255. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32256. {
  32257. front: {
  32258. height: math.unit(6, "feet"),
  32259. weight: math.unit(150, "lb"),
  32260. name: "Front",
  32261. image: {
  32262. source: "./media/characters/peri/front.svg",
  32263. extra: 2354 / 2233,
  32264. bottom: 49 / 2403
  32265. }
  32266. },
  32267. },
  32268. [
  32269. {
  32270. name: "Really Small",
  32271. height: math.unit(1, "nm")
  32272. },
  32273. {
  32274. name: "Micro",
  32275. height: math.unit(4, "inches")
  32276. },
  32277. {
  32278. name: "Normal",
  32279. height: math.unit(7, "inches"),
  32280. default: true
  32281. },
  32282. {
  32283. name: "Macro",
  32284. height: math.unit(400, "feet")
  32285. },
  32286. {
  32287. name: "Megamacro",
  32288. height: math.unit(100, "miles")
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32294. {
  32295. frontSlim: {
  32296. height: math.unit(7, "feet"),
  32297. name: "Front (Slim)",
  32298. image: {
  32299. source: "./media/characters/issilora/front-slim.svg",
  32300. extra: 529 / 449,
  32301. bottom: 53 / 582
  32302. }
  32303. },
  32304. sideSlim: {
  32305. height: math.unit(7, "feet"),
  32306. name: "Side (Slim)",
  32307. image: {
  32308. source: "./media/characters/issilora/side-slim.svg",
  32309. extra: 570 / 480,
  32310. bottom: 30 / 600
  32311. }
  32312. },
  32313. backSlim: {
  32314. height: math.unit(7, "feet"),
  32315. name: "Back (Slim)",
  32316. image: {
  32317. source: "./media/characters/issilora/back-slim.svg",
  32318. extra: 537 / 455,
  32319. bottom: 46 / 583
  32320. }
  32321. },
  32322. frontBuff: {
  32323. height: math.unit(7, "feet"),
  32324. name: "Front (Buff)",
  32325. image: {
  32326. source: "./media/characters/issilora/front-buff.svg",
  32327. extra: 2310 / 2035,
  32328. bottom: 335 / 2645
  32329. }
  32330. },
  32331. head: {
  32332. height: math.unit(1.94, "feet"),
  32333. name: "Head",
  32334. image: {
  32335. source: "./media/characters/issilora/head.svg"
  32336. }
  32337. },
  32338. },
  32339. [
  32340. {
  32341. name: "Minimum",
  32342. height: math.unit(7, "feet")
  32343. },
  32344. {
  32345. name: "Comfortable",
  32346. height: math.unit(17, "feet")
  32347. },
  32348. {
  32349. name: "Fun Size",
  32350. height: math.unit(47, "feet")
  32351. },
  32352. {
  32353. name: "Natural Macro",
  32354. height: math.unit(137, "feet"),
  32355. default: true
  32356. },
  32357. {
  32358. name: "Maximum Kaiju",
  32359. height: math.unit(397, "feet")
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32365. {
  32366. front: {
  32367. height: math.unit(50 + 9/12, "feet"),
  32368. weight: math.unit(32.8, "tons"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/irb'iiritaahn/front.svg",
  32372. extra: 1878/1826,
  32373. bottom: 326/2204
  32374. }
  32375. },
  32376. back: {
  32377. height: math.unit(50 + 9/12, "feet"),
  32378. weight: math.unit(32.8, "tons"),
  32379. name: "Back",
  32380. image: {
  32381. source: "./media/characters/irb'iiritaahn/back.svg",
  32382. extra: 2052/2018,
  32383. bottom: 152/2204
  32384. }
  32385. },
  32386. head: {
  32387. height: math.unit(12.86, "feet"),
  32388. name: "Head",
  32389. image: {
  32390. source: "./media/characters/irb'iiritaahn/head.svg"
  32391. }
  32392. },
  32393. maw: {
  32394. height: math.unit(9.66, "feet"),
  32395. name: "Maw",
  32396. image: {
  32397. source: "./media/characters/irb'iiritaahn/maw.svg"
  32398. }
  32399. },
  32400. frontDick: {
  32401. height: math.unit(8.78461, "feet"),
  32402. name: "Front Dick",
  32403. image: {
  32404. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32405. }
  32406. },
  32407. rearDick: {
  32408. height: math.unit(8.78461, "feet"),
  32409. name: "Rear Dick",
  32410. image: {
  32411. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32412. }
  32413. },
  32414. rearDickUnfolded: {
  32415. height: math.unit(8.78, "feet"),
  32416. name: "Rear Dick (Unfolded)",
  32417. image: {
  32418. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32419. }
  32420. },
  32421. wings: {
  32422. height: math.unit(43, "feet"),
  32423. name: "Wings",
  32424. image: {
  32425. source: "./media/characters/irb'iiritaahn/wings.svg"
  32426. }
  32427. },
  32428. },
  32429. [
  32430. {
  32431. name: "Macro",
  32432. height: math.unit(50 + 9/12, "feet"),
  32433. default: true
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(205, "cm"),
  32442. weight: math.unit(102, "kg"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/irbisgreif/front.svg",
  32446. extra: 785/706,
  32447. bottom: 13/798
  32448. }
  32449. },
  32450. back: {
  32451. height: math.unit(205, "cm"),
  32452. weight: math.unit(102, "kg"),
  32453. name: "Back",
  32454. image: {
  32455. source: "./media/characters/irbisgreif/back.svg",
  32456. extra: 713/701,
  32457. bottom: 26/739
  32458. }
  32459. },
  32460. frontDressed: {
  32461. height: math.unit(216, "cm"),
  32462. weight: math.unit(102, "kg"),
  32463. name: "Front-dressed",
  32464. image: {
  32465. source: "./media/characters/irbisgreif/front-dressed.svg",
  32466. extra: 902/776,
  32467. bottom: 14/916
  32468. }
  32469. },
  32470. sideDressed: {
  32471. height: math.unit(195, "cm"),
  32472. weight: math.unit(102, "kg"),
  32473. name: "Side-dressed",
  32474. image: {
  32475. source: "./media/characters/irbisgreif/side-dressed.svg",
  32476. extra: 788/688,
  32477. bottom: 21/809
  32478. }
  32479. },
  32480. backDressed: {
  32481. height: math.unit(216, "cm"),
  32482. weight: math.unit(102, "kg"),
  32483. name: "Back-dressed",
  32484. image: {
  32485. source: "./media/characters/irbisgreif/back-dressed.svg",
  32486. extra: 901/783,
  32487. bottom: 10/911
  32488. }
  32489. },
  32490. dick: {
  32491. height: math.unit(0.49, "feet"),
  32492. name: "Dick",
  32493. image: {
  32494. source: "./media/characters/irbisgreif/dick.svg"
  32495. }
  32496. },
  32497. wingTop: {
  32498. height: math.unit(1.93 , "feet"),
  32499. name: "Wing-top",
  32500. image: {
  32501. source: "./media/characters/irbisgreif/wing-top.svg"
  32502. }
  32503. },
  32504. wingBottom: {
  32505. height: math.unit(1.93 , "feet"),
  32506. name: "Wing-bottom",
  32507. image: {
  32508. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(216, "cm"),
  32516. default: true
  32517. },
  32518. ]
  32519. ))
  32520. characterMakers.push(() => makeCharacter(
  32521. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32522. {
  32523. front: {
  32524. height: math.unit(6, "feet"),
  32525. weight: math.unit(150, "lb"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/pride/front.svg",
  32529. extra: 1299/1230,
  32530. bottom: 18/1317
  32531. }
  32532. },
  32533. },
  32534. [
  32535. {
  32536. name: "Normal",
  32537. height: math.unit(7, "feet")
  32538. },
  32539. {
  32540. name: "Mini-macro",
  32541. height: math.unit(11, "feet")
  32542. },
  32543. {
  32544. name: "Macro",
  32545. height: math.unit(15, "meters"),
  32546. default: true
  32547. },
  32548. {
  32549. name: "Macro+",
  32550. height: math.unit(40, "meters")
  32551. },
  32552. ]
  32553. ))
  32554. characterMakers.push(() => makeCharacter(
  32555. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32556. {
  32557. front: {
  32558. height: math.unit(4 + 2 / 12, "feet"),
  32559. weight: math.unit(95, "lb"),
  32560. name: "Front",
  32561. image: {
  32562. source: "./media/characters/vaelophis-nyx/front.svg",
  32563. extra: 2532/2330,
  32564. bottom: 0/2532
  32565. }
  32566. },
  32567. back: {
  32568. height: math.unit(4 + 2 / 12, "feet"),
  32569. weight: math.unit(95, "lb"),
  32570. name: "Back",
  32571. image: {
  32572. source: "./media/characters/vaelophis-nyx/back.svg",
  32573. extra: 2484/2361,
  32574. bottom: 0/2484
  32575. }
  32576. },
  32577. feralSide: {
  32578. height: math.unit(2 + 1/12, "feet"),
  32579. weight: math.unit(20, "lb"),
  32580. name: "Feral (Side)",
  32581. image: {
  32582. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32583. extra: 1721/1581,
  32584. bottom: 70/1791
  32585. }
  32586. },
  32587. feralLazing: {
  32588. height: math.unit(1.08, "feet"),
  32589. weight: math.unit(20, "lb"),
  32590. name: "Feral (Lazing)",
  32591. image: {
  32592. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32593. extra: 822/822,
  32594. bottom: 248/1070
  32595. }
  32596. },
  32597. ear: {
  32598. height: math.unit(0.416, "feet"),
  32599. name: "Ear",
  32600. image: {
  32601. source: "./media/characters/vaelophis-nyx/ear.svg"
  32602. }
  32603. },
  32604. eye: {
  32605. height: math.unit(0.0748, "feet"),
  32606. name: "Eye",
  32607. image: {
  32608. source: "./media/characters/vaelophis-nyx/eye.svg"
  32609. }
  32610. },
  32611. mouth: {
  32612. height: math.unit(0.378, "feet"),
  32613. name: "Mouth",
  32614. image: {
  32615. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32616. }
  32617. },
  32618. spade: {
  32619. height: math.unit(0.55, "feet"),
  32620. name: "Spade",
  32621. image: {
  32622. source: "./media/characters/vaelophis-nyx/spade.svg"
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(4 + 2/12, "feet"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32636. {
  32637. front: {
  32638. height: math.unit(7, "feet"),
  32639. weight: math.unit(231, "lb"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/flux/front.svg",
  32643. extra: 919/871,
  32644. bottom: 0/919
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(7, "feet"),
  32649. weight: math.unit(231, "lb"),
  32650. name: "Back",
  32651. image: {
  32652. source: "./media/characters/flux/back.svg",
  32653. extra: 1040/992,
  32654. bottom: 0/1040
  32655. }
  32656. },
  32657. frontDressed: {
  32658. height: math.unit(7, "feet"),
  32659. weight: math.unit(231, "lb"),
  32660. name: "Front (Dressed)",
  32661. image: {
  32662. source: "./media/characters/flux/front-dressed.svg",
  32663. extra: 919/871,
  32664. bottom: 0/919
  32665. }
  32666. },
  32667. feralSide: {
  32668. height: math.unit(5, "feet"),
  32669. weight: math.unit(150, "lb"),
  32670. name: "Feral (Side)",
  32671. image: {
  32672. source: "./media/characters/flux/feral-side.svg",
  32673. extra: 598/528,
  32674. bottom: 28/626
  32675. }
  32676. },
  32677. head: {
  32678. height: math.unit(1.585, "feet"),
  32679. name: "Head",
  32680. image: {
  32681. source: "./media/characters/flux/head.svg"
  32682. }
  32683. },
  32684. headSide: {
  32685. height: math.unit(1.74, "feet"),
  32686. name: "Head (Side)",
  32687. image: {
  32688. source: "./media/characters/flux/head-side.svg"
  32689. }
  32690. },
  32691. headSideFire: {
  32692. height: math.unit(1.76, "feet"),
  32693. name: "Head (Side, Fire)",
  32694. image: {
  32695. source: "./media/characters/flux/head-side-fire.svg"
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(7, "feet"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(9, "feet"),
  32712. weight: math.unit(1012, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/ulfra-lupae/front.svg",
  32716. extra: 1083/1011,
  32717. bottom: 67/1150
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Micro",
  32724. height: math.unit(6, "inches")
  32725. },
  32726. {
  32727. name: "Socializing",
  32728. height: math.unit(6 + 5/12, "feet")
  32729. },
  32730. {
  32731. name: "Normal",
  32732. height: math.unit(9, "feet"),
  32733. default: true
  32734. },
  32735. {
  32736. name: "Macro",
  32737. height: math.unit(150, "feet")
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(5 + 2/12, "feet"),
  32746. weight: math.unit(120, "lb"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/timber/front.svg",
  32750. extra: 2814/2705,
  32751. bottom: 181/2995
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(5 + 2/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(9, "feet"),
  32768. name: "Front",
  32769. image: {
  32770. source: "./media/characters/nicki/front.svg",
  32771. extra: 1240/990,
  32772. bottom: 45/1285
  32773. },
  32774. form: "anthro",
  32775. default: true
  32776. },
  32777. side: {
  32778. height: math.unit(9, "feet"),
  32779. name: "Side",
  32780. image: {
  32781. source: "./media/characters/nicki/side.svg",
  32782. extra: 1047/973,
  32783. bottom: 61/1108
  32784. },
  32785. form: "anthro"
  32786. },
  32787. back: {
  32788. height: math.unit(9, "feet"),
  32789. name: "Back",
  32790. image: {
  32791. source: "./media/characters/nicki/back.svg",
  32792. extra: 1006/965,
  32793. bottom: 39/1045
  32794. },
  32795. form: "anthro"
  32796. },
  32797. taur: {
  32798. height: math.unit(15, "feet"),
  32799. name: "Taur",
  32800. image: {
  32801. source: "./media/characters/nicki/taur.svg",
  32802. extra: 1592/1347,
  32803. bottom: 0/1592
  32804. },
  32805. form: "taur",
  32806. default: true
  32807. },
  32808. },
  32809. [
  32810. {
  32811. name: "Normal",
  32812. height: math.unit(9, "feet"),
  32813. form: "anthro",
  32814. default: true
  32815. },
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(15, "feet"),
  32819. form: "taur",
  32820. default: true
  32821. }
  32822. ],
  32823. {
  32824. "anthro": {
  32825. name: "Anthro",
  32826. default: true
  32827. },
  32828. "taur": {
  32829. name: "Taur"
  32830. }
  32831. }
  32832. ))
  32833. characterMakers.push(() => makeCharacter(
  32834. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32835. {
  32836. front: {
  32837. height: math.unit(7 + 10/12, "feet"),
  32838. weight: math.unit(3.5, "tons"),
  32839. name: "Front",
  32840. image: {
  32841. source: "./media/characters/lee/front.svg",
  32842. extra: 1773/1615,
  32843. bottom: 86/1859
  32844. }
  32845. },
  32846. hand: {
  32847. height: math.unit(1.78, "feet"),
  32848. name: "Hand",
  32849. image: {
  32850. source: "./media/characters/lee/hand.svg"
  32851. }
  32852. },
  32853. maw: {
  32854. height: math.unit(1.18, "feet"),
  32855. name: "Maw",
  32856. image: {
  32857. source: "./media/characters/lee/maw.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Normal",
  32864. height: math.unit(7 + 10/12, "feet"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32871. {
  32872. front: {
  32873. height: math.unit(9, "feet"),
  32874. name: "Front",
  32875. image: {
  32876. source: "./media/characters/guti/front.svg",
  32877. extra: 4551/4355,
  32878. bottom: 123/4674
  32879. }
  32880. },
  32881. tongue: {
  32882. height: math.unit(1, "feet"),
  32883. name: "Tongue",
  32884. image: {
  32885. source: "./media/characters/guti/tongue.svg"
  32886. }
  32887. },
  32888. paw: {
  32889. height: math.unit(1.18, "feet"),
  32890. name: "Paw",
  32891. image: {
  32892. source: "./media/characters/guti/paw.svg"
  32893. }
  32894. },
  32895. },
  32896. [
  32897. {
  32898. name: "Normal",
  32899. height: math.unit(9, "feet"),
  32900. default: true
  32901. },
  32902. ]
  32903. ))
  32904. characterMakers.push(() => makeCharacter(
  32905. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32906. {
  32907. side: {
  32908. height: math.unit(5, "meters"),
  32909. name: "Side",
  32910. image: {
  32911. source: "./media/characters/vesper/side.svg",
  32912. extra: 1605/1518,
  32913. bottom: 0/1605
  32914. }
  32915. },
  32916. },
  32917. [
  32918. {
  32919. name: "Small",
  32920. height: math.unit(5, "meters")
  32921. },
  32922. {
  32923. name: "Sage",
  32924. height: math.unit(100, "meters"),
  32925. default: true
  32926. },
  32927. {
  32928. name: "Fun Size",
  32929. height: math.unit(600, "meters")
  32930. },
  32931. {
  32932. name: "Goddess",
  32933. height: math.unit(20000, "km")
  32934. },
  32935. {
  32936. name: "Maximum",
  32937. height: math.unit(5, "galaxies")
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(6 + 3/12, "feet"),
  32946. weight: math.unit(190, "lb"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/gawain/front.svg",
  32950. extra: 2222/2139,
  32951. bottom: 90/2312
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(6 + 3/12, "feet"),
  32956. weight: math.unit(190, "lb"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/gawain/back.svg",
  32960. extra: 2199/2111,
  32961. bottom: 73/2272
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Normal",
  32968. height: math.unit(6 + 3/12, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32975. {
  32976. side: {
  32977. height: math.unit(3.5, "meters"),
  32978. weight: math.unit(16000, "lb"),
  32979. name: "Side",
  32980. image: {
  32981. source: "./media/characters/dascalti/side.svg",
  32982. extra: 392/273,
  32983. bottom: 47/439
  32984. }
  32985. },
  32986. breath: {
  32987. height: math.unit(7.4, "feet"),
  32988. name: "Breath",
  32989. image: {
  32990. source: "./media/characters/dascalti/breath.svg"
  32991. }
  32992. },
  32993. fed: {
  32994. height: math.unit(3.6, "meters"),
  32995. weight: math.unit(16000, "lb"),
  32996. name: "Fed",
  32997. image: {
  32998. source: "./media/characters/dascalti/fed.svg",
  32999. extra: 1419/820,
  33000. bottom: 95/1514
  33001. }
  33002. },
  33003. },
  33004. [
  33005. {
  33006. name: "Normal",
  33007. height: math.unit(3.5, "meters"),
  33008. default: true
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(3 + 5/12, "feet"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/mauve/front.svg",
  33020. extra: 1126/1033,
  33021. bottom: 65/1191
  33022. }
  33023. },
  33024. side: {
  33025. height: math.unit(3 + 5/12, "feet"),
  33026. name: "Side",
  33027. image: {
  33028. source: "./media/characters/mauve/side.svg",
  33029. extra: 1089/1001,
  33030. bottom: 29/1118
  33031. }
  33032. },
  33033. back: {
  33034. height: math.unit(3 + 5/12, "feet"),
  33035. name: "Back",
  33036. image: {
  33037. source: "./media/characters/mauve/back.svg",
  33038. extra: 1173/1053,
  33039. bottom: 109/1282
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Normal",
  33046. height: math.unit(3 + 5/12, "feet"),
  33047. default: true
  33048. },
  33049. ]
  33050. ))
  33051. characterMakers.push(() => makeCharacter(
  33052. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33053. {
  33054. front: {
  33055. height: math.unit(6 + 3/12, "feet"),
  33056. weight: math.unit(430, "lb"),
  33057. name: "Front",
  33058. image: {
  33059. source: "./media/characters/carlos/front.svg",
  33060. extra: 1964/1913,
  33061. bottom: 70/2034
  33062. }
  33063. },
  33064. },
  33065. [
  33066. {
  33067. name: "Normal",
  33068. height: math.unit(6 + 3/12, "feet"),
  33069. default: true
  33070. },
  33071. ]
  33072. ))
  33073. characterMakers.push(() => makeCharacter(
  33074. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33075. {
  33076. back: {
  33077. height: math.unit(5 + 10/12, "feet"),
  33078. weight: math.unit(200, "lb"),
  33079. name: "Back",
  33080. image: {
  33081. source: "./media/characters/jax/back.svg",
  33082. extra: 764/739,
  33083. bottom: 25/789
  33084. }
  33085. },
  33086. },
  33087. [
  33088. {
  33089. name: "Normal",
  33090. height: math.unit(5 + 10/12, "feet"),
  33091. default: true
  33092. },
  33093. ]
  33094. ))
  33095. characterMakers.push(() => makeCharacter(
  33096. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33097. {
  33098. front: {
  33099. height: math.unit(8, "feet"),
  33100. weight: math.unit(250, "lb"),
  33101. name: "Front",
  33102. image: {
  33103. source: "./media/characters/eikthynir/front.svg",
  33104. extra: 1332/1166,
  33105. bottom: 82/1414
  33106. }
  33107. },
  33108. back: {
  33109. height: math.unit(8, "feet"),
  33110. weight: math.unit(250, "lb"),
  33111. name: "Back",
  33112. image: {
  33113. source: "./media/characters/eikthynir/back.svg",
  33114. extra: 1342/1190,
  33115. bottom: 19/1361
  33116. }
  33117. },
  33118. dick: {
  33119. height: math.unit(2.35, "feet"),
  33120. name: "Dick",
  33121. image: {
  33122. source: "./media/characters/eikthynir/dick.svg"
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(8, "feet"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33136. {
  33137. front: {
  33138. height: math.unit(99, "meters"),
  33139. weight: math.unit(13000, "tons"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/zlmos/front.svg",
  33143. extra: 2202/1992,
  33144. bottom: 315/2517
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Macro",
  33151. height: math.unit(99, "meters"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(6 + 5/12, "feet"),
  33161. name: "Front",
  33162. image: {
  33163. source: "./media/characters/purri/front.svg",
  33164. extra: 1698/1610,
  33165. bottom: 32/1730
  33166. }
  33167. },
  33168. frontAlt: {
  33169. height: math.unit(6 + 5/12, "feet"),
  33170. name: "Front (Alt)",
  33171. image: {
  33172. source: "./media/characters/purri/front-alt.svg",
  33173. extra: 450/420,
  33174. bottom: 26/476
  33175. }
  33176. },
  33177. boots: {
  33178. height: math.unit(5.5, "feet"),
  33179. name: "Boots",
  33180. image: {
  33181. source: "./media/characters/purri/boots.svg",
  33182. extra: 905/853,
  33183. bottom: 18/923
  33184. }
  33185. },
  33186. lying: {
  33187. height: math.unit(2, "feet"),
  33188. name: "Lying",
  33189. image: {
  33190. source: "./media/characters/purri/lying.svg",
  33191. extra: 940/843,
  33192. bottom: 146/1086
  33193. }
  33194. },
  33195. devious: {
  33196. height: math.unit(1.77, "feet"),
  33197. name: "Devious",
  33198. image: {
  33199. source: "./media/characters/purri/devious.svg",
  33200. extra: 1440/1155,
  33201. bottom: 147/1587
  33202. }
  33203. },
  33204. bean: {
  33205. height: math.unit(1.94, "feet"),
  33206. name: "Bean",
  33207. image: {
  33208. source: "./media/characters/purri/bean.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Micro",
  33215. height: math.unit(1, "mm")
  33216. },
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(6 + 5/12, "feet"),
  33220. default: true
  33221. },
  33222. {
  33223. name: "Macro :3c",
  33224. height: math.unit(2, "miles")
  33225. },
  33226. ]
  33227. ))
  33228. characterMakers.push(() => makeCharacter(
  33229. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33230. {
  33231. front: {
  33232. height: math.unit(6 + 2/12, "feet"),
  33233. weight: math.unit(250, "lb"),
  33234. name: "Front",
  33235. image: {
  33236. source: "./media/characters/moonlight/front.svg",
  33237. extra: 1044/908,
  33238. bottom: 56/1100
  33239. }
  33240. },
  33241. feral: {
  33242. height: math.unit(3 + 1/12, "feet"),
  33243. weight: math.unit(50, "kg"),
  33244. name: "Feral",
  33245. image: {
  33246. source: "./media/characters/moonlight/feral.svg",
  33247. extra: 3705/2791,
  33248. bottom: 145/3850
  33249. }
  33250. },
  33251. paw: {
  33252. height: math.unit(1, "feet"),
  33253. name: "Paw",
  33254. image: {
  33255. source: "./media/characters/moonlight/paw.svg"
  33256. }
  33257. },
  33258. paws: {
  33259. height: math.unit(0.98, "feet"),
  33260. name: "Paws",
  33261. image: {
  33262. source: "./media/characters/moonlight/paws.svg",
  33263. extra: 939/939,
  33264. bottom: 50/989
  33265. }
  33266. },
  33267. mouth: {
  33268. height: math.unit(0.48, "feet"),
  33269. name: "Mouth",
  33270. image: {
  33271. source: "./media/characters/moonlight/mouth.svg"
  33272. }
  33273. },
  33274. dick: {
  33275. height: math.unit(1.46, "feet"),
  33276. name: "Dick",
  33277. image: {
  33278. source: "./media/characters/moonlight/dick.svg"
  33279. }
  33280. },
  33281. },
  33282. [
  33283. {
  33284. name: "Normal",
  33285. height: math.unit(6 + 2/12, "feet"),
  33286. default: true
  33287. },
  33288. {
  33289. name: "Macro",
  33290. height: math.unit(300, "feet")
  33291. },
  33292. {
  33293. name: "Macro+",
  33294. height: math.unit(1, "mile")
  33295. },
  33296. {
  33297. name: "Mt. Moon",
  33298. height: math.unit(5, "miles")
  33299. },
  33300. {
  33301. name: "Megamacro",
  33302. height: math.unit(15, "miles")
  33303. },
  33304. ]
  33305. ))
  33306. characterMakers.push(() => makeCharacter(
  33307. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33308. {
  33309. back: {
  33310. height: math.unit(6, "feet"),
  33311. weight: math.unit(150, "lb"),
  33312. name: "Back",
  33313. image: {
  33314. source: "./media/characters/sylen/back.svg",
  33315. extra: 1335/1273,
  33316. bottom: 107/1442
  33317. }
  33318. },
  33319. },
  33320. [
  33321. {
  33322. name: "Normal",
  33323. height: math.unit(5 + 5/12, "feet")
  33324. },
  33325. {
  33326. name: "Megamacro",
  33327. height: math.unit(3, "miles"),
  33328. default: true
  33329. },
  33330. ]
  33331. ))
  33332. characterMakers.push(() => makeCharacter(
  33333. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33334. {
  33335. front: {
  33336. height: math.unit(6, "feet"),
  33337. weight: math.unit(190, "lb"),
  33338. name: "Front",
  33339. image: {
  33340. source: "./media/characters/huttser/front.svg",
  33341. extra: 1152/1058,
  33342. bottom: 23/1175
  33343. }
  33344. },
  33345. side: {
  33346. height: math.unit(6, "feet"),
  33347. weight: math.unit(190, "lb"),
  33348. name: "Side",
  33349. image: {
  33350. source: "./media/characters/huttser/side.svg",
  33351. extra: 1174/1065,
  33352. bottom: 18/1192
  33353. }
  33354. },
  33355. back: {
  33356. height: math.unit(6, "feet"),
  33357. weight: math.unit(190, "lb"),
  33358. name: "Back",
  33359. image: {
  33360. source: "./media/characters/huttser/back.svg",
  33361. extra: 1158/1056,
  33362. bottom: 12/1170
  33363. }
  33364. },
  33365. },
  33366. [
  33367. ]
  33368. ))
  33369. characterMakers.push(() => makeCharacter(
  33370. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33371. {
  33372. side: {
  33373. height: math.unit(12 + 9/12, "feet"),
  33374. weight: math.unit(15000, "lb"),
  33375. name: "Side",
  33376. image: {
  33377. source: "./media/characters/faan/side.svg",
  33378. extra: 2747/2697,
  33379. bottom: 0/2747
  33380. }
  33381. },
  33382. front: {
  33383. height: math.unit(12 + 9/12, "feet"),
  33384. weight: math.unit(15000, "lb"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/faan/front.svg",
  33388. extra: 607/571,
  33389. bottom: 24/631
  33390. }
  33391. },
  33392. head: {
  33393. height: math.unit(2.85, "feet"),
  33394. name: "Head",
  33395. image: {
  33396. source: "./media/characters/faan/head.svg"
  33397. }
  33398. },
  33399. headAlt: {
  33400. height: math.unit(3.13, "feet"),
  33401. name: "Head-alt",
  33402. image: {
  33403. source: "./media/characters/faan/head-alt.svg"
  33404. }
  33405. },
  33406. },
  33407. [
  33408. {
  33409. name: "Normal",
  33410. height: math.unit(12 + 9/12, "feet"),
  33411. default: true
  33412. },
  33413. ]
  33414. ))
  33415. characterMakers.push(() => makeCharacter(
  33416. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33417. {
  33418. front: {
  33419. height: math.unit(6, "feet"),
  33420. weight: math.unit(300, "lb"),
  33421. name: "Front",
  33422. image: {
  33423. source: "./media/characters/tanio/front.svg",
  33424. extra: 711/673,
  33425. bottom: 25/736
  33426. }
  33427. },
  33428. },
  33429. [
  33430. {
  33431. name: "Normal",
  33432. height: math.unit(6, "feet"),
  33433. default: true
  33434. },
  33435. ]
  33436. ))
  33437. characterMakers.push(() => makeCharacter(
  33438. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33439. {
  33440. front: {
  33441. height: math.unit(3, "inches"),
  33442. name: "Front",
  33443. image: {
  33444. source: "./media/characters/noboru/front.svg",
  33445. extra: 1039/932,
  33446. bottom: 18/1057
  33447. }
  33448. },
  33449. },
  33450. [
  33451. {
  33452. name: "Micro",
  33453. height: math.unit(3, "inches"),
  33454. default: true
  33455. },
  33456. ]
  33457. ))
  33458. characterMakers.push(() => makeCharacter(
  33459. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33460. {
  33461. front: {
  33462. height: math.unit(1.85, "meters"),
  33463. weight: math.unit(80, "kg"),
  33464. name: "Front",
  33465. image: {
  33466. source: "./media/characters/daniel-barrett/front.svg",
  33467. extra: 355/337,
  33468. bottom: 9/364
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Pico",
  33475. height: math.unit(0.0433, "mm")
  33476. },
  33477. {
  33478. name: "Nano",
  33479. height: math.unit(1.5, "mm")
  33480. },
  33481. {
  33482. name: "Micro",
  33483. height: math.unit(5.3, "cm"),
  33484. default: true
  33485. },
  33486. {
  33487. name: "Normal",
  33488. height: math.unit(1.85, "meters")
  33489. },
  33490. {
  33491. name: "Macro",
  33492. height: math.unit(64.7, "meters")
  33493. },
  33494. {
  33495. name: "Megamacro",
  33496. height: math.unit(2.26, "km")
  33497. },
  33498. {
  33499. name: "Gigamacro",
  33500. height: math.unit(79, "km")
  33501. },
  33502. {
  33503. name: "Teramacro",
  33504. height: math.unit(2765, "km")
  33505. },
  33506. {
  33507. name: "Petamacro",
  33508. height: math.unit(96678, "km")
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(30, "meters"),
  33517. weight: math.unit(400, "tons"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/zeel/front.svg",
  33521. extra: 2599/2599,
  33522. bottom: 226/2825
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Macro",
  33529. height: math.unit(30, "meters"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(6 + 7/12, "feet"),
  33539. weight: math.unit(210, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/tarn/front.svg",
  33543. extra: 3517/3220,
  33544. bottom: 91/3608
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(6 + 7/12, "feet"),
  33549. weight: math.unit(210, "lb"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/tarn/back.svg",
  33553. extra: 3566/3241,
  33554. bottom: 34/3600
  33555. }
  33556. },
  33557. dick: {
  33558. height: math.unit(1.65, "feet"),
  33559. name: "Dick",
  33560. image: {
  33561. source: "./media/characters/tarn/dick.svg"
  33562. }
  33563. },
  33564. paw: {
  33565. height: math.unit(1.80, "feet"),
  33566. name: "Paw",
  33567. image: {
  33568. source: "./media/characters/tarn/paw.svg"
  33569. }
  33570. },
  33571. tongue: {
  33572. height: math.unit(0.97, "feet"),
  33573. name: "Tongue",
  33574. image: {
  33575. source: "./media/characters/tarn/tongue.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Micro",
  33582. height: math.unit(4, "inches")
  33583. },
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(6 + 7/12, "feet"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Macro",
  33591. height: math.unit(300, "feet")
  33592. },
  33593. ]
  33594. ))
  33595. characterMakers.push(() => makeCharacter(
  33596. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33597. {
  33598. front: {
  33599. height: math.unit(5 + 7/12, "feet"),
  33600. weight: math.unit(80, "kg"),
  33601. name: "Front",
  33602. image: {
  33603. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33604. extra: 3023/2865,
  33605. bottom: 33/3056
  33606. }
  33607. },
  33608. back: {
  33609. height: math.unit(5 + 7/12, "feet"),
  33610. weight: math.unit(80, "kg"),
  33611. name: "Back",
  33612. image: {
  33613. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33614. extra: 3020/2886,
  33615. bottom: 30/3050
  33616. }
  33617. },
  33618. dick: {
  33619. height: math.unit(0.98, "feet"),
  33620. name: "Dick",
  33621. image: {
  33622. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33623. }
  33624. },
  33625. anatomy: {
  33626. height: math.unit(2.86, "feet"),
  33627. name: "Anatomy",
  33628. image: {
  33629. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33630. }
  33631. },
  33632. },
  33633. [
  33634. {
  33635. name: "Really Small",
  33636. height: math.unit(2, "inches")
  33637. },
  33638. {
  33639. name: "Micro",
  33640. height: math.unit(5.583, "inches")
  33641. },
  33642. {
  33643. name: "Normal",
  33644. height: math.unit(5 + 7/12, "feet"),
  33645. default: true
  33646. },
  33647. {
  33648. name: "Macro",
  33649. height: math.unit(67, "feet")
  33650. },
  33651. {
  33652. name: "Megamacro",
  33653. height: math.unit(134, "feet")
  33654. },
  33655. ]
  33656. ))
  33657. characterMakers.push(() => makeCharacter(
  33658. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33659. {
  33660. front: {
  33661. height: math.unit(9, "feet"),
  33662. weight: math.unit(120, "lb"),
  33663. name: "Front",
  33664. image: {
  33665. source: "./media/characters/sally/front.svg",
  33666. extra: 1506/1349,
  33667. bottom: 66/1572
  33668. }
  33669. },
  33670. },
  33671. [
  33672. {
  33673. name: "Normal",
  33674. height: math.unit(9, "feet"),
  33675. default: true
  33676. },
  33677. ]
  33678. ))
  33679. characterMakers.push(() => makeCharacter(
  33680. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33681. {
  33682. front: {
  33683. height: math.unit(8, "feet"),
  33684. weight: math.unit(900, "lb"),
  33685. name: "Front",
  33686. image: {
  33687. source: "./media/characters/owen/front.svg",
  33688. extra: 1761/1657,
  33689. bottom: 74/1835
  33690. }
  33691. },
  33692. side: {
  33693. height: math.unit(8, "feet"),
  33694. weight: math.unit(900, "lb"),
  33695. name: "Side",
  33696. image: {
  33697. source: "./media/characters/owen/side.svg",
  33698. extra: 1797/1734,
  33699. bottom: 30/1827
  33700. }
  33701. },
  33702. back: {
  33703. height: math.unit(8, "feet"),
  33704. weight: math.unit(900, "lb"),
  33705. name: "Back",
  33706. image: {
  33707. source: "./media/characters/owen/back.svg",
  33708. extra: 1796/1706,
  33709. bottom: 59/1855
  33710. }
  33711. },
  33712. maw: {
  33713. height: math.unit(1.76, "feet"),
  33714. name: "Maw",
  33715. image: {
  33716. source: "./media/characters/owen/maw.svg"
  33717. }
  33718. },
  33719. },
  33720. [
  33721. {
  33722. name: "Normal",
  33723. height: math.unit(8, "feet"),
  33724. default: true
  33725. },
  33726. ]
  33727. ))
  33728. characterMakers.push(() => makeCharacter(
  33729. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33730. {
  33731. front: {
  33732. height: math.unit(4, "feet"),
  33733. weight: math.unit(400, "lb"),
  33734. name: "Front",
  33735. image: {
  33736. source: "./media/characters/ryth/front.svg",
  33737. extra: 1920/1748,
  33738. bottom: 42/1962
  33739. }
  33740. },
  33741. back: {
  33742. height: math.unit(4, "feet"),
  33743. weight: math.unit(400, "lb"),
  33744. name: "Back",
  33745. image: {
  33746. source: "./media/characters/ryth/back.svg",
  33747. extra: 1897/1690,
  33748. bottom: 89/1986
  33749. }
  33750. },
  33751. mouth: {
  33752. height: math.unit(1.39, "feet"),
  33753. name: "Mouth",
  33754. image: {
  33755. source: "./media/characters/ryth/mouth.svg"
  33756. }
  33757. },
  33758. tailmaw: {
  33759. height: math.unit(1.23, "feet"),
  33760. name: "Tailmaw",
  33761. image: {
  33762. source: "./media/characters/ryth/tailmaw.svg"
  33763. }
  33764. },
  33765. goia: {
  33766. height: math.unit(4, "meters"),
  33767. weight: math.unit(10800, "lb"),
  33768. name: "Goia",
  33769. image: {
  33770. source: "./media/characters/ryth/goia.svg",
  33771. extra: 745/640,
  33772. bottom: 107/852
  33773. }
  33774. },
  33775. goiaFront: {
  33776. height: math.unit(4, "meters"),
  33777. weight: math.unit(10800, "lb"),
  33778. name: "Goia (Front)",
  33779. image: {
  33780. source: "./media/characters/ryth/goia-front.svg",
  33781. extra: 750/586,
  33782. bottom: 114/864
  33783. }
  33784. },
  33785. goiaMaw: {
  33786. height: math.unit(5.55, "feet"),
  33787. name: "Goia Maw",
  33788. image: {
  33789. source: "./media/characters/ryth/goia-maw.svg"
  33790. }
  33791. },
  33792. goiaForepaw: {
  33793. height: math.unit(3.5, "feet"),
  33794. name: "Goia Forepaw",
  33795. image: {
  33796. source: "./media/characters/ryth/goia-forepaw.svg"
  33797. }
  33798. },
  33799. goiaHindpaw: {
  33800. height: math.unit(5.55, "feet"),
  33801. name: "Goia Hindpaw",
  33802. image: {
  33803. source: "./media/characters/ryth/goia-hindpaw.svg"
  33804. }
  33805. },
  33806. },
  33807. [
  33808. {
  33809. name: "Normal",
  33810. height: math.unit(4, "feet"),
  33811. default: true
  33812. },
  33813. ]
  33814. ))
  33815. characterMakers.push(() => makeCharacter(
  33816. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33817. {
  33818. front: {
  33819. height: math.unit(7, "feet"),
  33820. weight: math.unit(180, "lb"),
  33821. name: "Front",
  33822. image: {
  33823. source: "./media/characters/necrolance/front.svg",
  33824. extra: 1062/947,
  33825. bottom: 41/1103
  33826. }
  33827. },
  33828. back: {
  33829. height: math.unit(7, "feet"),
  33830. weight: math.unit(180, "lb"),
  33831. name: "Back",
  33832. image: {
  33833. source: "./media/characters/necrolance/back.svg",
  33834. extra: 1045/984,
  33835. bottom: 14/1059
  33836. }
  33837. },
  33838. wing: {
  33839. height: math.unit(2.67, "feet"),
  33840. name: "Wing",
  33841. image: {
  33842. source: "./media/characters/necrolance/wing.svg"
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(7, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33856. {
  33857. front: {
  33858. height: math.unit(76, "meters"),
  33859. weight: math.unit(30000, "tons"),
  33860. name: "Front",
  33861. image: {
  33862. source: "./media/characters/tyler/front.svg",
  33863. extra: 1640/1640,
  33864. bottom: 114/1754
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Macro",
  33871. height: math.unit(76, "meters"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(4 + 11/12, "feet"),
  33881. weight: math.unit(132, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/icey/front.svg",
  33885. extra: 2750/2550,
  33886. bottom: 33/2783
  33887. }
  33888. },
  33889. back: {
  33890. height: math.unit(4 + 11/12, "feet"),
  33891. weight: math.unit(132, "lb"),
  33892. name: "Back",
  33893. image: {
  33894. source: "./media/characters/icey/back.svg",
  33895. extra: 2624/2481,
  33896. bottom: 35/2659
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(4 + 11/12, "feet"),
  33904. default: true
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33910. {
  33911. front: {
  33912. height: math.unit(100, "feet"),
  33913. weight: math.unit(0, "lb"),
  33914. name: "Front",
  33915. image: {
  33916. source: "./media/characters/smile/front.svg",
  33917. extra: 2983/2912,
  33918. bottom: 162/3145
  33919. }
  33920. },
  33921. back: {
  33922. height: math.unit(100, "feet"),
  33923. weight: math.unit(0, "lb"),
  33924. name: "Back",
  33925. image: {
  33926. source: "./media/characters/smile/back.svg",
  33927. extra: 3143/3031,
  33928. bottom: 91/3234
  33929. }
  33930. },
  33931. head: {
  33932. height: math.unit(26.3, "feet"),
  33933. weight: math.unit(0, "lb"),
  33934. name: "Head",
  33935. image: {
  33936. source: "./media/characters/smile/head.svg"
  33937. }
  33938. },
  33939. collar: {
  33940. height: math.unit(5.3, "feet"),
  33941. weight: math.unit(0, "lb"),
  33942. name: "Collar",
  33943. image: {
  33944. source: "./media/characters/smile/collar.svg"
  33945. }
  33946. },
  33947. },
  33948. [
  33949. {
  33950. name: "Macro",
  33951. height: math.unit(100, "feet"),
  33952. default: true
  33953. },
  33954. ]
  33955. ))
  33956. characterMakers.push(() => makeCharacter(
  33957. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33958. {
  33959. dragon: {
  33960. height: math.unit(26, "feet"),
  33961. weight: math.unit(36, "tons"),
  33962. name: "Dragon",
  33963. image: {
  33964. source: "./media/characters/arimphae/dragon.svg",
  33965. extra: 1574/983,
  33966. bottom: 357/1931
  33967. }
  33968. },
  33969. drake: {
  33970. height: math.unit(9, "feet"),
  33971. weight: math.unit(1.5, "tons"),
  33972. name: "Drake",
  33973. image: {
  33974. source: "./media/characters/arimphae/drake.svg",
  33975. extra: 1120/925,
  33976. bottom: 435/1555
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Small",
  33983. height: math.unit(26*5/9, "feet")
  33984. },
  33985. {
  33986. name: "Normal",
  33987. height: math.unit(26, "feet"),
  33988. default: true
  33989. },
  33990. ]
  33991. ))
  33992. characterMakers.push(() => makeCharacter(
  33993. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33994. {
  33995. front: {
  33996. height: math.unit(8 + 9/12, "feet"),
  33997. name: "Front",
  33998. image: {
  33999. source: "./media/characters/xander/front.svg",
  34000. extra: 1237/974,
  34001. bottom: 94/1331
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(8 + 9/12, "feet"),
  34009. default: true
  34010. },
  34011. {
  34012. name: "Gaze Grabber",
  34013. height: math.unit(13 + 8/12, "feet")
  34014. },
  34015. {
  34016. name: "Jaw Dropper",
  34017. height: math.unit(27, "feet")
  34018. },
  34019. {
  34020. name: "Show Stopper",
  34021. height: math.unit(136, "feet")
  34022. },
  34023. {
  34024. name: "Superstar",
  34025. height: math.unit(1.9e6, "miles")
  34026. },
  34027. ]
  34028. ))
  34029. characterMakers.push(() => makeCharacter(
  34030. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34031. {
  34032. side: {
  34033. height: math.unit(2100, "feet"),
  34034. name: "Side",
  34035. image: {
  34036. source: "./media/characters/osiris/side.svg",
  34037. extra: 1105/939,
  34038. bottom: 167/1272
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Macro",
  34045. height: math.unit(2100, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(6 + 8/12, "feet"),
  34055. weight: math.unit(225, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/rhys-londe/front.svg",
  34059. extra: 2258/2141,
  34060. bottom: 188/2446
  34061. }
  34062. },
  34063. back: {
  34064. height: math.unit(6 + 8/12, "feet"),
  34065. weight: math.unit(225, "lb"),
  34066. name: "Back",
  34067. image: {
  34068. source: "./media/characters/rhys-londe/back.svg",
  34069. extra: 2237/2137,
  34070. bottom: 63/2300
  34071. }
  34072. },
  34073. frontNsfw: {
  34074. height: math.unit(6 + 8/12, "feet"),
  34075. weight: math.unit(225, "lb"),
  34076. name: "Front (NSFW)",
  34077. image: {
  34078. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34079. extra: 2258/2141,
  34080. bottom: 188/2446
  34081. }
  34082. },
  34083. backNsfw: {
  34084. height: math.unit(6 + 8/12, "feet"),
  34085. weight: math.unit(225, "lb"),
  34086. name: "Back (NSFW)",
  34087. image: {
  34088. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34089. extra: 2237/2137,
  34090. bottom: 63/2300
  34091. }
  34092. },
  34093. dick: {
  34094. height: math.unit(30, "inches"),
  34095. name: "Dick",
  34096. image: {
  34097. source: "./media/characters/rhys-londe/dick.svg"
  34098. }
  34099. },
  34100. maw: {
  34101. height: math.unit(1.6, "feet"),
  34102. name: "Maw",
  34103. image: {
  34104. source: "./media/characters/rhys-londe/maw.svg"
  34105. }
  34106. },
  34107. },
  34108. [
  34109. {
  34110. name: "Normal",
  34111. height: math.unit(6 + 8/12, "feet"),
  34112. default: true
  34113. },
  34114. ]
  34115. ))
  34116. characterMakers.push(() => makeCharacter(
  34117. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34118. {
  34119. front: {
  34120. height: math.unit(3 + 10/12, "feet"),
  34121. weight: math.unit(90, "lb"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/taivas-ensim/front.svg",
  34125. extra: 1327/1216,
  34126. bottom: 96/1423
  34127. }
  34128. },
  34129. back: {
  34130. height: math.unit(3 + 10/12, "feet"),
  34131. weight: math.unit(90, "lb"),
  34132. name: "Back",
  34133. image: {
  34134. source: "./media/characters/taivas-ensim/back.svg",
  34135. extra: 1355/1247,
  34136. bottom: 11/1366
  34137. }
  34138. },
  34139. frontNsfw: {
  34140. height: math.unit(3 + 10/12, "feet"),
  34141. weight: math.unit(90, "lb"),
  34142. name: "Front (NSFW)",
  34143. image: {
  34144. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34145. extra: 1327/1216,
  34146. bottom: 96/1423
  34147. }
  34148. },
  34149. backNsfw: {
  34150. height: math.unit(3 + 10/12, "feet"),
  34151. weight: math.unit(90, "lb"),
  34152. name: "Back (NSFW)",
  34153. image: {
  34154. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34155. extra: 1355/1247,
  34156. bottom: 11/1366
  34157. }
  34158. },
  34159. },
  34160. [
  34161. {
  34162. name: "Normal",
  34163. height: math.unit(3 + 10/12, "feet"),
  34164. default: true
  34165. },
  34166. ]
  34167. ))
  34168. characterMakers.push(() => makeCharacter(
  34169. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34170. {
  34171. front: {
  34172. height: math.unit(9 + 6/12, "feet"),
  34173. weight: math.unit(940, "lb"),
  34174. name: "Front",
  34175. image: {
  34176. source: "./media/characters/byliss/front.svg",
  34177. extra: 1327/1290,
  34178. bottom: 82/1409
  34179. }
  34180. },
  34181. back: {
  34182. height: math.unit(9 + 6/12, "feet"),
  34183. weight: math.unit(940, "lb"),
  34184. name: "Back",
  34185. image: {
  34186. source: "./media/characters/byliss/back.svg",
  34187. extra: 1376/1349,
  34188. bottom: 9/1385
  34189. }
  34190. },
  34191. frontNsfw: {
  34192. height: math.unit(9 + 6/12, "feet"),
  34193. weight: math.unit(940, "lb"),
  34194. name: "Front (NSFW)",
  34195. image: {
  34196. source: "./media/characters/byliss/front-nsfw.svg",
  34197. extra: 1327/1290,
  34198. bottom: 82/1409
  34199. }
  34200. },
  34201. backNsfw: {
  34202. height: math.unit(9 + 6/12, "feet"),
  34203. weight: math.unit(940, "lb"),
  34204. name: "Back (NSFW)",
  34205. image: {
  34206. source: "./media/characters/byliss/back-nsfw.svg",
  34207. extra: 1376/1349,
  34208. bottom: 9/1385
  34209. }
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Normal",
  34215. height: math.unit(9 + 6/12, "feet"),
  34216. default: true
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(5 + 2/12, "feet"),
  34225. weight: math.unit(200, "lb"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/noraly/front.svg",
  34229. extra: 4985/4773,
  34230. bottom: 150/5135
  34231. }
  34232. },
  34233. full: {
  34234. height: math.unit(5 + 2/12, "feet"),
  34235. weight: math.unit(164, "lb"),
  34236. name: "Full",
  34237. image: {
  34238. source: "./media/characters/noraly/full.svg",
  34239. extra: 1114/1059,
  34240. bottom: 35/1149
  34241. }
  34242. },
  34243. fuller: {
  34244. height: math.unit(5 + 2/12, "feet"),
  34245. weight: math.unit(230, "lb"),
  34246. name: "Fuller",
  34247. image: {
  34248. source: "./media/characters/noraly/fuller.svg",
  34249. extra: 1114/1059,
  34250. bottom: 35/1149
  34251. }
  34252. },
  34253. fullest: {
  34254. height: math.unit(5 + 2/12, "feet"),
  34255. weight: math.unit(300, "lb"),
  34256. name: "Fullest",
  34257. image: {
  34258. source: "./media/characters/noraly/fullest.svg",
  34259. extra: 1114/1059,
  34260. bottom: 35/1149
  34261. }
  34262. },
  34263. },
  34264. [
  34265. {
  34266. name: "Normal",
  34267. height: math.unit(5 + 2/12, "feet"),
  34268. default: true
  34269. },
  34270. ]
  34271. ))
  34272. characterMakers.push(() => makeCharacter(
  34273. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34274. {
  34275. front: {
  34276. height: math.unit(5 + 2/12, "feet"),
  34277. weight: math.unit(210, "lb"),
  34278. name: "Front",
  34279. image: {
  34280. source: "./media/characters/pera/front.svg",
  34281. extra: 1560/1531,
  34282. bottom: 165/1725
  34283. }
  34284. },
  34285. back: {
  34286. height: math.unit(5 + 2/12, "feet"),
  34287. weight: math.unit(210, "lb"),
  34288. name: "Back",
  34289. image: {
  34290. source: "./media/characters/pera/back.svg",
  34291. extra: 1523/1493,
  34292. bottom: 152/1675
  34293. }
  34294. },
  34295. dick: {
  34296. height: math.unit(2.4, "feet"),
  34297. name: "Dick",
  34298. image: {
  34299. source: "./media/characters/pera/dick.svg"
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(5 + 2/12, "feet"),
  34307. default: true
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34313. {
  34314. front: {
  34315. height: math.unit(12, "feet"),
  34316. weight: math.unit(3200, "lb"),
  34317. name: "Front",
  34318. image: {
  34319. source: "./media/characters/julian/front.svg",
  34320. extra: 2962/2701,
  34321. bottom: 184/3146
  34322. }
  34323. },
  34324. maw: {
  34325. height: math.unit(5.35, "feet"),
  34326. name: "Maw",
  34327. image: {
  34328. source: "./media/characters/julian/maw.svg"
  34329. }
  34330. },
  34331. paw: {
  34332. height: math.unit(3.07, "feet"),
  34333. name: "Paw",
  34334. image: {
  34335. source: "./media/characters/julian/paw.svg"
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Default",
  34342. height: math.unit(12, "feet"),
  34343. default: true
  34344. },
  34345. {
  34346. name: "Big",
  34347. height: math.unit(50, "feet")
  34348. },
  34349. {
  34350. name: "Really Big",
  34351. height: math.unit(1, "mile")
  34352. },
  34353. {
  34354. name: "Extremely Big",
  34355. height: math.unit(100, "miles")
  34356. },
  34357. {
  34358. name: "Planet Hugger",
  34359. height: math.unit(200, "megameters")
  34360. },
  34361. {
  34362. name: "Unreasonably Big",
  34363. height: math.unit(1e300, "meters")
  34364. },
  34365. ]
  34366. ))
  34367. characterMakers.push(() => makeCharacter(
  34368. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34369. {
  34370. solgooleo: {
  34371. height: math.unit(4, "meters"),
  34372. weight: math.unit(6000*1.5, "kg"),
  34373. volume: math.unit(6000, "liters"),
  34374. name: "Solgooleo",
  34375. image: {
  34376. source: "./media/characters/pi/solgooleo.svg",
  34377. extra: 388/331,
  34378. bottom: 29/417
  34379. }
  34380. },
  34381. },
  34382. [
  34383. {
  34384. name: "Normal",
  34385. height: math.unit(4, "meters"),
  34386. default: true
  34387. },
  34388. ]
  34389. ))
  34390. characterMakers.push(() => makeCharacter(
  34391. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34392. {
  34393. front: {
  34394. height: math.unit(8, "feet"),
  34395. weight: math.unit(4, "tons"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/shaun/front.svg",
  34399. extra: 503/495,
  34400. bottom: 20/523
  34401. }
  34402. },
  34403. back: {
  34404. height: math.unit(8, "feet"),
  34405. weight: math.unit(4, "tons"),
  34406. name: "Back",
  34407. image: {
  34408. source: "./media/characters/shaun/back.svg",
  34409. extra: 487/480,
  34410. bottom: 20/507
  34411. }
  34412. },
  34413. },
  34414. [
  34415. {
  34416. name: "Lorg",
  34417. height: math.unit(8, "feet"),
  34418. default: true
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34424. {
  34425. frontAnthro: {
  34426. height: math.unit(7, "feet"),
  34427. name: "Front",
  34428. image: {
  34429. source: "./media/characters/sini/front-anthro.svg",
  34430. extra: 726/678,
  34431. bottom: 35/761
  34432. },
  34433. form: "anthro",
  34434. default: true
  34435. },
  34436. backAnthro: {
  34437. height: math.unit(7, "feet"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/sini/back-anthro.svg",
  34441. extra: 743/701,
  34442. bottom: 12/755
  34443. },
  34444. form: "anthro",
  34445. },
  34446. frontAnthroNsfw: {
  34447. height: math.unit(7, "feet"),
  34448. name: "Front (NSFW)",
  34449. image: {
  34450. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34451. extra: 726/678,
  34452. bottom: 35/761
  34453. },
  34454. form: "anthro"
  34455. },
  34456. backAnthroNsfw: {
  34457. height: math.unit(7, "feet"),
  34458. name: "Back (NSFW)",
  34459. image: {
  34460. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34461. extra: 743/701,
  34462. bottom: 12/755
  34463. },
  34464. form: "anthro",
  34465. },
  34466. mawAnthro: {
  34467. height: math.unit(2.14, "feet"),
  34468. name: "Maw",
  34469. image: {
  34470. source: "./media/characters/sini/maw-anthro.svg"
  34471. },
  34472. form: "anthro"
  34473. },
  34474. dick: {
  34475. height: math.unit(1.45, "feet"),
  34476. name: "Dick",
  34477. image: {
  34478. source: "./media/characters/sini/dick-anthro.svg"
  34479. },
  34480. form: "anthro"
  34481. },
  34482. feral: {
  34483. height: math.unit(16, "feet"),
  34484. name: "Feral",
  34485. image: {
  34486. source: "./media/characters/sini/feral.svg",
  34487. extra: 814/605,
  34488. bottom: 11/825
  34489. },
  34490. form: "feral",
  34491. default: true
  34492. },
  34493. feralNsfw: {
  34494. height: math.unit(16, "feet"),
  34495. name: "Feral (NSFW)",
  34496. image: {
  34497. source: "./media/characters/sini/feral-nsfw.svg",
  34498. extra: 814/605,
  34499. bottom: 11/825
  34500. },
  34501. form: "feral"
  34502. },
  34503. mawFeral: {
  34504. height: math.unit(5.66, "feet"),
  34505. name: "Maw",
  34506. image: {
  34507. source: "./media/characters/sini/maw-feral.svg"
  34508. },
  34509. form: "feral",
  34510. },
  34511. pawFeral: {
  34512. height: math.unit(5.17, "feet"),
  34513. name: "Paw",
  34514. image: {
  34515. source: "./media/characters/sini/paw-feral.svg"
  34516. },
  34517. form: "feral",
  34518. },
  34519. rumpFeral: {
  34520. height: math.unit(13.11, "feet"),
  34521. name: "Rump",
  34522. image: {
  34523. source: "./media/characters/sini/rump-feral.svg"
  34524. },
  34525. form: "feral",
  34526. },
  34527. dickFeral: {
  34528. height: math.unit(1, "feet"),
  34529. name: "Dick",
  34530. image: {
  34531. source: "./media/characters/sini/dick-feral.svg"
  34532. },
  34533. form: "feral",
  34534. },
  34535. eyeFeral: {
  34536. height: math.unit(1.23, "feet"),
  34537. name: "Eye",
  34538. image: {
  34539. source: "./media/characters/sini/eye-feral.svg"
  34540. },
  34541. form: "feral",
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(7, "feet"),
  34548. default: true,
  34549. form: "anthro"
  34550. },
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(16, "feet"),
  34554. default: true,
  34555. form: "feral"
  34556. },
  34557. ],
  34558. {
  34559. "anthro": {
  34560. name: "Anthro",
  34561. default: true
  34562. },
  34563. "feral": {
  34564. name: "Feral",
  34565. }
  34566. }
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34570. {
  34571. side: {
  34572. height: math.unit(47.2, "meters"),
  34573. weight: math.unit(10000, "tons"),
  34574. name: "Side",
  34575. image: {
  34576. source: "./media/characters/raylldo/side.svg",
  34577. extra: 2363/642,
  34578. bottom: 221/2584
  34579. }
  34580. },
  34581. top: {
  34582. height: math.unit(240, "meters"),
  34583. weight: math.unit(10000, "tons"),
  34584. name: "Top",
  34585. image: {
  34586. source: "./media/characters/raylldo/top.svg"
  34587. }
  34588. },
  34589. bottom: {
  34590. height: math.unit(240, "meters"),
  34591. weight: math.unit(10000, "tons"),
  34592. name: "Bottom",
  34593. image: {
  34594. source: "./media/characters/raylldo/bottom.svg"
  34595. }
  34596. },
  34597. head: {
  34598. height: math.unit(38.6, "meters"),
  34599. name: "Head",
  34600. image: {
  34601. source: "./media/characters/raylldo/head.svg",
  34602. extra: 1335/1112,
  34603. bottom: 0/1335
  34604. }
  34605. },
  34606. maw: {
  34607. height: math.unit(16.37, "meters"),
  34608. name: "Maw",
  34609. image: {
  34610. source: "./media/characters/raylldo/maw.svg",
  34611. extra: 883/660,
  34612. bottom: 0/883
  34613. },
  34614. extraAttributes: {
  34615. preyCapacity: {
  34616. name: "Capacity",
  34617. power: 3,
  34618. type: "volume",
  34619. base: math.unit(1000, "people")
  34620. },
  34621. tongueSize: {
  34622. name: "Tongue Size",
  34623. power: 2,
  34624. type: "area",
  34625. base: math.unit(21, "m^2")
  34626. }
  34627. }
  34628. },
  34629. forepaw: {
  34630. height: math.unit(18, "meters"),
  34631. name: "Forepaw",
  34632. image: {
  34633. source: "./media/characters/raylldo/forepaw.svg"
  34634. }
  34635. },
  34636. hindpaw: {
  34637. height: math.unit(23, "meters"),
  34638. name: "Hindpaw",
  34639. image: {
  34640. source: "./media/characters/raylldo/hindpaw.svg"
  34641. }
  34642. },
  34643. genitals: {
  34644. height: math.unit(42, "meters"),
  34645. name: "Genitals",
  34646. image: {
  34647. source: "./media/characters/raylldo/genitals.svg"
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Normal",
  34654. height: math.unit(47.2, "meters"),
  34655. default: true
  34656. },
  34657. ]
  34658. ))
  34659. characterMakers.push(() => makeCharacter(
  34660. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34661. {
  34662. anthroFront: {
  34663. height: math.unit(9, "feet"),
  34664. weight: math.unit(600, "lb"),
  34665. name: "Anthro (Front)",
  34666. image: {
  34667. source: "./media/characters/glint/anthro-front.svg",
  34668. extra: 1097/1018,
  34669. bottom: 28/1125
  34670. }
  34671. },
  34672. anthroBack: {
  34673. height: math.unit(9, "feet"),
  34674. weight: math.unit(600, "lb"),
  34675. name: "Anthro (Back)",
  34676. image: {
  34677. source: "./media/characters/glint/anthro-back.svg",
  34678. extra: 1154/997,
  34679. bottom: 36/1190
  34680. }
  34681. },
  34682. feral: {
  34683. height: math.unit(11, "feet"),
  34684. weight: math.unit(50000, "lb"),
  34685. name: "Feral",
  34686. image: {
  34687. source: "./media/characters/glint/feral.svg",
  34688. extra: 3035/1585,
  34689. bottom: 1169/4204
  34690. }
  34691. },
  34692. dickAnthro: {
  34693. height: math.unit(0.7, "meters"),
  34694. name: "Dick (Anthro)",
  34695. image: {
  34696. source: "./media/characters/glint/dick-anthro.svg"
  34697. }
  34698. },
  34699. dickFeral: {
  34700. height: math.unit(2.65, "meters"),
  34701. name: "Dick (Feral)",
  34702. image: {
  34703. source: "./media/characters/glint/dick-feral.svg"
  34704. }
  34705. },
  34706. slitHidden: {
  34707. height: math.unit(5.85, "meters"),
  34708. name: "Slit (Hidden)",
  34709. image: {
  34710. source: "./media/characters/glint/slit-hidden.svg"
  34711. }
  34712. },
  34713. slitErect: {
  34714. height: math.unit(5.85, "meters"),
  34715. name: "Slit (Erect)",
  34716. image: {
  34717. source: "./media/characters/glint/slit-erect.svg"
  34718. }
  34719. },
  34720. mawAnthro: {
  34721. height: math.unit(0.63, "meters"),
  34722. name: "Maw (Anthro)",
  34723. image: {
  34724. source: "./media/characters/glint/maw.svg"
  34725. }
  34726. },
  34727. mawFeral: {
  34728. height: math.unit(2.89, "meters"),
  34729. name: "Maw (Feral)",
  34730. image: {
  34731. source: "./media/characters/glint/maw.svg"
  34732. }
  34733. },
  34734. },
  34735. [
  34736. {
  34737. name: "Normal",
  34738. height: math.unit(9, "feet"),
  34739. default: true
  34740. },
  34741. ]
  34742. ))
  34743. characterMakers.push(() => makeCharacter(
  34744. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34745. {
  34746. side: {
  34747. height: math.unit(15, "feet"),
  34748. weight: math.unit(5000, "kg"),
  34749. name: "Side",
  34750. image: {
  34751. source: "./media/characters/kairne/side.svg",
  34752. extra: 979/811,
  34753. bottom: 13/992
  34754. }
  34755. },
  34756. front: {
  34757. height: math.unit(15, "feet"),
  34758. weight: math.unit(5000, "kg"),
  34759. name: "Front",
  34760. image: {
  34761. source: "./media/characters/kairne/front.svg",
  34762. extra: 908/814,
  34763. bottom: 26/934
  34764. }
  34765. },
  34766. sideNsfw: {
  34767. height: math.unit(15, "feet"),
  34768. weight: math.unit(5000, "kg"),
  34769. name: "Side (NSFW)",
  34770. image: {
  34771. source: "./media/characters/kairne/side-nsfw.svg",
  34772. extra: 979/811,
  34773. bottom: 13/992
  34774. }
  34775. },
  34776. frontNsfw: {
  34777. height: math.unit(15, "feet"),
  34778. weight: math.unit(5000, "kg"),
  34779. name: "Front (NSFW)",
  34780. image: {
  34781. source: "./media/characters/kairne/front-nsfw.svg",
  34782. extra: 908/814,
  34783. bottom: 26/934
  34784. }
  34785. },
  34786. dickCaged: {
  34787. height: math.unit(0.65, "meters"),
  34788. name: "Dick-caged",
  34789. image: {
  34790. source: "./media/characters/kairne/dick-caged.svg"
  34791. }
  34792. },
  34793. dick: {
  34794. height: math.unit(0.79, "meters"),
  34795. name: "Dick",
  34796. image: {
  34797. source: "./media/characters/kairne/dick.svg"
  34798. }
  34799. },
  34800. genitals: {
  34801. height: math.unit(1.29, "meters"),
  34802. name: "Genitals",
  34803. image: {
  34804. source: "./media/characters/kairne/genitals.svg"
  34805. }
  34806. },
  34807. maw: {
  34808. height: math.unit(1.73, "meters"),
  34809. name: "Maw",
  34810. image: {
  34811. source: "./media/characters/kairne/maw.svg"
  34812. }
  34813. },
  34814. },
  34815. [
  34816. {
  34817. name: "Normal",
  34818. height: math.unit(15, "feet"),
  34819. default: true
  34820. },
  34821. ]
  34822. ))
  34823. characterMakers.push(() => makeCharacter(
  34824. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34825. {
  34826. front: {
  34827. height: math.unit(5 + 8/12, "feet"),
  34828. weight: math.unit(139, "lb"),
  34829. name: "Front",
  34830. image: {
  34831. source: "./media/characters/biscuit-jackal/front.svg",
  34832. extra: 2106/1961,
  34833. bottom: 58/2164
  34834. }
  34835. },
  34836. back: {
  34837. height: math.unit(5 + 8/12, "feet"),
  34838. weight: math.unit(139, "lb"),
  34839. name: "Back",
  34840. image: {
  34841. source: "./media/characters/biscuit-jackal/back.svg",
  34842. extra: 2132/1976,
  34843. bottom: 57/2189
  34844. }
  34845. },
  34846. werejackal: {
  34847. height: math.unit(6 + 3/12, "feet"),
  34848. weight: math.unit(188, "lb"),
  34849. name: "Werejackal",
  34850. image: {
  34851. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34852. extra: 2373/2178,
  34853. bottom: 53/2426
  34854. }
  34855. },
  34856. },
  34857. [
  34858. {
  34859. name: "Normal",
  34860. height: math.unit(5 + 8/12, "feet"),
  34861. default: true
  34862. },
  34863. ]
  34864. ))
  34865. characterMakers.push(() => makeCharacter(
  34866. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34867. {
  34868. front: {
  34869. height: math.unit(140, "cm"),
  34870. weight: math.unit(45, "kg"),
  34871. name: "Front",
  34872. image: {
  34873. source: "./media/characters/tayra-white/front.svg",
  34874. extra: 2229/2192,
  34875. bottom: 75/2304
  34876. }
  34877. },
  34878. },
  34879. [
  34880. {
  34881. name: "Normal",
  34882. height: math.unit(140, "cm"),
  34883. default: true
  34884. },
  34885. ]
  34886. ))
  34887. characterMakers.push(() => makeCharacter(
  34888. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34889. {
  34890. front: {
  34891. height: math.unit(4 + 5/12, "feet"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/scoop/front.svg",
  34895. extra: 1257/1136,
  34896. bottom: 69/1326
  34897. }
  34898. },
  34899. back: {
  34900. height: math.unit(4 + 5/12, "feet"),
  34901. name: "Back",
  34902. image: {
  34903. source: "./media/characters/scoop/back.svg",
  34904. extra: 1321/1152,
  34905. bottom: 32/1353
  34906. }
  34907. },
  34908. maw: {
  34909. height: math.unit(0.68, "feet"),
  34910. name: "Maw",
  34911. image: {
  34912. source: "./media/characters/scoop/maw.svg"
  34913. }
  34914. },
  34915. },
  34916. [
  34917. {
  34918. name: "Really Small",
  34919. height: math.unit(1, "mm")
  34920. },
  34921. {
  34922. name: "Micro",
  34923. height: math.unit(1, "inch")
  34924. },
  34925. {
  34926. name: "Normal",
  34927. height: math.unit(4 + 5/12, "feet"),
  34928. default: true
  34929. },
  34930. {
  34931. name: "Macro",
  34932. height: math.unit(200, "feet")
  34933. },
  34934. {
  34935. name: "Megamacro",
  34936. height: math.unit(3240, "feet")
  34937. },
  34938. {
  34939. name: "Teramacro",
  34940. height: math.unit(2500, "miles")
  34941. },
  34942. ]
  34943. ))
  34944. characterMakers.push(() => makeCharacter(
  34945. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34946. {
  34947. front: {
  34948. height: math.unit(15 + 7/12, "feet"),
  34949. weight: math.unit(1150, "tons"),
  34950. name: "Front",
  34951. image: {
  34952. source: "./media/characters/saphinara/front.svg",
  34953. extra: 1837/1643,
  34954. bottom: 84/1921
  34955. },
  34956. form: "normal",
  34957. default: true
  34958. },
  34959. side: {
  34960. height: math.unit(15 + 7/12, "feet"),
  34961. weight: math.unit(1150, "tons"),
  34962. name: "Side",
  34963. image: {
  34964. source: "./media/characters/saphinara/side.svg",
  34965. extra: 605/547,
  34966. bottom: 6/611
  34967. },
  34968. form: "normal"
  34969. },
  34970. back: {
  34971. height: math.unit(15 + 7/12, "feet"),
  34972. weight: math.unit(1150, "tons"),
  34973. name: "Back",
  34974. image: {
  34975. source: "./media/characters/saphinara/back.svg",
  34976. extra: 591/531,
  34977. bottom: 13/604
  34978. },
  34979. form: "normal"
  34980. },
  34981. frontTail: {
  34982. height: math.unit(15 + 7/12, "feet"),
  34983. weight: math.unit(1150, "tons"),
  34984. name: "Front (Full Tail)",
  34985. image: {
  34986. source: "./media/characters/saphinara/front-tail.svg",
  34987. extra: 2256/1630,
  34988. bottom: 261/2517
  34989. },
  34990. form: "normal"
  34991. },
  34992. insides: {
  34993. height: math.unit(11.92, "feet"),
  34994. name: "Insides",
  34995. image: {
  34996. source: "./media/characters/saphinara/insides.svg"
  34997. },
  34998. form: "normal"
  34999. },
  35000. head: {
  35001. height: math.unit(4.17, "feet"),
  35002. name: "Head",
  35003. image: {
  35004. source: "./media/characters/saphinara/head.svg"
  35005. },
  35006. form: "normal"
  35007. },
  35008. tongue: {
  35009. height: math.unit(4.60, "feet"),
  35010. name: "Tongue",
  35011. image: {
  35012. source: "./media/characters/saphinara/tongue.svg"
  35013. },
  35014. form: "normal"
  35015. },
  35016. headEnraged: {
  35017. height: math.unit(5.55, "feet"),
  35018. name: "Head (Enraged)",
  35019. image: {
  35020. source: "./media/characters/saphinara/head-enraged.svg"
  35021. },
  35022. form: "normal"
  35023. },
  35024. wings: {
  35025. height: math.unit(11.95, "feet"),
  35026. name: "Wings",
  35027. image: {
  35028. source: "./media/characters/saphinara/wings.svg"
  35029. },
  35030. form: "normal"
  35031. },
  35032. feathers: {
  35033. height: math.unit(8.92, "feet"),
  35034. name: "Feathers",
  35035. image: {
  35036. source: "./media/characters/saphinara/feathers.svg"
  35037. },
  35038. form: "normal"
  35039. },
  35040. shackles: {
  35041. height: math.unit(2, "feet"),
  35042. name: "Shackles",
  35043. image: {
  35044. source: "./media/characters/saphinara/shackles.svg"
  35045. },
  35046. form: "normal"
  35047. },
  35048. eyes: {
  35049. height: math.unit(1.331, "feet"),
  35050. name: "Eyes",
  35051. image: {
  35052. source: "./media/characters/saphinara/eyes.svg"
  35053. },
  35054. form: "normal"
  35055. },
  35056. eyesEnraged: {
  35057. height: math.unit(1.331, "feet"),
  35058. name: "Eyes (Enraged)",
  35059. image: {
  35060. source: "./media/characters/saphinara/eyes-enraged.svg"
  35061. },
  35062. form: "normal"
  35063. },
  35064. trueFormSide: {
  35065. height: math.unit(200, "feet"),
  35066. weight: math.unit(1e7, "tons"),
  35067. name: "Side",
  35068. image: {
  35069. source: "./media/characters/saphinara/true-form-side.svg",
  35070. extra: 1399/770,
  35071. bottom: 97/1496
  35072. },
  35073. form: "true-form",
  35074. default: true
  35075. },
  35076. trueFormMaw: {
  35077. height: math.unit(71.5, "feet"),
  35078. name: "Maw",
  35079. image: {
  35080. source: "./media/characters/saphinara/true-form-maw.svg",
  35081. extra: 2302/1453,
  35082. bottom: 0/2302
  35083. },
  35084. form: "true-form"
  35085. },
  35086. meowberusSide: {
  35087. height: math.unit(75, "feet"),
  35088. weight: math.unit(180000, "kg"),
  35089. preyCapacity: math.unit(50000, "people"),
  35090. name: "Side",
  35091. image: {
  35092. source: "./media/characters/saphinara/meowberus-side.svg",
  35093. extra: 1400/711,
  35094. bottom: 126/1526
  35095. },
  35096. form: "meowberus",
  35097. extraAttributes: {
  35098. "pawArea": {
  35099. name: "Paw Size",
  35100. power: 2,
  35101. type: "area",
  35102. base: math.unit(35, "m^2")
  35103. }
  35104. }
  35105. },
  35106. },
  35107. [
  35108. {
  35109. name: "Normal",
  35110. height: math.unit(15 + 7/12, "feet"),
  35111. default: true,
  35112. form: "normal"
  35113. },
  35114. {
  35115. name: "Angry",
  35116. height: math.unit(30 + 6/12, "feet"),
  35117. form: "normal"
  35118. },
  35119. {
  35120. name: "Enraged",
  35121. height: math.unit(102 + 1/12, "feet"),
  35122. form: "normal"
  35123. },
  35124. {
  35125. name: "True",
  35126. height: math.unit(200, "feet"),
  35127. default: true,
  35128. form: "true-form"
  35129. },
  35130. {
  35131. name: "Normal",
  35132. height: math.unit(75, "feet"),
  35133. default: true,
  35134. form: "meowberus"
  35135. },
  35136. ],
  35137. {
  35138. "normal": {
  35139. name: "Normal",
  35140. default: true
  35141. },
  35142. "true-form": {
  35143. name: "True Form"
  35144. },
  35145. "meowberus": {
  35146. name: "Meowberus",
  35147. },
  35148. }
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(6 + 8/12, "feet"),
  35155. weight: math.unit(300, "lb"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/jrain/front.svg",
  35159. extra: 3039/2865,
  35160. bottom: 399/3438
  35161. }
  35162. },
  35163. back: {
  35164. height: math.unit(6 + 8/12, "feet"),
  35165. weight: math.unit(300, "lb"),
  35166. name: "Back",
  35167. image: {
  35168. source: "./media/characters/jrain/back.svg",
  35169. extra: 3089/2938,
  35170. bottom: 172/3261
  35171. }
  35172. },
  35173. head: {
  35174. height: math.unit(2.14, "feet"),
  35175. name: "Head",
  35176. image: {
  35177. source: "./media/characters/jrain/head.svg"
  35178. }
  35179. },
  35180. maw: {
  35181. height: math.unit(1.77, "feet"),
  35182. name: "Maw",
  35183. image: {
  35184. source: "./media/characters/jrain/maw.svg"
  35185. }
  35186. },
  35187. leftHand: {
  35188. height: math.unit(1.1, "feet"),
  35189. name: "Left Hand",
  35190. image: {
  35191. source: "./media/characters/jrain/left-hand.svg"
  35192. }
  35193. },
  35194. rightHand: {
  35195. height: math.unit(1.1, "feet"),
  35196. name: "Right Hand",
  35197. image: {
  35198. source: "./media/characters/jrain/right-hand.svg"
  35199. }
  35200. },
  35201. eye: {
  35202. height: math.unit(0.35, "feet"),
  35203. name: "Eye",
  35204. image: {
  35205. source: "./media/characters/jrain/eye.svg"
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(6 + 8/12, "feet"),
  35213. default: true
  35214. },
  35215. {
  35216. name: "Casually Large",
  35217. height: math.unit(25, "feet")
  35218. },
  35219. {
  35220. name: "Giant",
  35221. height: math.unit(100, "feet")
  35222. },
  35223. {
  35224. name: "Kaiju",
  35225. height: math.unit(300, "feet")
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35231. {
  35232. dragon: {
  35233. height: math.unit(5, "meters"),
  35234. name: "Dragon",
  35235. image: {
  35236. source: "./media/characters/sabrina/dragon.svg",
  35237. extra: 3670 / 2365,
  35238. bottom: 333 / 4003
  35239. }
  35240. },
  35241. gryphon: {
  35242. height: math.unit(3, "meters"),
  35243. name: "Gryphon",
  35244. image: {
  35245. source: "./media/characters/sabrina/gryphon.svg",
  35246. extra: 1576 / 945,
  35247. bottom: 71 / 1647
  35248. }
  35249. },
  35250. snake: {
  35251. height: math.unit(12, "meters"),
  35252. name: "Snake",
  35253. image: {
  35254. source: "./media/characters/sabrina/snake.svg",
  35255. extra: 1758 / 1320,
  35256. bottom: 186 / 1944
  35257. }
  35258. },
  35259. collar: {
  35260. height: math.unit(1.86, "meters"),
  35261. name: "Collar",
  35262. image: {
  35263. source: "./media/characters/sabrina/collar.svg"
  35264. }
  35265. },
  35266. eye: {
  35267. height: math.unit(0.53, "meters"),
  35268. name: "Eye",
  35269. image: {
  35270. source: "./media/characters/sabrina/eye.svg"
  35271. }
  35272. },
  35273. foot: {
  35274. height: math.unit(1.86, "meters"),
  35275. name: "Foot",
  35276. image: {
  35277. source: "./media/characters/sabrina/foot.svg"
  35278. }
  35279. },
  35280. hand: {
  35281. height: math.unit(1.32, "meters"),
  35282. name: "Hand",
  35283. image: {
  35284. source: "./media/characters/sabrina/hand.svg"
  35285. }
  35286. },
  35287. head: {
  35288. height: math.unit(2.44, "meters"),
  35289. name: "Head",
  35290. image: {
  35291. source: "./media/characters/sabrina/head.svg"
  35292. }
  35293. },
  35294. headAngry: {
  35295. height: math.unit(2.44, "meters"),
  35296. name: "Head (Angry))",
  35297. image: {
  35298. source: "./media/characters/sabrina/head-angry.svg"
  35299. }
  35300. },
  35301. maw: {
  35302. height: math.unit(1.65, "meters"),
  35303. name: "Maw",
  35304. image: {
  35305. source: "./media/characters/sabrina/maw.svg"
  35306. }
  35307. },
  35308. spikes: {
  35309. height: math.unit(1.69, "meters"),
  35310. name: "Spikes",
  35311. image: {
  35312. source: "./media/characters/sabrina/spikes.svg"
  35313. }
  35314. },
  35315. stomach: {
  35316. height: math.unit(1.15, "meters"),
  35317. name: "Stomach",
  35318. image: {
  35319. source: "./media/characters/sabrina/stomach.svg"
  35320. }
  35321. },
  35322. tongue: {
  35323. height: math.unit(1.27, "meters"),
  35324. name: "Tongue",
  35325. image: {
  35326. source: "./media/characters/sabrina/tongue.svg"
  35327. }
  35328. },
  35329. wingDorsal: {
  35330. height: math.unit(4.85, "meters"),
  35331. name: "Wing (Dorsal)",
  35332. image: {
  35333. source: "./media/characters/sabrina/wing-dorsal.svg"
  35334. }
  35335. },
  35336. wingVentral: {
  35337. height: math.unit(4.85, "meters"),
  35338. name: "Wing (Ventral)",
  35339. image: {
  35340. source: "./media/characters/sabrina/wing-ventral.svg"
  35341. }
  35342. },
  35343. },
  35344. [
  35345. {
  35346. name: "Normal",
  35347. height: math.unit(5, "meters"),
  35348. default: true
  35349. },
  35350. ]
  35351. ))
  35352. characterMakers.push(() => makeCharacter(
  35353. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35354. {
  35355. frontMaid: {
  35356. height: math.unit(5 + 5/12, "feet"),
  35357. weight: math.unit(130, "lb"),
  35358. name: "Front (Maid)",
  35359. image: {
  35360. source: "./media/characters/midnight-tales/front-maid.svg",
  35361. extra: 489/454,
  35362. bottom: 61/550
  35363. }
  35364. },
  35365. frontFormal: {
  35366. height: math.unit(5 + 5/12, "feet"),
  35367. weight: math.unit(130, "lb"),
  35368. name: "Front (Formal)",
  35369. image: {
  35370. source: "./media/characters/midnight-tales/front-formal.svg",
  35371. extra: 489/454,
  35372. bottom: 61/550
  35373. }
  35374. },
  35375. back: {
  35376. height: math.unit(5 + 5/12, "feet"),
  35377. weight: math.unit(130, "lb"),
  35378. name: "Back",
  35379. image: {
  35380. source: "./media/characters/midnight-tales/back.svg",
  35381. extra: 498/456,
  35382. bottom: 33/531
  35383. }
  35384. },
  35385. frontBeast: {
  35386. height: math.unit(40, "feet"),
  35387. weight: math.unit(64000, "lb"),
  35388. name: "Front (Beast)",
  35389. image: {
  35390. source: "./media/characters/midnight-tales/front-beast.svg",
  35391. extra: 927/860,
  35392. bottom: 53/980
  35393. }
  35394. },
  35395. backBeast: {
  35396. height: math.unit(40, "feet"),
  35397. weight: math.unit(64000, "lb"),
  35398. name: "Back (Beast)",
  35399. image: {
  35400. source: "./media/characters/midnight-tales/back-beast.svg",
  35401. extra: 929/855,
  35402. bottom: 16/945
  35403. }
  35404. },
  35405. footBeast: {
  35406. height: math.unit(6.7, "feet"),
  35407. name: "Foot (Beast)",
  35408. image: {
  35409. source: "./media/characters/midnight-tales/foot-beast.svg"
  35410. }
  35411. },
  35412. headBeast: {
  35413. height: math.unit(8, "feet"),
  35414. name: "Head (Beast)",
  35415. image: {
  35416. source: "./media/characters/midnight-tales/head-beast.svg"
  35417. }
  35418. },
  35419. },
  35420. [
  35421. {
  35422. name: "Normal",
  35423. height: math.unit(5 + 5 / 12, "feet"),
  35424. default: true
  35425. },
  35426. {
  35427. name: "Macro",
  35428. height: math.unit(25, "feet")
  35429. },
  35430. ]
  35431. ))
  35432. characterMakers.push(() => makeCharacter(
  35433. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35434. {
  35435. front: {
  35436. height: math.unit(5 + 10/12, "feet"),
  35437. name: "Front",
  35438. image: {
  35439. source: "./media/characters/argon/front.svg",
  35440. extra: 2009/1935,
  35441. bottom: 118/2127
  35442. }
  35443. },
  35444. back: {
  35445. height: math.unit(5 + 10/12, "feet"),
  35446. name: "Back",
  35447. image: {
  35448. source: "./media/characters/argon/back.svg",
  35449. extra: 2047/1992,
  35450. bottom: 20/2067
  35451. }
  35452. },
  35453. frontDressed: {
  35454. height: math.unit(5 + 10/12, "feet"),
  35455. name: "Front (Dressed)",
  35456. image: {
  35457. source: "./media/characters/argon/front-dressed.svg",
  35458. extra: 2009/1935,
  35459. bottom: 118/2127
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(5 + 10/12, "feet"),
  35467. default: true
  35468. },
  35469. ]
  35470. ))
  35471. characterMakers.push(() => makeCharacter(
  35472. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35473. {
  35474. front: {
  35475. height: math.unit(8 + 6/12, "feet"),
  35476. weight: math.unit(1150, "lb"),
  35477. name: "Front",
  35478. image: {
  35479. source: "./media/characters/kichi/front.svg",
  35480. extra: 1267/1164,
  35481. bottom: 61/1328
  35482. }
  35483. },
  35484. back: {
  35485. height: math.unit(8 + 6/12, "feet"),
  35486. weight: math.unit(1150, "lb"),
  35487. name: "Back",
  35488. image: {
  35489. source: "./media/characters/kichi/back.svg",
  35490. extra: 1273/1166,
  35491. bottom: 33/1306
  35492. }
  35493. },
  35494. },
  35495. [
  35496. {
  35497. name: "Normal",
  35498. height: math.unit(8 + 6/12, "feet"),
  35499. default: true
  35500. },
  35501. ]
  35502. ))
  35503. characterMakers.push(() => makeCharacter(
  35504. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35505. {
  35506. front: {
  35507. height: math.unit(6, "feet"),
  35508. weight: math.unit(210, "lb"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/manetel-greyscale/front.svg",
  35512. extra: 350/312,
  35513. bottom: 8/358
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Micro",
  35520. height: math.unit(2, "inches")
  35521. },
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(6, "feet"),
  35525. default: true
  35526. },
  35527. {
  35528. name: "Minimacro",
  35529. height: math.unit(17, "feet")
  35530. },
  35531. {
  35532. name: "Macro",
  35533. height: math.unit(117, "feet")
  35534. },
  35535. ]
  35536. ))
  35537. characterMakers.push(() => makeCharacter(
  35538. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35539. {
  35540. side: {
  35541. height: math.unit(5 + 1/12, "feet"),
  35542. weight: math.unit(418, "lb"),
  35543. name: "Side",
  35544. image: {
  35545. source: "./media/characters/softpurr/side.svg",
  35546. extra: 1993/1945,
  35547. bottom: 134/2127
  35548. }
  35549. },
  35550. front: {
  35551. height: math.unit(5 + 1/12, "feet"),
  35552. weight: math.unit(418, "lb"),
  35553. name: "Front",
  35554. image: {
  35555. source: "./media/characters/softpurr/front.svg",
  35556. extra: 1950/1856,
  35557. bottom: 174/2124
  35558. }
  35559. },
  35560. paw: {
  35561. height: math.unit(1, "feet"),
  35562. name: "Paw",
  35563. image: {
  35564. source: "./media/characters/softpurr/paw.svg"
  35565. }
  35566. },
  35567. },
  35568. [
  35569. {
  35570. name: "Normal",
  35571. height: math.unit(5 + 1/12, "feet"),
  35572. default: true
  35573. },
  35574. ]
  35575. ))
  35576. characterMakers.push(() => makeCharacter(
  35577. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35578. {
  35579. front: {
  35580. height: math.unit(260, "meters"),
  35581. name: "Front",
  35582. image: {
  35583. source: "./media/characters/anahita/front.svg",
  35584. extra: 665/635,
  35585. bottom: 89/754
  35586. }
  35587. },
  35588. },
  35589. [
  35590. {
  35591. name: "Macro",
  35592. height: math.unit(260, "meters"),
  35593. default: true
  35594. },
  35595. ]
  35596. ))
  35597. characterMakers.push(() => makeCharacter(
  35598. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35599. {
  35600. front: {
  35601. height: math.unit(4 + 10/12, "feet"),
  35602. weight: math.unit(160, "lb"),
  35603. name: "Front",
  35604. image: {
  35605. source: "./media/characters/chip-mouse/front.svg",
  35606. extra: 3528/3408,
  35607. bottom: 0/3528
  35608. }
  35609. },
  35610. frontNsfw: {
  35611. height: math.unit(4 + 10/12, "feet"),
  35612. weight: math.unit(160, "lb"),
  35613. name: "Front (NSFW)",
  35614. image: {
  35615. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35616. extra: 3528/3408,
  35617. bottom: 0/3528
  35618. }
  35619. },
  35620. },
  35621. [
  35622. {
  35623. name: "Normal",
  35624. height: math.unit(4 + 10/12, "feet"),
  35625. default: true
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35631. {
  35632. side: {
  35633. height: math.unit(10, "feet"),
  35634. weight: math.unit(14000, "lb"),
  35635. name: "Side",
  35636. image: {
  35637. source: "./media/characters/kremm/side.svg",
  35638. extra: 1390/1053,
  35639. bottom: 90/1480
  35640. }
  35641. },
  35642. gut: {
  35643. height: math.unit(5.8, "feet"),
  35644. name: "Gut",
  35645. image: {
  35646. source: "./media/characters/kremm/gut.svg"
  35647. }
  35648. },
  35649. ass: {
  35650. height: math.unit(6.1, "feet"),
  35651. name: "Ass",
  35652. image: {
  35653. source: "./media/characters/kremm/ass.svg"
  35654. }
  35655. },
  35656. jaws: {
  35657. height: math.unit(2.2, "feet"),
  35658. name: "Jaws",
  35659. image: {
  35660. source: "./media/characters/kremm/jaws.svg"
  35661. }
  35662. },
  35663. dick: {
  35664. height: math.unit(4.26, "feet"),
  35665. name: "Dick",
  35666. image: {
  35667. source: "./media/characters/kremm/dick.svg"
  35668. }
  35669. },
  35670. },
  35671. [
  35672. {
  35673. name: "Normal",
  35674. height: math.unit(10, "feet"),
  35675. default: true
  35676. },
  35677. ]
  35678. ))
  35679. characterMakers.push(() => makeCharacter(
  35680. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35681. {
  35682. front: {
  35683. height: math.unit(30, "stories"),
  35684. name: "Front",
  35685. image: {
  35686. source: "./media/characters/kai/front.svg",
  35687. extra: 1892/1718,
  35688. bottom: 162/2054
  35689. }
  35690. },
  35691. },
  35692. [
  35693. {
  35694. name: "Macro",
  35695. height: math.unit(30, "stories"),
  35696. default: true
  35697. },
  35698. ]
  35699. ))
  35700. characterMakers.push(() => makeCharacter(
  35701. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35702. {
  35703. front: {
  35704. height: math.unit(6 + 4/12, "feet"),
  35705. weight: math.unit(145, "lb"),
  35706. name: "Front",
  35707. image: {
  35708. source: "./media/characters/sykes/front.svg",
  35709. extra: 1321 / 1187,
  35710. bottom: 66 / 1387
  35711. }
  35712. },
  35713. back: {
  35714. height: math.unit(6 + 4/12, "feet"),
  35715. weight: math.unit(145, "lb"),
  35716. name: "Back",
  35717. image: {
  35718. source: "./media/characters/sykes/back.svg",
  35719. extra: 1326/1181,
  35720. bottom: 31/1357
  35721. }
  35722. },
  35723. traditionalOutfit: {
  35724. height: math.unit(6 + 4/12, "feet"),
  35725. weight: math.unit(145, "lb"),
  35726. name: "Traditional Outfit",
  35727. image: {
  35728. source: "./media/characters/sykes/traditional-outfit.svg",
  35729. extra: 1321 / 1187,
  35730. bottom: 66 / 1387
  35731. }
  35732. },
  35733. adventureOutfit: {
  35734. height: math.unit(6 + 4/12, "feet"),
  35735. weight: math.unit(145, "lb"),
  35736. name: "Adventure Outfit",
  35737. image: {
  35738. source: "./media/characters/sykes/adventure-outfit.svg",
  35739. extra: 1321 / 1187,
  35740. bottom: 66 / 1387
  35741. }
  35742. },
  35743. handLeft: {
  35744. height: math.unit(0.9, "feet"),
  35745. name: "Hand (Left)",
  35746. image: {
  35747. source: "./media/characters/sykes/hand-left.svg"
  35748. }
  35749. },
  35750. handRight: {
  35751. height: math.unit(0.839, "feet"),
  35752. name: "Hand (Right)",
  35753. image: {
  35754. source: "./media/characters/sykes/hand-right.svg"
  35755. }
  35756. },
  35757. leftFoot: {
  35758. height: math.unit(1.2, "feet"),
  35759. name: "Foot (Left)",
  35760. image: {
  35761. source: "./media/characters/sykes/foot-left.svg"
  35762. }
  35763. },
  35764. rightFoot: {
  35765. height: math.unit(1.2, "feet"),
  35766. name: "Foot (Right)",
  35767. image: {
  35768. source: "./media/characters/sykes/foot-right.svg"
  35769. }
  35770. },
  35771. maw: {
  35772. height: math.unit(1.93, "feet"),
  35773. name: "Maw",
  35774. image: {
  35775. source: "./media/characters/sykes/maw.svg"
  35776. }
  35777. },
  35778. teeth: {
  35779. height: math.unit(0.51, "feet"),
  35780. name: "Teeth",
  35781. image: {
  35782. source: "./media/characters/sykes/teeth.svg"
  35783. }
  35784. },
  35785. tongue: {
  35786. height: math.unit(2.13, "feet"),
  35787. name: "Tongue",
  35788. image: {
  35789. source: "./media/characters/sykes/tongue.svg"
  35790. }
  35791. },
  35792. uvula: {
  35793. height: math.unit(0.16, "feet"),
  35794. name: "Uvula",
  35795. image: {
  35796. source: "./media/characters/sykes/uvula.svg"
  35797. }
  35798. },
  35799. collar: {
  35800. height: math.unit(0.287, "feet"),
  35801. name: "Collar",
  35802. image: {
  35803. source: "./media/characters/sykes/collar.svg"
  35804. }
  35805. },
  35806. tail: {
  35807. height: math.unit(3.8, "feet"),
  35808. name: "Tail",
  35809. image: {
  35810. source: "./media/characters/sykes/tail.svg"
  35811. }
  35812. },
  35813. },
  35814. [
  35815. {
  35816. name: "Shrunken",
  35817. height: math.unit(5, "inches")
  35818. },
  35819. {
  35820. name: "Normal",
  35821. height: math.unit(6 + 4 / 12, "feet"),
  35822. default: true
  35823. },
  35824. {
  35825. name: "Big",
  35826. height: math.unit(15, "feet")
  35827. },
  35828. ]
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35832. {
  35833. front: {
  35834. height: math.unit(5 + 8/12, "feet"),
  35835. weight: math.unit(190, "lb"),
  35836. name: "Front",
  35837. image: {
  35838. source: "./media/characters/oven-otter/front.svg",
  35839. extra: 1809/1740,
  35840. bottom: 181/1990
  35841. }
  35842. },
  35843. back: {
  35844. height: math.unit(5 + 8/12, "feet"),
  35845. weight: math.unit(190, "lb"),
  35846. name: "Back",
  35847. image: {
  35848. source: "./media/characters/oven-otter/back.svg",
  35849. extra: 1709/1635,
  35850. bottom: 118/1827
  35851. }
  35852. },
  35853. hand: {
  35854. height: math.unit(1.07, "feet"),
  35855. name: "Hand",
  35856. image: {
  35857. source: "./media/characters/oven-otter/hand.svg"
  35858. }
  35859. },
  35860. beans: {
  35861. height: math.unit(1.74, "feet"),
  35862. name: "Beans",
  35863. image: {
  35864. source: "./media/characters/oven-otter/beans.svg"
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Micro",
  35871. height: math.unit(0.5, "inches")
  35872. },
  35873. {
  35874. name: "Normal",
  35875. height: math.unit(5 + 8/12, "feet"),
  35876. default: true
  35877. },
  35878. {
  35879. name: "Macro",
  35880. height: math.unit(250, "feet")
  35881. },
  35882. {
  35883. name: "Really High",
  35884. height: math.unit(420, "feet")
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(5, "meters"),
  35893. weight: math.unit(292000000000000, "kg"),
  35894. name: "Front",
  35895. image: {
  35896. source: "./media/characters/devourer/front.svg",
  35897. extra: 1800/1733,
  35898. bottom: 211/2011
  35899. }
  35900. },
  35901. maw: {
  35902. height: math.unit(1.1, "meter"),
  35903. name: "Maw",
  35904. image: {
  35905. source: "./media/characters/devourer/maw.svg"
  35906. }
  35907. },
  35908. },
  35909. [
  35910. {
  35911. name: "Small",
  35912. height: math.unit(3, "meters")
  35913. },
  35914. {
  35915. name: "Large",
  35916. height: math.unit(5, "meters"),
  35917. default: true
  35918. },
  35919. ]
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35923. {
  35924. front: {
  35925. height: math.unit(6, "feet"),
  35926. weight: math.unit(400, "lb"),
  35927. name: "Front",
  35928. image: {
  35929. source: "./media/characters/ellarby/front.svg",
  35930. extra: 1909/1763,
  35931. bottom: 80/1989
  35932. }
  35933. },
  35934. back: {
  35935. height: math.unit(6, "feet"),
  35936. weight: math.unit(400, "lb"),
  35937. name: "Back",
  35938. image: {
  35939. source: "./media/characters/ellarby/back.svg",
  35940. extra: 1914/1784,
  35941. bottom: 172/2086
  35942. }
  35943. },
  35944. },
  35945. [
  35946. {
  35947. name: "Mischief",
  35948. height: math.unit(18, "inches")
  35949. },
  35950. {
  35951. name: "Trouble",
  35952. height: math.unit(12, "feet")
  35953. },
  35954. {
  35955. name: "Havoc",
  35956. height: math.unit(200, "feet"),
  35957. default: true
  35958. },
  35959. {
  35960. name: "Pandemonium",
  35961. height: math.unit(1, "mile")
  35962. },
  35963. {
  35964. name: "Catastrophe",
  35965. height: math.unit(100, "miles")
  35966. },
  35967. ]
  35968. ))
  35969. characterMakers.push(() => makeCharacter(
  35970. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35971. {
  35972. front: {
  35973. height: math.unit(4.7, "meters"),
  35974. weight: math.unit(6500, "kg"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/vex/front.svg",
  35978. extra: 1288/1140,
  35979. bottom: 100/1388
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(4.7, "meters"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35993. {
  35994. normal: {
  35995. height: math.unit(6, "feet"),
  35996. weight: math.unit(350, "lb"),
  35997. name: "Normal",
  35998. image: {
  35999. source: "./media/characters/teshy/normal.svg",
  36000. extra: 1795/1735,
  36001. bottom: 16/1811
  36002. }
  36003. },
  36004. monsterFront: {
  36005. height: math.unit(12, "feet"),
  36006. weight: math.unit(4700, "lb"),
  36007. name: "Monster (Front)",
  36008. image: {
  36009. source: "./media/characters/teshy/monster-front.svg",
  36010. extra: 2042/2034,
  36011. bottom: 128/2170
  36012. }
  36013. },
  36014. monsterSide: {
  36015. height: math.unit(12, "feet"),
  36016. weight: math.unit(4700, "lb"),
  36017. name: "Monster (Side)",
  36018. image: {
  36019. source: "./media/characters/teshy/monster-side.svg",
  36020. extra: 2067/2056,
  36021. bottom: 70/2137
  36022. }
  36023. },
  36024. monsterBack: {
  36025. height: math.unit(12, "feet"),
  36026. weight: math.unit(4700, "lb"),
  36027. name: "Monster (Back)",
  36028. image: {
  36029. source: "./media/characters/teshy/monster-back.svg",
  36030. extra: 1921/1914,
  36031. bottom: 171/2092
  36032. }
  36033. },
  36034. },
  36035. [
  36036. {
  36037. name: "Normal",
  36038. height: math.unit(6, "feet"),
  36039. default: true
  36040. },
  36041. ]
  36042. ))
  36043. characterMakers.push(() => makeCharacter(
  36044. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36045. {
  36046. front: {
  36047. height: math.unit(6, "feet"),
  36048. name: "Front",
  36049. image: {
  36050. source: "./media/characters/ramey/front.svg",
  36051. extra: 790/787,
  36052. bottom: 27/817
  36053. }
  36054. },
  36055. },
  36056. [
  36057. {
  36058. name: "Normal",
  36059. height: math.unit(6, "feet"),
  36060. default: true
  36061. },
  36062. ]
  36063. ))
  36064. characterMakers.push(() => makeCharacter(
  36065. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36066. {
  36067. front: {
  36068. height: math.unit(5 + 5/12, "feet"),
  36069. weight: math.unit(120, "lb"),
  36070. name: "Front",
  36071. image: {
  36072. source: "./media/characters/phirae/front.svg",
  36073. extra: 2491/2436,
  36074. bottom: 38/2529
  36075. }
  36076. },
  36077. },
  36078. [
  36079. {
  36080. name: "Normal",
  36081. height: math.unit(5 + 5/12, "feet"),
  36082. default: true
  36083. },
  36084. ]
  36085. ))
  36086. characterMakers.push(() => makeCharacter(
  36087. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36088. {
  36089. front: {
  36090. height: math.unit(5 + 3/12, "feet"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/stagglas/front.svg",
  36094. extra: 962/882,
  36095. bottom: 53/1015
  36096. }
  36097. },
  36098. feral: {
  36099. height: math.unit(335, "cm"),
  36100. name: "Feral",
  36101. image: {
  36102. source: "./media/characters/stagglas/feral.svg",
  36103. extra: 1732/1090,
  36104. bottom: 48/1780
  36105. }
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "Normal",
  36111. height: math.unit(5 + 3/12, "feet"),
  36112. default: true
  36113. },
  36114. ]
  36115. ))
  36116. characterMakers.push(() => makeCharacter(
  36117. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36118. {
  36119. front: {
  36120. height: math.unit(5 + 4/12, "feet"),
  36121. weight: math.unit(145, "lb"),
  36122. name: "Front",
  36123. image: {
  36124. source: "./media/characters/starra/front.svg",
  36125. extra: 1790/1691,
  36126. bottom: 91/1881
  36127. }
  36128. },
  36129. },
  36130. [
  36131. {
  36132. name: "Normal",
  36133. height: math.unit(5 + 4/12, "feet"),
  36134. default: true
  36135. },
  36136. ]
  36137. ))
  36138. characterMakers.push(() => makeCharacter(
  36139. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36140. {
  36141. front: {
  36142. height: math.unit(2.2, "meters"),
  36143. name: "Front",
  36144. image: {
  36145. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36146. extra: 1248/972,
  36147. bottom: 38/1286
  36148. }
  36149. },
  36150. },
  36151. [
  36152. {
  36153. name: "Normal",
  36154. height: math.unit(2.2, "meters"),
  36155. default: true
  36156. },
  36157. ]
  36158. ))
  36159. characterMakers.push(() => makeCharacter(
  36160. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36161. {
  36162. side: {
  36163. height: math.unit(8 + 2/12, "feet"),
  36164. weight: math.unit(1240, "lb"),
  36165. name: "Side",
  36166. image: {
  36167. source: "./media/characters/mika-valentine/side.svg",
  36168. extra: 2670/2501,
  36169. bottom: 250/2920
  36170. }
  36171. },
  36172. },
  36173. [
  36174. {
  36175. name: "Normal",
  36176. height: math.unit(8 + 2/12, "feet"),
  36177. default: true
  36178. },
  36179. ]
  36180. ))
  36181. characterMakers.push(() => makeCharacter(
  36182. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36183. {
  36184. front: {
  36185. height: math.unit(7 + 2/12, "feet"),
  36186. name: "Front",
  36187. image: {
  36188. source: "./media/characters/xoltol/front.svg",
  36189. extra: 2212/2124,
  36190. bottom: 84/2296
  36191. }
  36192. },
  36193. side: {
  36194. height: math.unit(7 + 2/12, "feet"),
  36195. name: "Side",
  36196. image: {
  36197. source: "./media/characters/xoltol/side.svg",
  36198. extra: 2273/2197,
  36199. bottom: 26/2299
  36200. }
  36201. },
  36202. hand: {
  36203. height: math.unit(2.5, "feet"),
  36204. name: "Hand",
  36205. image: {
  36206. source: "./media/characters/xoltol/hand.svg"
  36207. }
  36208. },
  36209. },
  36210. [
  36211. {
  36212. name: "Small-ish",
  36213. height: math.unit(5 + 11/12, "feet")
  36214. },
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(7 + 2/12, "feet")
  36218. },
  36219. {
  36220. name: "\"Macro\"",
  36221. height: math.unit(14 + 9/12, "feet"),
  36222. default: true
  36223. },
  36224. {
  36225. name: "Alternate Height",
  36226. height: math.unit(20, "feet")
  36227. },
  36228. {
  36229. name: "Actually Macro",
  36230. height: math.unit(100, "feet")
  36231. },
  36232. ]
  36233. ))
  36234. characterMakers.push(() => makeCharacter(
  36235. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36236. {
  36237. front: {
  36238. height: math.unit(5 + 2/12, "feet"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/kotetsu-redwood/front.svg",
  36242. extra: 1053/942,
  36243. bottom: 60/1113
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(5 + 2/12, "feet"),
  36251. default: true
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36257. {
  36258. front: {
  36259. height: math.unit(2.4, "meters"),
  36260. weight: math.unit(125, "kg"),
  36261. name: "Front",
  36262. image: {
  36263. source: "./media/characters/lilith/front.svg",
  36264. extra: 1590/1513,
  36265. bottom: 203/1793
  36266. }
  36267. },
  36268. },
  36269. [
  36270. {
  36271. name: "Humanoid",
  36272. height: math.unit(2.4, "meters")
  36273. },
  36274. {
  36275. name: "Normal",
  36276. height: math.unit(6, "meters"),
  36277. default: true
  36278. },
  36279. {
  36280. name: "Largest",
  36281. height: math.unit(55, "meters")
  36282. },
  36283. ]
  36284. ))
  36285. characterMakers.push(() => makeCharacter(
  36286. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36287. {
  36288. front: {
  36289. height: math.unit(8 + 4/12, "feet"),
  36290. weight: math.unit(535, "lb"),
  36291. name: "Front",
  36292. image: {
  36293. source: "./media/characters/beh'kah-bolger/front.svg",
  36294. extra: 1660/1603,
  36295. bottom: 37/1697
  36296. }
  36297. },
  36298. },
  36299. [
  36300. {
  36301. name: "Normal",
  36302. height: math.unit(8 + 4/12, "feet"),
  36303. default: true
  36304. },
  36305. {
  36306. name: "Kaiju",
  36307. height: math.unit(250, "feet")
  36308. },
  36309. {
  36310. name: "Still Growing",
  36311. height: math.unit(10, "miles")
  36312. },
  36313. {
  36314. name: "Continental",
  36315. height: math.unit(5000, "miles")
  36316. },
  36317. {
  36318. name: "Final Form",
  36319. height: math.unit(2500000, "miles")
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(7 + 2/12, "feet"),
  36328. weight: math.unit(230, "kg"),
  36329. name: "Front",
  36330. image: {
  36331. source: "./media/characters/tatyana-milewska/front.svg",
  36332. extra: 1199/1150,
  36333. bottom: 86/1285
  36334. }
  36335. },
  36336. },
  36337. [
  36338. {
  36339. name: "Normal",
  36340. height: math.unit(7 + 2/12, "feet"),
  36341. default: true
  36342. },
  36343. {
  36344. name: "Big",
  36345. height: math.unit(12, "feet")
  36346. },
  36347. {
  36348. name: "Minimacro",
  36349. height: math.unit(20, "feet")
  36350. },
  36351. {
  36352. name: "Macro",
  36353. height: math.unit(120, "feet")
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(7 + 8/12, "feet"),
  36362. weight: math.unit(152, "kg"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/helen-arri/front.svg",
  36366. extra: 440/423,
  36367. bottom: 14/454
  36368. }
  36369. },
  36370. back: {
  36371. height: math.unit(7 + 8/12, "feet"),
  36372. weight: math.unit(152, "kg"),
  36373. name: "Back",
  36374. image: {
  36375. source: "./media/characters/helen-arri/back.svg",
  36376. extra: 443/426,
  36377. bottom: 8/451
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(7 + 8/12, "feet"),
  36385. default: true
  36386. },
  36387. {
  36388. name: "Big",
  36389. height: math.unit(14, "feet")
  36390. },
  36391. {
  36392. name: "Minimacro",
  36393. height: math.unit(24, "feet")
  36394. },
  36395. {
  36396. name: "Macro",
  36397. height: math.unit(140, "feet")
  36398. },
  36399. ]
  36400. ))
  36401. characterMakers.push(() => makeCharacter(
  36402. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36403. {
  36404. front: {
  36405. height: math.unit(6, "meters"),
  36406. name: "Front",
  36407. image: {
  36408. source: "./media/characters/ehanu-rehu/front.svg",
  36409. extra: 1800/1800,
  36410. bottom: 59/1859
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(6, "meters"),
  36418. default: true
  36419. },
  36420. ]
  36421. ))
  36422. characterMakers.push(() => makeCharacter(
  36423. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36424. {
  36425. front: {
  36426. height: math.unit(7 + 3/12, "feet"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/renholder/front.svg",
  36430. extra: 3096/2960,
  36431. bottom: 250/3346
  36432. }
  36433. },
  36434. },
  36435. [
  36436. {
  36437. name: "Normal Bat",
  36438. height: math.unit(7 + 3/12, "feet"),
  36439. default: true
  36440. },
  36441. {
  36442. name: "Slightly Tall Bat",
  36443. height: math.unit(100, "feet")
  36444. },
  36445. {
  36446. name: "Big Bat",
  36447. height: math.unit(1000, "feet")
  36448. },
  36449. {
  36450. name: "City-Sized Bat",
  36451. height: math.unit(200000, "feet")
  36452. },
  36453. {
  36454. name: "Bigger Bat",
  36455. height: math.unit(10000, "miles")
  36456. },
  36457. {
  36458. name: "Solar Sized Bat",
  36459. height: math.unit(100, "AU")
  36460. },
  36461. {
  36462. name: "Galactic Bat",
  36463. height: math.unit(200000, "lightyears")
  36464. },
  36465. {
  36466. name: "Universally Known Bat",
  36467. height: math.unit(1, "universe")
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36473. {
  36474. front: {
  36475. height: math.unit(6 + 11/12, "feet"),
  36476. weight: math.unit(250, "lb"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/cookiecat/front.svg",
  36480. extra: 893/827,
  36481. bottom: 14/907
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Micro",
  36488. height: math.unit(3, "inches")
  36489. },
  36490. {
  36491. name: "Normal",
  36492. height: math.unit(6 + 11/12, "feet"),
  36493. default: true
  36494. },
  36495. {
  36496. name: "Macro",
  36497. height: math.unit(100, "feet")
  36498. },
  36499. {
  36500. name: "Macro+",
  36501. height: math.unit(404, "feet")
  36502. },
  36503. {
  36504. name: "Megamacro",
  36505. height: math.unit(165, "miles")
  36506. },
  36507. {
  36508. name: "Planetary",
  36509. height: math.unit(4600, "miles")
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(10 + 3/12, "feet"),
  36518. weight: math.unit(1500, "lb"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/tux-kusanagi/front.svg",
  36522. extra: 944/840,
  36523. bottom: 39/983
  36524. }
  36525. },
  36526. back: {
  36527. height: math.unit(10 + 3/12, "feet"),
  36528. weight: math.unit(1500, "lb"),
  36529. name: "Back",
  36530. image: {
  36531. source: "./media/characters/tux-kusanagi/back.svg",
  36532. extra: 941/842,
  36533. bottom: 28/969
  36534. }
  36535. },
  36536. rump: {
  36537. height: math.unit(5.25, "feet"),
  36538. name: "Rump",
  36539. image: {
  36540. source: "./media/characters/tux-kusanagi/rump.svg"
  36541. }
  36542. },
  36543. beak: {
  36544. height: math.unit(1.54, "feet"),
  36545. name: "Beak",
  36546. image: {
  36547. source: "./media/characters/tux-kusanagi/beak.svg"
  36548. }
  36549. },
  36550. },
  36551. [
  36552. {
  36553. name: "Normal",
  36554. height: math.unit(10 + 3/12, "feet"),
  36555. default: true
  36556. },
  36557. ]
  36558. ))
  36559. characterMakers.push(() => makeCharacter(
  36560. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36561. {
  36562. front: {
  36563. height: math.unit(58, "feet"),
  36564. weight: math.unit(200, "tons"),
  36565. name: "Front",
  36566. image: {
  36567. source: "./media/characters/uzarmazari/front.svg",
  36568. extra: 1575/1455,
  36569. bottom: 152/1727
  36570. }
  36571. },
  36572. back: {
  36573. height: math.unit(58, "feet"),
  36574. weight: math.unit(200, "tons"),
  36575. name: "Back",
  36576. image: {
  36577. source: "./media/characters/uzarmazari/back.svg",
  36578. extra: 1585/1510,
  36579. bottom: 157/1742
  36580. }
  36581. },
  36582. head: {
  36583. height: math.unit(26, "feet"),
  36584. name: "Head",
  36585. image: {
  36586. source: "./media/characters/uzarmazari/head.svg"
  36587. }
  36588. },
  36589. },
  36590. [
  36591. {
  36592. name: "Normal",
  36593. height: math.unit(58, "feet"),
  36594. default: true
  36595. },
  36596. ]
  36597. ))
  36598. characterMakers.push(() => makeCharacter(
  36599. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36600. {
  36601. side: {
  36602. height: math.unit(15, "feet"),
  36603. name: "Side",
  36604. image: {
  36605. source: "./media/characters/akitu/side.svg",
  36606. extra: 1421/1321,
  36607. bottom: 157/1578
  36608. }
  36609. },
  36610. front: {
  36611. height: math.unit(15, "feet"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/akitu/front.svg",
  36615. extra: 1435/1326,
  36616. bottom: 232/1667
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(15, "feet"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36630. {
  36631. front: {
  36632. height: math.unit(10 + 8/12, "feet"),
  36633. name: "Front",
  36634. image: {
  36635. source: "./media/characters/azalie-croixland/front.svg",
  36636. extra: 1972/1856,
  36637. bottom: 31/2003
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Original Height",
  36644. height: math.unit(5 + 4/12, "feet")
  36645. },
  36646. {
  36647. name: "Normal Height",
  36648. height: math.unit(10 + 8/12, "feet"),
  36649. default: true
  36650. },
  36651. ]
  36652. ))
  36653. characterMakers.push(() => makeCharacter(
  36654. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36655. {
  36656. side: {
  36657. height: math.unit(7 + 1/12, "feet"),
  36658. weight: math.unit(245, "lb"),
  36659. name: "Side",
  36660. image: {
  36661. source: "./media/characters/kavus-kazian/side.svg",
  36662. extra: 349/342,
  36663. bottom: 15/364
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(7 + 1/12, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36677. {
  36678. normalFront: {
  36679. height: math.unit(5 + 11/12, "feet"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/moonlight-rose/normal-front.svg",
  36683. extra: 1980/1825,
  36684. bottom: 18/1998
  36685. },
  36686. form: "normal",
  36687. default: true
  36688. },
  36689. normalBack: {
  36690. height: math.unit(5 + 11/12, "feet"),
  36691. name: "Back",
  36692. image: {
  36693. source: "./media/characters/moonlight-rose/normal-back.svg",
  36694. extra: 2010/1839,
  36695. bottom: 10/2020
  36696. },
  36697. form: "normal"
  36698. },
  36699. demonFront: {
  36700. height: math.unit(1.5, "earths"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/moonlight-rose/demon.svg",
  36704. extra: 1400/1294,
  36705. bottom: 45/1445
  36706. },
  36707. form: "demon",
  36708. default: true
  36709. },
  36710. terraFront: {
  36711. height: math.unit(1.5, "earths"),
  36712. name: "Front",
  36713. image: {
  36714. source: "./media/characters/moonlight-rose/terra.svg"
  36715. },
  36716. form: "terra",
  36717. default: true
  36718. },
  36719. jupiterFront: {
  36720. height: math.unit(69911*2, "km"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36724. extra: 1367/1286,
  36725. bottom: 55/1422
  36726. },
  36727. form: "jupiter",
  36728. default: true
  36729. },
  36730. neptuneFront: {
  36731. height: math.unit(24622*2, "feet"),
  36732. name: "Front",
  36733. image: {
  36734. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36735. extra: 1851/1712,
  36736. bottom: 0/1851
  36737. },
  36738. form: "neptune",
  36739. default: true
  36740. },
  36741. },
  36742. [
  36743. {
  36744. name: "\"Natural\" Height",
  36745. height: math.unit(5 + 11/12, "feet"),
  36746. form: "normal"
  36747. },
  36748. {
  36749. name: "Smallest comfortable size",
  36750. height: math.unit(40, "meters"),
  36751. form: "normal"
  36752. },
  36753. {
  36754. name: "Common size",
  36755. height: math.unit(50, "km"),
  36756. form: "normal",
  36757. default: true
  36758. },
  36759. {
  36760. name: "Normal",
  36761. height: math.unit(1.5, "earths"),
  36762. form: "demon",
  36763. default: true
  36764. },
  36765. {
  36766. name: "Universal",
  36767. height: math.unit(15, "universes"),
  36768. form: "demon"
  36769. },
  36770. {
  36771. name: "Earth",
  36772. height: math.unit(1.5, "earths"),
  36773. form: "terra",
  36774. default: true
  36775. },
  36776. {
  36777. name: "Super Earth",
  36778. height: math.unit(67.5, "earths"),
  36779. form: "terra"
  36780. },
  36781. {
  36782. name: "Doesn't fit in a solar system...",
  36783. height: math.unit(1, "galaxy"),
  36784. form: "terra"
  36785. },
  36786. {
  36787. name: "Saturn",
  36788. height: math.unit(58232*2, "km"),
  36789. form: "jupiter"
  36790. },
  36791. {
  36792. name: "Jupiter",
  36793. height: math.unit(69911*2, "km"),
  36794. form: "jupiter",
  36795. default: true
  36796. },
  36797. {
  36798. name: "HD 100546 b",
  36799. height: math.unit(482938, "km"),
  36800. form: "jupiter"
  36801. },
  36802. {
  36803. name: "Enceladus",
  36804. height: math.unit(513*2, "km"),
  36805. form: "neptune"
  36806. },
  36807. {
  36808. name: "Europe",
  36809. height: math.unit(1560*2, "km"),
  36810. form: "neptune"
  36811. },
  36812. {
  36813. name: "Neptune",
  36814. height: math.unit(24622*2, "km"),
  36815. form: "neptune",
  36816. default: true
  36817. },
  36818. {
  36819. name: "CoRoT-9b",
  36820. height: math.unit(75067*2, "km"),
  36821. form: "neptune"
  36822. },
  36823. ],
  36824. {
  36825. "normal": {
  36826. name: "Normal",
  36827. default: true
  36828. },
  36829. "demon": {
  36830. name: "Demon"
  36831. },
  36832. "terra": {
  36833. name: "Terra"
  36834. },
  36835. "jupiter": {
  36836. name: "Jupiter"
  36837. },
  36838. "neptune": {
  36839. name: "Neptune"
  36840. }
  36841. }
  36842. ))
  36843. characterMakers.push(() => makeCharacter(
  36844. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36845. {
  36846. front: {
  36847. height: math.unit(16, "feet"),
  36848. weight: math.unit(610, "kg"),
  36849. name: "Front",
  36850. image: {
  36851. source: "./media/characters/huckle/front.svg",
  36852. extra: 1731/1625,
  36853. bottom: 33/1764
  36854. }
  36855. },
  36856. back: {
  36857. height: math.unit(16, "feet"),
  36858. weight: math.unit(610, "kg"),
  36859. name: "Back",
  36860. image: {
  36861. source: "./media/characters/huckle/back.svg",
  36862. extra: 1738/1651,
  36863. bottom: 37/1775
  36864. }
  36865. },
  36866. laughing: {
  36867. height: math.unit(3.75, "feet"),
  36868. name: "Laughing",
  36869. image: {
  36870. source: "./media/characters/huckle/laughing.svg"
  36871. }
  36872. },
  36873. angry: {
  36874. height: math.unit(4.15, "feet"),
  36875. name: "Angry",
  36876. image: {
  36877. source: "./media/characters/huckle/angry.svg"
  36878. }
  36879. },
  36880. },
  36881. [
  36882. {
  36883. name: "Normal",
  36884. height: math.unit(16, "feet"),
  36885. default: true
  36886. },
  36887. {
  36888. name: "Mini Macro",
  36889. height: math.unit(463, "feet")
  36890. },
  36891. {
  36892. name: "Macro",
  36893. height: math.unit(1680, "meters")
  36894. },
  36895. {
  36896. name: "Mega Macro",
  36897. height: math.unit(175, "km")
  36898. },
  36899. {
  36900. name: "Terra Macro",
  36901. height: math.unit(32, "gigameters")
  36902. },
  36903. {
  36904. name: "Multiverse+",
  36905. height: math.unit(2.56e23, "yottameters")
  36906. },
  36907. ]
  36908. ))
  36909. characterMakers.push(() => makeCharacter(
  36910. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36911. {
  36912. front: {
  36913. height: math.unit(6 + 9/12, "feet"),
  36914. weight: math.unit(280, "lb"),
  36915. name: "Front",
  36916. image: {
  36917. source: "./media/characters/candy/front.svg",
  36918. extra: 234/217,
  36919. bottom: 11/245
  36920. }
  36921. },
  36922. },
  36923. [
  36924. {
  36925. name: "Really Small",
  36926. height: math.unit(0.1, "nm")
  36927. },
  36928. {
  36929. name: "Micro",
  36930. height: math.unit(2, "inches")
  36931. },
  36932. {
  36933. name: "Normal",
  36934. height: math.unit(6 + 9/12, "feet"),
  36935. default: true
  36936. },
  36937. {
  36938. name: "Small Macro",
  36939. height: math.unit(69, "feet")
  36940. },
  36941. {
  36942. name: "Macro",
  36943. height: math.unit(160, "feet")
  36944. },
  36945. {
  36946. name: "Megamacro",
  36947. height: math.unit(22000, "miles")
  36948. },
  36949. {
  36950. name: "Gigamacro",
  36951. height: math.unit(50000, "miles")
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(4, "feet"),
  36960. weight: math.unit(90, "lb"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/joey-mcdonald/front.svg",
  36964. extra: 1059/852,
  36965. bottom: 33/1092
  36966. }
  36967. },
  36968. back: {
  36969. height: math.unit(4, "feet"),
  36970. weight: math.unit(90, "lb"),
  36971. name: "Back",
  36972. image: {
  36973. source: "./media/characters/joey-mcdonald/back.svg",
  36974. extra: 1077/879,
  36975. bottom: 5/1082
  36976. }
  36977. },
  36978. frontKobold: {
  36979. height: math.unit(4, "feet"),
  36980. weight: math.unit(100, "lb"),
  36981. name: "Front-kobold",
  36982. image: {
  36983. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36984. extra: 1480/1367,
  36985. bottom: 0/1480
  36986. }
  36987. },
  36988. backKobold: {
  36989. height: math.unit(4, "feet"),
  36990. weight: math.unit(100, "lb"),
  36991. name: "Back-kobold",
  36992. image: {
  36993. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36994. extra: 1449/1361,
  36995. bottom: 0/1449
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(4, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(12 + 6/12, "feet"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/kass-lockheed/front.svg",
  37015. extra: 354/343,
  37016. bottom: 9/363
  37017. }
  37018. },
  37019. back: {
  37020. height: math.unit(12 + 6/12, "feet"),
  37021. name: "Back",
  37022. image: {
  37023. source: "./media/characters/kass-lockheed/back.svg",
  37024. extra: 364/352,
  37025. bottom: 3/367
  37026. }
  37027. },
  37028. dick: {
  37029. height: math.unit(3.12, "feet"),
  37030. name: "Dick",
  37031. image: {
  37032. source: "./media/characters/kass-lockheed/dick.svg"
  37033. }
  37034. },
  37035. head: {
  37036. height: math.unit(2.6, "feet"),
  37037. name: "Head",
  37038. image: {
  37039. source: "./media/characters/kass-lockheed/head.svg"
  37040. }
  37041. },
  37042. bleh: {
  37043. height: math.unit(2.85, "feet"),
  37044. name: "Bleh",
  37045. image: {
  37046. source: "./media/characters/kass-lockheed/bleh.svg"
  37047. }
  37048. },
  37049. smug: {
  37050. height: math.unit(2.85, "feet"),
  37051. name: "Smug",
  37052. image: {
  37053. source: "./media/characters/kass-lockheed/smug.svg"
  37054. }
  37055. },
  37056. },
  37057. [
  37058. {
  37059. name: "Normal",
  37060. height: math.unit(12 + 6/12, "feet"),
  37061. default: true
  37062. },
  37063. ]
  37064. ))
  37065. characterMakers.push(() => makeCharacter(
  37066. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37067. {
  37068. front: {
  37069. height: math.unit(6 + 2/12, "feet"),
  37070. name: "Front",
  37071. image: {
  37072. source: "./media/characters/taylor/front.svg",
  37073. extra: 639/495,
  37074. bottom: 12/651
  37075. }
  37076. },
  37077. },
  37078. [
  37079. {
  37080. name: "Normal",
  37081. height: math.unit(6 + 2/12, "feet"),
  37082. default: true
  37083. },
  37084. {
  37085. name: "Big",
  37086. height: math.unit(15, "feet")
  37087. },
  37088. {
  37089. name: "Lorg",
  37090. height: math.unit(80, "feet")
  37091. },
  37092. {
  37093. name: "Too Lorg",
  37094. height: math.unit(120, "feet")
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(15, "feet"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/kaizer/front.svg",
  37106. extra: 1612/1436,
  37107. bottom: 43/1655
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(15, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(2, "feet"),
  37124. weight: math.unit(30, "lb"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/sandy/front.svg",
  37128. extra: 1439/1307,
  37129. bottom: 194/1633
  37130. }
  37131. },
  37132. },
  37133. [
  37134. {
  37135. name: "Normal",
  37136. height: math.unit(2, "feet"),
  37137. default: true
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(3, "feet"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/mellvi/front.svg",
  37149. extra: 1831/1630,
  37150. bottom: 58/1889
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal",
  37157. height: math.unit(3, "feet"),
  37158. default: true
  37159. },
  37160. ]
  37161. ))
  37162. characterMakers.push(() => makeCharacter(
  37163. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37164. {
  37165. front: {
  37166. height: math.unit(5 + 11/12, "feet"),
  37167. weight: math.unit(200, "lb"),
  37168. name: "Front",
  37169. image: {
  37170. source: "./media/characters/shirou/front.svg",
  37171. extra: 2491/2383,
  37172. bottom: 189/2680
  37173. }
  37174. },
  37175. back: {
  37176. height: math.unit(5 + 11/12, "feet"),
  37177. weight: math.unit(200, "lb"),
  37178. name: "Back",
  37179. image: {
  37180. source: "./media/characters/shirou/back.svg",
  37181. extra: 2554/2450,
  37182. bottom: 76/2630
  37183. }
  37184. },
  37185. },
  37186. [
  37187. {
  37188. name: "Normal",
  37189. height: math.unit(5 + 11/12, "feet"),
  37190. default: true
  37191. },
  37192. ]
  37193. ))
  37194. characterMakers.push(() => makeCharacter(
  37195. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37196. {
  37197. front: {
  37198. height: math.unit(6 + 3/12, "feet"),
  37199. weight: math.unit(177, "lb"),
  37200. name: "Front",
  37201. image: {
  37202. source: "./media/characters/noryu/front.svg",
  37203. extra: 973/885,
  37204. bottom: 10/983
  37205. }
  37206. },
  37207. },
  37208. [
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(6 + 3/12, "feet"),
  37212. default: true
  37213. },
  37214. ]
  37215. ))
  37216. characterMakers.push(() => makeCharacter(
  37217. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37218. {
  37219. front: {
  37220. height: math.unit(5 + 6/12, "feet"),
  37221. weight: math.unit(170, "lb"),
  37222. name: "Front",
  37223. image: {
  37224. source: "./media/characters/mevolas-rubenido/front.svg",
  37225. extra: 2109/1901,
  37226. bottom: 96/2205
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(5 + 6/12, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37240. {
  37241. front: {
  37242. height: math.unit(100, "feet"),
  37243. name: "Front",
  37244. image: {
  37245. source: "./media/characters/dee/front.svg",
  37246. extra: 2153/2036,
  37247. bottom: 59/2212
  37248. }
  37249. },
  37250. back: {
  37251. height: math.unit(100, "feet"),
  37252. name: "Back",
  37253. image: {
  37254. source: "./media/characters/dee/back.svg",
  37255. extra: 2183/2058,
  37256. bottom: 75/2258
  37257. }
  37258. },
  37259. foot: {
  37260. height: math.unit(19.43, "feet"),
  37261. name: "Foot",
  37262. image: {
  37263. source: "./media/characters/dee/foot.svg"
  37264. }
  37265. },
  37266. hoof: {
  37267. height: math.unit(20.6, "feet"),
  37268. name: "Hoof",
  37269. image: {
  37270. source: "./media/characters/dee/hoof.svg"
  37271. }
  37272. },
  37273. },
  37274. [
  37275. {
  37276. name: "Macro",
  37277. height: math.unit(100, "feet"),
  37278. default: true
  37279. },
  37280. ]
  37281. ))
  37282. characterMakers.push(() => makeCharacter(
  37283. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37284. {
  37285. front: {
  37286. height: math.unit(5 + 6/12, "feet"),
  37287. name: "Front",
  37288. image: {
  37289. source: "./media/characters/teh/front.svg",
  37290. extra: 1002/847,
  37291. bottom: 62/1064
  37292. }
  37293. },
  37294. },
  37295. [
  37296. {
  37297. name: "Normal",
  37298. height: math.unit(5 + 6/12, "feet"),
  37299. default: true
  37300. },
  37301. ]
  37302. ))
  37303. characterMakers.push(() => makeCharacter(
  37304. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37305. {
  37306. side: {
  37307. height: math.unit(6 + 1/12, "feet"),
  37308. weight: math.unit(204, "lb"),
  37309. name: "Side",
  37310. image: {
  37311. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37312. extra: 974/775,
  37313. bottom: 169/1143
  37314. }
  37315. },
  37316. sitting: {
  37317. height: math.unit(6 + 2/12, "feet"),
  37318. weight: math.unit(204, "lb"),
  37319. name: "Sitting",
  37320. image: {
  37321. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37322. extra: 1175/964,
  37323. bottom: 378/1553
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal",
  37330. height: math.unit(6 + 1/12, "feet"),
  37331. default: true
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(6, "inches"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/tululi/front.svg",
  37343. extra: 1997/1876,
  37344. bottom: 20/2017
  37345. }
  37346. },
  37347. },
  37348. [
  37349. {
  37350. name: "Normal",
  37351. height: math.unit(6, "inches"),
  37352. default: true
  37353. },
  37354. ]
  37355. ))
  37356. characterMakers.push(() => makeCharacter(
  37357. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37358. {
  37359. front: {
  37360. height: math.unit(4 + 1/12, "feet"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/star/front.svg",
  37364. extra: 1493/1189,
  37365. bottom: 48/1541
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(4 + 1/12, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37379. {
  37380. front: {
  37381. height: math.unit(6 + 3/12, "feet"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/comet/front.svg",
  37385. extra: 1681/1462,
  37386. bottom: 26/1707
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(6 + 3/12, "feet"),
  37394. default: true
  37395. },
  37396. ]
  37397. ))
  37398. characterMakers.push(() => makeCharacter(
  37399. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37400. {
  37401. front: {
  37402. height: math.unit(950, "feet"),
  37403. name: "Front",
  37404. image: {
  37405. source: "./media/characters/vortex/front.svg",
  37406. extra: 1497/1434,
  37407. bottom: 56/1553
  37408. }
  37409. },
  37410. maw: {
  37411. height: math.unit(285, "feet"),
  37412. name: "Maw",
  37413. image: {
  37414. source: "./media/characters/vortex/maw.svg"
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Macro",
  37421. height: math.unit(950, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37428. {
  37429. front: {
  37430. height: math.unit(600, "feet"),
  37431. weight: math.unit(0.02, "grams"),
  37432. name: "Front",
  37433. image: {
  37434. source: "./media/characters/doodle/front.svg",
  37435. extra: 1578/1413,
  37436. bottom: 37/1615
  37437. }
  37438. },
  37439. },
  37440. [
  37441. {
  37442. name: "Macro",
  37443. height: math.unit(600, "feet"),
  37444. default: true
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(6 + 6/12, "feet"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/jai/front.svg",
  37456. extra: 1645/1534,
  37457. bottom: 115/1760
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(6 + 6/12, "feet"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(6 + 8/12, "feet"),
  37474. name: "Front",
  37475. image: {
  37476. source: "./media/characters/pixel/front.svg",
  37477. extra: 1900/1735,
  37478. bottom: 63/1963
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(6 + 8/12, "feet"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37492. {
  37493. back: {
  37494. height: math.unit(4 + 1/12, "feet"),
  37495. weight: math.unit(75, "lb"),
  37496. name: "Back",
  37497. image: {
  37498. source: "./media/characters/rhett/back.svg",
  37499. extra: 930/878,
  37500. bottom: 25/955
  37501. }
  37502. },
  37503. front: {
  37504. height: math.unit(4 + 1/12, "feet"),
  37505. weight: math.unit(75, "lb"),
  37506. name: "Front",
  37507. image: {
  37508. source: "./media/characters/rhett/front.svg",
  37509. extra: 1682/1586,
  37510. bottom: 92/1774
  37511. }
  37512. },
  37513. },
  37514. [
  37515. {
  37516. name: "Micro",
  37517. height: math.unit(8, "inches")
  37518. },
  37519. {
  37520. name: "Tiny",
  37521. height: math.unit(2, "feet")
  37522. },
  37523. {
  37524. name: "Normal",
  37525. height: math.unit(4 + 1/12, "feet"),
  37526. default: true
  37527. },
  37528. ]
  37529. ))
  37530. characterMakers.push(() => makeCharacter(
  37531. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37532. {
  37533. front: {
  37534. height: math.unit(3 + 3/12, "feet"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/penny/front.svg",
  37538. extra: 1406/1311,
  37539. bottom: 26/1432
  37540. }
  37541. },
  37542. },
  37543. [
  37544. {
  37545. name: "Normal",
  37546. height: math.unit(3 + 3/12, "feet"),
  37547. default: true
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(4 + 11/12, "feet"),
  37556. name: "Front",
  37557. image: {
  37558. source: "./media/characters/monty/front.svg",
  37559. extra: 1479/1209,
  37560. bottom: 0/1479
  37561. }
  37562. },
  37563. },
  37564. [
  37565. {
  37566. name: "Normal",
  37567. height: math.unit(4 + 11/12, "feet"),
  37568. default: true
  37569. },
  37570. ]
  37571. ))
  37572. characterMakers.push(() => makeCharacter(
  37573. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37574. {
  37575. front: {
  37576. height: math.unit(8 + 4/12, "feet"),
  37577. name: "Front",
  37578. image: {
  37579. source: "./media/characters/sterling/front.svg",
  37580. extra: 1420/1236,
  37581. bottom: 27/1447
  37582. }
  37583. },
  37584. },
  37585. [
  37586. {
  37587. name: "Normal",
  37588. height: math.unit(8 + 4/12, "feet"),
  37589. default: true
  37590. },
  37591. ]
  37592. ))
  37593. characterMakers.push(() => makeCharacter(
  37594. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37595. {
  37596. front: {
  37597. height: math.unit(15, "feet"),
  37598. name: "Front",
  37599. image: {
  37600. source: "./media/characters/marble/front.svg",
  37601. extra: 973/937,
  37602. bottom: 32/1005
  37603. }
  37604. },
  37605. },
  37606. [
  37607. {
  37608. name: "Normal",
  37609. height: math.unit(15, "feet"),
  37610. default: true
  37611. },
  37612. ]
  37613. ))
  37614. characterMakers.push(() => makeCharacter(
  37615. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37616. {
  37617. front: {
  37618. height: math.unit(3, "inches"),
  37619. name: "Front",
  37620. image: {
  37621. source: "./media/characters/powder/front.svg",
  37622. extra: 1504/1334,
  37623. bottom: 518/2022
  37624. }
  37625. },
  37626. },
  37627. [
  37628. {
  37629. name: "Normal",
  37630. height: math.unit(3, "inches"),
  37631. default: true
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(4 + 5/12, "feet"),
  37640. name: "Front",
  37641. image: {
  37642. source: "./media/characters/joey-raccoon/front.svg",
  37643. extra: 1273/1197,
  37644. bottom: 0/1273
  37645. }
  37646. },
  37647. },
  37648. [
  37649. {
  37650. name: "Normal",
  37651. height: math.unit(4 + 5/12, "feet"),
  37652. default: true
  37653. },
  37654. ]
  37655. ))
  37656. characterMakers.push(() => makeCharacter(
  37657. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37658. {
  37659. front: {
  37660. height: math.unit(8 + 4/12, "feet"),
  37661. name: "Front",
  37662. image: {
  37663. source: "./media/characters/vick/front.svg",
  37664. extra: 2187/2118,
  37665. bottom: 47/2234
  37666. }
  37667. },
  37668. },
  37669. [
  37670. {
  37671. name: "Normal",
  37672. height: math.unit(8 + 4/12, "feet"),
  37673. default: true
  37674. },
  37675. ]
  37676. ))
  37677. characterMakers.push(() => makeCharacter(
  37678. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37679. {
  37680. front: {
  37681. height: math.unit(5 + 5/12, "feet"),
  37682. name: "Front",
  37683. image: {
  37684. source: "./media/characters/mitsy/front.svg",
  37685. extra: 1842/1695,
  37686. bottom: 0/1842
  37687. }
  37688. },
  37689. },
  37690. [
  37691. {
  37692. name: "Normal",
  37693. height: math.unit(5 + 5/12, "feet"),
  37694. default: true
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(6 + 3/12, "feet"),
  37703. name: "Front",
  37704. image: {
  37705. source: "./media/characters/silvy/front.svg",
  37706. extra: 1995/1836,
  37707. bottom: 225/2220
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(6 + 3/12, "feet"),
  37715. default: true
  37716. },
  37717. ]
  37718. ))
  37719. characterMakers.push(() => makeCharacter(
  37720. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37721. {
  37722. front: {
  37723. height: math.unit(3 + 8/12, "feet"),
  37724. name: "Front",
  37725. image: {
  37726. source: "./media/characters/rodney/front.svg",
  37727. extra: 1956/1747,
  37728. bottom: 31/1987
  37729. }
  37730. },
  37731. frontDressed: {
  37732. height: math.unit(2.9, "feet"),
  37733. name: "Front (Dressed)",
  37734. image: {
  37735. source: "./media/characters/rodney/front-dressed.svg",
  37736. extra: 1382/1241,
  37737. bottom: 385/1767
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(3 + 8/12, "feet"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(5 + 9/12, "feet"),
  37754. weight: math.unit(194, "lbs"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/zakail-sudekai/front.svg",
  37758. extra: 2696/2533,
  37759. bottom: 248/2944
  37760. }
  37761. },
  37762. maw: {
  37763. height: math.unit(1.35, "feet"),
  37764. name: "Maw",
  37765. image: {
  37766. source: "./media/characters/zakail-sudekai/maw.svg"
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(5 + 9/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(8 + 4/12, "feet"),
  37783. weight: math.unit(1200, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/eleanor/front.svg",
  37787. extra: 1226/1192,
  37788. bottom: 52/1278
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(8 + 4/12, "feet"),
  37793. weight: math.unit(1200, "lb"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/eleanor/back.svg",
  37797. extra: 1242/1184,
  37798. bottom: 60/1302
  37799. }
  37800. },
  37801. head: {
  37802. height: math.unit(2.62, "feet"),
  37803. name: "Head",
  37804. image: {
  37805. source: "./media/characters/eleanor/head.svg"
  37806. }
  37807. },
  37808. },
  37809. [
  37810. {
  37811. name: "Normal",
  37812. height: math.unit(8 + 4/12, "feet"),
  37813. default: true
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(8 + 4/12, "feet"),
  37822. weight: math.unit(750, "lb"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/tanya/front.svg",
  37826. extra: 1749/1615,
  37827. bottom: 33/1782
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(8 + 4/12, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(5, "feet"),
  37844. weight: math.unit(225, "lb"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/cindy/front.svg",
  37848. extra: 1320/1250,
  37849. bottom: 42/1362
  37850. }
  37851. },
  37852. frontDressed: {
  37853. height: math.unit(5, "feet"),
  37854. weight: math.unit(225, "lb"),
  37855. name: "Front (Dressed)",
  37856. image: {
  37857. source: "./media/characters/cindy/front-dressed.svg",
  37858. extra: 1320/1250,
  37859. bottom: 42/1362
  37860. }
  37861. },
  37862. back: {
  37863. height: math.unit(5, "feet"),
  37864. weight: math.unit(225, "lb"),
  37865. name: "Back",
  37866. image: {
  37867. source: "./media/characters/cindy/back.svg",
  37868. extra: 1384/1346,
  37869. bottom: 14/1398
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(5, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(6 + 9/12, "feet"),
  37886. weight: math.unit(440, "lb"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/wilbur-owen/front.svg",
  37890. extra: 1575/1448,
  37891. bottom: 72/1647
  37892. }
  37893. },
  37894. back: {
  37895. height: math.unit(6 + 9/12, "feet"),
  37896. weight: math.unit(440, "lb"),
  37897. name: "Back",
  37898. image: {
  37899. source: "./media/characters/wilbur-owen/back.svg",
  37900. extra: 1578/1445,
  37901. bottom: 36/1614
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Normal",
  37908. height: math.unit(6 + 9/12, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(6 + 5/12, "feet"),
  37918. weight: math.unit(650, "lb"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/keegan/front.svg",
  37922. extra: 2387/2198,
  37923. bottom: 33/2420
  37924. }
  37925. },
  37926. side: {
  37927. height: math.unit(6 + 5/12, "feet"),
  37928. weight: math.unit(650, "lb"),
  37929. name: "Side",
  37930. image: {
  37931. source: "./media/characters/keegan/side.svg",
  37932. extra: 2390/2202,
  37933. bottom: 47/2437
  37934. }
  37935. },
  37936. back: {
  37937. height: math.unit(6 + 5/12, "feet"),
  37938. weight: math.unit(650, "lb"),
  37939. name: "Back",
  37940. image: {
  37941. source: "./media/characters/keegan/back.svg",
  37942. extra: 2418/2268,
  37943. bottom: 15/2433
  37944. }
  37945. },
  37946. frontSfw: {
  37947. height: math.unit(6 + 5/12, "feet"),
  37948. weight: math.unit(650, "lb"),
  37949. name: "Front (SFW)",
  37950. image: {
  37951. source: "./media/characters/keegan/front-sfw.svg",
  37952. extra: 2387/2198,
  37953. bottom: 33/2420
  37954. }
  37955. },
  37956. beans: {
  37957. height: math.unit(1.85, "feet"),
  37958. name: "Beans",
  37959. image: {
  37960. source: "./media/characters/keegan/beans.svg"
  37961. }
  37962. },
  37963. },
  37964. [
  37965. {
  37966. name: "Normal",
  37967. height: math.unit(6 + 5/12, "feet"),
  37968. default: true
  37969. },
  37970. ]
  37971. ))
  37972. characterMakers.push(() => makeCharacter(
  37973. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37974. {
  37975. front: {
  37976. height: math.unit(9, "feet"),
  37977. name: "Front",
  37978. image: {
  37979. source: "./media/characters/colton/front.svg",
  37980. extra: 1589/1326,
  37981. bottom: 139/1728
  37982. }
  37983. },
  37984. },
  37985. [
  37986. {
  37987. name: "Normal",
  37988. height: math.unit(9, "feet"),
  37989. default: true
  37990. },
  37991. ]
  37992. ))
  37993. characterMakers.push(() => makeCharacter(
  37994. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37995. {
  37996. front: {
  37997. height: math.unit(2 + 9/12, "feet"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/bora/front.svg",
  38001. extra: 1265/1250,
  38002. bottom: 24/1289
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(2 + 9/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(8, "feet"),
  38019. name: "Front",
  38020. image: {
  38021. source: "./media/characters/myu-myu/front.svg",
  38022. extra: 1949/1857,
  38023. bottom: 90/2039
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(8, "feet"),
  38031. default: true
  38032. },
  38033. {
  38034. name: "Big",
  38035. height: math.unit(15, "feet")
  38036. },
  38037. {
  38038. name: "BIG",
  38039. height: math.unit(25, "feet")
  38040. },
  38041. ]
  38042. ))
  38043. characterMakers.push(() => makeCharacter(
  38044. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38045. {
  38046. side: {
  38047. height: math.unit(7 + 5/12, "feet"),
  38048. weight: math.unit(2800, "lb"),
  38049. name: "Side",
  38050. image: {
  38051. source: "./media/characters/haloren/side.svg",
  38052. extra: 1793/409,
  38053. bottom: 59/1852
  38054. }
  38055. },
  38056. frontPaw: {
  38057. height: math.unit(2.36, "feet"),
  38058. name: "Front paw",
  38059. image: {
  38060. source: "./media/characters/haloren/front-paw.svg"
  38061. }
  38062. },
  38063. hindPaw: {
  38064. height: math.unit(3.18, "feet"),
  38065. name: "Hind paw",
  38066. image: {
  38067. source: "./media/characters/haloren/hind-paw.svg"
  38068. }
  38069. },
  38070. maw: {
  38071. height: math.unit(5.05, "feet"),
  38072. name: "Maw",
  38073. image: {
  38074. source: "./media/characters/haloren/maw.svg"
  38075. }
  38076. },
  38077. dick: {
  38078. height: math.unit(2.90, "feet"),
  38079. name: "Dick",
  38080. image: {
  38081. source: "./media/characters/haloren/dick.svg"
  38082. }
  38083. },
  38084. },
  38085. [
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(7 + 5/12, "feet"),
  38089. default: true
  38090. },
  38091. {
  38092. name: "Enhanced",
  38093. height: math.unit(14 + 3/12, "feet")
  38094. },
  38095. ]
  38096. ))
  38097. characterMakers.push(() => makeCharacter(
  38098. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38099. {
  38100. front: {
  38101. height: math.unit(171, "cm"),
  38102. name: "Front",
  38103. image: {
  38104. source: "./media/characters/kimmy/front.svg",
  38105. extra: 1491/1435,
  38106. bottom: 53/1544
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Small",
  38113. height: math.unit(9, "cm")
  38114. },
  38115. {
  38116. name: "Normal",
  38117. height: math.unit(171, "cm"),
  38118. default: true
  38119. },
  38120. ]
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(8, "feet"),
  38127. weight: math.unit(300, "lb"),
  38128. name: "Front",
  38129. image: {
  38130. source: "./media/characters/galeboomer/front.svg",
  38131. extra: 4651/4415,
  38132. bottom: 162/4813
  38133. }
  38134. },
  38135. back: {
  38136. height: math.unit(8, "feet"),
  38137. weight: math.unit(300, "lb"),
  38138. name: "Back",
  38139. image: {
  38140. source: "./media/characters/galeboomer/back.svg",
  38141. extra: 4544/4314,
  38142. bottom: 16/4560
  38143. }
  38144. },
  38145. frontAlt: {
  38146. height: math.unit(8, "feet"),
  38147. weight: math.unit(300, "lb"),
  38148. name: "Front (Alt)",
  38149. image: {
  38150. source: "./media/characters/galeboomer/front-alt.svg",
  38151. extra: 4458/4228,
  38152. bottom: 68/4526
  38153. }
  38154. },
  38155. maw: {
  38156. height: math.unit(1.2, "feet"),
  38157. name: "Maw",
  38158. image: {
  38159. source: "./media/characters/galeboomer/maw.svg"
  38160. }
  38161. },
  38162. },
  38163. [
  38164. {
  38165. name: "Normal",
  38166. height: math.unit(8, "feet"),
  38167. default: true
  38168. },
  38169. ]
  38170. ))
  38171. characterMakers.push(() => makeCharacter(
  38172. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38173. {
  38174. front: {
  38175. height: math.unit(5 + 9/12, "feet"),
  38176. weight: math.unit(120, "lb"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/chyr/front.svg",
  38180. extra: 1323/1254,
  38181. bottom: 63/1386
  38182. }
  38183. },
  38184. back: {
  38185. height: math.unit(5 + 9/12, "feet"),
  38186. weight: math.unit(120, "lb"),
  38187. name: "Back",
  38188. image: {
  38189. source: "./media/characters/chyr/back.svg",
  38190. extra: 1323/1252,
  38191. bottom: 48/1371
  38192. }
  38193. },
  38194. },
  38195. [
  38196. {
  38197. name: "Normal",
  38198. height: math.unit(5 + 9/12, "feet"),
  38199. default: true
  38200. },
  38201. ]
  38202. ))
  38203. characterMakers.push(() => makeCharacter(
  38204. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38205. {
  38206. front: {
  38207. height: math.unit(7, "feet"),
  38208. weight: math.unit(310, "lb"),
  38209. name: "Front",
  38210. image: {
  38211. source: "./media/characters/solarus/front.svg",
  38212. extra: 2415/2021,
  38213. bottom: 103/2518
  38214. }
  38215. },
  38216. back: {
  38217. height: math.unit(7, "feet"),
  38218. weight: math.unit(310, "lb"),
  38219. name: "Back",
  38220. image: {
  38221. source: "./media/characters/solarus/back.svg",
  38222. extra: 2463/2089,
  38223. bottom: 79/2542
  38224. }
  38225. },
  38226. },
  38227. [
  38228. {
  38229. name: "Normal",
  38230. height: math.unit(7, "feet"),
  38231. default: true
  38232. },
  38233. ]
  38234. ))
  38235. characterMakers.push(() => makeCharacter(
  38236. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38237. {
  38238. front: {
  38239. height: math.unit(16, "feet"),
  38240. name: "Front",
  38241. image: {
  38242. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38243. extra: 1844/1780,
  38244. bottom: 58/1902
  38245. }
  38246. },
  38247. winterCoat: {
  38248. height: math.unit(16, "feet"),
  38249. name: "Winter Coat",
  38250. image: {
  38251. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38252. extra: 1807/1775,
  38253. bottom: 69/1876
  38254. }
  38255. },
  38256. },
  38257. [
  38258. {
  38259. name: "Normal",
  38260. height: math.unit(16, "feet"),
  38261. default: true
  38262. },
  38263. {
  38264. name: "Chicago Size",
  38265. height: math.unit(560, "feet")
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(11 + 6/12, "feet"),
  38274. weight: math.unit(1366, "lb"),
  38275. name: "Front",
  38276. image: {
  38277. source: "./media/characters/lexor/front.svg",
  38278. extra: 1560/1481,
  38279. bottom: 211/1771
  38280. }
  38281. },
  38282. back: {
  38283. height: math.unit(11 + 6/12, "feet"),
  38284. weight: math.unit(1366, "lb"),
  38285. name: "Back",
  38286. image: {
  38287. source: "./media/characters/lexor/back.svg",
  38288. extra: 1614/1533,
  38289. bottom: 76/1690
  38290. }
  38291. },
  38292. maw: {
  38293. height: math.unit(3, "feet"),
  38294. name: "Maw",
  38295. image: {
  38296. source: "./media/characters/lexor/maw.svg"
  38297. }
  38298. },
  38299. dick: {
  38300. height: math.unit(2.59, "feet"),
  38301. name: "Dick",
  38302. image: {
  38303. source: "./media/characters/lexor/dick.svg"
  38304. }
  38305. },
  38306. },
  38307. [
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(11 + 6/12, "feet"),
  38311. default: true
  38312. },
  38313. ]
  38314. ))
  38315. characterMakers.push(() => makeCharacter(
  38316. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38317. {
  38318. front: {
  38319. height: math.unit(5 + 8/12, "feet"),
  38320. name: "Front",
  38321. image: {
  38322. source: "./media/characters/magnum/front.svg",
  38323. extra: 942/855,
  38324. bottom: 26/968
  38325. }
  38326. },
  38327. },
  38328. [
  38329. {
  38330. name: "Normal",
  38331. height: math.unit(5 + 8/12, "feet"),
  38332. default: true
  38333. },
  38334. ]
  38335. ))
  38336. characterMakers.push(() => makeCharacter(
  38337. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38338. {
  38339. front: {
  38340. height: math.unit(18 + 4/12, "feet"),
  38341. weight: math.unit(1500, "kg"),
  38342. name: "Front",
  38343. image: {
  38344. source: "./media/characters/solas-sharpsman/front.svg",
  38345. extra: 1698/1589,
  38346. bottom: 0/1698
  38347. }
  38348. },
  38349. },
  38350. [
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(18 + 4/12, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(5 + 5/12, "feet"),
  38363. weight: math.unit(180, "lb"),
  38364. name: "Front",
  38365. image: {
  38366. source: "./media/characters/october/front.svg",
  38367. extra: 1800/1650,
  38368. bottom: 0/1800
  38369. }
  38370. },
  38371. frontNsfw: {
  38372. height: math.unit(5 + 5/12, "feet"),
  38373. weight: math.unit(180, "lb"),
  38374. name: "Front (NSFW)",
  38375. image: {
  38376. source: "./media/characters/october/front-nsfw.svg",
  38377. extra: 1392/1307,
  38378. bottom: 42/1434
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Normal",
  38385. height: math.unit(5 + 5/12, "feet"),
  38386. default: true
  38387. },
  38388. ]
  38389. ))
  38390. characterMakers.push(() => makeCharacter(
  38391. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38392. {
  38393. front: {
  38394. height: math.unit(8 + 6/12, "feet"),
  38395. name: "Front",
  38396. image: {
  38397. source: "./media/characters/essynkardi/front.svg",
  38398. extra: 1914/1846,
  38399. bottom: 22/1936
  38400. }
  38401. },
  38402. },
  38403. [
  38404. {
  38405. name: "Normal",
  38406. height: math.unit(8 + 6/12, "feet"),
  38407. default: true
  38408. },
  38409. ]
  38410. ))
  38411. characterMakers.push(() => makeCharacter(
  38412. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38413. {
  38414. front: {
  38415. height: math.unit(6 + 6/12, "feet"),
  38416. weight: math.unit(7, "lb"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/icky/front.svg",
  38420. extra: 813/782,
  38421. bottom: 66/879
  38422. }
  38423. },
  38424. back: {
  38425. height: math.unit(6 + 6/12, "feet"),
  38426. weight: math.unit(7, "lb"),
  38427. name: "Back",
  38428. image: {
  38429. source: "./media/characters/icky/back.svg",
  38430. extra: 754/735,
  38431. bottom: 56/810
  38432. }
  38433. },
  38434. },
  38435. [
  38436. {
  38437. name: "Normal",
  38438. height: math.unit(6 + 6/12, "feet"),
  38439. default: true
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(15, "feet"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/rojas/front.svg",
  38451. extra: 1462/1408,
  38452. bottom: 95/1557
  38453. }
  38454. },
  38455. back: {
  38456. height: math.unit(15, "feet"),
  38457. name: "Back",
  38458. image: {
  38459. source: "./media/characters/rojas/back.svg",
  38460. extra: 1023/954,
  38461. bottom: 28/1051
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "Normal",
  38468. height: math.unit(15, "feet"),
  38469. default: true
  38470. },
  38471. ]
  38472. ))
  38473. characterMakers.push(() => makeCharacter(
  38474. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38475. {
  38476. frontHuman: {
  38477. height: math.unit(5 + 7/12, "feet"),
  38478. name: "Front (Human)",
  38479. image: {
  38480. source: "./media/characters/alek-dryagan/front-human.svg",
  38481. extra: 1687/1667,
  38482. bottom: 69/1756
  38483. }
  38484. },
  38485. backHuman: {
  38486. height: math.unit(5 + 7/12, "feet"),
  38487. name: "Back (Human)",
  38488. image: {
  38489. source: "./media/characters/alek-dryagan/back-human.svg",
  38490. extra: 1670/1649,
  38491. bottom: 65/1735
  38492. }
  38493. },
  38494. frontDemi: {
  38495. height: math.unit(65, "feet"),
  38496. name: "Front (Demi)",
  38497. image: {
  38498. source: "./media/characters/alek-dryagan/front-demi.svg",
  38499. extra: 1669/1642,
  38500. bottom: 49/1718
  38501. }
  38502. },
  38503. backDemi: {
  38504. height: math.unit(65, "feet"),
  38505. name: "Back (Demi)",
  38506. image: {
  38507. source: "./media/characters/alek-dryagan/back-demi.svg",
  38508. extra: 1658/1637,
  38509. bottom: 40/1698
  38510. }
  38511. },
  38512. mawHuman: {
  38513. height: math.unit(0.3, "feet"),
  38514. name: "Maw (Human)",
  38515. image: {
  38516. source: "./media/characters/alek-dryagan/maw-human.svg"
  38517. }
  38518. },
  38519. mawDemi: {
  38520. height: math.unit(3.8, "feet"),
  38521. name: "Maw (Demi)",
  38522. image: {
  38523. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(5 + 7/12, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38537. {
  38538. frontHuman: {
  38539. height: math.unit(5 + 2/12, "feet"),
  38540. name: "Front (Human)",
  38541. image: {
  38542. source: "./media/characters/gen/front-human.svg",
  38543. extra: 1627/1538,
  38544. bottom: 71/1698
  38545. }
  38546. },
  38547. backHuman: {
  38548. height: math.unit(5 + 2/12, "feet"),
  38549. name: "Back (Human)",
  38550. image: {
  38551. source: "./media/characters/gen/back-human.svg",
  38552. extra: 1638/1548,
  38553. bottom: 69/1707
  38554. }
  38555. },
  38556. frontDemi: {
  38557. height: math.unit(5 + 2/12, "feet"),
  38558. name: "Front (Demi)",
  38559. image: {
  38560. source: "./media/characters/gen/front-demi.svg",
  38561. extra: 1627/1538,
  38562. bottom: 71/1698
  38563. }
  38564. },
  38565. backDemi: {
  38566. height: math.unit(5 + 2/12, "feet"),
  38567. name: "Back (Demi)",
  38568. image: {
  38569. source: "./media/characters/gen/back-demi.svg",
  38570. extra: 1638/1548,
  38571. bottom: 69/1707
  38572. }
  38573. },
  38574. },
  38575. [
  38576. {
  38577. name: "Normal",
  38578. height: math.unit(5 + 2/12, "feet"),
  38579. default: true
  38580. },
  38581. ]
  38582. ))
  38583. characterMakers.push(() => makeCharacter(
  38584. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38585. {
  38586. frontImp: {
  38587. height: math.unit(1 + 11/12, "feet"),
  38588. name: "Front (Imp)",
  38589. image: {
  38590. source: "./media/characters/max-kobold/front-imp.svg",
  38591. extra: 1238/1134,
  38592. bottom: 81/1319
  38593. }
  38594. },
  38595. backImp: {
  38596. height: math.unit(1 + 11/12, "feet"),
  38597. name: "Back (Imp)",
  38598. image: {
  38599. source: "./media/characters/max-kobold/back-imp.svg",
  38600. extra: 1334/1175,
  38601. bottom: 34/1368
  38602. }
  38603. },
  38604. frontDemi: {
  38605. height: math.unit(5 + 9/12, "feet"),
  38606. name: "Front (Demi)",
  38607. image: {
  38608. source: "./media/characters/max-kobold/front-demi.svg",
  38609. extra: 1715/1685,
  38610. bottom: 54/1769
  38611. }
  38612. },
  38613. backDemi: {
  38614. height: math.unit(5 + 9/12, "feet"),
  38615. name: "Back (Demi)",
  38616. image: {
  38617. source: "./media/characters/max-kobold/back-demi.svg",
  38618. extra: 1752/1729,
  38619. bottom: 41/1793
  38620. }
  38621. },
  38622. handImp: {
  38623. height: math.unit(0.45, "feet"),
  38624. name: "Hand (Imp)",
  38625. image: {
  38626. source: "./media/characters/max-kobold/hand.svg"
  38627. }
  38628. },
  38629. pawImp: {
  38630. height: math.unit(0.46, "feet"),
  38631. name: "Paw (Imp)",
  38632. image: {
  38633. source: "./media/characters/max-kobold/paw.svg"
  38634. }
  38635. },
  38636. handDemi: {
  38637. height: math.unit(0.80, "feet"),
  38638. name: "Hand (Demi)",
  38639. image: {
  38640. source: "./media/characters/max-kobold/hand.svg"
  38641. }
  38642. },
  38643. pawDemi: {
  38644. height: math.unit(1.1, "feet"),
  38645. name: "Paw (Demi)",
  38646. image: {
  38647. source: "./media/characters/max-kobold/paw.svg"
  38648. }
  38649. },
  38650. headImp: {
  38651. height: math.unit(1.33, "feet"),
  38652. name: "Head (Imp)",
  38653. image: {
  38654. source: "./media/characters/max-kobold/head-imp.svg"
  38655. }
  38656. },
  38657. mawImp: {
  38658. height: math.unit(0.75, "feet"),
  38659. name: "Maw (Imp)",
  38660. image: {
  38661. source: "./media/characters/max-kobold/maw-imp.svg"
  38662. }
  38663. },
  38664. mawDemi: {
  38665. height: math.unit(0.42, "feet"),
  38666. name: "Maw (Demi)",
  38667. image: {
  38668. source: "./media/characters/max-kobold/maw-demi.svg"
  38669. }
  38670. },
  38671. },
  38672. [
  38673. {
  38674. name: "Normal",
  38675. height: math.unit(1 + 11/12, "feet"),
  38676. default: true
  38677. },
  38678. ]
  38679. ))
  38680. characterMakers.push(() => makeCharacter(
  38681. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38682. {
  38683. front: {
  38684. height: math.unit(7 + 5/12, "feet"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/carbon/front.svg",
  38688. extra: 1754/1689,
  38689. bottom: 65/1819
  38690. }
  38691. },
  38692. back: {
  38693. height: math.unit(7 + 5/12, "feet"),
  38694. name: "Back",
  38695. image: {
  38696. source: "./media/characters/carbon/back.svg",
  38697. extra: 1762/1695,
  38698. bottom: 24/1786
  38699. }
  38700. },
  38701. frontGigantamax: {
  38702. height: math.unit(150, "feet"),
  38703. name: "Front (Gigantamax)",
  38704. image: {
  38705. source: "./media/characters/carbon/front-gigantamax.svg",
  38706. extra: 1826/1669,
  38707. bottom: 59/1885
  38708. }
  38709. },
  38710. backGigantamax: {
  38711. height: math.unit(150, "feet"),
  38712. name: "Back (Gigantamax)",
  38713. image: {
  38714. source: "./media/characters/carbon/back-gigantamax.svg",
  38715. extra: 1796/1653,
  38716. bottom: 53/1849
  38717. }
  38718. },
  38719. maw: {
  38720. height: math.unit(0.48, "feet"),
  38721. name: "Maw",
  38722. image: {
  38723. source: "./media/characters/carbon/maw.svg"
  38724. }
  38725. },
  38726. mawGigantamax: {
  38727. height: math.unit(7.5, "feet"),
  38728. name: "Maw (Gigantamax)",
  38729. image: {
  38730. source: "./media/characters/carbon/maw-gigantamax.svg"
  38731. }
  38732. },
  38733. },
  38734. [
  38735. {
  38736. name: "Normal",
  38737. height: math.unit(7 + 5/12, "feet"),
  38738. default: true
  38739. },
  38740. ]
  38741. ))
  38742. characterMakers.push(() => makeCharacter(
  38743. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38744. {
  38745. front: {
  38746. height: math.unit(6, "feet"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/maverick/front.svg",
  38750. extra: 1672/1661,
  38751. bottom: 85/1757
  38752. }
  38753. },
  38754. back: {
  38755. height: math.unit(6, "feet"),
  38756. name: "Back",
  38757. image: {
  38758. source: "./media/characters/maverick/back.svg",
  38759. extra: 1642/1631,
  38760. bottom: 38/1680
  38761. }
  38762. },
  38763. },
  38764. [
  38765. {
  38766. name: "Normal",
  38767. height: math.unit(6, "feet"),
  38768. default: true
  38769. },
  38770. ]
  38771. ))
  38772. characterMakers.push(() => makeCharacter(
  38773. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38774. {
  38775. front: {
  38776. height: math.unit(15, "feet"),
  38777. weight: math.unit(615, "lb"),
  38778. name: "Front",
  38779. image: {
  38780. source: "./media/characters/grockle/front.svg",
  38781. extra: 1535/1427,
  38782. bottom: 56/1591
  38783. }
  38784. },
  38785. },
  38786. [
  38787. {
  38788. name: "Normal",
  38789. height: math.unit(15, "feet"),
  38790. default: true
  38791. },
  38792. {
  38793. name: "Large",
  38794. height: math.unit(150, "feet")
  38795. },
  38796. {
  38797. name: "Macro",
  38798. height: math.unit(1876, "feet")
  38799. },
  38800. {
  38801. name: "Mega Macro",
  38802. height: math.unit(121940, "feet")
  38803. },
  38804. {
  38805. name: "Giga Macro",
  38806. height: math.unit(750, "km")
  38807. },
  38808. {
  38809. name: "Tera Macro",
  38810. height: math.unit(750000, "km")
  38811. },
  38812. {
  38813. name: "Galactic",
  38814. height: math.unit(1.4e5, "km")
  38815. },
  38816. {
  38817. name: "Godlike",
  38818. height: math.unit(9.8e280, "galaxies")
  38819. },
  38820. ]
  38821. ))
  38822. characterMakers.push(() => makeCharacter(
  38823. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38824. {
  38825. front: {
  38826. height: math.unit(11, "meters"),
  38827. weight: math.unit(20, "tonnes"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/alistair/front.svg",
  38831. extra: 1265/1009,
  38832. bottom: 93/1358
  38833. }
  38834. },
  38835. },
  38836. [
  38837. {
  38838. name: "Normal",
  38839. height: math.unit(11, "meters"),
  38840. default: true
  38841. },
  38842. ]
  38843. ))
  38844. characterMakers.push(() => makeCharacter(
  38845. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38846. {
  38847. front: {
  38848. height: math.unit(5 + 8/12, "feet"),
  38849. name: "Front",
  38850. image: {
  38851. source: "./media/characters/haruka/front.svg",
  38852. extra: 2012/1952,
  38853. bottom: 0/2012
  38854. }
  38855. },
  38856. },
  38857. [
  38858. {
  38859. name: "Normal",
  38860. height: math.unit(5 + 8/12, "feet"),
  38861. default: true
  38862. },
  38863. ]
  38864. ))
  38865. characterMakers.push(() => makeCharacter(
  38866. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38867. {
  38868. back: {
  38869. height: math.unit(9, "feet"),
  38870. name: "Back",
  38871. image: {
  38872. source: "./media/characters/vivian-sylveon/back.svg",
  38873. extra: 1853/1714,
  38874. bottom: 0/1853
  38875. }
  38876. },
  38877. },
  38878. [
  38879. {
  38880. name: "Normal",
  38881. height: math.unit(9, "feet"),
  38882. default: true
  38883. },
  38884. {
  38885. name: "Macro",
  38886. height: math.unit(500, "feet")
  38887. },
  38888. {
  38889. name: "Megamacro",
  38890. height: math.unit(600, "miles")
  38891. },
  38892. {
  38893. name: "Gigamacro",
  38894. height: math.unit(30000, "miles")
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38900. {
  38901. anthro: {
  38902. height: math.unit(5 + 10/12, "feet"),
  38903. weight: math.unit(100, "lb"),
  38904. name: "Anthro",
  38905. image: {
  38906. source: "./media/characters/daiki/anthro.svg",
  38907. extra: 1115/1027,
  38908. bottom: 69/1184
  38909. }
  38910. },
  38911. feral: {
  38912. height: math.unit(200, "feet"),
  38913. name: "Feral",
  38914. image: {
  38915. source: "./media/characters/daiki/feral.svg",
  38916. extra: 1256/313,
  38917. bottom: 39/1295
  38918. }
  38919. },
  38920. feralHead: {
  38921. height: math.unit(171, "feet"),
  38922. name: "Feral Head",
  38923. image: {
  38924. source: "./media/characters/daiki/feral-head.svg"
  38925. }
  38926. },
  38927. manaDragon: {
  38928. height: math.unit(170, "meters"),
  38929. name: "Mana-dragon",
  38930. image: {
  38931. source: "./media/characters/daiki/mana-dragon.svg",
  38932. extra: 763/420,
  38933. bottom: 97/860
  38934. }
  38935. },
  38936. },
  38937. [
  38938. {
  38939. name: "Normal",
  38940. height: math.unit(5 + 10/12, "feet"),
  38941. default: true
  38942. },
  38943. ]
  38944. ))
  38945. characterMakers.push(() => makeCharacter(
  38946. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38947. {
  38948. fullyEquippedFront: {
  38949. height: math.unit(3 + 1/12, "feet"),
  38950. weight: math.unit(24, "lb"),
  38951. name: "Fully Equipped (Front)",
  38952. image: {
  38953. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38954. extra: 687/605,
  38955. bottom: 18/705
  38956. }
  38957. },
  38958. fullyEquippedBack: {
  38959. height: math.unit(3 + 1/12, "feet"),
  38960. weight: math.unit(24, "lb"),
  38961. name: "Fully Equipped (Back)",
  38962. image: {
  38963. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38964. extra: 689/590,
  38965. bottom: 18/707
  38966. }
  38967. },
  38968. dailyWear: {
  38969. height: math.unit(3 + 1/12, "feet"),
  38970. weight: math.unit(24, "lb"),
  38971. name: "Daily Wear",
  38972. image: {
  38973. source: "./media/characters/tea-spot/daily-wear.svg",
  38974. extra: 701/620,
  38975. bottom: 21/722
  38976. }
  38977. },
  38978. maidWork: {
  38979. height: math.unit(3 + 1/12, "feet"),
  38980. weight: math.unit(24, "lb"),
  38981. name: "Maid Work",
  38982. image: {
  38983. source: "./media/characters/tea-spot/maid-work.svg",
  38984. extra: 693/609,
  38985. bottom: 15/708
  38986. }
  38987. },
  38988. },
  38989. [
  38990. {
  38991. name: "Normal",
  38992. height: math.unit(3 + 1/12, "feet"),
  38993. default: true
  38994. },
  38995. ]
  38996. ))
  38997. characterMakers.push(() => makeCharacter(
  38998. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38999. {
  39000. front: {
  39001. height: math.unit(175, "cm"),
  39002. weight: math.unit(75, "kg"),
  39003. name: "Front",
  39004. image: {
  39005. source: "./media/characters/chee/front.svg",
  39006. extra: 1796/1740,
  39007. bottom: 40/1836
  39008. }
  39009. },
  39010. },
  39011. [
  39012. {
  39013. name: "Micro-Micro",
  39014. height: math.unit(1, "nm")
  39015. },
  39016. {
  39017. name: "Micro-erst",
  39018. height: math.unit(1, "micrometer")
  39019. },
  39020. {
  39021. name: "Micro-er",
  39022. height: math.unit(1, "cm")
  39023. },
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(175, "cm"),
  39027. default: true
  39028. },
  39029. {
  39030. name: "Macro",
  39031. height: math.unit(100, "m")
  39032. },
  39033. {
  39034. name: "Macro-er",
  39035. height: math.unit(1, "km")
  39036. },
  39037. {
  39038. name: "Macro-erst",
  39039. height: math.unit(10, "km")
  39040. },
  39041. {
  39042. name: "Macro-Macro",
  39043. height: math.unit(100, "km")
  39044. },
  39045. ]
  39046. ))
  39047. characterMakers.push(() => makeCharacter(
  39048. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39049. {
  39050. front: {
  39051. height: math.unit(11 + 9/12, "feet"),
  39052. weight: math.unit(935, "lb"),
  39053. name: "Front",
  39054. image: {
  39055. source: "./media/characters/kingsley/front.svg",
  39056. extra: 1803/1674,
  39057. bottom: 127/1930
  39058. }
  39059. },
  39060. frontNude: {
  39061. height: math.unit(11 + 9/12, "feet"),
  39062. weight: math.unit(935, "lb"),
  39063. name: "Front (Nude)",
  39064. image: {
  39065. source: "./media/characters/kingsley/front-nude.svg",
  39066. extra: 1803/1674,
  39067. bottom: 127/1930
  39068. }
  39069. },
  39070. },
  39071. [
  39072. {
  39073. name: "Normal",
  39074. height: math.unit(11 + 9/12, "feet"),
  39075. default: true
  39076. },
  39077. ]
  39078. ))
  39079. characterMakers.push(() => makeCharacter(
  39080. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39081. {
  39082. side: {
  39083. height: math.unit(9, "feet"),
  39084. name: "Side",
  39085. image: {
  39086. source: "./media/characters/rymel/side.svg",
  39087. extra: 792/469,
  39088. bottom: 121/913
  39089. }
  39090. },
  39091. maw: {
  39092. height: math.unit(2.4, "meters"),
  39093. name: "Maw",
  39094. image: {
  39095. source: "./media/characters/rymel/maw.svg"
  39096. }
  39097. },
  39098. },
  39099. [
  39100. {
  39101. name: "House Drake",
  39102. height: math.unit(2, "feet")
  39103. },
  39104. {
  39105. name: "Reduced",
  39106. height: math.unit(4.5, "feet")
  39107. },
  39108. {
  39109. name: "Normal",
  39110. height: math.unit(9, "feet"),
  39111. default: true
  39112. },
  39113. ]
  39114. ))
  39115. characterMakers.push(() => makeCharacter(
  39116. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39117. {
  39118. front: {
  39119. height: math.unit(1.74, "meters"),
  39120. weight: math.unit(55, "kg"),
  39121. name: "Front",
  39122. image: {
  39123. source: "./media/characters/rubus/front.svg",
  39124. extra: 1894/1742,
  39125. bottom: 44/1938
  39126. }
  39127. },
  39128. },
  39129. [
  39130. {
  39131. name: "Normal",
  39132. height: math.unit(1.74, "meters"),
  39133. default: true
  39134. },
  39135. ]
  39136. ))
  39137. characterMakers.push(() => makeCharacter(
  39138. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39139. {
  39140. front: {
  39141. height: math.unit(5 + 2/12, "feet"),
  39142. weight: math.unit(112, "lb"),
  39143. name: "Front",
  39144. image: {
  39145. source: "./media/characters/cassie-kingston/front.svg",
  39146. extra: 1438/1390,
  39147. bottom: 47/1485
  39148. }
  39149. },
  39150. },
  39151. [
  39152. {
  39153. name: "Normal",
  39154. height: math.unit(5 + 2/12, "feet"),
  39155. default: true
  39156. },
  39157. {
  39158. name: "Macro",
  39159. height: math.unit(128, "feet")
  39160. },
  39161. {
  39162. name: "Megamacro",
  39163. height: math.unit(2.56, "miles")
  39164. },
  39165. ]
  39166. ))
  39167. characterMakers.push(() => makeCharacter(
  39168. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39169. {
  39170. front: {
  39171. height: math.unit(7, "feet"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/fox/front.svg",
  39175. extra: 1798/1703,
  39176. bottom: 55/1853
  39177. }
  39178. },
  39179. back: {
  39180. height: math.unit(7, "feet"),
  39181. name: "Back",
  39182. image: {
  39183. source: "./media/characters/fox/back.svg",
  39184. extra: 1748/1649,
  39185. bottom: 32/1780
  39186. }
  39187. },
  39188. head: {
  39189. height: math.unit(1.95, "feet"),
  39190. name: "Head",
  39191. image: {
  39192. source: "./media/characters/fox/head.svg"
  39193. }
  39194. },
  39195. dick: {
  39196. height: math.unit(1.33, "feet"),
  39197. name: "Dick",
  39198. image: {
  39199. source: "./media/characters/fox/dick.svg"
  39200. }
  39201. },
  39202. foot: {
  39203. height: math.unit(1, "feet"),
  39204. name: "Foot",
  39205. image: {
  39206. source: "./media/characters/fox/foot.svg"
  39207. }
  39208. },
  39209. paw: {
  39210. height: math.unit(0.92, "feet"),
  39211. name: "Paw",
  39212. image: {
  39213. source: "./media/characters/fox/paw.svg"
  39214. }
  39215. },
  39216. },
  39217. [
  39218. {
  39219. name: "Small",
  39220. height: math.unit(3, "inches")
  39221. },
  39222. {
  39223. name: "\"Realistic\"",
  39224. height: math.unit(7, "feet")
  39225. },
  39226. {
  39227. name: "Normal",
  39228. height: math.unit(150, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "BIG",
  39233. height: math.unit(1200, "feet")
  39234. },
  39235. {
  39236. name: "👀",
  39237. height: math.unit(5, "miles")
  39238. },
  39239. {
  39240. name: "👀👀👀",
  39241. height: math.unit(64, "miles")
  39242. },
  39243. ]
  39244. ))
  39245. characterMakers.push(() => makeCharacter(
  39246. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39247. {
  39248. front: {
  39249. height: math.unit(625, "feet"),
  39250. name: "Front",
  39251. image: {
  39252. source: "./media/characters/asonja-rossa/front.svg",
  39253. extra: 1833/1686,
  39254. bottom: 24/1857
  39255. }
  39256. },
  39257. back: {
  39258. height: math.unit(625, "feet"),
  39259. name: "Back",
  39260. image: {
  39261. source: "./media/characters/asonja-rossa/back.svg",
  39262. extra: 1852/1753,
  39263. bottom: 26/1878
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Macro",
  39270. height: math.unit(625, "feet"),
  39271. default: true
  39272. },
  39273. ]
  39274. ))
  39275. characterMakers.push(() => makeCharacter(
  39276. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39277. {
  39278. side: {
  39279. height: math.unit(8, "feet"),
  39280. name: "Side",
  39281. image: {
  39282. source: "./media/characters/rezukii/side.svg",
  39283. extra: 979/542,
  39284. bottom: 87/1066
  39285. }
  39286. },
  39287. sitting: {
  39288. height: math.unit(14.6, "feet"),
  39289. name: "Sitting",
  39290. image: {
  39291. source: "./media/characters/rezukii/sitting.svg",
  39292. extra: 1023/813,
  39293. bottom: 45/1068
  39294. }
  39295. },
  39296. },
  39297. [
  39298. {
  39299. name: "Tiny",
  39300. height: math.unit(2, "feet")
  39301. },
  39302. {
  39303. name: "Smol",
  39304. height: math.unit(4, "feet")
  39305. },
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(8, "feet"),
  39309. default: true
  39310. },
  39311. {
  39312. name: "Big",
  39313. height: math.unit(12, "feet")
  39314. },
  39315. {
  39316. name: "Macro",
  39317. height: math.unit(30, "feet")
  39318. },
  39319. ]
  39320. ))
  39321. characterMakers.push(() => makeCharacter(
  39322. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39323. {
  39324. front: {
  39325. height: math.unit(14, "feet"),
  39326. weight: math.unit(9.5, "tonnes"),
  39327. name: "Front",
  39328. image: {
  39329. source: "./media/characters/dawnheart/front.svg",
  39330. extra: 2792/2675,
  39331. bottom: 64/2856
  39332. }
  39333. },
  39334. },
  39335. [
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(14, "feet"),
  39339. default: true
  39340. },
  39341. ]
  39342. ))
  39343. characterMakers.push(() => makeCharacter(
  39344. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39345. {
  39346. front: {
  39347. height: math.unit(1.7, "m"),
  39348. name: "Front",
  39349. image: {
  39350. source: "./media/characters/gladi/front.svg",
  39351. extra: 1460/1362,
  39352. bottom: 19/1479
  39353. }
  39354. },
  39355. back: {
  39356. height: math.unit(1.7, "m"),
  39357. name: "Back",
  39358. image: {
  39359. source: "./media/characters/gladi/back.svg",
  39360. extra: 1459/1357,
  39361. bottom: 12/1471
  39362. }
  39363. },
  39364. feral: {
  39365. height: math.unit(2.05, "m"),
  39366. name: "Feral",
  39367. image: {
  39368. source: "./media/characters/gladi/feral.svg",
  39369. extra: 821/557,
  39370. bottom: 91/912
  39371. }
  39372. },
  39373. },
  39374. [
  39375. {
  39376. name: "Shortest",
  39377. height: math.unit(70, "cm")
  39378. },
  39379. {
  39380. name: "Normal",
  39381. height: math.unit(1.7, "m")
  39382. },
  39383. {
  39384. name: "Macro",
  39385. height: math.unit(10, "m"),
  39386. default: true
  39387. },
  39388. {
  39389. name: "Tallest",
  39390. height: math.unit(200, "m")
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(5 + 7/12, "feet"),
  39399. weight: math.unit(2, "tons"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/erdno/front.svg",
  39403. extra: 1234/1129,
  39404. bottom: 35/1269
  39405. }
  39406. },
  39407. angled: {
  39408. height: math.unit(5 + 7/12, "feet"),
  39409. weight: math.unit(2, "tons"),
  39410. name: "Angled",
  39411. image: {
  39412. source: "./media/characters/erdno/angled.svg",
  39413. extra: 1185/1139,
  39414. bottom: 36/1221
  39415. }
  39416. },
  39417. side: {
  39418. height: math.unit(5 + 7/12, "feet"),
  39419. weight: math.unit(2, "tons"),
  39420. name: "Side",
  39421. image: {
  39422. source: "./media/characters/erdno/side.svg",
  39423. extra: 1191/1144,
  39424. bottom: 40/1231
  39425. }
  39426. },
  39427. back: {
  39428. height: math.unit(5 + 7/12, "feet"),
  39429. weight: math.unit(2, "tons"),
  39430. name: "Back",
  39431. image: {
  39432. source: "./media/characters/erdno/back.svg",
  39433. extra: 1202/1146,
  39434. bottom: 17/1219
  39435. }
  39436. },
  39437. frontNsfw: {
  39438. height: math.unit(5 + 7/12, "feet"),
  39439. weight: math.unit(2, "tons"),
  39440. name: "Front (NSFW)",
  39441. image: {
  39442. source: "./media/characters/erdno/front-nsfw.svg",
  39443. extra: 1234/1129,
  39444. bottom: 35/1269
  39445. }
  39446. },
  39447. angledNsfw: {
  39448. height: math.unit(5 + 7/12, "feet"),
  39449. weight: math.unit(2, "tons"),
  39450. name: "Angled (NSFW)",
  39451. image: {
  39452. source: "./media/characters/erdno/angled-nsfw.svg",
  39453. extra: 1185/1139,
  39454. bottom: 36/1221
  39455. }
  39456. },
  39457. sideNsfw: {
  39458. height: math.unit(5 + 7/12, "feet"),
  39459. weight: math.unit(2, "tons"),
  39460. name: "Side (NSFW)",
  39461. image: {
  39462. source: "./media/characters/erdno/side-nsfw.svg",
  39463. extra: 1191/1144,
  39464. bottom: 40/1231
  39465. }
  39466. },
  39467. backNsfw: {
  39468. height: math.unit(5 + 7/12, "feet"),
  39469. weight: math.unit(2, "tons"),
  39470. name: "Back (NSFW)",
  39471. image: {
  39472. source: "./media/characters/erdno/back-nsfw.svg",
  39473. extra: 1202/1146,
  39474. bottom: 17/1219
  39475. }
  39476. },
  39477. frontHyper: {
  39478. height: math.unit(5 + 7/12, "feet"),
  39479. weight: math.unit(2, "tons"),
  39480. name: "Front (Hyper)",
  39481. image: {
  39482. source: "./media/characters/erdno/front-hyper.svg",
  39483. extra: 1298/1136,
  39484. bottom: 35/1333
  39485. }
  39486. },
  39487. },
  39488. [
  39489. {
  39490. name: "Normal",
  39491. height: math.unit(5 + 7/12, "feet"),
  39492. default: true
  39493. },
  39494. {
  39495. name: "Big",
  39496. height: math.unit(5.7, "meters")
  39497. },
  39498. {
  39499. name: "Macro",
  39500. height: math.unit(5.7, "kilometers")
  39501. },
  39502. {
  39503. name: "Megamacro",
  39504. height: math.unit(5.7, "earths")
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(5 + 10/12, "feet"),
  39513. weight: math.unit(150, "lb"),
  39514. name: "Front",
  39515. image: {
  39516. source: "./media/characters/jamie/front.svg",
  39517. extra: 1908/1768,
  39518. bottom: 19/1927
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Minimum",
  39525. height: math.unit(2, "cm")
  39526. },
  39527. {
  39528. name: "Micro",
  39529. height: math.unit(3, "inches")
  39530. },
  39531. {
  39532. name: "Normal",
  39533. height: math.unit(5 + 10/12, "feet"),
  39534. default: true
  39535. },
  39536. {
  39537. name: "Macro",
  39538. height: math.unit(150, "feet")
  39539. },
  39540. {
  39541. name: "Megamacro",
  39542. height: math.unit(10000, "m")
  39543. },
  39544. ]
  39545. ))
  39546. characterMakers.push(() => makeCharacter(
  39547. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39548. {
  39549. front: {
  39550. height: math.unit(2, "meters"),
  39551. weight: math.unit(100, "kg"),
  39552. name: "Front",
  39553. image: {
  39554. source: "./media/characters/shiron/front.svg",
  39555. extra: 2103/1985,
  39556. bottom: 98/2201
  39557. }
  39558. },
  39559. back: {
  39560. height: math.unit(2, "meters"),
  39561. weight: math.unit(100, "kg"),
  39562. name: "Back",
  39563. image: {
  39564. source: "./media/characters/shiron/back.svg",
  39565. extra: 2110/2015,
  39566. bottom: 89/2199
  39567. }
  39568. },
  39569. hand: {
  39570. height: math.unit(0.96, "feet"),
  39571. name: "Hand",
  39572. image: {
  39573. source: "./media/characters/shiron/hand.svg"
  39574. }
  39575. },
  39576. foot: {
  39577. height: math.unit(1.464, "feet"),
  39578. name: "Foot",
  39579. image: {
  39580. source: "./media/characters/shiron/foot.svg"
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(2, "meters")
  39588. },
  39589. {
  39590. name: "Macro",
  39591. height: math.unit(500, "meters"),
  39592. default: true
  39593. },
  39594. {
  39595. name: "Megamacro",
  39596. height: math.unit(20, "km")
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(6, "feet"),
  39605. name: "Front",
  39606. image: {
  39607. source: "./media/characters/sam/front.svg",
  39608. extra: 849/826,
  39609. bottom: 19/868
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(6, "feet"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(8 + 4/12, "feet"),
  39626. weight: math.unit(122, "kg"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/namori-kurogawa/front.svg",
  39630. extra: 1894/1576,
  39631. bottom: 34/1928
  39632. }
  39633. },
  39634. },
  39635. [
  39636. {
  39637. name: "Normal",
  39638. height: math.unit(8 + 4/12, "feet"),
  39639. default: true
  39640. },
  39641. ]
  39642. ))
  39643. characterMakers.push(() => makeCharacter(
  39644. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39645. {
  39646. front: {
  39647. height: math.unit(9, "feet"),
  39648. weight: math.unit(621, "lb"),
  39649. name: "Front",
  39650. image: {
  39651. source: "./media/characters/unmru/front.svg",
  39652. extra: 1853/1747,
  39653. bottom: 73/1926
  39654. }
  39655. },
  39656. side: {
  39657. height: math.unit(9, "feet"),
  39658. weight: math.unit(621, "lb"),
  39659. name: "Side",
  39660. image: {
  39661. source: "./media/characters/unmru/side.svg",
  39662. extra: 1781/1671,
  39663. bottom: 127/1908
  39664. }
  39665. },
  39666. back: {
  39667. height: math.unit(9, "feet"),
  39668. weight: math.unit(621, "lb"),
  39669. name: "Back",
  39670. image: {
  39671. source: "./media/characters/unmru/back.svg",
  39672. extra: 1894/1765,
  39673. bottom: 75/1969
  39674. }
  39675. },
  39676. dick: {
  39677. height: math.unit(3, "feet"),
  39678. weight: math.unit(35, "lb"),
  39679. name: "Dick",
  39680. image: {
  39681. source: "./media/characters/unmru/dick.svg"
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(9, "feet")
  39689. },
  39690. {
  39691. name: "Natural",
  39692. height: math.unit(27, "feet"),
  39693. default: true
  39694. },
  39695. {
  39696. name: "Giant",
  39697. height: math.unit(90, "feet")
  39698. },
  39699. {
  39700. name: "Kaiju",
  39701. height: math.unit(270, "feet")
  39702. },
  39703. {
  39704. name: "Macro",
  39705. height: math.unit(900, "feet")
  39706. },
  39707. {
  39708. name: "Macro+",
  39709. height: math.unit(2700, "feet")
  39710. },
  39711. {
  39712. name: "Megamacro",
  39713. height: math.unit(9000, "feet")
  39714. },
  39715. {
  39716. name: "City-Crushing",
  39717. height: math.unit(27000, "feet")
  39718. },
  39719. {
  39720. name: "Mountain-Mashing",
  39721. height: math.unit(90000, "feet")
  39722. },
  39723. {
  39724. name: "Earth-Eclipsing",
  39725. height: math.unit(2.7e8, "feet")
  39726. },
  39727. {
  39728. name: "Sol-Swallowing",
  39729. height: math.unit(9e10, "feet")
  39730. },
  39731. {
  39732. name: "Majoris-Munching",
  39733. height: math.unit(2.7e13, "feet")
  39734. },
  39735. ]
  39736. ))
  39737. characterMakers.push(() => makeCharacter(
  39738. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39739. {
  39740. front: {
  39741. height: math.unit(1, "inch"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/squeaks-mouse/front.svg",
  39745. extra: 352/308,
  39746. bottom: 25/377
  39747. }
  39748. },
  39749. },
  39750. [
  39751. {
  39752. name: "Micro",
  39753. height: math.unit(1, "inch"),
  39754. default: true
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39760. {
  39761. side: {
  39762. height: math.unit(35, "feet"),
  39763. name: "Side",
  39764. image: {
  39765. source: "./media/characters/sayko/side.svg",
  39766. extra: 1697/1021,
  39767. bottom: 82/1779
  39768. }
  39769. },
  39770. head: {
  39771. height: math.unit(16, "feet"),
  39772. name: "Head",
  39773. image: {
  39774. source: "./media/characters/sayko/head.svg"
  39775. }
  39776. },
  39777. forepaw: {
  39778. height: math.unit(7.85, "feet"),
  39779. name: "Forepaw",
  39780. image: {
  39781. source: "./media/characters/sayko/forepaw.svg"
  39782. }
  39783. },
  39784. hindpaw: {
  39785. height: math.unit(8.8, "feet"),
  39786. name: "Hindpaw",
  39787. image: {
  39788. source: "./media/characters/sayko/hindpaw.svg"
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(35, "feet"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Colossus",
  39800. height: math.unit(100, "meters")
  39801. },
  39802. {
  39803. name: "\"Small\" Deity",
  39804. height: math.unit(1, "km")
  39805. },
  39806. {
  39807. name: "\"Large\" Deity",
  39808. height: math.unit(15, "km")
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39814. {
  39815. front: {
  39816. height: math.unit(6, "feet"),
  39817. weight: math.unit(250, "lb"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/mukiro/front.svg",
  39821. extra: 1368/1310,
  39822. bottom: 34/1402
  39823. }
  39824. },
  39825. },
  39826. [
  39827. {
  39828. name: "Normal",
  39829. height: math.unit(6, "feet"),
  39830. default: true
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(12 + 4/12, "feet"),
  39839. name: "Front",
  39840. image: {
  39841. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39842. extra: 1346/1311,
  39843. bottom: 65/1411
  39844. }
  39845. },
  39846. },
  39847. [
  39848. {
  39849. name: "Base",
  39850. height: math.unit(12 + 4/12, "feet"),
  39851. default: true
  39852. },
  39853. {
  39854. name: "Macro",
  39855. height: math.unit(150, "feet")
  39856. },
  39857. {
  39858. name: "Mega",
  39859. height: math.unit(2, "miles")
  39860. },
  39861. {
  39862. name: "Demi God",
  39863. height: math.unit(4, "AU")
  39864. },
  39865. {
  39866. name: "God Size",
  39867. height: math.unit(1, "universe")
  39868. },
  39869. ]
  39870. ))
  39871. characterMakers.push(() => makeCharacter(
  39872. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39873. {
  39874. front: {
  39875. height: math.unit(3 + 3/12, "feet"),
  39876. weight: math.unit(88, "lb"),
  39877. name: "Front",
  39878. image: {
  39879. source: "./media/characters/trey/front.svg",
  39880. extra: 1815/1509,
  39881. bottom: 60/1875
  39882. }
  39883. },
  39884. },
  39885. [
  39886. {
  39887. name: "Normal",
  39888. height: math.unit(3 + 3/12, "feet"),
  39889. default: true
  39890. },
  39891. ]
  39892. ))
  39893. characterMakers.push(() => makeCharacter(
  39894. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39895. {
  39896. front: {
  39897. height: math.unit(4, "meters"),
  39898. name: "Front",
  39899. image: {
  39900. source: "./media/characters/adelonda/front.svg",
  39901. extra: 1077/982,
  39902. bottom: 39/1116
  39903. }
  39904. },
  39905. back: {
  39906. height: math.unit(4, "meters"),
  39907. name: "Back",
  39908. image: {
  39909. source: "./media/characters/adelonda/back.svg",
  39910. extra: 1105/1003,
  39911. bottom: 25/1130
  39912. }
  39913. },
  39914. feral: {
  39915. height: math.unit(40/1.5, "meters"),
  39916. name: "Feral",
  39917. image: {
  39918. source: "./media/characters/adelonda/feral.svg",
  39919. extra: 597/271,
  39920. bottom: 387/984
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(4, "meters"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(8 + 4/12, "feet"),
  39937. weight: math.unit(670, "lb"),
  39938. name: "Front",
  39939. image: {
  39940. source: "./media/characters/acadiel/front.svg",
  39941. extra: 1901/1595,
  39942. bottom: 142/2043
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(8 + 4/12, "feet"),
  39950. default: true
  39951. },
  39952. {
  39953. name: "Macro",
  39954. height: math.unit(200, "feet")
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(6 + 2/12, "feet"),
  39963. weight: math.unit(185, "lb"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/kayne-ein/front.svg",
  39967. extra: 1780/1560,
  39968. bottom: 81/1861
  39969. }
  39970. },
  39971. },
  39972. [
  39973. {
  39974. name: "Normal",
  39975. height: math.unit(6 + 2/12, "feet"),
  39976. default: true
  39977. },
  39978. {
  39979. name: "Transformation Stage",
  39980. height: math.unit(15, "feet")
  39981. },
  39982. {
  39983. name: "Macro",
  39984. height: math.unit(150, "feet")
  39985. },
  39986. {
  39987. name: "Earth's Shadow",
  39988. height: math.unit(6200, "miles")
  39989. },
  39990. {
  39991. name: "Universal Demon",
  39992. height: math.unit(28e9, "parsecs")
  39993. },
  39994. {
  39995. name: "Multiverse God",
  39996. height: math.unit(3, "multiverses")
  39997. },
  39998. ]
  39999. ))
  40000. characterMakers.push(() => makeCharacter(
  40001. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40002. {
  40003. front: {
  40004. height: math.unit(5 + 5/12, "feet"),
  40005. name: "Front",
  40006. image: {
  40007. source: "./media/characters/fawn/front.svg",
  40008. extra: 1873/1731,
  40009. bottom: 95/1968
  40010. }
  40011. },
  40012. back: {
  40013. height: math.unit(5 + 5/12, "feet"),
  40014. name: "Back",
  40015. image: {
  40016. source: "./media/characters/fawn/back.svg",
  40017. extra: 1813/1700,
  40018. bottom: 14/1827
  40019. }
  40020. },
  40021. hoof: {
  40022. height: math.unit(1.45, "feet"),
  40023. name: "Hoof",
  40024. image: {
  40025. source: "./media/characters/fawn/hoof.svg"
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(5 + 5/12, "feet"),
  40033. default: true
  40034. },
  40035. ]
  40036. ))
  40037. characterMakers.push(() => makeCharacter(
  40038. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40039. {
  40040. front: {
  40041. height: math.unit(2 + 5/12, "feet"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/orion/front.svg",
  40045. extra: 1366/1304,
  40046. bottom: 43/1409
  40047. }
  40048. },
  40049. paw: {
  40050. height: math.unit(0.52, "feet"),
  40051. name: "Paw",
  40052. image: {
  40053. source: "./media/characters/orion/paw.svg"
  40054. }
  40055. },
  40056. },
  40057. [
  40058. {
  40059. name: "Normal",
  40060. height: math.unit(2 + 5/12, "feet"),
  40061. default: true
  40062. },
  40063. ]
  40064. ))
  40065. characterMakers.push(() => makeCharacter(
  40066. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40067. {
  40068. front: {
  40069. height: math.unit(5 + 10/12, "feet"),
  40070. name: "Front",
  40071. image: {
  40072. source: "./media/characters/vera/front.svg",
  40073. extra: 1680/1575,
  40074. bottom: 49/1729
  40075. }
  40076. },
  40077. back: {
  40078. height: math.unit(5 + 10/12, "feet"),
  40079. name: "Back",
  40080. image: {
  40081. source: "./media/characters/vera/back.svg",
  40082. extra: 1700/1588,
  40083. bottom: 18/1718
  40084. }
  40085. },
  40086. arcanine: {
  40087. height: math.unit(6 + 8/12, "feet"),
  40088. name: "Arcanine",
  40089. image: {
  40090. source: "./media/characters/vera/arcanine.svg",
  40091. extra: 1590/1511,
  40092. bottom: 71/1661
  40093. }
  40094. },
  40095. maw: {
  40096. height: math.unit(0.82, "feet"),
  40097. name: "Maw",
  40098. image: {
  40099. source: "./media/characters/vera/maw.svg"
  40100. }
  40101. },
  40102. mawArcanine: {
  40103. height: math.unit(0.97, "feet"),
  40104. name: "Maw (Arcanine)",
  40105. image: {
  40106. source: "./media/characters/vera/maw-arcanine.svg"
  40107. }
  40108. },
  40109. paw: {
  40110. height: math.unit(0.75, "feet"),
  40111. name: "Paw",
  40112. image: {
  40113. source: "./media/characters/vera/paw.svg"
  40114. }
  40115. },
  40116. pawprint: {
  40117. height: math.unit(0.52, "feet"),
  40118. name: "Pawprint",
  40119. image: {
  40120. source: "./media/characters/vera/pawprint.svg"
  40121. }
  40122. },
  40123. },
  40124. [
  40125. {
  40126. name: "Normal",
  40127. height: math.unit(5 + 10/12, "feet"),
  40128. default: true
  40129. },
  40130. {
  40131. name: "Macro",
  40132. height: math.unit(75, "feet")
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(4, "feet"),
  40141. weight: math.unit(40, "lb"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/orvan-rabbit/front.svg",
  40145. extra: 1896/1642,
  40146. bottom: 29/1925
  40147. }
  40148. },
  40149. },
  40150. [
  40151. {
  40152. name: "Normal",
  40153. height: math.unit(4, "feet"),
  40154. default: true
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(6, "feet"),
  40163. weight: math.unit(168, "lb"),
  40164. name: "Front",
  40165. image: {
  40166. source: "./media/characters/lisa/front.svg",
  40167. extra: 2065/1867,
  40168. bottom: 46/2111
  40169. }
  40170. },
  40171. back: {
  40172. height: math.unit(6, "feet"),
  40173. weight: math.unit(168, "lb"),
  40174. name: "Back",
  40175. image: {
  40176. source: "./media/characters/lisa/back.svg",
  40177. extra: 1982/1838,
  40178. bottom: 29/2011
  40179. }
  40180. },
  40181. maw: {
  40182. height: math.unit(0.81, "feet"),
  40183. name: "Maw",
  40184. image: {
  40185. source: "./media/characters/lisa/maw.svg"
  40186. }
  40187. },
  40188. paw: {
  40189. height: math.unit(0.9, "feet"),
  40190. name: "Paw",
  40191. image: {
  40192. source: "./media/characters/lisa/paw.svg"
  40193. }
  40194. },
  40195. caribousune: {
  40196. height: math.unit(7 + 2/12, "feet"),
  40197. weight: math.unit(268, "lb"),
  40198. name: "Caribousune",
  40199. image: {
  40200. source: "./media/characters/lisa/caribousune.svg",
  40201. extra: 1843/1633,
  40202. bottom: 29/1872
  40203. }
  40204. },
  40205. frontCaribousune: {
  40206. height: math.unit(7 + 2/12, "feet"),
  40207. weight: math.unit(268, "lb"),
  40208. name: "Front (Caribousune)",
  40209. image: {
  40210. source: "./media/characters/lisa/front-caribousune.svg",
  40211. extra: 1818/1638,
  40212. bottom: 52/1870
  40213. }
  40214. },
  40215. sideCaribousune: {
  40216. height: math.unit(7 + 2/12, "feet"),
  40217. weight: math.unit(268, "lb"),
  40218. name: "Side (Caribousune)",
  40219. image: {
  40220. source: "./media/characters/lisa/side-caribousune.svg",
  40221. extra: 1851/1635,
  40222. bottom: 16/1867
  40223. }
  40224. },
  40225. backCaribousune: {
  40226. height: math.unit(7 + 2/12, "feet"),
  40227. weight: math.unit(268, "lb"),
  40228. name: "Back (Caribousune)",
  40229. image: {
  40230. source: "./media/characters/lisa/back-caribousune.svg",
  40231. extra: 1801/1604,
  40232. bottom: 44/1845
  40233. }
  40234. },
  40235. caribou: {
  40236. height: math.unit(7 + 2/12, "feet"),
  40237. weight: math.unit(268, "lb"),
  40238. name: "Caribou",
  40239. image: {
  40240. source: "./media/characters/lisa/caribou.svg",
  40241. extra: 1843/1633,
  40242. bottom: 29/1872
  40243. }
  40244. },
  40245. frontCaribou: {
  40246. height: math.unit(7 + 2/12, "feet"),
  40247. weight: math.unit(268, "lb"),
  40248. name: "Front (Caribou)",
  40249. image: {
  40250. source: "./media/characters/lisa/front-caribou.svg",
  40251. extra: 1818/1638,
  40252. bottom: 52/1870
  40253. }
  40254. },
  40255. sideCaribou: {
  40256. height: math.unit(7 + 2/12, "feet"),
  40257. weight: math.unit(268, "lb"),
  40258. name: "Side (Caribou)",
  40259. image: {
  40260. source: "./media/characters/lisa/side-caribou.svg",
  40261. extra: 1851/1635,
  40262. bottom: 16/1867
  40263. }
  40264. },
  40265. backCaribou: {
  40266. height: math.unit(7 + 2/12, "feet"),
  40267. weight: math.unit(268, "lb"),
  40268. name: "Back (Caribou)",
  40269. image: {
  40270. source: "./media/characters/lisa/back-caribou.svg",
  40271. extra: 1801/1604,
  40272. bottom: 44/1845
  40273. }
  40274. },
  40275. mawCaribou: {
  40276. height: math.unit(1.45, "feet"),
  40277. name: "Maw (Caribou)",
  40278. image: {
  40279. source: "./media/characters/lisa/maw-caribou.svg"
  40280. }
  40281. },
  40282. mawCaribousune: {
  40283. height: math.unit(1.45, "feet"),
  40284. name: "Maw (Caribousune)",
  40285. image: {
  40286. source: "./media/characters/lisa/maw-caribousune.svg"
  40287. }
  40288. },
  40289. pawCaribousune: {
  40290. height: math.unit(1.61, "feet"),
  40291. name: "Paw (Caribou)",
  40292. image: {
  40293. source: "./media/characters/lisa/paw-caribousune.svg"
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(6, "feet")
  40301. },
  40302. {
  40303. name: "God Size",
  40304. height: math.unit(72, "feet"),
  40305. default: true
  40306. },
  40307. {
  40308. name: "Towering",
  40309. height: math.unit(288, "feet")
  40310. },
  40311. {
  40312. name: "City Size",
  40313. height: math.unit(48384, "feet")
  40314. },
  40315. {
  40316. name: "Continental",
  40317. height: math.unit(4200, "miles")
  40318. },
  40319. {
  40320. name: "Planet Eater",
  40321. height: math.unit(42, "earths")
  40322. },
  40323. {
  40324. name: "Star Swallower",
  40325. height: math.unit(42, "solarradii")
  40326. },
  40327. {
  40328. name: "System Swallower",
  40329. height: math.unit(84000, "AU")
  40330. },
  40331. {
  40332. name: "Galaxy Gobbler",
  40333. height: math.unit(42, "galaxies")
  40334. },
  40335. {
  40336. name: "Universe Devourer",
  40337. height: math.unit(42, "universes")
  40338. },
  40339. {
  40340. name: "Multiverse Muncher",
  40341. height: math.unit(42, "multiverses")
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40347. {
  40348. front: {
  40349. height: math.unit(36, "feet"),
  40350. name: "Front",
  40351. image: {
  40352. source: "./media/characters/shadow-rat/front.svg",
  40353. extra: 1845/1758,
  40354. bottom: 83/1928
  40355. }
  40356. },
  40357. },
  40358. [
  40359. {
  40360. name: "Macro",
  40361. height: math.unit(36, "feet"),
  40362. default: true
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40368. {
  40369. side: {
  40370. height: math.unit(8, "feet"),
  40371. weight: math.unit(2630, "lb"),
  40372. name: "Side",
  40373. image: {
  40374. source: "./media/characters/torallia/side.svg",
  40375. extra: 2164/2021,
  40376. bottom: 371/2535
  40377. }
  40378. },
  40379. },
  40380. [
  40381. {
  40382. name: "Mortal Interaction",
  40383. height: math.unit(8, "feet")
  40384. },
  40385. {
  40386. name: "Natural",
  40387. height: math.unit(24, "feet"),
  40388. default: true
  40389. },
  40390. {
  40391. name: "Giant",
  40392. height: math.unit(80, "feet")
  40393. },
  40394. {
  40395. name: "Kaiju",
  40396. height: math.unit(240, "feet")
  40397. },
  40398. {
  40399. name: "Macro",
  40400. height: math.unit(800, "feet")
  40401. },
  40402. {
  40403. name: "Macro+",
  40404. height: math.unit(2400, "feet")
  40405. },
  40406. {
  40407. name: "Macro++",
  40408. height: math.unit(8000, "feet")
  40409. },
  40410. {
  40411. name: "City-Crushing",
  40412. height: math.unit(24000, "feet")
  40413. },
  40414. {
  40415. name: "Mountain-Mashing",
  40416. height: math.unit(80000, "feet")
  40417. },
  40418. {
  40419. name: "District Demolisher",
  40420. height: math.unit(240000, "feet")
  40421. },
  40422. {
  40423. name: "Tri-County Terror",
  40424. height: math.unit(800000, "feet")
  40425. },
  40426. {
  40427. name: "State Smasher",
  40428. height: math.unit(2.4e6, "feet")
  40429. },
  40430. {
  40431. name: "Nation Nemesis",
  40432. height: math.unit(8e6, "feet")
  40433. },
  40434. {
  40435. name: "Continent Cracker",
  40436. height: math.unit(2.4e7, "feet")
  40437. },
  40438. {
  40439. name: "Planet-Pillaging",
  40440. height: math.unit(8e7, "feet")
  40441. },
  40442. {
  40443. name: "Earth-Eclipsing",
  40444. height: math.unit(2.4e8, "feet")
  40445. },
  40446. {
  40447. name: "Jovian-Jostling",
  40448. height: math.unit(8e8, "feet")
  40449. },
  40450. {
  40451. name: "Gas Giant Gulper",
  40452. height: math.unit(2.4e9, "feet")
  40453. },
  40454. {
  40455. name: "Astral Annihilator",
  40456. height: math.unit(8e9, "feet")
  40457. },
  40458. {
  40459. name: "Celestial Conqueror",
  40460. height: math.unit(2.4e10, "feet")
  40461. },
  40462. {
  40463. name: "Sol-Swallowing",
  40464. height: math.unit(8e10, "feet")
  40465. },
  40466. {
  40467. name: "Hunter of the Heavens",
  40468. height: math.unit(2.4e13, "feet")
  40469. },
  40470. ]
  40471. ))
  40472. characterMakers.push(() => makeCharacter(
  40473. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40474. {
  40475. front: {
  40476. height: math.unit(6 + 8/12, "feet"),
  40477. weight: math.unit(250, "kilograms"),
  40478. volume: math.unit(28, "liters"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/rebecca-pawlson/front.svg",
  40482. extra: 1737/1596,
  40483. bottom: 107/1844
  40484. }
  40485. },
  40486. back: {
  40487. height: math.unit(6 + 8/12, "feet"),
  40488. weight: math.unit(250, "kilograms"),
  40489. volume: math.unit(28, "liters"),
  40490. name: "Back",
  40491. image: {
  40492. source: "./media/characters/rebecca-pawlson/back.svg",
  40493. extra: 1702/1523,
  40494. bottom: 86/1788
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(6 + 8/12, "feet")
  40502. },
  40503. {
  40504. name: "Mini Macro",
  40505. height: math.unit(10, "feet"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(100, "feet")
  40511. },
  40512. {
  40513. name: "Mega Macro",
  40514. height: math.unit(2500, "feet")
  40515. },
  40516. {
  40517. name: "Giga Macro",
  40518. height: math.unit(50, "miles")
  40519. },
  40520. ]
  40521. ))
  40522. characterMakers.push(() => makeCharacter(
  40523. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40524. {
  40525. front: {
  40526. height: math.unit(7 + 6/12, "feet"),
  40527. weight: math.unit(600, "lb"),
  40528. name: "Front",
  40529. image: {
  40530. source: "./media/characters/moxie-nova/front.svg",
  40531. extra: 1734/1652,
  40532. bottom: 41/1775
  40533. }
  40534. },
  40535. },
  40536. [
  40537. {
  40538. name: "Normal",
  40539. height: math.unit(7 + 6/12, "feet"),
  40540. default: true
  40541. },
  40542. ]
  40543. ))
  40544. characterMakers.push(() => makeCharacter(
  40545. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40546. {
  40547. goat: {
  40548. height: math.unit(4, "feet"),
  40549. weight: math.unit(180, "lb"),
  40550. name: "Goat",
  40551. image: {
  40552. source: "./media/characters/tiffany/goat.svg",
  40553. extra: 1845/1595,
  40554. bottom: 106/1951
  40555. }
  40556. },
  40557. front: {
  40558. height: math.unit(5, "feet"),
  40559. weight: math.unit(150, "lb"),
  40560. name: "Foxcoon",
  40561. image: {
  40562. source: "./media/characters/tiffany/foxcoon.svg",
  40563. extra: 1941/1845,
  40564. bottom: 58/1999
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Normal",
  40571. height: math.unit(5, "feet"),
  40572. default: true
  40573. },
  40574. ]
  40575. ))
  40576. characterMakers.push(() => makeCharacter(
  40577. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40578. {
  40579. front: {
  40580. height: math.unit(8, "feet"),
  40581. weight: math.unit(300, "lb"),
  40582. name: "Front",
  40583. image: {
  40584. source: "./media/characters/raxinath/front.svg",
  40585. extra: 1407/1309,
  40586. bottom: 39/1446
  40587. }
  40588. },
  40589. back: {
  40590. height: math.unit(8, "feet"),
  40591. weight: math.unit(300, "lb"),
  40592. name: "Back",
  40593. image: {
  40594. source: "./media/characters/raxinath/back.svg",
  40595. extra: 1405/1315,
  40596. bottom: 9/1414
  40597. }
  40598. },
  40599. },
  40600. [
  40601. {
  40602. name: "Speck",
  40603. height: math.unit(0.5, "nm")
  40604. },
  40605. {
  40606. name: "Micro",
  40607. height: math.unit(3, "inches")
  40608. },
  40609. {
  40610. name: "Kobold",
  40611. height: math.unit(3, "feet")
  40612. },
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(8, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Giant",
  40620. height: math.unit(50, "feet")
  40621. },
  40622. {
  40623. name: "Macro",
  40624. height: math.unit(1000, "feet")
  40625. },
  40626. {
  40627. name: "Megamacro",
  40628. height: math.unit(1, "mile")
  40629. },
  40630. ]
  40631. ))
  40632. characterMakers.push(() => makeCharacter(
  40633. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40634. {
  40635. front: {
  40636. height: math.unit(10, "feet"),
  40637. weight: math.unit(1442, "lb"),
  40638. name: "Front",
  40639. image: {
  40640. source: "./media/characters/mal-dragon/front.svg",
  40641. extra: 1515/1444,
  40642. bottom: 113/1628
  40643. }
  40644. },
  40645. back: {
  40646. height: math.unit(10, "feet"),
  40647. weight: math.unit(1442, "lb"),
  40648. name: "Back",
  40649. image: {
  40650. source: "./media/characters/mal-dragon/back.svg",
  40651. extra: 1527/1434,
  40652. bottom: 25/1552
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Mortal Interaction",
  40659. height: math.unit(10, "feet"),
  40660. default: true
  40661. },
  40662. {
  40663. name: "Large",
  40664. height: math.unit(30, "feet")
  40665. },
  40666. {
  40667. name: "Kaiju",
  40668. height: math.unit(300, "feet")
  40669. },
  40670. {
  40671. name: "Megamacro",
  40672. height: math.unit(10000, "feet")
  40673. },
  40674. {
  40675. name: "Continent Cracker",
  40676. height: math.unit(30000000, "feet")
  40677. },
  40678. {
  40679. name: "Sol-Swallowing",
  40680. height: math.unit(1e11, "feet")
  40681. },
  40682. {
  40683. name: "Light Universal",
  40684. height: math.unit(5, "universes")
  40685. },
  40686. {
  40687. name: "Universe Atoms",
  40688. height: math.unit(1.829e9, "universes")
  40689. },
  40690. {
  40691. name: "Light Multiversal",
  40692. height: math.unit(5, "multiverses")
  40693. },
  40694. {
  40695. name: "Multiverse Atoms",
  40696. height: math.unit(1.829e9, "multiverses")
  40697. },
  40698. {
  40699. name: "Fabric of Time",
  40700. height: math.unit(1e262, "multiverses")
  40701. },
  40702. ]
  40703. ))
  40704. characterMakers.push(() => makeCharacter(
  40705. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40706. {
  40707. front: {
  40708. height: math.unit(9, "feet"),
  40709. weight: math.unit(1050, "lb"),
  40710. name: "Front",
  40711. image: {
  40712. source: "./media/characters/tabitha/front.svg",
  40713. extra: 2083/1994,
  40714. bottom: 68/2151
  40715. }
  40716. },
  40717. },
  40718. [
  40719. {
  40720. name: "Baseline",
  40721. height: math.unit(9, "feet"),
  40722. default: true
  40723. },
  40724. {
  40725. name: "Giant",
  40726. height: math.unit(90, "feet")
  40727. },
  40728. {
  40729. name: "Macro",
  40730. height: math.unit(900, "feet")
  40731. },
  40732. {
  40733. name: "Megamacro",
  40734. height: math.unit(9000, "feet")
  40735. },
  40736. {
  40737. name: "City-Crushing",
  40738. height: math.unit(27000, "feet")
  40739. },
  40740. {
  40741. name: "Mountain-Mashing",
  40742. height: math.unit(90000, "feet")
  40743. },
  40744. {
  40745. name: "Nation Nemesis",
  40746. height: math.unit(9e6, "feet")
  40747. },
  40748. {
  40749. name: "Continent Cracker",
  40750. height: math.unit(27e6, "feet")
  40751. },
  40752. {
  40753. name: "Earth-Eclipsing",
  40754. height: math.unit(2.7e8, "feet")
  40755. },
  40756. {
  40757. name: "Gas Giant Gulper",
  40758. height: math.unit(2.7e9, "feet")
  40759. },
  40760. {
  40761. name: "Sol-Swallowing",
  40762. height: math.unit(9e10, "feet")
  40763. },
  40764. {
  40765. name: "Galaxy Gulper",
  40766. height: math.unit(9, "galaxies")
  40767. },
  40768. {
  40769. name: "Cosmos Churner",
  40770. height: math.unit(9, "universes")
  40771. },
  40772. ]
  40773. ))
  40774. characterMakers.push(() => makeCharacter(
  40775. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40776. {
  40777. front: {
  40778. height: math.unit(160, "cm"),
  40779. weight: math.unit(55, "kg"),
  40780. name: "Front",
  40781. image: {
  40782. source: "./media/characters/tow/front.svg",
  40783. extra: 1751/1722,
  40784. bottom: 74/1825
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Norm",
  40791. height: math.unit(160, "cm")
  40792. },
  40793. {
  40794. name: "Casual",
  40795. height: math.unit(3200, "m"),
  40796. default: true
  40797. },
  40798. {
  40799. name: "Show-Off",
  40800. height: math.unit(160, "km")
  40801. },
  40802. ]
  40803. ))
  40804. characterMakers.push(() => makeCharacter(
  40805. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40806. {
  40807. front: {
  40808. height: math.unit(7 + 11/12, "feet"),
  40809. weight: math.unit(342.8, "lb"),
  40810. name: "Front",
  40811. image: {
  40812. source: "./media/characters/vivian-orca-dragon/front.svg",
  40813. extra: 1890/1865,
  40814. bottom: 28/1918
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Micro",
  40821. height: math.unit(5, "inches")
  40822. },
  40823. {
  40824. name: "Normal",
  40825. height: math.unit(7 + 11/12, "feet"),
  40826. default: true
  40827. },
  40828. {
  40829. name: "Macro",
  40830. height: math.unit(395 + 7/12, "feet")
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40836. {
  40837. side: {
  40838. height: math.unit(10, "feet"),
  40839. weight: math.unit(1442, "lb"),
  40840. name: "Side",
  40841. image: {
  40842. source: "./media/characters/lotherakon/side.svg",
  40843. extra: 1604/1497,
  40844. bottom: 89/1693
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Mortal Interaction",
  40851. height: math.unit(10, "feet")
  40852. },
  40853. {
  40854. name: "Large",
  40855. height: math.unit(30, "feet"),
  40856. default: true
  40857. },
  40858. {
  40859. name: "Giant",
  40860. height: math.unit(100, "feet")
  40861. },
  40862. {
  40863. name: "Kaiju",
  40864. height: math.unit(300, "feet")
  40865. },
  40866. {
  40867. name: "Macro",
  40868. height: math.unit(1000, "feet")
  40869. },
  40870. {
  40871. name: "Macro+",
  40872. height: math.unit(3000, "feet")
  40873. },
  40874. {
  40875. name: "Megamacro",
  40876. height: math.unit(10000, "feet")
  40877. },
  40878. {
  40879. name: "City-Crushing",
  40880. height: math.unit(30000, "feet")
  40881. },
  40882. {
  40883. name: "Continent Cracker",
  40884. height: math.unit(30e6, "feet")
  40885. },
  40886. {
  40887. name: "Earth Eclipsing",
  40888. height: math.unit(3e8, "feet")
  40889. },
  40890. {
  40891. name: "Gas Giant Gulper",
  40892. height: math.unit(3e9, "feet")
  40893. },
  40894. {
  40895. name: "Sol-Swallowing",
  40896. height: math.unit(1e11, "feet")
  40897. },
  40898. {
  40899. name: "System Swallower",
  40900. height: math.unit(3e14, "feet")
  40901. },
  40902. {
  40903. name: "Galaxy Gulper",
  40904. height: math.unit(10, "galaxies")
  40905. },
  40906. {
  40907. name: "Light Universal",
  40908. height: math.unit(5, "universes")
  40909. },
  40910. {
  40911. name: "Universe Palm",
  40912. height: math.unit(20, "universes")
  40913. },
  40914. {
  40915. name: "Light Multiversal",
  40916. height: math.unit(5, "multiverses")
  40917. },
  40918. {
  40919. name: "Multiverse Palm",
  40920. height: math.unit(20, "multiverses")
  40921. },
  40922. {
  40923. name: "Inferno Incarnate",
  40924. height: math.unit(1e7, "multiverses")
  40925. },
  40926. ]
  40927. ))
  40928. characterMakers.push(() => makeCharacter(
  40929. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40930. {
  40931. front: {
  40932. height: math.unit(8, "feet"),
  40933. weight: math.unit(1200, "lb"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/malithee/front.svg",
  40937. extra: 1675/1640,
  40938. bottom: 162/1837
  40939. }
  40940. },
  40941. },
  40942. [
  40943. {
  40944. name: "Mortal Interaction",
  40945. height: math.unit(8, "feet"),
  40946. default: true
  40947. },
  40948. {
  40949. name: "Large",
  40950. height: math.unit(24, "feet")
  40951. },
  40952. {
  40953. name: "Kaiju",
  40954. height: math.unit(240, "feet")
  40955. },
  40956. {
  40957. name: "Megamacro",
  40958. height: math.unit(8000, "feet")
  40959. },
  40960. {
  40961. name: "Continent Cracker",
  40962. height: math.unit(24e6, "feet")
  40963. },
  40964. {
  40965. name: "Earth-Eclipsing",
  40966. height: math.unit(2.4e8, "feet")
  40967. },
  40968. {
  40969. name: "Sol-Swallowing",
  40970. height: math.unit(8e10, "feet")
  40971. },
  40972. {
  40973. name: "Galaxy Gulper",
  40974. height: math.unit(8, "galaxies")
  40975. },
  40976. {
  40977. name: "Light Universal",
  40978. height: math.unit(4, "universes")
  40979. },
  40980. {
  40981. name: "Universe Atoms",
  40982. height: math.unit(1.829e9, "universes")
  40983. },
  40984. {
  40985. name: "Light Multiversal",
  40986. height: math.unit(4, "multiverses")
  40987. },
  40988. {
  40989. name: "Multiverse Atoms",
  40990. height: math.unit(1.829e9, "multiverses")
  40991. },
  40992. {
  40993. name: "Nigh-Omnipresence",
  40994. height: math.unit(8e261, "multiverses")
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(10, "feet"),
  41003. weight: math.unit(1500, "lb"),
  41004. name: "Front",
  41005. image: {
  41006. source: "./media/characters/miles-thestia/front.svg",
  41007. extra: 1812/1727,
  41008. bottom: 86/1898
  41009. }
  41010. },
  41011. back: {
  41012. height: math.unit(10, "feet"),
  41013. weight: math.unit(1500, "lb"),
  41014. name: "Back",
  41015. image: {
  41016. source: "./media/characters/miles-thestia/back.svg",
  41017. extra: 1799/1690,
  41018. bottom: 47/1846
  41019. }
  41020. },
  41021. frontNsfw: {
  41022. height: math.unit(10, "feet"),
  41023. weight: math.unit(1500, "lb"),
  41024. name: "Front (NSFW)",
  41025. image: {
  41026. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41027. extra: 1812/1727,
  41028. bottom: 86/1898
  41029. }
  41030. },
  41031. },
  41032. [
  41033. {
  41034. name: "Mini-Macro",
  41035. height: math.unit(10, "feet"),
  41036. default: true
  41037. },
  41038. ]
  41039. ))
  41040. characterMakers.push(() => makeCharacter(
  41041. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41042. {
  41043. front: {
  41044. height: math.unit(25, "feet"),
  41045. name: "Front",
  41046. image: {
  41047. source: "./media/characters/titan-s-wulf/front.svg",
  41048. extra: 1560/1484,
  41049. bottom: 76/1636
  41050. }
  41051. },
  41052. },
  41053. [
  41054. {
  41055. name: "Smallest",
  41056. height: math.unit(25, "feet"),
  41057. default: true
  41058. },
  41059. {
  41060. name: "Normal",
  41061. height: math.unit(200, "feet")
  41062. },
  41063. {
  41064. name: "Macro",
  41065. height: math.unit(200000, "feet")
  41066. },
  41067. {
  41068. name: "Multiversal Original",
  41069. height: math.unit(10000, "multiverses")
  41070. },
  41071. ]
  41072. ))
  41073. characterMakers.push(() => makeCharacter(
  41074. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41075. {
  41076. front: {
  41077. height: math.unit(8, "feet"),
  41078. weight: math.unit(553, "lb"),
  41079. name: "Front",
  41080. image: {
  41081. source: "./media/characters/tawendeh/front.svg",
  41082. extra: 2365/2268,
  41083. bottom: 83/2448
  41084. }
  41085. },
  41086. frontClothed: {
  41087. height: math.unit(8, "feet"),
  41088. weight: math.unit(553, "lb"),
  41089. name: "Front (Clothed)",
  41090. image: {
  41091. source: "./media/characters/tawendeh/front-clothed.svg",
  41092. extra: 2365/2268,
  41093. bottom: 83/2448
  41094. }
  41095. },
  41096. back: {
  41097. height: math.unit(8, "feet"),
  41098. weight: math.unit(553, "lb"),
  41099. name: "Back",
  41100. image: {
  41101. source: "./media/characters/tawendeh/back.svg",
  41102. extra: 2397/2294,
  41103. bottom: 42/2439
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Mortal Interaction",
  41110. height: math.unit(8, "feet"),
  41111. default: true
  41112. },
  41113. {
  41114. name: "Giant",
  41115. height: math.unit(80, "feet")
  41116. },
  41117. {
  41118. name: "Macro",
  41119. height: math.unit(800, "feet")
  41120. },
  41121. {
  41122. name: "Megamacro",
  41123. height: math.unit(8000, "feet")
  41124. },
  41125. {
  41126. name: "City-Crushing",
  41127. height: math.unit(24000, "feet")
  41128. },
  41129. {
  41130. name: "Mountain-Mashing",
  41131. height: math.unit(80000, "feet")
  41132. },
  41133. {
  41134. name: "Nation Nemesis",
  41135. height: math.unit(8e6, "feet")
  41136. },
  41137. {
  41138. name: "Continent Cracker",
  41139. height: math.unit(24e6, "feet")
  41140. },
  41141. {
  41142. name: "Earth-Eclipsing",
  41143. height: math.unit(2.4e8, "feet")
  41144. },
  41145. {
  41146. name: "Gas Giant Gulper",
  41147. height: math.unit(2.4e9, "feet")
  41148. },
  41149. {
  41150. name: "Sol-Swallowing",
  41151. height: math.unit(8e10, "feet")
  41152. },
  41153. {
  41154. name: "Galaxy Gulper",
  41155. height: math.unit(8, "galaxies")
  41156. },
  41157. {
  41158. name: "Cosmos Churner",
  41159. height: math.unit(8, "universes")
  41160. },
  41161. {
  41162. name: "Omnipotent Otter",
  41163. height: math.unit(80, "universes")
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(2.6, "meters"),
  41172. weight: math.unit(900, "kg"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/neesha/front.svg",
  41176. extra: 1803/1653,
  41177. bottom: 128/1931
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(2.6, "meters"),
  41185. default: true
  41186. },
  41187. {
  41188. name: "Macro",
  41189. height: math.unit(50, "meters")
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(5, "feet"),
  41198. weight: math.unit(185, "lb"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/kyera/front.svg",
  41202. extra: 1875/1790,
  41203. bottom: 96/1971
  41204. }
  41205. },
  41206. },
  41207. [
  41208. {
  41209. name: "Normal",
  41210. height: math.unit(5, "feet"),
  41211. default: true
  41212. },
  41213. ]
  41214. ))
  41215. characterMakers.push(() => makeCharacter(
  41216. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41217. {
  41218. front: {
  41219. height: math.unit(7 + 6/12, "feet"),
  41220. weight: math.unit(540, "lb"),
  41221. name: "Front",
  41222. image: {
  41223. source: "./media/characters/yuko/front.svg",
  41224. extra: 1282/1222,
  41225. bottom: 101/1383
  41226. }
  41227. },
  41228. frontClothed: {
  41229. height: math.unit(7 + 6/12, "feet"),
  41230. weight: math.unit(540, "lb"),
  41231. name: "Front (Clothed)",
  41232. image: {
  41233. source: "./media/characters/yuko/front-clothed.svg",
  41234. extra: 1282/1222,
  41235. bottom: 101/1383
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Normal",
  41242. height: math.unit(7 + 6/12, "feet"),
  41243. default: true
  41244. },
  41245. {
  41246. name: "Macro",
  41247. height: math.unit(26 + 9/12, "feet")
  41248. },
  41249. {
  41250. name: "Megamacro",
  41251. height: math.unit(300, "feet")
  41252. },
  41253. {
  41254. name: "Gigamacro",
  41255. height: math.unit(5000, "feet")
  41256. },
  41257. {
  41258. name: "Planetary",
  41259. height: math.unit(10000, "miles")
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41265. {
  41266. front: {
  41267. height: math.unit(8 + 2/12, "feet"),
  41268. weight: math.unit(600, "lb"),
  41269. name: "Front",
  41270. image: {
  41271. source: "./media/characters/deam-nitrel/front.svg",
  41272. extra: 1308/1234,
  41273. bottom: 125/1433
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Normal",
  41280. height: math.unit(8 + 2/12, "feet"),
  41281. default: true
  41282. },
  41283. ]
  41284. ))
  41285. characterMakers.push(() => makeCharacter(
  41286. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41287. {
  41288. front: {
  41289. height: math.unit(6.1, "feet"),
  41290. weight: math.unit(180, "lb"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/skyress/front.svg",
  41294. extra: 1045/915,
  41295. bottom: 28/1073
  41296. }
  41297. },
  41298. maw: {
  41299. height: math.unit(1, "feet"),
  41300. name: "Maw",
  41301. image: {
  41302. source: "./media/characters/skyress/maw.svg"
  41303. }
  41304. },
  41305. },
  41306. [
  41307. {
  41308. name: "Normal",
  41309. height: math.unit(6.1, "feet"),
  41310. default: true
  41311. },
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(200, "feet")
  41315. },
  41316. ]
  41317. ))
  41318. characterMakers.push(() => makeCharacter(
  41319. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41320. {
  41321. front: {
  41322. height: math.unit(4 + 2/12, "feet"),
  41323. weight: math.unit(40, "kg"),
  41324. name: "Front",
  41325. image: {
  41326. source: "./media/characters/amethyst-jones/front.svg",
  41327. extra: 1220/1150,
  41328. bottom: 101/1321
  41329. }
  41330. },
  41331. },
  41332. [
  41333. {
  41334. name: "Normal",
  41335. height: math.unit(4 + 2/12, "feet"),
  41336. default: true
  41337. },
  41338. ]
  41339. ))
  41340. characterMakers.push(() => makeCharacter(
  41341. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41342. {
  41343. front: {
  41344. height: math.unit(1.7, "m"),
  41345. weight: math.unit(135, "lb"),
  41346. name: "Front",
  41347. image: {
  41348. source: "./media/characters/jade/front.svg",
  41349. extra: 1818/1767,
  41350. bottom: 32/1850
  41351. }
  41352. },
  41353. back: {
  41354. height: math.unit(1.7, "m"),
  41355. weight: math.unit(135, "lb"),
  41356. name: "Back",
  41357. image: {
  41358. source: "./media/characters/jade/back.svg",
  41359. extra: 1869/1809,
  41360. bottom: 35/1904
  41361. }
  41362. },
  41363. hand: {
  41364. height: math.unit(0.24, "m"),
  41365. name: "Hand",
  41366. image: {
  41367. source: "./media/characters/jade/hand.svg"
  41368. }
  41369. },
  41370. foot: {
  41371. height: math.unit(0.263, "m"),
  41372. name: "Foot",
  41373. image: {
  41374. source: "./media/characters/jade/foot.svg"
  41375. }
  41376. },
  41377. dick: {
  41378. height: math.unit(0.47, "m"),
  41379. name: "Dick",
  41380. image: {
  41381. source: "./media/characters/jade/dick.svg"
  41382. }
  41383. },
  41384. },
  41385. [
  41386. {
  41387. name: "Micro",
  41388. height: math.unit(22, "cm")
  41389. },
  41390. {
  41391. name: "Normal",
  41392. height: math.unit(1.7, "m"),
  41393. default: true
  41394. },
  41395. {
  41396. name: "Macro",
  41397. height: math.unit(152, "m")
  41398. },
  41399. ]
  41400. ))
  41401. characterMakers.push(() => makeCharacter(
  41402. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41403. {
  41404. front: {
  41405. height: math.unit(100, "miles"),
  41406. weight: math.unit(20000, "tons"),
  41407. name: "Front",
  41408. image: {
  41409. source: "./media/characters/cookie/front.svg",
  41410. extra: 1125/1070,
  41411. bottom: 30/1155
  41412. }
  41413. },
  41414. },
  41415. [
  41416. {
  41417. name: "Big",
  41418. height: math.unit(50, "feet")
  41419. },
  41420. {
  41421. name: "Macro",
  41422. height: math.unit(100, "miles"),
  41423. default: true
  41424. },
  41425. {
  41426. name: "Megamacro",
  41427. height: math.unit(90000, "miles")
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(6, "feet"),
  41436. weight: math.unit(145, "lb"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/farzian/front.svg",
  41440. extra: 1902/1693,
  41441. bottom: 108/2010
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Macro",
  41448. height: math.unit(500, "feet"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41455. {
  41456. front: {
  41457. height: math.unit(3 + 6/12, "feet"),
  41458. weight: math.unit(50, "lb"),
  41459. name: "Front",
  41460. image: {
  41461. source: "./media/characters/kimberly-tilson/front.svg",
  41462. extra: 1400/1322,
  41463. bottom: 36/1436
  41464. }
  41465. },
  41466. back: {
  41467. height: math.unit(3 + 6/12, "feet"),
  41468. weight: math.unit(50, "lb"),
  41469. name: "Back",
  41470. image: {
  41471. source: "./media/characters/kimberly-tilson/back.svg",
  41472. extra: 1370/1307,
  41473. bottom: 20/1390
  41474. }
  41475. },
  41476. },
  41477. [
  41478. {
  41479. name: "Normal",
  41480. height: math.unit(3 + 6/12, "feet"),
  41481. default: true
  41482. },
  41483. ]
  41484. ))
  41485. characterMakers.push(() => makeCharacter(
  41486. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41487. {
  41488. front: {
  41489. height: math.unit(1148, "feet"),
  41490. weight: math.unit(34057, "lb"),
  41491. name: "Front",
  41492. image: {
  41493. source: "./media/characters/harthos/front.svg",
  41494. extra: 1391/1339,
  41495. bottom: 13/1404
  41496. }
  41497. },
  41498. },
  41499. [
  41500. {
  41501. name: "Macro",
  41502. height: math.unit(1148, "feet"),
  41503. default: true
  41504. },
  41505. ]
  41506. ))
  41507. characterMakers.push(() => makeCharacter(
  41508. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41509. {
  41510. front: {
  41511. height: math.unit(15, "feet"),
  41512. name: "Front",
  41513. image: {
  41514. source: "./media/characters/hypatia/front.svg",
  41515. extra: 1653/1591,
  41516. bottom: 79/1732
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Normal",
  41523. height: math.unit(15, "feet")
  41524. },
  41525. {
  41526. name: "Small",
  41527. height: math.unit(300, "feet")
  41528. },
  41529. {
  41530. name: "Macro",
  41531. height: math.unit(2500, "feet"),
  41532. default: true
  41533. },
  41534. {
  41535. name: "Mega Macro",
  41536. height: math.unit(1500, "miles")
  41537. },
  41538. {
  41539. name: "Giga Macro",
  41540. height: math.unit(1.5e6, "miles")
  41541. },
  41542. ]
  41543. ))
  41544. characterMakers.push(() => makeCharacter(
  41545. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41546. {
  41547. front: {
  41548. height: math.unit(6, "feet"),
  41549. weight: math.unit(200, "lb"),
  41550. name: "Front",
  41551. image: {
  41552. source: "./media/characters/wulver/front.svg",
  41553. extra: 1724/1632,
  41554. bottom: 130/1854
  41555. }
  41556. },
  41557. frontNsfw: {
  41558. height: math.unit(6, "feet"),
  41559. weight: math.unit(200, "lb"),
  41560. name: "Front (NSFW)",
  41561. image: {
  41562. source: "./media/characters/wulver/front-nsfw.svg",
  41563. extra: 1724/1632,
  41564. bottom: 130/1854
  41565. }
  41566. },
  41567. },
  41568. [
  41569. {
  41570. name: "Human-Sized",
  41571. height: math.unit(6, "feet")
  41572. },
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(4, "meters"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Large",
  41580. height: math.unit(6, "m")
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(7, "feet"),
  41589. name: "Front",
  41590. image: {
  41591. source: "./media/characters/maru/front.svg",
  41592. extra: 1595/1570,
  41593. bottom: 0/1595
  41594. }
  41595. },
  41596. },
  41597. [
  41598. {
  41599. name: "Normal",
  41600. height: math.unit(7, "feet"),
  41601. default: true
  41602. },
  41603. {
  41604. name: "Macro",
  41605. height: math.unit(700, "feet")
  41606. },
  41607. {
  41608. name: "Mega Macro",
  41609. height: math.unit(25, "miles")
  41610. },
  41611. ]
  41612. ))
  41613. characterMakers.push(() => makeCharacter(
  41614. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41615. {
  41616. front: {
  41617. height: math.unit(6, "feet"),
  41618. weight: math.unit(170, "lb"),
  41619. name: "Front",
  41620. image: {
  41621. source: "./media/characters/xenon/front.svg",
  41622. extra: 1376/1305,
  41623. bottom: 56/1432
  41624. }
  41625. },
  41626. back: {
  41627. height: math.unit(6, "feet"),
  41628. weight: math.unit(170, "lb"),
  41629. name: "Back",
  41630. image: {
  41631. source: "./media/characters/xenon/back.svg",
  41632. extra: 1328/1259,
  41633. bottom: 95/1423
  41634. }
  41635. },
  41636. maw: {
  41637. height: math.unit(0.52, "feet"),
  41638. name: "Maw",
  41639. image: {
  41640. source: "./media/characters/xenon/maw.svg"
  41641. }
  41642. },
  41643. handLeft: {
  41644. height: math.unit(0.82 * 169 / 153, "feet"),
  41645. name: "Hand (Left)",
  41646. image: {
  41647. source: "./media/characters/xenon/hand-left.svg"
  41648. }
  41649. },
  41650. handRight: {
  41651. height: math.unit(0.82, "feet"),
  41652. name: "Hand (Right)",
  41653. image: {
  41654. source: "./media/characters/xenon/hand-right.svg"
  41655. }
  41656. },
  41657. footLeft: {
  41658. height: math.unit(1.13, "feet"),
  41659. name: "Foot (Left)",
  41660. image: {
  41661. source: "./media/characters/xenon/foot-left.svg"
  41662. }
  41663. },
  41664. footRight: {
  41665. height: math.unit(1.13 * 194 / 196, "feet"),
  41666. name: "Foot (Right)",
  41667. image: {
  41668. source: "./media/characters/xenon/foot-right.svg"
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Micro",
  41675. height: math.unit(0.8, "inches")
  41676. },
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(6, "feet")
  41680. },
  41681. {
  41682. name: "Macro",
  41683. height: math.unit(50, "feet"),
  41684. default: true
  41685. },
  41686. {
  41687. name: "Macro+",
  41688. height: math.unit(250, "feet")
  41689. },
  41690. {
  41691. name: "Megamacro",
  41692. height: math.unit(1500, "feet")
  41693. },
  41694. ]
  41695. ))
  41696. characterMakers.push(() => makeCharacter(
  41697. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41698. {
  41699. front: {
  41700. height: math.unit(7 + 5/12, "feet"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/zane/front.svg",
  41704. extra: 1260/1203,
  41705. bottom: 94/1354
  41706. }
  41707. },
  41708. back: {
  41709. height: math.unit(5.05, "feet"),
  41710. name: "Back",
  41711. image: {
  41712. source: "./media/characters/zane/back.svg",
  41713. extra: 893/829,
  41714. bottom: 30/923
  41715. }
  41716. },
  41717. werewolf: {
  41718. height: math.unit(11, "feet"),
  41719. name: "Werewolf",
  41720. image: {
  41721. source: "./media/characters/zane/werewolf.svg",
  41722. extra: 1383/1323,
  41723. bottom: 89/1472
  41724. }
  41725. },
  41726. foot: {
  41727. height: math.unit(1.46, "feet"),
  41728. name: "Foot",
  41729. image: {
  41730. source: "./media/characters/zane/foot.svg"
  41731. }
  41732. },
  41733. footFront: {
  41734. height: math.unit(0.784, "feet"),
  41735. name: "Foot (Front)",
  41736. image: {
  41737. source: "./media/characters/zane/foot-front.svg"
  41738. }
  41739. },
  41740. dick: {
  41741. height: math.unit(1.95, "feet"),
  41742. name: "Dick",
  41743. image: {
  41744. source: "./media/characters/zane/dick.svg"
  41745. }
  41746. },
  41747. dickWerewolf: {
  41748. height: math.unit(3.77, "feet"),
  41749. name: "Dick (Werewolf)",
  41750. image: {
  41751. source: "./media/characters/zane/dick.svg"
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Normal",
  41758. height: math.unit(7 + 5/12, "feet"),
  41759. default: true
  41760. },
  41761. ]
  41762. ))
  41763. characterMakers.push(() => makeCharacter(
  41764. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41765. {
  41766. front: {
  41767. height: math.unit(6 + 2/12, "feet"),
  41768. weight: math.unit(284, "lb"),
  41769. name: "Front",
  41770. image: {
  41771. source: "./media/characters/benni-desparque/front.svg",
  41772. extra: 1353/1126,
  41773. bottom: 69/1422
  41774. }
  41775. },
  41776. },
  41777. [
  41778. {
  41779. name: "Civilian",
  41780. height: math.unit(6 + 2/12, "feet")
  41781. },
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(98, "feet"),
  41785. default: true
  41786. },
  41787. {
  41788. name: "Kaiju Fighter",
  41789. height: math.unit(268, "feet")
  41790. },
  41791. ]
  41792. ))
  41793. characterMakers.push(() => makeCharacter(
  41794. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41795. {
  41796. front: {
  41797. height: math.unit(5, "feet"),
  41798. weight: math.unit(105, "lb"),
  41799. name: "Front",
  41800. image: {
  41801. source: "./media/characters/maxine/front.svg",
  41802. extra: 1386/1250,
  41803. bottom: 71/1457
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Normal",
  41810. height: math.unit(5, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(11 + 7/12, "feet"),
  41820. weight: math.unit(9576, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/scaly/front.svg",
  41824. extra: 888/867,
  41825. bottom: 36/924
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Normal",
  41832. height: math.unit(11 + 7/12, "feet"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41839. {
  41840. front: {
  41841. height: math.unit(6 + 3/12, "feet"),
  41842. name: "Front",
  41843. image: {
  41844. source: "./media/characters/saelria/front.svg",
  41845. extra: 1243/1138,
  41846. bottom: 46/1289
  41847. }
  41848. },
  41849. },
  41850. [
  41851. {
  41852. name: "Micro",
  41853. height: math.unit(6, "inches"),
  41854. },
  41855. {
  41856. name: "Normal",
  41857. height: math.unit(6 + 3/12, "feet"),
  41858. default: true
  41859. },
  41860. {
  41861. name: "Macro",
  41862. height: math.unit(25, "feet")
  41863. },
  41864. ]
  41865. ))
  41866. characterMakers.push(() => makeCharacter(
  41867. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41868. {
  41869. front: {
  41870. height: math.unit(80, "meters"),
  41871. weight: math.unit(7000, "tonnes"),
  41872. name: "Front",
  41873. image: {
  41874. source: "./media/characters/tef/front.svg",
  41875. extra: 2036/1991,
  41876. bottom: 54/2090
  41877. }
  41878. },
  41879. back: {
  41880. height: math.unit(80, "meters"),
  41881. weight: math.unit(7000, "tonnes"),
  41882. name: "Back",
  41883. image: {
  41884. source: "./media/characters/tef/back.svg",
  41885. extra: 2036/1991,
  41886. bottom: 54/2090
  41887. }
  41888. },
  41889. },
  41890. [
  41891. {
  41892. name: "Macro",
  41893. height: math.unit(80, "meters"),
  41894. default: true
  41895. },
  41896. ]
  41897. ))
  41898. characterMakers.push(() => makeCharacter(
  41899. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41900. {
  41901. front: {
  41902. height: math.unit(13, "feet"),
  41903. weight: math.unit(6, "tons"),
  41904. name: "Front",
  41905. image: {
  41906. source: "./media/characters/rover/front.svg",
  41907. extra: 1233/1156,
  41908. bottom: 50/1283
  41909. }
  41910. },
  41911. back: {
  41912. height: math.unit(13, "feet"),
  41913. weight: math.unit(6, "tons"),
  41914. name: "Back",
  41915. image: {
  41916. source: "./media/characters/rover/back.svg",
  41917. extra: 1327/1258,
  41918. bottom: 39/1366
  41919. }
  41920. },
  41921. },
  41922. [
  41923. {
  41924. name: "Normal",
  41925. height: math.unit(13, "feet"),
  41926. default: true
  41927. },
  41928. {
  41929. name: "Macro",
  41930. height: math.unit(1300, "feet")
  41931. },
  41932. {
  41933. name: "Megamacro",
  41934. height: math.unit(1300, "miles")
  41935. },
  41936. {
  41937. name: "Gigamacro",
  41938. height: math.unit(1300000, "miles")
  41939. },
  41940. ]
  41941. ))
  41942. characterMakers.push(() => makeCharacter(
  41943. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41944. {
  41945. front: {
  41946. height: math.unit(6, "feet"),
  41947. weight: math.unit(150, "lb"),
  41948. name: "Front",
  41949. image: {
  41950. source: "./media/characters/ariz/front.svg",
  41951. extra: 1401/1346,
  41952. bottom: 5/1406
  41953. }
  41954. },
  41955. },
  41956. [
  41957. {
  41958. name: "Normal",
  41959. height: math.unit(10, "feet"),
  41960. default: true
  41961. },
  41962. ]
  41963. ))
  41964. characterMakers.push(() => makeCharacter(
  41965. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41966. {
  41967. front: {
  41968. height: math.unit(6, "feet"),
  41969. weight: math.unit(140, "lb"),
  41970. name: "Front",
  41971. image: {
  41972. source: "./media/characters/sigrun/front.svg",
  41973. extra: 1418/1359,
  41974. bottom: 27/1445
  41975. }
  41976. },
  41977. },
  41978. [
  41979. {
  41980. name: "Macro",
  41981. height: math.unit(35, "feet"),
  41982. default: true
  41983. },
  41984. ]
  41985. ))
  41986. characterMakers.push(() => makeCharacter(
  41987. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41988. {
  41989. front: {
  41990. height: math.unit(6, "feet"),
  41991. weight: math.unit(150, "lb"),
  41992. name: "Front",
  41993. image: {
  41994. source: "./media/characters/numin/front.svg",
  41995. extra: 1433/1388,
  41996. bottom: 12/1445
  41997. }
  41998. },
  41999. },
  42000. [
  42001. {
  42002. name: "Macro",
  42003. height: math.unit(21.5, "km"),
  42004. default: true
  42005. },
  42006. ]
  42007. ))
  42008. characterMakers.push(() => makeCharacter(
  42009. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42010. {
  42011. front: {
  42012. height: math.unit(6, "feet"),
  42013. weight: math.unit(463, "lb"),
  42014. name: "Front",
  42015. image: {
  42016. source: "./media/characters/melwa/front.svg",
  42017. extra: 1307/1248,
  42018. bottom: 93/1400
  42019. }
  42020. },
  42021. },
  42022. [
  42023. {
  42024. name: "Macro",
  42025. height: math.unit(50, "meters"),
  42026. default: true
  42027. },
  42028. ]
  42029. ))
  42030. characterMakers.push(() => makeCharacter(
  42031. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42032. {
  42033. front: {
  42034. height: math.unit(325, "feet"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/zorkaiju/front.svg",
  42038. extra: 1955/1814,
  42039. bottom: 40/1995
  42040. }
  42041. },
  42042. frontExtended: {
  42043. height: math.unit(325, "feet"),
  42044. name: "Front (Extended)",
  42045. image: {
  42046. source: "./media/characters/zorkaiju/front-extended.svg",
  42047. extra: 1955/1814,
  42048. bottom: 40/1995
  42049. }
  42050. },
  42051. side: {
  42052. height: math.unit(325, "feet"),
  42053. name: "Side",
  42054. image: {
  42055. source: "./media/characters/zorkaiju/side.svg",
  42056. extra: 1495/1396,
  42057. bottom: 17/1512
  42058. }
  42059. },
  42060. sideExtended: {
  42061. height: math.unit(325, "feet"),
  42062. name: "Side (Extended)",
  42063. image: {
  42064. source: "./media/characters/zorkaiju/side-extended.svg",
  42065. extra: 1495/1396,
  42066. bottom: 17/1512
  42067. }
  42068. },
  42069. back: {
  42070. height: math.unit(325, "feet"),
  42071. name: "Back",
  42072. image: {
  42073. source: "./media/characters/zorkaiju/back.svg",
  42074. extra: 1959/1821,
  42075. bottom: 31/1990
  42076. }
  42077. },
  42078. backExtended: {
  42079. height: math.unit(325, "feet"),
  42080. name: "Back (Extended)",
  42081. image: {
  42082. source: "./media/characters/zorkaiju/back-extended.svg",
  42083. extra: 1959/1821,
  42084. bottom: 31/1990
  42085. }
  42086. },
  42087. hand: {
  42088. height: math.unit(58.4, "feet"),
  42089. name: "Hand",
  42090. image: {
  42091. source: "./media/characters/zorkaiju/hand.svg"
  42092. }
  42093. },
  42094. handExtended: {
  42095. height: math.unit(61.4, "feet"),
  42096. name: "Hand (Extended)",
  42097. image: {
  42098. source: "./media/characters/zorkaiju/hand-extended.svg"
  42099. }
  42100. },
  42101. foot: {
  42102. height: math.unit(95, "feet"),
  42103. name: "Foot",
  42104. image: {
  42105. source: "./media/characters/zorkaiju/foot.svg"
  42106. }
  42107. },
  42108. leftArm: {
  42109. height: math.unit(59, "feet"),
  42110. name: "Left Arm",
  42111. image: {
  42112. source: "./media/characters/zorkaiju/left-arm.svg"
  42113. }
  42114. },
  42115. rightArm: {
  42116. height: math.unit(59, "feet"),
  42117. name: "Right Arm",
  42118. image: {
  42119. source: "./media/characters/zorkaiju/right-arm.svg"
  42120. }
  42121. },
  42122. leftArmExtended: {
  42123. height: math.unit(59 * 1.033546, "feet"),
  42124. name: "Left Arm (Extended)",
  42125. image: {
  42126. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42127. }
  42128. },
  42129. rightArmExtended: {
  42130. height: math.unit(59 * 1.0496, "feet"),
  42131. name: "Right Arm (Extended)",
  42132. image: {
  42133. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42134. }
  42135. },
  42136. tail: {
  42137. height: math.unit(104, "feet"),
  42138. name: "Tail",
  42139. image: {
  42140. source: "./media/characters/zorkaiju/tail.svg"
  42141. }
  42142. },
  42143. tailExtended: {
  42144. height: math.unit(104, "feet"),
  42145. name: "Tail (Extended)",
  42146. image: {
  42147. source: "./media/characters/zorkaiju/tail-extended.svg"
  42148. }
  42149. },
  42150. tailBottom: {
  42151. height: math.unit(104, "feet"),
  42152. name: "Tail Bottom",
  42153. image: {
  42154. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42155. }
  42156. },
  42157. crystal: {
  42158. height: math.unit(27.54, "feet"),
  42159. name: "Crystal",
  42160. image: {
  42161. source: "./media/characters/zorkaiju/crystal.svg"
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Kaiju",
  42168. height: math.unit(325, "feet"),
  42169. default: true
  42170. },
  42171. ]
  42172. ))
  42173. characterMakers.push(() => makeCharacter(
  42174. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42175. {
  42176. front: {
  42177. height: math.unit(6 + 1/12, "feet"),
  42178. weight: math.unit(115, "lb"),
  42179. name: "Front",
  42180. image: {
  42181. source: "./media/characters/bailey-belfry/front.svg",
  42182. extra: 1240/1121,
  42183. bottom: 101/1341
  42184. }
  42185. },
  42186. },
  42187. [
  42188. {
  42189. name: "Normal",
  42190. height: math.unit(6 + 1/12, "feet"),
  42191. default: true
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42197. {
  42198. side: {
  42199. height: math.unit(4, "meters"),
  42200. weight: math.unit(250, "kg"),
  42201. name: "Side",
  42202. image: {
  42203. source: "./media/characters/blacky/side.svg",
  42204. extra: 1027/919,
  42205. bottom: 43/1070
  42206. }
  42207. },
  42208. maw: {
  42209. height: math.unit(1, "meters"),
  42210. name: "Maw",
  42211. image: {
  42212. source: "./media/characters/blacky/maw.svg"
  42213. }
  42214. },
  42215. paw: {
  42216. height: math.unit(1, "meters"),
  42217. name: "Paw",
  42218. image: {
  42219. source: "./media/characters/blacky/paw.svg"
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(4, "meters"),
  42227. default: true
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42233. {
  42234. front: {
  42235. height: math.unit(170, "cm"),
  42236. weight: math.unit(66, "kg"),
  42237. name: "Front",
  42238. image: {
  42239. source: "./media/characters/thux-ei/front.svg",
  42240. extra: 1109/1011,
  42241. bottom: 8/1117
  42242. }
  42243. },
  42244. },
  42245. [
  42246. {
  42247. name: "Normal",
  42248. height: math.unit(170, "cm"),
  42249. default: true
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(5, "feet"),
  42258. weight: math.unit(120, "lb"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/roxanne-voltaire/front.svg",
  42262. extra: 1901/1779,
  42263. bottom: 53/1954
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Normal",
  42270. height: math.unit(5, "feet"),
  42271. default: true
  42272. },
  42273. {
  42274. name: "Giant",
  42275. height: math.unit(50, "feet")
  42276. },
  42277. {
  42278. name: "Titan",
  42279. height: math.unit(500, "feet")
  42280. },
  42281. {
  42282. name: "Macro",
  42283. height: math.unit(5000, "feet")
  42284. },
  42285. {
  42286. name: "Megamacro",
  42287. height: math.unit(50000, "feet")
  42288. },
  42289. {
  42290. name: "Gigamacro",
  42291. height: math.unit(500000, "feet")
  42292. },
  42293. {
  42294. name: "Teramacro",
  42295. height: math.unit(5e6, "feet")
  42296. },
  42297. ]
  42298. ))
  42299. characterMakers.push(() => makeCharacter(
  42300. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42301. {
  42302. front: {
  42303. height: math.unit(6 + 2/12, "feet"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/squeaks/front.svg",
  42307. extra: 1823/1768,
  42308. bottom: 138/1961
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Micro",
  42315. height: math.unit(0.5, "inches")
  42316. },
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(6 + 2/12, "feet"),
  42320. default: true
  42321. },
  42322. {
  42323. name: "Macro",
  42324. height: math.unit(600, "feet")
  42325. },
  42326. ]
  42327. ))
  42328. characterMakers.push(() => makeCharacter(
  42329. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42330. {
  42331. front: {
  42332. height: math.unit(1.72, "meters"),
  42333. name: "Front",
  42334. image: {
  42335. source: "./media/characters/archinger/front.svg",
  42336. extra: 1861/1675,
  42337. bottom: 125/1986
  42338. }
  42339. },
  42340. back: {
  42341. height: math.unit(1.72, "meters"),
  42342. name: "Back",
  42343. image: {
  42344. source: "./media/characters/archinger/back.svg",
  42345. extra: 1844/1701,
  42346. bottom: 104/1948
  42347. }
  42348. },
  42349. cock: {
  42350. height: math.unit(0.59, "feet"),
  42351. name: "Cock",
  42352. image: {
  42353. source: "./media/characters/archinger/cock.svg"
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(1.72, "meters"),
  42361. default: true
  42362. },
  42363. {
  42364. name: "Macro",
  42365. height: math.unit(84, "meters")
  42366. },
  42367. {
  42368. name: "Macro+",
  42369. height: math.unit(112, "meters")
  42370. },
  42371. {
  42372. name: "Macro++",
  42373. height: math.unit(960, "meters")
  42374. },
  42375. {
  42376. name: "Macro+++",
  42377. height: math.unit(4, "km")
  42378. },
  42379. {
  42380. name: "Macro++++",
  42381. height: math.unit(48, "km")
  42382. },
  42383. {
  42384. name: "Macro+++++",
  42385. height: math.unit(4500, "km")
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(5 + 5/12, "feet"),
  42394. name: "Front",
  42395. image: {
  42396. source: "./media/characters/alsnapz/front.svg",
  42397. extra: 1157/1065,
  42398. bottom: 42/1199
  42399. }
  42400. },
  42401. },
  42402. [
  42403. {
  42404. name: "Normal",
  42405. height: math.unit(5 + 5/12, "feet"),
  42406. default: true
  42407. },
  42408. ]
  42409. ))
  42410. characterMakers.push(() => makeCharacter(
  42411. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42412. {
  42413. side: {
  42414. height: math.unit(3.2, "earths"),
  42415. name: "Side",
  42416. image: {
  42417. source: "./media/characters/mag/side.svg",
  42418. extra: 1331/1008,
  42419. bottom: 52/1383
  42420. }
  42421. },
  42422. wing: {
  42423. height: math.unit(1.94, "earths"),
  42424. name: "Wing",
  42425. image: {
  42426. source: "./media/characters/mag/wing.svg"
  42427. }
  42428. },
  42429. dick: {
  42430. height: math.unit(1.8, "earths"),
  42431. name: "Dick",
  42432. image: {
  42433. source: "./media/characters/mag/dick.svg"
  42434. }
  42435. },
  42436. ass: {
  42437. height: math.unit(1.33, "earths"),
  42438. name: "Ass",
  42439. image: {
  42440. source: "./media/characters/mag/ass.svg"
  42441. }
  42442. },
  42443. head: {
  42444. height: math.unit(1.1, "earths"),
  42445. name: "Head",
  42446. image: {
  42447. source: "./media/characters/mag/head.svg"
  42448. }
  42449. },
  42450. maw: {
  42451. height: math.unit(1.62, "earths"),
  42452. name: "Maw",
  42453. image: {
  42454. source: "./media/characters/mag/maw.svg"
  42455. }
  42456. },
  42457. },
  42458. [
  42459. {
  42460. name: "Small",
  42461. height: math.unit(162, "feet")
  42462. },
  42463. {
  42464. name: "Normal",
  42465. height: math.unit(3.2, "earths"),
  42466. default: true
  42467. },
  42468. ]
  42469. ))
  42470. characterMakers.push(() => makeCharacter(
  42471. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42472. {
  42473. front: {
  42474. height: math.unit(512, "feet"),
  42475. weight: math.unit(63509, "tonnes"),
  42476. name: "Front",
  42477. image: {
  42478. source: "./media/characters/vorrel-harroc/front.svg",
  42479. extra: 1075/1063,
  42480. bottom: 62/1137
  42481. }
  42482. },
  42483. },
  42484. [
  42485. {
  42486. name: "Normal",
  42487. height: math.unit(10, "feet")
  42488. },
  42489. {
  42490. name: "Macro",
  42491. height: math.unit(512, "feet"),
  42492. default: true
  42493. },
  42494. {
  42495. name: "Megamacro",
  42496. height: math.unit(256, "miles")
  42497. },
  42498. {
  42499. name: "Gigamacro",
  42500. height: math.unit(4096, "miles")
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42506. {
  42507. side: {
  42508. height: math.unit(50, "feet"),
  42509. name: "Side",
  42510. image: {
  42511. source: "./media/characters/froimar/side.svg",
  42512. extra: 855/638,
  42513. bottom: 99/954
  42514. }
  42515. },
  42516. },
  42517. [
  42518. {
  42519. name: "Macro",
  42520. height: math.unit(50, "feet"),
  42521. default: true
  42522. },
  42523. ]
  42524. ))
  42525. characterMakers.push(() => makeCharacter(
  42526. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42527. {
  42528. front: {
  42529. height: math.unit(210, "miles"),
  42530. name: "Front",
  42531. image: {
  42532. source: "./media/characters/timothy/front.svg",
  42533. extra: 1007/943,
  42534. bottom: 62/1069
  42535. }
  42536. },
  42537. frontSkirt: {
  42538. height: math.unit(210, "miles"),
  42539. name: "Front (Skirt)",
  42540. image: {
  42541. source: "./media/characters/timothy/front-skirt.svg",
  42542. extra: 1007/943,
  42543. bottom: 62/1069
  42544. }
  42545. },
  42546. frontCoat: {
  42547. height: math.unit(210, "miles"),
  42548. name: "Front (Coat)",
  42549. image: {
  42550. source: "./media/characters/timothy/front-coat.svg",
  42551. extra: 1007/943,
  42552. bottom: 62/1069
  42553. }
  42554. },
  42555. },
  42556. [
  42557. {
  42558. name: "Macro",
  42559. height: math.unit(210, "miles"),
  42560. default: true
  42561. },
  42562. {
  42563. name: "Megamacro",
  42564. height: math.unit(210000, "miles")
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(188, "feet"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/pyotr/front.svg",
  42576. extra: 1912/1826,
  42577. bottom: 18/1930
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Macro",
  42584. height: math.unit(188, "feet"),
  42585. default: true
  42586. },
  42587. {
  42588. name: "Megamacro",
  42589. height: math.unit(8, "miles")
  42590. },
  42591. ]
  42592. ))
  42593. characterMakers.push(() => makeCharacter(
  42594. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42595. {
  42596. side: {
  42597. height: math.unit(10, "feet"),
  42598. weight: math.unit(4500, "lb"),
  42599. name: "Side",
  42600. image: {
  42601. source: "./media/characters/ackart/side.svg",
  42602. extra: 1776/1668,
  42603. bottom: 116/1892
  42604. }
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Normal",
  42610. height: math.unit(10, "feet"),
  42611. default: true
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42617. {
  42618. side: {
  42619. height: math.unit(21, "feet"),
  42620. name: "Side",
  42621. image: {
  42622. source: "./media/characters/nolow/side.svg",
  42623. extra: 1484/1434,
  42624. bottom: 85/1569
  42625. }
  42626. },
  42627. sideErect: {
  42628. height: math.unit(21, "feet"),
  42629. name: "Side-erect",
  42630. image: {
  42631. source: "./media/characters/nolow/side-erect.svg",
  42632. extra: 1484/1434,
  42633. bottom: 85/1569
  42634. }
  42635. },
  42636. },
  42637. [
  42638. {
  42639. name: "Regular",
  42640. height: math.unit(12, "feet")
  42641. },
  42642. {
  42643. name: "Big Chee",
  42644. height: math.unit(21, "feet"),
  42645. default: true
  42646. },
  42647. ]
  42648. ))
  42649. characterMakers.push(() => makeCharacter(
  42650. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42651. {
  42652. front: {
  42653. height: math.unit(7, "feet"),
  42654. weight: math.unit(250, "lb"),
  42655. name: "Front",
  42656. image: {
  42657. source: "./media/characters/nines/front.svg",
  42658. extra: 1741/1607,
  42659. bottom: 41/1782
  42660. }
  42661. },
  42662. side: {
  42663. height: math.unit(7, "feet"),
  42664. weight: math.unit(250, "lb"),
  42665. name: "Side",
  42666. image: {
  42667. source: "./media/characters/nines/side.svg",
  42668. extra: 1854/1735,
  42669. bottom: 93/1947
  42670. }
  42671. },
  42672. back: {
  42673. height: math.unit(7, "feet"),
  42674. weight: math.unit(250, "lb"),
  42675. name: "Back",
  42676. image: {
  42677. source: "./media/characters/nines/back.svg",
  42678. extra: 1748/1615,
  42679. bottom: 20/1768
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Megamacro",
  42686. height: math.unit(99, "km"),
  42687. default: true
  42688. },
  42689. ]
  42690. ))
  42691. characterMakers.push(() => makeCharacter(
  42692. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42693. {
  42694. front: {
  42695. height: math.unit(5 + 10/12, "feet"),
  42696. weight: math.unit(210, "lb"),
  42697. name: "Front",
  42698. image: {
  42699. source: "./media/characters/zenith/front.svg",
  42700. extra: 1531/1452,
  42701. bottom: 198/1729
  42702. }
  42703. },
  42704. back: {
  42705. height: math.unit(5 + 10/12, "feet"),
  42706. weight: math.unit(210, "lb"),
  42707. name: "Back",
  42708. image: {
  42709. source: "./media/characters/zenith/back.svg",
  42710. extra: 1571/1487,
  42711. bottom: 75/1646
  42712. }
  42713. },
  42714. },
  42715. [
  42716. {
  42717. name: "Normal",
  42718. height: math.unit(5 + 10/12, "feet"),
  42719. default: true
  42720. }
  42721. ]
  42722. ))
  42723. characterMakers.push(() => makeCharacter(
  42724. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42725. {
  42726. front: {
  42727. height: math.unit(4, "feet"),
  42728. weight: math.unit(60, "lb"),
  42729. name: "Front",
  42730. image: {
  42731. source: "./media/characters/jasper/front.svg",
  42732. extra: 1450/1379,
  42733. bottom: 19/1469
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Normal",
  42740. height: math.unit(4, "feet"),
  42741. default: true
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42747. {
  42748. front: {
  42749. height: math.unit(6 + 5/12, "feet"),
  42750. weight: math.unit(290, "lb"),
  42751. name: "Front",
  42752. image: {
  42753. source: "./media/characters/tiberius-thyben/front.svg",
  42754. extra: 757/739,
  42755. bottom: 39/796
  42756. }
  42757. },
  42758. },
  42759. [
  42760. {
  42761. name: "Micro",
  42762. height: math.unit(1.5, "inches")
  42763. },
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(6 + 5/12, "feet"),
  42767. default: true
  42768. },
  42769. {
  42770. name: "Macro",
  42771. height: math.unit(300, "feet")
  42772. },
  42773. ]
  42774. ))
  42775. characterMakers.push(() => makeCharacter(
  42776. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42777. {
  42778. front: {
  42779. height: math.unit(5 + 6/12, "feet"),
  42780. weight: math.unit(60, "kg"),
  42781. name: "Front",
  42782. image: {
  42783. source: "./media/characters/sabre/front.svg",
  42784. extra: 738/671,
  42785. bottom: 27/765
  42786. }
  42787. },
  42788. },
  42789. [
  42790. {
  42791. name: "Teeny",
  42792. height: math.unit(2, "inches")
  42793. },
  42794. {
  42795. name: "Smol",
  42796. height: math.unit(8, "inches")
  42797. },
  42798. {
  42799. name: "Normal",
  42800. height: math.unit(5 + 6/12, "feet"),
  42801. default: true
  42802. },
  42803. {
  42804. name: "Mini-Macro",
  42805. height: math.unit(15, "feet")
  42806. },
  42807. {
  42808. name: "Macro",
  42809. height: math.unit(50, "feet")
  42810. },
  42811. ]
  42812. ))
  42813. characterMakers.push(() => makeCharacter(
  42814. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42815. {
  42816. front: {
  42817. height: math.unit(6 + 4/12, "feet"),
  42818. weight: math.unit(170, "lb"),
  42819. name: "Front",
  42820. image: {
  42821. source: "./media/characters/charlie/front.svg",
  42822. extra: 1348/1228,
  42823. bottom: 15/1363
  42824. }
  42825. },
  42826. },
  42827. [
  42828. {
  42829. name: "Macro",
  42830. height: math.unit(1700, "meters"),
  42831. default: true
  42832. },
  42833. {
  42834. name: "MegaMacro",
  42835. height: math.unit(20400, "meters")
  42836. },
  42837. ]
  42838. ))
  42839. characterMakers.push(() => makeCharacter(
  42840. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42841. {
  42842. front: {
  42843. height: math.unit(6 + 3/12, "feet"),
  42844. weight: math.unit(185, "lb"),
  42845. name: "Front",
  42846. image: {
  42847. source: "./media/characters/susan-grant/front.svg",
  42848. extra: 1351/1327,
  42849. bottom: 26/1377
  42850. }
  42851. },
  42852. },
  42853. [
  42854. {
  42855. name: "Normal",
  42856. height: math.unit(6 + 3/12, "feet"),
  42857. default: true
  42858. },
  42859. {
  42860. name: "Macro",
  42861. height: math.unit(225, "feet")
  42862. },
  42863. {
  42864. name: "Macro+",
  42865. height: math.unit(900, "feet")
  42866. },
  42867. {
  42868. name: "MegaMacro",
  42869. height: math.unit(14400, "feet")
  42870. },
  42871. ]
  42872. ))
  42873. characterMakers.push(() => makeCharacter(
  42874. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42875. {
  42876. front: {
  42877. height: math.unit(5 + 4/12, "feet"),
  42878. weight: math.unit(110, "lb"),
  42879. name: "Front",
  42880. image: {
  42881. source: "./media/characters/axel-isanov/front.svg",
  42882. extra: 1096/1065,
  42883. bottom: 13/1109
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(5 + 4/12, "feet"),
  42891. default: true
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(9, "feet"),
  42900. weight: math.unit(467, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/necahual/front.svg",
  42904. extra: 920/873,
  42905. bottom: 26/946
  42906. }
  42907. },
  42908. back: {
  42909. height: math.unit(9, "feet"),
  42910. weight: math.unit(467, "lb"),
  42911. name: "Back",
  42912. image: {
  42913. source: "./media/characters/necahual/back.svg",
  42914. extra: 930/884,
  42915. bottom: 16/946
  42916. }
  42917. },
  42918. frontUnderwear: {
  42919. height: math.unit(9, "feet"),
  42920. weight: math.unit(467, "lb"),
  42921. name: "Front (Underwear)",
  42922. image: {
  42923. source: "./media/characters/necahual/front-underwear.svg",
  42924. extra: 920/873,
  42925. bottom: 26/946
  42926. }
  42927. },
  42928. frontDressed: {
  42929. height: math.unit(9, "feet"),
  42930. weight: math.unit(467, "lb"),
  42931. name: "Front (Dressed)",
  42932. image: {
  42933. source: "./media/characters/necahual/front-dressed.svg",
  42934. extra: 920/873,
  42935. bottom: 26/946
  42936. }
  42937. },
  42938. },
  42939. [
  42940. {
  42941. name: "Comprsesed",
  42942. height: math.unit(9, "feet")
  42943. },
  42944. {
  42945. name: "Natural",
  42946. height: math.unit(15, "feet"),
  42947. default: true
  42948. },
  42949. {
  42950. name: "Boosted",
  42951. height: math.unit(50, "feet")
  42952. },
  42953. {
  42954. name: "Boosted+",
  42955. height: math.unit(150, "feet")
  42956. },
  42957. {
  42958. name: "Max",
  42959. height: math.unit(500, "feet")
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42965. {
  42966. front: {
  42967. height: math.unit(22 + 1/12, "feet"),
  42968. weight: math.unit(3200, "lb"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/theo-acacia/front.svg",
  42972. extra: 1796/1741,
  42973. bottom: 83/1879
  42974. }
  42975. },
  42976. frontUnderwear: {
  42977. height: math.unit(22 + 1/12, "feet"),
  42978. weight: math.unit(3200, "lb"),
  42979. name: "Front (Underwear)",
  42980. image: {
  42981. source: "./media/characters/theo-acacia/front-underwear.svg",
  42982. extra: 1796/1741,
  42983. bottom: 83/1879
  42984. }
  42985. },
  42986. frontNude: {
  42987. height: math.unit(22 + 1/12, "feet"),
  42988. weight: math.unit(3200, "lb"),
  42989. name: "Front (Nude)",
  42990. image: {
  42991. source: "./media/characters/theo-acacia/front-nude.svg",
  42992. extra: 1796/1741,
  42993. bottom: 83/1879
  42994. }
  42995. },
  42996. },
  42997. [
  42998. {
  42999. name: "Normal",
  43000. height: math.unit(22 + 1/12, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(20, "feet"),
  43010. name: "Front",
  43011. image: {
  43012. source: "./media/characters/astra/front.svg",
  43013. extra: 1850/1714,
  43014. bottom: 106/1956
  43015. }
  43016. },
  43017. frontUndressed: {
  43018. height: math.unit(20, "feet"),
  43019. name: "Front (Undressed)",
  43020. image: {
  43021. source: "./media/characters/astra/front-undressed.svg",
  43022. extra: 1926/1749,
  43023. bottom: 0/1926
  43024. }
  43025. },
  43026. hand: {
  43027. height: math.unit(1.53, "feet"),
  43028. name: "Hand",
  43029. image: {
  43030. source: "./media/characters/astra/hand.svg"
  43031. }
  43032. },
  43033. paw: {
  43034. height: math.unit(1.53, "feet"),
  43035. name: "Paw",
  43036. image: {
  43037. source: "./media/characters/astra/paw.svg"
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Smallest",
  43044. height: math.unit(20, "feet")
  43045. },
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(1e9, "miles"),
  43049. default: true
  43050. },
  43051. {
  43052. name: "Larger",
  43053. height: math.unit(5, "multiverses")
  43054. },
  43055. {
  43056. name: "Largest",
  43057. height: math.unit(1e9, "multiverses")
  43058. },
  43059. ]
  43060. ))
  43061. characterMakers.push(() => makeCharacter(
  43062. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43063. {
  43064. front: {
  43065. height: math.unit(8, "feet"),
  43066. name: "Front",
  43067. image: {
  43068. source: "./media/characters/breanna/front.svg",
  43069. extra: 1912/1632,
  43070. bottom: 33/1945
  43071. }
  43072. },
  43073. },
  43074. [
  43075. {
  43076. name: "Smallest",
  43077. height: math.unit(8, "feet")
  43078. },
  43079. {
  43080. name: "Normal",
  43081. height: math.unit(1, "mile"),
  43082. default: true
  43083. },
  43084. {
  43085. name: "Maximum",
  43086. height: math.unit(1500000000000, "lightyears")
  43087. },
  43088. ]
  43089. ))
  43090. characterMakers.push(() => makeCharacter(
  43091. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43092. {
  43093. front: {
  43094. height: math.unit(5 + 11/12, "feet"),
  43095. weight: math.unit(155, "lb"),
  43096. name: "Front",
  43097. image: {
  43098. source: "./media/characters/cai/front.svg",
  43099. extra: 1823/1702,
  43100. bottom: 32/1855
  43101. }
  43102. },
  43103. back: {
  43104. height: math.unit(5 + 11/12, "feet"),
  43105. weight: math.unit(155, "lb"),
  43106. name: "Back",
  43107. image: {
  43108. source: "./media/characters/cai/back.svg",
  43109. extra: 1809/1708,
  43110. bottom: 31/1840
  43111. }
  43112. },
  43113. },
  43114. [
  43115. {
  43116. name: "Normal",
  43117. height: math.unit(5 + 11/12, "feet"),
  43118. default: true
  43119. },
  43120. {
  43121. name: "Big",
  43122. height: math.unit(15, "feet")
  43123. },
  43124. {
  43125. name: "Macro",
  43126. height: math.unit(200, "feet")
  43127. },
  43128. ]
  43129. ))
  43130. characterMakers.push(() => makeCharacter(
  43131. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43132. {
  43133. front: {
  43134. height: math.unit(5 + 6/12, "feet"),
  43135. weight: math.unit(160, "lb"),
  43136. name: "Front",
  43137. image: {
  43138. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43139. extra: 1227/1174,
  43140. bottom: 37/1264
  43141. }
  43142. },
  43143. },
  43144. [
  43145. {
  43146. name: "Macro",
  43147. height: math.unit(444, "meters"),
  43148. default: true
  43149. },
  43150. ]
  43151. ))
  43152. characterMakers.push(() => makeCharacter(
  43153. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43154. {
  43155. front: {
  43156. height: math.unit(18 + 7/12, "feet"),
  43157. name: "Front",
  43158. image: {
  43159. source: "./media/characters/rex/front.svg",
  43160. extra: 1941/1807,
  43161. bottom: 66/2007
  43162. }
  43163. },
  43164. back: {
  43165. height: math.unit(18 + 7/12, "feet"),
  43166. name: "Back",
  43167. image: {
  43168. source: "./media/characters/rex/back.svg",
  43169. extra: 1937/1822,
  43170. bottom: 42/1979
  43171. }
  43172. },
  43173. boot: {
  43174. height: math.unit(3.45, "feet"),
  43175. name: "Boot",
  43176. image: {
  43177. source: "./media/characters/rex/boot.svg"
  43178. }
  43179. },
  43180. paw: {
  43181. height: math.unit(4.17, "feet"),
  43182. name: "Paw",
  43183. image: {
  43184. source: "./media/characters/rex/paw.svg"
  43185. }
  43186. },
  43187. head: {
  43188. height: math.unit(6.728, "feet"),
  43189. name: "Head",
  43190. image: {
  43191. source: "./media/characters/rex/head.svg"
  43192. }
  43193. },
  43194. },
  43195. [
  43196. {
  43197. name: "Nano",
  43198. height: math.unit(18 + 7/12, "feet")
  43199. },
  43200. {
  43201. name: "Micro",
  43202. height: math.unit(1.5, "megameters")
  43203. },
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(440, "megameters"),
  43207. default: true
  43208. },
  43209. {
  43210. name: "Macro",
  43211. height: math.unit(2.5, "gigameters")
  43212. },
  43213. {
  43214. name: "Gigamacro",
  43215. height: math.unit(2, "galaxies")
  43216. },
  43217. ]
  43218. ))
  43219. characterMakers.push(() => makeCharacter(
  43220. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43221. {
  43222. side: {
  43223. height: math.unit(32, "feet"),
  43224. weight: math.unit(250000, "lb"),
  43225. name: "Side",
  43226. image: {
  43227. source: "./media/characters/silverwing/side.svg",
  43228. extra: 1100/1019,
  43229. bottom: 204/1304
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(32, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(6 + 6/12, "feet"),
  43246. weight: math.unit(350, "lb"),
  43247. name: "Front",
  43248. image: {
  43249. source: "./media/characters/tristan-hawthorne/front.svg",
  43250. extra: 1159/1124,
  43251. bottom: 37/1196
  43252. },
  43253. form: "labrador",
  43254. default: true
  43255. },
  43256. skunkFront: {
  43257. height: math.unit(4 + 6/12, "feet"),
  43258. weight: math.unit(120, "lb"),
  43259. name: "Front",
  43260. image: {
  43261. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43262. extra: 1609/1551,
  43263. bottom: 169/1778
  43264. },
  43265. form: "skunk",
  43266. default: true
  43267. },
  43268. },
  43269. [
  43270. {
  43271. name: "Normal",
  43272. height: math.unit(6 + 6/12, "feet"),
  43273. form: "labrador",
  43274. default: true
  43275. },
  43276. {
  43277. name: "Normal",
  43278. height: math.unit(4 + 6/12, "feet"),
  43279. form: "skunk",
  43280. default: true
  43281. },
  43282. ],
  43283. {
  43284. "labrador": {
  43285. name: "Labrador",
  43286. default: true
  43287. },
  43288. "skunk": {
  43289. name: "Skunk"
  43290. }
  43291. }
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(5 + 11/12, "feet"),
  43298. weight: math.unit(190, "lb"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/mizu/front.svg",
  43302. extra: 1988/1788,
  43303. bottom: 14/2002
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(5 + 11/12, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43317. {
  43318. front: {
  43319. height: math.unit(1.7, "feet"),
  43320. weight: math.unit(50, "lb"),
  43321. name: "Front",
  43322. image: {
  43323. source: "./media/characters/dechroma/front.svg",
  43324. extra: 1095/859,
  43325. bottom: 64/1159
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(1.7, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43339. {
  43340. side: {
  43341. height: math.unit(30, "feet"),
  43342. name: "Side",
  43343. image: {
  43344. source: "./media/characters/veluren-thanazel/side.svg",
  43345. extra: 1611/633,
  43346. bottom: 118/1729
  43347. }
  43348. },
  43349. front: {
  43350. height: math.unit(30, "feet"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/veluren-thanazel/front.svg",
  43354. extra: 1486/636,
  43355. bottom: 238/1724
  43356. }
  43357. },
  43358. head: {
  43359. height: math.unit(21.4, "feet"),
  43360. name: "Head",
  43361. image: {
  43362. source: "./media/characters/veluren-thanazel/head.svg"
  43363. }
  43364. },
  43365. genitals: {
  43366. height: math.unit(19.4, "feet"),
  43367. name: "Genitals",
  43368. image: {
  43369. source: "./media/characters/veluren-thanazel/genitals.svg"
  43370. }
  43371. },
  43372. },
  43373. [
  43374. {
  43375. name: "Social",
  43376. height: math.unit(6, "feet")
  43377. },
  43378. {
  43379. name: "Play",
  43380. height: math.unit(12, "feet")
  43381. },
  43382. {
  43383. name: "True",
  43384. height: math.unit(30, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43391. {
  43392. front: {
  43393. height: math.unit(7 + 6/12, "feet"),
  43394. weight: math.unit(500, "kg"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/arcturas/front.svg",
  43398. extra: 1700/1500,
  43399. bottom: 145/1845
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Normal",
  43406. height: math.unit(7 + 6/12, "feet"),
  43407. default: true
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43413. {
  43414. side: {
  43415. height: math.unit(6, "feet"),
  43416. weight: math.unit(2, "tons"),
  43417. name: "Side",
  43418. image: {
  43419. source: "./media/characters/vitaen/side.svg",
  43420. extra: 1157/617,
  43421. bottom: 122/1279
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Normal",
  43428. height: math.unit(6, "feet"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(19, "feet"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/fia-dreamweaver/front.svg",
  43441. extra: 1630/1504,
  43442. bottom: 25/1655
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(19, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(5 + 4/12, "feet"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/artan/front.svg",
  43462. extra: 1618/1535,
  43463. bottom: 46/1664
  43464. }
  43465. },
  43466. back: {
  43467. height: math.unit(5 + 4/12, "feet"),
  43468. name: "Back",
  43469. image: {
  43470. source: "./media/characters/artan/back.svg",
  43471. extra: 1618/1543,
  43472. bottom: 31/1649
  43473. }
  43474. },
  43475. },
  43476. [
  43477. {
  43478. name: "Normal",
  43479. height: math.unit(5 + 4/12, "feet"),
  43480. default: true
  43481. },
  43482. ]
  43483. ))
  43484. characterMakers.push(() => makeCharacter(
  43485. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43486. {
  43487. side: {
  43488. height: math.unit(182, "cm"),
  43489. weight: math.unit(1000, "lb"),
  43490. name: "Side",
  43491. image: {
  43492. source: "./media/characters/silver-dragon/side.svg",
  43493. extra: 710/287,
  43494. bottom: 88/798
  43495. }
  43496. },
  43497. },
  43498. [
  43499. {
  43500. name: "Normal",
  43501. height: math.unit(182, "cm"),
  43502. default: true
  43503. },
  43504. ]
  43505. ))
  43506. characterMakers.push(() => makeCharacter(
  43507. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43508. {
  43509. side: {
  43510. height: math.unit(6 + 6/12, "feet"),
  43511. weight: math.unit(1.5, "tons"),
  43512. name: "Side",
  43513. image: {
  43514. source: "./media/characters/zephyr/side.svg",
  43515. extra: 1433/586,
  43516. bottom: 109/1542
  43517. }
  43518. },
  43519. },
  43520. [
  43521. {
  43522. name: "Normal",
  43523. height: math.unit(6 + 6/12, "feet"),
  43524. default: true
  43525. },
  43526. ]
  43527. ))
  43528. characterMakers.push(() => makeCharacter(
  43529. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43530. {
  43531. side: {
  43532. height: math.unit(1, "feet"),
  43533. name: "Side",
  43534. image: {
  43535. source: "./media/characters/vixye/side.svg",
  43536. extra: 632/541,
  43537. bottom: 0/632
  43538. }
  43539. },
  43540. },
  43541. [
  43542. {
  43543. name: "Normal",
  43544. height: math.unit(1, "feet"),
  43545. default: true
  43546. },
  43547. {
  43548. name: "True",
  43549. height: math.unit(1e15, "multiverses")
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(8 + 2/12, "feet"),
  43558. weight: math.unit(650, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43562. extra: 1174/1137,
  43563. bottom: 82/1256
  43564. }
  43565. },
  43566. back: {
  43567. height: math.unit(8 + 2/12, "feet"),
  43568. weight: math.unit(650, "lb"),
  43569. name: "Back",
  43570. image: {
  43571. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43572. extra: 1204/1157,
  43573. bottom: 46/1250
  43574. }
  43575. },
  43576. },
  43577. [
  43578. {
  43579. name: "Wildform",
  43580. height: math.unit(8 + 2/12, "feet"),
  43581. default: true
  43582. },
  43583. ]
  43584. ))
  43585. characterMakers.push(() => makeCharacter(
  43586. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43587. {
  43588. front: {
  43589. height: math.unit(18, "feet"),
  43590. name: "Front",
  43591. image: {
  43592. source: "./media/characters/cyphin/front.svg",
  43593. extra: 970/886,
  43594. bottom: 42/1012
  43595. }
  43596. },
  43597. back: {
  43598. height: math.unit(18, "feet"),
  43599. name: "Back",
  43600. image: {
  43601. source: "./media/characters/cyphin/back.svg",
  43602. extra: 1009/894,
  43603. bottom: 24/1033
  43604. }
  43605. },
  43606. head: {
  43607. height: math.unit(5.05, "feet"),
  43608. name: "Head",
  43609. image: {
  43610. source: "./media/characters/cyphin/head.svg"
  43611. }
  43612. },
  43613. tailbud: {
  43614. height: math.unit(5, "feet"),
  43615. name: "Tailbud",
  43616. image: {
  43617. source: "./media/characters/cyphin/tailbud.svg"
  43618. }
  43619. },
  43620. },
  43621. [
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43626. {
  43627. side: {
  43628. height: math.unit(10, "feet"),
  43629. weight: math.unit(6, "tons"),
  43630. name: "Side",
  43631. image: {
  43632. source: "./media/characters/raijin/side.svg",
  43633. extra: 1529/613,
  43634. bottom: 337/1866
  43635. }
  43636. },
  43637. },
  43638. [
  43639. {
  43640. name: "Normal",
  43641. height: math.unit(10, "feet"),
  43642. default: true
  43643. },
  43644. ]
  43645. ))
  43646. characterMakers.push(() => makeCharacter(
  43647. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43648. {
  43649. side: {
  43650. height: math.unit(9, "feet"),
  43651. name: "Side",
  43652. image: {
  43653. source: "./media/characters/nilghais/side.svg",
  43654. extra: 1047/744,
  43655. bottom: 91/1138
  43656. }
  43657. },
  43658. head: {
  43659. height: math.unit(3.14, "feet"),
  43660. name: "Head",
  43661. image: {
  43662. source: "./media/characters/nilghais/head.svg"
  43663. }
  43664. },
  43665. mouth: {
  43666. height: math.unit(4.6, "feet"),
  43667. name: "Mouth",
  43668. image: {
  43669. source: "./media/characters/nilghais/mouth.svg"
  43670. }
  43671. },
  43672. wings: {
  43673. height: math.unit(24, "feet"),
  43674. name: "Wings",
  43675. image: {
  43676. source: "./media/characters/nilghais/wings.svg"
  43677. }
  43678. },
  43679. ass: {
  43680. height: math.unit(6.12, "feet"),
  43681. name: "Ass",
  43682. image: {
  43683. source: "./media/characters/nilghais/ass.svg"
  43684. }
  43685. },
  43686. },
  43687. [
  43688. {
  43689. name: "Normal",
  43690. height: math.unit(9, "feet"),
  43691. default: true
  43692. },
  43693. ]
  43694. ))
  43695. characterMakers.push(() => makeCharacter(
  43696. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43697. {
  43698. regular: {
  43699. height: math.unit(16 + 2/12, "feet"),
  43700. weight: math.unit(2300, "lb"),
  43701. name: "Regular",
  43702. image: {
  43703. source: "./media/characters/zolgar/regular.svg",
  43704. extra: 1246/1004,
  43705. bottom: 124/1370
  43706. }
  43707. },
  43708. boxers: {
  43709. height: math.unit(16 + 2/12, "feet"),
  43710. weight: math.unit(2300, "lb"),
  43711. name: "Boxers",
  43712. image: {
  43713. source: "./media/characters/zolgar/boxers.svg",
  43714. extra: 1246/1004,
  43715. bottom: 124/1370
  43716. }
  43717. },
  43718. armored: {
  43719. height: math.unit(16 + 2/12, "feet"),
  43720. weight: math.unit(2300, "lb"),
  43721. name: "Armored",
  43722. image: {
  43723. source: "./media/characters/zolgar/armored.svg",
  43724. extra: 1246/1004,
  43725. bottom: 124/1370
  43726. }
  43727. },
  43728. goth: {
  43729. height: math.unit(16 + 2/12, "feet"),
  43730. weight: math.unit(2300, "lb"),
  43731. name: "Goth",
  43732. image: {
  43733. source: "./media/characters/zolgar/goth.svg",
  43734. extra: 1246/1004,
  43735. bottom: 124/1370
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Shrunken Down",
  43742. height: math.unit(9 + 2/12, "feet")
  43743. },
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(16 + 2/12, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(6, "feet"),
  43756. weight: math.unit(168, "lb"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/luca/front.svg",
  43760. extra: 841/667,
  43761. bottom: 102/943
  43762. }
  43763. },
  43764. },
  43765. [
  43766. {
  43767. name: "Normal",
  43768. height: math.unit(6, "feet"),
  43769. default: true
  43770. },
  43771. ]
  43772. ))
  43773. characterMakers.push(() => makeCharacter(
  43774. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43775. {
  43776. side: {
  43777. height: math.unit(7 + 3/12, "feet"),
  43778. weight: math.unit(312, "lb"),
  43779. name: "Side",
  43780. image: {
  43781. source: "./media/characters/zezo/side.svg",
  43782. extra: 1192/1067,
  43783. bottom: 63/1255
  43784. }
  43785. },
  43786. },
  43787. [
  43788. {
  43789. name: "Normal",
  43790. height: math.unit(7 + 3/12, "feet"),
  43791. default: true
  43792. },
  43793. ]
  43794. ))
  43795. characterMakers.push(() => makeCharacter(
  43796. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43797. {
  43798. front: {
  43799. height: math.unit(5 + 5/12, "feet"),
  43800. weight: math.unit(170, "lb"),
  43801. name: "Front",
  43802. image: {
  43803. source: "./media/characters/mayso/front.svg",
  43804. extra: 1215/1108,
  43805. bottom: 16/1231
  43806. }
  43807. },
  43808. },
  43809. [
  43810. {
  43811. name: "Normal",
  43812. height: math.unit(5 + 5/12, "feet"),
  43813. default: true
  43814. },
  43815. ]
  43816. ))
  43817. characterMakers.push(() => makeCharacter(
  43818. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43819. {
  43820. front: {
  43821. height: math.unit(4 + 3/12, "feet"),
  43822. weight: math.unit(80, "lb"),
  43823. name: "Front",
  43824. image: {
  43825. source: "./media/characters/hess/front.svg",
  43826. extra: 1200/1123,
  43827. bottom: 16/1216
  43828. }
  43829. },
  43830. },
  43831. [
  43832. {
  43833. name: "Normal",
  43834. height: math.unit(4 + 3/12, "feet"),
  43835. default: true
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43841. {
  43842. front: {
  43843. height: math.unit(1.9, "meters"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/ashgar/front.svg",
  43847. extra: 1177/1146,
  43848. bottom: 99/1276
  43849. }
  43850. },
  43851. back: {
  43852. height: math.unit(1.9, "meters"),
  43853. name: "Back",
  43854. image: {
  43855. source: "./media/characters/ashgar/back.svg",
  43856. extra: 1201/1183,
  43857. bottom: 53/1254
  43858. }
  43859. },
  43860. feral: {
  43861. height: math.unit(1.4, "meters"),
  43862. name: "Feral",
  43863. image: {
  43864. source: "./media/characters/ashgar/feral.svg",
  43865. extra: 370/345,
  43866. bottom: 45/415
  43867. }
  43868. },
  43869. },
  43870. [
  43871. {
  43872. name: "Normal",
  43873. height: math.unit(1.9, "meters"),
  43874. default: true
  43875. },
  43876. ]
  43877. ))
  43878. characterMakers.push(() => makeCharacter(
  43879. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43880. {
  43881. regular: {
  43882. height: math.unit(6, "feet"),
  43883. weight: math.unit(220, "lb"),
  43884. name: "Regular",
  43885. image: {
  43886. source: "./media/characters/phillip/regular.svg",
  43887. extra: 1373/1277,
  43888. bottom: 75/1448
  43889. }
  43890. },
  43891. dressed: {
  43892. height: math.unit(6, "feet"),
  43893. weight: math.unit(220, "lb"),
  43894. name: "Dressed",
  43895. image: {
  43896. source: "./media/characters/phillip/dressed.svg",
  43897. extra: 1373/1277,
  43898. bottom: 75/1448
  43899. }
  43900. },
  43901. paw: {
  43902. height: math.unit(1.44, "feet"),
  43903. name: "Paw",
  43904. image: {
  43905. source: "./media/characters/phillip/paw.svg"
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Normal",
  43912. height: math.unit(6, "feet"),
  43913. default: true
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43919. {
  43920. side: {
  43921. height: math.unit(42, "feet"),
  43922. name: "Side",
  43923. image: {
  43924. source: "./media/characters/uvula/side.svg",
  43925. extra: 683/586,
  43926. bottom: 60/743
  43927. }
  43928. },
  43929. front: {
  43930. height: math.unit(42, "feet"),
  43931. name: "Front",
  43932. image: {
  43933. source: "./media/characters/uvula/front.svg",
  43934. extra: 705/613,
  43935. bottom: 54/759
  43936. }
  43937. },
  43938. maw: {
  43939. height: math.unit(23.5, "feet"),
  43940. name: "Maw",
  43941. image: {
  43942. source: "./media/characters/uvula/maw.svg"
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Original Size",
  43949. height: math.unit(14, "inches")
  43950. },
  43951. {
  43952. name: "Human Size",
  43953. height: math.unit(6, "feet")
  43954. },
  43955. {
  43956. name: "Big",
  43957. height: math.unit(42, "feet"),
  43958. default: true
  43959. },
  43960. {
  43961. name: "Bigger",
  43962. height: math.unit(100, "feet")
  43963. },
  43964. ]
  43965. ))
  43966. characterMakers.push(() => makeCharacter(
  43967. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43968. {
  43969. front: {
  43970. height: math.unit(5 + 11/12, "feet"),
  43971. name: "Front",
  43972. image: {
  43973. source: "./media/characters/lannah/front.svg",
  43974. extra: 1208/1113,
  43975. bottom: 97/1305
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "Normal",
  43982. height: math.unit(5 + 11/12, "feet"),
  43983. default: true
  43984. },
  43985. ]
  43986. ))
  43987. characterMakers.push(() => makeCharacter(
  43988. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43989. {
  43990. front: {
  43991. height: math.unit(6 + 3/12, "feet"),
  43992. weight: math.unit(3.5, "tons"),
  43993. name: "Front",
  43994. image: {
  43995. source: "./media/characters/emberflame/front.svg",
  43996. extra: 1198/672,
  43997. bottom: 82/1280
  43998. }
  43999. },
  44000. side: {
  44001. height: math.unit(6 + 3/12, "feet"),
  44002. weight: math.unit(3.5, "tons"),
  44003. name: "Side",
  44004. image: {
  44005. source: "./media/characters/emberflame/side.svg",
  44006. extra: 938/527,
  44007. bottom: 56/994
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(6 + 3/12, "feet"),
  44015. default: true
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44021. {
  44022. side: {
  44023. height: math.unit(17.5, "feet"),
  44024. weight: math.unit(35, "tons"),
  44025. name: "Side",
  44026. image: {
  44027. source: "./media/characters/sophie-ambrose/side.svg",
  44028. extra: 1573/1242,
  44029. bottom: 71/1644
  44030. }
  44031. },
  44032. maw: {
  44033. height: math.unit(7.4, "feet"),
  44034. name: "Maw",
  44035. image: {
  44036. source: "./media/characters/sophie-ambrose/maw.svg"
  44037. }
  44038. },
  44039. },
  44040. [
  44041. {
  44042. name: "Normal",
  44043. height: math.unit(17.5, "feet"),
  44044. default: true
  44045. },
  44046. ]
  44047. ))
  44048. characterMakers.push(() => makeCharacter(
  44049. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44050. {
  44051. front: {
  44052. height: math.unit(280, "feet"),
  44053. weight: math.unit(550, "tons"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/king-mugi/front.svg",
  44057. extra: 1102/947,
  44058. bottom: 104/1206
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "King Mugi",
  44065. height: math.unit(280, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44072. {
  44073. front: {
  44074. height: math.unit(64, "meters"),
  44075. name: "Front",
  44076. image: {
  44077. source: "./media/characters/nova-fox/front.svg",
  44078. extra: 1310/1246,
  44079. bottom: 65/1375
  44080. }
  44081. },
  44082. },
  44083. [
  44084. {
  44085. name: "Macro",
  44086. height: math.unit(64, "meters"),
  44087. default: true
  44088. },
  44089. ]
  44090. ))
  44091. characterMakers.push(() => makeCharacter(
  44092. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44093. {
  44094. front: {
  44095. height: math.unit(6 + 3/12, "feet"),
  44096. weight: math.unit(170, "lb"),
  44097. name: "Front",
  44098. image: {
  44099. source: "./media/characters/sam-bat/front.svg",
  44100. extra: 1601/1411,
  44101. bottom: 125/1726
  44102. }
  44103. },
  44104. back: {
  44105. height: math.unit(6 + 3/12, "feet"),
  44106. weight: math.unit(170, "lb"),
  44107. name: "Back",
  44108. image: {
  44109. source: "./media/characters/sam-bat/back.svg",
  44110. extra: 1577/1405,
  44111. bottom: 58/1635
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(6 + 3/12, "feet"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44125. {
  44126. front: {
  44127. height: math.unit(59, "feet"),
  44128. weight: math.unit(40000, "lb"),
  44129. name: "Front",
  44130. image: {
  44131. source: "./media/characters/inari/front.svg",
  44132. extra: 1884/1350,
  44133. bottom: 95/1979
  44134. }
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Gigantamax",
  44140. height: math.unit(59, "feet"),
  44141. default: true
  44142. },
  44143. ]
  44144. ))
  44145. characterMakers.push(() => makeCharacter(
  44146. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44147. {
  44148. front: {
  44149. height: math.unit(5 + 8/12, "feet"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/elizabeth/front.svg",
  44153. extra: 1395/1298,
  44154. bottom: 54/1449
  44155. }
  44156. },
  44157. mouth: {
  44158. height: math.unit(1.97, "feet"),
  44159. name: "Mouth",
  44160. image: {
  44161. source: "./media/characters/elizabeth/mouth.svg"
  44162. }
  44163. },
  44164. foot: {
  44165. height: math.unit(1.17, "feet"),
  44166. name: "Foot",
  44167. image: {
  44168. source: "./media/characters/elizabeth/foot.svg"
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "Normal",
  44175. height: math.unit(5 + 8/12, "feet"),
  44176. default: true
  44177. },
  44178. {
  44179. name: "Minimacro",
  44180. height: math.unit(18, "feet")
  44181. },
  44182. {
  44183. name: "Macro",
  44184. height: math.unit(180, "feet")
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44190. {
  44191. front: {
  44192. height: math.unit(5 + 2/12, "feet"),
  44193. name: "Front",
  44194. image: {
  44195. source: "./media/characters/october-gossamer/front.svg",
  44196. extra: 505/454,
  44197. bottom: 7/512
  44198. }
  44199. },
  44200. back: {
  44201. height: math.unit(5 + 2/12, "feet"),
  44202. name: "Back",
  44203. image: {
  44204. source: "./media/characters/october-gossamer/back.svg",
  44205. extra: 501/454,
  44206. bottom: 11/512
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(5 + 2/12, "feet"),
  44214. default: true
  44215. },
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44220. {
  44221. front: {
  44222. height: math.unit(5, "feet"),
  44223. name: "Front",
  44224. image: {
  44225. source: "./media/characters/epiglottis/front.svg",
  44226. extra: 923/849,
  44227. bottom: 17/940
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Original Size",
  44234. height: math.unit(10, "inches")
  44235. },
  44236. {
  44237. name: "Human Size",
  44238. height: math.unit(5, "feet"),
  44239. default: true
  44240. },
  44241. {
  44242. name: "Big",
  44243. height: math.unit(25, "feet")
  44244. },
  44245. {
  44246. name: "Bigger",
  44247. height: math.unit(50, "feet")
  44248. },
  44249. {
  44250. name: "oh lawd",
  44251. height: math.unit(75, "feet")
  44252. },
  44253. ]
  44254. ))
  44255. characterMakers.push(() => makeCharacter(
  44256. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44257. {
  44258. front: {
  44259. height: math.unit(2 + 4/12, "feet"),
  44260. weight: math.unit(60, "lb"),
  44261. name: "Front",
  44262. image: {
  44263. source: "./media/characters/lerm/front.svg",
  44264. extra: 796/790,
  44265. bottom: 79/875
  44266. }
  44267. },
  44268. },
  44269. [
  44270. {
  44271. name: "Normal",
  44272. height: math.unit(2 + 4/12, "feet"),
  44273. default: true
  44274. },
  44275. ]
  44276. ))
  44277. characterMakers.push(() => makeCharacter(
  44278. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44279. {
  44280. front: {
  44281. height: math.unit(5.5, "feet"),
  44282. weight: math.unit(130, "lb"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/xena-nebadon/front.svg",
  44286. extra: 1828/1730,
  44287. bottom: 79/1907
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Tiny Puppy",
  44294. height: math.unit(3, "inches")
  44295. },
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(5.5, "feet"),
  44299. default: true
  44300. },
  44301. {
  44302. name: "Lotta Lady",
  44303. height: math.unit(12, "feet")
  44304. },
  44305. {
  44306. name: "Pretty Big",
  44307. height: math.unit(100, "feet")
  44308. },
  44309. {
  44310. name: "Big",
  44311. height: math.unit(500, "feet")
  44312. },
  44313. {
  44314. name: "Skyscraper Toys",
  44315. height: math.unit(2500, "feet")
  44316. },
  44317. {
  44318. name: "Plane Catcher",
  44319. height: math.unit(8, "miles")
  44320. },
  44321. {
  44322. name: "Planet Toys",
  44323. height: math.unit(15, "earths")
  44324. },
  44325. {
  44326. name: "Stardust",
  44327. height: math.unit(0.25, "galaxies")
  44328. },
  44329. {
  44330. name: "Snacks",
  44331. height: math.unit(70, "universes")
  44332. },
  44333. ]
  44334. ))
  44335. characterMakers.push(() => makeCharacter(
  44336. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44337. {
  44338. front: {
  44339. height: math.unit(1.6, "meters"),
  44340. weight: math.unit(60, "kg"),
  44341. name: "Front",
  44342. image: {
  44343. source: "./media/characters/bounty/front.svg",
  44344. extra: 1426/1308,
  44345. bottom: 15/1441
  44346. }
  44347. },
  44348. back: {
  44349. height: math.unit(1.6, "meters"),
  44350. weight: math.unit(60, "kg"),
  44351. name: "Back",
  44352. image: {
  44353. source: "./media/characters/bounty/back.svg",
  44354. extra: 1417/1307,
  44355. bottom: 8/1425
  44356. }
  44357. },
  44358. },
  44359. [
  44360. {
  44361. name: "Normal",
  44362. height: math.unit(1.6, "meters"),
  44363. default: true
  44364. },
  44365. {
  44366. name: "Macro",
  44367. height: math.unit(300, "meters")
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44373. {
  44374. front: {
  44375. height: math.unit(2 + 8/12, "feet"),
  44376. weight: math.unit(15, "lb"),
  44377. name: "Front",
  44378. image: {
  44379. source: "./media/characters/mochi/front.svg",
  44380. extra: 1022/852,
  44381. bottom: 435/1457
  44382. }
  44383. },
  44384. back: {
  44385. height: math.unit(2 + 8/12, "feet"),
  44386. weight: math.unit(15, "lb"),
  44387. name: "Back",
  44388. image: {
  44389. source: "./media/characters/mochi/back.svg",
  44390. extra: 1335/1119,
  44391. bottom: 39/1374
  44392. }
  44393. },
  44394. bird: {
  44395. height: math.unit(2 + 8/12, "feet"),
  44396. weight: math.unit(15, "lb"),
  44397. name: "Bird",
  44398. image: {
  44399. source: "./media/characters/mochi/bird.svg",
  44400. extra: 1251/1113,
  44401. bottom: 178/1429
  44402. }
  44403. },
  44404. kaiju: {
  44405. height: math.unit(154, "feet"),
  44406. weight: math.unit(1e7, "lb"),
  44407. name: "Kaiju",
  44408. image: {
  44409. source: "./media/characters/mochi/kaiju.svg",
  44410. extra: 460/324,
  44411. bottom: 40/500
  44412. }
  44413. },
  44414. head: {
  44415. height: math.unit(1.21, "feet"),
  44416. name: "Head",
  44417. image: {
  44418. source: "./media/characters/mochi/head.svg"
  44419. }
  44420. },
  44421. alternateTail: {
  44422. height: math.unit(2 + 8/12, "feet"),
  44423. weight: math.unit(45, "lb"),
  44424. name: "Alternate Tail",
  44425. image: {
  44426. source: "./media/characters/mochi/alternate-tail.svg",
  44427. extra: 139/76,
  44428. bottom: 45/184
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Micro",
  44435. height: math.unit(2, "inches")
  44436. },
  44437. {
  44438. name: "Normal",
  44439. height: math.unit(2 + 8/12, "feet"),
  44440. default: true
  44441. },
  44442. {
  44443. name: "Macro",
  44444. height: math.unit(106, "feet")
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44450. {
  44451. front: {
  44452. height: math.unit(5.67, "feet"),
  44453. weight: math.unit(135, "lb"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/sarel/front.svg",
  44457. extra: 865/788,
  44458. bottom: 97/962
  44459. }
  44460. },
  44461. back: {
  44462. height: math.unit(5.67, "feet"),
  44463. weight: math.unit(135, "lb"),
  44464. name: "Back",
  44465. image: {
  44466. source: "./media/characters/sarel/back.svg",
  44467. extra: 857/777,
  44468. bottom: 32/889
  44469. }
  44470. },
  44471. chozoan: {
  44472. height: math.unit(5.67, "feet"),
  44473. weight: math.unit(135, "lb"),
  44474. name: "Chozoan",
  44475. image: {
  44476. source: "./media/characters/sarel/chozoan.svg",
  44477. extra: 865/788,
  44478. bottom: 97/962
  44479. }
  44480. },
  44481. current: {
  44482. height: math.unit(5.67, "feet"),
  44483. weight: math.unit(135, "lb"),
  44484. name: "Current",
  44485. image: {
  44486. source: "./media/characters/sarel/current.svg",
  44487. extra: 865/788,
  44488. bottom: 97/962
  44489. }
  44490. },
  44491. head: {
  44492. height: math.unit(1.77, "feet"),
  44493. name: "Head",
  44494. image: {
  44495. source: "./media/characters/sarel/head.svg"
  44496. }
  44497. },
  44498. claws: {
  44499. height: math.unit(1.8, "feet"),
  44500. name: "Claws",
  44501. image: {
  44502. source: "./media/characters/sarel/claws.svg"
  44503. }
  44504. },
  44505. clawsAlt: {
  44506. height: math.unit(1.8, "feet"),
  44507. name: "Claws-alt",
  44508. image: {
  44509. source: "./media/characters/sarel/claws-alt.svg"
  44510. }
  44511. },
  44512. },
  44513. [
  44514. {
  44515. name: "Normal",
  44516. height: math.unit(5.67, "feet"),
  44517. default: true
  44518. },
  44519. ]
  44520. ))
  44521. characterMakers.push(() => makeCharacter(
  44522. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44523. {
  44524. front: {
  44525. height: math.unit(5500, "feet"),
  44526. name: "Front",
  44527. image: {
  44528. source: "./media/characters/alyonia/front.svg",
  44529. extra: 1200/1135,
  44530. bottom: 29/1229
  44531. }
  44532. },
  44533. back: {
  44534. height: math.unit(5500, "feet"),
  44535. name: "Back",
  44536. image: {
  44537. source: "./media/characters/alyonia/back.svg",
  44538. extra: 1205/1138,
  44539. bottom: 10/1215
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Small",
  44546. height: math.unit(10, "feet")
  44547. },
  44548. {
  44549. name: "Macro",
  44550. height: math.unit(500, "feet")
  44551. },
  44552. {
  44553. name: "Mega Macro",
  44554. height: math.unit(5500, "feet"),
  44555. default: true
  44556. },
  44557. {
  44558. name: "Mega Macro+",
  44559. height: math.unit(500000, "feet")
  44560. },
  44561. {
  44562. name: "Giga Macro",
  44563. height: math.unit(3000, "miles")
  44564. },
  44565. {
  44566. name: "Tera Macro",
  44567. height: math.unit(2.8e6, "miles")
  44568. },
  44569. {
  44570. name: "Galactic",
  44571. height: math.unit(120000, "lightyears")
  44572. },
  44573. ]
  44574. ))
  44575. characterMakers.push(() => makeCharacter(
  44576. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44577. {
  44578. werewolf: {
  44579. height: math.unit(8, "feet"),
  44580. weight: math.unit(425, "lb"),
  44581. name: "Werewolf",
  44582. image: {
  44583. source: "./media/characters/autumn/werewolf.svg",
  44584. extra: 2154/2031,
  44585. bottom: 160/2314
  44586. }
  44587. },
  44588. human: {
  44589. height: math.unit(5 + 8/12, "feet"),
  44590. weight: math.unit(150, "lb"),
  44591. name: "Human",
  44592. image: {
  44593. source: "./media/characters/autumn/human.svg",
  44594. extra: 1200/1149,
  44595. bottom: 30/1230
  44596. }
  44597. },
  44598. },
  44599. [
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(8, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(8 + 5/12, "feet"),
  44612. weight: math.unit(825, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/cobalt-charizard/front.svg",
  44616. extra: 1268/1155,
  44617. bottom: 122/1390
  44618. }
  44619. },
  44620. side: {
  44621. height: math.unit(8 + 5/12, "feet"),
  44622. weight: math.unit(825, "lb"),
  44623. name: "Side",
  44624. image: {
  44625. source: "./media/characters/cobalt-charizard/side.svg",
  44626. extra: 1348/1257,
  44627. bottom: 58/1406
  44628. }
  44629. },
  44630. gMax: {
  44631. height: math.unit(134 + 11/12, "feet"),
  44632. name: "G-Max",
  44633. image: {
  44634. source: "./media/characters/cobalt-charizard/g-max.svg",
  44635. extra: 1835/1541,
  44636. bottom: 151/1986
  44637. }
  44638. },
  44639. },
  44640. [
  44641. {
  44642. name: "Normal",
  44643. height: math.unit(8 + 5/12, "feet"),
  44644. default: true
  44645. },
  44646. ]
  44647. ))
  44648. characterMakers.push(() => makeCharacter(
  44649. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44650. {
  44651. front: {
  44652. height: math.unit(6 + 3/12, "feet"),
  44653. weight: math.unit(210, "lb"),
  44654. name: "Front",
  44655. image: {
  44656. source: "./media/characters/stella/front.svg",
  44657. extra: 3549/3335,
  44658. bottom: 51/3600
  44659. }
  44660. },
  44661. },
  44662. [
  44663. {
  44664. name: "Normal",
  44665. height: math.unit(6 + 3/12, "feet"),
  44666. default: true
  44667. },
  44668. ]
  44669. ))
  44670. characterMakers.push(() => makeCharacter(
  44671. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44672. {
  44673. front: {
  44674. height: math.unit(5, "feet"),
  44675. weight: math.unit(90, "lb"),
  44676. name: "Front",
  44677. image: {
  44678. source: "./media/characters/riley-bishop/front.svg",
  44679. extra: 1450/1428,
  44680. bottom: 152/1602
  44681. }
  44682. },
  44683. },
  44684. [
  44685. {
  44686. name: "Normal",
  44687. height: math.unit(5, "feet"),
  44688. default: true
  44689. },
  44690. ]
  44691. ))
  44692. characterMakers.push(() => makeCharacter(
  44693. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44694. {
  44695. side: {
  44696. height: math.unit(8 + 2/12, "feet"),
  44697. weight: math.unit(500, "kg"),
  44698. name: "Side",
  44699. image: {
  44700. source: "./media/characters/theo-arcanine/side.svg",
  44701. extra: 1342/1074,
  44702. bottom: 111/1453
  44703. }
  44704. },
  44705. },
  44706. [
  44707. {
  44708. name: "Normal",
  44709. height: math.unit(8 + 2/12, "feet"),
  44710. default: true
  44711. },
  44712. ]
  44713. ))
  44714. characterMakers.push(() => makeCharacter(
  44715. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44716. {
  44717. front: {
  44718. height: math.unit(4, "feet"),
  44719. name: "Front",
  44720. image: {
  44721. source: "./media/characters/kali/front.svg",
  44722. extra: 1921/1357,
  44723. bottom: 70/1991
  44724. }
  44725. },
  44726. },
  44727. [
  44728. {
  44729. name: "Normal",
  44730. height: math.unit(4, "feet"),
  44731. default: true
  44732. },
  44733. {
  44734. name: "Macro",
  44735. height: math.unit(32, "meters")
  44736. },
  44737. {
  44738. name: "Macro+",
  44739. height: math.unit(150, "meters")
  44740. },
  44741. {
  44742. name: "Megamacro",
  44743. height: math.unit(7500, "meters")
  44744. },
  44745. {
  44746. name: "Megamacro+",
  44747. height: math.unit(80, "kilometers")
  44748. },
  44749. ]
  44750. ))
  44751. characterMakers.push(() => makeCharacter(
  44752. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44753. {
  44754. side: {
  44755. height: math.unit(5 + 11/12, "feet"),
  44756. weight: math.unit(236, "lb"),
  44757. name: "Side",
  44758. image: {
  44759. source: "./media/characters/gapp/side.svg",
  44760. extra: 775/340,
  44761. bottom: 58/833
  44762. }
  44763. },
  44764. mouth: {
  44765. height: math.unit(2.98, "feet"),
  44766. name: "Mouth",
  44767. image: {
  44768. source: "./media/characters/gapp/mouth.svg"
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Normal",
  44775. height: math.unit(5 + 1/12, "feet"),
  44776. default: true
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44782. {
  44783. front: {
  44784. height: math.unit(6, "feet"),
  44785. name: "Front",
  44786. image: {
  44787. source: "./media/characters/persephone/front.svg",
  44788. extra: 1895/1717,
  44789. bottom: 96/1991
  44790. }
  44791. },
  44792. back: {
  44793. height: math.unit(6, "feet"),
  44794. name: "Back",
  44795. image: {
  44796. source: "./media/characters/persephone/back.svg",
  44797. extra: 1868/1679,
  44798. bottom: 26/1894
  44799. }
  44800. },
  44801. casual: {
  44802. height: math.unit(6, "feet"),
  44803. name: "Casual",
  44804. image: {
  44805. source: "./media/characters/persephone/casual.svg",
  44806. extra: 1713/1541,
  44807. bottom: 76/1789
  44808. }
  44809. },
  44810. },
  44811. [
  44812. {
  44813. name: "Human Size",
  44814. height: math.unit(6, "feet")
  44815. },
  44816. {
  44817. name: "Big Steppy",
  44818. height: math.unit(600, "meters"),
  44819. default: true
  44820. },
  44821. {
  44822. name: "Galaxy Brain",
  44823. height: math.unit(1, "zettameter")
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(1.85, "meters"),
  44832. name: "Front",
  44833. image: {
  44834. source: "./media/characters/riley-foxthing/front.svg",
  44835. extra: 1495/1354,
  44836. bottom: 122/1617
  44837. }
  44838. },
  44839. frontAlt: {
  44840. height: math.unit(1.85, "meters"),
  44841. name: "Front (Alt)",
  44842. image: {
  44843. source: "./media/characters/riley-foxthing/front-alt.svg",
  44844. extra: 1572/1389,
  44845. bottom: 116/1688
  44846. }
  44847. },
  44848. },
  44849. [
  44850. {
  44851. name: "Normal Sized",
  44852. height: math.unit(1.85, "meters"),
  44853. default: true
  44854. },
  44855. {
  44856. name: "Quite Sizable",
  44857. height: math.unit(5, "meters")
  44858. },
  44859. {
  44860. name: "Rather Large",
  44861. height: math.unit(20, "meters")
  44862. },
  44863. {
  44864. name: "Macro",
  44865. height: math.unit(450, "meters")
  44866. },
  44867. {
  44868. name: "Giga",
  44869. height: math.unit(5, "km")
  44870. },
  44871. ]
  44872. ))
  44873. characterMakers.push(() => makeCharacter(
  44874. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44875. {
  44876. front: {
  44877. height: math.unit(6, "feet"),
  44878. weight: math.unit(200, "lb"),
  44879. name: "Front",
  44880. image: {
  44881. source: "./media/characters/blizzard/front.svg",
  44882. extra: 1136/990,
  44883. bottom: 136/1272
  44884. }
  44885. },
  44886. back: {
  44887. height: math.unit(6, "feet"),
  44888. weight: math.unit(200, "lb"),
  44889. name: "Back",
  44890. image: {
  44891. source: "./media/characters/blizzard/back.svg",
  44892. extra: 1175/1034,
  44893. bottom: 97/1272
  44894. }
  44895. },
  44896. sitting: {
  44897. height: math.unit(3.725, "feet"),
  44898. weight: math.unit(200, "lb"),
  44899. name: "Sitting",
  44900. image: {
  44901. source: "./media/characters/blizzard/sitting.svg",
  44902. extra: 581/485,
  44903. bottom: 90/671
  44904. }
  44905. },
  44906. frontWizard: {
  44907. height: math.unit(7.9, "feet"),
  44908. weight: math.unit(200, "lb"),
  44909. name: "Front (Wizard)",
  44910. image: {
  44911. source: "./media/characters/blizzard/front-wizard.svg"
  44912. }
  44913. },
  44914. backWizard: {
  44915. height: math.unit(7.9, "feet"),
  44916. weight: math.unit(200, "lb"),
  44917. name: "Back (Wizard)",
  44918. image: {
  44919. source: "./media/characters/blizzard/back-wizard.svg"
  44920. }
  44921. },
  44922. frontNsfw: {
  44923. height: math.unit(6, "feet"),
  44924. weight: math.unit(200, "lb"),
  44925. name: "Front (NSFW)",
  44926. image: {
  44927. source: "./media/characters/blizzard/front-nsfw.svg",
  44928. extra: 1136/990,
  44929. bottom: 136/1272
  44930. }
  44931. },
  44932. backNsfw: {
  44933. height: math.unit(6, "feet"),
  44934. weight: math.unit(200, "lb"),
  44935. name: "Back (NSFW)",
  44936. image: {
  44937. source: "./media/characters/blizzard/back-nsfw.svg",
  44938. extra: 1175/1034,
  44939. bottom: 97/1272
  44940. }
  44941. },
  44942. sittingNsfw: {
  44943. height: math.unit(3.725, "feet"),
  44944. weight: math.unit(200, "lb"),
  44945. name: "Sitting (NSFW)",
  44946. image: {
  44947. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44948. extra: 581/485,
  44949. bottom: 90/671
  44950. }
  44951. },
  44952. wizardFrontNsfw: {
  44953. height: math.unit(7.9, "feet"),
  44954. weight: math.unit(200, "lb"),
  44955. name: "Wizard (Front, NSFW)",
  44956. image: {
  44957. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44958. }
  44959. },
  44960. },
  44961. [
  44962. {
  44963. name: "Normal",
  44964. height: math.unit(6, "feet"),
  44965. default: true
  44966. },
  44967. ]
  44968. ))
  44969. characterMakers.push(() => makeCharacter(
  44970. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44971. {
  44972. front: {
  44973. height: math.unit(5 + 2/12, "feet"),
  44974. name: "Front",
  44975. image: {
  44976. source: "./media/characters/lumi/front.svg",
  44977. extra: 1328/1268,
  44978. bottom: 103/1431
  44979. }
  44980. },
  44981. back: {
  44982. height: math.unit(5 + 2/12, "feet"),
  44983. name: "Back",
  44984. image: {
  44985. source: "./media/characters/lumi/back.svg",
  44986. extra: 1381/1327,
  44987. bottom: 43/1424
  44988. }
  44989. },
  44990. },
  44991. [
  44992. {
  44993. name: "Normal",
  44994. height: math.unit(5 + 2/12, "feet"),
  44995. default: true
  44996. },
  44997. ]
  44998. ))
  44999. characterMakers.push(() => makeCharacter(
  45000. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45001. {
  45002. front: {
  45003. height: math.unit(5 + 9/12, "feet"),
  45004. name: "Front",
  45005. image: {
  45006. source: "./media/characters/aliya-cotton/front.svg",
  45007. extra: 577/564,
  45008. bottom: 29/606
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Normal",
  45015. height: math.unit(5 + 9/12, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(2.7, "meters"),
  45025. weight: math.unit(25000, "lb"),
  45026. name: "Front",
  45027. image: {
  45028. source: "./media/characters/noah-luxray/front.svg",
  45029. extra: 1644/825,
  45030. bottom: 339/1983
  45031. }
  45032. },
  45033. side: {
  45034. height: math.unit(2.97, "meters"),
  45035. weight: math.unit(25000, "lb"),
  45036. name: "Side",
  45037. image: {
  45038. source: "./media/characters/noah-luxray/side.svg",
  45039. extra: 1319/650,
  45040. bottom: 163/1482
  45041. }
  45042. },
  45043. dick: {
  45044. height: math.unit(7.4, "feet"),
  45045. weight: math.unit(2500, "lb"),
  45046. name: "Dick",
  45047. image: {
  45048. source: "./media/characters/noah-luxray/dick.svg"
  45049. }
  45050. },
  45051. dickAlt: {
  45052. height: math.unit(10.83, "feet"),
  45053. weight: math.unit(2500, "lb"),
  45054. name: "Dick-alt",
  45055. image: {
  45056. source: "./media/characters/noah-luxray/dick-alt.svg"
  45057. }
  45058. },
  45059. },
  45060. [
  45061. {
  45062. name: "BIG",
  45063. height: math.unit(2.7, "meters"),
  45064. default: true
  45065. },
  45066. ]
  45067. ))
  45068. characterMakers.push(() => makeCharacter(
  45069. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45070. {
  45071. standing: {
  45072. height: math.unit(183, "cm"),
  45073. weight: math.unit(68, "kg"),
  45074. name: "Standing",
  45075. image: {
  45076. source: "./media/characters/arion/standing.svg",
  45077. extra: 1869/1807,
  45078. bottom: 93/1962
  45079. }
  45080. },
  45081. reclining: {
  45082. height: math.unit(70.5, "cm"),
  45083. weight: math.unit(68, "lb"),
  45084. name: "Reclining",
  45085. image: {
  45086. source: "./media/characters/arion/reclining.svg",
  45087. extra: 937/870,
  45088. bottom: 63/1000
  45089. }
  45090. },
  45091. },
  45092. [
  45093. {
  45094. name: "Colossus Size, Low",
  45095. height: math.unit(33, "meters"),
  45096. default: true
  45097. },
  45098. {
  45099. name: "Colossus Size, Mid",
  45100. height: math.unit(52, "meters")
  45101. },
  45102. {
  45103. name: "Colossus Size, High",
  45104. height: math.unit(60, "meters")
  45105. },
  45106. {
  45107. name: "Titan Size, Low",
  45108. height: math.unit(91, "meters"),
  45109. },
  45110. {
  45111. name: "Titan Size, Mid",
  45112. height: math.unit(122, "meters")
  45113. },
  45114. {
  45115. name: "Titan Size, High",
  45116. height: math.unit(162, "meters")
  45117. },
  45118. ]
  45119. ))
  45120. characterMakers.push(() => makeCharacter(
  45121. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45122. {
  45123. front: {
  45124. height: math.unit(53, "meters"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/stellar-marbey/front.svg",
  45128. extra: 1913/1805,
  45129. bottom: 92/2005
  45130. }
  45131. },
  45132. back: {
  45133. height: math.unit(53, "meters"),
  45134. name: "Back",
  45135. image: {
  45136. source: "./media/characters/stellar-marbey/back.svg",
  45137. extra: 1960/1851,
  45138. bottom: 28/1988
  45139. }
  45140. },
  45141. mouth: {
  45142. height: math.unit(3.5, "meters"),
  45143. name: "Mouth",
  45144. image: {
  45145. source: "./media/characters/stellar-marbey/mouth.svg"
  45146. }
  45147. },
  45148. },
  45149. [
  45150. {
  45151. name: "Macro",
  45152. height: math.unit(53, "meters"),
  45153. default: true
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(8 + 1/12, "feet"),
  45162. weight: math.unit(233, "lb"),
  45163. name: "Front",
  45164. image: {
  45165. source: "./media/characters/matsu/front.svg",
  45166. extra: 832/772,
  45167. bottom: 40/872
  45168. }
  45169. },
  45170. back: {
  45171. height: math.unit(8 + 1/12, "feet"),
  45172. weight: math.unit(233, "lb"),
  45173. name: "Back",
  45174. image: {
  45175. source: "./media/characters/matsu/back.svg",
  45176. extra: 839/780,
  45177. bottom: 47/886
  45178. }
  45179. },
  45180. },
  45181. [
  45182. {
  45183. name: "Normal",
  45184. height: math.unit(8 + 1/12, "feet"),
  45185. default: true
  45186. },
  45187. ]
  45188. ))
  45189. characterMakers.push(() => makeCharacter(
  45190. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45191. {
  45192. front: {
  45193. height: math.unit(4, "feet"),
  45194. weight: math.unit(148, "lb"),
  45195. name: "Front",
  45196. image: {
  45197. source: "./media/characters/thiz/front.svg",
  45198. extra: 1913/1748,
  45199. bottom: 62/1975
  45200. }
  45201. },
  45202. },
  45203. [
  45204. {
  45205. name: "Normal",
  45206. height: math.unit(4, "feet"),
  45207. default: true
  45208. },
  45209. ]
  45210. ))
  45211. characterMakers.push(() => makeCharacter(
  45212. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45213. {
  45214. front: {
  45215. height: math.unit(7 + 6/12, "feet"),
  45216. weight: math.unit(267, "lb"),
  45217. name: "Front",
  45218. image: {
  45219. source: "./media/characters/marcel/front.svg",
  45220. extra: 1221/1096,
  45221. bottom: 76/1297
  45222. }
  45223. },
  45224. },
  45225. [
  45226. {
  45227. name: "Normal",
  45228. height: math.unit(7 + 6/12, "feet"),
  45229. default: true
  45230. },
  45231. ]
  45232. ))
  45233. characterMakers.push(() => makeCharacter(
  45234. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45235. {
  45236. side: {
  45237. height: math.unit(42, "meters"),
  45238. name: "Side",
  45239. image: {
  45240. source: "./media/characters/flake/side.svg",
  45241. extra: 1525/1306,
  45242. bottom: 209/1734
  45243. }
  45244. },
  45245. },
  45246. [
  45247. {
  45248. name: "Normal",
  45249. height: math.unit(42, "meters"),
  45250. default: true
  45251. },
  45252. ]
  45253. ))
  45254. characterMakers.push(() => makeCharacter(
  45255. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45256. {
  45257. dressed: {
  45258. height: math.unit(6 + 4/12, "feet"),
  45259. weight: math.unit(520, "lb"),
  45260. name: "Dressed",
  45261. image: {
  45262. source: "./media/characters/someonne/dressed.svg",
  45263. extra: 1020/1010,
  45264. bottom: 178/1198
  45265. }
  45266. },
  45267. undressed: {
  45268. height: math.unit(6 + 4/12, "feet"),
  45269. weight: math.unit(520, "lb"),
  45270. name: "Undressed",
  45271. image: {
  45272. source: "./media/characters/someonne/undressed.svg",
  45273. extra: 1019/1014,
  45274. bottom: 169/1188
  45275. }
  45276. },
  45277. },
  45278. [
  45279. {
  45280. name: "Normal",
  45281. height: math.unit(6 + 4/12, "feet"),
  45282. default: true
  45283. },
  45284. ]
  45285. ))
  45286. characterMakers.push(() => makeCharacter(
  45287. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45288. {
  45289. front: {
  45290. height: math.unit(3, "feet"),
  45291. weight: math.unit(30, "lb"),
  45292. name: "Front",
  45293. image: {
  45294. source: "./media/characters/till/front.svg",
  45295. extra: 892/823,
  45296. bottom: 55/947
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Normal",
  45303. height: math.unit(3, "feet"),
  45304. default: true
  45305. },
  45306. ]
  45307. ))
  45308. characterMakers.push(() => makeCharacter(
  45309. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45310. {
  45311. front: {
  45312. height: math.unit(9 + 8/12, "feet"),
  45313. weight: math.unit(800, "lb"),
  45314. name: "Front",
  45315. image: {
  45316. source: "./media/characters/sydney-heki/front.svg",
  45317. extra: 1360/1300,
  45318. bottom: 22/1382
  45319. }
  45320. },
  45321. back: {
  45322. height: math.unit(9 + 8/12, "feet"),
  45323. weight: math.unit(800, "lb"),
  45324. name: "Back",
  45325. image: {
  45326. source: "./media/characters/sydney-heki/back.svg",
  45327. extra: 1356/1293,
  45328. bottom: 12/1368
  45329. }
  45330. },
  45331. frontDressed: {
  45332. height: math.unit(9 + 8/12, "feet"),
  45333. weight: math.unit(800, "lb"),
  45334. name: "Front-dressed",
  45335. image: {
  45336. source: "./media/characters/sydney-heki/front-dressed.svg",
  45337. extra: 1360/1300,
  45338. bottom: 22/1382
  45339. }
  45340. },
  45341. },
  45342. [
  45343. {
  45344. name: "Normal",
  45345. height: math.unit(9 + 8/12, "feet"),
  45346. default: true
  45347. },
  45348. {
  45349. name: "Macro",
  45350. height: math.unit(500, "feet")
  45351. },
  45352. {
  45353. name: "Megamacro",
  45354. height: math.unit(3.6, "miles")
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(200, "cm"),
  45363. weight: math.unit(250, "lb"),
  45364. name: "Front",
  45365. image: {
  45366. source: "./media/characters/fowler-karlsson/front.svg",
  45367. extra: 897/845,
  45368. bottom: 123/1020
  45369. }
  45370. },
  45371. back: {
  45372. height: math.unit(200, "cm"),
  45373. weight: math.unit(250, "lb"),
  45374. name: "Back",
  45375. image: {
  45376. source: "./media/characters/fowler-karlsson/back.svg",
  45377. extra: 999/944,
  45378. bottom: 26/1025
  45379. }
  45380. },
  45381. dick: {
  45382. height: math.unit(1.92, "feet"),
  45383. weight: math.unit(150, "lb"),
  45384. name: "Dick",
  45385. image: {
  45386. source: "./media/characters/fowler-karlsson/dick.svg"
  45387. }
  45388. },
  45389. },
  45390. [
  45391. {
  45392. name: "Normal",
  45393. height: math.unit(200, "cm"),
  45394. default: true
  45395. },
  45396. {
  45397. name: "Smaller Macro",
  45398. height: math.unit(90, "m")
  45399. },
  45400. {
  45401. name: "Macro",
  45402. height: math.unit(150, "m")
  45403. },
  45404. {
  45405. name: "Bigger Macro",
  45406. height: math.unit(300, "m")
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45412. {
  45413. side: {
  45414. height: math.unit(8 + 2/12, "feet"),
  45415. weight: math.unit(1, "tonne"),
  45416. name: "Side",
  45417. image: {
  45418. source: "./media/characters/rylide/side.svg",
  45419. extra: 1318/1034,
  45420. bottom: 106/1424
  45421. }
  45422. },
  45423. sitting: {
  45424. height: math.unit(303, "cm"),
  45425. weight: math.unit(1, "tonne"),
  45426. name: "Sitting",
  45427. image: {
  45428. source: "./media/characters/rylide/sitting.svg",
  45429. extra: 1303/1103,
  45430. bottom: 36/1339
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(8 + 2/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45444. {
  45445. front: {
  45446. height: math.unit(5 + 10/12, "feet"),
  45447. weight: math.unit(160, "lb"),
  45448. name: "Front",
  45449. image: {
  45450. source: "./media/characters/pudask/front.svg",
  45451. extra: 1616/1590,
  45452. bottom: 161/1777
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Ferret Height",
  45459. height: math.unit(2 + 5/12, "feet")
  45460. },
  45461. {
  45462. name: "Canon Height",
  45463. height: math.unit(5 + 10/12, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(3 + 6/12, "feet"),
  45473. weight: math.unit(60, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/ramita/front.svg",
  45477. extra: 1402/1232,
  45478. bottom: 62/1464
  45479. }
  45480. },
  45481. dressed: {
  45482. height: math.unit(3 + 6/12, "feet"),
  45483. weight: math.unit(60, "lb"),
  45484. name: "Dressed",
  45485. image: {
  45486. source: "./media/characters/ramita/dressed.svg",
  45487. extra: 1534/1249,
  45488. bottom: 50/1584
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Normal",
  45495. height: math.unit(3 + 6/12, "feet"),
  45496. default: true
  45497. },
  45498. ]
  45499. ))
  45500. characterMakers.push(() => makeCharacter(
  45501. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45502. {
  45503. front: {
  45504. height: math.unit(8, "feet"),
  45505. name: "Front",
  45506. image: {
  45507. source: "./media/characters/ark/front.svg",
  45508. extra: 772/693,
  45509. bottom: 45/817
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(8, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(6, "feet"),
  45526. weight: math.unit(250, "lb"),
  45527. volume: math.unit(5/8, "gallons"),
  45528. name: "Front",
  45529. image: {
  45530. source: "./media/characters/ludwig-horn/front.svg",
  45531. extra: 1782/1635,
  45532. bottom: 96/1878
  45533. }
  45534. },
  45535. back: {
  45536. height: math.unit(6, "feet"),
  45537. weight: math.unit(250, "lb"),
  45538. volume: math.unit(5/8, "gallons"),
  45539. name: "Back",
  45540. image: {
  45541. source: "./media/characters/ludwig-horn/back.svg",
  45542. extra: 1874/1729,
  45543. bottom: 27/1901
  45544. }
  45545. },
  45546. dick: {
  45547. height: math.unit(1.05, "feet"),
  45548. weight: math.unit(15, "lb"),
  45549. volume: math.unit(5/8, "gallons"),
  45550. name: "Dick",
  45551. image: {
  45552. source: "./media/characters/ludwig-horn/dick.svg"
  45553. }
  45554. },
  45555. },
  45556. [
  45557. {
  45558. name: "Small",
  45559. height: math.unit(6, "feet")
  45560. },
  45561. {
  45562. name: "Typical",
  45563. height: math.unit(12, "feet"),
  45564. default: true
  45565. },
  45566. {
  45567. name: "Building",
  45568. height: math.unit(80, "feet")
  45569. },
  45570. {
  45571. name: "Town",
  45572. height: math.unit(800, "feet")
  45573. },
  45574. {
  45575. name: "Kingdom",
  45576. height: math.unit(80000, "feet")
  45577. },
  45578. {
  45579. name: "Planet",
  45580. height: math.unit(8000000, "feet")
  45581. },
  45582. {
  45583. name: "Universe",
  45584. height: math.unit(8000000000, "feet")
  45585. },
  45586. {
  45587. name: "Transcended",
  45588. height: math.unit(8e27, "feet")
  45589. },
  45590. ]
  45591. ))
  45592. characterMakers.push(() => makeCharacter(
  45593. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45594. {
  45595. front: {
  45596. height: math.unit(5, "feet"),
  45597. weight: math.unit(50, "kg"),
  45598. name: "Front",
  45599. image: {
  45600. source: "./media/characters/biot-avery/front.svg",
  45601. extra: 1295/1232,
  45602. bottom: 86/1381
  45603. }
  45604. },
  45605. },
  45606. [
  45607. {
  45608. name: "Normal",
  45609. height: math.unit(5, "feet"),
  45610. default: true
  45611. },
  45612. ]
  45613. ))
  45614. characterMakers.push(() => makeCharacter(
  45615. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45616. {
  45617. front: {
  45618. height: math.unit(6, "feet"),
  45619. name: "Front",
  45620. image: {
  45621. source: "./media/characters/kitsune-kiro/front.svg",
  45622. extra: 1270/1158,
  45623. bottom: 42/1312
  45624. }
  45625. },
  45626. frontAlt: {
  45627. height: math.unit(6, "feet"),
  45628. name: "Front-alt",
  45629. image: {
  45630. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45631. extra: 1130/1081,
  45632. bottom: 36/1166
  45633. }
  45634. },
  45635. },
  45636. [
  45637. {
  45638. name: "Smol",
  45639. height: math.unit(3, "feet")
  45640. },
  45641. {
  45642. name: "Normal",
  45643. height: math.unit(6, "feet"),
  45644. default: true
  45645. },
  45646. ]
  45647. ))
  45648. characterMakers.push(() => makeCharacter(
  45649. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45650. {
  45651. front: {
  45652. height: math.unit(6, "feet"),
  45653. weight: math.unit(125, "lb"),
  45654. name: "Front",
  45655. image: {
  45656. source: "./media/characters/jack-thatcher/front.svg",
  45657. extra: 1474/1370,
  45658. bottom: 26/1500
  45659. }
  45660. },
  45661. back: {
  45662. height: math.unit(6, "feet"),
  45663. weight: math.unit(125, "lb"),
  45664. name: "Back",
  45665. image: {
  45666. source: "./media/characters/jack-thatcher/back.svg",
  45667. extra: 1489/1384,
  45668. bottom: 18/1507
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(6, "feet"),
  45676. default: true
  45677. },
  45678. {
  45679. name: "Macro",
  45680. height: math.unit(75, "feet")
  45681. },
  45682. {
  45683. name: "Macro-er",
  45684. height: math.unit(250, "feet")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(7, "feet"),
  45693. weight: math.unit(110, "kg"),
  45694. name: "Front",
  45695. image: {
  45696. source: "./media/characters/max-hyper/front.svg",
  45697. extra: 1969/1881,
  45698. bottom: 49/2018
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(7, "feet"),
  45706. default: true
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5 + 5/12, "feet"),
  45715. weight: math.unit(160, "lb"),
  45716. name: "Front",
  45717. image: {
  45718. source: "./media/characters/spook/front.svg",
  45719. extra: 794/791,
  45720. bottom: 54/848
  45721. }
  45722. },
  45723. back: {
  45724. height: math.unit(5 + 5/12, "feet"),
  45725. weight: math.unit(160, "lb"),
  45726. name: "Back",
  45727. image: {
  45728. source: "./media/characters/spook/back.svg",
  45729. extra: 812/798,
  45730. bottom: 32/844
  45731. }
  45732. },
  45733. },
  45734. [
  45735. {
  45736. name: "Normal",
  45737. height: math.unit(5 + 5/12, "feet"),
  45738. default: true
  45739. },
  45740. ]
  45741. ))
  45742. characterMakers.push(() => makeCharacter(
  45743. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45744. {
  45745. front: {
  45746. height: math.unit(18, "feet"),
  45747. name: "Front",
  45748. image: {
  45749. source: "./media/characters/xeaduulix/front.svg",
  45750. extra: 1380/1166,
  45751. bottom: 110/1490
  45752. }
  45753. },
  45754. back: {
  45755. height: math.unit(18, "feet"),
  45756. name: "Back",
  45757. image: {
  45758. source: "./media/characters/xeaduulix/back.svg",
  45759. extra: 1592/1170,
  45760. bottom: 128/1720
  45761. }
  45762. },
  45763. frontNsfw: {
  45764. height: math.unit(18, "feet"),
  45765. name: "Front (NSFW)",
  45766. image: {
  45767. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45768. extra: 1380/1166,
  45769. bottom: 110/1490
  45770. }
  45771. },
  45772. backNsfw: {
  45773. height: math.unit(18, "feet"),
  45774. name: "Back (NSFW)",
  45775. image: {
  45776. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45777. extra: 1592/1170,
  45778. bottom: 128/1720
  45779. }
  45780. },
  45781. },
  45782. [
  45783. {
  45784. name: "Normal",
  45785. height: math.unit(18, "feet"),
  45786. default: true
  45787. },
  45788. ]
  45789. ))
  45790. characterMakers.push(() => makeCharacter(
  45791. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45792. {
  45793. spreadWings: {
  45794. height: math.unit(20, "feet"),
  45795. name: "Spread Wings",
  45796. image: {
  45797. source: "./media/characters/fledge/spread-wings.svg",
  45798. extra: 693/635,
  45799. bottom: 26/719
  45800. }
  45801. },
  45802. front: {
  45803. height: math.unit(20, "feet"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/fledge/front.svg",
  45807. extra: 684/637,
  45808. bottom: 18/702
  45809. }
  45810. },
  45811. frontAlt: {
  45812. height: math.unit(20, "feet"),
  45813. name: "Front (Alt)",
  45814. image: {
  45815. source: "./media/characters/fledge/front-alt.svg",
  45816. extra: 708/664,
  45817. bottom: 13/721
  45818. }
  45819. },
  45820. back: {
  45821. height: math.unit(20, "feet"),
  45822. name: "Back",
  45823. image: {
  45824. source: "./media/characters/fledge/back.svg",
  45825. extra: 718/634,
  45826. bottom: 22/740
  45827. }
  45828. },
  45829. head: {
  45830. height: math.unit(5.55, "feet"),
  45831. name: "Head",
  45832. image: {
  45833. source: "./media/characters/fledge/head.svg"
  45834. }
  45835. },
  45836. headAlt: {
  45837. height: math.unit(5.1, "feet"),
  45838. name: "Head (Alt)",
  45839. image: {
  45840. source: "./media/characters/fledge/head-alt.svg"
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Small",
  45847. height: math.unit(6 + 2/12, "feet")
  45848. },
  45849. {
  45850. name: "Big",
  45851. height: math.unit(20, "feet"),
  45852. default: true
  45853. },
  45854. {
  45855. name: "Giant",
  45856. height: math.unit(100, "feet")
  45857. },
  45858. {
  45859. name: "Macro",
  45860. height: math.unit(200, "feet")
  45861. },
  45862. ]
  45863. ))
  45864. characterMakers.push(() => makeCharacter(
  45865. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45866. {
  45867. front: {
  45868. height: math.unit(1, "meter"),
  45869. name: "Front",
  45870. image: {
  45871. source: "./media/characters/atlas-morenai/front.svg",
  45872. extra: 1275/1043,
  45873. bottom: 19/1294
  45874. }
  45875. },
  45876. back: {
  45877. height: math.unit(1, "meter"),
  45878. name: "Back",
  45879. image: {
  45880. source: "./media/characters/atlas-morenai/back.svg",
  45881. extra: 1141/1001,
  45882. bottom: 25/1166
  45883. }
  45884. },
  45885. },
  45886. [
  45887. {
  45888. name: "Normal",
  45889. height: math.unit(1, "meter"),
  45890. default: true
  45891. },
  45892. {
  45893. name: "Magic-Infused",
  45894. height: math.unit(5, "meters")
  45895. },
  45896. ]
  45897. ))
  45898. characterMakers.push(() => makeCharacter(
  45899. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45900. {
  45901. front: {
  45902. height: math.unit(5, "meters"),
  45903. name: "Front",
  45904. image: {
  45905. source: "./media/characters/cintia/front.svg",
  45906. extra: 1312/1228,
  45907. bottom: 38/1350
  45908. }
  45909. },
  45910. back: {
  45911. height: math.unit(5, "meters"),
  45912. name: "Back",
  45913. image: {
  45914. source: "./media/characters/cintia/back.svg",
  45915. extra: 1260/1166,
  45916. bottom: 98/1358
  45917. }
  45918. },
  45919. frontDick: {
  45920. height: math.unit(5, "meters"),
  45921. name: "Front (Dick)",
  45922. image: {
  45923. source: "./media/characters/cintia/front-dick.svg",
  45924. extra: 1312/1228,
  45925. bottom: 38/1350
  45926. }
  45927. },
  45928. backDick: {
  45929. height: math.unit(5, "meters"),
  45930. name: "Back (Dick)",
  45931. image: {
  45932. source: "./media/characters/cintia/back-dick.svg",
  45933. extra: 1260/1166,
  45934. bottom: 98/1358
  45935. }
  45936. },
  45937. bust: {
  45938. height: math.unit(1.97, "meters"),
  45939. name: "Bust",
  45940. image: {
  45941. source: "./media/characters/cintia/bust.svg",
  45942. extra: 617/565,
  45943. bottom: 0/617
  45944. }
  45945. },
  45946. },
  45947. [
  45948. {
  45949. name: "Normal",
  45950. height: math.unit(5, "meters"),
  45951. default: true
  45952. },
  45953. ]
  45954. ))
  45955. characterMakers.push(() => makeCharacter(
  45956. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45957. {
  45958. side: {
  45959. height: math.unit(100, "feet"),
  45960. name: "Side",
  45961. image: {
  45962. source: "./media/characters/denora/side.svg",
  45963. extra: 875/803,
  45964. bottom: 9/884
  45965. }
  45966. },
  45967. },
  45968. [
  45969. {
  45970. name: "Standard",
  45971. height: math.unit(100, "feet"),
  45972. default: true
  45973. },
  45974. {
  45975. name: "Grand",
  45976. height: math.unit(1000, "feet")
  45977. },
  45978. {
  45979. name: "Conquering",
  45980. height: math.unit(10000, "feet")
  45981. },
  45982. ]
  45983. ))
  45984. characterMakers.push(() => makeCharacter(
  45985. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45986. {
  45987. dressed: {
  45988. height: math.unit(8 + 5/12, "feet"),
  45989. weight: math.unit(700, "lb"),
  45990. name: "Dressed",
  45991. image: {
  45992. source: "./media/characters/kiva/dressed.svg",
  45993. extra: 1102/1055,
  45994. bottom: 60/1162
  45995. }
  45996. },
  45997. nude: {
  45998. height: math.unit(8 + 5/12, "feet"),
  45999. weight: math.unit(700, "lb"),
  46000. name: "Nude",
  46001. image: {
  46002. source: "./media/characters/kiva/nude.svg",
  46003. extra: 1102/1055,
  46004. bottom: 60/1162
  46005. }
  46006. },
  46007. },
  46008. [
  46009. {
  46010. name: "Base Height",
  46011. height: math.unit(8 + 5/12, "feet"),
  46012. default: true
  46013. },
  46014. {
  46015. name: "Macro",
  46016. height: math.unit(100, "feet")
  46017. },
  46018. {
  46019. name: "Max",
  46020. height: math.unit(3280, "feet")
  46021. },
  46022. ]
  46023. ))
  46024. characterMakers.push(() => makeCharacter(
  46025. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46026. {
  46027. front: {
  46028. height: math.unit(6 + 8/12, "feet"),
  46029. weight: math.unit(250, "lb"),
  46030. name: "Front",
  46031. image: {
  46032. source: "./media/characters/ztragon/front.svg",
  46033. extra: 1825/1684,
  46034. bottom: 98/1923
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(6 + 8/12, "feet"),
  46042. default: true
  46043. },
  46044. {
  46045. name: "Macro",
  46046. height: math.unit(80, "feet")
  46047. },
  46048. ]
  46049. ))
  46050. characterMakers.push(() => makeCharacter(
  46051. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46052. {
  46053. front: {
  46054. height: math.unit(10.4, "feet"),
  46055. weight: math.unit(2, "tons"),
  46056. name: "Front",
  46057. image: {
  46058. source: "./media/characters/yesenia/front.svg",
  46059. extra: 1479/1474,
  46060. bottom: 233/1712
  46061. }
  46062. },
  46063. },
  46064. [
  46065. {
  46066. name: "Normal",
  46067. height: math.unit(10.4, "feet"),
  46068. default: true
  46069. },
  46070. ]
  46071. ))
  46072. characterMakers.push(() => makeCharacter(
  46073. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46074. {
  46075. normal: {
  46076. height: math.unit(6 + 1/12, "feet"),
  46077. weight: math.unit(180, "lb"),
  46078. name: "Normal",
  46079. image: {
  46080. source: "./media/characters/leanne-lycheborne/normal.svg",
  46081. extra: 1748/1660,
  46082. bottom: 98/1846
  46083. }
  46084. },
  46085. were: {
  46086. height: math.unit(12, "feet"),
  46087. weight: math.unit(1600, "lb"),
  46088. name: "Were",
  46089. image: {
  46090. source: "./media/characters/leanne-lycheborne/were.svg",
  46091. extra: 1485/1432,
  46092. bottom: 66/1551
  46093. }
  46094. },
  46095. },
  46096. [
  46097. {
  46098. name: "Normal",
  46099. height: math.unit(6 + 1/12, "feet"),
  46100. default: true
  46101. },
  46102. ]
  46103. ))
  46104. characterMakers.push(() => makeCharacter(
  46105. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46106. {
  46107. side: {
  46108. height: math.unit(13, "feet"),
  46109. name: "Side",
  46110. image: {
  46111. source: "./media/characters/kira-tyler/side.svg",
  46112. extra: 693/393,
  46113. bottom: 58/751
  46114. }
  46115. },
  46116. },
  46117. [
  46118. {
  46119. name: "Normal",
  46120. height: math.unit(13, "feet"),
  46121. default: true
  46122. },
  46123. ]
  46124. ))
  46125. characterMakers.push(() => makeCharacter(
  46126. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46127. {
  46128. front: {
  46129. height: math.unit(10.3, "feet"),
  46130. weight: math.unit(150, "lb"),
  46131. name: "Front",
  46132. image: {
  46133. source: "./media/characters/blaze/front.svg",
  46134. extra: 1378/1286,
  46135. bottom: 172/1550
  46136. }
  46137. },
  46138. },
  46139. [
  46140. {
  46141. name: "Normal",
  46142. height: math.unit(10.3, "feet"),
  46143. default: true
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46149. {
  46150. side: {
  46151. height: math.unit(2, "meters"),
  46152. weight: math.unit(400, "kg"),
  46153. name: "Side",
  46154. image: {
  46155. source: "./media/characters/anu/side.svg",
  46156. extra: 506/394,
  46157. bottom: 18/524
  46158. }
  46159. },
  46160. },
  46161. [
  46162. {
  46163. name: "Humanoid",
  46164. height: math.unit(2, "meters")
  46165. },
  46166. {
  46167. name: "Normal",
  46168. height: math.unit(5, "meters"),
  46169. default: true
  46170. },
  46171. ]
  46172. ))
  46173. characterMakers.push(() => makeCharacter(
  46174. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46175. {
  46176. front: {
  46177. height: math.unit(5 + 5/12, "feet"),
  46178. weight: math.unit(170, "lb"),
  46179. name: "Front",
  46180. image: {
  46181. source: "./media/characters/synx-the-lynx/front.svg",
  46182. extra: 1893/1745,
  46183. bottom: 17/1910
  46184. }
  46185. },
  46186. side: {
  46187. height: math.unit(5 + 5/12, "feet"),
  46188. weight: math.unit(170, "lb"),
  46189. name: "Side",
  46190. image: {
  46191. source: "./media/characters/synx-the-lynx/side.svg",
  46192. extra: 1884/1740,
  46193. bottom: 39/1923
  46194. }
  46195. },
  46196. back: {
  46197. height: math.unit(5 + 5/12, "feet"),
  46198. weight: math.unit(170, "lb"),
  46199. name: "Back",
  46200. image: {
  46201. source: "./media/characters/synx-the-lynx/back.svg",
  46202. extra: 1903/1755,
  46203. bottom: 14/1917
  46204. }
  46205. },
  46206. },
  46207. [
  46208. {
  46209. name: "Normal",
  46210. height: math.unit(5 + 5/12, "feet"),
  46211. default: true
  46212. },
  46213. ]
  46214. ))
  46215. characterMakers.push(() => makeCharacter(
  46216. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46217. {
  46218. back: {
  46219. height: math.unit(15, "feet"),
  46220. name: "Back",
  46221. image: {
  46222. source: "./media/characters/nadezda-fex/back.svg",
  46223. extra: 1695/1481,
  46224. bottom: 25/1720
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(15, "feet"),
  46232. default: true
  46233. },
  46234. {
  46235. name: "Macro",
  46236. height: math.unit(2.5, "miles")
  46237. },
  46238. {
  46239. name: "Goddess",
  46240. height: math.unit(2, "multiverses")
  46241. },
  46242. ]
  46243. ))
  46244. characterMakers.push(() => makeCharacter(
  46245. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46246. {
  46247. front: {
  46248. height: math.unit(216, "cm"),
  46249. name: "Front",
  46250. image: {
  46251. source: "./media/characters/lev/front.svg",
  46252. extra: 1728/1670,
  46253. bottom: 82/1810
  46254. }
  46255. },
  46256. back: {
  46257. height: math.unit(216, "cm"),
  46258. name: "Back",
  46259. image: {
  46260. source: "./media/characters/lev/back.svg",
  46261. extra: 1738/1675,
  46262. bottom: 24/1762
  46263. }
  46264. },
  46265. dressed: {
  46266. height: math.unit(216, "cm"),
  46267. name: "Dressed",
  46268. image: {
  46269. source: "./media/characters/lev/dressed.svg",
  46270. extra: 1397/1351,
  46271. bottom: 73/1470
  46272. }
  46273. },
  46274. head: {
  46275. height: math.unit(0.51, "meter"),
  46276. name: "Head",
  46277. image: {
  46278. source: "./media/characters/lev/head.svg"
  46279. }
  46280. },
  46281. },
  46282. [
  46283. {
  46284. name: "Normal",
  46285. height: math.unit(216, "cm"),
  46286. default: true
  46287. },
  46288. {
  46289. name: "Relatively Macro",
  46290. height: math.unit(80, "meters")
  46291. },
  46292. {
  46293. name: "Megamacro",
  46294. height: math.unit(21600, "meters")
  46295. },
  46296. {
  46297. name: "Megamacro+",
  46298. height: math.unit(64800, "meters")
  46299. },
  46300. ]
  46301. ))
  46302. characterMakers.push(() => makeCharacter(
  46303. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46304. {
  46305. front: {
  46306. height: math.unit(2, "meters"),
  46307. weight: math.unit(80, "kg"),
  46308. name: "Front",
  46309. image: {
  46310. source: "./media/characters/moka/front.svg",
  46311. extra: 1337/1255,
  46312. bottom: 58/1395
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Micro",
  46319. height: math.unit(15, "cm")
  46320. },
  46321. {
  46322. name: "Normal",
  46323. height: math.unit(2, "meters"),
  46324. default: true
  46325. },
  46326. {
  46327. name: "Macro",
  46328. height: math.unit(20, "meters"),
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46334. {
  46335. front: {
  46336. height: math.unit(9, "feet"),
  46337. weight: math.unit(240, "lb"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/kuzco/front.svg",
  46341. extra: 1593/1487,
  46342. bottom: 32/1625
  46343. }
  46344. },
  46345. side: {
  46346. height: math.unit(9, "feet"),
  46347. weight: math.unit(240, "lb"),
  46348. name: "Side",
  46349. image: {
  46350. source: "./media/characters/kuzco/side.svg",
  46351. extra: 1575/1485,
  46352. bottom: 30/1605
  46353. }
  46354. },
  46355. back: {
  46356. height: math.unit(9, "feet"),
  46357. weight: math.unit(240, "lb"),
  46358. name: "Back",
  46359. image: {
  46360. source: "./media/characters/kuzco/back.svg",
  46361. extra: 1603/1514,
  46362. bottom: 14/1617
  46363. }
  46364. },
  46365. },
  46366. [
  46367. {
  46368. name: "Normal",
  46369. height: math.unit(9, "feet"),
  46370. default: true
  46371. },
  46372. ]
  46373. ))
  46374. characterMakers.push(() => makeCharacter(
  46375. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46376. {
  46377. side: {
  46378. height: math.unit(2, "meters"),
  46379. weight: math.unit(300, "kg"),
  46380. name: "Side",
  46381. image: {
  46382. source: "./media/characters/ceruleus/side.svg",
  46383. extra: 1068/974,
  46384. bottom: 126/1194
  46385. }
  46386. },
  46387. },
  46388. [
  46389. {
  46390. name: "Normal",
  46391. height: math.unit(16, "meters"),
  46392. default: true
  46393. },
  46394. ]
  46395. ))
  46396. characterMakers.push(() => makeCharacter(
  46397. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46398. {
  46399. front: {
  46400. height: math.unit(9, "feet"),
  46401. weight: math.unit(500, "kg"),
  46402. name: "Front",
  46403. image: {
  46404. source: "./media/characters/acouya/front.svg",
  46405. extra: 1660/1473,
  46406. bottom: 28/1688
  46407. }
  46408. },
  46409. },
  46410. [
  46411. {
  46412. name: "Normal",
  46413. height: math.unit(9, "feet"),
  46414. default: true
  46415. },
  46416. ]
  46417. ))
  46418. characterMakers.push(() => makeCharacter(
  46419. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46420. {
  46421. front: {
  46422. height: math.unit(5 + 6/12, "feet"),
  46423. weight: math.unit(195, "lb"),
  46424. name: "Front",
  46425. image: {
  46426. source: "./media/characters/vant/front.svg",
  46427. extra: 1396/1320,
  46428. bottom: 20/1416
  46429. }
  46430. },
  46431. back: {
  46432. height: math.unit(5 + 6/12, "feet"),
  46433. weight: math.unit(195, "lb"),
  46434. name: "Back",
  46435. image: {
  46436. source: "./media/characters/vant/back.svg",
  46437. extra: 1396/1320,
  46438. bottom: 20/1416
  46439. }
  46440. },
  46441. maw: {
  46442. height: math.unit(0.75, "feet"),
  46443. name: "Maw",
  46444. image: {
  46445. source: "./media/characters/vant/maw.svg"
  46446. }
  46447. },
  46448. paw: {
  46449. height: math.unit(1.07, "feet"),
  46450. name: "Paw",
  46451. image: {
  46452. source: "./media/characters/vant/paw.svg"
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Micro",
  46459. height: math.unit(0.25, "inches")
  46460. },
  46461. {
  46462. name: "Normal",
  46463. height: math.unit(5 + 6/12, "feet"),
  46464. default: true
  46465. },
  46466. {
  46467. name: "Macro",
  46468. height: math.unit(75, "feet")
  46469. },
  46470. ]
  46471. ))
  46472. characterMakers.push(() => makeCharacter(
  46473. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46474. {
  46475. front: {
  46476. height: math.unit(30, "meters"),
  46477. weight: math.unit(363, "tons"),
  46478. name: "Front",
  46479. image: {
  46480. source: "./media/characters/ahra/front.svg",
  46481. extra: 1914/1814,
  46482. bottom: 46/1960
  46483. }
  46484. },
  46485. },
  46486. [
  46487. {
  46488. name: "Macro",
  46489. height: math.unit(30, "meters"),
  46490. default: true
  46491. },
  46492. ]
  46493. ))
  46494. characterMakers.push(() => makeCharacter(
  46495. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46496. {
  46497. undressed: {
  46498. height: math.unit(2, "m"),
  46499. weight: math.unit(250, "kg"),
  46500. name: "Undressed",
  46501. image: {
  46502. source: "./media/characters/coriander/undressed.svg",
  46503. extra: 1757/1606,
  46504. bottom: 107/1864
  46505. }
  46506. },
  46507. dressed: {
  46508. height: math.unit(2, "m"),
  46509. weight: math.unit(250, "kg"),
  46510. name: "Dressed",
  46511. image: {
  46512. source: "./media/characters/coriander/dressed.svg",
  46513. extra: 1757/1606,
  46514. bottom: 107/1864
  46515. }
  46516. },
  46517. },
  46518. [
  46519. {
  46520. name: "Normal",
  46521. height: math.unit(4, "meters"),
  46522. default: true
  46523. },
  46524. {
  46525. name: "XL",
  46526. height: math.unit(6, "meters")
  46527. },
  46528. {
  46529. name: "XXL",
  46530. height: math.unit(8, "meters")
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(6, "feet"),
  46539. name: "Front",
  46540. image: {
  46541. source: "./media/characters/syrinx/front.svg",
  46542. extra: 1557/1259,
  46543. bottom: 171/1728
  46544. }
  46545. },
  46546. },
  46547. [
  46548. {
  46549. name: "Normal",
  46550. height: math.unit(6 + 3/12, "feet"),
  46551. default: true
  46552. },
  46553. ]
  46554. ))
  46555. characterMakers.push(() => makeCharacter(
  46556. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46557. {
  46558. front: {
  46559. height: math.unit(11 + 6/12, "feet"),
  46560. weight: math.unit(1.5, "tons"),
  46561. name: "Front",
  46562. image: {
  46563. source: "./media/characters/bor/front.svg",
  46564. extra: 1189/1109,
  46565. bottom: 170/1359
  46566. }
  46567. },
  46568. },
  46569. [
  46570. {
  46571. name: "Normal",
  46572. height: math.unit(11 + 6/12, "feet"),
  46573. default: true
  46574. },
  46575. {
  46576. name: "Macro",
  46577. height: math.unit(32 + 9/12, "feet")
  46578. },
  46579. ]
  46580. ))
  46581. characterMakers.push(() => makeCharacter(
  46582. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46583. {
  46584. anthro: {
  46585. height: math.unit(9, "feet"),
  46586. weight: math.unit(2076, "lb"),
  46587. name: "Anthro",
  46588. image: {
  46589. source: "./media/characters/abacus/anthro.svg",
  46590. extra: 1540/1494,
  46591. bottom: 233/1773
  46592. }
  46593. },
  46594. pigeon: {
  46595. height: math.unit(1, "feet"),
  46596. name: "Pigeon",
  46597. image: {
  46598. source: "./media/characters/abacus/pigeon.svg",
  46599. extra: 528/525,
  46600. bottom: 46/574
  46601. }
  46602. },
  46603. },
  46604. [
  46605. {
  46606. name: "Normal",
  46607. height: math.unit(9, "feet"),
  46608. default: true
  46609. },
  46610. ]
  46611. ))
  46612. characterMakers.push(() => makeCharacter(
  46613. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46614. {
  46615. side: {
  46616. height: math.unit(6, "feet"),
  46617. name: "Side",
  46618. image: {
  46619. source: "./media/characters/delkhan/side.svg",
  46620. extra: 1884/1786,
  46621. bottom: 308/2192
  46622. }
  46623. },
  46624. head: {
  46625. height: math.unit(3.38, "feet"),
  46626. name: "Head",
  46627. image: {
  46628. source: "./media/characters/delkhan/head.svg"
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(72, "feet"),
  46636. default: true
  46637. },
  46638. {
  46639. name: "Giant",
  46640. height: math.unit(172, "feet")
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46646. {
  46647. standing: {
  46648. height: math.unit(6, "feet"),
  46649. name: "Standing",
  46650. image: {
  46651. source: "./media/characters/euchidat/standing.svg",
  46652. extra: 1612/1553,
  46653. bottom: 116/1728
  46654. }
  46655. },
  46656. leaning: {
  46657. height: math.unit(6, "feet"),
  46658. name: "Leaning",
  46659. image: {
  46660. source: "./media/characters/euchidat/leaning.svg",
  46661. extra: 1719/1674,
  46662. bottom: 27/1746
  46663. }
  46664. },
  46665. },
  46666. [
  46667. {
  46668. name: "Normal",
  46669. height: math.unit(175, "feet"),
  46670. default: true
  46671. },
  46672. {
  46673. name: "Megamacro",
  46674. height: math.unit(190, "miles")
  46675. },
  46676. {
  46677. name: "Gigamacro",
  46678. height: math.unit(190000, "miles")
  46679. },
  46680. ]
  46681. ))
  46682. characterMakers.push(() => makeCharacter(
  46683. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46684. {
  46685. front: {
  46686. height: math.unit(6, "feet"),
  46687. weight: math.unit(150, "lb"),
  46688. name: "Front",
  46689. image: {
  46690. source: "./media/characters/rebecca-stack/front.svg",
  46691. extra: 1256/1201,
  46692. bottom: 18/1274
  46693. }
  46694. },
  46695. },
  46696. [
  46697. {
  46698. name: "Normal",
  46699. height: math.unit(5 + 8/12, "feet"),
  46700. default: true
  46701. },
  46702. {
  46703. name: "Demolitionist",
  46704. height: math.unit(200, "feet")
  46705. },
  46706. {
  46707. name: "Out of Control",
  46708. height: math.unit(2, "miles")
  46709. },
  46710. {
  46711. name: "Giga",
  46712. height: math.unit(7200, "miles")
  46713. },
  46714. ]
  46715. ))
  46716. characterMakers.push(() => makeCharacter(
  46717. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46718. {
  46719. front: {
  46720. height: math.unit(6, "feet"),
  46721. weight: math.unit(150, "lb"),
  46722. name: "Front",
  46723. image: {
  46724. source: "./media/characters/jenny-cartwright/front.svg",
  46725. extra: 1384/1376,
  46726. bottom: 58/1442
  46727. }
  46728. },
  46729. },
  46730. [
  46731. {
  46732. name: "Normal",
  46733. height: math.unit(6 + 7/12, "feet"),
  46734. default: true
  46735. },
  46736. {
  46737. name: "Librarian",
  46738. height: math.unit(55, "feet")
  46739. },
  46740. {
  46741. name: "Sightseer",
  46742. height: math.unit(50, "miles")
  46743. },
  46744. {
  46745. name: "Giga",
  46746. height: math.unit(30000, "miles")
  46747. },
  46748. ]
  46749. ))
  46750. characterMakers.push(() => makeCharacter(
  46751. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46752. {
  46753. nude: {
  46754. height: math.unit(8, "feet"),
  46755. weight: math.unit(225, "lb"),
  46756. name: "Nude",
  46757. image: {
  46758. source: "./media/characters/marvy/nude.svg",
  46759. extra: 1900/1683,
  46760. bottom: 89/1989
  46761. }
  46762. },
  46763. dressed: {
  46764. height: math.unit(8, "feet"),
  46765. weight: math.unit(225, "lb"),
  46766. name: "Dressed",
  46767. image: {
  46768. source: "./media/characters/marvy/dressed.svg",
  46769. extra: 1900/1683,
  46770. bottom: 89/1989
  46771. }
  46772. },
  46773. head: {
  46774. height: math.unit(2.85, "feet"),
  46775. name: "Head",
  46776. image: {
  46777. source: "./media/characters/marvy/head.svg"
  46778. }
  46779. },
  46780. },
  46781. [
  46782. {
  46783. name: "Normal",
  46784. height: math.unit(8, "feet"),
  46785. default: true
  46786. },
  46787. ]
  46788. ))
  46789. characterMakers.push(() => makeCharacter(
  46790. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46791. {
  46792. front: {
  46793. height: math.unit(8, "feet"),
  46794. weight: math.unit(250, "lb"),
  46795. name: "Front",
  46796. image: {
  46797. source: "./media/characters/leah/front.svg",
  46798. extra: 1257/1149,
  46799. bottom: 109/1366
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(8, "feet"),
  46807. default: true
  46808. },
  46809. {
  46810. name: "Minimacro",
  46811. height: math.unit(40, "feet")
  46812. },
  46813. {
  46814. name: "Macro",
  46815. height: math.unit(124, "feet")
  46816. },
  46817. {
  46818. name: "Megamacro",
  46819. height: math.unit(850, "feet")
  46820. },
  46821. ]
  46822. ))
  46823. characterMakers.push(() => makeCharacter(
  46824. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46825. {
  46826. side: {
  46827. height: math.unit(13 + 6/12, "feet"),
  46828. weight: math.unit(3200, "lb"),
  46829. name: "Side",
  46830. image: {
  46831. source: "./media/characters/alvir/side.svg",
  46832. extra: 896/589,
  46833. bottom: 26/922
  46834. }
  46835. },
  46836. },
  46837. [
  46838. {
  46839. name: "Normal",
  46840. height: math.unit(13 + 6/12, "feet"),
  46841. default: true
  46842. },
  46843. ]
  46844. ))
  46845. characterMakers.push(() => makeCharacter(
  46846. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46847. {
  46848. front: {
  46849. height: math.unit(5 + 4/12, "feet"),
  46850. weight: math.unit(236, "lb"),
  46851. name: "Front",
  46852. image: {
  46853. source: "./media/characters/zaina-khalil/front.svg",
  46854. extra: 1533/1485,
  46855. bottom: 94/1627
  46856. }
  46857. },
  46858. side: {
  46859. height: math.unit(5 + 4/12, "feet"),
  46860. weight: math.unit(236, "lb"),
  46861. name: "Side",
  46862. image: {
  46863. source: "./media/characters/zaina-khalil/side.svg",
  46864. extra: 1537/1498,
  46865. bottom: 66/1603
  46866. }
  46867. },
  46868. back: {
  46869. height: math.unit(5 + 4/12, "feet"),
  46870. weight: math.unit(236, "lb"),
  46871. name: "Back",
  46872. image: {
  46873. source: "./media/characters/zaina-khalil/back.svg",
  46874. extra: 1546/1494,
  46875. bottom: 89/1635
  46876. }
  46877. },
  46878. },
  46879. [
  46880. {
  46881. name: "Normal",
  46882. height: math.unit(5 + 4/12, "feet"),
  46883. default: true
  46884. },
  46885. ]
  46886. ))
  46887. characterMakers.push(() => makeCharacter(
  46888. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46889. {
  46890. side: {
  46891. height: math.unit(12, "feet"),
  46892. weight: math.unit(4000, "lb"),
  46893. name: "Side",
  46894. image: {
  46895. source: "./media/characters/terry/side.svg",
  46896. extra: 1518/1439,
  46897. bottom: 149/1667
  46898. }
  46899. },
  46900. },
  46901. [
  46902. {
  46903. name: "Normal",
  46904. height: math.unit(12, "feet"),
  46905. default: true
  46906. },
  46907. ]
  46908. ))
  46909. characterMakers.push(() => makeCharacter(
  46910. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46911. {
  46912. front: {
  46913. height: math.unit(12, "feet"),
  46914. weight: math.unit(1500, "lb"),
  46915. name: "Front",
  46916. image: {
  46917. source: "./media/characters/kahea/front.svg",
  46918. extra: 1722/1617,
  46919. bottom: 179/1901
  46920. }
  46921. },
  46922. },
  46923. [
  46924. {
  46925. name: "Normal",
  46926. height: math.unit(12, "feet"),
  46927. default: true
  46928. },
  46929. ]
  46930. ))
  46931. characterMakers.push(() => makeCharacter(
  46932. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46933. {
  46934. demonFront: {
  46935. height: math.unit(36, "feet"),
  46936. name: "Front",
  46937. image: {
  46938. source: "./media/characters/alex-xuria/demon-front.svg",
  46939. extra: 1705/1673,
  46940. bottom: 198/1903
  46941. },
  46942. form: "demon",
  46943. default: true
  46944. },
  46945. demonBack: {
  46946. height: math.unit(36, "feet"),
  46947. name: "Back",
  46948. image: {
  46949. source: "./media/characters/alex-xuria/demon-back.svg",
  46950. extra: 1725/1693,
  46951. bottom: 70/1795
  46952. },
  46953. form: "demon"
  46954. },
  46955. demonHead: {
  46956. height: math.unit(2.14, "meters"),
  46957. name: "Head",
  46958. image: {
  46959. source: "./media/characters/alex-xuria/demon-head.svg"
  46960. },
  46961. form: "demon"
  46962. },
  46963. demonHand: {
  46964. height: math.unit(1.61, "meters"),
  46965. name: "Hand",
  46966. image: {
  46967. source: "./media/characters/alex-xuria/demon-hand.svg"
  46968. },
  46969. form: "demon"
  46970. },
  46971. demonPaw: {
  46972. height: math.unit(1.35, "meters"),
  46973. name: "Paw",
  46974. image: {
  46975. source: "./media/characters/alex-xuria/demon-paw.svg"
  46976. },
  46977. form: "demon"
  46978. },
  46979. demonFoot: {
  46980. height: math.unit(2.2, "meters"),
  46981. name: "Foot",
  46982. image: {
  46983. source: "./media/characters/alex-xuria/demon-foot.svg"
  46984. },
  46985. form: "demon"
  46986. },
  46987. demonCock: {
  46988. height: math.unit(1.74, "meters"),
  46989. name: "Cock",
  46990. image: {
  46991. source: "./media/characters/alex-xuria/demon-cock.svg"
  46992. },
  46993. form: "demon"
  46994. },
  46995. demonTailClosed: {
  46996. height: math.unit(1.47, "meters"),
  46997. name: "Tail (Closed)",
  46998. image: {
  46999. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47000. },
  47001. form: "demon"
  47002. },
  47003. demonTailOpen: {
  47004. height: math.unit(2.85, "meters"),
  47005. name: "Tail (Open)",
  47006. image: {
  47007. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47008. },
  47009. form: "demon"
  47010. },
  47011. incubusFront: {
  47012. height: math.unit(12, "feet"),
  47013. name: "Front",
  47014. image: {
  47015. source: "./media/characters/alex-xuria/incubus-front.svg",
  47016. extra: 1754/1677,
  47017. bottom: 125/1879
  47018. },
  47019. form: "incubus",
  47020. default: true
  47021. },
  47022. incubusBack: {
  47023. height: math.unit(12, "feet"),
  47024. name: "Back",
  47025. image: {
  47026. source: "./media/characters/alex-xuria/incubus-back.svg",
  47027. extra: 1702/1647,
  47028. bottom: 30/1732
  47029. },
  47030. form: "incubus"
  47031. },
  47032. incubusHead: {
  47033. height: math.unit(3.45, "feet"),
  47034. name: "Head",
  47035. image: {
  47036. source: "./media/characters/alex-xuria/incubus-head.svg"
  47037. },
  47038. form: "incubus"
  47039. },
  47040. rabbitFront: {
  47041. height: math.unit(6, "feet"),
  47042. name: "Front",
  47043. image: {
  47044. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47045. extra: 1369/1349,
  47046. bottom: 45/1414
  47047. },
  47048. form: "rabbit",
  47049. default: true
  47050. },
  47051. rabbitSide: {
  47052. height: math.unit(6, "feet"),
  47053. name: "Side",
  47054. image: {
  47055. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47056. extra: 1370/1356,
  47057. bottom: 37/1407
  47058. },
  47059. form: "rabbit"
  47060. },
  47061. rabbitBack: {
  47062. height: math.unit(6, "feet"),
  47063. name: "Back",
  47064. image: {
  47065. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47066. extra: 1375/1358,
  47067. bottom: 43/1418
  47068. },
  47069. form: "rabbit"
  47070. },
  47071. },
  47072. [
  47073. {
  47074. name: "Normal",
  47075. height: math.unit(6, "feet"),
  47076. default: true,
  47077. form: "rabbit"
  47078. },
  47079. {
  47080. name: "Incubus",
  47081. height: math.unit(12, "feet"),
  47082. default: true,
  47083. form: "incubus"
  47084. },
  47085. {
  47086. name: "Demon",
  47087. height: math.unit(36, "feet"),
  47088. default: true,
  47089. form: "demon"
  47090. }
  47091. ],
  47092. {
  47093. "demon": {
  47094. name: "Demon",
  47095. default: true
  47096. },
  47097. "incubus": {
  47098. name: "Incubus",
  47099. },
  47100. "rabbit": {
  47101. name: "Rabbit"
  47102. }
  47103. }
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(7 + 5/12, "feet"),
  47110. weight: math.unit(510, "lb"),
  47111. name: "Front",
  47112. image: {
  47113. source: "./media/characters/syrup/front.svg",
  47114. extra: 932/916,
  47115. bottom: 26/958
  47116. }
  47117. },
  47118. },
  47119. [
  47120. {
  47121. name: "Normal",
  47122. height: math.unit(7 + 5/12, "feet"),
  47123. default: true
  47124. },
  47125. {
  47126. name: "Big",
  47127. height: math.unit(50, "feet")
  47128. },
  47129. {
  47130. name: "Macro",
  47131. height: math.unit(300, "feet")
  47132. },
  47133. {
  47134. name: "Megamacro",
  47135. height: math.unit(1, "mile")
  47136. },
  47137. ]
  47138. ))
  47139. characterMakers.push(() => makeCharacter(
  47140. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47141. {
  47142. front: {
  47143. height: math.unit(6 + 9/12, "feet"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/zeimne/front.svg",
  47147. extra: 1969/1806,
  47148. bottom: 53/2022
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(6 + 9/12, "feet"),
  47156. default: true
  47157. },
  47158. {
  47159. name: "Giant",
  47160. height: math.unit(550, "feet")
  47161. },
  47162. {
  47163. name: "Mega",
  47164. height: math.unit(3, "miles")
  47165. },
  47166. {
  47167. name: "Giga",
  47168. height: math.unit(250, "miles")
  47169. },
  47170. {
  47171. name: "Tera",
  47172. height: math.unit(1, "AU")
  47173. },
  47174. ]
  47175. ))
  47176. characterMakers.push(() => makeCharacter(
  47177. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47178. {
  47179. front: {
  47180. height: math.unit(5 + 2/12, "feet"),
  47181. name: "Front",
  47182. image: {
  47183. source: "./media/characters/grar/front.svg",
  47184. extra: 1331/1119,
  47185. bottom: 60/1391
  47186. }
  47187. },
  47188. back: {
  47189. height: math.unit(5 + 2/12, "feet"),
  47190. name: "Back",
  47191. image: {
  47192. source: "./media/characters/grar/back.svg",
  47193. extra: 1385/1169,
  47194. bottom: 23/1408
  47195. }
  47196. },
  47197. },
  47198. [
  47199. {
  47200. name: "Normal",
  47201. height: math.unit(5 + 2/12, "feet"),
  47202. default: true
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47208. {
  47209. front: {
  47210. height: math.unit(13 + 7/12, "feet"),
  47211. weight: math.unit(2200, "lb"),
  47212. name: "Front",
  47213. image: {
  47214. source: "./media/characters/endraya/front.svg",
  47215. extra: 1289/1215,
  47216. bottom: 50/1339
  47217. }
  47218. },
  47219. nude: {
  47220. height: math.unit(13 + 7/12, "feet"),
  47221. weight: math.unit(2200, "lb"),
  47222. name: "Nude",
  47223. image: {
  47224. source: "./media/characters/endraya/nude.svg",
  47225. extra: 1247/1171,
  47226. bottom: 40/1287
  47227. }
  47228. },
  47229. head: {
  47230. height: math.unit(2.6, "feet"),
  47231. name: "Head",
  47232. image: {
  47233. source: "./media/characters/endraya/head.svg"
  47234. }
  47235. },
  47236. slit: {
  47237. height: math.unit(3.4, "feet"),
  47238. name: "Slit",
  47239. image: {
  47240. source: "./media/characters/endraya/slit.svg"
  47241. }
  47242. },
  47243. },
  47244. [
  47245. {
  47246. name: "Normal",
  47247. height: math.unit(13 + 7/12, "feet"),
  47248. default: true
  47249. },
  47250. {
  47251. name: "Macro",
  47252. height: math.unit(200, "feet")
  47253. },
  47254. ]
  47255. ))
  47256. characterMakers.push(() => makeCharacter(
  47257. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47258. {
  47259. front: {
  47260. height: math.unit(1.81, "meters"),
  47261. weight: math.unit(69, "kg"),
  47262. name: "Front",
  47263. image: {
  47264. source: "./media/characters/rodryana/front.svg",
  47265. extra: 2002/1921,
  47266. bottom: 53/2055
  47267. }
  47268. },
  47269. back: {
  47270. height: math.unit(1.81, "meters"),
  47271. weight: math.unit(69, "kg"),
  47272. name: "Back",
  47273. image: {
  47274. source: "./media/characters/rodryana/back.svg",
  47275. extra: 1993/1926,
  47276. bottom: 48/2041
  47277. }
  47278. },
  47279. maw: {
  47280. height: math.unit(0.19769417475, "meters"),
  47281. name: "Maw",
  47282. image: {
  47283. source: "./media/characters/rodryana/maw.svg"
  47284. }
  47285. },
  47286. slit: {
  47287. height: math.unit(0.31631067961, "meters"),
  47288. name: "Slit",
  47289. image: {
  47290. source: "./media/characters/rodryana/slit.svg"
  47291. }
  47292. },
  47293. },
  47294. [
  47295. {
  47296. name: "Normal",
  47297. height: math.unit(1.81, "meters")
  47298. },
  47299. {
  47300. name: "Mini Macro",
  47301. height: math.unit(181, "meters")
  47302. },
  47303. {
  47304. name: "Macro",
  47305. height: math.unit(452, "meters"),
  47306. default: true
  47307. },
  47308. {
  47309. name: "Mega Macro",
  47310. height: math.unit(1.375, "km")
  47311. },
  47312. {
  47313. name: "Giga Macro",
  47314. height: math.unit(13.575, "km")
  47315. },
  47316. ]
  47317. ))
  47318. characterMakers.push(() => makeCharacter(
  47319. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47320. {
  47321. front: {
  47322. height: math.unit(6, "feet"),
  47323. weight: math.unit(1000, "lb"),
  47324. name: "Front",
  47325. image: {
  47326. source: "./media/characters/asaya/front.svg",
  47327. extra: 1460/1200,
  47328. bottom: 71/1531
  47329. }
  47330. },
  47331. },
  47332. [
  47333. {
  47334. name: "Normal",
  47335. height: math.unit(8, "km"),
  47336. default: true
  47337. },
  47338. ]
  47339. ))
  47340. characterMakers.push(() => makeCharacter(
  47341. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47342. {
  47343. front: {
  47344. height: math.unit(3.5, "meters"),
  47345. name: "Front",
  47346. image: {
  47347. source: "./media/characters/sarzu-and-israz/front.svg",
  47348. extra: 1570/1558,
  47349. bottom: 150/1720
  47350. },
  47351. },
  47352. back: {
  47353. height: math.unit(3.5, "meters"),
  47354. name: "Back",
  47355. image: {
  47356. source: "./media/characters/sarzu-and-israz/back.svg",
  47357. extra: 1523/1509,
  47358. bottom: 132/1655
  47359. },
  47360. },
  47361. frontFemale: {
  47362. height: math.unit(3.5, "meters"),
  47363. name: "Front (Female)",
  47364. image: {
  47365. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47366. extra: 1570/1558,
  47367. bottom: 150/1720
  47368. },
  47369. },
  47370. frontHerm: {
  47371. height: math.unit(3.5, "meters"),
  47372. name: "Front (Herm)",
  47373. image: {
  47374. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47375. extra: 1570/1558,
  47376. bottom: 150/1720
  47377. },
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Normal",
  47383. height: math.unit(3.5, "meters"),
  47384. default: true,
  47385. },
  47386. {
  47387. name: "Macro",
  47388. height: math.unit(65.5, "meters"),
  47389. },
  47390. ],
  47391. ))
  47392. characterMakers.push(() => makeCharacter(
  47393. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47394. {
  47395. front: {
  47396. height: math.unit(6, "feet"),
  47397. weight: math.unit(250, "lb"),
  47398. name: "Front",
  47399. image: {
  47400. source: "./media/characters/zenimma/front.svg",
  47401. extra: 1346/1320,
  47402. bottom: 58/1404
  47403. }
  47404. },
  47405. back: {
  47406. height: math.unit(6, "feet"),
  47407. weight: math.unit(250, "lb"),
  47408. name: "Back",
  47409. image: {
  47410. source: "./media/characters/zenimma/back.svg",
  47411. extra: 1324/1308,
  47412. bottom: 44/1368
  47413. }
  47414. },
  47415. dick: {
  47416. height: math.unit(1.44, "feet"),
  47417. name: "Dick",
  47418. image: {
  47419. source: "./media/characters/zenimma/dick.svg"
  47420. }
  47421. },
  47422. },
  47423. [
  47424. {
  47425. name: "Canon Height",
  47426. height: math.unit(66, "miles"),
  47427. default: true
  47428. },
  47429. ]
  47430. ))
  47431. characterMakers.push(() => makeCharacter(
  47432. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47433. {
  47434. nude: {
  47435. height: math.unit(6, "feet"),
  47436. weight: math.unit(150, "lb"),
  47437. name: "Nude",
  47438. image: {
  47439. source: "./media/characters/shavon/nude.svg",
  47440. extra: 1242/1096,
  47441. bottom: 98/1340
  47442. }
  47443. },
  47444. dressed: {
  47445. height: math.unit(6, "feet"),
  47446. weight: math.unit(150, "lb"),
  47447. name: "Dressed",
  47448. image: {
  47449. source: "./media/characters/shavon/dressed.svg",
  47450. extra: 1242/1096,
  47451. bottom: 98/1340
  47452. }
  47453. },
  47454. },
  47455. [
  47456. {
  47457. name: "Macro",
  47458. height: math.unit(255, "feet"),
  47459. default: true
  47460. },
  47461. ]
  47462. ))
  47463. characterMakers.push(() => makeCharacter(
  47464. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47465. {
  47466. front: {
  47467. height: math.unit(6, "feet"),
  47468. name: "Front",
  47469. image: {
  47470. source: "./media/characters/steph/front.svg",
  47471. extra: 1430/1330,
  47472. bottom: 54/1484
  47473. }
  47474. },
  47475. },
  47476. [
  47477. {
  47478. name: "Normal",
  47479. height: math.unit(6, "feet"),
  47480. default: true
  47481. },
  47482. ]
  47483. ))
  47484. characterMakers.push(() => makeCharacter(
  47485. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47486. {
  47487. front: {
  47488. height: math.unit(9, "feet"),
  47489. weight: math.unit(400, "lb"),
  47490. name: "Front",
  47491. image: {
  47492. source: "./media/characters/kil'aman/front.svg",
  47493. extra: 1210/1159,
  47494. bottom: 109/1319
  47495. }
  47496. },
  47497. head: {
  47498. height: math.unit(2.14, "feet"),
  47499. name: "Head",
  47500. image: {
  47501. source: "./media/characters/kil'aman/head.svg"
  47502. }
  47503. },
  47504. maw: {
  47505. height: math.unit(1.21, "feet"),
  47506. name: "Maw",
  47507. image: {
  47508. source: "./media/characters/kil'aman/maw.svg"
  47509. }
  47510. },
  47511. foot: {
  47512. height: math.unit(1.7, "feet"),
  47513. name: "Foot",
  47514. image: {
  47515. source: "./media/characters/kil'aman/foot.svg"
  47516. }
  47517. },
  47518. dick: {
  47519. height: math.unit(2.1, "feet"),
  47520. name: "Dick",
  47521. image: {
  47522. source: "./media/characters/kil'aman/dick.svg"
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(9, "feet")
  47530. },
  47531. {
  47532. name: "Canon Height",
  47533. height: math.unit(10, "miles"),
  47534. default: true
  47535. },
  47536. {
  47537. name: "Maximum",
  47538. height: math.unit(6e9, "miles")
  47539. },
  47540. ]
  47541. ))
  47542. characterMakers.push(() => makeCharacter(
  47543. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47544. {
  47545. front: {
  47546. height: math.unit(90, "feet"),
  47547. weight: math.unit(675000, "lb"),
  47548. name: "Front",
  47549. image: {
  47550. source: "./media/characters/qadan/front.svg",
  47551. extra: 1012/1004,
  47552. bottom: 78/1090
  47553. }
  47554. },
  47555. back: {
  47556. height: math.unit(90, "feet"),
  47557. weight: math.unit(675000, "lb"),
  47558. name: "Back",
  47559. image: {
  47560. source: "./media/characters/qadan/back.svg",
  47561. extra: 1042/1031,
  47562. bottom: 55/1097
  47563. }
  47564. },
  47565. armored: {
  47566. height: math.unit(90, "feet"),
  47567. weight: math.unit(675000, "lb"),
  47568. name: "Armored",
  47569. image: {
  47570. source: "./media/characters/qadan/armored.svg",
  47571. extra: 1047/1037,
  47572. bottom: 48/1095
  47573. }
  47574. },
  47575. },
  47576. [
  47577. {
  47578. name: "Normal",
  47579. height: math.unit(90, "feet"),
  47580. default: true
  47581. },
  47582. ]
  47583. ))
  47584. characterMakers.push(() => makeCharacter(
  47585. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47586. {
  47587. front: {
  47588. height: math.unit(6, "feet"),
  47589. weight: math.unit(225, "lb"),
  47590. name: "Front",
  47591. image: {
  47592. source: "./media/characters/brooke/front.svg",
  47593. extra: 1050/1010,
  47594. bottom: 66/1116
  47595. }
  47596. },
  47597. back: {
  47598. height: math.unit(6, "feet"),
  47599. weight: math.unit(225, "lb"),
  47600. name: "Back",
  47601. image: {
  47602. source: "./media/characters/brooke/back.svg",
  47603. extra: 1053/1013,
  47604. bottom: 41/1094
  47605. }
  47606. },
  47607. dressed: {
  47608. height: math.unit(6, "feet"),
  47609. weight: math.unit(225, "lb"),
  47610. name: "Dressed",
  47611. image: {
  47612. source: "./media/characters/brooke/dressed.svg",
  47613. extra: 1050/1010,
  47614. bottom: 66/1116
  47615. }
  47616. },
  47617. },
  47618. [
  47619. {
  47620. name: "Canon Height",
  47621. height: math.unit(500, "miles"),
  47622. default: true
  47623. },
  47624. ]
  47625. ))
  47626. characterMakers.push(() => makeCharacter(
  47627. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47628. {
  47629. front: {
  47630. height: math.unit(6 + 2/12, "feet"),
  47631. weight: math.unit(210, "lb"),
  47632. name: "Front",
  47633. image: {
  47634. source: "./media/characters/wubs/front.svg",
  47635. extra: 1345/1325,
  47636. bottom: 70/1415
  47637. }
  47638. },
  47639. back: {
  47640. height: math.unit(6 + 2/12, "feet"),
  47641. weight: math.unit(210, "lb"),
  47642. name: "Back",
  47643. image: {
  47644. source: "./media/characters/wubs/back.svg",
  47645. extra: 1296/1275,
  47646. bottom: 58/1354
  47647. }
  47648. },
  47649. },
  47650. [
  47651. {
  47652. name: "Normal",
  47653. height: math.unit(6 + 2/12, "feet"),
  47654. default: true
  47655. },
  47656. {
  47657. name: "Macro",
  47658. height: math.unit(1000, "feet")
  47659. },
  47660. {
  47661. name: "Megamacro",
  47662. height: math.unit(1, "mile")
  47663. },
  47664. ]
  47665. ))
  47666. characterMakers.push(() => makeCharacter(
  47667. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47668. {
  47669. front: {
  47670. height: math.unit(4, "feet"),
  47671. weight: math.unit(120, "lb"),
  47672. name: "Front",
  47673. image: {
  47674. source: "./media/characters/blue/front.svg",
  47675. extra: 1636/1525,
  47676. bottom: 43/1679
  47677. }
  47678. },
  47679. back: {
  47680. height: math.unit(4, "feet"),
  47681. weight: math.unit(120, "lb"),
  47682. name: "Back",
  47683. image: {
  47684. source: "./media/characters/blue/back.svg",
  47685. extra: 1660/1560,
  47686. bottom: 57/1717
  47687. }
  47688. },
  47689. paws: {
  47690. height: math.unit(0.826, "feet"),
  47691. name: "Paws",
  47692. image: {
  47693. source: "./media/characters/blue/paws.svg"
  47694. }
  47695. },
  47696. },
  47697. [
  47698. {
  47699. name: "Micro",
  47700. height: math.unit(3, "inches")
  47701. },
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(4, "feet"),
  47705. default: true
  47706. },
  47707. {
  47708. name: "Femenine Form",
  47709. height: math.unit(14, "feet")
  47710. },
  47711. {
  47712. name: "Werebat Form",
  47713. height: math.unit(18, "feet")
  47714. },
  47715. ]
  47716. ))
  47717. characterMakers.push(() => makeCharacter(
  47718. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47719. {
  47720. female: {
  47721. height: math.unit(7 + 4/12, "feet"),
  47722. weight: math.unit(243, "lb"),
  47723. name: "Female",
  47724. image: {
  47725. source: "./media/characters/kaya/female.svg",
  47726. extra: 975/898,
  47727. bottom: 34/1009
  47728. }
  47729. },
  47730. herm: {
  47731. height: math.unit(7 + 4/12, "feet"),
  47732. weight: math.unit(243, "lb"),
  47733. name: "Herm",
  47734. image: {
  47735. source: "./media/characters/kaya/herm.svg",
  47736. extra: 975/898,
  47737. bottom: 34/1009
  47738. }
  47739. },
  47740. },
  47741. [
  47742. {
  47743. name: "Normal",
  47744. height: math.unit(7 + 4/12, "feet"),
  47745. default: true
  47746. },
  47747. ]
  47748. ))
  47749. characterMakers.push(() => makeCharacter(
  47750. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47751. {
  47752. female: {
  47753. height: math.unit(9 + 4/12, "feet"),
  47754. weight: math.unit(398, "lb"),
  47755. name: "Female",
  47756. image: {
  47757. source: "./media/characters/kassandra/female.svg",
  47758. extra: 908/839,
  47759. bottom: 61/969
  47760. }
  47761. },
  47762. intersex: {
  47763. height: math.unit(9 + 4/12, "feet"),
  47764. weight: math.unit(398, "lb"),
  47765. name: "Intersex",
  47766. image: {
  47767. source: "./media/characters/kassandra/intersex.svg",
  47768. extra: 908/839,
  47769. bottom: 61/969
  47770. }
  47771. },
  47772. },
  47773. [
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(9 + 4/12, "feet"),
  47777. default: true
  47778. },
  47779. ]
  47780. ))
  47781. characterMakers.push(() => makeCharacter(
  47782. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47783. {
  47784. front: {
  47785. height: math.unit(3, "meters"),
  47786. name: "Front",
  47787. image: {
  47788. source: "./media/characters/amy/front.svg",
  47789. extra: 1380/1343,
  47790. bottom: 70/1450
  47791. }
  47792. },
  47793. back: {
  47794. height: math.unit(3, "meters"),
  47795. name: "Back",
  47796. image: {
  47797. source: "./media/characters/amy/back.svg",
  47798. extra: 1380/1347,
  47799. bottom: 66/1446
  47800. }
  47801. },
  47802. },
  47803. [
  47804. {
  47805. name: "Normal",
  47806. height: math.unit(3, "meters"),
  47807. default: true
  47808. },
  47809. ]
  47810. ))
  47811. characterMakers.push(() => makeCharacter(
  47812. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47813. {
  47814. side: {
  47815. height: math.unit(47, "cm"),
  47816. weight: math.unit(10.8, "kg"),
  47817. name: "Side",
  47818. image: {
  47819. source: "./media/characters/alphaschakal/side.svg",
  47820. extra: 1058/568,
  47821. bottom: 62/1120
  47822. }
  47823. },
  47824. back: {
  47825. height: math.unit(78, "cm"),
  47826. weight: math.unit(10.8, "kg"),
  47827. name: "Back",
  47828. image: {
  47829. source: "./media/characters/alphaschakal/back.svg",
  47830. extra: 1102/942,
  47831. bottom: 185/1287
  47832. }
  47833. },
  47834. head: {
  47835. height: math.unit(28, "cm"),
  47836. name: "Head",
  47837. image: {
  47838. source: "./media/characters/alphaschakal/head.svg",
  47839. extra: 696/508,
  47840. bottom: 0/696
  47841. }
  47842. },
  47843. paw: {
  47844. height: math.unit(16, "cm"),
  47845. name: "Paw",
  47846. image: {
  47847. source: "./media/characters/alphaschakal/paw.svg"
  47848. }
  47849. },
  47850. },
  47851. [
  47852. {
  47853. name: "Normal",
  47854. height: math.unit(47, "cm"),
  47855. default: true
  47856. },
  47857. {
  47858. name: "Macro",
  47859. height: math.unit(340, "cm")
  47860. },
  47861. ]
  47862. ))
  47863. characterMakers.push(() => makeCharacter(
  47864. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47865. {
  47866. front: {
  47867. height: math.unit(36, "earths"),
  47868. name: "Front",
  47869. image: {
  47870. source: "./media/characters/ecobyss/front.svg",
  47871. extra: 1282/1215,
  47872. bottom: 11/1293
  47873. }
  47874. },
  47875. back: {
  47876. height: math.unit(36, "earths"),
  47877. name: "Back",
  47878. image: {
  47879. source: "./media/characters/ecobyss/back.svg",
  47880. extra: 1291/1222,
  47881. bottom: 8/1299
  47882. }
  47883. },
  47884. },
  47885. [
  47886. {
  47887. name: "Normal",
  47888. height: math.unit(36, "earths"),
  47889. default: true
  47890. },
  47891. ]
  47892. ))
  47893. characterMakers.push(() => makeCharacter(
  47894. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47895. {
  47896. front: {
  47897. height: math.unit(12, "feet"),
  47898. name: "Front",
  47899. image: {
  47900. source: "./media/characters/vasuk/front.svg",
  47901. extra: 1326/1207,
  47902. bottom: 64/1390
  47903. }
  47904. },
  47905. },
  47906. [
  47907. {
  47908. name: "Normal",
  47909. height: math.unit(12, "feet"),
  47910. default: true
  47911. },
  47912. ]
  47913. ))
  47914. characterMakers.push(() => makeCharacter(
  47915. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47916. {
  47917. side: {
  47918. height: math.unit(100, "feet"),
  47919. name: "Side",
  47920. image: {
  47921. source: "./media/characters/linneaus/side.svg",
  47922. extra: 987/807,
  47923. bottom: 47/1034
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Macro",
  47930. height: math.unit(100, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47937. {
  47938. front: {
  47939. height: math.unit(8, "feet"),
  47940. weight: math.unit(1200, "lb"),
  47941. name: "Front",
  47942. image: {
  47943. source: "./media/characters/nyterious-daligdig/front.svg",
  47944. extra: 1284/1094,
  47945. bottom: 84/1368
  47946. }
  47947. },
  47948. back: {
  47949. height: math.unit(8, "feet"),
  47950. weight: math.unit(1200, "lb"),
  47951. name: "Back",
  47952. image: {
  47953. source: "./media/characters/nyterious-daligdig/back.svg",
  47954. extra: 1301/1121,
  47955. bottom: 129/1430
  47956. }
  47957. },
  47958. mouth: {
  47959. height: math.unit(1.464, "feet"),
  47960. name: "Mouth",
  47961. image: {
  47962. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47963. }
  47964. },
  47965. },
  47966. [
  47967. {
  47968. name: "Small",
  47969. height: math.unit(8, "feet"),
  47970. default: true
  47971. },
  47972. {
  47973. name: "Normal",
  47974. height: math.unit(15, "feet")
  47975. },
  47976. {
  47977. name: "Macro",
  47978. height: math.unit(90, "feet")
  47979. },
  47980. ]
  47981. ))
  47982. characterMakers.push(() => makeCharacter(
  47983. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47984. {
  47985. front: {
  47986. height: math.unit(7 + 4/12, "feet"),
  47987. weight: math.unit(252, "lb"),
  47988. name: "Front",
  47989. image: {
  47990. source: "./media/characters/bandel/front.svg",
  47991. extra: 1946/1775,
  47992. bottom: 26/1972
  47993. }
  47994. },
  47995. back: {
  47996. height: math.unit(7 + 4/12, "feet"),
  47997. weight: math.unit(252, "lb"),
  47998. name: "Back",
  47999. image: {
  48000. source: "./media/characters/bandel/back.svg",
  48001. extra: 1940/1770,
  48002. bottom: 25/1965
  48003. }
  48004. },
  48005. maw: {
  48006. height: math.unit(2.15, "feet"),
  48007. name: "Maw",
  48008. image: {
  48009. source: "./media/characters/bandel/maw.svg"
  48010. }
  48011. },
  48012. stomach: {
  48013. height: math.unit(1.95, "feet"),
  48014. name: "Stomach",
  48015. image: {
  48016. source: "./media/characters/bandel/stomach.svg"
  48017. }
  48018. },
  48019. },
  48020. [
  48021. {
  48022. name: "Normal",
  48023. height: math.unit(7 + 4/12, "feet"),
  48024. default: true
  48025. },
  48026. ]
  48027. ))
  48028. characterMakers.push(() => makeCharacter(
  48029. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48030. {
  48031. front: {
  48032. height: math.unit(10 + 5/12, "feet"),
  48033. weight: math.unit(773.5, "kg"),
  48034. name: "Front",
  48035. image: {
  48036. source: "./media/characters/zed/front.svg",
  48037. extra: 987/941,
  48038. bottom: 52/1039
  48039. }
  48040. },
  48041. },
  48042. [
  48043. {
  48044. name: "Short",
  48045. height: math.unit(5 + 4/12, "feet")
  48046. },
  48047. {
  48048. name: "Average",
  48049. height: math.unit(10 + 5/12, "feet"),
  48050. default: true
  48051. },
  48052. {
  48053. name: "Mini-Macro",
  48054. height: math.unit(24 + 9/12, "feet")
  48055. },
  48056. {
  48057. name: "Macro",
  48058. height: math.unit(249, "feet")
  48059. },
  48060. {
  48061. name: "Mega-Macro",
  48062. height: math.unit(12490, "feet")
  48063. },
  48064. {
  48065. name: "Giga-Macro",
  48066. height: math.unit(24.9, "miles")
  48067. },
  48068. {
  48069. name: "Tera-Macro",
  48070. height: math.unit(24900, "miles")
  48071. },
  48072. {
  48073. name: "Cosmic Scale",
  48074. height: math.unit(38.9, "lightyears")
  48075. },
  48076. {
  48077. name: "Universal Scale",
  48078. height: math.unit(138e12, "lightyears")
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(1561, "inches"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/ivan/front.svg",
  48090. extra: 1126/1071,
  48091. bottom: 26/1152
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(1561, "inches"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/ivan/back.svg",
  48099. extra: 1134/1079,
  48100. bottom: 30/1164
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Normal",
  48107. height: math.unit(1561, "inches"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48114. {
  48115. front: {
  48116. height: math.unit(5 + 7/12, "feet"),
  48117. weight: math.unit(150, "lb"),
  48118. name: "Front",
  48119. image: {
  48120. source: "./media/characters/robin-arctic-hare/front.svg",
  48121. extra: 1148/974,
  48122. bottom: 20/1168
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(5 + 7/12, "feet"),
  48130. default: true
  48131. },
  48132. ]
  48133. ))
  48134. characterMakers.push(() => makeCharacter(
  48135. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48136. {
  48137. side: {
  48138. height: math.unit(5, "feet"),
  48139. name: "Side",
  48140. image: {
  48141. source: "./media/characters/birch/side.svg",
  48142. extra: 985/796,
  48143. bottom: 111/1096
  48144. }
  48145. },
  48146. },
  48147. [
  48148. {
  48149. name: "Normal",
  48150. height: math.unit(5, "feet"),
  48151. default: true
  48152. },
  48153. ]
  48154. ))
  48155. characterMakers.push(() => makeCharacter(
  48156. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48157. {
  48158. front: {
  48159. height: math.unit(4, "feet"),
  48160. name: "Front",
  48161. image: {
  48162. source: "./media/characters/rasp/front.svg",
  48163. extra: 561/478,
  48164. bottom: 74/635
  48165. }
  48166. },
  48167. },
  48168. [
  48169. {
  48170. name: "Normal",
  48171. height: math.unit(4, "feet"),
  48172. default: true
  48173. },
  48174. ]
  48175. ))
  48176. characterMakers.push(() => makeCharacter(
  48177. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48178. {
  48179. front: {
  48180. height: math.unit(4 + 6/12, "feet"),
  48181. name: "Front",
  48182. image: {
  48183. source: "./media/characters/agatha/front.svg",
  48184. extra: 947/933,
  48185. bottom: 42/989
  48186. }
  48187. },
  48188. back: {
  48189. height: math.unit(4 + 6/12, "feet"),
  48190. name: "Back",
  48191. image: {
  48192. source: "./media/characters/agatha/back.svg",
  48193. extra: 935/922,
  48194. bottom: 48/983
  48195. }
  48196. },
  48197. },
  48198. [
  48199. {
  48200. name: "Normal",
  48201. height: math.unit(4 + 6 /12, "feet"),
  48202. default: true
  48203. },
  48204. {
  48205. name: "Max Size",
  48206. height: math.unit(500, "feet")
  48207. },
  48208. ]
  48209. ))
  48210. characterMakers.push(() => makeCharacter(
  48211. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48212. {
  48213. side: {
  48214. height: math.unit(30, "feet"),
  48215. name: "Side",
  48216. image: {
  48217. source: "./media/characters/roggy/side.svg",
  48218. extra: 909/643,
  48219. bottom: 63/972
  48220. }
  48221. },
  48222. lounging: {
  48223. height: math.unit(20, "feet"),
  48224. name: "Lounging",
  48225. image: {
  48226. source: "./media/characters/roggy/lounging.svg",
  48227. extra: 643/479,
  48228. bottom: 145/788
  48229. }
  48230. },
  48231. handpaw: {
  48232. height: math.unit(13.1, "feet"),
  48233. name: "Handpaw",
  48234. image: {
  48235. source: "./media/characters/roggy/handpaw.svg"
  48236. }
  48237. },
  48238. footpaw: {
  48239. height: math.unit(15.8, "feet"),
  48240. name: "Footpaw",
  48241. image: {
  48242. source: "./media/characters/roggy/footpaw.svg"
  48243. }
  48244. },
  48245. },
  48246. [
  48247. {
  48248. name: "Menacing",
  48249. height: math.unit(30, "feet"),
  48250. default: true
  48251. },
  48252. ]
  48253. ))
  48254. characterMakers.push(() => makeCharacter(
  48255. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48256. {
  48257. front: {
  48258. height: math.unit(5 + 7/12, "feet"),
  48259. weight: math.unit(135, "lb"),
  48260. name: "Front",
  48261. image: {
  48262. source: "./media/characters/naomi/front.svg",
  48263. extra: 1209/1154,
  48264. bottom: 129/1338
  48265. }
  48266. },
  48267. back: {
  48268. height: math.unit(5 + 7/12, "feet"),
  48269. weight: math.unit(135, "lb"),
  48270. name: "Back",
  48271. image: {
  48272. source: "./media/characters/naomi/back.svg",
  48273. extra: 1252/1190,
  48274. bottom: 23/1275
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Normal",
  48281. height: math.unit(5 + 7 /12, "feet"),
  48282. default: true
  48283. },
  48284. ]
  48285. ))
  48286. characterMakers.push(() => makeCharacter(
  48287. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48288. {
  48289. side: {
  48290. height: math.unit(35, "meters"),
  48291. name: "Side",
  48292. image: {
  48293. source: "./media/characters/kimpi/side.svg",
  48294. extra: 419/382,
  48295. bottom: 63/482
  48296. }
  48297. },
  48298. hand: {
  48299. height: math.unit(8.96, "meters"),
  48300. name: "Hand",
  48301. image: {
  48302. source: "./media/characters/kimpi/hand.svg"
  48303. }
  48304. },
  48305. },
  48306. [
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(35, "meters"),
  48310. default: true
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48316. {
  48317. front: {
  48318. height: math.unit(4 + 4/12, "feet"),
  48319. name: "Front",
  48320. image: {
  48321. source: "./media/characters/pepper-purrloin/front.svg",
  48322. extra: 1141/1024,
  48323. bottom: 21/1162
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(4 + 4/12, "feet"),
  48331. default: true
  48332. },
  48333. ]
  48334. ))
  48335. characterMakers.push(() => makeCharacter(
  48336. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48337. {
  48338. front: {
  48339. height: math.unit(6 + 2/12, "feet"),
  48340. name: "Front",
  48341. image: {
  48342. source: "./media/characters/raphael/front.svg",
  48343. extra: 1101/962,
  48344. bottom: 59/1160
  48345. }
  48346. },
  48347. },
  48348. [
  48349. {
  48350. name: "Normal",
  48351. height: math.unit(6 + 2/12, "feet"),
  48352. default: true
  48353. },
  48354. ]
  48355. ))
  48356. characterMakers.push(() => makeCharacter(
  48357. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48358. {
  48359. front: {
  48360. height: math.unit(6, "feet"),
  48361. weight: math.unit(150, "lb"),
  48362. name: "Front",
  48363. image: {
  48364. source: "./media/characters/victor-williams/front.svg",
  48365. extra: 1894/1825,
  48366. bottom: 67/1961
  48367. }
  48368. },
  48369. },
  48370. [
  48371. {
  48372. name: "Normal",
  48373. height: math.unit(6, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(5 + 8/12, "feet"),
  48383. weight: math.unit(150, "lb"),
  48384. name: "Front",
  48385. image: {
  48386. source: "./media/characters/rachel/front.svg",
  48387. extra: 1902/1787,
  48388. bottom: 46/1948
  48389. }
  48390. },
  48391. },
  48392. [
  48393. {
  48394. name: "Base Height",
  48395. height: math.unit(5 + 8/12, "feet"),
  48396. default: true
  48397. },
  48398. {
  48399. name: "Macro",
  48400. height: math.unit(200, "feet")
  48401. },
  48402. {
  48403. name: "Mega Macro",
  48404. height: math.unit(1, "mile")
  48405. },
  48406. {
  48407. name: "Giga Macro",
  48408. height: math.unit(1500, "miles")
  48409. },
  48410. {
  48411. name: "Tera Macro",
  48412. height: math.unit(8000, "miles")
  48413. },
  48414. {
  48415. name: "Tera Macro+",
  48416. height: math.unit(2e5, "miles")
  48417. },
  48418. ]
  48419. ))
  48420. characterMakers.push(() => makeCharacter(
  48421. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48422. {
  48423. front: {
  48424. height: math.unit(6.5, "feet"),
  48425. name: "Front",
  48426. image: {
  48427. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48428. extra: 860/819,
  48429. bottom: 307/1167
  48430. }
  48431. },
  48432. back: {
  48433. height: math.unit(6.5, "feet"),
  48434. name: "Back",
  48435. image: {
  48436. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48437. extra: 880/837,
  48438. bottom: 395/1275
  48439. }
  48440. },
  48441. sleeping: {
  48442. height: math.unit(2.79, "feet"),
  48443. name: "Sleeping",
  48444. image: {
  48445. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48446. extra: 465/383,
  48447. bottom: 263/728
  48448. }
  48449. },
  48450. maw: {
  48451. height: math.unit(2.52, "feet"),
  48452. name: "Maw",
  48453. image: {
  48454. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48455. }
  48456. },
  48457. },
  48458. [
  48459. {
  48460. name: "Normal",
  48461. height: math.unit(6.5, "feet"),
  48462. default: true
  48463. },
  48464. ]
  48465. ))
  48466. characterMakers.push(() => makeCharacter(
  48467. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48468. {
  48469. front: {
  48470. height: math.unit(5, "feet"),
  48471. name: "Front",
  48472. image: {
  48473. source: "./media/characters/nova-nerium/front.svg",
  48474. extra: 1548/1392,
  48475. bottom: 374/1922
  48476. }
  48477. },
  48478. back: {
  48479. height: math.unit(5, "feet"),
  48480. name: "Back",
  48481. image: {
  48482. source: "./media/characters/nova-nerium/back.svg",
  48483. extra: 1658/1468,
  48484. bottom: 257/1915
  48485. }
  48486. },
  48487. },
  48488. [
  48489. {
  48490. name: "Normal",
  48491. height: math.unit(5, "feet"),
  48492. default: true
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(5 + 4/12, "feet"),
  48501. name: "Front",
  48502. image: {
  48503. source: "./media/characters/ashe-pyriph/front.svg",
  48504. extra: 1935/1747,
  48505. bottom: 60/1995
  48506. }
  48507. },
  48508. },
  48509. [
  48510. {
  48511. name: "Normal",
  48512. height: math.unit(5 + 4/12, "feet"),
  48513. default: true
  48514. },
  48515. ]
  48516. ))
  48517. characterMakers.push(() => makeCharacter(
  48518. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48519. {
  48520. front: {
  48521. height: math.unit(8.7, "feet"),
  48522. name: "Front",
  48523. image: {
  48524. source: "./media/characters/flicker-wisp/front.svg",
  48525. extra: 1835/1613,
  48526. bottom: 449/2284
  48527. }
  48528. },
  48529. side: {
  48530. height: math.unit(8.7, "feet"),
  48531. name: "Side",
  48532. image: {
  48533. source: "./media/characters/flicker-wisp/side.svg",
  48534. extra: 1841/1642,
  48535. bottom: 336/2177
  48536. },
  48537. default: true
  48538. },
  48539. maw: {
  48540. height: math.unit(3.35, "feet"),
  48541. name: "Maw",
  48542. image: {
  48543. source: "./media/characters/flicker-wisp/maw.svg",
  48544. extra: 2338/1506,
  48545. bottom: 0/2338
  48546. }
  48547. },
  48548. ovipositor: {
  48549. height: math.unit(4.95, "feet"),
  48550. name: "Ovipositor",
  48551. image: {
  48552. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48553. }
  48554. },
  48555. egg: {
  48556. height: math.unit(0.385, "feet"),
  48557. weight: math.unit(2, "lb"),
  48558. name: "Egg",
  48559. image: {
  48560. source: "./media/characters/flicker-wisp/egg.svg"
  48561. }
  48562. },
  48563. },
  48564. [
  48565. {
  48566. name: "Normal",
  48567. height: math.unit(8.7, "feet"),
  48568. default: true
  48569. },
  48570. ]
  48571. ))
  48572. characterMakers.push(() => makeCharacter(
  48573. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48574. {
  48575. side: {
  48576. height: math.unit(11, "feet"),
  48577. name: "Side",
  48578. image: {
  48579. source: "./media/characters/faefnul/side.svg",
  48580. extra: 1100/1007,
  48581. bottom: 0/1100
  48582. }
  48583. },
  48584. },
  48585. [
  48586. {
  48587. name: "Normal",
  48588. height: math.unit(11, "feet"),
  48589. default: true
  48590. },
  48591. ]
  48592. ))
  48593. characterMakers.push(() => makeCharacter(
  48594. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48595. {
  48596. front: {
  48597. height: math.unit(6 + 2/12, "feet"),
  48598. name: "Front",
  48599. image: {
  48600. source: "./media/characters/shady/front.svg",
  48601. extra: 502/461,
  48602. bottom: 9/511
  48603. }
  48604. },
  48605. kneeling: {
  48606. height: math.unit(4.6, "feet"),
  48607. name: "Kneeling",
  48608. image: {
  48609. source: "./media/characters/shady/kneeling.svg",
  48610. extra: 1328/1219,
  48611. bottom: 117/1445
  48612. }
  48613. },
  48614. maw: {
  48615. height: math.unit(2, "feet"),
  48616. name: "Maw",
  48617. image: {
  48618. source: "./media/characters/shady/maw.svg"
  48619. }
  48620. },
  48621. },
  48622. [
  48623. {
  48624. name: "Nano",
  48625. height: math.unit(1, "mm")
  48626. },
  48627. {
  48628. name: "Micro",
  48629. height: math.unit(12, "mm")
  48630. },
  48631. {
  48632. name: "Tiny",
  48633. height: math.unit(3, "inches")
  48634. },
  48635. {
  48636. name: "Normal",
  48637. height: math.unit(6 + 2/12, "feet"),
  48638. default: true
  48639. },
  48640. {
  48641. name: "Big",
  48642. height: math.unit(15, "feet")
  48643. },
  48644. {
  48645. name: "Macro",
  48646. height: math.unit(150, "feet")
  48647. },
  48648. {
  48649. name: "Titanic",
  48650. height: math.unit(500, "feet")
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48656. {
  48657. front: {
  48658. height: math.unit(12, "feet"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/fenrir/front.svg",
  48662. extra: 968/875,
  48663. bottom: 22/990
  48664. }
  48665. },
  48666. },
  48667. [
  48668. {
  48669. name: "Big",
  48670. height: math.unit(12, "feet"),
  48671. default: true
  48672. },
  48673. ]
  48674. ))
  48675. characterMakers.push(() => makeCharacter(
  48676. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48677. {
  48678. front: {
  48679. height: math.unit(5 + 4/12, "feet"),
  48680. name: "Front",
  48681. image: {
  48682. source: "./media/characters/makar/front.svg",
  48683. extra: 1181/1112,
  48684. bottom: 78/1259
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Normal",
  48691. height: math.unit(5 + 4/12, "feet"),
  48692. default: true
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(5 + 7/12, "feet"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/callow/front.svg",
  48704. extra: 1482/1304,
  48705. bottom: 23/1505
  48706. }
  48707. },
  48708. back: {
  48709. height: math.unit(5 + 7/12, "feet"),
  48710. name: "Back",
  48711. image: {
  48712. source: "./media/characters/callow/back.svg",
  48713. extra: 1484/1296,
  48714. bottom: 25/1509
  48715. }
  48716. },
  48717. },
  48718. [
  48719. {
  48720. name: "Micro",
  48721. height: math.unit(3, "inches"),
  48722. default: true
  48723. },
  48724. {
  48725. name: "Normal",
  48726. height: math.unit(5 + 7/12, "feet")
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(6 + 2/12, "feet"),
  48735. name: "Front",
  48736. image: {
  48737. source: "./media/characters/natel/front.svg",
  48738. extra: 1833/1692,
  48739. bottom: 166/1999
  48740. }
  48741. },
  48742. },
  48743. [
  48744. {
  48745. name: "Normal",
  48746. height: math.unit(6 + 2/12, "feet"),
  48747. default: true
  48748. },
  48749. ]
  48750. ))
  48751. characterMakers.push(() => makeCharacter(
  48752. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48753. {
  48754. front: {
  48755. height: math.unit(1.75, "meters"),
  48756. name: "Front",
  48757. image: {
  48758. source: "./media/characters/misu/front.svg",
  48759. extra: 1690/1558,
  48760. bottom: 234/1924
  48761. }
  48762. },
  48763. back: {
  48764. height: math.unit(1.75, "meters"),
  48765. name: "Back",
  48766. image: {
  48767. source: "./media/characters/misu/back.svg",
  48768. extra: 1762/1618,
  48769. bottom: 146/1908
  48770. }
  48771. },
  48772. frontNude: {
  48773. height: math.unit(1.75, "meters"),
  48774. name: "Front (Nude)",
  48775. image: {
  48776. source: "./media/characters/misu/front-nude.svg",
  48777. extra: 1690/1558,
  48778. bottom: 234/1924
  48779. }
  48780. },
  48781. backNude: {
  48782. height: math.unit(1.75, "meters"),
  48783. name: "Back (Nude)",
  48784. image: {
  48785. source: "./media/characters/misu/back-nude.svg",
  48786. extra: 1762/1618,
  48787. bottom: 146/1908
  48788. }
  48789. },
  48790. frontErect: {
  48791. height: math.unit(1.75, "meters"),
  48792. name: "Front (Erect)",
  48793. image: {
  48794. source: "./media/characters/misu/front-erect.svg",
  48795. extra: 1690/1558,
  48796. bottom: 234/1924
  48797. }
  48798. },
  48799. maw: {
  48800. height: math.unit(0.47, "meters"),
  48801. name: "Maw",
  48802. image: {
  48803. source: "./media/characters/misu/maw.svg"
  48804. }
  48805. },
  48806. head: {
  48807. height: math.unit(0.35, "meters"),
  48808. name: "Head",
  48809. image: {
  48810. source: "./media/characters/misu/head.svg"
  48811. }
  48812. },
  48813. rear: {
  48814. height: math.unit(0.47, "meters"),
  48815. name: "Rear",
  48816. image: {
  48817. source: "./media/characters/misu/rear.svg"
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(1.75, "meters")
  48825. },
  48826. {
  48827. name: "Not good for the people",
  48828. height: math.unit(42, "meters")
  48829. },
  48830. {
  48831. name: "Not good for the neighborhood",
  48832. height: math.unit(135, "meters")
  48833. },
  48834. {
  48835. name: "Bit bigger problem",
  48836. height: math.unit(380, "meters"),
  48837. default: true
  48838. },
  48839. {
  48840. name: "Not good for the city",
  48841. height: math.unit(1.5, "km")
  48842. },
  48843. {
  48844. name: "Not good for the county",
  48845. height: math.unit(5.5, "km")
  48846. },
  48847. {
  48848. name: "Not good for the state",
  48849. height: math.unit(25, "km")
  48850. },
  48851. {
  48852. name: "Not good for the country",
  48853. height: math.unit(125, "km")
  48854. },
  48855. {
  48856. name: "Not good for the continent",
  48857. height: math.unit(2100, "km")
  48858. },
  48859. {
  48860. name: "Not good for the planet",
  48861. height: math.unit(35000, "km")
  48862. },
  48863. {
  48864. name: "Just no",
  48865. height: math.unit(8.5e18, "km")
  48866. },
  48867. ]
  48868. ))
  48869. characterMakers.push(() => makeCharacter(
  48870. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48871. {
  48872. front: {
  48873. height: math.unit(6.5, "feet"),
  48874. name: "Front",
  48875. image: {
  48876. source: "./media/characters/poppy/front.svg",
  48877. extra: 1878/1812,
  48878. bottom: 43/1921
  48879. }
  48880. },
  48881. feet: {
  48882. height: math.unit(1.06, "feet"),
  48883. name: "Feet",
  48884. image: {
  48885. source: "./media/characters/poppy/feet.svg",
  48886. extra: 1083/1083,
  48887. bottom: 87/1170
  48888. }
  48889. },
  48890. },
  48891. [
  48892. {
  48893. name: "Human",
  48894. height: math.unit(6.5, "feet")
  48895. },
  48896. {
  48897. name: "Default",
  48898. height: math.unit(300, "feet"),
  48899. default: true
  48900. },
  48901. {
  48902. name: "Huge",
  48903. height: math.unit(850, "feet")
  48904. },
  48905. {
  48906. name: "Mega",
  48907. height: math.unit(8000, "feet")
  48908. },
  48909. {
  48910. name: "Giga",
  48911. height: math.unit(300, "miles")
  48912. },
  48913. ]
  48914. ))
  48915. characterMakers.push(() => makeCharacter(
  48916. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48917. {
  48918. bipedal: {
  48919. height: math.unit(7, "feet"),
  48920. name: "Bipedal",
  48921. image: {
  48922. source: "./media/characters/zener/bipedal.svg",
  48923. extra: 874/805,
  48924. bottom: 109/983
  48925. }
  48926. },
  48927. quadrupedal: {
  48928. height: math.unit(4.64, "feet"),
  48929. name: "Quadrupedal",
  48930. image: {
  48931. source: "./media/characters/zener/quadrupedal.svg",
  48932. extra: 638/507,
  48933. bottom: 190/828
  48934. }
  48935. },
  48936. cock: {
  48937. height: math.unit(18, "inches"),
  48938. name: "Cock",
  48939. image: {
  48940. source: "./media/characters/zener/cock.svg"
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Normal",
  48947. height: math.unit(7, "feet"),
  48948. default: true
  48949. },
  48950. ]
  48951. ))
  48952. characterMakers.push(() => makeCharacter(
  48953. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48954. {
  48955. nude: {
  48956. height: math.unit(5 + 6/12, "feet"),
  48957. name: "Nude",
  48958. image: {
  48959. source: "./media/characters/charlie-dog/nude.svg",
  48960. extra: 768/734,
  48961. bottom: 26/794
  48962. }
  48963. },
  48964. dressed: {
  48965. height: math.unit(5 + 6/12, "feet"),
  48966. name: "Dressed",
  48967. image: {
  48968. source: "./media/characters/charlie-dog/dressed.svg",
  48969. extra: 768/734,
  48970. bottom: 26/794
  48971. }
  48972. },
  48973. },
  48974. [
  48975. {
  48976. name: "Normal",
  48977. height: math.unit(5 + 6/12, "feet"),
  48978. default: true
  48979. },
  48980. ]
  48981. ))
  48982. characterMakers.push(() => makeCharacter(
  48983. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48984. {
  48985. front: {
  48986. height: math.unit(6 + 4/12, "feet"),
  48987. name: "Front",
  48988. image: {
  48989. source: "./media/characters/ir'istrasz/front.svg",
  48990. extra: 1014/977,
  48991. bottom: 65/1079
  48992. }
  48993. },
  48994. back: {
  48995. height: math.unit(6 + 4/12, "feet"),
  48996. name: "Back",
  48997. image: {
  48998. source: "./media/characters/ir'istrasz/back.svg",
  48999. extra: 1024/992,
  49000. bottom: 34/1058
  49001. }
  49002. },
  49003. },
  49004. [
  49005. {
  49006. name: "Normal",
  49007. height: math.unit(6 + 4/12, "feet"),
  49008. default: true
  49009. },
  49010. ]
  49011. ))
  49012. characterMakers.push(() => makeCharacter(
  49013. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49014. {
  49015. front: {
  49016. height: math.unit(5 + 8/12, "feet"),
  49017. name: "Front",
  49018. image: {
  49019. source: "./media/characters/dee-ditto/front.svg",
  49020. extra: 1874/1785,
  49021. bottom: 68/1942
  49022. }
  49023. },
  49024. back: {
  49025. height: math.unit(5 + 8/12, "feet"),
  49026. name: "Back",
  49027. image: {
  49028. source: "./media/characters/dee-ditto/back.svg",
  49029. extra: 1870/1783,
  49030. bottom: 77/1947
  49031. }
  49032. },
  49033. },
  49034. [
  49035. {
  49036. name: "Normal",
  49037. height: math.unit(5 + 8/12, "feet"),
  49038. default: true
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49044. {
  49045. front: {
  49046. height: math.unit(7 + 6/12, "feet"),
  49047. name: "Front",
  49048. image: {
  49049. source: "./media/characters/fey/front.svg",
  49050. extra: 995/979,
  49051. bottom: 30/1025
  49052. }
  49053. },
  49054. back: {
  49055. height: math.unit(7 + 6/12, "feet"),
  49056. name: "Back",
  49057. image: {
  49058. source: "./media/characters/fey/back.svg",
  49059. extra: 1079/1008,
  49060. bottom: 5/1084
  49061. }
  49062. },
  49063. dressed: {
  49064. height: math.unit(7 + 6/12, "feet"),
  49065. name: "Dressed",
  49066. image: {
  49067. source: "./media/characters/fey/dressed.svg",
  49068. extra: 995/979,
  49069. bottom: 30/1025
  49070. }
  49071. },
  49072. },
  49073. [
  49074. {
  49075. name: "Normal",
  49076. height: math.unit(7 + 6/12, "feet"),
  49077. default: true
  49078. },
  49079. ]
  49080. ))
  49081. characterMakers.push(() => makeCharacter(
  49082. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49083. {
  49084. standing: {
  49085. height: math.unit(17, "feet"),
  49086. name: "Standing",
  49087. image: {
  49088. source: "./media/characters/aster/standing.svg",
  49089. extra: 1798/1598,
  49090. bottom: 117/1915
  49091. }
  49092. },
  49093. },
  49094. [
  49095. {
  49096. name: "Normal",
  49097. height: math.unit(17, "feet"),
  49098. default: true
  49099. },
  49100. {
  49101. name: "Homewrecker",
  49102. height: math.unit(95, "feet")
  49103. },
  49104. {
  49105. name: "Planet Devourer",
  49106. height: math.unit(1008000, "miles")
  49107. },
  49108. ]
  49109. ))
  49110. characterMakers.push(() => makeCharacter(
  49111. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49112. {
  49113. front: {
  49114. height: math.unit(6 + 5/12, "feet"),
  49115. weight: math.unit(265, "lb"),
  49116. name: "Front",
  49117. image: {
  49118. source: "./media/characters/devon-childs/front.svg",
  49119. extra: 1795/1721,
  49120. bottom: 41/1836
  49121. }
  49122. },
  49123. side: {
  49124. height: math.unit(6 + 5/12, "feet"),
  49125. weight: math.unit(265, "lb"),
  49126. name: "Side",
  49127. image: {
  49128. source: "./media/characters/devon-childs/side.svg",
  49129. extra: 1812/1738,
  49130. bottom: 30/1842
  49131. }
  49132. },
  49133. back: {
  49134. height: math.unit(6 + 5/12, "feet"),
  49135. weight: math.unit(265, "lb"),
  49136. name: "Back",
  49137. image: {
  49138. source: "./media/characters/devon-childs/back.svg",
  49139. extra: 1808/1735,
  49140. bottom: 23/1831
  49141. }
  49142. },
  49143. hand: {
  49144. height: math.unit(1.464, "feet"),
  49145. name: "Hand",
  49146. image: {
  49147. source: "./media/characters/devon-childs/hand.svg"
  49148. }
  49149. },
  49150. foot: {
  49151. height: math.unit(1.6, "feet"),
  49152. name: "Foot",
  49153. image: {
  49154. source: "./media/characters/devon-childs/foot.svg"
  49155. }
  49156. },
  49157. },
  49158. [
  49159. {
  49160. name: "Micro",
  49161. height: math.unit(7, "cm")
  49162. },
  49163. {
  49164. name: "Normal",
  49165. height: math.unit(6 + 5/12, "feet"),
  49166. default: true
  49167. },
  49168. {
  49169. name: "Macro",
  49170. height: math.unit(154, "feet")
  49171. },
  49172. ]
  49173. ))
  49174. characterMakers.push(() => makeCharacter(
  49175. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49176. {
  49177. front: {
  49178. height: math.unit(6, "feet"),
  49179. weight: math.unit(180, "lb"),
  49180. name: "Front",
  49181. image: {
  49182. source: "./media/characters/lydemox-vir/front.svg",
  49183. extra: 1632/1435,
  49184. bottom: 58/1690
  49185. }
  49186. },
  49187. frontSFW: {
  49188. height: math.unit(6, "feet"),
  49189. weight: math.unit(180, "lb"),
  49190. name: "Front (SFW)",
  49191. image: {
  49192. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49193. extra: 1632/1435,
  49194. bottom: 58/1690
  49195. }
  49196. },
  49197. back: {
  49198. height: math.unit(6, "feet"),
  49199. weight: math.unit(180, "lb"),
  49200. name: "Back",
  49201. image: {
  49202. source: "./media/characters/lydemox-vir/back.svg",
  49203. extra: 1593/1408,
  49204. bottom: 31/1624
  49205. }
  49206. },
  49207. paw: {
  49208. height: math.unit(1.85, "feet"),
  49209. name: "Paw",
  49210. image: {
  49211. source: "./media/characters/lydemox-vir/paw.svg"
  49212. }
  49213. },
  49214. dick: {
  49215. height: math.unit(1.8, "feet"),
  49216. name: "Dick",
  49217. image: {
  49218. source: "./media/characters/lydemox-vir/dick.svg"
  49219. }
  49220. },
  49221. },
  49222. [
  49223. {
  49224. name: "Macro",
  49225. height: math.unit(100, "feet"),
  49226. default: true
  49227. },
  49228. {
  49229. name: "Teramacro",
  49230. height: math.unit(1, "earth")
  49231. },
  49232. {
  49233. name: "Planetary",
  49234. height: math.unit(20, "earths")
  49235. },
  49236. ]
  49237. ))
  49238. characterMakers.push(() => makeCharacter(
  49239. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49240. {
  49241. front: {
  49242. height: math.unit(15 + 8/12, "feet"),
  49243. weight: math.unit(1237, "kg"),
  49244. name: "Front",
  49245. image: {
  49246. source: "./media/characters/mia/front.svg",
  49247. extra: 1573/1446,
  49248. bottom: 58/1631
  49249. }
  49250. },
  49251. },
  49252. [
  49253. {
  49254. name: "Small",
  49255. height: math.unit(9 + 5/12, "feet")
  49256. },
  49257. {
  49258. name: "Normal",
  49259. height: math.unit(15 + 8/12, "feet"),
  49260. default: true
  49261. },
  49262. ]
  49263. ))
  49264. characterMakers.push(() => makeCharacter(
  49265. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49266. {
  49267. front: {
  49268. height: math.unit(10 + 6/12, "feet"),
  49269. weight: math.unit(1.3, "tons"),
  49270. name: "Front",
  49271. image: {
  49272. source: "./media/characters/mr-graves/front.svg",
  49273. extra: 1779/1695,
  49274. bottom: 198/1977
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Normal",
  49281. height: math.unit(10 + 6 /12, "feet"),
  49282. default: true
  49283. },
  49284. ]
  49285. ))
  49286. characterMakers.push(() => makeCharacter(
  49287. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49288. {
  49289. dressedFront: {
  49290. height: math.unit(5 + 8/12, "feet"),
  49291. weight: math.unit(125, "lb"),
  49292. name: "Dressed (Front)",
  49293. image: {
  49294. source: "./media/characters/jess/dressed-front.svg",
  49295. extra: 1176/1152,
  49296. bottom: 42/1218
  49297. }
  49298. },
  49299. dressedSide: {
  49300. height: math.unit(5 + 8/12, "feet"),
  49301. weight: math.unit(125, "lb"),
  49302. name: "Dressed (Side)",
  49303. image: {
  49304. source: "./media/characters/jess/dressed-side.svg",
  49305. extra: 1204/1190,
  49306. bottom: 6/1210
  49307. }
  49308. },
  49309. nudeFront: {
  49310. height: math.unit(5 + 8/12, "feet"),
  49311. weight: math.unit(125, "lb"),
  49312. name: "Nude (Front)",
  49313. image: {
  49314. source: "./media/characters/jess/nude-front.svg",
  49315. extra: 1176/1152,
  49316. bottom: 42/1218
  49317. }
  49318. },
  49319. nudeSide: {
  49320. height: math.unit(5 + 8/12, "feet"),
  49321. weight: math.unit(125, "lb"),
  49322. name: "Nude (Side)",
  49323. image: {
  49324. source: "./media/characters/jess/nude-side.svg",
  49325. extra: 1204/1190,
  49326. bottom: 6/1210
  49327. }
  49328. },
  49329. organsFront: {
  49330. height: math.unit(2.83799342105, "feet"),
  49331. name: "Organs (Front)",
  49332. image: {
  49333. source: "./media/characters/jess/organs-front.svg"
  49334. }
  49335. },
  49336. organsSide: {
  49337. height: math.unit(2.64225290474, "feet"),
  49338. name: "Organs (Side)",
  49339. image: {
  49340. source: "./media/characters/jess/organs-side.svg"
  49341. }
  49342. },
  49343. digestiveTractFront: {
  49344. height: math.unit(2.8106580871, "feet"),
  49345. name: "Digestive Tract (Front)",
  49346. image: {
  49347. source: "./media/characters/jess/digestive-tract-front.svg"
  49348. }
  49349. },
  49350. digestiveTractSide: {
  49351. height: math.unit(2.54365045014, "feet"),
  49352. name: "Digestive Tract (Side)",
  49353. image: {
  49354. source: "./media/characters/jess/digestive-tract-side.svg"
  49355. }
  49356. },
  49357. respiratorySystemFront: {
  49358. height: math.unit(1.11196233456, "feet"),
  49359. name: "Respiratory System (Front)",
  49360. image: {
  49361. source: "./media/characters/jess/respiratory-system-front.svg"
  49362. }
  49363. },
  49364. respiratorySystemSide: {
  49365. height: math.unit(0.89327966297, "feet"),
  49366. name: "Respiratory System (Side)",
  49367. image: {
  49368. source: "./media/characters/jess/respiratory-system-side.svg"
  49369. }
  49370. },
  49371. urinaryTractFront: {
  49372. height: math.unit(1.16126356186, "feet"),
  49373. name: "Urinary Tract (Front)",
  49374. image: {
  49375. source: "./media/characters/jess/urinary-tract-front.svg"
  49376. }
  49377. },
  49378. urinaryTractSide: {
  49379. height: math.unit(1.20910039627, "feet"),
  49380. name: "Urinary Tract (Side)",
  49381. image: {
  49382. source: "./media/characters/jess/urinary-tract-side.svg"
  49383. }
  49384. },
  49385. reproductiveOrgansFront: {
  49386. height: math.unit(0.48422591566, "feet"),
  49387. name: "Reproductive Organs (Front)",
  49388. image: {
  49389. source: "./media/characters/jess/reproductive-organs-front.svg"
  49390. }
  49391. },
  49392. reproductiveOrgansSide: {
  49393. height: math.unit(0.61553314481, "feet"),
  49394. name: "Reproductive Organs (Side)",
  49395. image: {
  49396. source: "./media/characters/jess/reproductive-organs-side.svg"
  49397. }
  49398. },
  49399. breastsFront: {
  49400. height: math.unit(0.47690395121, "feet"),
  49401. name: "Breasts (Front)",
  49402. image: {
  49403. source: "./media/characters/jess/breasts-front.svg"
  49404. }
  49405. },
  49406. breastsSide: {
  49407. height: math.unit(0.30556998307, "feet"),
  49408. name: "Breasts (Side)",
  49409. image: {
  49410. source: "./media/characters/jess/breasts-side.svg"
  49411. }
  49412. },
  49413. heartFront: {
  49414. height: math.unit(0.53011022622, "feet"),
  49415. name: "Heart (Front)",
  49416. image: {
  49417. source: "./media/characters/jess/heart-front.svg"
  49418. }
  49419. },
  49420. heartSide: {
  49421. height: math.unit(0.51790695213, "feet"),
  49422. name: "Heart (Side)",
  49423. image: {
  49424. source: "./media/characters/jess/heart-side.svg"
  49425. }
  49426. },
  49427. earsAndNoseFront: {
  49428. height: math.unit(0.29385483995, "feet"),
  49429. name: "Ears and Nose (Front)",
  49430. image: {
  49431. source: "./media/characters/jess/ears-and-nose-front.svg"
  49432. }
  49433. },
  49434. earsAndNoseSide: {
  49435. height: math.unit(0.18109658741, "feet"),
  49436. name: "Ears and Nose (Side)",
  49437. image: {
  49438. source: "./media/characters/jess/ears-and-nose-side.svg"
  49439. }
  49440. },
  49441. },
  49442. [
  49443. {
  49444. name: "Normal",
  49445. height: math.unit(5 + 8/12, "feet"),
  49446. default: true
  49447. },
  49448. ]
  49449. ))
  49450. characterMakers.push(() => makeCharacter(
  49451. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49452. {
  49453. front: {
  49454. height: math.unit(6, "feet"),
  49455. weight: math.unit(6.64467e-7, "grams"),
  49456. name: "Front",
  49457. image: {
  49458. source: "./media/characters/wimpering/front.svg",
  49459. extra: 597/587,
  49460. bottom: 34/631
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Micro",
  49467. height: math.unit(0.4, "mm"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49474. {
  49475. front: {
  49476. height: math.unit(5 + 2/12, "feet"),
  49477. weight: math.unit(110, "lb"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/keltre/front.svg",
  49481. extra: 1099/1057,
  49482. bottom: 22/1121
  49483. }
  49484. },
  49485. back: {
  49486. height: math.unit(5 + 2/12, "feet"),
  49487. weight: math.unit(110, "lb"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/keltre/back.svg",
  49491. extra: 1095/1053,
  49492. bottom: 17/1112
  49493. }
  49494. },
  49495. dressed: {
  49496. height: math.unit(5 + 2/12, "feet"),
  49497. weight: math.unit(110, "lb"),
  49498. name: "Dressed",
  49499. image: {
  49500. source: "./media/characters/keltre/dressed.svg",
  49501. extra: 1099/1057,
  49502. bottom: 22/1121
  49503. }
  49504. },
  49505. winter: {
  49506. height: math.unit(5 + 2/12, "feet"),
  49507. weight: math.unit(110, "lb"),
  49508. name: "Winter",
  49509. image: {
  49510. source: "./media/characters/keltre/winter.svg",
  49511. extra: 1099/1057,
  49512. bottom: 22/1121
  49513. }
  49514. },
  49515. head: {
  49516. height: math.unit(1.61 * 0.86, "feet"),
  49517. name: "Head",
  49518. image: {
  49519. source: "./media/characters/keltre/head.svg",
  49520. extra: 534/421,
  49521. bottom: 0/534
  49522. }
  49523. },
  49524. hand: {
  49525. height: math.unit(1.3 * 0.86, "feet"),
  49526. name: "Hand",
  49527. image: {
  49528. source: "./media/characters/keltre/hand.svg"
  49529. }
  49530. },
  49531. foot: {
  49532. height: math.unit(1.8 * 0.86, "feet"),
  49533. name: "Foot",
  49534. image: {
  49535. source: "./media/characters/keltre/foot.svg"
  49536. }
  49537. },
  49538. },
  49539. [
  49540. {
  49541. name: "Fine",
  49542. height: math.unit(1, "inch")
  49543. },
  49544. {
  49545. name: "Dimnutive",
  49546. height: math.unit(4, "inches")
  49547. },
  49548. {
  49549. name: "Tiny",
  49550. height: math.unit(1, "foot")
  49551. },
  49552. {
  49553. name: "Small",
  49554. height: math.unit(3, "feet")
  49555. },
  49556. {
  49557. name: "Normal",
  49558. height: math.unit(5 + 2/12, "feet"),
  49559. default: true
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(6 + 2/12, "feet"),
  49568. name: "Front",
  49569. image: {
  49570. source: "./media/characters/nox/front.svg",
  49571. extra: 1917/1830,
  49572. bottom: 74/1991
  49573. }
  49574. },
  49575. back: {
  49576. height: math.unit(6 + 2/12, "feet"),
  49577. name: "Back",
  49578. image: {
  49579. source: "./media/characters/nox/back.svg",
  49580. extra: 1896/1815,
  49581. bottom: 21/1917
  49582. }
  49583. },
  49584. head: {
  49585. height: math.unit(1.1, "feet"),
  49586. name: "Head",
  49587. image: {
  49588. source: "./media/characters/nox/head.svg",
  49589. extra: 874/704,
  49590. bottom: 0/874
  49591. }
  49592. },
  49593. tattoo: {
  49594. height: math.unit(0.729, "feet"),
  49595. name: "Tattoo",
  49596. image: {
  49597. source: "./media/characters/nox/tattoo.svg"
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Normal",
  49604. height: math.unit(6 + 2/12, "feet")
  49605. },
  49606. {
  49607. name: "Gigamacro",
  49608. height: math.unit(2, "earths"),
  49609. default: true
  49610. },
  49611. {
  49612. name: "Cosmic",
  49613. height: math.unit(867, "yottameters")
  49614. },
  49615. ]
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49619. {
  49620. front: {
  49621. height: math.unit(6, "feet"),
  49622. weight: math.unit(150, "lb"),
  49623. name: "Front",
  49624. image: {
  49625. source: "./media/characters/caspian/front.svg",
  49626. extra: 1443/1359,
  49627. bottom: 0/1443
  49628. }
  49629. },
  49630. back: {
  49631. height: math.unit(6, "feet"),
  49632. weight: math.unit(150, "lb"),
  49633. name: "Back",
  49634. image: {
  49635. source: "./media/characters/caspian/back.svg",
  49636. extra: 1379/1309,
  49637. bottom: 0/1379
  49638. }
  49639. },
  49640. head: {
  49641. height: math.unit(0.9, "feet"),
  49642. name: "Head",
  49643. image: {
  49644. source: "./media/characters/caspian/head.svg",
  49645. extra: 692/492,
  49646. bottom: 0/692
  49647. }
  49648. },
  49649. headAlt: {
  49650. height: math.unit(0.95, "feet"),
  49651. name: "Head (Alt)",
  49652. image: {
  49653. source: "./media/characters/caspian/head-alt.svg",
  49654. extra: 668/508,
  49655. bottom: 0/668
  49656. }
  49657. },
  49658. hand: {
  49659. height: math.unit(0.8, "feet"),
  49660. name: "Hand",
  49661. image: {
  49662. source: "./media/characters/caspian/hand.svg"
  49663. }
  49664. },
  49665. paw: {
  49666. height: math.unit(0.95, "feet"),
  49667. name: "Paw",
  49668. image: {
  49669. source: "./media/characters/caspian/paw.svg"
  49670. }
  49671. },
  49672. },
  49673. [
  49674. {
  49675. name: "Normal",
  49676. height: math.unit(162, "feet"),
  49677. default: true
  49678. },
  49679. ]
  49680. ))
  49681. characterMakers.push(() => makeCharacter(
  49682. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49683. {
  49684. front: {
  49685. height: math.unit(6, "feet"),
  49686. name: "Front",
  49687. image: {
  49688. source: "./media/characters/myra-aisling/front.svg",
  49689. extra: 1268/1166,
  49690. bottom: 73/1341
  49691. }
  49692. },
  49693. back: {
  49694. height: math.unit(6, "feet"),
  49695. name: "Back",
  49696. image: {
  49697. source: "./media/characters/myra-aisling/back.svg",
  49698. extra: 1249/1149,
  49699. bottom: 79/1328
  49700. }
  49701. },
  49702. dressed: {
  49703. height: math.unit(6, "feet"),
  49704. name: "Dressed",
  49705. image: {
  49706. source: "./media/characters/myra-aisling/dressed.svg",
  49707. extra: 1290/1189,
  49708. bottom: 47/1337
  49709. }
  49710. },
  49711. hand: {
  49712. height: math.unit(1.1, "feet"),
  49713. name: "Hand",
  49714. image: {
  49715. source: "./media/characters/myra-aisling/hand.svg"
  49716. }
  49717. },
  49718. paw: {
  49719. height: math.unit(1.23, "feet"),
  49720. name: "Paw",
  49721. image: {
  49722. source: "./media/characters/myra-aisling/paw.svg"
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(160, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(6, "feet"),
  49739. name: "Front",
  49740. image: {
  49741. source: "./media/characters/tenley-sidero/front.svg",
  49742. extra: 1365/1276,
  49743. bottom: 47/1412
  49744. }
  49745. },
  49746. back: {
  49747. height: math.unit(6, "feet"),
  49748. name: "Back",
  49749. image: {
  49750. source: "./media/characters/tenley-sidero/back.svg",
  49751. extra: 1383/1283,
  49752. bottom: 35/1418
  49753. }
  49754. },
  49755. dressed: {
  49756. height: math.unit(6, "feet"),
  49757. name: "Dressed",
  49758. image: {
  49759. source: "./media/characters/tenley-sidero/dressed.svg",
  49760. extra: 1364/1275,
  49761. bottom: 42/1406
  49762. }
  49763. },
  49764. head: {
  49765. height: math.unit(1.47, "feet"),
  49766. name: "Head",
  49767. image: {
  49768. source: "./media/characters/tenley-sidero/head.svg",
  49769. extra: 610/490,
  49770. bottom: 0/610
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(154, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(5, "inches"),
  49787. name: "Front",
  49788. image: {
  49789. source: "./media/characters/mallory/front.svg",
  49790. extra: 1919/1678,
  49791. bottom: 29/1948
  49792. }
  49793. },
  49794. hand: {
  49795. height: math.unit(0.73, "inches"),
  49796. name: "Hand",
  49797. image: {
  49798. source: "./media/characters/mallory/hand.svg"
  49799. }
  49800. },
  49801. paw: {
  49802. height: math.unit(0.68, "inches"),
  49803. name: "Paw",
  49804. image: {
  49805. source: "./media/characters/mallory/paw.svg"
  49806. }
  49807. },
  49808. },
  49809. [
  49810. {
  49811. name: "Small",
  49812. height: math.unit(5, "inches"),
  49813. default: true
  49814. },
  49815. ]
  49816. ))
  49817. characterMakers.push(() => makeCharacter(
  49818. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49819. {
  49820. naked: {
  49821. height: math.unit(6, "feet"),
  49822. name: "Naked",
  49823. image: {
  49824. source: "./media/characters/mab/naked.svg",
  49825. extra: 1855/1757,
  49826. bottom: 208/2063
  49827. }
  49828. },
  49829. outside: {
  49830. height: math.unit(6, "feet"),
  49831. name: "Outside",
  49832. image: {
  49833. source: "./media/characters/mab/outside.svg",
  49834. extra: 1855/1757,
  49835. bottom: 208/2063
  49836. }
  49837. },
  49838. party: {
  49839. height: math.unit(6, "feet"),
  49840. name: "Party",
  49841. image: {
  49842. source: "./media/characters/mab/party.svg",
  49843. extra: 1855/1757,
  49844. bottom: 208/2063
  49845. }
  49846. },
  49847. },
  49848. [
  49849. {
  49850. name: "Normal",
  49851. height: math.unit(165, "feet"),
  49852. default: true
  49853. },
  49854. ]
  49855. ))
  49856. characterMakers.push(() => makeCharacter(
  49857. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49858. {
  49859. feral: {
  49860. height: math.unit(12, "feet"),
  49861. weight: math.unit(20000, "lb"),
  49862. name: "Side",
  49863. image: {
  49864. source: "./media/characters/winter/feral.svg",
  49865. extra: 1286/943,
  49866. bottom: 112/1398
  49867. },
  49868. form: "feral",
  49869. default: true
  49870. },
  49871. feralNsfw: {
  49872. height: math.unit(12, "feet"),
  49873. weight: math.unit(20000, "lb"),
  49874. name: "Side (NSFW)",
  49875. image: {
  49876. source: "./media/characters/winter/feral-nsfw.svg",
  49877. extra: 1286/943,
  49878. bottom: 112/1398
  49879. },
  49880. form: "feral"
  49881. },
  49882. dick: {
  49883. height: math.unit(3.79, "feet"),
  49884. name: "Dick",
  49885. image: {
  49886. source: "./media/characters/winter/dick.svg"
  49887. },
  49888. form: "feral"
  49889. },
  49890. anthro: {
  49891. height: math.unit(12, "feet"),
  49892. weight: math.unit(10, "tons"),
  49893. name: "Anthro",
  49894. image: {
  49895. source: "./media/characters/winter/anthro.svg",
  49896. extra: 1701/1553,
  49897. bottom: 64/1765
  49898. },
  49899. form: "anthro",
  49900. default: true
  49901. },
  49902. },
  49903. [
  49904. {
  49905. name: "Big",
  49906. height: math.unit(12, "feet"),
  49907. default: true,
  49908. form: "feral"
  49909. },
  49910. {
  49911. name: "Big",
  49912. height: math.unit(12, "feet"),
  49913. default: true,
  49914. form: "anthro"
  49915. },
  49916. ],
  49917. {
  49918. "feral": {
  49919. name: "Feral",
  49920. default: true
  49921. },
  49922. "anthro": {
  49923. name: "Anthro"
  49924. }
  49925. }
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49929. {
  49930. front: {
  49931. height: math.unit(4.1, "inches"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/alto/front.svg",
  49935. extra: 736/627,
  49936. bottom: 90/826
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Normal",
  49943. height: math.unit(4.1, "inches"),
  49944. default: true
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49950. {
  49951. sitting: {
  49952. height: math.unit(3, "feet"),
  49953. name: "Sitting",
  49954. image: {
  49955. source: "./media/characters/ratstrid-v/sitting.svg",
  49956. extra: 355/310,
  49957. bottom: 136/491
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(3, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49971. {
  49972. back: {
  49973. height: math.unit(6, "feet"),
  49974. weight: math.unit(350, "lb"),
  49975. name: "Back",
  49976. image: {
  49977. source: "./media/characters/siz/back.svg",
  49978. extra: 1449/1274,
  49979. bottom: 13/1462
  49980. }
  49981. },
  49982. },
  49983. [
  49984. {
  49985. name: "Over-Overcompressed",
  49986. height: math.unit(8, "feet")
  49987. },
  49988. {
  49989. name: "Overcompressed",
  49990. height: math.unit(32, "feet")
  49991. },
  49992. {
  49993. name: "Compressed",
  49994. height: math.unit(128, "feet"),
  49995. default: true
  49996. },
  49997. {
  49998. name: "Half-Compressed",
  49999. height: math.unit(512, "feet")
  50000. },
  50001. {
  50002. name: "Quarter-Compressed",
  50003. height: math.unit(2048, "feet")
  50004. },
  50005. {
  50006. name: "Uncompressed?",
  50007. height: math.unit(8192, "feet")
  50008. },
  50009. ]
  50010. ))
  50011. characterMakers.push(() => makeCharacter(
  50012. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50013. {
  50014. front: {
  50015. height: math.unit(5 + 9/12, "feet"),
  50016. weight: math.unit(150, "lb"),
  50017. name: "Front",
  50018. image: {
  50019. source: "./media/characters/ven/front.svg",
  50020. extra: 1372/1320,
  50021. bottom: 73/1445
  50022. }
  50023. },
  50024. side: {
  50025. height: math.unit(5 + 9/12, "feet"),
  50026. weight: math.unit(1150, "lb"),
  50027. name: "Side",
  50028. image: {
  50029. source: "./media/characters/ven/side.svg",
  50030. extra: 1119/1070,
  50031. bottom: 42/1161
  50032. },
  50033. default: true
  50034. },
  50035. },
  50036. [
  50037. {
  50038. name: "Normal",
  50039. height: math.unit(5 + 9/12, "feet"),
  50040. default: true
  50041. },
  50042. ]
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50046. {
  50047. front: {
  50048. height: math.unit(12, "feet"),
  50049. weight: math.unit(1000, "kg"),
  50050. name: "Front",
  50051. image: {
  50052. source: "./media/characters/maple/front.svg",
  50053. extra: 1193/1081,
  50054. bottom: 22/1215
  50055. }
  50056. },
  50057. },
  50058. [
  50059. {
  50060. name: "Compressed",
  50061. height: math.unit(7, "feet")
  50062. },
  50063. {
  50064. name: "Normal",
  50065. height: math.unit(12, "feet"),
  50066. default: true
  50067. },
  50068. ]
  50069. ))
  50070. characterMakers.push(() => makeCharacter(
  50071. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50072. {
  50073. front: {
  50074. height: math.unit(9, "feet"),
  50075. weight: math.unit(1500, "lb"),
  50076. name: "Front",
  50077. image: {
  50078. source: "./media/characters/nora/front.svg",
  50079. extra: 1348/1286,
  50080. bottom: 218/1566
  50081. }
  50082. },
  50083. erect: {
  50084. height: math.unit(9, "feet"),
  50085. weight: math.unit(11500, "lb"),
  50086. name: "Erect",
  50087. image: {
  50088. source: "./media/characters/nora/erect.svg",
  50089. extra: 1488/1433,
  50090. bottom: 133/1621
  50091. }
  50092. },
  50093. },
  50094. [
  50095. {
  50096. name: "Normal",
  50097. height: math.unit(9, "feet"),
  50098. default: true
  50099. },
  50100. ]
  50101. ))
  50102. characterMakers.push(() => makeCharacter(
  50103. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50104. {
  50105. front: {
  50106. height: math.unit(25, "feet"),
  50107. weight: math.unit(27500, "lb"),
  50108. name: "Front",
  50109. image: {
  50110. source: "./media/characters/north-caudin/front.svg",
  50111. extra: 1184/1082,
  50112. bottom: 23/1207
  50113. }
  50114. },
  50115. },
  50116. [
  50117. {
  50118. name: "Compressed",
  50119. height: math.unit(10, "feet")
  50120. },
  50121. {
  50122. name: "Normal",
  50123. height: math.unit(25, "feet"),
  50124. default: true
  50125. },
  50126. ]
  50127. ))
  50128. characterMakers.push(() => makeCharacter(
  50129. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50130. {
  50131. front: {
  50132. height: math.unit(9, "feet"),
  50133. weight: math.unit(1250, "lb"),
  50134. name: "Front",
  50135. image: {
  50136. source: "./media/characters/merrian/front.svg",
  50137. extra: 2393/2304,
  50138. bottom: 40/2433
  50139. }
  50140. },
  50141. },
  50142. [
  50143. {
  50144. name: "Normal",
  50145. height: math.unit(9, "feet"),
  50146. default: true
  50147. },
  50148. ]
  50149. ))
  50150. characterMakers.push(() => makeCharacter(
  50151. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50152. {
  50153. front: {
  50154. height: math.unit(9, "feet"),
  50155. weight: math.unit(1000, "lb"),
  50156. name: "Front",
  50157. image: {
  50158. source: "./media/characters/hazel/front.svg",
  50159. extra: 2351/2298,
  50160. bottom: 38/2389
  50161. }
  50162. },
  50163. },
  50164. [
  50165. {
  50166. name: "Normal",
  50167. height: math.unit(9, "feet"),
  50168. default: true
  50169. },
  50170. ]
  50171. ))
  50172. characterMakers.push(() => makeCharacter(
  50173. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50174. {
  50175. front: {
  50176. height: math.unit(13, "feet"),
  50177. weight: math.unit(3200, "lb"),
  50178. name: "Front",
  50179. image: {
  50180. source: "./media/characters/emma/front.svg",
  50181. extra: 2263/2029,
  50182. bottom: 68/2331
  50183. }
  50184. },
  50185. },
  50186. [
  50187. {
  50188. name: "Normal",
  50189. height: math.unit(13, "feet"),
  50190. default: true
  50191. },
  50192. ]
  50193. ))
  50194. characterMakers.push(() => makeCharacter(
  50195. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50196. {
  50197. front: {
  50198. height: math.unit(11 + 9/12, "feet"),
  50199. weight: math.unit(2500, "lb"),
  50200. name: "Front",
  50201. image: {
  50202. source: "./media/characters/ilumina/front.svg",
  50203. extra: 2248/2209,
  50204. bottom: 164/2412
  50205. }
  50206. },
  50207. },
  50208. [
  50209. {
  50210. name: "Normal",
  50211. height: math.unit(11 + 9/12, "feet"),
  50212. default: true
  50213. },
  50214. ]
  50215. ))
  50216. characterMakers.push(() => makeCharacter(
  50217. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50218. {
  50219. front: {
  50220. height: math.unit(8 + 10/12, "feet"),
  50221. weight: math.unit(1350, "lb"),
  50222. name: "Front",
  50223. image: {
  50224. source: "./media/characters/moonshine/front.svg",
  50225. extra: 2395/2288,
  50226. bottom: 40/2435
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Normal",
  50233. height: math.unit(8 + 10/12, "feet"),
  50234. default: true
  50235. },
  50236. ]
  50237. ))
  50238. characterMakers.push(() => makeCharacter(
  50239. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50240. {
  50241. front: {
  50242. height: math.unit(14, "feet"),
  50243. weight: math.unit(3400, "lb"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/aletia/front.svg",
  50247. extra: 1185/1052,
  50248. bottom: 21/1206
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Compressed",
  50255. height: math.unit(8, "feet")
  50256. },
  50257. {
  50258. name: "Normal",
  50259. height: math.unit(14, "feet"),
  50260. default: true
  50261. },
  50262. ]
  50263. ))
  50264. characterMakers.push(() => makeCharacter(
  50265. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50266. {
  50267. front: {
  50268. height: math.unit(17, "feet"),
  50269. weight: math.unit(6500, "lb"),
  50270. name: "Front",
  50271. image: {
  50272. source: "./media/characters/deidra/front.svg",
  50273. extra: 1201/1081,
  50274. bottom: 16/1217
  50275. }
  50276. },
  50277. },
  50278. [
  50279. {
  50280. name: "Compressed",
  50281. height: math.unit(9 + 6/12, "feet")
  50282. },
  50283. {
  50284. name: "Normal",
  50285. height: math.unit(17, "feet"),
  50286. default: true
  50287. },
  50288. ]
  50289. ))
  50290. characterMakers.push(() => makeCharacter(
  50291. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50292. {
  50293. front: {
  50294. height: math.unit(7 + 4/12, "feet"),
  50295. weight: math.unit(280, "lb"),
  50296. name: "Front",
  50297. image: {
  50298. source: "./media/characters/freki-yrmori/front.svg",
  50299. extra: 1286/1182,
  50300. bottom: 29/1315
  50301. }
  50302. },
  50303. maw: {
  50304. height: math.unit(0.9, "feet"),
  50305. name: "Maw",
  50306. image: {
  50307. source: "./media/characters/freki-yrmori/maw.svg"
  50308. }
  50309. },
  50310. },
  50311. [
  50312. {
  50313. name: "Normal",
  50314. height: math.unit(7 + 4/12, "feet"),
  50315. default: true
  50316. },
  50317. {
  50318. name: "Macro",
  50319. height: math.unit(38.5, "meters")
  50320. },
  50321. ]
  50322. ))
  50323. characterMakers.push(() => makeCharacter(
  50324. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50325. {
  50326. side: {
  50327. height: math.unit(47.2, "meters"),
  50328. weight: math.unit(10000, "tons"),
  50329. name: "Side",
  50330. image: {
  50331. source: "./media/characters/aetherios/side.svg",
  50332. extra: 2363/642,
  50333. bottom: 221/2584
  50334. }
  50335. },
  50336. top: {
  50337. height: math.unit(240, "meters"),
  50338. weight: math.unit(10000, "tons"),
  50339. name: "Top",
  50340. image: {
  50341. source: "./media/characters/aetherios/top.svg"
  50342. }
  50343. },
  50344. bottom: {
  50345. height: math.unit(240, "meters"),
  50346. weight: math.unit(10000, "tons"),
  50347. name: "Bottom",
  50348. image: {
  50349. source: "./media/characters/aetherios/bottom.svg"
  50350. }
  50351. },
  50352. head: {
  50353. height: math.unit(38.6, "meters"),
  50354. name: "Head",
  50355. image: {
  50356. source: "./media/characters/aetherios/head.svg",
  50357. extra: 1335/1112,
  50358. bottom: 0/1335
  50359. }
  50360. },
  50361. front: {
  50362. height: math.unit(29, "meters"),
  50363. name: "Front",
  50364. image: {
  50365. source: "./media/characters/aetherios/front.svg",
  50366. extra: 1266/953,
  50367. bottom: 158/1424
  50368. }
  50369. },
  50370. maw: {
  50371. height: math.unit(16.37, "meters"),
  50372. name: "Maw",
  50373. image: {
  50374. source: "./media/characters/aetherios/maw.svg",
  50375. extra: 748/637,
  50376. bottom: 0/748
  50377. },
  50378. extraAttributes: {
  50379. preyCapacity: {
  50380. name: "Capacity",
  50381. power: 3,
  50382. type: "volume",
  50383. base: math.unit(1000, "people")
  50384. },
  50385. tongueSize: {
  50386. name: "Tongue Size",
  50387. power: 2,
  50388. type: "area",
  50389. base: math.unit(21, "m^2")
  50390. }
  50391. }
  50392. },
  50393. forepaw: {
  50394. height: math.unit(18, "meters"),
  50395. name: "Forepaw",
  50396. image: {
  50397. source: "./media/characters/aetherios/forepaw.svg"
  50398. }
  50399. },
  50400. hindpaw: {
  50401. height: math.unit(23, "meters"),
  50402. name: "Hindpaw",
  50403. image: {
  50404. source: "./media/characters/aetherios/hindpaw.svg"
  50405. }
  50406. },
  50407. genitals: {
  50408. height: math.unit(42, "meters"),
  50409. name: "Genitals",
  50410. image: {
  50411. source: "./media/characters/aetherios/genitals.svg"
  50412. }
  50413. },
  50414. },
  50415. [
  50416. {
  50417. name: "Normal",
  50418. height: math.unit(47.2, "meters"),
  50419. default: true
  50420. },
  50421. {
  50422. name: "Macro",
  50423. height: math.unit(160, "meters")
  50424. },
  50425. {
  50426. name: "Mega",
  50427. height: math.unit(1.87, "km")
  50428. },
  50429. {
  50430. name: "Giga",
  50431. height: math.unit(40000, "km")
  50432. },
  50433. {
  50434. name: "Stellar",
  50435. height: math.unit(158000000, "km")
  50436. },
  50437. {
  50438. name: "Cosmic",
  50439. height: math.unit(9.46e12, "km")
  50440. },
  50441. ]
  50442. ))
  50443. characterMakers.push(() => makeCharacter(
  50444. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50445. {
  50446. front: {
  50447. height: math.unit(5 + 4/12, "feet"),
  50448. weight: math.unit(80, "lb"),
  50449. name: "Front",
  50450. image: {
  50451. source: "./media/characters/mizu-gieeg/front.svg",
  50452. extra: 850/709,
  50453. bottom: 52/902
  50454. }
  50455. },
  50456. back: {
  50457. height: math.unit(5 + 4/12, "feet"),
  50458. weight: math.unit(80, "lb"),
  50459. name: "Back",
  50460. image: {
  50461. source: "./media/characters/mizu-gieeg/back.svg",
  50462. extra: 882/745,
  50463. bottom: 25/907
  50464. }
  50465. },
  50466. },
  50467. [
  50468. {
  50469. name: "Normal",
  50470. height: math.unit(5 + 4/12, "feet"),
  50471. default: true
  50472. },
  50473. ]
  50474. ))
  50475. characterMakers.push(() => makeCharacter(
  50476. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50477. {
  50478. front: {
  50479. height: math.unit(6, "feet"),
  50480. name: "Front",
  50481. image: {
  50482. source: "./media/characters/roselle-st-papier/front.svg",
  50483. extra: 1430/1280,
  50484. bottom: 37/1467
  50485. }
  50486. },
  50487. back: {
  50488. height: math.unit(6, "feet"),
  50489. name: "Back",
  50490. image: {
  50491. source: "./media/characters/roselle-st-papier/back.svg",
  50492. extra: 1491/1296,
  50493. bottom: 23/1514
  50494. }
  50495. },
  50496. ear: {
  50497. height: math.unit(1.26, "feet"),
  50498. name: "Ear",
  50499. image: {
  50500. source: "./media/characters/roselle-st-papier/ear.svg"
  50501. }
  50502. },
  50503. },
  50504. [
  50505. {
  50506. name: "Normal",
  50507. height: math.unit(150, "feet"),
  50508. default: true
  50509. },
  50510. ]
  50511. ))
  50512. characterMakers.push(() => makeCharacter(
  50513. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50514. {
  50515. front: {
  50516. height: math.unit(1, "inches"),
  50517. name: "Front",
  50518. image: {
  50519. source: "./media/characters/valargent/front.svg",
  50520. extra: 1825/1694,
  50521. bottom: 62/1887
  50522. }
  50523. },
  50524. back: {
  50525. height: math.unit(1, "inches"),
  50526. name: "Back",
  50527. image: {
  50528. source: "./media/characters/valargent/back.svg",
  50529. extra: 1775/1682,
  50530. bottom: 88/1863
  50531. }
  50532. },
  50533. },
  50534. [
  50535. {
  50536. name: "Micro",
  50537. height: math.unit(1, "inch"),
  50538. default: true
  50539. },
  50540. ]
  50541. ))
  50542. characterMakers.push(() => makeCharacter(
  50543. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50544. {
  50545. front: {
  50546. height: math.unit(3.4, "meters"),
  50547. name: "Front",
  50548. image: {
  50549. source: "./media/characters/zarina/front.svg",
  50550. extra: 1733/1425,
  50551. bottom: 93/1826
  50552. }
  50553. },
  50554. squatting: {
  50555. height: math.unit(2.14, "meters"),
  50556. name: "Squatting",
  50557. image: {
  50558. source: "./media/characters/zarina/squatting.svg",
  50559. extra: 1073/788,
  50560. bottom: 63/1136
  50561. }
  50562. },
  50563. back: {
  50564. height: math.unit(2.14, "meters"),
  50565. name: "Back",
  50566. image: {
  50567. source: "./media/characters/zarina/back.svg",
  50568. extra: 1128/885,
  50569. bottom: 0/1128
  50570. }
  50571. },
  50572. },
  50573. [
  50574. {
  50575. name: "Normal",
  50576. height: math.unit(3.4, "meters"),
  50577. default: true
  50578. },
  50579. {
  50580. name: "Big",
  50581. height: math.unit(5, "meters")
  50582. },
  50583. {
  50584. name: "Macro",
  50585. height: math.unit(110, "meters")
  50586. },
  50587. ]
  50588. ))
  50589. characterMakers.push(() => makeCharacter(
  50590. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50591. {
  50592. front: {
  50593. height: math.unit(7, "feet"),
  50594. name: "Front",
  50595. image: {
  50596. source: "./media/characters/ventus-astro-fox/front.svg",
  50597. extra: 1792/1623,
  50598. bottom: 28/1820
  50599. }
  50600. },
  50601. back: {
  50602. height: math.unit(7, "feet"),
  50603. name: "Back",
  50604. image: {
  50605. source: "./media/characters/ventus-astro-fox/back.svg",
  50606. extra: 1789/1620,
  50607. bottom: 31/1820
  50608. }
  50609. },
  50610. outfit: {
  50611. height: math.unit(7, "feet"),
  50612. name: "Outfit",
  50613. image: {
  50614. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50615. extra: 1054/925,
  50616. bottom: 15/1069
  50617. }
  50618. },
  50619. head: {
  50620. height: math.unit(1.12, "feet"),
  50621. name: "Head",
  50622. image: {
  50623. source: "./media/characters/ventus-astro-fox/head.svg",
  50624. extra: 866/504,
  50625. bottom: 0/866
  50626. }
  50627. },
  50628. hand: {
  50629. height: math.unit(1, "feet"),
  50630. name: "Hand",
  50631. image: {
  50632. source: "./media/characters/ventus-astro-fox/hand.svg"
  50633. }
  50634. },
  50635. paw: {
  50636. height: math.unit(1.5, "feet"),
  50637. name: "Paw",
  50638. image: {
  50639. source: "./media/characters/ventus-astro-fox/paw.svg"
  50640. }
  50641. },
  50642. },
  50643. [
  50644. {
  50645. name: "Normal",
  50646. height: math.unit(7, "feet"),
  50647. default: true
  50648. },
  50649. {
  50650. name: "Macro",
  50651. height: math.unit(200, "feet")
  50652. },
  50653. {
  50654. name: "Cosmic",
  50655. height: math.unit(3, "universes")
  50656. },
  50657. ]
  50658. ))
  50659. characterMakers.push(() => makeCharacter(
  50660. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50661. {
  50662. front: {
  50663. height: math.unit(3, "meters"),
  50664. weight: math.unit(7000, "lb"),
  50665. name: "Front",
  50666. image: {
  50667. source: "./media/characters/core-t/front.svg",
  50668. extra: 5729/4941,
  50669. bottom: 1129/6858
  50670. }
  50671. },
  50672. },
  50673. [
  50674. {
  50675. name: "Big",
  50676. height: math.unit(3, "meters"),
  50677. default: true
  50678. },
  50679. ]
  50680. ))
  50681. characterMakers.push(() => makeCharacter(
  50682. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50683. {
  50684. normal: {
  50685. height: math.unit(6 + 6/12, "feet"),
  50686. weight: math.unit(275, "lb"),
  50687. name: "Front",
  50688. image: {
  50689. source: "./media/characters/cadbunny/normal.svg",
  50690. extra: 1129/947,
  50691. bottom: 93/1222
  50692. },
  50693. default: true,
  50694. form: "normal"
  50695. },
  50696. gigantamax: {
  50697. height: math.unit(26, "feet"),
  50698. weight: math.unit(16000, "lb"),
  50699. name: "Front",
  50700. image: {
  50701. source: "./media/characters/cadbunny/gigantamax.svg",
  50702. extra: 1133/944,
  50703. bottom: 90/1223
  50704. },
  50705. default: true,
  50706. form: "gigantamax"
  50707. },
  50708. },
  50709. [
  50710. {
  50711. name: "Normal",
  50712. height: math.unit(6 + 6/12, "feet"),
  50713. default: true,
  50714. form: "normal"
  50715. },
  50716. {
  50717. name: "Small",
  50718. height: math.unit(26, "feet"),
  50719. default: true,
  50720. form: "gigantamax"
  50721. },
  50722. {
  50723. name: "Large",
  50724. height: math.unit(78, "feet"),
  50725. form: "gigantamax"
  50726. },
  50727. ],
  50728. {
  50729. "normal": {
  50730. name: "Normal",
  50731. default: true
  50732. },
  50733. "gigantamax": {
  50734. name: "Gigantamax"
  50735. }
  50736. }
  50737. ))
  50738. characterMakers.push(() => makeCharacter(
  50739. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50740. {
  50741. anthroFront: {
  50742. height: math.unit(8, "feet"),
  50743. weight: math.unit(300, "lb"),
  50744. name: "Front",
  50745. image: {
  50746. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50747. extra: 1272/1176,
  50748. bottom: 53/1325
  50749. },
  50750. form: "anthro",
  50751. default: true
  50752. },
  50753. feralSide: {
  50754. height: math.unit(4, "feet"),
  50755. weight: math.unit(250, "lb"),
  50756. name: "Side",
  50757. image: {
  50758. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50759. extra: 731/621,
  50760. bottom: 0/731
  50761. },
  50762. form: "feral",
  50763. default: true
  50764. },
  50765. },
  50766. [
  50767. {
  50768. name: "Regular",
  50769. height: math.unit(8, "feet"),
  50770. form: "anthro"
  50771. },
  50772. {
  50773. name: "Macro",
  50774. height: math.unit(250, "feet"),
  50775. form: "anthro",
  50776. default: true
  50777. },
  50778. {
  50779. name: "Regular",
  50780. height: math.unit(4, "feet"),
  50781. form: "feral"
  50782. },
  50783. {
  50784. name: "Macro",
  50785. height: math.unit(125, "feet"),
  50786. form: "feral",
  50787. default: true
  50788. },
  50789. ],
  50790. {
  50791. "anthro": {
  50792. name: "Anthro",
  50793. default: true
  50794. },
  50795. "feral": {
  50796. name: "Feral",
  50797. },
  50798. }
  50799. ))
  50800. characterMakers.push(() => makeCharacter(
  50801. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50802. {
  50803. front: {
  50804. height: math.unit(11 + 10/12, "feet"),
  50805. weight: math.unit(1587, "kg"),
  50806. name: "Front",
  50807. image: {
  50808. source: "./media/characters/maple-javira-dragon/front.svg",
  50809. extra: 1136/744,
  50810. bottom: 73/1209
  50811. }
  50812. },
  50813. side: {
  50814. height: math.unit(11 + 10/12, "feet"),
  50815. weight: math.unit(1587, "kg"),
  50816. name: "Side",
  50817. image: {
  50818. source: "./media/characters/maple-javira-dragon/side.svg",
  50819. extra: 712/505,
  50820. bottom: 17/729
  50821. }
  50822. },
  50823. head: {
  50824. height: math.unit(8.05, "feet"),
  50825. name: "Head",
  50826. image: {
  50827. source: "./media/characters/maple-javira-dragon/head.svg",
  50828. extra: 1420/1344,
  50829. bottom: 0/1420
  50830. }
  50831. },
  50832. },
  50833. [
  50834. {
  50835. name: "Normal",
  50836. height: math.unit(11 + 10/12, "feet"),
  50837. default: true
  50838. },
  50839. ]
  50840. ))
  50841. characterMakers.push(() => makeCharacter(
  50842. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50843. {
  50844. front: {
  50845. height: math.unit(117, "cm"),
  50846. weight: math.unit(50, "kg"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/sonia-wyverntail/front.svg",
  50850. extra: 708/592,
  50851. bottom: 25/733
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Normal",
  50858. height: math.unit(117, "cm"),
  50859. default: true
  50860. },
  50861. ]
  50862. ))
  50863. characterMakers.push(() => makeCharacter(
  50864. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50865. {
  50866. front: {
  50867. height: math.unit(6 + 5/12, "feet"),
  50868. name: "Front",
  50869. image: {
  50870. source: "./media/characters/micah/front.svg",
  50871. extra: 1758/1546,
  50872. bottom: 214/1972
  50873. }
  50874. },
  50875. },
  50876. [
  50877. {
  50878. name: "Normal",
  50879. height: math.unit(6 + 5/12, "feet"),
  50880. default: true
  50881. },
  50882. ]
  50883. ))
  50884. characterMakers.push(() => makeCharacter(
  50885. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50886. {
  50887. front: {
  50888. height: math.unit(5 + 10/12, "feet"),
  50889. weight: math.unit(220, "lb"),
  50890. name: "Front",
  50891. image: {
  50892. source: "./media/characters/zarya/front.svg",
  50893. extra: 593/572,
  50894. bottom: 50/643
  50895. }
  50896. },
  50897. back: {
  50898. height: math.unit(5 + 10/12, "feet"),
  50899. weight: math.unit(220, "lb"),
  50900. name: "Back",
  50901. image: {
  50902. source: "./media/characters/zarya/back.svg",
  50903. extra: 603/582,
  50904. bottom: 38/641
  50905. }
  50906. },
  50907. },
  50908. [
  50909. {
  50910. name: "Normal",
  50911. height: math.unit(5 + 10/12, "feet"),
  50912. default: true
  50913. },
  50914. ]
  50915. ))
  50916. characterMakers.push(() => makeCharacter(
  50917. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50918. {
  50919. front: {
  50920. height: math.unit(7.5, "feet"),
  50921. name: "Front",
  50922. image: {
  50923. source: "./media/characters/sven-hatisson/front.svg",
  50924. extra: 917/857,
  50925. bottom: 42/959
  50926. }
  50927. },
  50928. back: {
  50929. height: math.unit(7.5, "feet"),
  50930. name: "Back",
  50931. image: {
  50932. source: "./media/characters/sven-hatisson/back.svg",
  50933. extra: 903/856,
  50934. bottom: 15/918
  50935. }
  50936. },
  50937. },
  50938. [
  50939. {
  50940. name: "Base Height",
  50941. height: math.unit(7.5, "feet")
  50942. },
  50943. {
  50944. name: "Usual Height",
  50945. height: math.unit(13.5, "feet"),
  50946. default: true
  50947. },
  50948. {
  50949. name: "Smaller Macro",
  50950. height: math.unit(85, "feet")
  50951. },
  50952. {
  50953. name: "Moderate Macro",
  50954. height: math.unit(320, "feet")
  50955. },
  50956. {
  50957. name: "Large Macro",
  50958. height: math.unit(1000, "feet")
  50959. },
  50960. {
  50961. name: "Largest Size",
  50962. height: math.unit(2, "miles")
  50963. },
  50964. ]
  50965. ))
  50966. characterMakers.push(() => makeCharacter(
  50967. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50968. {
  50969. side: {
  50970. height: math.unit(1.8, "meters"),
  50971. weight: math.unit(275, "kg"),
  50972. name: "Side",
  50973. image: {
  50974. source: "./media/characters/terra/side.svg",
  50975. extra: 1273/1147,
  50976. bottom: 0/1273
  50977. }
  50978. },
  50979. },
  50980. [
  50981. {
  50982. name: "Normal",
  50983. height: math.unit(16.2, "meters"),
  50984. default: true
  50985. },
  50986. ]
  50987. ))
  50988. characterMakers.push(() => makeCharacter(
  50989. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50990. {
  50991. borzoiFront: {
  50992. height: math.unit(6 + 9/12, "feet"),
  50993. name: "Front",
  50994. image: {
  50995. source: "./media/characters/rae/borzoi-front.svg",
  50996. extra: 1161/1098,
  50997. bottom: 31/1192
  50998. },
  50999. form: "borzoi",
  51000. default: true
  51001. },
  51002. werewolfFront: {
  51003. height: math.unit(8 + 7/12, "feet"),
  51004. name: "Front",
  51005. image: {
  51006. source: "./media/characters/rae/werewolf-front.svg",
  51007. extra: 1411/1334,
  51008. bottom: 127/1538
  51009. },
  51010. form: "werewolf",
  51011. default: true
  51012. },
  51013. },
  51014. [
  51015. {
  51016. name: "Normal",
  51017. height: math.unit(6 + 9/12, "feet"),
  51018. default: true,
  51019. form: "borzoi"
  51020. },
  51021. {
  51022. name: "Normal",
  51023. height: math.unit(8 + 7/12, "feet"),
  51024. default: true,
  51025. form: "werewolf"
  51026. },
  51027. ],
  51028. {
  51029. "borzoi": {
  51030. name: "Borzoi",
  51031. default: true
  51032. },
  51033. "werewolf": {
  51034. name: "Werewolf",
  51035. },
  51036. }
  51037. ))
  51038. characterMakers.push(() => makeCharacter(
  51039. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51040. {
  51041. front: {
  51042. height: math.unit(8 + 7/12, "feet"),
  51043. weight: math.unit(482, "lb"),
  51044. name: "Front",
  51045. image: {
  51046. source: "./media/characters/kit/front.svg",
  51047. extra: 1247/1103,
  51048. bottom: 41/1288
  51049. }
  51050. },
  51051. back: {
  51052. height: math.unit(8 + 7/12, "feet"),
  51053. weight: math.unit(482, "lb"),
  51054. name: "Back",
  51055. image: {
  51056. source: "./media/characters/kit/back.svg",
  51057. extra: 1252/1123,
  51058. bottom: 21/1273
  51059. }
  51060. },
  51061. paw: {
  51062. height: math.unit(1.46, "feet"),
  51063. name: "Paw",
  51064. image: {
  51065. source: "./media/characters/kit/paw.svg"
  51066. }
  51067. },
  51068. },
  51069. [
  51070. {
  51071. name: "Normal",
  51072. height: math.unit(2.61, "meters"),
  51073. default: true
  51074. },
  51075. {
  51076. name: "\"Tall\"",
  51077. height: math.unit(8.21, "meters")
  51078. },
  51079. {
  51080. name: "Tall",
  51081. height: math.unit(19.6, "meters")
  51082. },
  51083. {
  51084. name: "Very Tall",
  51085. height: math.unit(57.91, "meters")
  51086. },
  51087. {
  51088. name: "Semi-Macro",
  51089. height: math.unit(138.64, "meters")
  51090. },
  51091. {
  51092. name: "Macro",
  51093. height: math.unit(831.99, "meters")
  51094. },
  51095. {
  51096. name: "EX-Macro",
  51097. height: math.unit(96451121, "meters")
  51098. },
  51099. {
  51100. name: "S1-Omnipotent",
  51101. height: math.unit(4.42074e+9, "meters")
  51102. },
  51103. {
  51104. name: "S2-Omnipotent",
  51105. height: math.unit(9.42074e+17, "meters")
  51106. },
  51107. {
  51108. name: "Omnipotent",
  51109. height: math.unit(4.23112e+24, "meters")
  51110. },
  51111. {
  51112. name: "Hypergod",
  51113. height: math.unit(5.05176e+27, "meters")
  51114. },
  51115. {
  51116. name: "Hypergod-EX",
  51117. height: math.unit(9.45532e+49, "meters")
  51118. },
  51119. {
  51120. name: "Hypergod-SP",
  51121. height: math.unit(9.45532e+195, "meters")
  51122. },
  51123. ]
  51124. ))
  51125. characterMakers.push(() => makeCharacter(
  51126. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51127. {
  51128. side: {
  51129. height: math.unit(0.6, "meters"),
  51130. weight: math.unit(24, "kg"),
  51131. name: "Side",
  51132. image: {
  51133. source: "./media/characters/celeste/side.svg",
  51134. extra: 810/517,
  51135. bottom: 53/863
  51136. }
  51137. },
  51138. },
  51139. [
  51140. {
  51141. name: "Velociraptor",
  51142. height: math.unit(0.6, "meters"),
  51143. default: true
  51144. },
  51145. {
  51146. name: "Utahraptor",
  51147. height: math.unit(1.8, "meters")
  51148. },
  51149. {
  51150. name: "Gallimimus",
  51151. height: math.unit(4.0, "meters")
  51152. },
  51153. {
  51154. name: "Large",
  51155. height: math.unit(20, "meters")
  51156. },
  51157. {
  51158. name: "Planetary",
  51159. height: math.unit(50, "megameters")
  51160. },
  51161. {
  51162. name: "Stellar",
  51163. height: math.unit(1.5, "gigameters")
  51164. },
  51165. {
  51166. name: "Galactic",
  51167. height: math.unit(100, "exameters")
  51168. },
  51169. ]
  51170. ))
  51171. characterMakers.push(() => makeCharacter(
  51172. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51173. {
  51174. front: {
  51175. height: math.unit(6, "feet"),
  51176. weight: math.unit(210, "lb"),
  51177. name: "Front",
  51178. image: {
  51179. source: "./media/characters/glacia/front.svg",
  51180. extra: 958/901,
  51181. bottom: 45/1003
  51182. }
  51183. },
  51184. },
  51185. [
  51186. {
  51187. name: "Macro",
  51188. height: math.unit(1000, "meters"),
  51189. default: true
  51190. },
  51191. ]
  51192. ))
  51193. characterMakers.push(() => makeCharacter(
  51194. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51195. {
  51196. front: {
  51197. height: math.unit(4, "meters"),
  51198. name: "Front",
  51199. image: {
  51200. source: "./media/characters/giri/front.svg",
  51201. extra: 966/894,
  51202. bottom: 21/987
  51203. }
  51204. },
  51205. },
  51206. [
  51207. {
  51208. name: "Normal",
  51209. height: math.unit(4, "meters"),
  51210. default: true
  51211. },
  51212. ]
  51213. ))
  51214. characterMakers.push(() => makeCharacter(
  51215. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51216. {
  51217. back: {
  51218. height: math.unit(4, "feet"),
  51219. weight: math.unit(37, "lb"),
  51220. name: "Back",
  51221. image: {
  51222. source: "./media/characters/tin/back.svg",
  51223. extra: 845/780,
  51224. bottom: 28/873
  51225. }
  51226. },
  51227. },
  51228. [
  51229. {
  51230. name: "Normal",
  51231. height: math.unit(4, "feet"),
  51232. default: true
  51233. },
  51234. ]
  51235. ))
  51236. characterMakers.push(() => makeCharacter(
  51237. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51238. {
  51239. front: {
  51240. height: math.unit(25, "feet"),
  51241. name: "Front",
  51242. image: {
  51243. source: "./media/characters/cadenza-vivace/front.svg",
  51244. extra: 1842/1578,
  51245. bottom: 30/1872
  51246. }
  51247. },
  51248. },
  51249. [
  51250. {
  51251. name: "Macro",
  51252. height: math.unit(25, "feet"),
  51253. default: true
  51254. },
  51255. ]
  51256. ))
  51257. characterMakers.push(() => makeCharacter(
  51258. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51259. {
  51260. front: {
  51261. height: math.unit(10, "feet"),
  51262. weight: math.unit(625, "kg"),
  51263. name: "Front",
  51264. image: {
  51265. source: "./media/characters/zain/front.svg",
  51266. extra: 1682/1498,
  51267. bottom: 223/1905
  51268. }
  51269. },
  51270. back: {
  51271. height: math.unit(10, "feet"),
  51272. weight: math.unit(625, "kg"),
  51273. name: "Back",
  51274. image: {
  51275. source: "./media/characters/zain/back.svg",
  51276. extra: 1814/1657,
  51277. bottom: 152/1966
  51278. }
  51279. },
  51280. head: {
  51281. height: math.unit(10, "feet"),
  51282. weight: math.unit(625, "kg"),
  51283. name: "Head",
  51284. image: {
  51285. source: "./media/characters/zain/head.svg",
  51286. extra: 1059/762,
  51287. bottom: 0/1059
  51288. }
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(10, "feet"),
  51295. default: true
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(6 + 5/12, "feet"),
  51304. weight: math.unit(750, "lb"),
  51305. name: "Front",
  51306. image: {
  51307. source: "./media/characters/ruchex/front.svg",
  51308. extra: 877/820,
  51309. bottom: 17/894
  51310. },
  51311. extraAttributes: {
  51312. "width": {
  51313. name: "Width",
  51314. power: 1,
  51315. type: "length",
  51316. base: math.unit(4.757, "feet")
  51317. },
  51318. }
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Normal",
  51324. height: math.unit(6 + 5/12, "feet"),
  51325. default: true
  51326. },
  51327. ]
  51328. ))
  51329. characterMakers.push(() => makeCharacter(
  51330. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51331. {
  51332. dressedFront: {
  51333. height: math.unit(191, "cm"),
  51334. weight: math.unit(80, "kg"),
  51335. name: "Front",
  51336. image: {
  51337. source: "./media/characters/buster/dressed-front.svg",
  51338. extra: 1022/973,
  51339. bottom: 69/1091
  51340. }
  51341. },
  51342. dressedBack: {
  51343. height: math.unit(191, "cm"),
  51344. weight: math.unit(80, "kg"),
  51345. name: "Back",
  51346. image: {
  51347. source: "./media/characters/buster/dressed-back.svg",
  51348. extra: 1018/970,
  51349. bottom: 55/1073
  51350. }
  51351. },
  51352. nudeFront: {
  51353. height: math.unit(191, "cm"),
  51354. weight: math.unit(80, "kg"),
  51355. name: "Front (Nude)",
  51356. image: {
  51357. source: "./media/characters/buster/nude-front.svg",
  51358. extra: 1022/973,
  51359. bottom: 69/1091
  51360. }
  51361. },
  51362. nudeBack: {
  51363. height: math.unit(191, "cm"),
  51364. weight: math.unit(80, "kg"),
  51365. name: "Back (Nude)",
  51366. image: {
  51367. source: "./media/characters/buster/nude-back.svg",
  51368. extra: 1018/970,
  51369. bottom: 55/1073
  51370. }
  51371. },
  51372. dick: {
  51373. height: math.unit(2.59, "feet"),
  51374. name: "Dick",
  51375. image: {
  51376. source: "./media/characters/buster/dick.svg"
  51377. }
  51378. },
  51379. ass: {
  51380. height: math.unit(1.2, "feet"),
  51381. name: "Ass",
  51382. image: {
  51383. source: "./media/characters/buster/ass.svg"
  51384. }
  51385. },
  51386. },
  51387. [
  51388. {
  51389. name: "Normal",
  51390. height: math.unit(191, "cm"),
  51391. default: true
  51392. },
  51393. ]
  51394. ))
  51395. characterMakers.push(() => makeCharacter(
  51396. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51397. {
  51398. side: {
  51399. height: math.unit(8.1, "feet"),
  51400. weight: math.unit(3500, "lb"),
  51401. name: "Side",
  51402. image: {
  51403. source: "./media/characters/sonya/side.svg",
  51404. extra: 1730/1317,
  51405. bottom: 86/1816
  51406. }
  51407. },
  51408. },
  51409. [
  51410. {
  51411. name: "Normal",
  51412. height: math.unit(8.1, "feet"),
  51413. default: true
  51414. },
  51415. ]
  51416. ))
  51417. characterMakers.push(() => makeCharacter(
  51418. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51419. {
  51420. front: {
  51421. height: math.unit(6, "feet"),
  51422. weight: math.unit(150, "lb"),
  51423. name: "Front",
  51424. image: {
  51425. source: "./media/characters/cadence-andrysiak/front.svg",
  51426. extra: 1164/1121,
  51427. bottom: 60/1224
  51428. }
  51429. },
  51430. back: {
  51431. height: math.unit(6, "feet"),
  51432. weight: math.unit(150, "lb"),
  51433. name: "Back",
  51434. image: {
  51435. source: "./media/characters/cadence-andrysiak/back.svg",
  51436. extra: 1200/1165,
  51437. bottom: 9/1209
  51438. }
  51439. },
  51440. dressed: {
  51441. height: math.unit(6, "feet"),
  51442. weight: math.unit(150, "lb"),
  51443. name: "Dressed",
  51444. image: {
  51445. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51446. extra: 1164/1121,
  51447. bottom: 60/1224
  51448. }
  51449. },
  51450. },
  51451. [
  51452. {
  51453. name: "Micro",
  51454. height: math.unit(1, "mm")
  51455. },
  51456. {
  51457. name: "Normal",
  51458. height: math.unit(6, "feet"),
  51459. default: true
  51460. },
  51461. ]
  51462. ))
  51463. characterMakers.push(() => makeCharacter(
  51464. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51465. {
  51466. front: {
  51467. height: math.unit(60, "inches"),
  51468. weight: math.unit(16, "lb"),
  51469. preyCapacity: math.unit(80, "liters"),
  51470. name: "Front",
  51471. image: {
  51472. source: "./media/characters/penny-lynx/front.svg",
  51473. extra: 1959/1769,
  51474. bottom: 49/2008
  51475. }
  51476. },
  51477. },
  51478. [
  51479. {
  51480. name: "Nokia",
  51481. height: math.unit(2, "inches")
  51482. },
  51483. {
  51484. name: "Desktop",
  51485. height: math.unit(24, "inches")
  51486. },
  51487. {
  51488. name: "TV",
  51489. height: math.unit(60, "inches")
  51490. },
  51491. {
  51492. name: "Jumbotron",
  51493. height: math.unit(12, "feet")
  51494. },
  51495. {
  51496. name: "Billboard",
  51497. height: math.unit(48, "feet"),
  51498. default: true
  51499. },
  51500. {
  51501. name: "IMAX",
  51502. height: math.unit(96, "feet")
  51503. },
  51504. {
  51505. name: "SINGULARITY",
  51506. height: math.unit(864938, "miles")
  51507. },
  51508. ]
  51509. ))
  51510. characterMakers.push(() => makeCharacter(
  51511. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51512. {
  51513. front: {
  51514. height: math.unit(5 + 4/12, "feet"),
  51515. weight: math.unit(230, "lb"),
  51516. name: "Front",
  51517. image: {
  51518. source: "./media/characters/sukebe/front.svg",
  51519. extra: 2130/2038,
  51520. bottom: 90/2220
  51521. }
  51522. },
  51523. back: {
  51524. height: math.unit(3.48, "feet"),
  51525. weight: math.unit(230, "lb"),
  51526. name: "Back",
  51527. image: {
  51528. source: "./media/characters/sukebe/back.svg",
  51529. extra: 1670/1604,
  51530. bottom: 0/1670
  51531. }
  51532. },
  51533. },
  51534. [
  51535. {
  51536. name: "Normal",
  51537. height: math.unit(5 + 4/12, "feet"),
  51538. default: true
  51539. },
  51540. ]
  51541. ))
  51542. characterMakers.push(() => makeCharacter(
  51543. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51544. {
  51545. front: {
  51546. height: math.unit(6, "feet"),
  51547. name: "Front",
  51548. image: {
  51549. source: "./media/characters/nylla/front.svg",
  51550. extra: 1868/1699,
  51551. bottom: 97/1965
  51552. }
  51553. },
  51554. back: {
  51555. height: math.unit(6, "feet"),
  51556. name: "Back",
  51557. image: {
  51558. source: "./media/characters/nylla/back.svg",
  51559. extra: 1889/1712,
  51560. bottom: 93/1982
  51561. }
  51562. },
  51563. frontNsfw: {
  51564. height: math.unit(6, "feet"),
  51565. name: "Front (NSFW)",
  51566. image: {
  51567. source: "./media/characters/nylla/front-nsfw.svg",
  51568. extra: 1868/1699,
  51569. bottom: 97/1965
  51570. },
  51571. extraAttributes: {
  51572. "dickLength": {
  51573. name: "Dick Length",
  51574. power: 1,
  51575. type: "length",
  51576. base: math.unit(1.4, "feet")
  51577. },
  51578. "cumVolume": {
  51579. name: "Cum Volume",
  51580. power: 3,
  51581. type: "volume",
  51582. base: math.unit(100, "mL")
  51583. },
  51584. }
  51585. },
  51586. backNsfw: {
  51587. height: math.unit(6, "feet"),
  51588. name: "Back (NSFW)",
  51589. image: {
  51590. source: "./media/characters/nylla/back-nsfw.svg",
  51591. extra: 1889/1712,
  51592. bottom: 93/1982
  51593. }
  51594. },
  51595. maw: {
  51596. height: math.unit(2.10, "feet"),
  51597. name: "Maw",
  51598. image: {
  51599. source: "./media/characters/nylla/maw.svg"
  51600. }
  51601. },
  51602. paws: {
  51603. height: math.unit(2.06, "feet"),
  51604. name: "Paws",
  51605. image: {
  51606. source: "./media/characters/nylla/paws.svg"
  51607. }
  51608. },
  51609. muzzle: {
  51610. height: math.unit(0.61, "feet"),
  51611. name: "Muzzle",
  51612. image: {
  51613. source: "./media/characters/nylla/muzzle.svg"
  51614. }
  51615. },
  51616. sheath: {
  51617. height: math.unit(1.305, "feet"),
  51618. name: "Sheath",
  51619. image: {
  51620. source: "./media/characters/nylla/sheath.svg"
  51621. }
  51622. },
  51623. },
  51624. [
  51625. {
  51626. name: "Micro",
  51627. height: math.unit(7.5, "inches")
  51628. },
  51629. {
  51630. name: "Normal",
  51631. height: math.unit(7, "feet"),
  51632. default: true
  51633. },
  51634. {
  51635. name: "Macro",
  51636. height: math.unit(60, "feet")
  51637. },
  51638. {
  51639. name: "Mega",
  51640. height: math.unit(200, "feet")
  51641. },
  51642. ]
  51643. ))
  51644. characterMakers.push(() => makeCharacter(
  51645. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51646. {
  51647. front: {
  51648. height: math.unit(10, "feet"),
  51649. weight: math.unit(2300, "lb"),
  51650. name: "Front",
  51651. image: {
  51652. source: "./media/characters/hunt3r/front.svg",
  51653. extra: 1909/1742,
  51654. bottom: 46/1955
  51655. }
  51656. },
  51657. },
  51658. [
  51659. {
  51660. name: "Normal",
  51661. height: math.unit(10, "feet"),
  51662. default: true
  51663. },
  51664. ]
  51665. ))
  51666. characterMakers.push(() => makeCharacter(
  51667. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51668. {
  51669. dressed: {
  51670. height: math.unit(11, "feet"),
  51671. weight: math.unit(18500, "lb"),
  51672. preyCapacity: math.unit(9, "people"),
  51673. name: "Dressed",
  51674. image: {
  51675. source: "./media/characters/cylphis/dressed.svg",
  51676. extra: 1028/1003,
  51677. bottom: 75/1103
  51678. },
  51679. },
  51680. undressed: {
  51681. height: math.unit(11, "feet"),
  51682. weight: math.unit(18500, "lb"),
  51683. preyCapacity: math.unit(9, "people"),
  51684. name: "Undressed",
  51685. image: {
  51686. source: "./media/characters/cylphis/undressed.svg",
  51687. extra: 1028/1003,
  51688. bottom: 75/1103
  51689. }
  51690. },
  51691. full: {
  51692. height: math.unit(11, "feet"),
  51693. weight: math.unit(18500 + 150*9, "lb"),
  51694. preyCapacity: math.unit(9, "people"),
  51695. name: "Full",
  51696. image: {
  51697. source: "./media/characters/cylphis/full.svg",
  51698. extra: 1028/1003,
  51699. bottom: 75/1103
  51700. }
  51701. },
  51702. },
  51703. [
  51704. {
  51705. name: "Small",
  51706. height: math.unit(8, "feet")
  51707. },
  51708. {
  51709. name: "Normal",
  51710. height: math.unit(11, "feet"),
  51711. default: true
  51712. },
  51713. ]
  51714. ))
  51715. characterMakers.push(() => makeCharacter(
  51716. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51717. {
  51718. front: {
  51719. height: math.unit(2 + 7/12, "feet"),
  51720. name: "Front",
  51721. image: {
  51722. source: "./media/characters/orishan/front.svg",
  51723. extra: 1058/1023,
  51724. bottom: 23/1081
  51725. }
  51726. },
  51727. back: {
  51728. height: math.unit(2 + 7/12, "feet"),
  51729. name: "Back",
  51730. image: {
  51731. source: "./media/characters/orishan/back.svg",
  51732. extra: 1058/1023,
  51733. bottom: 23/1081
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Micro",
  51740. height: math.unit(2, "cm")
  51741. },
  51742. {
  51743. name: "Normal",
  51744. height: math.unit(2 + 7/12, "feet"),
  51745. default: true
  51746. },
  51747. ]
  51748. ))
  51749. characterMakers.push(() => makeCharacter(
  51750. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51751. {
  51752. front: {
  51753. height: math.unit(3, "meters"),
  51754. weight: math.unit(508, "kg"),
  51755. name: "Front",
  51756. image: {
  51757. source: "./media/characters/seranis/front.svg",
  51758. extra: 1478/1454,
  51759. bottom: 41/1519
  51760. }
  51761. },
  51762. },
  51763. [
  51764. {
  51765. name: "Normal",
  51766. height: math.unit(3, "meters"),
  51767. default: true
  51768. },
  51769. {
  51770. name: "Macro",
  51771. height: math.unit(108, "meters")
  51772. },
  51773. {
  51774. name: "Megamacro",
  51775. height: math.unit(1250, "meters")
  51776. },
  51777. ]
  51778. ))
  51779. characterMakers.push(() => makeCharacter(
  51780. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51781. {
  51782. undressed: {
  51783. height: math.unit(5 + 3/12, "feet"),
  51784. name: "Undressed",
  51785. image: {
  51786. source: "./media/characters/ankou/undressed.svg",
  51787. extra: 1301/1213,
  51788. bottom: 87/1388
  51789. }
  51790. },
  51791. dressed: {
  51792. height: math.unit(5 + 3/12, "feet"),
  51793. name: "Dressed",
  51794. image: {
  51795. source: "./media/characters/ankou/dressed.svg",
  51796. extra: 1301/1213,
  51797. bottom: 87/1388
  51798. }
  51799. },
  51800. head: {
  51801. height: math.unit(1.61, "feet"),
  51802. name: "Head",
  51803. image: {
  51804. source: "./media/characters/ankou/head.svg"
  51805. }
  51806. },
  51807. },
  51808. [
  51809. {
  51810. name: "Normal",
  51811. height: math.unit(5 + 3/12, "feet"),
  51812. default: true
  51813. },
  51814. ]
  51815. ))
  51816. characterMakers.push(() => makeCharacter(
  51817. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51818. {
  51819. side: {
  51820. height: math.unit(6 + 3/12, "feet"),
  51821. weight: math.unit(200, "kg"),
  51822. name: "Side",
  51823. image: {
  51824. source: "./media/characters/juniper-skunktaur/side.svg",
  51825. extra: 1574/1229,
  51826. bottom: 38/1612
  51827. }
  51828. },
  51829. front: {
  51830. height: math.unit(6 + 3/12, "feet"),
  51831. weight: math.unit(200, "kg"),
  51832. name: "Front",
  51833. image: {
  51834. source: "./media/characters/juniper-skunktaur/front.svg",
  51835. extra: 1337/1278,
  51836. bottom: 22/1359
  51837. }
  51838. },
  51839. back: {
  51840. height: math.unit(6 + 3/12, "feet"),
  51841. weight: math.unit(200, "kg"),
  51842. name: "Back",
  51843. image: {
  51844. source: "./media/characters/juniper-skunktaur/back.svg",
  51845. extra: 1618/1273,
  51846. bottom: 13/1631
  51847. }
  51848. },
  51849. top: {
  51850. height: math.unit(2.62, "feet"),
  51851. weight: math.unit(200, "kg"),
  51852. name: "Top",
  51853. image: {
  51854. source: "./media/characters/juniper-skunktaur/top.svg"
  51855. }
  51856. },
  51857. },
  51858. [
  51859. {
  51860. name: "Normal",
  51861. height: math.unit(6 + 3/12, "feet"),
  51862. default: true
  51863. },
  51864. ]
  51865. ))
  51866. characterMakers.push(() => makeCharacter(
  51867. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51868. {
  51869. front: {
  51870. height: math.unit(20.5, "feet"),
  51871. name: "Front",
  51872. image: {
  51873. source: "./media/characters/rei/front.svg",
  51874. extra: 1349/1195,
  51875. bottom: 31/1380
  51876. }
  51877. },
  51878. back: {
  51879. height: math.unit(20.5, "feet"),
  51880. name: "Back",
  51881. image: {
  51882. source: "./media/characters/rei/back.svg",
  51883. extra: 1358/1204,
  51884. bottom: 22/1380
  51885. }
  51886. },
  51887. pawsDigi: {
  51888. height: math.unit(3.45, "feet"),
  51889. name: "Paws (Digi)",
  51890. image: {
  51891. source: "./media/characters/rei/paws-digi.svg"
  51892. }
  51893. },
  51894. pawsPlanti: {
  51895. height: math.unit(3.45, "feet"),
  51896. name: "Paws (Planti)",
  51897. image: {
  51898. source: "./media/characters/rei/paws-planti.svg"
  51899. }
  51900. },
  51901. },
  51902. [
  51903. {
  51904. name: "Normal",
  51905. height: math.unit(20.5, "feet"),
  51906. default: true
  51907. },
  51908. ]
  51909. ))
  51910. characterMakers.push(() => makeCharacter(
  51911. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51912. {
  51913. front: {
  51914. height: math.unit(5 + 11/12, "feet"),
  51915. name: "Front",
  51916. image: {
  51917. source: "./media/characters/carina/front.svg",
  51918. extra: 1720/1449,
  51919. bottom: 14/1734
  51920. }
  51921. },
  51922. back: {
  51923. height: math.unit(5 + 11/12, "feet"),
  51924. name: "Back",
  51925. image: {
  51926. source: "./media/characters/carina/back.svg",
  51927. extra: 1493/1445,
  51928. bottom: 17/1510
  51929. }
  51930. },
  51931. paw: {
  51932. height: math.unit(0.92, "feet"),
  51933. name: "Paw",
  51934. image: {
  51935. source: "./media/characters/carina/paw.svg"
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(5 + 11/12, "feet"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51949. {
  51950. front: {
  51951. height: math.unit(4.88, "meters"),
  51952. name: "Front",
  51953. image: {
  51954. source: "./media/characters/maya/front.svg",
  51955. extra: 1222/1145,
  51956. bottom: 57/1279
  51957. }
  51958. },
  51959. },
  51960. [
  51961. {
  51962. name: "Normal",
  51963. height: math.unit(4.88, "meters"),
  51964. default: true
  51965. },
  51966. {
  51967. name: "Macro",
  51968. height: math.unit(38.1, "meters")
  51969. },
  51970. {
  51971. name: "Macro+",
  51972. height: math.unit(152.4, "meters")
  51973. },
  51974. {
  51975. name: "Macro++",
  51976. height: math.unit(16.09, "km")
  51977. },
  51978. {
  51979. name: "Mega-macro",
  51980. height: math.unit(700, "megameters")
  51981. },
  51982. ]
  51983. ))
  51984. characterMakers.push(() => makeCharacter(
  51985. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51986. {
  51987. front: {
  51988. height: math.unit(6 + 2/12, "feet"),
  51989. weight: math.unit(500, "lb"),
  51990. preyCapacity: math.unit(4, "people"),
  51991. name: "Front",
  51992. image: {
  51993. source: "./media/characters/yepir/front.svg"
  51994. }
  51995. },
  51996. side: {
  51997. height: math.unit(6 + 2/12, "feet"),
  51998. weight: math.unit(500, "lb"),
  51999. preyCapacity: math.unit(4, "people"),
  52000. name: "Side",
  52001. image: {
  52002. source: "./media/characters/yepir/side.svg"
  52003. }
  52004. },
  52005. paw: {
  52006. height: math.unit(1.05, "feet"),
  52007. name: "Paw",
  52008. image: {
  52009. source: "./media/characters/yepir/paw.svg"
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Normal",
  52016. height: math.unit(6 + 2/12, "feet"),
  52017. default: true
  52018. },
  52019. ]
  52020. ))
  52021. characterMakers.push(() => makeCharacter(
  52022. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52023. {
  52024. front: {
  52025. height: math.unit(5 + 4/12, "feet"),
  52026. name: "Front",
  52027. image: {
  52028. source: "./media/characters/russec/front.svg",
  52029. extra: 1926/1626,
  52030. bottom: 72/1998
  52031. }
  52032. },
  52033. back: {
  52034. height: math.unit(5 + 4/12, "feet"),
  52035. name: "Back",
  52036. image: {
  52037. source: "./media/characters/russec/back.svg",
  52038. extra: 1910/1591,
  52039. bottom: 48/1958
  52040. }
  52041. },
  52042. },
  52043. [
  52044. {
  52045. name: "Small",
  52046. height: math.unit(5 + 4/12, "feet")
  52047. },
  52048. {
  52049. name: "Normal",
  52050. height: math.unit(72, "feet"),
  52051. default: true
  52052. },
  52053. ]
  52054. ))
  52055. characterMakers.push(() => makeCharacter(
  52056. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52057. {
  52058. side: {
  52059. height: math.unit(12, "feet"),
  52060. name: "Side",
  52061. image: {
  52062. source: "./media/characters/cianus/side.svg",
  52063. extra: 808/526,
  52064. bottom: 61/869
  52065. }
  52066. },
  52067. },
  52068. [
  52069. {
  52070. name: "Normal",
  52071. height: math.unit(12, "feet"),
  52072. default: true
  52073. },
  52074. ]
  52075. ))
  52076. characterMakers.push(() => makeCharacter(
  52077. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52078. {
  52079. front: {
  52080. height: math.unit(9 + 6/12, "feet"),
  52081. weight: math.unit(300, "lb"),
  52082. name: "Front",
  52083. image: {
  52084. source: "./media/characters/ahab/front.svg",
  52085. extra: 1897/1868,
  52086. bottom: 121/2018
  52087. }
  52088. },
  52089. frontNsfw: {
  52090. height: math.unit(9 + 6/12, "feet"),
  52091. weight: math.unit(300, "lb"),
  52092. name: "Front-nsfw",
  52093. image: {
  52094. source: "./media/characters/ahab/front-nsfw.svg",
  52095. extra: 1897/1868,
  52096. bottom: 121/2018
  52097. }
  52098. },
  52099. },
  52100. [
  52101. {
  52102. name: "Normal",
  52103. height: math.unit(9 + 6/12, "feet")
  52104. },
  52105. {
  52106. name: "Macro",
  52107. height: math.unit(657, "feet"),
  52108. default: true
  52109. },
  52110. ]
  52111. ))
  52112. characterMakers.push(() => makeCharacter(
  52113. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52114. {
  52115. front: {
  52116. height: math.unit(2.69, "meters"),
  52117. weight: math.unit(132, "kg"),
  52118. name: "Front",
  52119. image: {
  52120. source: "./media/characters/aarkus/front.svg",
  52121. extra: 1400/1231,
  52122. bottom: 34/1434
  52123. }
  52124. },
  52125. back: {
  52126. height: math.unit(2.69, "meters"),
  52127. weight: math.unit(132, "kg"),
  52128. name: "Back",
  52129. image: {
  52130. source: "./media/characters/aarkus/back.svg",
  52131. extra: 1381/1218,
  52132. bottom: 30/1411
  52133. }
  52134. },
  52135. frontNsfw: {
  52136. height: math.unit(2.69, "meters"),
  52137. weight: math.unit(132, "kg"),
  52138. name: "Front (NSFW)",
  52139. image: {
  52140. source: "./media/characters/aarkus/front-nsfw.svg",
  52141. extra: 1400/1231,
  52142. bottom: 34/1434
  52143. }
  52144. },
  52145. foot: {
  52146. height: math.unit(1.45, "feet"),
  52147. name: "Foot",
  52148. image: {
  52149. source: "./media/characters/aarkus/foot.svg"
  52150. }
  52151. },
  52152. head: {
  52153. height: math.unit(2.85, "feet"),
  52154. name: "Head",
  52155. image: {
  52156. source: "./media/characters/aarkus/head.svg"
  52157. }
  52158. },
  52159. headAlt: {
  52160. height: math.unit(3.07, "feet"),
  52161. name: "Head (Alt)",
  52162. image: {
  52163. source: "./media/characters/aarkus/head-alt.svg"
  52164. }
  52165. },
  52166. mouth: {
  52167. height: math.unit(1.25, "feet"),
  52168. name: "Mouth",
  52169. image: {
  52170. source: "./media/characters/aarkus/mouth.svg"
  52171. }
  52172. },
  52173. dick: {
  52174. height: math.unit(1.77, "feet"),
  52175. name: "Dick",
  52176. image: {
  52177. source: "./media/characters/aarkus/dick.svg"
  52178. }
  52179. },
  52180. },
  52181. [
  52182. {
  52183. name: "Normal",
  52184. height: math.unit(2.69, "meters"),
  52185. default: true
  52186. },
  52187. {
  52188. name: "Macro",
  52189. height: math.unit(269, "meters")
  52190. },
  52191. {
  52192. name: "Macro+",
  52193. height: math.unit(672.5, "meters")
  52194. },
  52195. {
  52196. name: "Megamacro",
  52197. height: math.unit(2.017, "km")
  52198. },
  52199. ]
  52200. ))
  52201. characterMakers.push(() => makeCharacter(
  52202. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52203. {
  52204. front: {
  52205. height: math.unit(23.47, "cm"),
  52206. weight: math.unit(600, "grams"),
  52207. name: "Front",
  52208. image: {
  52209. source: "./media/characters/diode/front.svg",
  52210. extra: 1778/1396,
  52211. bottom: 95/1873
  52212. }
  52213. },
  52214. side: {
  52215. height: math.unit(23.47, "cm"),
  52216. weight: math.unit(600, "grams"),
  52217. name: "Side",
  52218. image: {
  52219. source: "./media/characters/diode/side.svg",
  52220. extra: 1831/1404,
  52221. bottom: 86/1917
  52222. }
  52223. },
  52224. wings: {
  52225. height: math.unit(0.683, "feet"),
  52226. name: "Wings",
  52227. image: {
  52228. source: "./media/characters/diode/wings.svg"
  52229. }
  52230. },
  52231. },
  52232. [
  52233. {
  52234. name: "Normal",
  52235. height: math.unit(23.47, "cm"),
  52236. default: true
  52237. },
  52238. ]
  52239. ))
  52240. characterMakers.push(() => makeCharacter(
  52241. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52242. {
  52243. front: {
  52244. height: math.unit(6 + 3/12, "feet"),
  52245. weight: math.unit(250, "lb"),
  52246. name: "Front",
  52247. image: {
  52248. source: "./media/characters/reika/front.svg",
  52249. extra: 1120/1078,
  52250. bottom: 86/1206
  52251. }
  52252. },
  52253. },
  52254. [
  52255. {
  52256. name: "Normal",
  52257. height: math.unit(6 + 3/12, "feet"),
  52258. default: true
  52259. },
  52260. ]
  52261. ))
  52262. characterMakers.push(() => makeCharacter(
  52263. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52264. {
  52265. front: {
  52266. height: math.unit(16 + 8/12, "feet"),
  52267. weight: math.unit(9000, "lb"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/lokuto-takama/front.svg",
  52271. extra: 1774/1632,
  52272. bottom: 147/1921
  52273. },
  52274. extraAttributes: {
  52275. "bustWidth": {
  52276. name: "Bust Width",
  52277. power: 1,
  52278. type: "length",
  52279. base: math.unit(2.4, "meters")
  52280. },
  52281. "breastWeight": {
  52282. name: "Breast Weight",
  52283. power: 3,
  52284. type: "mass",
  52285. base: math.unit(1000, "kg")
  52286. },
  52287. }
  52288. },
  52289. },
  52290. [
  52291. {
  52292. name: "Normal",
  52293. height: math.unit(16 + 8/12, "feet"),
  52294. default: true
  52295. },
  52296. ]
  52297. ))
  52298. characterMakers.push(() => makeCharacter(
  52299. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52300. {
  52301. front: {
  52302. height: math.unit(10, "cm"),
  52303. weight: math.unit(850, "grams"),
  52304. name: "Front",
  52305. image: {
  52306. source: "./media/characters/owak-bone/front.svg",
  52307. extra: 1965/1801,
  52308. bottom: 31/1996
  52309. }
  52310. },
  52311. },
  52312. [
  52313. {
  52314. name: "Normal",
  52315. height: math.unit(10, "cm"),
  52316. default: true
  52317. },
  52318. ]
  52319. ))
  52320. characterMakers.push(() => makeCharacter(
  52321. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52322. {
  52323. front: {
  52324. height: math.unit(2 + 6/12, "feet"),
  52325. weight: math.unit(9, "lb"),
  52326. name: "Front",
  52327. image: {
  52328. source: "./media/characters/muffin/front.svg",
  52329. extra: 1220/1195,
  52330. bottom: 84/1304
  52331. }
  52332. },
  52333. },
  52334. [
  52335. {
  52336. name: "Normal",
  52337. height: math.unit(2 + 6/12, "feet"),
  52338. default: true
  52339. },
  52340. ]
  52341. ))
  52342. characterMakers.push(() => makeCharacter(
  52343. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52344. {
  52345. front: {
  52346. height: math.unit(7, "feet"),
  52347. name: "Front",
  52348. image: {
  52349. source: "./media/characters/chimera/front.svg",
  52350. extra: 1752/1614,
  52351. bottom: 68/1820
  52352. }
  52353. },
  52354. },
  52355. [
  52356. {
  52357. name: "Normal",
  52358. height: math.unit(7, "feet")
  52359. },
  52360. {
  52361. name: "Gigamacro",
  52362. height: math.unit(2.9, "gigameters"),
  52363. default: true
  52364. },
  52365. {
  52366. name: "Universal",
  52367. height: math.unit(1.56e26, "yottameters")
  52368. },
  52369. ]
  52370. ))
  52371. characterMakers.push(() => makeCharacter(
  52372. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52373. {
  52374. front: {
  52375. height: math.unit(3, "feet"),
  52376. weight: math.unit(20, "lb"),
  52377. name: "Front",
  52378. image: {
  52379. source: "./media/characters/kit-fennec-fox/front.svg",
  52380. extra: 1027/932,
  52381. bottom: 16/1043
  52382. }
  52383. },
  52384. back: {
  52385. height: math.unit(3, "feet"),
  52386. weight: math.unit(20, "lb"),
  52387. name: "Back",
  52388. image: {
  52389. source: "./media/characters/kit-fennec-fox/back.svg",
  52390. extra: 1027/932,
  52391. bottom: 16/1043
  52392. }
  52393. },
  52394. },
  52395. [
  52396. {
  52397. name: "Normal",
  52398. height: math.unit(3, "feet"),
  52399. default: true
  52400. },
  52401. ]
  52402. ))
  52403. characterMakers.push(() => makeCharacter(
  52404. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52405. {
  52406. front: {
  52407. height: math.unit(167, "cm"),
  52408. name: "Front",
  52409. image: {
  52410. source: "./media/characters/blue-otter/front.svg",
  52411. extra: 1951/1920,
  52412. bottom: 31/1982
  52413. }
  52414. },
  52415. },
  52416. [
  52417. {
  52418. name: "Otter-Sized",
  52419. height: math.unit(100, "cm")
  52420. },
  52421. {
  52422. name: "Normal",
  52423. height: math.unit(167, "cm"),
  52424. default: true
  52425. },
  52426. ]
  52427. ))
  52428. characterMakers.push(() => makeCharacter(
  52429. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52430. {
  52431. front: {
  52432. height: math.unit(4 + 4/12, "feet"),
  52433. name: "Front",
  52434. image: {
  52435. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52436. extra: 1072/1067,
  52437. bottom: 117/1189
  52438. }
  52439. },
  52440. back: {
  52441. height: math.unit(4 + 4/12, "feet"),
  52442. name: "Back",
  52443. image: {
  52444. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52445. extra: 1135/1129,
  52446. bottom: 57/1192
  52447. }
  52448. },
  52449. head: {
  52450. height: math.unit(1.77, "feet"),
  52451. name: "Head",
  52452. image: {
  52453. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52454. }
  52455. },
  52456. },
  52457. [
  52458. {
  52459. name: "Normal",
  52460. height: math.unit(4 + 4/12, "feet"),
  52461. default: true
  52462. },
  52463. ]
  52464. ))
  52465. characterMakers.push(() => makeCharacter(
  52466. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52467. {
  52468. front: {
  52469. height: math.unit(2, "inches"),
  52470. name: "Front",
  52471. image: {
  52472. source: "./media/characters/carley-hartford/front.svg",
  52473. extra: 1035/988,
  52474. bottom: 23/1058
  52475. }
  52476. },
  52477. back: {
  52478. height: math.unit(2, "inches"),
  52479. name: "Back",
  52480. image: {
  52481. source: "./media/characters/carley-hartford/back.svg",
  52482. extra: 1035/988,
  52483. bottom: 23/1058
  52484. }
  52485. },
  52486. dressed: {
  52487. height: math.unit(2, "inches"),
  52488. name: "Dressed",
  52489. image: {
  52490. source: "./media/characters/carley-hartford/dressed.svg",
  52491. extra: 651/620,
  52492. bottom: 0/651
  52493. }
  52494. },
  52495. },
  52496. [
  52497. {
  52498. name: "Micro",
  52499. height: math.unit(2, "inches"),
  52500. default: true
  52501. },
  52502. {
  52503. name: "Macro",
  52504. height: math.unit(6 + 3/12, "feet")
  52505. },
  52506. ]
  52507. ))
  52508. characterMakers.push(() => makeCharacter(
  52509. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52510. {
  52511. front: {
  52512. height: math.unit(2 + 3/12, "feet"),
  52513. weight: math.unit(15 + 7/16, "lb"),
  52514. name: "Front",
  52515. image: {
  52516. source: "./media/characters/duke/front.svg",
  52517. extra: 910/815,
  52518. bottom: 30/940
  52519. }
  52520. },
  52521. },
  52522. [
  52523. {
  52524. name: "Normal",
  52525. height: math.unit(2 + 3/12, "feet"),
  52526. default: true
  52527. },
  52528. ]
  52529. ))
  52530. characterMakers.push(() => makeCharacter(
  52531. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52532. {
  52533. front: {
  52534. height: math.unit(5 + 4/12, "feet"),
  52535. weight: math.unit(156, "lb"),
  52536. name: "Front",
  52537. image: {
  52538. source: "./media/characters/dein/front.svg",
  52539. extra: 855/815,
  52540. bottom: 48/903
  52541. }
  52542. },
  52543. side: {
  52544. height: math.unit(5 + 4/12, "feet"),
  52545. weight: math.unit(156, "lb"),
  52546. name: "side",
  52547. image: {
  52548. source: "./media/characters/dein/side.svg",
  52549. extra: 846/803,
  52550. bottom: 25/871
  52551. }
  52552. },
  52553. maw: {
  52554. height: math.unit(1.45, "feet"),
  52555. name: "Maw",
  52556. image: {
  52557. source: "./media/characters/dein/maw.svg"
  52558. }
  52559. },
  52560. },
  52561. [
  52562. {
  52563. name: "Ferret Sized",
  52564. height: math.unit(2 + 5/12, "feet")
  52565. },
  52566. {
  52567. name: "Normal",
  52568. height: math.unit(5 + 4/12, "feet"),
  52569. default: true
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52575. {
  52576. front: {
  52577. height: math.unit(84 + 8/12, "feet"),
  52578. weight: math.unit(942180, "lb"),
  52579. name: "Front",
  52580. image: {
  52581. source: "./media/characters/daurine-arima/front.svg",
  52582. extra: 1989/1782,
  52583. bottom: 37/2026
  52584. }
  52585. },
  52586. side: {
  52587. height: math.unit(84 + 8/12, "feet"),
  52588. weight: math.unit(942180, "lb"),
  52589. name: "Side",
  52590. image: {
  52591. source: "./media/characters/daurine-arima/side.svg",
  52592. extra: 1997/1790,
  52593. bottom: 21/2018
  52594. }
  52595. },
  52596. back: {
  52597. height: math.unit(84 + 8/12, "feet"),
  52598. weight: math.unit(942180, "lb"),
  52599. name: "Back",
  52600. image: {
  52601. source: "./media/characters/daurine-arima/back.svg",
  52602. extra: 1992/1800,
  52603. bottom: 12/2004
  52604. }
  52605. },
  52606. head: {
  52607. height: math.unit(15.5, "feet"),
  52608. name: "Head",
  52609. image: {
  52610. source: "./media/characters/daurine-arima/head.svg"
  52611. }
  52612. },
  52613. headAlt: {
  52614. height: math.unit(19.19, "feet"),
  52615. name: "Head (Alt)",
  52616. image: {
  52617. source: "./media/characters/daurine-arima/head-alt.svg"
  52618. }
  52619. },
  52620. },
  52621. [
  52622. {
  52623. name: "Minimum height",
  52624. height: math.unit(8 + 10/12, "feet")
  52625. },
  52626. {
  52627. name: "Comfort height",
  52628. height: math.unit(19 + 6 /12, "feet")
  52629. },
  52630. {
  52631. name: "\"Normal\" height",
  52632. height: math.unit(28 + 10/12, "feet")
  52633. },
  52634. {
  52635. name: "Base height",
  52636. height: math.unit(84 + 8/12, "feet"),
  52637. default: true
  52638. },
  52639. {
  52640. name: "Mini-macro",
  52641. height: math.unit(2360, "feet")
  52642. },
  52643. {
  52644. name: "Macro",
  52645. height: math.unit(10, "miles")
  52646. },
  52647. {
  52648. name: "Goddess",
  52649. height: math.unit(9.99e40, "yottameters")
  52650. },
  52651. ]
  52652. ))
  52653. characterMakers.push(() => makeCharacter(
  52654. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52655. {
  52656. front: {
  52657. height: math.unit(2.3, "meters"),
  52658. name: "Front",
  52659. image: {
  52660. source: "./media/characters/cilenomon/front.svg",
  52661. extra: 1963/1778,
  52662. bottom: 54/2017
  52663. }
  52664. },
  52665. },
  52666. [
  52667. {
  52668. name: "Normal",
  52669. height: math.unit(2.3, "meters"),
  52670. default: true
  52671. },
  52672. {
  52673. name: "Big",
  52674. height: math.unit(5, "meters")
  52675. },
  52676. {
  52677. name: "Macro",
  52678. height: math.unit(30, "meters")
  52679. },
  52680. {
  52681. name: "True",
  52682. height: math.unit(1, "universe")
  52683. },
  52684. ]
  52685. ))
  52686. characterMakers.push(() => makeCharacter(
  52687. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52688. {
  52689. front: {
  52690. height: math.unit(5, "feet"),
  52691. name: "Front",
  52692. image: {
  52693. source: "./media/characters/sen-mink/front.svg",
  52694. extra: 1727/1675,
  52695. bottom: 35/1762
  52696. }
  52697. },
  52698. },
  52699. [
  52700. {
  52701. name: "Normal",
  52702. height: math.unit(5, "feet"),
  52703. default: true
  52704. },
  52705. ]
  52706. ))
  52707. characterMakers.push(() => makeCharacter(
  52708. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52709. {
  52710. front: {
  52711. height: math.unit(5.42999, "feet"),
  52712. weight: math.unit(100, "lb"),
  52713. name: "Front",
  52714. image: {
  52715. source: "./media/characters/ophois/front.svg",
  52716. extra: 1429/1286,
  52717. bottom: 60/1489
  52718. }
  52719. },
  52720. },
  52721. [
  52722. {
  52723. name: "Normal",
  52724. height: math.unit(5.42999, "feet"),
  52725. default: true
  52726. },
  52727. ]
  52728. ))
  52729. characterMakers.push(() => makeCharacter(
  52730. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52731. {
  52732. front: {
  52733. height: math.unit(2, "meters"),
  52734. name: "Front",
  52735. image: {
  52736. source: "./media/characters/riley/front.svg",
  52737. extra: 1779/1754,
  52738. bottom: 139/1918
  52739. }
  52740. },
  52741. },
  52742. [
  52743. {
  52744. name: "Normal",
  52745. height: math.unit(2, "meters"),
  52746. default: true
  52747. },
  52748. ]
  52749. ))
  52750. characterMakers.push(() => makeCharacter(
  52751. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52752. {
  52753. front: {
  52754. height: math.unit(6 + 2/12, "feet"),
  52755. weight: math.unit(195, "lb"),
  52756. preyCapacity: math.unit(6, "people"),
  52757. name: "Front",
  52758. image: {
  52759. source: "./media/characters/shuken-flash/front.svg",
  52760. extra: 1905/1739,
  52761. bottom: 65/1970
  52762. }
  52763. },
  52764. back: {
  52765. height: math.unit(6 + 2/12, "feet"),
  52766. weight: math.unit(195, "lb"),
  52767. preyCapacity: math.unit(6, "people"),
  52768. name: "Back",
  52769. image: {
  52770. source: "./media/characters/shuken-flash/back.svg",
  52771. extra: 1912/1751,
  52772. bottom: 13/1925
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(6 + 2/12, "feet"),
  52780. default: true
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(5 + 9/12, "feet"),
  52789. weight: math.unit(150, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/plat/front.svg",
  52793. extra: 1816/1703,
  52794. bottom: 43/1859
  52795. }
  52796. },
  52797. side: {
  52798. height: math.unit(5 + 9/12, "feet"),
  52799. weight: math.unit(300, "lb"),
  52800. name: "Side",
  52801. image: {
  52802. source: "./media/characters/plat/side.svg",
  52803. extra: 1824/1699,
  52804. bottom: 18/1842
  52805. }
  52806. },
  52807. },
  52808. [
  52809. {
  52810. name: "Normal",
  52811. height: math.unit(5 + 9/12, "feet"),
  52812. default: true
  52813. },
  52814. ]
  52815. ))
  52816. characterMakers.push(() => makeCharacter(
  52817. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52818. {
  52819. front: {
  52820. height: math.unit(9, "feet"),
  52821. weight: math.unit(1800, "lb"),
  52822. name: "Front",
  52823. image: {
  52824. source: "./media/characters/elaine/front.svg",
  52825. extra: 1833/1354,
  52826. bottom: 25/1858
  52827. }
  52828. },
  52829. back: {
  52830. height: math.unit(8.8, "feet"),
  52831. weight: math.unit(1800, "lb"),
  52832. name: "Back",
  52833. image: {
  52834. source: "./media/characters/elaine/back.svg",
  52835. extra: 1641/1233,
  52836. bottom: 53/1694
  52837. }
  52838. },
  52839. },
  52840. [
  52841. {
  52842. name: "Normal",
  52843. height: math.unit(9, "feet"),
  52844. default: true
  52845. },
  52846. ]
  52847. ))
  52848. characterMakers.push(() => makeCharacter(
  52849. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52850. {
  52851. front: {
  52852. height: math.unit(17 + 9/12, "feet"),
  52853. weight: math.unit(8000, "lb"),
  52854. name: "Front",
  52855. image: {
  52856. source: "./media/characters/vera-raven/front.svg",
  52857. extra: 1457/1412,
  52858. bottom: 121/1578
  52859. }
  52860. },
  52861. side: {
  52862. height: math.unit(17 + 9/12, "feet"),
  52863. weight: math.unit(8000, "lb"),
  52864. name: "Side",
  52865. image: {
  52866. source: "./media/characters/vera-raven/side.svg",
  52867. extra: 1510/1464,
  52868. bottom: 54/1564
  52869. }
  52870. },
  52871. },
  52872. [
  52873. {
  52874. name: "Normal",
  52875. height: math.unit(17 + 9/12, "feet"),
  52876. default: true
  52877. },
  52878. ]
  52879. ))
  52880. characterMakers.push(() => makeCharacter(
  52881. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52882. {
  52883. dressed: {
  52884. height: math.unit(6 + 9/12, "feet"),
  52885. name: "Dressed",
  52886. image: {
  52887. source: "./media/characters/nakisha/dressed.svg",
  52888. extra: 1909/1757,
  52889. bottom: 48/1957
  52890. }
  52891. },
  52892. nude: {
  52893. height: math.unit(6 + 9/12, "feet"),
  52894. name: "Nude",
  52895. image: {
  52896. source: "./media/characters/nakisha/nude.svg",
  52897. extra: 1917/1765,
  52898. bottom: 34/1951
  52899. }
  52900. },
  52901. },
  52902. [
  52903. {
  52904. name: "Normal",
  52905. height: math.unit(6 + 9/12, "feet"),
  52906. default: true
  52907. },
  52908. ]
  52909. ))
  52910. characterMakers.push(() => makeCharacter(
  52911. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52912. {
  52913. front: {
  52914. height: math.unit(87, "meters"),
  52915. name: "Front",
  52916. image: {
  52917. source: "./media/characters/serafin/front.svg",
  52918. extra: 1919/1776,
  52919. bottom: 65/1984
  52920. }
  52921. },
  52922. },
  52923. [
  52924. {
  52925. name: "Normal",
  52926. height: math.unit(87, "meters"),
  52927. default: true
  52928. },
  52929. ]
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52933. {
  52934. front: {
  52935. height: math.unit(6, "feet"),
  52936. weight: math.unit(200, "lb"),
  52937. name: "Front",
  52938. image: {
  52939. source: "./media/characters/poptart/front.svg",
  52940. extra: 615/583,
  52941. bottom: 23/638
  52942. }
  52943. },
  52944. back: {
  52945. height: math.unit(6, "feet"),
  52946. weight: math.unit(200, "lb"),
  52947. name: "Back",
  52948. image: {
  52949. source: "./media/characters/poptart/back.svg",
  52950. extra: 617/584,
  52951. bottom: 22/639
  52952. }
  52953. },
  52954. frontNsfw: {
  52955. height: math.unit(6, "feet"),
  52956. weight: math.unit(200, "lb"),
  52957. name: "Front (NSFW)",
  52958. image: {
  52959. source: "./media/characters/poptart/front-nsfw.svg",
  52960. extra: 615/583,
  52961. bottom: 23/638
  52962. }
  52963. },
  52964. backNsfw: {
  52965. height: math.unit(6, "feet"),
  52966. weight: math.unit(200, "lb"),
  52967. name: "Back (NSFW)",
  52968. image: {
  52969. source: "./media/characters/poptart/back-nsfw.svg",
  52970. extra: 617/584,
  52971. bottom: 22/639
  52972. }
  52973. },
  52974. hand: {
  52975. height: math.unit(1.14, "feet"),
  52976. name: "Hand",
  52977. image: {
  52978. source: "./media/characters/poptart/hand.svg"
  52979. }
  52980. },
  52981. foot: {
  52982. height: math.unit(1.5, "feet"),
  52983. name: "Foot",
  52984. image: {
  52985. source: "./media/characters/poptart/foot.svg"
  52986. }
  52987. },
  52988. },
  52989. [
  52990. {
  52991. name: "Normal",
  52992. height: math.unit(6, "feet"),
  52993. default: true
  52994. },
  52995. {
  52996. name: "Grande",
  52997. height: math.unit(350, "feet")
  52998. },
  52999. {
  53000. name: "Massif",
  53001. height: math.unit(967, "feet")
  53002. },
  53003. ]
  53004. ))
  53005. characterMakers.push(() => makeCharacter(
  53006. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53007. {
  53008. hyenaSide: {
  53009. height: math.unit(120, "cm"),
  53010. weight: math.unit(120, "lb"),
  53011. name: "Side",
  53012. image: {
  53013. source: "./media/characters/trance/hyena-side.svg",
  53014. extra: 998/904,
  53015. bottom: 76/1074
  53016. }
  53017. },
  53018. },
  53019. [
  53020. {
  53021. name: "Normal",
  53022. height: math.unit(120, "cm"),
  53023. default: true
  53024. },
  53025. {
  53026. name: "Dire",
  53027. height: math.unit(230, "cm")
  53028. },
  53029. {
  53030. name: "Macro",
  53031. height: math.unit(37, "feet")
  53032. },
  53033. ]
  53034. ))
  53035. characterMakers.push(() => makeCharacter(
  53036. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53037. {
  53038. front: {
  53039. height: math.unit(6 + 3/12, "feet"),
  53040. name: "Front",
  53041. image: {
  53042. source: "./media/characters/michael-berretta/front.svg",
  53043. extra: 515/494,
  53044. bottom: 20/535
  53045. }
  53046. },
  53047. back: {
  53048. height: math.unit(6 + 3/12, "feet"),
  53049. name: "Back",
  53050. image: {
  53051. source: "./media/characters/michael-berretta/back.svg",
  53052. extra: 520/497,
  53053. bottom: 21/541
  53054. }
  53055. },
  53056. frontNsfw: {
  53057. height: math.unit(6 + 3/12, "feet"),
  53058. name: "Front (NSFW)",
  53059. image: {
  53060. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53061. extra: 515/494,
  53062. bottom: 20/535
  53063. }
  53064. },
  53065. dick: {
  53066. height: math.unit(1, "feet"),
  53067. name: "Dick",
  53068. image: {
  53069. source: "./media/characters/michael-berretta/dick.svg"
  53070. }
  53071. },
  53072. },
  53073. [
  53074. {
  53075. name: "Normal",
  53076. height: math.unit(6 + 3/12, "feet"),
  53077. default: true
  53078. },
  53079. {
  53080. name: "Big",
  53081. height: math.unit(12, "feet")
  53082. },
  53083. {
  53084. name: "Macro",
  53085. height: math.unit(187.5, "feet")
  53086. },
  53087. ]
  53088. ))
  53089. characterMakers.push(() => makeCharacter(
  53090. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53091. {
  53092. front: {
  53093. height: math.unit(9 + 9/12, "feet"),
  53094. weight: math.unit(1244, "lb"),
  53095. name: "Front",
  53096. image: {
  53097. source: "./media/characters/stella-edgecomb/front.svg",
  53098. extra: 1835/1706,
  53099. bottom: 49/1884
  53100. }
  53101. },
  53102. pen: {
  53103. height: math.unit(0.95, "feet"),
  53104. name: "Pen",
  53105. image: {
  53106. source: "./media/characters/stella-edgecomb/pen.svg"
  53107. }
  53108. },
  53109. },
  53110. [
  53111. {
  53112. name: "Cozy Bear",
  53113. height: math.unit(0.5, "inches")
  53114. },
  53115. {
  53116. name: "Normal",
  53117. height: math.unit(9 + 9/12, "feet"),
  53118. default: true
  53119. },
  53120. {
  53121. name: "Giga Bear",
  53122. height: math.unit(1, "mile")
  53123. },
  53124. {
  53125. name: "Great Bear",
  53126. height: math.unit(53, "miles")
  53127. },
  53128. {
  53129. name: "Goddess Bear",
  53130. height: math.unit(40000, "miles")
  53131. },
  53132. {
  53133. name: "Sun Bear",
  53134. height: math.unit(900000, "miles")
  53135. },
  53136. ]
  53137. ))
  53138. characterMakers.push(() => makeCharacter(
  53139. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53140. {
  53141. anthroFront: {
  53142. height: math.unit(556, "cm"),
  53143. weight: math.unit(2650, "kg"),
  53144. preyCapacity: math.unit(3, "people"),
  53145. name: "Front",
  53146. image: {
  53147. source: "./media/characters/ash´iika/front.svg",
  53148. extra: 710/673,
  53149. bottom: 15/725
  53150. },
  53151. form: "anthro",
  53152. default: true
  53153. },
  53154. anthroSide: {
  53155. height: math.unit(556, "cm"),
  53156. weight: math.unit(2650, "kg"),
  53157. preyCapacity: math.unit(3, "people"),
  53158. name: "Side",
  53159. image: {
  53160. source: "./media/characters/ash´iika/side.svg",
  53161. extra: 696/676,
  53162. bottom: 13/709
  53163. },
  53164. form: "anthro"
  53165. },
  53166. anthroDressed: {
  53167. height: math.unit(556, "cm"),
  53168. weight: math.unit(2650, "kg"),
  53169. preyCapacity: math.unit(3, "people"),
  53170. name: "Dressed",
  53171. image: {
  53172. source: "./media/characters/ash´iika/dressed.svg",
  53173. extra: 710/673,
  53174. bottom: 15/725
  53175. },
  53176. form: "anthro"
  53177. },
  53178. anthroHead: {
  53179. height: math.unit(3.5, "feet"),
  53180. name: "Head",
  53181. image: {
  53182. source: "./media/characters/ash´iika/head.svg",
  53183. extra: 348/291,
  53184. bottom: 45/393
  53185. },
  53186. form: "anthro"
  53187. },
  53188. feralSide: {
  53189. height: math.unit(870, "cm"),
  53190. weight: math.unit(17500, "kg"),
  53191. preyCapacity: math.unit(15, "people"),
  53192. name: "Side",
  53193. image: {
  53194. source: "./media/characters/ash´iika/feral.svg",
  53195. extra: 595/199,
  53196. bottom: 7/602
  53197. },
  53198. form: "feral",
  53199. default: true,
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(556, "cm"),
  53206. default: true,
  53207. form: "anthro"
  53208. },
  53209. {
  53210. name: "Macro",
  53211. height: math.unit(88, "meters"),
  53212. form: "anthro"
  53213. },
  53214. {
  53215. name: "Normal",
  53216. height: math.unit(870, "cm"),
  53217. default: true,
  53218. form: "feral"
  53219. },
  53220. {
  53221. name: "Large",
  53222. height: math.unit(25, "meters"),
  53223. form: "feral"
  53224. },
  53225. ],
  53226. {
  53227. "anthro": {
  53228. name: "Anthro",
  53229. default: true
  53230. },
  53231. "feral": {
  53232. name: "Feral",
  53233. },
  53234. }
  53235. ))
  53236. characterMakers.push(() => makeCharacter(
  53237. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53238. {
  53239. front: {
  53240. height: math.unit(10, "feet"),
  53241. weight: math.unit(800, "lb"),
  53242. name: "Front",
  53243. image: {
  53244. source: "./media/characters/yen/front.svg",
  53245. extra: 443/411,
  53246. bottom: 6/449
  53247. }
  53248. },
  53249. sleeping: {
  53250. height: math.unit(10, "feet"),
  53251. weight: math.unit(800, "lb"),
  53252. name: "Sleeping",
  53253. image: {
  53254. source: "./media/characters/yen/sleeping.svg",
  53255. extra: 470/422,
  53256. bottom: 0/470
  53257. }
  53258. },
  53259. head: {
  53260. height: math.unit(2.2, "feet"),
  53261. name: "Head",
  53262. image: {
  53263. source: "./media/characters/yen/head.svg"
  53264. }
  53265. },
  53266. headAlt: {
  53267. height: math.unit(2.1, "feet"),
  53268. name: "Head (Alt)",
  53269. image: {
  53270. source: "./media/characters/yen/head-alt.svg"
  53271. }
  53272. },
  53273. },
  53274. [
  53275. {
  53276. name: "Normal",
  53277. height: math.unit(10, "feet"),
  53278. default: true
  53279. },
  53280. ]
  53281. ))
  53282. characterMakers.push(() => makeCharacter(
  53283. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53284. {
  53285. front: {
  53286. height: math.unit(12, "feet"),
  53287. name: "Front",
  53288. image: {
  53289. source: "./media/characters/citra/front.svg",
  53290. extra: 1950/1710,
  53291. bottom: 47/1997
  53292. }
  53293. },
  53294. },
  53295. [
  53296. {
  53297. name: "Normal",
  53298. height: math.unit(12, "feet"),
  53299. default: true
  53300. },
  53301. ]
  53302. ))
  53303. characterMakers.push(() => makeCharacter(
  53304. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53305. {
  53306. side: {
  53307. height: math.unit(7 + 10/12, "feet"),
  53308. name: "Side",
  53309. image: {
  53310. source: "./media/characters/sholstim/side.svg",
  53311. extra: 786/682,
  53312. bottom: 40/826
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(7 + 10/12, "feet"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(3.10, "meters"),
  53329. name: "Front",
  53330. image: {
  53331. source: "./media/characters/aggyn/front.svg",
  53332. extra: 1188/963,
  53333. bottom: 24/1212
  53334. }
  53335. },
  53336. },
  53337. [
  53338. {
  53339. name: "Normal",
  53340. height: math.unit(3.10, "meters"),
  53341. default: true
  53342. },
  53343. ]
  53344. ))
  53345. characterMakers.push(() => makeCharacter(
  53346. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53347. {
  53348. front: {
  53349. height: math.unit(7 + 5/12, "feet"),
  53350. weight: math.unit(687, "lb"),
  53351. name: "Front",
  53352. image: {
  53353. source: "./media/characters/alsandair-hergenroether/front.svg",
  53354. extra: 1251/1186,
  53355. bottom: 75/1326
  53356. }
  53357. },
  53358. back: {
  53359. height: math.unit(7 + 5/12, "feet"),
  53360. weight: math.unit(687, "lb"),
  53361. name: "Back",
  53362. image: {
  53363. source: "./media/characters/alsandair-hergenroether/back.svg",
  53364. extra: 1290/1229,
  53365. bottom: 17/1307
  53366. }
  53367. },
  53368. },
  53369. [
  53370. {
  53371. name: "Max Compression",
  53372. height: math.unit(7 + 5/12, "feet"),
  53373. default: true
  53374. },
  53375. {
  53376. name: "\"Normal\"",
  53377. height: math.unit(2, "universes")
  53378. },
  53379. ]
  53380. ))
  53381. characterMakers.push(() => makeCharacter(
  53382. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53383. {
  53384. front: {
  53385. height: math.unit(4 + 1/12, "feet"),
  53386. weight: math.unit(92, "lb"),
  53387. name: "Front",
  53388. image: {
  53389. source: "./media/characters/ie/front.svg",
  53390. extra: 1585/1352,
  53391. bottom: 91/1676
  53392. }
  53393. },
  53394. },
  53395. [
  53396. {
  53397. name: "Normal",
  53398. height: math.unit(4 + 1/12, "feet"),
  53399. default: true
  53400. },
  53401. ]
  53402. ))
  53403. characterMakers.push(() => makeCharacter(
  53404. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53405. {
  53406. anthro: {
  53407. height: math.unit(6, "feet"),
  53408. weight: math.unit(150, "lb"),
  53409. name: "Front",
  53410. image: {
  53411. source: "./media/characters/willow/anthro.svg",
  53412. extra: 1073/986,
  53413. bottom: 34/1107
  53414. },
  53415. form: "anthro",
  53416. default: true
  53417. },
  53418. taur: {
  53419. height: math.unit(6, "feet"),
  53420. weight: math.unit(150, "lb"),
  53421. name: "Side",
  53422. image: {
  53423. source: "./media/characters/willow/taur.svg",
  53424. extra: 647/512,
  53425. bottom: 136/783
  53426. },
  53427. form: "taur",
  53428. default: true
  53429. },
  53430. },
  53431. [
  53432. {
  53433. name: "Humanoid",
  53434. height: math.unit(2.7, "meters"),
  53435. form: "anthro"
  53436. },
  53437. {
  53438. name: "Normal",
  53439. height: math.unit(9, "meters"),
  53440. form: "anthro",
  53441. default: true
  53442. },
  53443. {
  53444. name: "Humanoid",
  53445. height: math.unit(2.1, "meters"),
  53446. form: "taur"
  53447. },
  53448. {
  53449. name: "Normal",
  53450. height: math.unit(7, "meters"),
  53451. form: "taur",
  53452. default: true
  53453. },
  53454. ],
  53455. {
  53456. "anthro": {
  53457. name: "Anthro",
  53458. default: true
  53459. },
  53460. "taur": {
  53461. name: "Taur",
  53462. },
  53463. }
  53464. ))
  53465. characterMakers.push(() => makeCharacter(
  53466. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53467. {
  53468. front: {
  53469. height: math.unit(2 + 5/12, "feet"),
  53470. name: "Front",
  53471. image: {
  53472. source: "./media/characters/kyan/front.svg",
  53473. extra: 460/334,
  53474. bottom: 23/483
  53475. },
  53476. extraAttributes: {
  53477. "toeLength": {
  53478. name: "Toe Length",
  53479. power: 1,
  53480. type: "length",
  53481. base: math.unit(7, "cm")
  53482. },
  53483. "toeclawLength": {
  53484. name: "Toeclaw Length",
  53485. power: 1,
  53486. type: "length",
  53487. base: math.unit(4.7, "cm")
  53488. },
  53489. "earHeight": {
  53490. name: "Ear Height",
  53491. power: 1,
  53492. type: "length",
  53493. base: math.unit(14.1, "cm")
  53494. },
  53495. }
  53496. },
  53497. paws: {
  53498. height: math.unit(0.45, "feet"),
  53499. name: "Paws",
  53500. image: {
  53501. source: "./media/characters/kyan/paws.svg",
  53502. extra: 581/581,
  53503. bottom: 114/695
  53504. }
  53505. },
  53506. },
  53507. [
  53508. {
  53509. name: "Normal",
  53510. height: math.unit(2 + 5/12, "feet"),
  53511. default: true
  53512. },
  53513. ]
  53514. ))
  53515. characterMakers.push(() => makeCharacter(
  53516. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53517. {
  53518. front: {
  53519. height: math.unit(2 + 2/3, "feet"),
  53520. name: "Front",
  53521. image: {
  53522. source: "./media/characters/xazzon/front.svg",
  53523. extra: 1109/984,
  53524. bottom: 42/1151
  53525. }
  53526. },
  53527. back: {
  53528. height: math.unit(2 + 2/3, "feet"),
  53529. name: "Back",
  53530. image: {
  53531. source: "./media/characters/xazzon/back.svg",
  53532. extra: 1095/971,
  53533. bottom: 23/1118
  53534. }
  53535. },
  53536. },
  53537. [
  53538. {
  53539. name: "Normal",
  53540. height: math.unit(2 + 2/3, "feet"),
  53541. default: true
  53542. },
  53543. ]
  53544. ))
  53545. characterMakers.push(() => makeCharacter(
  53546. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53547. {
  53548. dressed: {
  53549. height: math.unit(5 + 7/12, "feet"),
  53550. weight: math.unit(173, "lb"),
  53551. name: "Dressed",
  53552. image: {
  53553. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53554. extra: 3262/2862,
  53555. bottom: 188/3450
  53556. }
  53557. },
  53558. undressed: {
  53559. height: math.unit(5 + 7/12, "feet"),
  53560. weight: math.unit(173, "lb"),
  53561. name: "Undressed",
  53562. image: {
  53563. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53564. extra: 3262/2862,
  53565. bottom: 188/3450
  53566. }
  53567. },
  53568. },
  53569. [
  53570. {
  53571. name: "The void",
  53572. height: math.unit(7.29193e-34, "angstroms")
  53573. },
  53574. {
  53575. name: "Uh-Oh.",
  53576. height: math.unit(5.734e-7, "angstroms")
  53577. },
  53578. {
  53579. name: "Pico",
  53580. height: math.unit(0.876, "angstroms")
  53581. },
  53582. {
  53583. name: "Nano",
  53584. height: math.unit(0.000134200, "mm")
  53585. },
  53586. {
  53587. name: "Micro",
  53588. height: math.unit(0.0673020, "mm")
  53589. },
  53590. {
  53591. name: "Tiny",
  53592. height: math.unit(2.4, "mm")
  53593. },
  53594. {
  53595. name: "Actual Normal",
  53596. height: math.unit(3, "inches"),
  53597. default: true
  53598. },
  53599. {
  53600. name: "Normal",
  53601. height: math.unit(5 + 8/12, "feet")
  53602. },
  53603. {
  53604. name: "Giant",
  53605. height: math.unit(12, "feet")
  53606. },
  53607. {
  53608. name: "City Ruler",
  53609. height: math.unit(270, "meters")
  53610. },
  53611. {
  53612. name: "Giga",
  53613. height: math.unit(1117.6, "km")
  53614. },
  53615. {
  53616. name: "All-Powerful Queen",
  53617. height: math.unit(70.8, "gigameters")
  53618. },
  53619. {
  53620. name: "'Goddess'",
  53621. height: math.unit(600, "yottameters")
  53622. },
  53623. {
  53624. name: "Biggest!",
  53625. height: math.unit(4.23e5, "yottameters")
  53626. },
  53627. ]
  53628. ))
  53629. characterMakers.push(() => makeCharacter(
  53630. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53631. {
  53632. front: {
  53633. height: math.unit(8, "feet"),
  53634. weight: math.unit(300, "lb"),
  53635. name: "Front",
  53636. image: {
  53637. source: "./media/characters/khyla-shadowsong/front.svg",
  53638. extra: 861/798,
  53639. bottom: 32/893
  53640. }
  53641. },
  53642. side: {
  53643. height: math.unit(8, "feet"),
  53644. weight: math.unit(300, "lb"),
  53645. name: "Side",
  53646. image: {
  53647. source: "./media/characters/khyla-shadowsong/side.svg",
  53648. extra: 790/750,
  53649. bottom: 87/877
  53650. }
  53651. },
  53652. back: {
  53653. height: math.unit(8, "feet"),
  53654. weight: math.unit(300, "lb"),
  53655. name: "Back",
  53656. image: {
  53657. source: "./media/characters/khyla-shadowsong/back.svg",
  53658. extra: 855/808,
  53659. bottom: 14/869
  53660. }
  53661. },
  53662. head: {
  53663. height: math.unit(2.7, "feet"),
  53664. name: "Head",
  53665. image: {
  53666. source: "./media/characters/khyla-shadowsong/head.svg"
  53667. }
  53668. },
  53669. },
  53670. [
  53671. {
  53672. name: "Micro",
  53673. height: math.unit(6, "inches")
  53674. },
  53675. {
  53676. name: "Normal",
  53677. height: math.unit(8, "feet"),
  53678. default: true
  53679. },
  53680. ]
  53681. ))
  53682. characterMakers.push(() => makeCharacter(
  53683. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53684. {
  53685. hyperFront: {
  53686. height: math.unit(9 + 4/12, "feet"),
  53687. weight: math.unit(2000, "lb"),
  53688. name: "Front",
  53689. image: {
  53690. source: "./media/characters/tiden/hyper-front.svg",
  53691. extra: 400/382,
  53692. bottom: 6/406
  53693. },
  53694. form: "hyper",
  53695. },
  53696. regularFront: {
  53697. height: math.unit(7 + 10/12, "feet"),
  53698. weight: math.unit(470, "lb"),
  53699. name: "Front",
  53700. image: {
  53701. source: "./media/characters/tiden/regular-front.svg",
  53702. extra: 468/442,
  53703. bottom: 6/474
  53704. },
  53705. form: "regular",
  53706. },
  53707. },
  53708. [
  53709. {
  53710. name: "Normal",
  53711. height: math.unit(9 + 4/12, "feet"),
  53712. default: true,
  53713. form: "hyper"
  53714. },
  53715. {
  53716. name: "Normal",
  53717. height: math.unit(7 + 10/12, "feet"),
  53718. default: true,
  53719. form: "regular"
  53720. },
  53721. ],
  53722. {
  53723. "hyper": {
  53724. name: "Hyper",
  53725. default: true
  53726. },
  53727. "regular": {
  53728. name: "Regular",
  53729. },
  53730. }
  53731. ))
  53732. characterMakers.push(() => makeCharacter(
  53733. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53734. {
  53735. side: {
  53736. height: math.unit(6, "feet"),
  53737. weight: math.unit(150, "lb"),
  53738. name: "Side",
  53739. image: {
  53740. source: "./media/characters/jason-crowe/side.svg",
  53741. extra: 1771/766,
  53742. bottom: 219/1990
  53743. }
  53744. },
  53745. },
  53746. [
  53747. {
  53748. name: "Pocket Gryphon",
  53749. height: math.unit(6, "cm")
  53750. },
  53751. {
  53752. name: "Raven",
  53753. height: math.unit(60, "cm")
  53754. },
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(1, "meter"),
  53758. default: true
  53759. },
  53760. ]
  53761. ))
  53762. characterMakers.push(() => makeCharacter(
  53763. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53764. {
  53765. front: {
  53766. height: math.unit(9 + 6/12, "feet"),
  53767. weight: math.unit(1100, "lb"),
  53768. name: "Front",
  53769. image: {
  53770. source: "./media/characters/django/front.svg",
  53771. extra: 1231/1136,
  53772. bottom: 34/1265
  53773. }
  53774. },
  53775. side: {
  53776. height: math.unit(9 + 6/12, "feet"),
  53777. weight: math.unit(1100, "lb"),
  53778. name: "Side",
  53779. image: {
  53780. source: "./media/characters/django/side.svg",
  53781. extra: 1267/1174,
  53782. bottom: 9/1276
  53783. }
  53784. },
  53785. },
  53786. [
  53787. {
  53788. name: "Normal",
  53789. height: math.unit(9 + 6/12, "feet"),
  53790. default: true
  53791. },
  53792. {
  53793. name: "Macro 1",
  53794. height: math.unit(50, "feet")
  53795. },
  53796. {
  53797. name: "Macro 2",
  53798. height: math.unit(500, "feet")
  53799. },
  53800. {
  53801. name: "Mega Macro",
  53802. height: math.unit(5300, "feet")
  53803. },
  53804. ]
  53805. ))
  53806. characterMakers.push(() => makeCharacter(
  53807. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53808. {
  53809. frontSfw: {
  53810. height: math.unit(120, "cm"),
  53811. weight: math.unit(15, "kg"),
  53812. name: "Front (SFW)",
  53813. image: {
  53814. source: "./media/characters/eri/front-sfw.svg",
  53815. extra: 1014/939,
  53816. bottom: 37/1051
  53817. },
  53818. form: "moth",
  53819. },
  53820. frontNsfw: {
  53821. height: math.unit(120, "cm"),
  53822. weight: math.unit(15, "kg"),
  53823. name: "Front (NSFW)",
  53824. image: {
  53825. source: "./media/characters/eri/front-nsfw.svg",
  53826. extra: 1014/939,
  53827. bottom: 37/1051
  53828. },
  53829. form: "moth",
  53830. default: true
  53831. },
  53832. egg: {
  53833. height: math.unit(10, "cm"),
  53834. name: "Egg",
  53835. image: {
  53836. source: "./media/characters/eri/egg.svg"
  53837. },
  53838. form: "egg",
  53839. default: true
  53840. },
  53841. },
  53842. [
  53843. {
  53844. name: "Normal",
  53845. height: math.unit(120, "cm"),
  53846. default: true,
  53847. form: "moth"
  53848. },
  53849. {
  53850. name: "Normal",
  53851. height: math.unit(10, "cm"),
  53852. default: true,
  53853. form: "egg"
  53854. },
  53855. ],
  53856. {
  53857. "moth": {
  53858. name: "Moth",
  53859. default: true
  53860. },
  53861. "egg": {
  53862. name: "Egg",
  53863. },
  53864. }
  53865. ))
  53866. characterMakers.push(() => makeCharacter(
  53867. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  53868. {
  53869. front: {
  53870. height: math.unit(200, "feet"),
  53871. name: "Front",
  53872. image: {
  53873. source: "./media/characters/bishop-dowser/front.svg",
  53874. extra: 933/868,
  53875. bottom: 106/1039
  53876. }
  53877. },
  53878. },
  53879. [
  53880. {
  53881. name: "Giant",
  53882. height: math.unit(200, "feet"),
  53883. default: true
  53884. },
  53885. ]
  53886. ))
  53887. characterMakers.push(() => makeCharacter(
  53888. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  53889. {
  53890. front: {
  53891. height: math.unit(2, "meters"),
  53892. preyCapacity: math.unit(3, "people"),
  53893. name: "Front",
  53894. image: {
  53895. source: "./media/characters/fryra/front.svg",
  53896. extra: 1025/948,
  53897. bottom: 30/1055
  53898. },
  53899. extraAttributes: {
  53900. "breastVolume": {
  53901. name: "Breast Volume",
  53902. power: 3,
  53903. type: "volume",
  53904. base: math.unit(8, "liters")
  53905. },
  53906. }
  53907. },
  53908. back: {
  53909. height: math.unit(2, "meters"),
  53910. preyCapacity: math.unit(3, "people"),
  53911. name: "Back",
  53912. image: {
  53913. source: "./media/characters/fryra/back.svg",
  53914. extra: 993/938,
  53915. bottom: 38/1031
  53916. },
  53917. extraAttributes: {
  53918. "breastVolume": {
  53919. name: "Breast Volume",
  53920. power: 3,
  53921. type: "volume",
  53922. base: math.unit(8, "liters")
  53923. },
  53924. }
  53925. },
  53926. head: {
  53927. height: math.unit(1.33, "feet"),
  53928. name: "Head",
  53929. image: {
  53930. source: "./media/characters/fryra/head.svg"
  53931. }
  53932. },
  53933. maw: {
  53934. height: math.unit(0.56, "feet"),
  53935. name: "Maw",
  53936. image: {
  53937. source: "./media/characters/fryra/maw.svg"
  53938. }
  53939. },
  53940. },
  53941. [
  53942. {
  53943. name: "Micro",
  53944. height: math.unit(5, "cm")
  53945. },
  53946. {
  53947. name: "Normal",
  53948. height: math.unit(2, "meters"),
  53949. default: true
  53950. },
  53951. {
  53952. name: "Small Macro",
  53953. height: math.unit(8, "meters")
  53954. },
  53955. {
  53956. name: "Macro",
  53957. height: math.unit(50, "meters")
  53958. },
  53959. {
  53960. name: "Megamacro",
  53961. height: math.unit(1, "km")
  53962. },
  53963. {
  53964. name: "Planetary",
  53965. height: math.unit(300000, "km")
  53966. },
  53967. {
  53968. name: "Universal",
  53969. height: math.unit(250, "lightyears")
  53970. },
  53971. {
  53972. name: "Fabric of Reality",
  53973. height: math.unit(1000, "multiverses")
  53974. },
  53975. ]
  53976. ))
  53977. characterMakers.push(() => makeCharacter(
  53978. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  53979. {
  53980. frontDressed: {
  53981. height: math.unit(6 + 2/12, "feet"),
  53982. name: "Front (Dressed)",
  53983. image: {
  53984. source: "./media/characters/fiera/front-dressed.svg",
  53985. extra: 1883/1793,
  53986. bottom: 70/1953
  53987. }
  53988. },
  53989. backDressed: {
  53990. height: math.unit(6 + 2/12, "feet"),
  53991. name: "Back (Dressed)",
  53992. image: {
  53993. source: "./media/characters/fiera/back-dressed.svg",
  53994. extra: 1847/1780,
  53995. bottom: 70/1917
  53996. }
  53997. },
  53998. frontNude: {
  53999. height: math.unit(6 + 2/12, "feet"),
  54000. name: "Front (Nude)",
  54001. image: {
  54002. source: "./media/characters/fiera/front-nude.svg",
  54003. extra: 1875/1785,
  54004. bottom: 66/1941
  54005. }
  54006. },
  54007. backNude: {
  54008. height: math.unit(6 + 2/12, "feet"),
  54009. name: "Back (Nude)",
  54010. image: {
  54011. source: "./media/characters/fiera/back-nude.svg",
  54012. extra: 1855/1788,
  54013. bottom: 44/1899
  54014. }
  54015. },
  54016. maw: {
  54017. height: math.unit(1.3, "feet"),
  54018. name: "Maw",
  54019. image: {
  54020. source: "./media/characters/fiera/maw.svg"
  54021. }
  54022. },
  54023. paw: {
  54024. height: math.unit(1, "feet"),
  54025. name: "Paw",
  54026. image: {
  54027. source: "./media/characters/fiera/paw.svg"
  54028. }
  54029. },
  54030. shoe: {
  54031. height: math.unit(1.05, "feet"),
  54032. name: "Shoe",
  54033. image: {
  54034. source: "./media/characters/fiera/shoe.svg"
  54035. }
  54036. },
  54037. },
  54038. [
  54039. {
  54040. name: "Normal",
  54041. height: math.unit(6 + 2/12, "feet"),
  54042. default: true
  54043. },
  54044. {
  54045. name: "Size Difference",
  54046. height: math.unit(13, "feet")
  54047. },
  54048. {
  54049. name: "Macro",
  54050. height: math.unit(60, "feet")
  54051. },
  54052. {
  54053. name: "Mega Macro",
  54054. height: math.unit(200, "feet")
  54055. },
  54056. ]
  54057. ))
  54058. characterMakers.push(() => makeCharacter(
  54059. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54060. {
  54061. back: {
  54062. height: math.unit(6, "feet"),
  54063. name: "Back",
  54064. image: {
  54065. source: "./media/characters/flare/back.svg",
  54066. extra: 1883/1765,
  54067. bottom: 32/1915
  54068. }
  54069. },
  54070. },
  54071. [
  54072. {
  54073. name: "Normal",
  54074. height: math.unit(6 + 2/12, "feet"),
  54075. default: true
  54076. },
  54077. {
  54078. name: "Size Difference",
  54079. height: math.unit(13, "feet")
  54080. },
  54081. {
  54082. name: "Macro",
  54083. height: math.unit(60, "feet")
  54084. },
  54085. {
  54086. name: "Macro 2",
  54087. height: math.unit(100, "feet")
  54088. },
  54089. {
  54090. name: "Mega Macro",
  54091. height: math.unit(200, "feet")
  54092. },
  54093. ]
  54094. ))
  54095. characterMakers.push(() => makeCharacter(
  54096. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54097. {
  54098. front: {
  54099. height: math.unit(2.2, "m"),
  54100. weight: math.unit(300, "kg"),
  54101. name: "Front",
  54102. image: {
  54103. source: "./media/characters/hanna/front.svg",
  54104. extra: 1696/1502,
  54105. bottom: 206/1902
  54106. }
  54107. },
  54108. },
  54109. [
  54110. {
  54111. name: "Humanoid",
  54112. height: math.unit(2.2, "meters")
  54113. },
  54114. {
  54115. name: "Normal",
  54116. height: math.unit(4.8, "meters"),
  54117. default: true
  54118. },
  54119. ]
  54120. ))
  54121. characterMakers.push(() => makeCharacter(
  54122. { name: "Argoc", species: ["silvally"], tags: ["taur"] },
  54123. {
  54124. front: {
  54125. height: math.unit(2.8, "meters"),
  54126. name: "Front",
  54127. image: {
  54128. source: "./media/characters/argoc/front.svg",
  54129. extra: 731/518,
  54130. bottom: 84/815
  54131. }
  54132. },
  54133. },
  54134. [
  54135. {
  54136. name: "Normal",
  54137. height: math.unit(3, "meters"),
  54138. default: true
  54139. },
  54140. ]
  54141. ))
  54142. //characters
  54143. function makeCharacters() {
  54144. const results = [];
  54145. characterMakers.forEach(character => {
  54146. results.push(character());
  54147. });
  54148. return results;
  54149. }