less copy protection, more size visualization
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

55164 rindas
1.4 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 3 / 4,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["nargacuga"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. "garchomp": {
  2059. name: "Garchomp",
  2060. parents: ["dragon", "pokemon"]
  2061. },
  2062. "nargacuga": {
  2063. name: "Nargacuga",
  2064. parents: ["monster-hunter"]
  2065. },
  2066. "sable": {
  2067. name: "Sable",
  2068. parents: ["marten"]
  2069. },
  2070. "deino": {
  2071. name: "Deino",
  2072. parents: ["pokemon", "dinosaur"]
  2073. },
  2074. "housecat": {
  2075. name: "Housecat",
  2076. parents: ["cat"]
  2077. },
  2078. "bombay-cat": {
  2079. name: "Bombay Cat",
  2080. parents: ["housecat"]
  2081. },
  2082. "maine-coon": {
  2083. name: "Maine Coon",
  2084. parents: ["housecat"]
  2085. },
  2086. }
  2087. //species
  2088. function getSpeciesInfo(speciesList) {
  2089. let result = new Set();
  2090. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2091. result.add(entry)
  2092. });
  2093. return Array.from(result);
  2094. };
  2095. function getSpeciesInfoHelper(species) {
  2096. if (!speciesData[species]) {
  2097. console.warn(species + " doesn't exist");
  2098. return [];
  2099. }
  2100. if (speciesData[species].parents) {
  2101. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2102. } else {
  2103. return [species];
  2104. }
  2105. }
  2106. characterMakers.push(() => makeCharacter(
  2107. {
  2108. name: "Fen",
  2109. species: ["crux"],
  2110. description: {
  2111. title: "Bio",
  2112. text: "Very furry. Sheds on everything."
  2113. },
  2114. tags: [
  2115. "anthro",
  2116. "goo"
  2117. ]
  2118. },
  2119. {
  2120. front: {
  2121. height: math.unit(12, "feet"),
  2122. weight: math.unit(2400, "lb"),
  2123. preyCapacity: math.unit(1, "people"),
  2124. name: "Front",
  2125. image: {
  2126. source: "./media/characters/fen/front.svg",
  2127. extra: 1804/1562,
  2128. bottom: 205/2009
  2129. },
  2130. extraAttributes: {
  2131. pawSize: {
  2132. name: "Paw Size",
  2133. power: 2,
  2134. type: "area",
  2135. base: math.unit(0.35, "m^2")
  2136. }
  2137. }
  2138. },
  2139. diving: {
  2140. height: math.unit(4.9, "meters"),
  2141. weight: math.unit(2400, "lb"),
  2142. name: "Diving",
  2143. image: {
  2144. source: "./media/characters/fen/diving.svg"
  2145. }
  2146. },
  2147. sleeby: {
  2148. height: math.unit(3.45, "meters"),
  2149. weight: math.unit(2400, "lb"),
  2150. name: "Sleeby",
  2151. image: {
  2152. source: "./media/characters/fen/sleeby.svg"
  2153. }
  2154. },
  2155. goo: {
  2156. height: math.unit(12, "feet"),
  2157. weight: math.unit(3600, "lb"),
  2158. volume: math.unit(1000, "liters"),
  2159. preyCapacity: math.unit(6, "people"),
  2160. name: "Goo",
  2161. image: {
  2162. source: "./media/characters/fen/goo.svg",
  2163. extra: 1307/1071,
  2164. bottom: 134/1441
  2165. }
  2166. },
  2167. gooNsfw: {
  2168. height: math.unit(12, "feet"),
  2169. weight: math.unit(3750, "lb"),
  2170. volume: math.unit(1000, "liters"),
  2171. preyCapacity: math.unit(6, "people"),
  2172. name: "Goo (NSFW)",
  2173. image: {
  2174. source: "./media/characters/fen/goo-nsfw.svg",
  2175. extra: 1875/1734,
  2176. bottom: 122/1997
  2177. }
  2178. },
  2179. maw: {
  2180. height: math.unit(5.03, "feet"),
  2181. name: "Maw",
  2182. image: {
  2183. source: "./media/characters/fen/maw.svg"
  2184. }
  2185. },
  2186. gooCeiling: {
  2187. height: math.unit(6.6, "feet"),
  2188. weight: math.unit(3000, "lb"),
  2189. volume: math.unit(1000, "liters"),
  2190. preyCapacity: math.unit(6, "people"),
  2191. name: "Goo (Ceiling)",
  2192. image: {
  2193. source: "./media/characters/fen/goo-ceiling.svg"
  2194. }
  2195. },
  2196. paw: {
  2197. height: math.unit(3.77, "feet"),
  2198. name: "Paw",
  2199. image: {
  2200. source: "./media/characters/fen/paw.svg"
  2201. },
  2202. extraAttributes: {
  2203. "toeSize": {
  2204. name: "Toe Size",
  2205. power: 2,
  2206. type: "area",
  2207. base: math.unit(0.02875, "m^2")
  2208. },
  2209. "pawSize": {
  2210. name: "Paw Size",
  2211. power: 2,
  2212. type: "area",
  2213. base: math.unit(0.378, "m^2")
  2214. },
  2215. }
  2216. },
  2217. tail: {
  2218. height: math.unit(12.1, "feet"),
  2219. name: "Tail",
  2220. image: {
  2221. source: "./media/characters/fen/tail.svg"
  2222. }
  2223. },
  2224. tailFull: {
  2225. height: math.unit(12.1, "feet"),
  2226. name: "Full Tail",
  2227. image: {
  2228. source: "./media/characters/fen/tail-full.svg"
  2229. }
  2230. },
  2231. back: {
  2232. height: math.unit(12, "feet"),
  2233. weight: math.unit(2400, "lb"),
  2234. name: "Back",
  2235. image: {
  2236. source: "./media/characters/fen/back.svg",
  2237. },
  2238. info: {
  2239. description: {
  2240. mode: "append",
  2241. text: "\n\nHe is not currently looking at you."
  2242. }
  2243. }
  2244. },
  2245. full: {
  2246. height: math.unit(1.85, "meter"),
  2247. weight: math.unit(3200, "lb"),
  2248. name: "Full",
  2249. image: {
  2250. source: "./media/characters/fen/full.svg",
  2251. extra: 1133/859,
  2252. bottom: 145/1278
  2253. },
  2254. info: {
  2255. description: {
  2256. mode: "append",
  2257. text: "\n\nMunch."
  2258. }
  2259. }
  2260. },
  2261. gooLounging: {
  2262. height: math.unit(4.53, "feet"),
  2263. weight: math.unit(3000, "lb"),
  2264. preyCapacity: math.unit(6, "people"),
  2265. name: "Goo (Lounging)",
  2266. image: {
  2267. source: "./media/characters/fen/goo-lounging.svg",
  2268. bottom: 116 / 613
  2269. }
  2270. },
  2271. lounging: {
  2272. height: math.unit(10.52, "feet"),
  2273. weight: math.unit(2400, "lb"),
  2274. name: "Lounging",
  2275. image: {
  2276. source: "./media/characters/fen/lounging.svg"
  2277. }
  2278. },
  2279. },
  2280. [
  2281. {
  2282. name: "Small",
  2283. height: math.unit(2.2428, "meter")
  2284. },
  2285. {
  2286. name: "Normal",
  2287. height: math.unit(12, "feet"),
  2288. default: true,
  2289. },
  2290. {
  2291. name: "Big",
  2292. height: math.unit(20, "feet")
  2293. },
  2294. {
  2295. name: "Minimacro",
  2296. height: math.unit(40, "feet"),
  2297. info: {
  2298. description: {
  2299. mode: "append",
  2300. text: "\n\nTOO DAMN BIG"
  2301. }
  2302. }
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(100, "feet"),
  2307. info: {
  2308. description: {
  2309. mode: "append",
  2310. text: "\n\nTOO DAMN BIG"
  2311. }
  2312. }
  2313. },
  2314. {
  2315. name: "Megamacro",
  2316. height: math.unit(2, "miles")
  2317. },
  2318. {
  2319. name: "Gigamacro",
  2320. height: math.unit(10, "earths")
  2321. },
  2322. ]
  2323. ))
  2324. characterMakers.push(() => makeCharacter(
  2325. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2326. {
  2327. front: {
  2328. height: math.unit(183, "cm"),
  2329. weight: math.unit(80, "kg"),
  2330. name: "Front",
  2331. image: {
  2332. source: "./media/characters/sofia-fluttertail/front.svg",
  2333. bottom: 0.01,
  2334. extra: 2154 / 2081
  2335. }
  2336. },
  2337. frontAlt: {
  2338. height: math.unit(183, "cm"),
  2339. weight: math.unit(80, "kg"),
  2340. name: "Front (alt)",
  2341. image: {
  2342. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2343. }
  2344. },
  2345. back: {
  2346. height: math.unit(183, "cm"),
  2347. weight: math.unit(80, "kg"),
  2348. name: "Back",
  2349. image: {
  2350. source: "./media/characters/sofia-fluttertail/back.svg"
  2351. }
  2352. },
  2353. kneeling: {
  2354. height: math.unit(125, "cm"),
  2355. weight: math.unit(80, "kg"),
  2356. name: "Kneeling",
  2357. image: {
  2358. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2359. extra: 1033 / 977,
  2360. bottom: 23.7 / 1057
  2361. }
  2362. },
  2363. maw: {
  2364. height: math.unit(183 / 5, "cm"),
  2365. name: "Maw",
  2366. image: {
  2367. source: "./media/characters/sofia-fluttertail/maw.svg"
  2368. }
  2369. },
  2370. mawcloseup: {
  2371. height: math.unit(183 / 5 * 0.41, "cm"),
  2372. name: "Maw (Closeup)",
  2373. image: {
  2374. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2375. }
  2376. },
  2377. paws: {
  2378. height: math.unit(1.17, "feet"),
  2379. name: "Paws",
  2380. image: {
  2381. source: "./media/characters/sofia-fluttertail/paws.svg",
  2382. extra: 851 / 851,
  2383. bottom: 17 / 868
  2384. }
  2385. },
  2386. },
  2387. [
  2388. {
  2389. name: "Normal",
  2390. height: math.unit(1.83, "meter")
  2391. },
  2392. {
  2393. name: "Size Thief",
  2394. height: math.unit(18, "feet")
  2395. },
  2396. {
  2397. name: "50 Foot Collie",
  2398. height: math.unit(50, "feet")
  2399. },
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(96, "feet"),
  2403. default: true
  2404. },
  2405. {
  2406. name: "Megamerger",
  2407. height: math.unit(650, "feet")
  2408. },
  2409. ]
  2410. ))
  2411. characterMakers.push(() => makeCharacter(
  2412. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2413. {
  2414. front: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Front",
  2418. image: {
  2419. source: "./media/characters/march/front.svg",
  2420. extra: 1992/1851,
  2421. bottom: 39/2031
  2422. }
  2423. },
  2424. foot: {
  2425. height: math.unit(0.9, "feet"),
  2426. name: "Foot",
  2427. image: {
  2428. source: "./media/characters/march/foot.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(7.9, "feet")
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(220, "meters")
  2440. },
  2441. {
  2442. name: "Megamacro",
  2443. height: math.unit(2.98, "km"),
  2444. default: true
  2445. },
  2446. {
  2447. name: "Gigamacro",
  2448. height: math.unit(15963, "km")
  2449. },
  2450. {
  2451. name: "Teramacro",
  2452. height: math.unit(2980000000, "km")
  2453. },
  2454. {
  2455. name: "Examacro",
  2456. height: math.unit(250, "parsecs")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(6, "feet"),
  2465. weight: math.unit(60, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/noir/front.svg",
  2469. extra: 1,
  2470. bottom: 0.032
  2471. }
  2472. },
  2473. },
  2474. [
  2475. {
  2476. name: "Normal",
  2477. height: math.unit(6.6, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(500, "feet")
  2482. },
  2483. {
  2484. name: "Megamacro",
  2485. height: math.unit(2.5, "km"),
  2486. default: true
  2487. },
  2488. {
  2489. name: "Gigamacro",
  2490. height: math.unit(22500, "km")
  2491. },
  2492. {
  2493. name: "Teramacro",
  2494. height: math.unit(2500000000, "km")
  2495. },
  2496. {
  2497. name: "Examacro",
  2498. height: math.unit(200, "parsecs")
  2499. },
  2500. ]
  2501. ))
  2502. characterMakers.push(() => makeCharacter(
  2503. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2504. {
  2505. front: {
  2506. height: math.unit(7, "feet"),
  2507. weight: math.unit(100, "kg"),
  2508. name: "Front",
  2509. image: {
  2510. source: "./media/characters/okuri/front.svg",
  2511. extra: 739/665,
  2512. bottom: 39/778
  2513. }
  2514. },
  2515. back: {
  2516. height: math.unit(7, "feet"),
  2517. weight: math.unit(100, "kg"),
  2518. name: "Back",
  2519. image: {
  2520. source: "./media/characters/okuri/back.svg",
  2521. extra: 734/653,
  2522. bottom: 13/747
  2523. }
  2524. },
  2525. sitting: {
  2526. height: math.unit(2.95, "feet"),
  2527. weight: math.unit(100, "kg"),
  2528. name: "Sitting",
  2529. image: {
  2530. source: "./media/characters/okuri/sitting.svg",
  2531. extra: 370/318,
  2532. bottom: 99/469
  2533. }
  2534. },
  2535. },
  2536. [
  2537. {
  2538. name: "Smallest",
  2539. height: math.unit(5 + 2/12, "feet")
  2540. },
  2541. {
  2542. name: "Smaller",
  2543. height: math.unit(300, "feet")
  2544. },
  2545. {
  2546. name: "Small",
  2547. height: math.unit(1000, "feet")
  2548. },
  2549. {
  2550. name: "Macro",
  2551. height: math.unit(1, "mile")
  2552. },
  2553. {
  2554. name: "Mega Macro (Small)",
  2555. height: math.unit(20, "km")
  2556. },
  2557. {
  2558. name: "Mega Macro (Large)",
  2559. height: math.unit(600, "km")
  2560. },
  2561. {
  2562. name: "Giga Macro",
  2563. height: math.unit(10000, "km")
  2564. },
  2565. {
  2566. name: "Normal",
  2567. height: math.unit(577560, "km"),
  2568. default: true
  2569. },
  2570. {
  2571. name: "Large",
  2572. height: math.unit(4, "galaxies")
  2573. },
  2574. {
  2575. name: "Largest",
  2576. height: math.unit(15, "multiverses")
  2577. },
  2578. ]
  2579. ))
  2580. characterMakers.push(() => makeCharacter(
  2581. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2582. {
  2583. front: {
  2584. height: math.unit(7, "feet"),
  2585. weight: math.unit(100, "kg"),
  2586. name: "Front",
  2587. image: {
  2588. source: "./media/characters/manny/front.svg",
  2589. extra: 1,
  2590. bottom: 0.06
  2591. }
  2592. },
  2593. back: {
  2594. height: math.unit(7, "feet"),
  2595. weight: math.unit(100, "kg"),
  2596. name: "Back",
  2597. image: {
  2598. source: "./media/characters/manny/back.svg",
  2599. extra: 1,
  2600. bottom: 0.014
  2601. }
  2602. },
  2603. },
  2604. [
  2605. {
  2606. name: "Normal",
  2607. height: math.unit(7, "feet"),
  2608. },
  2609. {
  2610. name: "Macro",
  2611. height: math.unit(78, "feet"),
  2612. default: true
  2613. },
  2614. {
  2615. name: "Macro+",
  2616. height: math.unit(300, "meters")
  2617. },
  2618. {
  2619. name: "Macro++",
  2620. height: math.unit(2400, "meters")
  2621. },
  2622. {
  2623. name: "Megamacro",
  2624. height: math.unit(5167, "meters")
  2625. },
  2626. {
  2627. name: "Gigamacro",
  2628. height: math.unit(41769, "miles")
  2629. },
  2630. ]
  2631. ))
  2632. characterMakers.push(() => makeCharacter(
  2633. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2634. {
  2635. front: {
  2636. height: math.unit(7, "feet"),
  2637. weight: math.unit(100, "kg"),
  2638. name: "Front",
  2639. image: {
  2640. source: "./media/characters/adake/front-1.svg"
  2641. }
  2642. },
  2643. frontAlt: {
  2644. height: math.unit(7, "feet"),
  2645. weight: math.unit(100, "kg"),
  2646. name: "Front (Alt)",
  2647. image: {
  2648. source: "./media/characters/adake/front-2.svg",
  2649. extra: 1,
  2650. bottom: 0.01
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(7, "feet"),
  2655. weight: math.unit(100, "kg"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/adake/back.svg",
  2659. }
  2660. },
  2661. kneel: {
  2662. height: math.unit(5.385, "feet"),
  2663. weight: math.unit(100, "kg"),
  2664. name: "Kneeling",
  2665. image: {
  2666. source: "./media/characters/adake/kneel.svg",
  2667. bottom: 0.052
  2668. }
  2669. },
  2670. },
  2671. [
  2672. {
  2673. name: "Normal",
  2674. height: math.unit(7, "feet"),
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(78, "feet"),
  2679. default: true
  2680. },
  2681. {
  2682. name: "Macro+",
  2683. height: math.unit(300, "meters")
  2684. },
  2685. {
  2686. name: "Macro++",
  2687. height: math.unit(2400, "meters")
  2688. },
  2689. {
  2690. name: "Megamacro",
  2691. height: math.unit(5167, "meters")
  2692. },
  2693. {
  2694. name: "Gigamacro",
  2695. height: math.unit(41769, "miles")
  2696. },
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2701. {
  2702. front: {
  2703. height: math.unit(1.65, "meters"),
  2704. weight: math.unit(50, "kg"),
  2705. name: "Front",
  2706. image: {
  2707. source: "./media/characters/elijah/front.svg",
  2708. extra: 858 / 830,
  2709. bottom: 95.5 / 953.8559
  2710. }
  2711. },
  2712. back: {
  2713. height: math.unit(1.65, "meters"),
  2714. weight: math.unit(50, "kg"),
  2715. name: "Back",
  2716. image: {
  2717. source: "./media/characters/elijah/back.svg",
  2718. extra: 895 / 850,
  2719. bottom: 5.3 / 897.956
  2720. }
  2721. },
  2722. frontNsfw: {
  2723. height: math.unit(1.65, "meters"),
  2724. weight: math.unit(50, "kg"),
  2725. name: "Front (NSFW)",
  2726. image: {
  2727. source: "./media/characters/elijah/front-nsfw.svg",
  2728. extra: 858 / 830,
  2729. bottom: 95.5 / 953.8559
  2730. }
  2731. },
  2732. backNsfw: {
  2733. height: math.unit(1.65, "meters"),
  2734. weight: math.unit(50, "kg"),
  2735. name: "Back (NSFW)",
  2736. image: {
  2737. source: "./media/characters/elijah/back-nsfw.svg",
  2738. extra: 895 / 850,
  2739. bottom: 5.3 / 897.956
  2740. }
  2741. },
  2742. dick: {
  2743. height: math.unit(1, "feet"),
  2744. name: "Dick",
  2745. image: {
  2746. source: "./media/characters/elijah/dick.svg"
  2747. }
  2748. },
  2749. beakOpen: {
  2750. height: math.unit(1.25, "feet"),
  2751. name: "Beak (Open)",
  2752. image: {
  2753. source: "./media/characters/elijah/beak-open.svg"
  2754. }
  2755. },
  2756. beakShut: {
  2757. height: math.unit(1.25, "feet"),
  2758. name: "Beak (Shut)",
  2759. image: {
  2760. source: "./media/characters/elijah/beak-shut.svg"
  2761. }
  2762. },
  2763. footFlexing: {
  2764. height: math.unit(1.61, "feet"),
  2765. name: "Foot (Flexing)",
  2766. image: {
  2767. source: "./media/characters/elijah/foot-flexing.svg"
  2768. }
  2769. },
  2770. footStepping: {
  2771. height: math.unit(1.44, "feet"),
  2772. name: "Foot (Stepping)",
  2773. image: {
  2774. source: "./media/characters/elijah/foot-stepping.svg"
  2775. }
  2776. },
  2777. plantigradeLeg: {
  2778. height: math.unit(2.34, "feet"),
  2779. name: "Plantigrade Leg",
  2780. image: {
  2781. source: "./media/characters/elijah/plantigrade-leg.svg"
  2782. }
  2783. },
  2784. plantigradeFootLeft: {
  2785. height: math.unit(0.9, "feet"),
  2786. name: "Plantigrade Foot (Left)",
  2787. image: {
  2788. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2789. }
  2790. },
  2791. plantigradeFootRight: {
  2792. height: math.unit(0.9, "feet"),
  2793. name: "Plantigrade Foot (Right)",
  2794. image: {
  2795. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2796. }
  2797. },
  2798. },
  2799. [
  2800. {
  2801. name: "Normal",
  2802. height: math.unit(1.65, "meters")
  2803. },
  2804. {
  2805. name: "Macro",
  2806. height: math.unit(55, "meters"),
  2807. default: true
  2808. },
  2809. {
  2810. name: "Macro+",
  2811. height: math.unit(105, "meters")
  2812. },
  2813. ]
  2814. ))
  2815. characterMakers.push(() => makeCharacter(
  2816. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2817. {
  2818. front: {
  2819. height: math.unit(7 + 2/12, "feet"),
  2820. weight: math.unit(320, "kg"),
  2821. preyCapacity: math.unit(0.276549935, "people"),
  2822. name: "Front",
  2823. image: {
  2824. source: "./media/characters/rai/front.svg",
  2825. extra: 1802/1696,
  2826. bottom: 68/1870
  2827. },
  2828. form: "anthro",
  2829. default: true
  2830. },
  2831. frontDressed: {
  2832. height: math.unit(7 + 2/12, "feet"),
  2833. weight: math.unit(320, "kg"),
  2834. preyCapacity: math.unit(0.276549935, "people"),
  2835. name: "Front (Dressed)",
  2836. image: {
  2837. source: "./media/characters/rai/front-dressed.svg",
  2838. extra: 1802/1696,
  2839. bottom: 68/1870
  2840. },
  2841. form: "anthro"
  2842. },
  2843. side: {
  2844. height: math.unit(7 + 2/12, "feet"),
  2845. weight: math.unit(320, "kg"),
  2846. preyCapacity: math.unit(0.276549935, "people"),
  2847. name: "Side",
  2848. image: {
  2849. source: "./media/characters/rai/side.svg",
  2850. extra: 1789/1710,
  2851. bottom: 115/1904
  2852. },
  2853. form: "anthro"
  2854. },
  2855. back: {
  2856. height: math.unit(7 + 2/12, "feet"),
  2857. weight: math.unit(320, "kg"),
  2858. preyCapacity: math.unit(0.276549935, "people"),
  2859. name: "Back",
  2860. image: {
  2861. source: "./media/characters/rai/back.svg",
  2862. extra: 1770/1707,
  2863. bottom: 28/1798
  2864. },
  2865. form: "anthro"
  2866. },
  2867. feral: {
  2868. height: math.unit(9.5, "feet"),
  2869. weight: math.unit(640, "kg"),
  2870. preyCapacity: math.unit(4, "people"),
  2871. name: "Feral",
  2872. image: {
  2873. source: "./media/characters/rai/feral.svg",
  2874. extra: 945/553,
  2875. bottom: 176/1121
  2876. },
  2877. form: "feral",
  2878. default: true
  2879. },
  2880. dragon: {
  2881. height: math.unit(23, "feet"),
  2882. weight: math.unit(50000, "lb"),
  2883. name: "Dragon",
  2884. image: {
  2885. source: "./media/characters/rai/dragon.svg",
  2886. extra: 2498 / 2030,
  2887. bottom: 85.2 / 2584
  2888. },
  2889. form: "dragon",
  2890. default: true
  2891. },
  2892. maw: {
  2893. height: math.unit(1.69, "feet"),
  2894. name: "Maw",
  2895. image: {
  2896. source: "./media/characters/rai/maw.svg"
  2897. },
  2898. form: "anthro"
  2899. },
  2900. },
  2901. [
  2902. {
  2903. name: "Normal",
  2904. height: math.unit(7 + 2/12, "feet"),
  2905. form: "anthro"
  2906. },
  2907. {
  2908. name: "Big",
  2909. height: math.unit(11, "feet"),
  2910. form: "anthro"
  2911. },
  2912. {
  2913. name: "Minimacro",
  2914. height: math.unit(77, "feet"),
  2915. form: "anthro"
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(302, "feet"),
  2920. default: true,
  2921. form: "anthro"
  2922. },
  2923. {
  2924. name: "Normal",
  2925. height: math.unit(9.5, "feet"),
  2926. form: "feral",
  2927. default: true
  2928. },
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(23, "feet"),
  2932. form: "dragon",
  2933. default: true
  2934. }
  2935. ],
  2936. {
  2937. "anthro": {
  2938. name: "Anthro",
  2939. default: true
  2940. },
  2941. "feral": {
  2942. name: "Feral",
  2943. },
  2944. "dragon": {
  2945. name: "Dragon",
  2946. },
  2947. }
  2948. ))
  2949. characterMakers.push(() => makeCharacter(
  2950. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2951. {
  2952. frontDressed: {
  2953. height: math.unit(216, "feet"),
  2954. weight: math.unit(7000000, "lb"),
  2955. preyCapacity: math.unit(1321, "people"),
  2956. name: "Front (Dressed)",
  2957. image: {
  2958. source: "./media/characters/jazzy/front-dressed.svg",
  2959. extra: 2738 / 2651,
  2960. bottom: 41.8 / 2786
  2961. }
  2962. },
  2963. backDressed: {
  2964. height: math.unit(216, "feet"),
  2965. weight: math.unit(7000000, "lb"),
  2966. preyCapacity: math.unit(1321, "people"),
  2967. name: "Back (Dressed)",
  2968. image: {
  2969. source: "./media/characters/jazzy/back-dressed.svg",
  2970. extra: 2775 / 2673,
  2971. bottom: 36.8 / 2817
  2972. }
  2973. },
  2974. front: {
  2975. height: math.unit(216, "feet"),
  2976. weight: math.unit(7000000, "lb"),
  2977. preyCapacity: math.unit(1321, "people"),
  2978. name: "Front",
  2979. image: {
  2980. source: "./media/characters/jazzy/front.svg",
  2981. extra: 2738 / 2651,
  2982. bottom: 41.8 / 2786
  2983. }
  2984. },
  2985. back: {
  2986. height: math.unit(216, "feet"),
  2987. weight: math.unit(7000000, "lb"),
  2988. preyCapacity: math.unit(1321, "people"),
  2989. name: "Back",
  2990. image: {
  2991. source: "./media/characters/jazzy/back.svg",
  2992. extra: 2775 / 2673,
  2993. bottom: 36.8 / 2817
  2994. }
  2995. },
  2996. maw: {
  2997. height: math.unit(20, "feet"),
  2998. name: "Maw",
  2999. image: {
  3000. source: "./media/characters/jazzy/maw.svg"
  3001. }
  3002. },
  3003. paws: {
  3004. height: math.unit(27.5, "feet"),
  3005. name: "Paws",
  3006. image: {
  3007. source: "./media/characters/jazzy/paws.svg"
  3008. }
  3009. },
  3010. eye: {
  3011. height: math.unit(4.4, "feet"),
  3012. name: "Eye",
  3013. image: {
  3014. source: "./media/characters/jazzy/eye.svg"
  3015. }
  3016. },
  3017. droneOffense: {
  3018. height: math.unit(9.5, "inches"),
  3019. name: "Drone (Offense)",
  3020. image: {
  3021. source: "./media/characters/jazzy/drone-offense.svg"
  3022. }
  3023. },
  3024. droneRecon: {
  3025. height: math.unit(9.5, "inches"),
  3026. name: "Drone (Recon)",
  3027. image: {
  3028. source: "./media/characters/jazzy/drone-recon.svg"
  3029. }
  3030. },
  3031. droneDefense: {
  3032. height: math.unit(9.5, "inches"),
  3033. name: "Drone (Defense)",
  3034. image: {
  3035. source: "./media/characters/jazzy/drone-defense.svg"
  3036. }
  3037. },
  3038. },
  3039. [
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(216, "feet"),
  3043. default: true
  3044. },
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(9 + 6/12, "feet"),
  3052. weight: math.unit(700, "lb"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/flamm/front.svg",
  3056. extra: 1751/1632,
  3057. bottom: 46/1797
  3058. }
  3059. },
  3060. buff: {
  3061. height: math.unit(9 + 6/12, "feet"),
  3062. weight: math.unit(950, "lb"),
  3063. name: "Buff",
  3064. image: {
  3065. source: "./media/characters/flamm/buff.svg",
  3066. extra: 3018/2874,
  3067. bottom: 221/3239
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(9.5, "feet")
  3075. },
  3076. {
  3077. name: "Macro",
  3078. height: math.unit(200, "feet"),
  3079. default: true
  3080. },
  3081. ]
  3082. ))
  3083. characterMakers.push(() => makeCharacter(
  3084. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3085. {
  3086. front: {
  3087. height: math.unit(5 + 3/12, "feet"),
  3088. weight: math.unit(60, "kg"),
  3089. name: "Front",
  3090. image: {
  3091. source: "./media/characters/zephiro/front.svg",
  3092. extra: 1873/1761,
  3093. bottom: 147/2020
  3094. }
  3095. },
  3096. side: {
  3097. height: math.unit(5 + 3/12, "feet"),
  3098. weight: math.unit(60, "kg"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/zephiro/side.svg",
  3102. extra: 1929/1827,
  3103. bottom: 65/1994
  3104. }
  3105. },
  3106. back: {
  3107. height: math.unit(5 + 3/12, "feet"),
  3108. weight: math.unit(60, "kg"),
  3109. name: "Back",
  3110. image: {
  3111. source: "./media/characters/zephiro/back.svg",
  3112. extra: 1926/1816,
  3113. bottom: 41/1967
  3114. }
  3115. },
  3116. hand: {
  3117. height: math.unit(0.68, "feet"),
  3118. name: "Hand",
  3119. image: {
  3120. source: "./media/characters/zephiro/hand.svg"
  3121. }
  3122. },
  3123. paw: {
  3124. height: math.unit(1, "feet"),
  3125. name: "Paw",
  3126. image: {
  3127. source: "./media/characters/zephiro/paw.svg"
  3128. }
  3129. },
  3130. beans: {
  3131. height: math.unit(0.93, "feet"),
  3132. name: "Beans",
  3133. image: {
  3134. source: "./media/characters/zephiro/beans.svg"
  3135. }
  3136. },
  3137. },
  3138. [
  3139. {
  3140. name: "Micro",
  3141. height: math.unit(3, "inches")
  3142. },
  3143. {
  3144. name: "Normal",
  3145. height: math.unit(5 + 3 / 12, "feet"),
  3146. default: true
  3147. },
  3148. {
  3149. name: "Macro",
  3150. height: math.unit(118, "feet")
  3151. },
  3152. ]
  3153. ))
  3154. characterMakers.push(() => makeCharacter(
  3155. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3156. {
  3157. front: {
  3158. height: math.unit(5, "feet"),
  3159. weight: math.unit(90, "kg"),
  3160. name: "Front",
  3161. image: {
  3162. source: "./media/characters/fory/front.svg",
  3163. extra: 2862 / 2674,
  3164. bottom: 180 / 3043.8
  3165. }
  3166. },
  3167. back: {
  3168. height: math.unit(5, "feet"),
  3169. weight: math.unit(90, "kg"),
  3170. name: "Back",
  3171. image: {
  3172. source: "./media/characters/fory/back.svg",
  3173. extra: 2962 / 2791,
  3174. bottom: 106 / 3071.8
  3175. }
  3176. },
  3177. foot: {
  3178. height: math.unit(2.14, "feet"),
  3179. name: "Foot",
  3180. image: {
  3181. source: "./media/characters/fory/foot.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5, "feet")
  3189. },
  3190. {
  3191. name: "Macro",
  3192. height: math.unit(50, "feet"),
  3193. default: true
  3194. },
  3195. {
  3196. name: "Megamacro",
  3197. height: math.unit(10, "miles")
  3198. },
  3199. {
  3200. name: "Gigamacro",
  3201. height: math.unit(5, "earths")
  3202. },
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3207. {
  3208. front: {
  3209. height: math.unit(7, "feet"),
  3210. weight: math.unit(90, "kg"),
  3211. name: "Front",
  3212. image: {
  3213. source: "./media/characters/kurrikage/front.svg",
  3214. extra: 1845/1733,
  3215. bottom: 119/1964
  3216. }
  3217. },
  3218. back: {
  3219. height: math.unit(7, "feet"),
  3220. weight: math.unit(90, "kg"),
  3221. name: "Back",
  3222. image: {
  3223. source: "./media/characters/kurrikage/back.svg",
  3224. extra: 1790/1677,
  3225. bottom: 61/1851
  3226. }
  3227. },
  3228. dressed: {
  3229. height: math.unit(7, "feet"),
  3230. weight: math.unit(90, "kg"),
  3231. name: "Dressed",
  3232. image: {
  3233. source: "./media/characters/kurrikage/dressed.svg",
  3234. extra: 1845/1733,
  3235. bottom: 119/1964
  3236. }
  3237. },
  3238. foot: {
  3239. height: math.unit(1.5, "feet"),
  3240. name: "Foot",
  3241. image: {
  3242. source: "./media/characters/kurrikage/foot.svg"
  3243. }
  3244. },
  3245. staff: {
  3246. height: math.unit(6.7, "feet"),
  3247. name: "Staff",
  3248. image: {
  3249. source: "./media/characters/kurrikage/staff.svg"
  3250. }
  3251. },
  3252. peek: {
  3253. height: math.unit(1.05, "feet"),
  3254. name: "Peeking",
  3255. image: {
  3256. source: "./media/characters/kurrikage/peek.svg",
  3257. bottom: 0.08
  3258. }
  3259. },
  3260. },
  3261. [
  3262. {
  3263. name: "Normal",
  3264. height: math.unit(12, "feet"),
  3265. default: true
  3266. },
  3267. {
  3268. name: "Big",
  3269. height: math.unit(20, "feet")
  3270. },
  3271. {
  3272. name: "Macro",
  3273. height: math.unit(500, "feet")
  3274. },
  3275. {
  3276. name: "Megamacro",
  3277. height: math.unit(20, "miles")
  3278. },
  3279. ]
  3280. ))
  3281. characterMakers.push(() => makeCharacter(
  3282. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3283. {
  3284. front: {
  3285. height: math.unit(6, "feet"),
  3286. weight: math.unit(75, "kg"),
  3287. name: "Front",
  3288. image: {
  3289. source: "./media/characters/shingo/front.svg",
  3290. extra: 1900/1825,
  3291. bottom: 82/1982
  3292. }
  3293. },
  3294. side: {
  3295. height: math.unit(6, "feet"),
  3296. weight: math.unit(75, "kg"),
  3297. name: "Side",
  3298. image: {
  3299. source: "./media/characters/shingo/side.svg",
  3300. extra: 1930/1865,
  3301. bottom: 16/1946
  3302. }
  3303. },
  3304. back: {
  3305. height: math.unit(6, "feet"),
  3306. weight: math.unit(75, "kg"),
  3307. name: "Back",
  3308. image: {
  3309. source: "./media/characters/shingo/back.svg",
  3310. extra: 1922/1852,
  3311. bottom: 16/1938
  3312. }
  3313. },
  3314. frontDressed: {
  3315. height: math.unit(6, "feet"),
  3316. weight: math.unit(150, "lb"),
  3317. name: "Front-dressed",
  3318. image: {
  3319. source: "./media/characters/shingo/front-dressed.svg",
  3320. extra: 1900/1825,
  3321. bottom: 82/1982
  3322. }
  3323. },
  3324. paw: {
  3325. height: math.unit(1.29, "feet"),
  3326. name: "Paw",
  3327. image: {
  3328. source: "./media/characters/shingo/paw.svg"
  3329. }
  3330. },
  3331. hand: {
  3332. height: math.unit(1.07, "feet"),
  3333. name: "Hand",
  3334. image: {
  3335. source: "./media/characters/shingo/hand.svg"
  3336. }
  3337. },
  3338. frontAlt: {
  3339. height: math.unit(6, "feet"),
  3340. weight: math.unit(75, "kg"),
  3341. name: "Front (Alt)",
  3342. image: {
  3343. source: "./media/characters/shingo/front-alt.svg",
  3344. extra: 3511 / 3338,
  3345. bottom: 0.005
  3346. }
  3347. },
  3348. frontAlt2: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(75, "kg"),
  3351. name: "Front (Alt 2)",
  3352. image: {
  3353. source: "./media/characters/shingo/front-alt-2.svg",
  3354. extra: 706/681,
  3355. bottom: 11/717
  3356. }
  3357. },
  3358. pawAlt: {
  3359. height: math.unit(1, "feet"),
  3360. name: "Paw (Alt)",
  3361. image: {
  3362. source: "./media/characters/shingo/paw-alt.svg"
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Micro",
  3369. height: math.unit(4, "inches")
  3370. },
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(6, "feet"),
  3374. default: true
  3375. },
  3376. {
  3377. name: "Macro",
  3378. height: math.unit(108, "feet")
  3379. },
  3380. {
  3381. name: "Macro+",
  3382. height: math.unit(1500, "feet")
  3383. },
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3388. {
  3389. side: {
  3390. height: math.unit(6, "feet"),
  3391. weight: math.unit(75, "kg"),
  3392. name: "Side",
  3393. image: {
  3394. source: "./media/characters/aigey/side.svg"
  3395. }
  3396. },
  3397. },
  3398. [
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(200, "feet"),
  3402. default: true
  3403. },
  3404. {
  3405. name: "Megamacro",
  3406. height: math.unit(100, "miles")
  3407. },
  3408. ]
  3409. )
  3410. )
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(5 + 5 / 12, "feet"),
  3416. weight: math.unit(75, "kg"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/natasha/front.svg",
  3420. extra: 859 / 824,
  3421. bottom: 23 / 879.6
  3422. }
  3423. },
  3424. frontNsfw: {
  3425. height: math.unit(5 + 5 / 12, "feet"),
  3426. weight: math.unit(75, "kg"),
  3427. name: "Front (NSFW)",
  3428. image: {
  3429. source: "./media/characters/natasha/front-nsfw.svg",
  3430. extra: 859 / 824,
  3431. bottom: 23 / 879.6
  3432. }
  3433. },
  3434. frontErect: {
  3435. height: math.unit(5 + 5 / 12, "feet"),
  3436. weight: math.unit(75, "kg"),
  3437. name: "Front (Erect)",
  3438. image: {
  3439. source: "./media/characters/natasha/front-erect.svg",
  3440. extra: 859 / 824,
  3441. bottom: 23 / 879.6
  3442. }
  3443. },
  3444. back: {
  3445. height: math.unit(5 + 5 / 12, "feet"),
  3446. weight: math.unit(75, "kg"),
  3447. name: "Back",
  3448. image: {
  3449. source: "./media/characters/natasha/back.svg",
  3450. extra: 887.9 / 852.6,
  3451. bottom: 9.7 / 896.4
  3452. }
  3453. },
  3454. backAlt: {
  3455. height: math.unit(5 + 5 / 12, "feet"),
  3456. weight: math.unit(75, "kg"),
  3457. name: "Back (Alt)",
  3458. image: {
  3459. source: "./media/characters/natasha/back-alt.svg",
  3460. extra: 1236.7 / 1192,
  3461. bottom: 22.3 / 1258.2
  3462. }
  3463. },
  3464. dick: {
  3465. height: math.unit(1.772, "feet"),
  3466. name: "Dick",
  3467. image: {
  3468. source: "./media/characters/natasha/dick.svg"
  3469. }
  3470. },
  3471. paw: {
  3472. height: math.unit(0.250, "meters"),
  3473. name: "Paw",
  3474. image: {
  3475. source: "./media/characters/natasha/paw.svg"
  3476. },
  3477. extraAttributes: {
  3478. "toeSize": {
  3479. name: "Toe Size",
  3480. power: 2,
  3481. type: "area",
  3482. base: math.unit(0.0024, "m^2")
  3483. },
  3484. "padSize": {
  3485. name: "Pad Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.00889, "m^2")
  3489. },
  3490. "pawSize": {
  3491. name: "Paw Size",
  3492. power: 2,
  3493. type: "area",
  3494. base: math.unit(0.023667, "m^2")
  3495. },
  3496. }
  3497. },
  3498. },
  3499. [
  3500. {
  3501. name: "Shortstack",
  3502. height: math.unit(3, "feet"),
  3503. default: true
  3504. },
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5 + 5 / 12, "feet")
  3508. },
  3509. {
  3510. name: "Large",
  3511. height: math.unit(12, "feet")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(100, "feet")
  3516. },
  3517. {
  3518. name: "Macro+",
  3519. height: math.unit(260, "feet")
  3520. },
  3521. {
  3522. name: "Macro++",
  3523. height: math.unit(1, "mile")
  3524. },
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3529. {
  3530. front: {
  3531. height: math.unit(6, "feet"),
  3532. weight: math.unit(75, "kg"),
  3533. name: "Front",
  3534. image: {
  3535. source: "./media/characters/malik/front.svg",
  3536. extra: 1750/1561,
  3537. bottom: 80/1830
  3538. },
  3539. extraAttributes: {
  3540. "toeSize": {
  3541. name: "Toe Size",
  3542. power: 2,
  3543. type: "area",
  3544. base: math.unit(0.0159, "m^2")
  3545. },
  3546. "pawSize": {
  3547. name: "Paw Size",
  3548. power: 2,
  3549. type: "area",
  3550. base: math.unit(0.09834, "m^2")
  3551. },
  3552. }
  3553. },
  3554. side: {
  3555. height: math.unit(6, "feet"),
  3556. weight: math.unit(75, "kg"),
  3557. name: "Side",
  3558. image: {
  3559. source: "./media/characters/malik/side.svg",
  3560. extra: 1802/1685,
  3561. bottom: 42/1844
  3562. },
  3563. extraAttributes: {
  3564. "toeSize": {
  3565. name: "Toe Size",
  3566. power: 2,
  3567. type: "area",
  3568. base: math.unit(0.0159, "m^2")
  3569. },
  3570. "pawSize": {
  3571. name: "Paw Size",
  3572. power: 2,
  3573. type: "area",
  3574. base: math.unit(0.09834, "m^2")
  3575. },
  3576. }
  3577. },
  3578. back: {
  3579. height: math.unit(6, "feet"),
  3580. weight: math.unit(75, "kg"),
  3581. name: "Back",
  3582. image: {
  3583. source: "./media/characters/malik/back.svg",
  3584. extra: 1803/1607,
  3585. bottom: 33/1836
  3586. },
  3587. extraAttributes: {
  3588. "toeSize": {
  3589. name: "Toe Size",
  3590. power: 2,
  3591. type: "area",
  3592. base: math.unit(0.0159, "m^2")
  3593. },
  3594. "pawSize": {
  3595. name: "Paw Size",
  3596. power: 2,
  3597. type: "area",
  3598. base: math.unit(0.09834, "m^2")
  3599. },
  3600. }
  3601. },
  3602. },
  3603. [
  3604. {
  3605. name: "Macro",
  3606. height: math.unit(156, "feet"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Macro+",
  3611. height: math.unit(1188, "feet")
  3612. },
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(6, "feet"),
  3620. weight: math.unit(75, "kg"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/sefer/front.svg",
  3624. extra: 848 / 659,
  3625. bottom: 28.3 / 876.442
  3626. }
  3627. },
  3628. back: {
  3629. height: math.unit(6, "feet"),
  3630. weight: math.unit(75, "kg"),
  3631. name: "Back",
  3632. image: {
  3633. source: "./media/characters/sefer/back.svg",
  3634. extra: 864 / 695,
  3635. bottom: 10 / 871
  3636. }
  3637. },
  3638. frontDressed: {
  3639. height: math.unit(6, "feet"),
  3640. weight: math.unit(75, "kg"),
  3641. name: "Dressed",
  3642. image: {
  3643. source: "./media/characters/sefer/dressed.svg",
  3644. extra: 839 / 653,
  3645. bottom: 37.6 / 878
  3646. }
  3647. },
  3648. },
  3649. [
  3650. {
  3651. name: "Normal",
  3652. height: math.unit(6, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Big",
  3657. height: math.unit(8, "meters")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3663. {
  3664. body: {
  3665. height: math.unit(2.2428, "meter"),
  3666. weight: math.unit(124.738, "kg"),
  3667. name: "Body",
  3668. image: {
  3669. extra: 1225 / 1050,
  3670. source: "./media/characters/north/front.svg"
  3671. }
  3672. }
  3673. },
  3674. [
  3675. {
  3676. name: "Micro",
  3677. height: math.unit(4, "inches")
  3678. },
  3679. {
  3680. name: "Macro",
  3681. height: math.unit(63, "meters")
  3682. },
  3683. {
  3684. name: "Megamacro",
  3685. height: math.unit(101, "miles"),
  3686. default: true
  3687. }
  3688. ]
  3689. ))
  3690. characterMakers.push(() => makeCharacter(
  3691. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3692. {
  3693. angled: {
  3694. height: math.unit(4, "meter"),
  3695. weight: math.unit(150, "kg"),
  3696. name: "Angled",
  3697. image: {
  3698. source: "./media/characters/talan/angled-sfw.svg",
  3699. bottom: 29 / 3734
  3700. }
  3701. },
  3702. angledNsfw: {
  3703. height: math.unit(4, "meter"),
  3704. weight: math.unit(150, "kg"),
  3705. name: "Angled (NSFW)",
  3706. image: {
  3707. source: "./media/characters/talan/angled-nsfw.svg",
  3708. bottom: 29 / 3734
  3709. }
  3710. },
  3711. frontNsfw: {
  3712. height: math.unit(4, "meter"),
  3713. weight: math.unit(150, "kg"),
  3714. name: "Front (NSFW)",
  3715. image: {
  3716. source: "./media/characters/talan/front-nsfw.svg",
  3717. bottom: 29 / 3734
  3718. }
  3719. },
  3720. sideNsfw: {
  3721. height: math.unit(4, "meter"),
  3722. weight: math.unit(150, "kg"),
  3723. name: "Side (NSFW)",
  3724. image: {
  3725. source: "./media/characters/talan/side-nsfw.svg",
  3726. bottom: 29 / 3734
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(4, "meter"),
  3731. weight: math.unit(150, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/talan/back.svg"
  3735. }
  3736. },
  3737. dickBottom: {
  3738. height: math.unit(0.621, "meter"),
  3739. name: "Dick (Bottom)",
  3740. image: {
  3741. source: "./media/characters/talan/dick-bottom.svg"
  3742. }
  3743. },
  3744. dickTop: {
  3745. height: math.unit(0.621, "meter"),
  3746. name: "Dick (Top)",
  3747. image: {
  3748. source: "./media/characters/talan/dick-top.svg"
  3749. }
  3750. },
  3751. dickSide: {
  3752. height: math.unit(0.305, "meter"),
  3753. name: "Dick (Side)",
  3754. image: {
  3755. source: "./media/characters/talan/dick-side.svg"
  3756. }
  3757. },
  3758. dickFront: {
  3759. height: math.unit(0.305, "meter"),
  3760. name: "Dick (Front)",
  3761. image: {
  3762. source: "./media/characters/talan/dick-front.svg"
  3763. }
  3764. },
  3765. },
  3766. [
  3767. {
  3768. name: "Normal",
  3769. height: math.unit(4, "meters")
  3770. },
  3771. {
  3772. name: "Macro",
  3773. height: math.unit(100, "meters")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(2, "miles"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Gigamacro",
  3782. height: math.unit(5000, "miles")
  3783. },
  3784. {
  3785. name: "Teramacro",
  3786. height: math.unit(100, "parsecs")
  3787. }
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(90, "kg"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/gael'rathus/front.svg"
  3799. }
  3800. },
  3801. frontAlt: {
  3802. height: math.unit(2, "meter"),
  3803. weight: math.unit(90, "kg"),
  3804. name: "Front (alt)",
  3805. image: {
  3806. source: "./media/characters/gael'rathus/front-alt.svg"
  3807. }
  3808. },
  3809. frontAlt2: {
  3810. height: math.unit(2, "meter"),
  3811. weight: math.unit(90, "kg"),
  3812. name: "Front (alt 2)",
  3813. image: {
  3814. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3815. }
  3816. }
  3817. },
  3818. [
  3819. {
  3820. name: "Normal",
  3821. height: math.unit(9, "feet"),
  3822. default: true
  3823. },
  3824. {
  3825. name: "Large",
  3826. height: math.unit(25, "feet")
  3827. },
  3828. {
  3829. name: "Macro",
  3830. height: math.unit(0.25, "miles")
  3831. },
  3832. {
  3833. name: "Megamacro",
  3834. height: math.unit(10, "miles")
  3835. }
  3836. ]
  3837. ))
  3838. characterMakers.push(() => makeCharacter(
  3839. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3840. {
  3841. side: {
  3842. height: math.unit(2, "meter"),
  3843. weight: math.unit(140, "kg"),
  3844. name: "Side",
  3845. image: {
  3846. source: "./media/characters/sosha/side.svg",
  3847. extra: 1170/1006,
  3848. bottom: 94/1264
  3849. }
  3850. },
  3851. maw: {
  3852. height: math.unit(2.87, "feet"),
  3853. name: "Maw",
  3854. image: {
  3855. source: "./media/characters/sosha/maw.svg",
  3856. extra: 966/865,
  3857. bottom: 0/966
  3858. }
  3859. },
  3860. cooch: {
  3861. height: math.unit(5.6, "feet"),
  3862. name: "Cooch",
  3863. image: {
  3864. source: "./media/characters/sosha/cooch.svg"
  3865. }
  3866. },
  3867. },
  3868. [
  3869. {
  3870. name: "Normal",
  3871. height: math.unit(12, "feet"),
  3872. default: true
  3873. }
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3878. {
  3879. side: {
  3880. height: math.unit(5 + 5 / 12, "feet"),
  3881. weight: math.unit(170, "kg"),
  3882. name: "Side",
  3883. image: {
  3884. source: "./media/characters/runnola/side.svg",
  3885. extra: 741 / 448,
  3886. bottom: 0.05
  3887. }
  3888. },
  3889. },
  3890. [
  3891. {
  3892. name: "Small",
  3893. height: math.unit(3, "feet")
  3894. },
  3895. {
  3896. name: "Normal",
  3897. height: math.unit(5 + 5 / 12, "feet"),
  3898. default: true
  3899. },
  3900. {
  3901. name: "Big",
  3902. height: math.unit(10, "feet")
  3903. },
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(50, "kg"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/kurribird/front.svg",
  3915. bottom: 0.015
  3916. }
  3917. },
  3918. frontAlt: {
  3919. height: math.unit(1.5, "meter"),
  3920. weight: math.unit(50, "kg"),
  3921. name: "Front (Alt)",
  3922. image: {
  3923. source: "./media/characters/kurribird/front-alt.svg",
  3924. extra: 1.45
  3925. }
  3926. },
  3927. },
  3928. [
  3929. {
  3930. name: "Normal",
  3931. height: math.unit(7, "feet")
  3932. },
  3933. {
  3934. name: "Big",
  3935. height: math.unit(12, "feet"),
  3936. default: true
  3937. },
  3938. {
  3939. name: "Macro",
  3940. height: math.unit(1500, "feet")
  3941. },
  3942. {
  3943. name: "Megamacro",
  3944. height: math.unit(2, "miles")
  3945. }
  3946. ]
  3947. ))
  3948. characterMakers.push(() => makeCharacter(
  3949. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3950. {
  3951. front: {
  3952. height: math.unit(2, "meter"),
  3953. weight: math.unit(80, "kg"),
  3954. name: "Front",
  3955. image: {
  3956. source: "./media/characters/elbial/front.svg",
  3957. extra: 1643 / 1556,
  3958. bottom: 60.2 / 1696
  3959. }
  3960. },
  3961. side: {
  3962. height: math.unit(2, "meter"),
  3963. weight: math.unit(80, "kg"),
  3964. name: "Side",
  3965. image: {
  3966. source: "./media/characters/elbial/side.svg",
  3967. extra: 1601/1528,
  3968. bottom: 97/1698
  3969. }
  3970. },
  3971. back: {
  3972. height: math.unit(2, "meter"),
  3973. weight: math.unit(80, "kg"),
  3974. name: "Back",
  3975. image: {
  3976. source: "./media/characters/elbial/back.svg",
  3977. extra: 1653/1569,
  3978. bottom: 20/1673
  3979. }
  3980. },
  3981. frontDressed: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(80, "kg"),
  3984. name: "Front (Dressed)",
  3985. image: {
  3986. source: "./media/characters/elbial/front-dressed.svg",
  3987. extra: 1638/1569,
  3988. bottom: 70/1708
  3989. }
  3990. },
  3991. genitals: {
  3992. height: math.unit(2 / 3.367, "meter"),
  3993. name: "Genitals",
  3994. image: {
  3995. source: "./media/characters/elbial/genitals.svg"
  3996. }
  3997. },
  3998. },
  3999. [
  4000. {
  4001. name: "Large",
  4002. height: math.unit(100, "feet")
  4003. },
  4004. {
  4005. name: "Macro",
  4006. height: math.unit(500, "feet"),
  4007. default: true
  4008. },
  4009. {
  4010. name: "Megamacro",
  4011. height: math.unit(10, "miles")
  4012. },
  4013. {
  4014. name: "Gigamacro",
  4015. height: math.unit(25000, "miles")
  4016. },
  4017. {
  4018. name: "Full-Size",
  4019. height: math.unit(8000000, "gigaparsecs")
  4020. }
  4021. ]
  4022. ))
  4023. characterMakers.push(() => makeCharacter(
  4024. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4025. {
  4026. front: {
  4027. height: math.unit(2, "meter"),
  4028. weight: math.unit(60, "kg"),
  4029. name: "Front",
  4030. image: {
  4031. source: "./media/characters/noah/front.svg"
  4032. }
  4033. },
  4034. talons: {
  4035. height: math.unit(0.315, "meter"),
  4036. name: "Talons",
  4037. image: {
  4038. source: "./media/characters/noah/talons.svg"
  4039. }
  4040. }
  4041. },
  4042. [
  4043. {
  4044. name: "Large",
  4045. height: math.unit(50, "feet")
  4046. },
  4047. {
  4048. name: "Macro",
  4049. height: math.unit(750, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Megamacro",
  4054. height: math.unit(50, "miles")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(100000, "miles")
  4059. },
  4060. {
  4061. name: "Full-Size",
  4062. height: math.unit(3000000000, "miles")
  4063. }
  4064. ]
  4065. ))
  4066. characterMakers.push(() => makeCharacter(
  4067. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4068. {
  4069. front: {
  4070. height: math.unit(2, "meter"),
  4071. weight: math.unit(80, "kg"),
  4072. name: "Front",
  4073. image: {
  4074. source: "./media/characters/natalya/front.svg"
  4075. }
  4076. },
  4077. back: {
  4078. height: math.unit(2, "meter"),
  4079. weight: math.unit(80, "kg"),
  4080. name: "Back",
  4081. image: {
  4082. source: "./media/characters/natalya/back.svg"
  4083. }
  4084. }
  4085. },
  4086. [
  4087. {
  4088. name: "Normal",
  4089. height: math.unit(150, "feet"),
  4090. default: true
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(5, "miles")
  4095. },
  4096. {
  4097. name: "Full-Size",
  4098. height: math.unit(600, "kiloparsecs")
  4099. }
  4100. ]
  4101. ))
  4102. characterMakers.push(() => makeCharacter(
  4103. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4104. {
  4105. front: {
  4106. height: math.unit(2, "meter"),
  4107. weight: math.unit(50, "kg"),
  4108. name: "Front",
  4109. image: {
  4110. source: "./media/characters/erestrebah/front.svg",
  4111. extra: 1262/1162,
  4112. bottom: 96/1358
  4113. }
  4114. },
  4115. back: {
  4116. height: math.unit(2, "meter"),
  4117. weight: math.unit(50, "kg"),
  4118. name: "Back",
  4119. image: {
  4120. source: "./media/characters/erestrebah/back.svg",
  4121. extra: 1257/1139,
  4122. bottom: 13/1270
  4123. }
  4124. },
  4125. wing: {
  4126. height: math.unit(2, "meter"),
  4127. weight: math.unit(50, "kg"),
  4128. name: "Wing",
  4129. image: {
  4130. source: "./media/characters/erestrebah/wing.svg",
  4131. extra: 1262/1162,
  4132. bottom: 96/1358
  4133. }
  4134. },
  4135. mouth: {
  4136. height: math.unit(0.39, "feet"),
  4137. name: "Mouth",
  4138. image: {
  4139. source: "./media/characters/erestrebah/mouth.svg"
  4140. }
  4141. }
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(10, "feet")
  4147. },
  4148. {
  4149. name: "Large",
  4150. height: math.unit(50, "feet"),
  4151. default: true
  4152. },
  4153. {
  4154. name: "Macro",
  4155. height: math.unit(300, "feet")
  4156. },
  4157. {
  4158. name: "Macro+",
  4159. height: math.unit(750, "feet")
  4160. },
  4161. {
  4162. name: "Megamacro",
  4163. height: math.unit(3, "miles")
  4164. }
  4165. ]
  4166. ))
  4167. characterMakers.push(() => makeCharacter(
  4168. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4169. {
  4170. front: {
  4171. height: math.unit(2, "meter"),
  4172. weight: math.unit(80, "kg"),
  4173. name: "Front",
  4174. image: {
  4175. source: "./media/characters/jennifer/front.svg",
  4176. bottom: 0.11,
  4177. extra: 1.16
  4178. }
  4179. },
  4180. frontAlt: {
  4181. height: math.unit(2, "meter"),
  4182. weight: math.unit(80, "kg"),
  4183. name: "Front (Alt)",
  4184. image: {
  4185. source: "./media/characters/jennifer/front-alt.svg"
  4186. }
  4187. }
  4188. },
  4189. [
  4190. {
  4191. name: "Canon Height",
  4192. height: math.unit(120, "feet"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Macro+",
  4197. height: math.unit(300, "feet")
  4198. },
  4199. {
  4200. name: "Megamacro",
  4201. height: math.unit(20000, "feet")
  4202. }
  4203. ]
  4204. ))
  4205. characterMakers.push(() => makeCharacter(
  4206. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4207. {
  4208. front: {
  4209. height: math.unit(2, "meter"),
  4210. weight: math.unit(50, "kg"),
  4211. name: "Front",
  4212. image: {
  4213. source: "./media/characters/kalista/front.svg",
  4214. extra: 1314/1145,
  4215. bottom: 101/1415
  4216. }
  4217. },
  4218. back: {
  4219. height: math.unit(2, "meter"),
  4220. weight: math.unit(50, "kg"),
  4221. name: "Back",
  4222. image: {
  4223. source: "./media/characters/kalista/back.svg",
  4224. extra: 1366 / 1156,
  4225. bottom: 33.9 / 1362.78
  4226. }
  4227. }
  4228. },
  4229. [
  4230. {
  4231. name: "Uncomfortably Small",
  4232. height: math.unit(10, "feet")
  4233. },
  4234. {
  4235. name: "Small",
  4236. height: math.unit(30, "feet")
  4237. },
  4238. {
  4239. name: "Macro",
  4240. height: math.unit(100, "feet"),
  4241. default: true
  4242. },
  4243. {
  4244. name: "Macro+",
  4245. height: math.unit(2000, "feet")
  4246. },
  4247. {
  4248. name: "True Form",
  4249. height: math.unit(8924, "miles")
  4250. }
  4251. ]
  4252. ))
  4253. characterMakers.push(() => makeCharacter(
  4254. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4255. {
  4256. front: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(120, "kg"),
  4259. name: "Front",
  4260. image: {
  4261. source: "./media/characters/ggv/front.svg"
  4262. }
  4263. },
  4264. side: {
  4265. height: math.unit(2, "meter"),
  4266. weight: math.unit(120, "kg"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/ggv/side.svg"
  4270. }
  4271. }
  4272. },
  4273. [
  4274. {
  4275. name: "Extremely Puny",
  4276. height: math.unit(9 + 5 / 12, "feet")
  4277. },
  4278. {
  4279. name: "Horribly Small",
  4280. height: math.unit(47.7, "miles"),
  4281. default: true
  4282. },
  4283. {
  4284. name: "Reasonably Sized",
  4285. height: math.unit(25000, "parsecs")
  4286. },
  4287. {
  4288. name: "Slightly Uncompressed",
  4289. height: math.unit(7.77e31, "parsecs")
  4290. },
  4291. {
  4292. name: "Omniversal",
  4293. height: math.unit(1e300, "meters")
  4294. },
  4295. ]
  4296. ))
  4297. characterMakers.push(() => makeCharacter(
  4298. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4299. {
  4300. front: {
  4301. height: math.unit(2, "meter"),
  4302. weight: math.unit(75, "lb"),
  4303. name: "Front",
  4304. image: {
  4305. source: "./media/characters/napalm/front.svg"
  4306. }
  4307. },
  4308. back: {
  4309. height: math.unit(2, "meter"),
  4310. weight: math.unit(75, "lb"),
  4311. name: "Back",
  4312. image: {
  4313. source: "./media/characters/napalm/back.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Standard",
  4320. height: math.unit(55, "feet"),
  4321. default: true
  4322. }
  4323. ]
  4324. ))
  4325. characterMakers.push(() => makeCharacter(
  4326. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4327. {
  4328. front: {
  4329. height: math.unit(7 + 5 / 6, "feet"),
  4330. weight: math.unit(325, "lb"),
  4331. name: "Front",
  4332. image: {
  4333. source: "./media/characters/asana/front.svg",
  4334. extra: 1133 / 1060,
  4335. bottom: 15.2 / 1148.6
  4336. }
  4337. },
  4338. back: {
  4339. height: math.unit(7 + 5 / 6, "feet"),
  4340. weight: math.unit(325, "lb"),
  4341. name: "Back",
  4342. image: {
  4343. source: "./media/characters/asana/back.svg",
  4344. extra: 1114 / 1043,
  4345. bottom: 5 / 1120
  4346. }
  4347. },
  4348. dressedDark: {
  4349. height: math.unit(7 + 5 / 6, "feet"),
  4350. weight: math.unit(325, "lb"),
  4351. name: "Dressed (Dark)",
  4352. image: {
  4353. source: "./media/characters/asana/dressed-dark.svg",
  4354. extra: 1133 / 1060,
  4355. bottom: 15.2 / 1148.6
  4356. }
  4357. },
  4358. dressedLight: {
  4359. height: math.unit(7 + 5 / 6, "feet"),
  4360. weight: math.unit(325, "lb"),
  4361. name: "Dressed (Light)",
  4362. image: {
  4363. source: "./media/characters/asana/dressed-light.svg",
  4364. extra: 1133 / 1060,
  4365. bottom: 15.2 / 1148.6
  4366. }
  4367. },
  4368. },
  4369. [
  4370. {
  4371. name: "Standard",
  4372. height: math.unit(7 + 5 / 6, "feet"),
  4373. default: true
  4374. },
  4375. {
  4376. name: "Large",
  4377. height: math.unit(10, "meters")
  4378. },
  4379. {
  4380. name: "Macro",
  4381. height: math.unit(2500, "meters")
  4382. },
  4383. {
  4384. name: "Megamacro",
  4385. height: math.unit(5e6, "meters")
  4386. },
  4387. {
  4388. name: "Examacro",
  4389. height: math.unit(5e12, "lightyears")
  4390. },
  4391. {
  4392. name: "Max Size",
  4393. height: math.unit(1e31, "lightyears")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(2, "meter"),
  4402. weight: math.unit(60, "kg"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/ebony/front.svg",
  4406. bottom: 0.03,
  4407. extra: 1045 / 810 + 0.03
  4408. }
  4409. },
  4410. side: {
  4411. height: math.unit(2, "meter"),
  4412. weight: math.unit(60, "kg"),
  4413. name: "Side",
  4414. image: {
  4415. source: "./media/characters/ebony/side.svg",
  4416. bottom: 0.03,
  4417. extra: 1045 / 810 + 0.03
  4418. }
  4419. },
  4420. back: {
  4421. height: math.unit(2, "meter"),
  4422. weight: math.unit(60, "kg"),
  4423. name: "Back",
  4424. image: {
  4425. source: "./media/characters/ebony/back.svg",
  4426. bottom: 0.01,
  4427. extra: 1045 / 810 + 0.01
  4428. }
  4429. },
  4430. },
  4431. [
  4432. // TODO check why I did this lol
  4433. {
  4434. name: "Standard",
  4435. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4436. default: true
  4437. },
  4438. {
  4439. name: "Macro",
  4440. height: math.unit(200, "feet")
  4441. },
  4442. {
  4443. name: "Gigamacro",
  4444. height: math.unit(13000, "km")
  4445. }
  4446. ]
  4447. ))
  4448. characterMakers.push(() => makeCharacter(
  4449. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4450. {
  4451. front: {
  4452. height: math.unit(6, "feet"),
  4453. weight: math.unit(175, "lb"),
  4454. name: "Front",
  4455. image: {
  4456. source: "./media/characters/mountain/front.svg",
  4457. extra: 972 / 955,
  4458. bottom: 64 / 1036.6
  4459. }
  4460. },
  4461. back: {
  4462. height: math.unit(6, "feet"),
  4463. weight: math.unit(175, "lb"),
  4464. name: "Back",
  4465. image: {
  4466. source: "./media/characters/mountain/back.svg",
  4467. extra: 970 / 950,
  4468. bottom: 28.25 / 999
  4469. }
  4470. },
  4471. },
  4472. [
  4473. {
  4474. name: "Large",
  4475. height: math.unit(20, "meters")
  4476. },
  4477. {
  4478. name: "Macro",
  4479. height: math.unit(300, "meters")
  4480. },
  4481. {
  4482. name: "Gigamacro",
  4483. height: math.unit(10000, "km"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Examacro",
  4488. height: math.unit(10e9, "lightyears")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(8, "feet"),
  4497. weight: math.unit(500, "lb"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/rick/front.svg"
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Normal",
  4507. height: math.unit(8, "feet"),
  4508. default: true
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(5, "km")
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4518. {
  4519. front: {
  4520. height: math.unit(8, "feet"),
  4521. weight: math.unit(120, "lb"),
  4522. name: "Front",
  4523. image: {
  4524. source: "./media/characters/ona/front.svg"
  4525. }
  4526. },
  4527. frontAlt: {
  4528. height: math.unit(8, "feet"),
  4529. weight: math.unit(120, "lb"),
  4530. name: "Front (Alt)",
  4531. image: {
  4532. source: "./media/characters/ona/front-alt.svg"
  4533. }
  4534. },
  4535. back: {
  4536. height: math.unit(8, "feet"),
  4537. weight: math.unit(120, "lb"),
  4538. name: "Back",
  4539. image: {
  4540. source: "./media/characters/ona/back.svg"
  4541. }
  4542. },
  4543. foot: {
  4544. height: math.unit(1.1, "feet"),
  4545. name: "Foot",
  4546. image: {
  4547. source: "./media/characters/ona/foot.svg"
  4548. }
  4549. }
  4550. },
  4551. [
  4552. {
  4553. name: "Megamacro",
  4554. height: math.unit(70, "km"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Gigamacro",
  4559. height: math.unit(681818, "miles")
  4560. },
  4561. {
  4562. name: "Examacro",
  4563. height: math.unit(3800000, "lightyears")
  4564. },
  4565. ]
  4566. ))
  4567. characterMakers.push(() => makeCharacter(
  4568. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4569. {
  4570. front: {
  4571. height: math.unit(12, "feet"),
  4572. weight: math.unit(3000, "lb"),
  4573. name: "Front",
  4574. image: {
  4575. source: "./media/characters/mech/front.svg",
  4576. extra: 2900 / 2770,
  4577. bottom: 110 / 3010
  4578. }
  4579. },
  4580. back: {
  4581. height: math.unit(12, "feet"),
  4582. weight: math.unit(3000, "lb"),
  4583. name: "Back",
  4584. image: {
  4585. source: "./media/characters/mech/back.svg",
  4586. extra: 3011 / 2890,
  4587. bottom: 94 / 3105
  4588. }
  4589. },
  4590. maw: {
  4591. height: math.unit(3.07, "feet"),
  4592. name: "Maw",
  4593. image: {
  4594. source: "./media/characters/mech/maw.svg"
  4595. }
  4596. },
  4597. head: {
  4598. height: math.unit(3.07, "feet"),
  4599. name: "Head",
  4600. image: {
  4601. source: "./media/characters/mech/head.svg"
  4602. }
  4603. },
  4604. dick: {
  4605. height: math.unit(1.43, "feet"),
  4606. name: "Dick",
  4607. image: {
  4608. source: "./media/characters/mech/dick.svg"
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(12, "feet")
  4616. },
  4617. {
  4618. name: "Macro",
  4619. height: math.unit(300, "feet"),
  4620. default: true
  4621. },
  4622. {
  4623. name: "Macro+",
  4624. height: math.unit(1500, "feet")
  4625. },
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4630. {
  4631. front: {
  4632. height: math.unit(1.3, "meter"),
  4633. weight: math.unit(30, "kg"),
  4634. name: "Front",
  4635. image: {
  4636. source: "./media/characters/gregory/front.svg",
  4637. }
  4638. }
  4639. },
  4640. [
  4641. {
  4642. name: "Normal",
  4643. height: math.unit(1.3, "meter"),
  4644. default: true
  4645. },
  4646. {
  4647. name: "Macro",
  4648. height: math.unit(20, "meter")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4654. {
  4655. front: {
  4656. height: math.unit(2.8, "meter"),
  4657. weight: math.unit(200, "kg"),
  4658. name: "Front",
  4659. image: {
  4660. source: "./media/characters/elory/front.svg",
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(2.8, "meter"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Macro",
  4672. height: math.unit(38, "meter")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(470, "feet"),
  4681. weight: math.unit(924, "tons"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/angelpatamon/front.svg",
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(470, "feet"),
  4692. default: true
  4693. },
  4694. {
  4695. name: "Deity Size I",
  4696. height: math.unit(28651.2, "km")
  4697. },
  4698. {
  4699. name: "Deity Size II",
  4700. height: math.unit(171907.2, "km")
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4706. {
  4707. side: {
  4708. height: math.unit(7.2, "meter"),
  4709. weight: math.unit(8.2, "tons"),
  4710. name: "Side",
  4711. image: {
  4712. source: "./media/characters/cryae/side.svg",
  4713. extra: 3500 / 1500
  4714. }
  4715. }
  4716. },
  4717. [
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(7.2, "meter"),
  4721. default: true
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4727. {
  4728. front: {
  4729. height: math.unit(6, "feet"),
  4730. weight: math.unit(175, "lb"),
  4731. name: "Front",
  4732. image: {
  4733. source: "./media/characters/xera/front.svg",
  4734. extra: 2377 / 1972,
  4735. bottom: 75.5 / 2452
  4736. }
  4737. },
  4738. side: {
  4739. height: math.unit(6, "feet"),
  4740. weight: math.unit(175, "lb"),
  4741. name: "Side",
  4742. image: {
  4743. source: "./media/characters/xera/side.svg",
  4744. extra: 2345 / 2019,
  4745. bottom: 39.7 / 2384
  4746. }
  4747. },
  4748. back: {
  4749. height: math.unit(6, "feet"),
  4750. weight: math.unit(175, "lb"),
  4751. name: "Back",
  4752. image: {
  4753. source: "./media/characters/xera/back.svg",
  4754. extra: 2095 / 1984,
  4755. bottom: 67 / 2166
  4756. }
  4757. },
  4758. },
  4759. [
  4760. {
  4761. name: "Small",
  4762. height: math.unit(10, "feet")
  4763. },
  4764. {
  4765. name: "Macro",
  4766. height: math.unit(500, "meters"),
  4767. default: true
  4768. },
  4769. {
  4770. name: "Macro+",
  4771. height: math.unit(10, "km")
  4772. },
  4773. {
  4774. name: "Gigamacro",
  4775. height: math.unit(25000, "km")
  4776. },
  4777. {
  4778. name: "Teramacro",
  4779. height: math.unit(3e6, "km")
  4780. }
  4781. ]
  4782. ))
  4783. characterMakers.push(() => makeCharacter(
  4784. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4785. {
  4786. front: {
  4787. height: math.unit(6, "feet"),
  4788. weight: math.unit(175, "lb"),
  4789. name: "Front",
  4790. image: {
  4791. source: "./media/characters/nebula/front.svg",
  4792. extra: 2566 / 2362,
  4793. bottom: 81 / 2644
  4794. }
  4795. }
  4796. },
  4797. [
  4798. {
  4799. name: "Small",
  4800. height: math.unit(4.5, "meters")
  4801. },
  4802. {
  4803. name: "Macro",
  4804. height: math.unit(1500, "meters"),
  4805. default: true
  4806. },
  4807. {
  4808. name: "Megamacro",
  4809. height: math.unit(150, "km")
  4810. },
  4811. {
  4812. name: "Gigamacro",
  4813. height: math.unit(27000, "km")
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4819. {
  4820. front: {
  4821. height: math.unit(6, "feet"),
  4822. weight: math.unit(225, "lb"),
  4823. name: "Front",
  4824. image: {
  4825. source: "./media/characters/abysgar/front.svg",
  4826. extra: 1739/1614,
  4827. bottom: 71/1810
  4828. }
  4829. },
  4830. frontNsfw: {
  4831. height: math.unit(6, "feet"),
  4832. weight: math.unit(225, "lb"),
  4833. name: "Front (NSFW)",
  4834. image: {
  4835. source: "./media/characters/abysgar/front-nsfw.svg",
  4836. extra: 1739/1614,
  4837. bottom: 71/1810
  4838. }
  4839. },
  4840. back: {
  4841. height: math.unit(4.6, "feet"),
  4842. weight: math.unit(225, "lb"),
  4843. name: "Back",
  4844. image: {
  4845. source: "./media/characters/abysgar/back.svg",
  4846. extra: 1384/1327,
  4847. bottom: 0/1384
  4848. }
  4849. },
  4850. head: {
  4851. height: math.unit(1.25, "feet"),
  4852. name: "Head",
  4853. image: {
  4854. source: "./media/characters/abysgar/head.svg",
  4855. extra: 669/569,
  4856. bottom: 0/669
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Small",
  4863. height: math.unit(4.5, "meters")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(1250, "meters"),
  4868. default: true
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(125, "km")
  4873. },
  4874. {
  4875. name: "Gigamacro",
  4876. height: math.unit(26000, "km")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(180, "lb"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/yakuz/front.svg"
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Small",
  4895. height: math.unit(5, "meters")
  4896. },
  4897. {
  4898. name: "Macro",
  4899. height: math.unit(1500, "meters"),
  4900. default: true
  4901. },
  4902. {
  4903. name: "Megamacro",
  4904. height: math.unit(200, "km")
  4905. },
  4906. {
  4907. name: "Gigamacro",
  4908. height: math.unit(100000, "km")
  4909. }
  4910. ]
  4911. ))
  4912. characterMakers.push(() => makeCharacter(
  4913. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4914. {
  4915. front: {
  4916. height: math.unit(6, "feet"),
  4917. weight: math.unit(175, "lb"),
  4918. name: "Front",
  4919. image: {
  4920. source: "./media/characters/mirova/front.svg",
  4921. extra: 3334 / 3071,
  4922. bottom: 42 / 3375.6
  4923. }
  4924. }
  4925. },
  4926. [
  4927. {
  4928. name: "Small",
  4929. height: math.unit(5, "meters")
  4930. },
  4931. {
  4932. name: "Macro",
  4933. height: math.unit(900, "meters"),
  4934. default: true
  4935. },
  4936. {
  4937. name: "Megamacro",
  4938. height: math.unit(135, "km")
  4939. },
  4940. {
  4941. name: "Gigamacro",
  4942. height: math.unit(20000, "km")
  4943. }
  4944. ]
  4945. ))
  4946. characterMakers.push(() => makeCharacter(
  4947. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4948. {
  4949. side: {
  4950. height: math.unit(28.35, "feet"),
  4951. weight: math.unit(99.75, "tons"),
  4952. name: "Side",
  4953. image: {
  4954. source: "./media/characters/asana-mech/side.svg",
  4955. extra: 923 / 699,
  4956. bottom: 50 / 975
  4957. }
  4958. },
  4959. chaingun: {
  4960. height: math.unit(7, "feet"),
  4961. weight: math.unit(2400, "lb"),
  4962. name: "Chaingun",
  4963. image: {
  4964. source: "./media/characters/asana-mech/chaingun.svg"
  4965. }
  4966. },
  4967. laser: {
  4968. height: math.unit(7.12, "feet"),
  4969. weight: math.unit(2000, "lb"),
  4970. name: "Laser",
  4971. image: {
  4972. source: "./media/characters/asana-mech/laser.svg"
  4973. }
  4974. },
  4975. },
  4976. [
  4977. {
  4978. name: "Normal",
  4979. height: math.unit(28.35, "feet"),
  4980. default: true
  4981. },
  4982. {
  4983. name: "Macro",
  4984. height: math.unit(2500, "feet")
  4985. },
  4986. {
  4987. name: "Megamacro",
  4988. height: math.unit(25, "miles")
  4989. },
  4990. {
  4991. name: "Examacro",
  4992. height: math.unit(6e8, "lightyears")
  4993. },
  4994. ]
  4995. ))
  4996. characterMakers.push(() => makeCharacter(
  4997. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4998. {
  4999. front: {
  5000. height: math.unit(5, "meters"),
  5001. weight: math.unit(1000, "kg"),
  5002. name: "Front",
  5003. image: {
  5004. source: "./media/characters/asche/front.svg",
  5005. extra: 1258 / 1190,
  5006. bottom: 47 / 1305
  5007. }
  5008. },
  5009. frontUnderwear: {
  5010. height: math.unit(5, "meters"),
  5011. weight: math.unit(1000, "kg"),
  5012. name: "Front (Underwear)",
  5013. image: {
  5014. source: "./media/characters/asche/front-underwear.svg",
  5015. extra: 1258 / 1190,
  5016. bottom: 47 / 1305
  5017. }
  5018. },
  5019. frontDressed: {
  5020. height: math.unit(5, "meters"),
  5021. weight: math.unit(1000, "kg"),
  5022. name: "Front (Dressed)",
  5023. image: {
  5024. source: "./media/characters/asche/front-dressed.svg",
  5025. extra: 1258 / 1190,
  5026. bottom: 47 / 1305
  5027. }
  5028. },
  5029. frontArmor: {
  5030. height: math.unit(5, "meters"),
  5031. weight: math.unit(1000, "kg"),
  5032. name: "Front (Armored)",
  5033. image: {
  5034. source: "./media/characters/asche/front-armored.svg",
  5035. extra: 1374 / 1308,
  5036. bottom: 23 / 1397
  5037. }
  5038. },
  5039. mp724: {
  5040. height: math.unit(0.96, "meters"),
  5041. weight: math.unit(38, "kg"),
  5042. name: "H&K MP724",
  5043. image: {
  5044. source: "./media/characters/asche/h&k-mp724.svg"
  5045. }
  5046. },
  5047. side: {
  5048. height: math.unit(5, "meters"),
  5049. weight: math.unit(1000, "kg"),
  5050. name: "Side",
  5051. image: {
  5052. source: "./media/characters/asche/side.svg",
  5053. extra: 1717 / 1609,
  5054. bottom: 0.005
  5055. }
  5056. },
  5057. back: {
  5058. height: math.unit(5, "meters"),
  5059. weight: math.unit(1000, "kg"),
  5060. name: "Back",
  5061. image: {
  5062. source: "./media/characters/asche/back.svg",
  5063. extra: 1570 / 1501
  5064. }
  5065. },
  5066. },
  5067. [
  5068. {
  5069. name: "DEFCON 5",
  5070. height: math.unit(5, "meters")
  5071. },
  5072. {
  5073. name: "DEFCON 4",
  5074. height: math.unit(500, "meters"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "DEFCON 3",
  5079. height: math.unit(5, "km")
  5080. },
  5081. {
  5082. name: "DEFCON 2",
  5083. height: math.unit(500, "km")
  5084. },
  5085. {
  5086. name: "DEFCON 1",
  5087. height: math.unit(500000, "km")
  5088. },
  5089. {
  5090. name: "DEFCON 0",
  5091. height: math.unit(3, "gigaparsecs")
  5092. },
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5097. {
  5098. front: {
  5099. height: math.unit(2, "meters"),
  5100. weight: math.unit(76, "kg"),
  5101. name: "Front",
  5102. image: {
  5103. source: "./media/characters/gale/front.svg"
  5104. }
  5105. },
  5106. frontAlt1: {
  5107. height: math.unit(2, "meters"),
  5108. weight: math.unit(76, "kg"),
  5109. name: "Front (Alt 1)",
  5110. image: {
  5111. source: "./media/characters/gale/front-alt-1.svg"
  5112. }
  5113. },
  5114. frontAlt2: {
  5115. height: math.unit(2, "meters"),
  5116. weight: math.unit(76, "kg"),
  5117. name: "Front (Alt 2)",
  5118. image: {
  5119. source: "./media/characters/gale/front-alt-2.svg"
  5120. }
  5121. },
  5122. },
  5123. [
  5124. {
  5125. name: "Normal",
  5126. height: math.unit(7, "feet")
  5127. },
  5128. {
  5129. name: "Macro",
  5130. height: math.unit(150, "feet"),
  5131. default: true
  5132. },
  5133. {
  5134. name: "Macro+",
  5135. height: math.unit(300, "feet")
  5136. },
  5137. ]
  5138. ))
  5139. characterMakers.push(() => makeCharacter(
  5140. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5141. {
  5142. front: {
  5143. height: math.unit(5 + 10/12, "feet"),
  5144. weight: math.unit(67, "kg"),
  5145. name: "Front",
  5146. image: {
  5147. source: "./media/characters/draylen/front.svg",
  5148. extra: 832/777,
  5149. bottom: 85/917
  5150. }
  5151. }
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(5 + 10/12, "feet")
  5157. },
  5158. {
  5159. name: "Macro",
  5160. height: math.unit(150, "feet"),
  5161. default: true
  5162. }
  5163. ]
  5164. ))
  5165. characterMakers.push(() => makeCharacter(
  5166. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5167. {
  5168. front: {
  5169. height: math.unit(7 + 9 / 12, "feet"),
  5170. weight: math.unit(379, "lbs"),
  5171. name: "Front",
  5172. image: {
  5173. source: "./media/characters/chez/front.svg"
  5174. }
  5175. },
  5176. side: {
  5177. height: math.unit(7 + 9 / 12, "feet"),
  5178. weight: math.unit(379, "lbs"),
  5179. name: "Side",
  5180. image: {
  5181. source: "./media/characters/chez/side.svg"
  5182. }
  5183. }
  5184. },
  5185. [
  5186. {
  5187. name: "Normal",
  5188. height: math.unit(7 + 9 / 12, "feet"),
  5189. default: true
  5190. },
  5191. {
  5192. name: "God King",
  5193. height: math.unit(9750000, "meters")
  5194. }
  5195. ]
  5196. ))
  5197. characterMakers.push(() => makeCharacter(
  5198. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5199. {
  5200. front: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(275, "lbs"),
  5203. name: "Front",
  5204. image: {
  5205. source: "./media/characters/kaylum/front.svg",
  5206. bottom: 0.01,
  5207. extra: 1166 / 1031
  5208. }
  5209. },
  5210. frontWingless: {
  5211. height: math.unit(6, "feet"),
  5212. weight: math.unit(275, "lbs"),
  5213. name: "Front (Wingless)",
  5214. image: {
  5215. source: "./media/characters/kaylum/front-wingless.svg",
  5216. bottom: 0.01,
  5217. extra: 1117 / 1031
  5218. }
  5219. }
  5220. },
  5221. [
  5222. {
  5223. name: "Normal",
  5224. height: math.unit(3.05, "meters")
  5225. },
  5226. {
  5227. name: "Master",
  5228. height: math.unit(5.5, "meters")
  5229. },
  5230. {
  5231. name: "Rampage",
  5232. height: math.unit(19, "meters")
  5233. },
  5234. {
  5235. name: "Macro Lite",
  5236. height: math.unit(37, "meters")
  5237. },
  5238. {
  5239. name: "Hyper Predator",
  5240. height: math.unit(61, "meters")
  5241. },
  5242. {
  5243. name: "Macro",
  5244. height: math.unit(138, "meters"),
  5245. default: true
  5246. }
  5247. ]
  5248. ))
  5249. characterMakers.push(() => makeCharacter(
  5250. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5251. {
  5252. front: {
  5253. height: math.unit(5 + 5 / 12, "feet"),
  5254. weight: math.unit(120, "lbs"),
  5255. name: "Front",
  5256. image: {
  5257. source: "./media/characters/geta/front.svg",
  5258. extra: 1003/933,
  5259. bottom: 21/1024
  5260. }
  5261. },
  5262. paw: {
  5263. height: math.unit(0.35, "feet"),
  5264. name: "Paw",
  5265. image: {
  5266. source: "./media/characters/geta/paw.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Micro",
  5273. height: math.unit(3, "inches"),
  5274. default: true
  5275. },
  5276. {
  5277. name: "Normal",
  5278. height: math.unit(5 + 5 / 12, "feet")
  5279. }
  5280. ]
  5281. ))
  5282. characterMakers.push(() => makeCharacter(
  5283. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5284. {
  5285. front: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(300, "lbs"),
  5288. name: "Front",
  5289. image: {
  5290. source: "./media/characters/tyrnn/front.svg"
  5291. }
  5292. }
  5293. },
  5294. [
  5295. {
  5296. name: "Main Height",
  5297. height: math.unit(355, "feet"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Fave. Height",
  5302. height: math.unit(2400, "feet")
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(300, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/appledectomy/front.svg"
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Macro",
  5321. height: math.unit(2500, "feet")
  5322. },
  5323. {
  5324. name: "Megamacro",
  5325. height: math.unit(50, "miles"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Gigamacro",
  5330. height: math.unit(5000, "miles")
  5331. },
  5332. {
  5333. name: "Teramacro",
  5334. height: math.unit(250000, "miles")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(200, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/vulpes/front.svg",
  5347. extra: 573 / 543,
  5348. bottom: 0.033
  5349. }
  5350. },
  5351. side: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(200, "lbs"),
  5354. name: "Side",
  5355. image: {
  5356. source: "./media/characters/vulpes/side.svg",
  5357. extra: 577 / 549,
  5358. bottom: 11 / 588
  5359. }
  5360. },
  5361. back: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(200, "lbs"),
  5364. name: "Back",
  5365. image: {
  5366. source: "./media/characters/vulpes/back.svg",
  5367. extra: 573 / 549,
  5368. bottom: 20 / 593
  5369. }
  5370. },
  5371. feet: {
  5372. height: math.unit(1.276, "feet"),
  5373. name: "Feet",
  5374. image: {
  5375. source: "./media/characters/vulpes/feet.svg"
  5376. }
  5377. },
  5378. maw: {
  5379. height: math.unit(1.18, "feet"),
  5380. name: "Maw",
  5381. image: {
  5382. source: "./media/characters/vulpes/maw.svg"
  5383. }
  5384. },
  5385. },
  5386. [
  5387. {
  5388. name: "Micro",
  5389. height: math.unit(2, "inches")
  5390. },
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(6.3, "feet")
  5394. },
  5395. {
  5396. name: "Macro",
  5397. height: math.unit(850, "feet")
  5398. },
  5399. {
  5400. name: "Megamacro",
  5401. height: math.unit(7500, "feet"),
  5402. default: true
  5403. },
  5404. {
  5405. name: "Gigamacro",
  5406. height: math.unit(570000, "miles")
  5407. }
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5412. {
  5413. front: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(210, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/rain-fallen/front.svg"
  5419. }
  5420. },
  5421. side: {
  5422. height: math.unit(6, "feet"),
  5423. weight: math.unit(210, "lbs"),
  5424. name: "Side",
  5425. image: {
  5426. source: "./media/characters/rain-fallen/side.svg"
  5427. }
  5428. },
  5429. back: {
  5430. height: math.unit(6, "feet"),
  5431. weight: math.unit(210, "lbs"),
  5432. name: "Back",
  5433. image: {
  5434. source: "./media/characters/rain-fallen/back.svg"
  5435. }
  5436. },
  5437. feral: {
  5438. height: math.unit(9, "feet"),
  5439. weight: math.unit(700, "lbs"),
  5440. name: "Feral",
  5441. image: {
  5442. source: "./media/characters/rain-fallen/feral.svg"
  5443. }
  5444. },
  5445. },
  5446. [
  5447. {
  5448. name: "Meddling with Mortals",
  5449. height: math.unit(8 + 8/12, "feet")
  5450. },
  5451. {
  5452. name: "Normal",
  5453. height: math.unit(5, "meter")
  5454. },
  5455. {
  5456. name: "Macro",
  5457. height: math.unit(150, "meter"),
  5458. default: true
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(278e6, "meter")
  5463. },
  5464. {
  5465. name: "Gigamacro",
  5466. height: math.unit(2e9, "meter")
  5467. },
  5468. {
  5469. name: "Teramacro",
  5470. height: math.unit(8e12, "meter")
  5471. },
  5472. {
  5473. name: "Devourer",
  5474. height: math.unit(14, "zettameters")
  5475. },
  5476. {
  5477. name: "Scarlet King",
  5478. height: math.unit(18, "yottameters")
  5479. },
  5480. {
  5481. name: "Void",
  5482. height: math.unit(1e88, "yottameters")
  5483. }
  5484. ]
  5485. ))
  5486. characterMakers.push(() => makeCharacter(
  5487. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5488. {
  5489. standing: {
  5490. height: math.unit(6, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Standing",
  5493. image: {
  5494. source: "./media/characters/zaakira/standing.svg",
  5495. extra: 1599/1504,
  5496. bottom: 39/1638
  5497. }
  5498. },
  5499. laying: {
  5500. height: math.unit(3.3, "feet"),
  5501. weight: math.unit(180, "lbs"),
  5502. name: "Laying",
  5503. image: {
  5504. source: "./media/characters/zaakira/laying.svg"
  5505. }
  5506. },
  5507. },
  5508. [
  5509. {
  5510. name: "Normal",
  5511. height: math.unit(12, "feet")
  5512. },
  5513. {
  5514. name: "Macro",
  5515. height: math.unit(279, "feet"),
  5516. default: true
  5517. }
  5518. ]
  5519. ))
  5520. characterMakers.push(() => makeCharacter(
  5521. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5522. {
  5523. femSfw: {
  5524. height: math.unit(8, "feet"),
  5525. weight: math.unit(350, "lb"),
  5526. name: "Fem",
  5527. image: {
  5528. source: "./media/characters/sigvald/fem-sfw.svg",
  5529. extra: 182 / 164,
  5530. bottom: 8.7 / 190.5
  5531. }
  5532. },
  5533. femNsfw: {
  5534. height: math.unit(8, "feet"),
  5535. weight: math.unit(350, "lb"),
  5536. name: "Fem (NSFW)",
  5537. image: {
  5538. source: "./media/characters/sigvald/fem-nsfw.svg",
  5539. extra: 182 / 164,
  5540. bottom: 8.7 / 190.5
  5541. }
  5542. },
  5543. maleNsfw: {
  5544. height: math.unit(8, "feet"),
  5545. weight: math.unit(350, "lb"),
  5546. name: "Male (NSFW)",
  5547. image: {
  5548. source: "./media/characters/sigvald/male-nsfw.svg",
  5549. extra: 182 / 164,
  5550. bottom: 8.7 / 190.5
  5551. }
  5552. },
  5553. hermNsfw: {
  5554. height: math.unit(8, "feet"),
  5555. weight: math.unit(350, "lb"),
  5556. name: "Herm (NSFW)",
  5557. image: {
  5558. source: "./media/characters/sigvald/herm-nsfw.svg",
  5559. extra: 182 / 164,
  5560. bottom: 8.7 / 190.5
  5561. }
  5562. },
  5563. dick: {
  5564. height: math.unit(2.36, "feet"),
  5565. name: "Dick",
  5566. image: {
  5567. source: "./media/characters/sigvald/dick.svg"
  5568. }
  5569. },
  5570. eye: {
  5571. height: math.unit(0.31, "feet"),
  5572. name: "Eye",
  5573. image: {
  5574. source: "./media/characters/sigvald/eye.svg"
  5575. }
  5576. },
  5577. mouth: {
  5578. height: math.unit(0.92, "feet"),
  5579. name: "Mouth",
  5580. image: {
  5581. source: "./media/characters/sigvald/mouth.svg"
  5582. }
  5583. },
  5584. paws: {
  5585. height: math.unit(2.2, "feet"),
  5586. name: "Paws",
  5587. image: {
  5588. source: "./media/characters/sigvald/paws.svg"
  5589. }
  5590. }
  5591. },
  5592. [
  5593. {
  5594. name: "Normal",
  5595. height: math.unit(8, "feet")
  5596. },
  5597. {
  5598. name: "Large",
  5599. height: math.unit(12, "feet")
  5600. },
  5601. {
  5602. name: "Larger",
  5603. height: math.unit(20, "feet")
  5604. },
  5605. {
  5606. name: "Macro",
  5607. height: math.unit(150, "feet")
  5608. },
  5609. {
  5610. name: "Macro+",
  5611. height: math.unit(200, "feet"),
  5612. default: true
  5613. },
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5618. {
  5619. side: {
  5620. height: math.unit(12, "feet"),
  5621. weight: math.unit(2000, "kg"),
  5622. name: "Side",
  5623. image: {
  5624. source: "./media/characters/scott/side.svg",
  5625. extra: 754 / 724,
  5626. bottom: 0.069
  5627. }
  5628. },
  5629. upright: {
  5630. height: math.unit(12, "feet"),
  5631. weight: math.unit(2000, "kg"),
  5632. name: "Upright",
  5633. image: {
  5634. source: "./media/characters/scott/upright.svg",
  5635. extra: 3881 / 3722,
  5636. bottom: 0.05
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(12, "feet"),
  5644. default: true
  5645. },
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5650. {
  5651. side: {
  5652. height: math.unit(8, "meters"),
  5653. weight: math.unit(84755, "lbs"),
  5654. name: "Side",
  5655. image: {
  5656. source: "./media/characters/tobias/side.svg",
  5657. extra: 1474 / 1096,
  5658. bottom: 38.9 / 1513.1235
  5659. }
  5660. },
  5661. },
  5662. [
  5663. {
  5664. name: "Normal",
  5665. height: math.unit(8, "meters"),
  5666. default: true
  5667. },
  5668. ]
  5669. ))
  5670. characterMakers.push(() => makeCharacter(
  5671. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5672. {
  5673. front: {
  5674. height: math.unit(5.5, "feet"),
  5675. weight: math.unit(400, "lbs"),
  5676. name: "Front",
  5677. image: {
  5678. source: "./media/characters/kieran/front.svg",
  5679. extra: 2694 / 2364,
  5680. bottom: 217 / 2908
  5681. }
  5682. },
  5683. side: {
  5684. height: math.unit(5.5, "feet"),
  5685. weight: math.unit(400, "lbs"),
  5686. name: "Side",
  5687. image: {
  5688. source: "./media/characters/kieran/side.svg",
  5689. extra: 875 / 777,
  5690. bottom: 84.6 / 959
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5.5, "feet"),
  5698. default: true
  5699. },
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5704. {
  5705. side: {
  5706. height: math.unit(2, "meters"),
  5707. weight: math.unit(70, "kg"),
  5708. name: "Side",
  5709. image: {
  5710. source: "./media/characters/sanya/side.svg",
  5711. bottom: 0.02,
  5712. extra: 1.02
  5713. }
  5714. },
  5715. },
  5716. [
  5717. {
  5718. name: "Small",
  5719. height: math.unit(2, "meters")
  5720. },
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(3, "meters")
  5724. },
  5725. {
  5726. name: "Macro",
  5727. height: math.unit(16, "meters"),
  5728. default: true
  5729. },
  5730. ]
  5731. ))
  5732. characterMakers.push(() => makeCharacter(
  5733. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5734. {
  5735. front: {
  5736. height: math.unit(2, "meters"),
  5737. weight: math.unit(120, "kg"),
  5738. name: "Front",
  5739. image: {
  5740. source: "./media/characters/miranda/front.svg",
  5741. extra: 195 / 185,
  5742. bottom: 10.9 / 206.5
  5743. }
  5744. },
  5745. back: {
  5746. height: math.unit(2, "meters"),
  5747. weight: math.unit(120, "kg"),
  5748. name: "Back",
  5749. image: {
  5750. source: "./media/characters/miranda/back.svg",
  5751. extra: 201 / 193,
  5752. bottom: 2.3 / 203.7
  5753. }
  5754. },
  5755. },
  5756. [
  5757. {
  5758. name: "Normal",
  5759. height: math.unit(10, "feet"),
  5760. default: true
  5761. }
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "James", species: ["deer"], tags: ["anthro"] },
  5766. {
  5767. side: {
  5768. height: math.unit(2, "meters"),
  5769. weight: math.unit(100, "kg"),
  5770. name: "Front",
  5771. image: {
  5772. source: "./media/characters/james/front.svg",
  5773. extra: 10 / 8.5
  5774. }
  5775. },
  5776. },
  5777. [
  5778. {
  5779. name: "Normal",
  5780. height: math.unit(8.5, "feet"),
  5781. default: true
  5782. }
  5783. ]
  5784. ))
  5785. characterMakers.push(() => makeCharacter(
  5786. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5787. {
  5788. side: {
  5789. height: math.unit(9.5, "feet"),
  5790. weight: math.unit(2500, "lbs"),
  5791. name: "Side",
  5792. image: {
  5793. source: "./media/characters/heather/side.svg"
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(9.5, "feet"),
  5801. default: true
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5807. {
  5808. side: {
  5809. height: math.unit(6.5, "feet"),
  5810. weight: math.unit(400, "lbs"),
  5811. name: "Side",
  5812. image: {
  5813. source: "./media/characters/lukas/side.svg",
  5814. extra: 7.25 / 6.5
  5815. }
  5816. },
  5817. },
  5818. [
  5819. {
  5820. name: "Normal",
  5821. height: math.unit(6.5, "feet"),
  5822. default: true
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5828. {
  5829. side: {
  5830. height: math.unit(5, "feet"),
  5831. weight: math.unit(3000, "lbs"),
  5832. name: "Side",
  5833. image: {
  5834. source: "./media/characters/louise/side.svg"
  5835. }
  5836. },
  5837. },
  5838. [
  5839. {
  5840. name: "Normal",
  5841. height: math.unit(5, "feet"),
  5842. default: true
  5843. }
  5844. ]
  5845. ))
  5846. characterMakers.push(() => makeCharacter(
  5847. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5848. {
  5849. side: {
  5850. height: math.unit(6, "feet"),
  5851. weight: math.unit(150, "lbs"),
  5852. name: "Side",
  5853. image: {
  5854. source: "./media/characters/ramona/side.svg",
  5855. extra: 871/854,
  5856. bottom: 41/912
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Normal",
  5863. height: math.unit(6 + 4/12, "feet")
  5864. },
  5865. {
  5866. name: "Minimacro",
  5867. height: math.unit(5.3, "meters"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(20, "stories")
  5873. },
  5874. {
  5875. name: "Macro+",
  5876. height: math.unit(50, "stories")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5882. {
  5883. standing: {
  5884. height: math.unit(5.75, "feet"),
  5885. weight: math.unit(160, "lbs"),
  5886. name: "Standing",
  5887. image: {
  5888. source: "./media/characters/deerpuff/standing.svg",
  5889. extra: 682 / 624
  5890. }
  5891. },
  5892. sitting: {
  5893. height: math.unit(5.75 / 1.79, "feet"),
  5894. weight: math.unit(160, "lbs"),
  5895. name: "Sitting",
  5896. image: {
  5897. source: "./media/characters/deerpuff/sitting.svg",
  5898. bottom: 44 / 400,
  5899. extra: 1
  5900. }
  5901. },
  5902. taurLaying: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(400, "lbs"),
  5905. name: "Taur (Laying)",
  5906. image: {
  5907. source: "./media/characters/deerpuff/taur-laying.svg"
  5908. }
  5909. },
  5910. },
  5911. [
  5912. {
  5913. name: "Puffball",
  5914. height: math.unit(6, "inches")
  5915. },
  5916. {
  5917. name: "Normalpuff",
  5918. height: math.unit(5.75, "feet")
  5919. },
  5920. {
  5921. name: "Macropuff",
  5922. height: math.unit(1500, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Megapuff",
  5927. height: math.unit(500, "miles")
  5928. },
  5929. {
  5930. name: "Gigapuff",
  5931. height: math.unit(250000, "miles")
  5932. },
  5933. {
  5934. name: "Omegapuff",
  5935. height: math.unit(1000, "lightyears")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5941. {
  5942. stomping: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(170, "lbs"),
  5945. name: "Stomping",
  5946. image: {
  5947. source: "./media/characters/vivian/stomping.svg"
  5948. }
  5949. },
  5950. sitting: {
  5951. height: math.unit(6 / 1.75, "feet"),
  5952. weight: math.unit(170, "lbs"),
  5953. name: "Sitting",
  5954. image: {
  5955. source: "./media/characters/vivian/sitting.svg",
  5956. bottom: 1 / 6.4,
  5957. extra: 1,
  5958. }
  5959. },
  5960. },
  5961. [
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(7, "feet"),
  5965. default: true
  5966. },
  5967. {
  5968. name: "Macro",
  5969. height: math.unit(10, "stories")
  5970. },
  5971. {
  5972. name: "Macro+",
  5973. height: math.unit(30, "stories")
  5974. },
  5975. {
  5976. name: "Megamacro",
  5977. height: math.unit(10, "miles")
  5978. },
  5979. {
  5980. name: "Megamacro+",
  5981. height: math.unit(2750000, "meters")
  5982. },
  5983. ]
  5984. ))
  5985. characterMakers.push(() => makeCharacter(
  5986. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5987. {
  5988. front: {
  5989. height: math.unit(6, "feet"),
  5990. weight: math.unit(160, "lbs"),
  5991. name: "Front",
  5992. image: {
  5993. source: "./media/characters/prince/front.svg",
  5994. extra: 3400 / 3000
  5995. }
  5996. },
  5997. jumping: {
  5998. height: math.unit(6, "feet"),
  5999. weight: math.unit(160, "lbs"),
  6000. name: "Jumping",
  6001. image: {
  6002. source: "./media/characters/prince/jump.svg",
  6003. extra: 2555 / 2134
  6004. }
  6005. },
  6006. },
  6007. [
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(7.75, "feet"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Not cute",
  6015. height: math.unit(17, "feet")
  6016. },
  6017. {
  6018. name: "I said NOT",
  6019. height: math.unit(91, "feet")
  6020. },
  6021. {
  6022. name: "Please stop",
  6023. height: math.unit(560, "feet")
  6024. },
  6025. {
  6026. name: "What have you done",
  6027. height: math.unit(2200, "feet")
  6028. },
  6029. {
  6030. name: "Deer God",
  6031. height: math.unit(3.6, "miles")
  6032. },
  6033. ]
  6034. ))
  6035. characterMakers.push(() => makeCharacter(
  6036. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6037. {
  6038. standing: {
  6039. height: math.unit(6, "feet"),
  6040. weight: math.unit(300, "lbs"),
  6041. name: "Standing",
  6042. image: {
  6043. source: "./media/characters/psymon/standing.svg",
  6044. extra: 1888 / 1810,
  6045. bottom: 0.05
  6046. }
  6047. },
  6048. slithering: {
  6049. height: math.unit(6, "feet"),
  6050. weight: math.unit(300, "lbs"),
  6051. name: "Slithering",
  6052. image: {
  6053. source: "./media/characters/psymon/slithering.svg",
  6054. extra: 1330 / 1224
  6055. }
  6056. },
  6057. slitheringAlt: {
  6058. height: math.unit(6, "feet"),
  6059. weight: math.unit(300, "lbs"),
  6060. name: "Slithering (Alt)",
  6061. image: {
  6062. source: "./media/characters/psymon/slithering-alt.svg",
  6063. extra: 1330 / 1224
  6064. }
  6065. },
  6066. },
  6067. [
  6068. {
  6069. name: "Normal",
  6070. height: math.unit(11.25, "feet"),
  6071. default: true
  6072. },
  6073. {
  6074. name: "Large",
  6075. height: math.unit(27, "feet")
  6076. },
  6077. {
  6078. name: "Giant",
  6079. height: math.unit(87, "feet")
  6080. },
  6081. {
  6082. name: "Macro",
  6083. height: math.unit(365, "feet")
  6084. },
  6085. {
  6086. name: "Megamacro",
  6087. height: math.unit(3, "miles")
  6088. },
  6089. {
  6090. name: "World Serpent",
  6091. height: math.unit(8000, "miles")
  6092. },
  6093. ]
  6094. ))
  6095. characterMakers.push(() => makeCharacter(
  6096. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6097. {
  6098. front: {
  6099. height: math.unit(6, "feet"),
  6100. weight: math.unit(180, "lbs"),
  6101. name: "Front",
  6102. image: {
  6103. source: "./media/characters/daimos/front.svg",
  6104. extra: 4160 / 3897,
  6105. bottom: 0.021
  6106. }
  6107. }
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(8, "feet"),
  6113. default: true
  6114. },
  6115. {
  6116. name: "Big Dog",
  6117. height: math.unit(22, "feet")
  6118. },
  6119. {
  6120. name: "Macro",
  6121. height: math.unit(127, "feet")
  6122. },
  6123. {
  6124. name: "Megamacro",
  6125. height: math.unit(3600, "feet")
  6126. },
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6131. {
  6132. side: {
  6133. height: math.unit(6, "feet"),
  6134. weight: math.unit(180, "lbs"),
  6135. name: "Side",
  6136. image: {
  6137. source: "./media/characters/blake/side.svg",
  6138. extra: 1212 / 1120,
  6139. bottom: 0.05
  6140. }
  6141. },
  6142. crouched: {
  6143. height: math.unit(6 * 0.57, "feet"),
  6144. weight: math.unit(180, "lbs"),
  6145. name: "Crouched",
  6146. image: {
  6147. source: "./media/characters/blake/crouched.svg",
  6148. extra: 840 / 587,
  6149. bottom: 0.04
  6150. }
  6151. },
  6152. bent: {
  6153. height: math.unit(6 * 0.75, "feet"),
  6154. weight: math.unit(180, "lbs"),
  6155. name: "Bent",
  6156. image: {
  6157. source: "./media/characters/blake/bent.svg",
  6158. extra: 592 / 544,
  6159. bottom: 0.035
  6160. }
  6161. },
  6162. },
  6163. [
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(8 + 1 / 6, "feet"),
  6167. default: true
  6168. },
  6169. {
  6170. name: "Big Backside",
  6171. height: math.unit(37, "feet")
  6172. },
  6173. {
  6174. name: "Subway Shredder",
  6175. height: math.unit(72, "feet")
  6176. },
  6177. {
  6178. name: "City Carver",
  6179. height: math.unit(1675, "feet")
  6180. },
  6181. {
  6182. name: "Tectonic Tweaker",
  6183. height: math.unit(2300, "miles")
  6184. },
  6185. ]
  6186. ))
  6187. characterMakers.push(() => makeCharacter(
  6188. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6189. {
  6190. front: {
  6191. height: math.unit(6, "feet"),
  6192. weight: math.unit(180, "lbs"),
  6193. name: "Front",
  6194. image: {
  6195. source: "./media/characters/guisetto/front.svg",
  6196. extra: 856 / 817,
  6197. bottom: 0.06
  6198. }
  6199. },
  6200. airborne: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(180, "lbs"),
  6203. name: "Airborne",
  6204. image: {
  6205. source: "./media/characters/guisetto/airborne.svg",
  6206. extra: 584 / 525
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(10 + 11 / 12, "feet"),
  6214. default: true
  6215. },
  6216. {
  6217. name: "Large",
  6218. height: math.unit(35, "feet")
  6219. },
  6220. {
  6221. name: "Macro",
  6222. height: math.unit(475, "feet")
  6223. },
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6228. {
  6229. front: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(180, "lbs"),
  6232. name: "Front",
  6233. image: {
  6234. source: "./media/characters/luxor/front.svg",
  6235. extra: 2940 / 2152
  6236. }
  6237. },
  6238. back: {
  6239. height: math.unit(6, "feet"),
  6240. weight: math.unit(180, "lbs"),
  6241. name: "Back",
  6242. image: {
  6243. source: "./media/characters/luxor/back.svg",
  6244. extra: 1083 / 960
  6245. }
  6246. },
  6247. },
  6248. [
  6249. {
  6250. name: "Normal",
  6251. height: math.unit(5 + 5 / 6, "feet"),
  6252. default: true
  6253. },
  6254. {
  6255. name: "Lamp",
  6256. height: math.unit(50, "feet")
  6257. },
  6258. {
  6259. name: "Lämp",
  6260. height: math.unit(300, "feet")
  6261. },
  6262. {
  6263. name: "The sun is a lamp",
  6264. height: math.unit(250000, "miles")
  6265. },
  6266. ]
  6267. ))
  6268. characterMakers.push(() => makeCharacter(
  6269. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6270. {
  6271. front: {
  6272. height: math.unit(6, "feet"),
  6273. weight: math.unit(50, "lbs"),
  6274. name: "Front",
  6275. image: {
  6276. source: "./media/characters/huoyan/front.svg"
  6277. }
  6278. },
  6279. side: {
  6280. height: math.unit(6, "feet"),
  6281. weight: math.unit(180, "lbs"),
  6282. name: "Side",
  6283. image: {
  6284. source: "./media/characters/huoyan/side.svg"
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Chef",
  6291. height: math.unit(9, "feet")
  6292. },
  6293. {
  6294. name: "Normal",
  6295. height: math.unit(65, "feet"),
  6296. default: true
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(780, "feet")
  6301. },
  6302. {
  6303. name: "Flaming Mountain",
  6304. height: math.unit(4.8, "miles")
  6305. },
  6306. {
  6307. name: "Celestial",
  6308. height: math.unit(765000, "miles")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6314. {
  6315. front: {
  6316. height: math.unit(5 + 3 / 4, "feet"),
  6317. weight: math.unit(120, "lbs"),
  6318. name: "Front",
  6319. image: {
  6320. source: "./media/characters/tails/front.svg"
  6321. }
  6322. }
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(5 + 3 / 4, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6334. {
  6335. front: {
  6336. height: math.unit(4, "feet"),
  6337. weight: math.unit(50, "lbs"),
  6338. name: "Front",
  6339. image: {
  6340. source: "./media/characters/rainy/front.svg"
  6341. }
  6342. }
  6343. },
  6344. [
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(800, "feet"),
  6348. default: true
  6349. }
  6350. ]
  6351. ))
  6352. characterMakers.push(() => makeCharacter(
  6353. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6354. {
  6355. front: {
  6356. height: math.unit(6, "feet"),
  6357. weight: math.unit(150, "lbs"),
  6358. name: "Front",
  6359. image: {
  6360. source: "./media/characters/rainier/front.svg"
  6361. }
  6362. }
  6363. },
  6364. [
  6365. {
  6366. name: "Micro",
  6367. height: math.unit(2, "mm"),
  6368. default: true
  6369. }
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(8 + 4/12, "feet"),
  6377. weight: math.unit(450, "kilograms"),
  6378. volume: math.unit(5, "cups"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/andy-renard/front.svg",
  6382. extra: 1839/1726,
  6383. bottom: 134/1973
  6384. }
  6385. },
  6386. back: {
  6387. height: math.unit(8 + 4/12, "feet"),
  6388. weight: math.unit(450, "kilograms"),
  6389. volume: math.unit(5, "cups"),
  6390. name: "Back",
  6391. image: {
  6392. source: "./media/characters/andy-renard/back.svg",
  6393. extra: 1838/1710,
  6394. bottom: 105/1943
  6395. }
  6396. },
  6397. },
  6398. [
  6399. {
  6400. name: "Tall",
  6401. height: math.unit(8 + 4/12, "feet")
  6402. },
  6403. {
  6404. name: "Mini Macro",
  6405. height: math.unit(15, "feet"),
  6406. default: true
  6407. },
  6408. {
  6409. name: "Macro",
  6410. height: math.unit(100, "feet")
  6411. },
  6412. {
  6413. name: "Mega Macro",
  6414. height: math.unit(1000, "feet")
  6415. },
  6416. {
  6417. name: "Giga Macro",
  6418. height: math.unit(10, "miles")
  6419. },
  6420. {
  6421. name: "God Macro",
  6422. height: math.unit(1, "multiverse")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(210, "lbs"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/cimmaron/front-sfw.svg",
  6435. extra: 701 / 676,
  6436. bottom: 0.046
  6437. }
  6438. },
  6439. back: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(210, "lbs"),
  6442. name: "Back",
  6443. image: {
  6444. source: "./media/characters/cimmaron/back-sfw.svg",
  6445. extra: 701 / 676,
  6446. bottom: 0.046
  6447. }
  6448. },
  6449. frontNsfw: {
  6450. height: math.unit(6, "feet"),
  6451. weight: math.unit(210, "lbs"),
  6452. name: "Front (NSFW)",
  6453. image: {
  6454. source: "./media/characters/cimmaron/front-nsfw.svg",
  6455. extra: 701 / 676,
  6456. bottom: 0.046
  6457. }
  6458. },
  6459. backNsfw: {
  6460. height: math.unit(6, "feet"),
  6461. weight: math.unit(210, "lbs"),
  6462. name: "Back (NSFW)",
  6463. image: {
  6464. source: "./media/characters/cimmaron/back-nsfw.svg",
  6465. extra: 701 / 676,
  6466. bottom: 0.046
  6467. }
  6468. },
  6469. dick: {
  6470. height: math.unit(1.714, "feet"),
  6471. name: "Dick",
  6472. image: {
  6473. source: "./media/characters/cimmaron/dick.svg"
  6474. }
  6475. },
  6476. },
  6477. [
  6478. {
  6479. name: "Normal",
  6480. height: math.unit(6, "feet"),
  6481. default: true
  6482. },
  6483. {
  6484. name: "Macro Mayor",
  6485. height: math.unit(350, "meters")
  6486. },
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6491. {
  6492. front: {
  6493. height: math.unit(6, "feet"),
  6494. weight: math.unit(200, "lbs"),
  6495. name: "Front",
  6496. image: {
  6497. source: "./media/characters/akari/front.svg",
  6498. extra: 962 / 901,
  6499. bottom: 0.04
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Micro",
  6506. height: math.unit(5, "inches"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Normal",
  6511. height: math.unit(7, "feet")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6, "feet"),
  6520. weight: math.unit(140, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/cynosura/front.svg",
  6524. extra: 437/410,
  6525. bottom: 9/446
  6526. }
  6527. },
  6528. back: {
  6529. height: math.unit(6, "feet"),
  6530. weight: math.unit(140, "lbs"),
  6531. name: "Back",
  6532. image: {
  6533. source: "./media/characters/cynosura/back.svg",
  6534. extra: 1304/1160,
  6535. bottom: 71/1375
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Micro",
  6542. height: math.unit(4, "inches")
  6543. },
  6544. {
  6545. name: "Normal",
  6546. height: math.unit(5.75, "feet"),
  6547. default: true
  6548. },
  6549. {
  6550. name: "Tall",
  6551. height: math.unit(10, "feet")
  6552. },
  6553. {
  6554. name: "Big",
  6555. height: math.unit(20, "feet")
  6556. },
  6557. {
  6558. name: "Macro",
  6559. height: math.unit(50, "feet")
  6560. },
  6561. ]
  6562. ))
  6563. characterMakers.push(() => makeCharacter(
  6564. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6565. {
  6566. front: {
  6567. height: math.unit(13 + 2/12, "feet"),
  6568. weight: math.unit(800, "kg"),
  6569. name: "Front",
  6570. image: {
  6571. source: "./media/characters/gin/front.svg",
  6572. extra: 1312/1191,
  6573. bottom: 45/1357
  6574. }
  6575. },
  6576. mouth: {
  6577. height: math.unit(2.39 * 1.8, "feet"),
  6578. name: "Mouth",
  6579. image: {
  6580. source: "./media/characters/gin/mouth.svg"
  6581. }
  6582. },
  6583. hand: {
  6584. height: math.unit(1.57 * 2.19, "feet"),
  6585. name: "Hand",
  6586. image: {
  6587. source: "./media/characters/gin/hand.svg"
  6588. }
  6589. },
  6590. foot: {
  6591. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6592. name: "Foot",
  6593. image: {
  6594. source: "./media/characters/gin/foot.svg"
  6595. }
  6596. },
  6597. sole: {
  6598. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6599. name: "Sole",
  6600. image: {
  6601. source: "./media/characters/gin/sole.svg"
  6602. }
  6603. },
  6604. },
  6605. [
  6606. {
  6607. name: "Very Small",
  6608. height: math.unit(13 + 2 / 12, "feet")
  6609. },
  6610. {
  6611. name: "Micro",
  6612. height: math.unit(600, "miles")
  6613. },
  6614. {
  6615. name: "Regular",
  6616. height: math.unit(20, "earths"),
  6617. default: true
  6618. },
  6619. {
  6620. name: "Macro",
  6621. height: math.unit(2.2, "solarradii")
  6622. },
  6623. {
  6624. name: "Teramacro",
  6625. height: math.unit(1.2, "galaxies")
  6626. },
  6627. {
  6628. name: "Omegamacro",
  6629. height: math.unit(200, "universes")
  6630. },
  6631. ]
  6632. ))
  6633. characterMakers.push(() => makeCharacter(
  6634. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6635. {
  6636. front: {
  6637. height: math.unit(6 + 1 / 6, "feet"),
  6638. weight: math.unit(178, "lbs"),
  6639. name: "Front",
  6640. image: {
  6641. source: "./media/characters/guy/front.svg"
  6642. }
  6643. }
  6644. },
  6645. [
  6646. {
  6647. name: "Normal",
  6648. height: math.unit(6 + 1 / 6, "feet"),
  6649. default: true
  6650. },
  6651. {
  6652. name: "Large",
  6653. height: math.unit(25 + 7 / 12, "feet")
  6654. },
  6655. {
  6656. name: "Macro",
  6657. height: math.unit(60 + 9 / 12, "feet")
  6658. },
  6659. {
  6660. name: "Macro+",
  6661. height: math.unit(246, "feet")
  6662. },
  6663. {
  6664. name: "Macro++",
  6665. height: math.unit(878, "feet")
  6666. }
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(9, "feet"),
  6674. weight: math.unit(800, "lbs"),
  6675. name: "Front",
  6676. image: {
  6677. source: "./media/characters/tiberius/front.svg",
  6678. extra: 2295 / 2071
  6679. }
  6680. },
  6681. back: {
  6682. height: math.unit(9, "feet"),
  6683. weight: math.unit(800, "lbs"),
  6684. name: "Back",
  6685. image: {
  6686. source: "./media/characters/tiberius/back.svg",
  6687. extra: 2373 / 2160
  6688. }
  6689. },
  6690. },
  6691. [
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(9, "feet"),
  6695. default: true
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6701. {
  6702. front: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(600, "lbs"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/surgo/front.svg",
  6708. extra: 3591 / 2227
  6709. }
  6710. },
  6711. back: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(600, "lbs"),
  6714. name: "Back",
  6715. image: {
  6716. source: "./media/characters/surgo/back.svg",
  6717. extra: 3557 / 2228
  6718. }
  6719. },
  6720. laying: {
  6721. height: math.unit(6 * 0.85, "feet"),
  6722. weight: math.unit(600, "lbs"),
  6723. name: "Laying",
  6724. image: {
  6725. source: "./media/characters/surgo/laying.svg"
  6726. }
  6727. },
  6728. },
  6729. [
  6730. {
  6731. name: "Normal",
  6732. height: math.unit(6, "feet"),
  6733. default: true
  6734. }
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6739. {
  6740. side: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(150, "lbs"),
  6743. name: "Side",
  6744. image: {
  6745. source: "./media/characters/cibus/side.svg",
  6746. extra: 800 / 400
  6747. }
  6748. },
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(6, "feet"),
  6754. default: true
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(240, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/nibbles/front.svg"
  6767. }
  6768. },
  6769. side: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(240, "lbs"),
  6772. name: "Side",
  6773. image: {
  6774. source: "./media/characters/nibbles/side.svg"
  6775. }
  6776. },
  6777. },
  6778. [
  6779. {
  6780. name: "Normal",
  6781. height: math.unit(9, "feet"),
  6782. default: true
  6783. }
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6788. {
  6789. side: {
  6790. height: math.unit(5 + 1 / 6, "feet"),
  6791. weight: math.unit(130, "lbs"),
  6792. name: "Side",
  6793. image: {
  6794. source: "./media/characters/rikky/side.svg",
  6795. extra: 851 / 801
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(5 + 1 / 6, "feet")
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(152, "feet"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Megamacro",
  6811. height: math.unit(7, "miles")
  6812. }
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6817. {
  6818. side: {
  6819. height: math.unit(370, "cm"),
  6820. weight: math.unit(350, "lbs"),
  6821. name: "Side",
  6822. image: {
  6823. source: "./media/characters/malfressa/side.svg"
  6824. }
  6825. },
  6826. walking: {
  6827. height: math.unit(370, "cm"),
  6828. weight: math.unit(350, "lbs"),
  6829. name: "Walking",
  6830. image: {
  6831. source: "./media/characters/malfressa/walking.svg"
  6832. }
  6833. },
  6834. feral: {
  6835. height: math.unit(2500, "cm"),
  6836. weight: math.unit(100000, "lbs"),
  6837. name: "Feral",
  6838. image: {
  6839. source: "./media/characters/malfressa/feral.svg",
  6840. extra: 2108 / 837,
  6841. bottom: 0.02
  6842. }
  6843. },
  6844. },
  6845. [
  6846. {
  6847. name: "Normal",
  6848. height: math.unit(370, "cm")
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(300, "meters"),
  6853. default: true
  6854. }
  6855. ]
  6856. ))
  6857. characterMakers.push(() => makeCharacter(
  6858. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6859. {
  6860. front: {
  6861. height: math.unit(6, "feet"),
  6862. weight: math.unit(60, "kg"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/jaro/front.svg",
  6866. extra: 845/817,
  6867. bottom: 45/890
  6868. }
  6869. },
  6870. back: {
  6871. height: math.unit(6, "feet"),
  6872. weight: math.unit(60, "kg"),
  6873. name: "Back",
  6874. image: {
  6875. source: "./media/characters/jaro/back.svg",
  6876. extra: 847/817,
  6877. bottom: 34/881
  6878. }
  6879. },
  6880. },
  6881. [
  6882. {
  6883. name: "Micro",
  6884. height: math.unit(7, "inches")
  6885. },
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(5.5, "feet"),
  6889. default: true
  6890. },
  6891. {
  6892. name: "Minimacro",
  6893. height: math.unit(20, "feet")
  6894. },
  6895. {
  6896. name: "Macro",
  6897. height: math.unit(200, "meters")
  6898. }
  6899. ]
  6900. ))
  6901. characterMakers.push(() => makeCharacter(
  6902. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6903. {
  6904. front: {
  6905. height: math.unit(6, "feet"),
  6906. weight: math.unit(195, "lb"),
  6907. name: "Front",
  6908. image: {
  6909. source: "./media/characters/rogue/front.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Macro",
  6916. height: math.unit(90, "feet"),
  6917. default: true
  6918. },
  6919. ]
  6920. ))
  6921. characterMakers.push(() => makeCharacter(
  6922. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6923. {
  6924. standing: {
  6925. height: math.unit(5 + 8 / 12, "feet"),
  6926. weight: math.unit(140, "lb"),
  6927. name: "Standing",
  6928. image: {
  6929. source: "./media/characters/piper/standing.svg",
  6930. extra: 1440/1284,
  6931. bottom: 66/1506
  6932. }
  6933. },
  6934. running: {
  6935. height: math.unit(5 + 8 / 12, "feet"),
  6936. weight: math.unit(140, "lb"),
  6937. name: "Running",
  6938. image: {
  6939. source: "./media/characters/piper/running.svg",
  6940. extra: 3948/3655,
  6941. bottom: 0/3948
  6942. }
  6943. },
  6944. sole: {
  6945. height: math.unit(0.81, "feet"),
  6946. weight: math.unit(2, "kg"),
  6947. name: "Sole",
  6948. image: {
  6949. source: "./media/characters/piper/sole.svg"
  6950. }
  6951. },
  6952. nipple: {
  6953. height: math.unit(0.25, "feet"),
  6954. weight: math.unit(1.5, "lb"),
  6955. name: "Nipple",
  6956. image: {
  6957. source: "./media/characters/piper/nipple.svg"
  6958. }
  6959. },
  6960. head: {
  6961. height: math.unit(1.1, "feet"),
  6962. name: "Head",
  6963. image: {
  6964. source: "./media/characters/piper/head.svg"
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Micro",
  6971. height: math.unit(2, "inches")
  6972. },
  6973. {
  6974. name: "Normal",
  6975. height: math.unit(5 + 8 / 12, "feet")
  6976. },
  6977. {
  6978. name: "Macro",
  6979. height: math.unit(250, "feet"),
  6980. default: true
  6981. },
  6982. {
  6983. name: "Megamacro",
  6984. height: math.unit(7, "miles")
  6985. },
  6986. ]
  6987. ))
  6988. characterMakers.push(() => makeCharacter(
  6989. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6990. {
  6991. front: {
  6992. height: math.unit(6, "feet"),
  6993. weight: math.unit(220, "lb"),
  6994. name: "Front",
  6995. image: {
  6996. source: "./media/characters/gemini/front.svg"
  6997. }
  6998. },
  6999. back: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(220, "lb"),
  7002. name: "Back",
  7003. image: {
  7004. source: "./media/characters/gemini/back.svg"
  7005. }
  7006. },
  7007. kneeling: {
  7008. height: math.unit(6 / 1.5, "feet"),
  7009. weight: math.unit(220, "lb"),
  7010. name: "Kneeling",
  7011. image: {
  7012. source: "./media/characters/gemini/kneeling.svg",
  7013. bottom: 0.02
  7014. }
  7015. },
  7016. },
  7017. [
  7018. {
  7019. name: "Macro",
  7020. height: math.unit(300, "meters"),
  7021. default: true
  7022. },
  7023. {
  7024. name: "Megamacro",
  7025. height: math.unit(6900, "meters")
  7026. },
  7027. ]
  7028. ))
  7029. characterMakers.push(() => makeCharacter(
  7030. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7031. {
  7032. anthro: {
  7033. height: math.unit(2.35, "meters"),
  7034. weight: math.unit(73, "kg"),
  7035. name: "Anthro",
  7036. image: {
  7037. source: "./media/characters/alicia/anthro.svg",
  7038. extra: 2571 / 2385,
  7039. bottom: 75 / 2648
  7040. }
  7041. },
  7042. paw: {
  7043. height: math.unit(1.32, "feet"),
  7044. name: "Paw",
  7045. image: {
  7046. source: "./media/characters/alicia/paw.svg"
  7047. }
  7048. },
  7049. feral: {
  7050. height: math.unit(1.69, "meters"),
  7051. weight: math.unit(73, "kg"),
  7052. name: "Feral",
  7053. image: {
  7054. source: "./media/characters/alicia/feral.svg",
  7055. extra: 2123 / 1715,
  7056. bottom: 222 / 2349
  7057. }
  7058. },
  7059. },
  7060. [
  7061. {
  7062. name: "Normal",
  7063. height: math.unit(2.35, "meters")
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(60, "meters"),
  7068. default: true
  7069. },
  7070. {
  7071. name: "Megamacro",
  7072. height: math.unit(10000, "kilometers")
  7073. },
  7074. ]
  7075. ))
  7076. characterMakers.push(() => makeCharacter(
  7077. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7078. {
  7079. front: {
  7080. height: math.unit(7, "feet"),
  7081. weight: math.unit(250, "lbs"),
  7082. name: "Front",
  7083. image: {
  7084. source: "./media/characters/archy/front.svg"
  7085. }
  7086. }
  7087. },
  7088. [
  7089. {
  7090. name: "Micro",
  7091. height: math.unit(1, "inch")
  7092. },
  7093. {
  7094. name: "Shorty",
  7095. height: math.unit(5, "feet")
  7096. },
  7097. {
  7098. name: "Normal",
  7099. height: math.unit(7, "feet")
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(600, "meters"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Megamacro",
  7108. height: math.unit(1, "mile")
  7109. },
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7114. {
  7115. front: {
  7116. height: math.unit(1.65, "meters"),
  7117. weight: math.unit(74, "kg"),
  7118. name: "Front",
  7119. image: {
  7120. source: "./media/characters/berri/front.svg",
  7121. extra: 857 / 837,
  7122. bottom: 18 / 877
  7123. }
  7124. },
  7125. bum: {
  7126. height: math.unit(1.46, "feet"),
  7127. name: "Bum",
  7128. image: {
  7129. source: "./media/characters/berri/bum.svg"
  7130. }
  7131. },
  7132. mouth: {
  7133. height: math.unit(0.44, "feet"),
  7134. name: "Mouth",
  7135. image: {
  7136. source: "./media/characters/berri/mouth.svg"
  7137. }
  7138. },
  7139. paw: {
  7140. height: math.unit(0.826, "feet"),
  7141. name: "Paw",
  7142. image: {
  7143. source: "./media/characters/berri/paw.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(1.65, "meters")
  7151. },
  7152. {
  7153. name: "Macro",
  7154. height: math.unit(60, "m"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Megamacro",
  7159. height: math.unit(9.213, "km")
  7160. },
  7161. {
  7162. name: "Planet Eater",
  7163. height: math.unit(489, "megameters")
  7164. },
  7165. {
  7166. name: "Teramacro",
  7167. height: math.unit(2471635000000, "meters")
  7168. },
  7169. {
  7170. name: "Examacro",
  7171. height: math.unit(8.0624e+26, "meters")
  7172. }
  7173. ]
  7174. ))
  7175. characterMakers.push(() => makeCharacter(
  7176. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7177. {
  7178. front: {
  7179. height: math.unit(1.72, "meters"),
  7180. weight: math.unit(68, "kg"),
  7181. name: "Front",
  7182. image: {
  7183. source: "./media/characters/lexi/front.svg"
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Very Smol",
  7190. height: math.unit(10, "mm")
  7191. },
  7192. {
  7193. name: "Micro",
  7194. height: math.unit(6.8, "cm"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(1.72, "m")
  7200. }
  7201. ]
  7202. ))
  7203. characterMakers.push(() => makeCharacter(
  7204. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7205. {
  7206. front: {
  7207. height: math.unit(1.69, "meters"),
  7208. weight: math.unit(68, "kg"),
  7209. name: "Front",
  7210. image: {
  7211. source: "./media/characters/martin/front.svg",
  7212. extra: 596 / 581
  7213. }
  7214. }
  7215. },
  7216. [
  7217. {
  7218. name: "Micro",
  7219. height: math.unit(6.85, "cm"),
  7220. default: true
  7221. },
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(1.69, "m")
  7225. }
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(1.69, "meters"),
  7233. weight: math.unit(68, "kg"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/juno/front.svg"
  7237. }
  7238. }
  7239. },
  7240. [
  7241. {
  7242. name: "Micro",
  7243. height: math.unit(7, "cm")
  7244. },
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(1.89, "m")
  7248. },
  7249. {
  7250. name: "Macro",
  7251. height: math.unit(353, "meters"),
  7252. default: true
  7253. }
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(1.93, "meters"),
  7261. weight: math.unit(83, "kg"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/samantha/front.svg"
  7265. }
  7266. },
  7267. frontClothed: {
  7268. height: math.unit(1.93, "meters"),
  7269. weight: math.unit(83, "kg"),
  7270. name: "Front (Clothed)",
  7271. image: {
  7272. source: "./media/characters/samantha/front-clothed.svg"
  7273. }
  7274. },
  7275. back: {
  7276. height: math.unit(1.93, "meters"),
  7277. weight: math.unit(83, "kg"),
  7278. name: "Back",
  7279. image: {
  7280. source: "./media/characters/samantha/back.svg"
  7281. }
  7282. },
  7283. },
  7284. [
  7285. {
  7286. name: "Normal",
  7287. height: math.unit(1.93, "m")
  7288. },
  7289. {
  7290. name: "Macro",
  7291. height: math.unit(74, "meters"),
  7292. default: true
  7293. },
  7294. {
  7295. name: "Macro+",
  7296. height: math.unit(223, "meters"),
  7297. },
  7298. {
  7299. name: "Megamacro",
  7300. height: math.unit(8381, "meters"),
  7301. },
  7302. {
  7303. name: "Megamacro+",
  7304. height: math.unit(12000, "kilometers")
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(1.92, "meters"),
  7313. weight: math.unit(80, "kg"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/dr-clay/front.svg"
  7317. }
  7318. },
  7319. frontClothed: {
  7320. height: math.unit(1.92, "meters"),
  7321. weight: math.unit(80, "kg"),
  7322. name: "Front (Clothed)",
  7323. image: {
  7324. source: "./media/characters/dr-clay/front-clothed.svg"
  7325. }
  7326. }
  7327. },
  7328. [
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(1.92, "m")
  7332. },
  7333. {
  7334. name: "Macro",
  7335. height: math.unit(214, "meters"),
  7336. default: true
  7337. },
  7338. {
  7339. name: "Macro+",
  7340. height: math.unit(12.237, "meters"),
  7341. },
  7342. {
  7343. name: "Megamacro",
  7344. height: math.unit(557, "megameters"),
  7345. },
  7346. {
  7347. name: "Unimaginable",
  7348. height: math.unit(120e9, "lightyears")
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7354. {
  7355. front: {
  7356. height: math.unit(2, "meters"),
  7357. weight: math.unit(80, "kg"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7361. }
  7362. }
  7363. },
  7364. [
  7365. {
  7366. name: "Teramacro",
  7367. height: math.unit(500000, "lightyears"),
  7368. default: true
  7369. },
  7370. ]
  7371. ))
  7372. characterMakers.push(() => makeCharacter(
  7373. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7374. {
  7375. crux: {
  7376. height: math.unit(2, "meters"),
  7377. weight: math.unit(150, "kg"),
  7378. name: "Crux",
  7379. image: {
  7380. source: "./media/characters/vemus/crux.svg",
  7381. extra: 1074/936,
  7382. bottom: 23/1097
  7383. }
  7384. },
  7385. skunkTanuki: {
  7386. height: math.unit(2, "meters"),
  7387. weight: math.unit(150, "kg"),
  7388. name: "Skunk-Tanuki",
  7389. image: {
  7390. source: "./media/characters/vemus/skunk-tanuki.svg",
  7391. extra: 926/893,
  7392. bottom: 20/946
  7393. }
  7394. },
  7395. },
  7396. [
  7397. {
  7398. name: "Normal",
  7399. height: math.unit(4, "meters"),
  7400. default: true
  7401. },
  7402. {
  7403. name: "Big",
  7404. height: math.unit(8, "meters")
  7405. },
  7406. {
  7407. name: "Macro",
  7408. height: math.unit(100, "meters")
  7409. },
  7410. {
  7411. name: "Macro+",
  7412. height: math.unit(1500, "meters")
  7413. },
  7414. {
  7415. name: "Stellar",
  7416. height: math.unit(14e8, "meters")
  7417. },
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7422. {
  7423. front: {
  7424. height: math.unit(2, "meters"),
  7425. weight: math.unit(70, "kg"),
  7426. name: "Front",
  7427. image: {
  7428. source: "./media/characters/beherit/front.svg",
  7429. extra: 1234/1109,
  7430. bottom: 55/1289
  7431. }
  7432. }
  7433. },
  7434. [
  7435. {
  7436. name: "Normal",
  7437. height: math.unit(6, "feet")
  7438. },
  7439. {
  7440. name: "Lorg",
  7441. height: math.unit(25, "feet"),
  7442. default: true
  7443. },
  7444. {
  7445. name: "Lorger",
  7446. height: math.unit(75, "feet")
  7447. },
  7448. {
  7449. name: "Macro",
  7450. height: math.unit(200, "meters")
  7451. },
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(2, "meters"),
  7459. weight: math.unit(150, "kg"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/everett/front.svg",
  7463. extra: 1017/866,
  7464. bottom: 86/1103
  7465. }
  7466. },
  7467. paw: {
  7468. height: math.unit(2 / 3.6, "meters"),
  7469. name: "Paw",
  7470. image: {
  7471. source: "./media/characters/everett/paw.svg"
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Normal",
  7478. height: math.unit(15, "feet"),
  7479. default: true
  7480. },
  7481. {
  7482. name: "Lorg",
  7483. height: math.unit(70, "feet"),
  7484. default: true
  7485. },
  7486. {
  7487. name: "Lorger",
  7488. height: math.unit(250, "feet")
  7489. },
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(500, "meters")
  7493. },
  7494. ]
  7495. ))
  7496. characterMakers.push(() => makeCharacter(
  7497. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7498. {
  7499. front: {
  7500. height: math.unit(2, "meters"),
  7501. weight: math.unit(86, "kg"),
  7502. name: "Front",
  7503. image: {
  7504. source: "./media/characters/rose/front.svg",
  7505. extra: 1785/1636,
  7506. bottom: 30/1815
  7507. },
  7508. form: "liom",
  7509. default: true
  7510. },
  7511. frontSporty: {
  7512. height: math.unit(2, "meters"),
  7513. weight: math.unit(86, "kg"),
  7514. name: "Front (Sporty)",
  7515. image: {
  7516. source: "./media/characters/rose/front-sporty.svg",
  7517. extra: 350/335,
  7518. bottom: 10/360
  7519. },
  7520. form: "liom"
  7521. },
  7522. frontAlt: {
  7523. height: math.unit(1.6, "meters"),
  7524. weight: math.unit(86, "kg"),
  7525. name: "Front (Alt)",
  7526. image: {
  7527. source: "./media/characters/rose/front-alt.svg",
  7528. extra: 299/283,
  7529. bottom: 3/302
  7530. },
  7531. form: "liom"
  7532. },
  7533. plush: {
  7534. height: math.unit(2, "meters"),
  7535. weight: math.unit(86/3, "kg"),
  7536. name: "Plush",
  7537. image: {
  7538. source: "./media/characters/rose/plush.svg",
  7539. extra: 361/337,
  7540. bottom: 11/372
  7541. },
  7542. form: "plush",
  7543. default: true
  7544. },
  7545. faeStanding: {
  7546. height: math.unit(10, "cm"),
  7547. weight: math.unit(10, "grams"),
  7548. name: "Standing",
  7549. image: {
  7550. source: "./media/characters/rose/fae-standing.svg",
  7551. extra: 1189/1060,
  7552. bottom: 27/1216
  7553. },
  7554. form: "fae",
  7555. default: true
  7556. },
  7557. faeSitting: {
  7558. height: math.unit(5, "cm"),
  7559. weight: math.unit(10, "grams"),
  7560. name: "Sitting",
  7561. image: {
  7562. source: "./media/characters/rose/fae-sitting.svg",
  7563. extra: 737/577,
  7564. bottom: 356/1093
  7565. },
  7566. form: "fae"
  7567. },
  7568. faePaw: {
  7569. height: math.unit(1.35, "cm"),
  7570. name: "Paw",
  7571. image: {
  7572. source: "./media/characters/rose/fae-paw.svg"
  7573. },
  7574. form: "fae"
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "True Micro",
  7580. height: math.unit(9, "cm"),
  7581. form: "liom"
  7582. },
  7583. {
  7584. name: "Micro",
  7585. height: math.unit(16, "cm"),
  7586. form: "liom"
  7587. },
  7588. {
  7589. name: "Normal",
  7590. height: math.unit(1.85, "meters"),
  7591. default: true,
  7592. form: "liom"
  7593. },
  7594. {
  7595. name: "Mini-Macro",
  7596. height: math.unit(5, "meters"),
  7597. form: "liom"
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(15, "meters"),
  7602. form: "liom"
  7603. },
  7604. {
  7605. name: "True Macro",
  7606. height: math.unit(40, "meters"),
  7607. form: "liom"
  7608. },
  7609. {
  7610. name: "City Scale",
  7611. height: math.unit(1, "km"),
  7612. form: "liom"
  7613. },
  7614. {
  7615. name: "Plushie",
  7616. height: math.unit(9, "cm"),
  7617. form: "plush",
  7618. default: true
  7619. },
  7620. {
  7621. name: "Fae",
  7622. height: math.unit(10, "cm"),
  7623. form: "fae",
  7624. default: true
  7625. },
  7626. ],
  7627. {
  7628. "liom": {
  7629. name: "Liom"
  7630. },
  7631. "plush": {
  7632. name: "Plush"
  7633. },
  7634. "fae": {
  7635. name: "Fae Fox",
  7636. default: true
  7637. }
  7638. }
  7639. ))
  7640. characterMakers.push(() => makeCharacter(
  7641. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7642. {
  7643. front: {
  7644. height: math.unit(2, "meters"),
  7645. weight: math.unit(350, "lbs"),
  7646. name: "Front",
  7647. image: {
  7648. source: "./media/characters/regal/front.svg"
  7649. }
  7650. },
  7651. back: {
  7652. height: math.unit(2, "meters"),
  7653. weight: math.unit(350, "lbs"),
  7654. name: "Back",
  7655. image: {
  7656. source: "./media/characters/regal/back.svg"
  7657. }
  7658. },
  7659. },
  7660. [
  7661. {
  7662. name: "Macro",
  7663. height: math.unit(350, "feet"),
  7664. default: true
  7665. }
  7666. ]
  7667. ))
  7668. characterMakers.push(() => makeCharacter(
  7669. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7670. {
  7671. front: {
  7672. height: math.unit(4 + 11 / 12, "feet"),
  7673. weight: math.unit(100, "lbs"),
  7674. name: "Front",
  7675. image: {
  7676. source: "./media/characters/opal/front.svg"
  7677. }
  7678. },
  7679. frontAlt: {
  7680. height: math.unit(4 + 11 / 12, "feet"),
  7681. weight: math.unit(100, "lbs"),
  7682. name: "Front (Alt)",
  7683. image: {
  7684. source: "./media/characters/opal/front-alt.svg"
  7685. }
  7686. },
  7687. },
  7688. [
  7689. {
  7690. name: "Small",
  7691. height: math.unit(4 + 11 / 12, "feet")
  7692. },
  7693. {
  7694. name: "Normal",
  7695. height: math.unit(20, "feet"),
  7696. default: true
  7697. },
  7698. {
  7699. name: "Macro",
  7700. height: math.unit(120, "feet")
  7701. },
  7702. {
  7703. name: "Megamacro",
  7704. height: math.unit(80, "miles")
  7705. },
  7706. {
  7707. name: "True Size",
  7708. height: math.unit(100000, "lightyears")
  7709. },
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(6, "feet"),
  7717. weight: math.unit(200, "lbs"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/vector-wuff/front.svg"
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Normal",
  7727. height: math.unit(2.8, "meters")
  7728. },
  7729. {
  7730. name: "Macro",
  7731. height: math.unit(450, "meters"),
  7732. default: true
  7733. },
  7734. {
  7735. name: "Megamacro",
  7736. height: math.unit(15, "kilometers")
  7737. }
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(256, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/dannik/front.svg"
  7749. }
  7750. }
  7751. },
  7752. [
  7753. {
  7754. name: "Macro",
  7755. height: math.unit(69.57, "meters"),
  7756. default: true
  7757. },
  7758. ]
  7759. ))
  7760. characterMakers.push(() => makeCharacter(
  7761. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7762. {
  7763. front: {
  7764. height: math.unit(6, "feet"),
  7765. weight: math.unit(120, "lbs"),
  7766. name: "Front",
  7767. image: {
  7768. source: "./media/characters/azura-saharah/front.svg"
  7769. }
  7770. },
  7771. back: {
  7772. height: math.unit(6, "feet"),
  7773. weight: math.unit(120, "lbs"),
  7774. name: "Back",
  7775. image: {
  7776. source: "./media/characters/azura-saharah/back.svg"
  7777. }
  7778. },
  7779. },
  7780. [
  7781. {
  7782. name: "Macro",
  7783. height: math.unit(100, "feet"),
  7784. default: true
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7790. {
  7791. side: {
  7792. height: math.unit(5 + 4 / 12, "feet"),
  7793. weight: math.unit(163, "lbs"),
  7794. name: "Side",
  7795. image: {
  7796. source: "./media/characters/kennedy/side.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Standard Doggo",
  7803. height: math.unit(5 + 4 / 12, "feet")
  7804. },
  7805. {
  7806. name: "Big Doggo",
  7807. height: math.unit(25 + 3 / 12, "feet"),
  7808. default: true
  7809. },
  7810. ]
  7811. ))
  7812. characterMakers.push(() => makeCharacter(
  7813. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7814. {
  7815. front: {
  7816. height: math.unit(5 + 5/12, "feet"),
  7817. weight: math.unit(100, "lbs"),
  7818. name: "Front",
  7819. image: {
  7820. source: "./media/characters/odios-de-lunar/front.svg",
  7821. extra: 1468/1323,
  7822. bottom: 22/1490
  7823. }
  7824. }
  7825. },
  7826. [
  7827. {
  7828. name: "Micro",
  7829. height: math.unit(3, "inches")
  7830. },
  7831. {
  7832. name: "Normal",
  7833. height: math.unit(5.5, "feet"),
  7834. default: true
  7835. },
  7836. {
  7837. name: "Macro",
  7838. height: math.unit(100, "feet")
  7839. },
  7840. ]
  7841. ))
  7842. characterMakers.push(() => makeCharacter(
  7843. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7844. {
  7845. back: {
  7846. height: math.unit(6, "feet"),
  7847. weight: math.unit(220, "lbs"),
  7848. name: "Back",
  7849. image: {
  7850. source: "./media/characters/mandake/back.svg"
  7851. }
  7852. }
  7853. },
  7854. [
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(7, "feet"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(78, "feet")
  7863. },
  7864. {
  7865. name: "Macro+",
  7866. height: math.unit(300, "meters")
  7867. },
  7868. {
  7869. name: "Macro++",
  7870. height: math.unit(2400, "feet")
  7871. },
  7872. {
  7873. name: "Megamacro",
  7874. height: math.unit(5167, "meters")
  7875. },
  7876. {
  7877. name: "Gigamacro",
  7878. height: math.unit(41769, "miles")
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(120, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/yozey/front.svg"
  7891. }
  7892. },
  7893. frontAlt: {
  7894. height: math.unit(6, "feet"),
  7895. weight: math.unit(120, "lbs"),
  7896. name: "Front (Alt)",
  7897. image: {
  7898. source: "./media/characters/yozey/front-alt.svg"
  7899. }
  7900. },
  7901. side: {
  7902. height: math.unit(6, "feet"),
  7903. weight: math.unit(120, "lbs"),
  7904. name: "Side",
  7905. image: {
  7906. source: "./media/characters/yozey/side.svg"
  7907. }
  7908. },
  7909. },
  7910. [
  7911. {
  7912. name: "Micro",
  7913. height: math.unit(3, "inches"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(6, "feet")
  7919. }
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(103, "lbs"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/valeska-voss/front.svg"
  7931. }
  7932. }
  7933. },
  7934. [
  7935. {
  7936. name: "Mini-Sized Sub",
  7937. height: math.unit(3.1, "inches")
  7938. },
  7939. {
  7940. name: "Mid-Sized Sub",
  7941. height: math.unit(6.2, "inches")
  7942. },
  7943. {
  7944. name: "Full-Sized Sub",
  7945. height: math.unit(9.3, "inches")
  7946. },
  7947. {
  7948. name: "Normal",
  7949. height: math.unit(5 + 2 / 12, "foot"),
  7950. default: true
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(6, "feet"),
  7959. weight: math.unit(160, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/gene-zeta/front.svg",
  7963. extra: 3006 / 2826,
  7964. bottom: 182 / 3188
  7965. }
  7966. }
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(6, "inches")
  7972. },
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(5 + 11 / 12, "foot"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(140, "feet")
  7981. },
  7982. {
  7983. name: "Supercharged",
  7984. height: math.unit(2500, "feet")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7990. {
  7991. front: {
  7992. height: math.unit(6, "feet"),
  7993. weight: math.unit(350, "lbs"),
  7994. name: "Front",
  7995. image: {
  7996. source: "./media/characters/razinox/front.svg",
  7997. extra: 1686 / 1548,
  7998. bottom: 28.2 / 1868
  7999. }
  8000. },
  8001. back: {
  8002. height: math.unit(6, "feet"),
  8003. weight: math.unit(350, "lbs"),
  8004. name: "Back",
  8005. image: {
  8006. source: "./media/characters/razinox/back.svg",
  8007. extra: 1660 / 1590,
  8008. bottom: 15 / 1665
  8009. }
  8010. },
  8011. },
  8012. [
  8013. {
  8014. name: "Normal",
  8015. height: math.unit(10 + 8 / 12, "foot")
  8016. },
  8017. {
  8018. name: "Minimacro",
  8019. height: math.unit(15, "foot")
  8020. },
  8021. {
  8022. name: "Macro",
  8023. height: math.unit(60, "foot"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Megamacro",
  8028. height: math.unit(5, "miles")
  8029. },
  8030. {
  8031. name: "Gigamacro",
  8032. height: math.unit(6000, "miles")
  8033. },
  8034. ]
  8035. ))
  8036. characterMakers.push(() => makeCharacter(
  8037. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8038. {
  8039. front: {
  8040. height: math.unit(6, "feet"),
  8041. weight: math.unit(150, "lbs"),
  8042. name: "Front",
  8043. image: {
  8044. source: "./media/characters/cobalt/front.svg"
  8045. }
  8046. }
  8047. },
  8048. [
  8049. {
  8050. name: "Normal",
  8051. height: math.unit(8 + 1 / 12, "foot")
  8052. },
  8053. {
  8054. name: "Macro",
  8055. height: math.unit(111, "foot"),
  8056. default: true
  8057. },
  8058. {
  8059. name: "Supracosmic",
  8060. height: math.unit(1e42, "feet")
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8066. {
  8067. front: {
  8068. height: math.unit(5, "inches"),
  8069. name: "Front",
  8070. image: {
  8071. source: "./media/characters/amanda/front.svg",
  8072. extra: 926/791,
  8073. bottom: 38/964
  8074. }
  8075. },
  8076. back: {
  8077. height: math.unit(5, "inches"),
  8078. name: "Back",
  8079. image: {
  8080. source: "./media/characters/amanda/back.svg",
  8081. extra: 909/805,
  8082. bottom: 43/952
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(5, "inches"),
  8090. default: true
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(2.75, "meters"),
  8099. weight: math.unit(1200, "lb"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/teal/front.svg",
  8103. extra: 2463 / 2320,
  8104. bottom: 166 / 2629
  8105. }
  8106. },
  8107. back: {
  8108. height: math.unit(2.75, "meters"),
  8109. weight: math.unit(1200, "lb"),
  8110. name: "Back",
  8111. image: {
  8112. source: "./media/characters/teal/back.svg",
  8113. extra: 2580 / 2489,
  8114. bottom: 151 / 2731
  8115. }
  8116. },
  8117. sitting: {
  8118. height: math.unit(1.9, "meters"),
  8119. weight: math.unit(1200, "lb"),
  8120. name: "Sitting",
  8121. image: {
  8122. source: "./media/characters/teal/sitting.svg",
  8123. extra: 623 / 590,
  8124. bottom: 121 / 744
  8125. }
  8126. },
  8127. standing: {
  8128. height: math.unit(2.75, "meters"),
  8129. weight: math.unit(1200, "lb"),
  8130. name: "Standing",
  8131. image: {
  8132. source: "./media/characters/teal/standing.svg",
  8133. extra: 923 / 893,
  8134. bottom: 60 / 983
  8135. }
  8136. },
  8137. stretching: {
  8138. height: math.unit(3.65, "meters"),
  8139. weight: math.unit(1200, "lb"),
  8140. name: "Stretching",
  8141. image: {
  8142. source: "./media/characters/teal/stretching.svg",
  8143. extra: 1276 / 1244,
  8144. bottom: 0 / 1276
  8145. }
  8146. },
  8147. legged: {
  8148. height: math.unit(1.3, "meters"),
  8149. weight: math.unit(100, "lb"),
  8150. name: "Legged",
  8151. image: {
  8152. source: "./media/characters/teal/legged.svg",
  8153. extra: 462 / 437,
  8154. bottom: 24 / 486
  8155. }
  8156. },
  8157. naga: {
  8158. height: math.unit(5.4, "meters"),
  8159. weight: math.unit(4000, "lb"),
  8160. name: "Naga",
  8161. image: {
  8162. source: "./media/characters/teal/naga.svg",
  8163. extra: 1902 / 1858,
  8164. bottom: 0 / 1902
  8165. }
  8166. },
  8167. hand: {
  8168. height: math.unit(0.52, "meters"),
  8169. name: "Hand",
  8170. image: {
  8171. source: "./media/characters/teal/hand.svg"
  8172. }
  8173. },
  8174. maw: {
  8175. height: math.unit(0.43, "meters"),
  8176. name: "Maw",
  8177. image: {
  8178. source: "./media/characters/teal/maw.svg"
  8179. }
  8180. },
  8181. slit: {
  8182. height: math.unit(0.25, "meters"),
  8183. name: "Slit",
  8184. image: {
  8185. source: "./media/characters/teal/slit.svg"
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(2.75, "meters"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(300, "feet")
  8198. },
  8199. {
  8200. name: "Macro+",
  8201. height: math.unit(2000, "feet")
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8207. {
  8208. frontCat: {
  8209. height: math.unit(6, "feet"),
  8210. weight: math.unit(180, "lbs"),
  8211. name: "Front (Cat)",
  8212. image: {
  8213. source: "./media/characters/ravin-amulet/front-cat.svg"
  8214. }
  8215. },
  8216. frontCatAlt: {
  8217. height: math.unit(6, "feet"),
  8218. weight: math.unit(180, "lbs"),
  8219. name: "Front (Alt, Cat)",
  8220. image: {
  8221. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8222. }
  8223. },
  8224. frontWerewolf: {
  8225. height: math.unit(6 * 1.2, "feet"),
  8226. weight: math.unit(225, "lbs"),
  8227. name: "Front (Werewolf)",
  8228. image: {
  8229. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8230. }
  8231. },
  8232. backWerewolf: {
  8233. height: math.unit(6 * 1.2, "feet"),
  8234. weight: math.unit(225, "lbs"),
  8235. name: "Back (Werewolf)",
  8236. image: {
  8237. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8238. }
  8239. },
  8240. },
  8241. [
  8242. {
  8243. name: "Nano",
  8244. height: math.unit(1, "micrometer")
  8245. },
  8246. {
  8247. name: "Micro",
  8248. height: math.unit(1, "inch")
  8249. },
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(6, "feet"),
  8253. default: true
  8254. },
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(60, "feet")
  8258. }
  8259. ]
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(6, "feet"),
  8266. weight: math.unit(165, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/fluoresce/front.svg"
  8270. }
  8271. }
  8272. },
  8273. [
  8274. {
  8275. name: "Micro",
  8276. height: math.unit(6, "cm")
  8277. },
  8278. {
  8279. name: "Normal",
  8280. height: math.unit(5 + 7 / 12, "feet"),
  8281. default: true
  8282. },
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(56, "feet")
  8286. },
  8287. {
  8288. name: "Megamacro",
  8289. height: math.unit(1.9, "miles")
  8290. },
  8291. ]
  8292. ))
  8293. characterMakers.push(() => makeCharacter(
  8294. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8295. {
  8296. front: {
  8297. height: math.unit(9 + 6 / 12, "feet"),
  8298. weight: math.unit(523, "lbs"),
  8299. name: "Side",
  8300. image: {
  8301. source: "./media/characters/aurora/side.svg"
  8302. }
  8303. }
  8304. },
  8305. [
  8306. {
  8307. name: "Normal",
  8308. height: math.unit(9 + 6 / 12, "feet")
  8309. },
  8310. {
  8311. name: "Macro",
  8312. height: math.unit(96, "feet"),
  8313. default: true
  8314. },
  8315. {
  8316. name: "Macro+",
  8317. height: math.unit(243, "feet")
  8318. },
  8319. ]
  8320. ))
  8321. characterMakers.push(() => makeCharacter(
  8322. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8323. {
  8324. front: {
  8325. height: math.unit(194, "cm"),
  8326. weight: math.unit(90, "kg"),
  8327. name: "Front",
  8328. image: {
  8329. source: "./media/characters/ranek/front.svg",
  8330. extra: 1862/1791,
  8331. bottom: 80/1942
  8332. }
  8333. },
  8334. back: {
  8335. height: math.unit(194, "cm"),
  8336. weight: math.unit(90, "kg"),
  8337. name: "Back",
  8338. image: {
  8339. source: "./media/characters/ranek/back.svg",
  8340. extra: 1853/1787,
  8341. bottom: 74/1927
  8342. }
  8343. },
  8344. feral: {
  8345. height: math.unit(30, "cm"),
  8346. weight: math.unit(1.6, "lbs"),
  8347. name: "Feral",
  8348. image: {
  8349. source: "./media/characters/ranek/feral.svg",
  8350. extra: 990/631,
  8351. bottom: 29/1019
  8352. }
  8353. },
  8354. },
  8355. [
  8356. {
  8357. name: "Normal",
  8358. height: math.unit(194, "cm"),
  8359. default: true
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(100, "meters")
  8364. },
  8365. ]
  8366. ))
  8367. characterMakers.push(() => makeCharacter(
  8368. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8369. {
  8370. front: {
  8371. height: math.unit(5 + 6 / 12, "feet"),
  8372. weight: math.unit(153, "lbs"),
  8373. name: "Front",
  8374. image: {
  8375. source: "./media/characters/andrew-cooper/front.svg"
  8376. }
  8377. },
  8378. },
  8379. [
  8380. {
  8381. name: "Nano",
  8382. height: math.unit(1, "mm")
  8383. },
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(2, "inches")
  8387. },
  8388. {
  8389. name: "Normal",
  8390. height: math.unit(5 + 6 / 12, "feet"),
  8391. default: true
  8392. }
  8393. ]
  8394. ))
  8395. characterMakers.push(() => makeCharacter(
  8396. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8397. {
  8398. front: {
  8399. height: math.unit(6, "feet"),
  8400. weight: math.unit(180, "lbs"),
  8401. name: "Front",
  8402. image: {
  8403. source: "./media/characters/akane-sato/front.svg",
  8404. extra: 1219 / 1140
  8405. }
  8406. },
  8407. back: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(180, "lbs"),
  8410. name: "Back",
  8411. image: {
  8412. source: "./media/characters/akane-sato/back.svg",
  8413. extra: 1219 / 1170
  8414. }
  8415. },
  8416. },
  8417. [
  8418. {
  8419. name: "Normal",
  8420. height: math.unit(2.5, "meters")
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(250, "meters"),
  8425. default: true
  8426. },
  8427. {
  8428. name: "Megamacro",
  8429. height: math.unit(25, "km")
  8430. },
  8431. ]
  8432. ))
  8433. characterMakers.push(() => makeCharacter(
  8434. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8435. {
  8436. front: {
  8437. height: math.unit(6, "feet"),
  8438. weight: math.unit(65, "kg"),
  8439. name: "Front",
  8440. image: {
  8441. source: "./media/characters/rook/front.svg",
  8442. extra: 960 / 950
  8443. }
  8444. }
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(8.8, "feet")
  8450. },
  8451. {
  8452. name: "Macro",
  8453. height: math.unit(88, "feet"),
  8454. default: true
  8455. },
  8456. {
  8457. name: "Megamacro",
  8458. height: math.unit(8, "miles")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(12 + 2 / 12, "feet"),
  8467. weight: math.unit(808, "lbs"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/prodigy/front.svg"
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(12 + 2 / 12, "feet"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(143, "feet")
  8483. },
  8484. {
  8485. name: "Macro+",
  8486. height: math.unit(400, "feet")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(225, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/daniel/front.svg"
  8499. }
  8500. },
  8501. leaning: {
  8502. height: math.unit(6, "feet"),
  8503. weight: math.unit(225, "lbs"),
  8504. name: "Leaning",
  8505. image: {
  8506. source: "./media/characters/daniel/leaning.svg"
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(1000, "feet"),
  8514. default: true
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(6, "feet"),
  8523. weight: math.unit(88, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/chiros/front.svg",
  8527. extra: 306 / 226
  8528. }
  8529. },
  8530. side: {
  8531. height: math.unit(6, "feet"),
  8532. weight: math.unit(88, "lbs"),
  8533. name: "Side",
  8534. image: {
  8535. source: "./media/characters/chiros/side.svg",
  8536. extra: 306 / 226
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Normal",
  8543. height: math.unit(6, "cm"),
  8544. default: true
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8550. {
  8551. front: {
  8552. height: math.unit(6, "feet"),
  8553. weight: math.unit(100, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/selka/front.svg",
  8557. extra: 947 / 887
  8558. }
  8559. }
  8560. },
  8561. [
  8562. {
  8563. name: "Normal",
  8564. height: math.unit(5, "cm"),
  8565. default: true
  8566. },
  8567. ]
  8568. ))
  8569. characterMakers.push(() => makeCharacter(
  8570. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8571. {
  8572. front: {
  8573. height: math.unit(8 + 3 / 12, "feet"),
  8574. weight: math.unit(424, "lbs"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/verin/front.svg",
  8578. extra: 1845 / 1550
  8579. }
  8580. },
  8581. frontArmored: {
  8582. height: math.unit(8 + 3 / 12, "feet"),
  8583. weight: math.unit(424, "lbs"),
  8584. name: "Front (Armored)",
  8585. image: {
  8586. source: "./media/characters/verin/front-armor.svg",
  8587. extra: 1845 / 1550,
  8588. bottom: 0.01
  8589. }
  8590. },
  8591. back: {
  8592. height: math.unit(8 + 3 / 12, "feet"),
  8593. weight: math.unit(424, "lbs"),
  8594. name: "Back",
  8595. image: {
  8596. source: "./media/characters/verin/back.svg",
  8597. bottom: 0.1,
  8598. extra: 1
  8599. }
  8600. },
  8601. foot: {
  8602. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8603. name: "Foot",
  8604. image: {
  8605. source: "./media/characters/verin/foot.svg"
  8606. }
  8607. },
  8608. },
  8609. [
  8610. {
  8611. name: "Normal",
  8612. height: math.unit(8 + 3 / 12, "feet")
  8613. },
  8614. {
  8615. name: "Minimacro",
  8616. height: math.unit(21, "feet"),
  8617. default: true
  8618. },
  8619. {
  8620. name: "Macro",
  8621. height: math.unit(626, "feet")
  8622. },
  8623. ]
  8624. ))
  8625. characterMakers.push(() => makeCharacter(
  8626. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8627. {
  8628. front: {
  8629. height: math.unit(2.718, "meters"),
  8630. weight: math.unit(150, "lbs"),
  8631. name: "Front",
  8632. image: {
  8633. source: "./media/characters/sovrim-terraquian/front.svg",
  8634. extra: 1752/1689,
  8635. bottom: 36/1788
  8636. }
  8637. },
  8638. back: {
  8639. height: math.unit(2.718, "meters"),
  8640. weight: math.unit(150, "lbs"),
  8641. name: "Back",
  8642. image: {
  8643. source: "./media/characters/sovrim-terraquian/back.svg",
  8644. extra: 1698/1657,
  8645. bottom: 58/1756
  8646. }
  8647. },
  8648. tongue: {
  8649. height: math.unit(2.865, "feet"),
  8650. name: "Tongue",
  8651. image: {
  8652. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8653. }
  8654. },
  8655. hand: {
  8656. height: math.unit(1.61, "feet"),
  8657. name: "Hand",
  8658. image: {
  8659. source: "./media/characters/sovrim-terraquian/hand.svg"
  8660. }
  8661. },
  8662. foot: {
  8663. height: math.unit(1.05, "feet"),
  8664. name: "Foot",
  8665. image: {
  8666. source: "./media/characters/sovrim-terraquian/foot.svg"
  8667. }
  8668. },
  8669. footAlt: {
  8670. height: math.unit(0.88, "feet"),
  8671. name: "Foot (Alt)",
  8672. image: {
  8673. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8674. }
  8675. },
  8676. },
  8677. [
  8678. {
  8679. name: "Micro",
  8680. height: math.unit(2, "inches")
  8681. },
  8682. {
  8683. name: "Small",
  8684. height: math.unit(1, "meter")
  8685. },
  8686. {
  8687. name: "Normal",
  8688. height: math.unit(Math.E, "meters"),
  8689. default: true
  8690. },
  8691. {
  8692. name: "Macro",
  8693. height: math.unit(20, "meters")
  8694. },
  8695. {
  8696. name: "Macro+",
  8697. height: math.unit(400, "meters")
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(7, "feet"),
  8706. weight: math.unit(489, "lbs"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/reece-silvermane/front.svg",
  8710. bottom: 0.02,
  8711. extra: 1
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Macro",
  8718. height: math.unit(1.5, "miles"),
  8719. default: true
  8720. },
  8721. ]
  8722. ))
  8723. characterMakers.push(() => makeCharacter(
  8724. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8725. {
  8726. front: {
  8727. height: math.unit(6, "feet"),
  8728. weight: math.unit(78, "kg"),
  8729. name: "Front",
  8730. image: {
  8731. source: "./media/characters/kane/front.svg",
  8732. extra: 978 / 899
  8733. }
  8734. },
  8735. },
  8736. [
  8737. {
  8738. name: "Normal",
  8739. height: math.unit(2.1, "m"),
  8740. },
  8741. {
  8742. name: "Macro",
  8743. height: math.unit(1, "km"),
  8744. default: true
  8745. },
  8746. ]
  8747. ))
  8748. characterMakers.push(() => makeCharacter(
  8749. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8750. {
  8751. front: {
  8752. height: math.unit(6, "feet"),
  8753. weight: math.unit(200, "kg"),
  8754. name: "Front",
  8755. image: {
  8756. source: "./media/characters/tegon/front.svg",
  8757. bottom: 0.01,
  8758. extra: 1
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Micro",
  8765. height: math.unit(1, "inch")
  8766. },
  8767. {
  8768. name: "Normal",
  8769. height: math.unit(6 + 3 / 12, "feet"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "Macro",
  8774. height: math.unit(300, "feet")
  8775. },
  8776. {
  8777. name: "Megamacro",
  8778. height: math.unit(69, "miles")
  8779. },
  8780. ]
  8781. ))
  8782. characterMakers.push(() => makeCharacter(
  8783. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8784. {
  8785. side: {
  8786. height: math.unit(6, "feet"),
  8787. weight: math.unit(2304, "lbs"),
  8788. name: "Side",
  8789. image: {
  8790. source: "./media/characters/arcturax/side.svg",
  8791. extra: 790 / 376,
  8792. bottom: 0.01
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Micro",
  8799. height: math.unit(2, "inch")
  8800. },
  8801. {
  8802. name: "Normal",
  8803. height: math.unit(6, "feet")
  8804. },
  8805. {
  8806. name: "Macro",
  8807. height: math.unit(39, "feet"),
  8808. default: true
  8809. },
  8810. {
  8811. name: "Megamacro",
  8812. height: math.unit(7, "miles")
  8813. },
  8814. ]
  8815. ))
  8816. characterMakers.push(() => makeCharacter(
  8817. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8818. {
  8819. front: {
  8820. height: math.unit(6, "feet"),
  8821. weight: math.unit(50, "lbs"),
  8822. name: "Front",
  8823. image: {
  8824. source: "./media/characters/sentri/front.svg",
  8825. extra: 1750 / 1570,
  8826. bottom: 0.025
  8827. }
  8828. },
  8829. frontAlt: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(50, "lbs"),
  8832. name: "Front (Alt)",
  8833. image: {
  8834. source: "./media/characters/sentri/front-alt.svg",
  8835. extra: 1750 / 1570,
  8836. bottom: 0.025
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(15, "feet"),
  8844. default: true
  8845. },
  8846. {
  8847. name: "Macro",
  8848. height: math.unit(2500, "feet")
  8849. }
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(5 + 8 / 12, "feet"),
  8857. weight: math.unit(130, "lbs"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/corvin/front.svg",
  8861. extra: 1803 / 1629
  8862. }
  8863. },
  8864. frontShirt: {
  8865. height: math.unit(5 + 8 / 12, "feet"),
  8866. weight: math.unit(130, "lbs"),
  8867. name: "Front (Shirt)",
  8868. image: {
  8869. source: "./media/characters/corvin/front-shirt.svg",
  8870. extra: 1803 / 1629
  8871. }
  8872. },
  8873. frontPoncho: {
  8874. height: math.unit(5 + 8 / 12, "feet"),
  8875. weight: math.unit(130, "lbs"),
  8876. name: "Front (Poncho)",
  8877. image: {
  8878. source: "./media/characters/corvin/front-poncho.svg",
  8879. extra: 1803 / 1629
  8880. }
  8881. },
  8882. side: {
  8883. height: math.unit(5 + 8 / 12, "feet"),
  8884. weight: math.unit(130, "lbs"),
  8885. name: "Side",
  8886. image: {
  8887. source: "./media/characters/corvin/side.svg",
  8888. extra: 1012 / 945
  8889. }
  8890. },
  8891. back: {
  8892. height: math.unit(5 + 8 / 12, "feet"),
  8893. weight: math.unit(130, "lbs"),
  8894. name: "Back",
  8895. image: {
  8896. source: "./media/characters/corvin/back.svg",
  8897. extra: 1803 / 1629
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Micro",
  8904. height: math.unit(3, "inches")
  8905. },
  8906. {
  8907. name: "Normal",
  8908. height: math.unit(5 + 8 / 12, "feet")
  8909. },
  8910. {
  8911. name: "Macro",
  8912. height: math.unit(300, "feet"),
  8913. default: true
  8914. },
  8915. {
  8916. name: "Megamacro",
  8917. height: math.unit(500, "miles")
  8918. }
  8919. ]
  8920. ))
  8921. characterMakers.push(() => makeCharacter(
  8922. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8923. {
  8924. front: {
  8925. height: math.unit(6, "feet"),
  8926. weight: math.unit(135, "lbs"),
  8927. name: "Front",
  8928. image: {
  8929. source: "./media/characters/q/front.svg",
  8930. extra: 854 / 752,
  8931. bottom: 0.005
  8932. }
  8933. },
  8934. back: {
  8935. height: math.unit(6, "feet"),
  8936. weight: math.unit(130, "lbs"),
  8937. name: "Back",
  8938. image: {
  8939. source: "./media/characters/q/back.svg",
  8940. extra: 854 / 752
  8941. }
  8942. },
  8943. },
  8944. [
  8945. {
  8946. name: "Macro",
  8947. height: math.unit(90, "feet"),
  8948. default: true
  8949. },
  8950. {
  8951. name: "Extra Macro",
  8952. height: math.unit(300, "feet"),
  8953. },
  8954. {
  8955. name: "BIG WALF",
  8956. height: math.unit(750, "feet"),
  8957. },
  8958. ]
  8959. ))
  8960. characterMakers.push(() => makeCharacter(
  8961. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8962. {
  8963. front: {
  8964. height: math.unit(3, "feet"),
  8965. weight: math.unit(28, "lbs"),
  8966. name: "Front",
  8967. image: {
  8968. source: "./media/characters/citrine/front.svg"
  8969. }
  8970. }
  8971. },
  8972. [
  8973. {
  8974. name: "Normal",
  8975. height: math.unit(3, "feet"),
  8976. default: true
  8977. }
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8982. {
  8983. front: {
  8984. height: math.unit(14, "feet"),
  8985. weight: math.unit(1450, "kg"),
  8986. preyCapacity: math.unit(15, "people"),
  8987. name: "Front",
  8988. image: {
  8989. source: "./media/characters/aura-starwind/front.svg",
  8990. extra: 1440/1327,
  8991. bottom: 11/1451
  8992. }
  8993. },
  8994. side: {
  8995. height: math.unit(14, "feet"),
  8996. weight: math.unit(1450, "kg"),
  8997. preyCapacity: math.unit(15, "people"),
  8998. name: "Side",
  8999. image: {
  9000. source: "./media/characters/aura-starwind/side.svg",
  9001. extra: 1654 / 1497
  9002. }
  9003. },
  9004. taur: {
  9005. height: math.unit(18, "feet"),
  9006. weight: math.unit(5500, "kg"),
  9007. preyCapacity: math.unit(50, "people"),
  9008. name: "Taur",
  9009. image: {
  9010. source: "./media/characters/aura-starwind/taur.svg",
  9011. extra: 1760 / 1650
  9012. }
  9013. },
  9014. feral: {
  9015. height: math.unit(46, "feet"),
  9016. weight: math.unit(25000, "kg"),
  9017. preyCapacity: math.unit(120, "people"),
  9018. name: "Feral",
  9019. image: {
  9020. source: "./media/characters/aura-starwind/feral.svg"
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Normal",
  9027. height: math.unit(14, "feet"),
  9028. default: true
  9029. },
  9030. {
  9031. name: "Macro",
  9032. height: math.unit(50, "meters")
  9033. },
  9034. {
  9035. name: "Megamacro",
  9036. height: math.unit(5000, "meters")
  9037. },
  9038. {
  9039. name: "Gigamacro",
  9040. height: math.unit(100000, "kilometers")
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(2 + 7 / 12, "feet"),
  9049. weight: math.unit(32, "lbs"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/rivet/front.svg",
  9053. extra: 1716 / 1658,
  9054. bottom: 0.03
  9055. }
  9056. },
  9057. foot: {
  9058. height: math.unit(0.551, "feet"),
  9059. name: "Rivet's Foot",
  9060. image: {
  9061. source: "./media/characters/rivet/foot.svg"
  9062. },
  9063. rename: true
  9064. }
  9065. },
  9066. [
  9067. {
  9068. name: "Micro",
  9069. height: math.unit(1.5, "inches"),
  9070. },
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(2 + 7 / 12, "feet"),
  9074. default: true
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(85, "feet")
  9079. },
  9080. {
  9081. name: "Megamacro",
  9082. height: math.unit(2.2, "km")
  9083. }
  9084. ]
  9085. ))
  9086. characterMakers.push(() => makeCharacter(
  9087. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9088. {
  9089. front: {
  9090. height: math.unit(5 + 9 / 12, "feet"),
  9091. weight: math.unit(150, "lbs"),
  9092. name: "Front",
  9093. image: {
  9094. source: "./media/characters/coffee/front.svg",
  9095. extra: 946/880,
  9096. bottom: 66/1012
  9097. }
  9098. },
  9099. foot: {
  9100. height: math.unit(1.29, "feet"),
  9101. name: "Foot",
  9102. image: {
  9103. source: "./media/characters/coffee/foot.svg"
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Micro",
  9110. height: math.unit(2, "inches"),
  9111. },
  9112. {
  9113. name: "Normal",
  9114. height: math.unit(5 + 9 / 12, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Macro",
  9119. height: math.unit(800, "feet")
  9120. },
  9121. {
  9122. name: "Megamacro",
  9123. height: math.unit(25, "miles")
  9124. }
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(200, "lbs"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/chari-gal/front.svg",
  9136. extra: 1568 / 1385,
  9137. bottom: 0.047
  9138. }
  9139. },
  9140. gigantamax: {
  9141. height: math.unit(6 * 16, "feet"),
  9142. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9143. name: "Gigantamax",
  9144. image: {
  9145. source: "./media/characters/chari-gal/gigantamax.svg",
  9146. extra: 1124 / 888,
  9147. bottom: 0.03
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(5 + 7 / 12, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(200, "feet"),
  9159. default: true
  9160. }
  9161. ]
  9162. ))
  9163. characterMakers.push(() => makeCharacter(
  9164. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9165. {
  9166. front: {
  9167. height: math.unit(6, "feet"),
  9168. weight: math.unit(150, "lbs"),
  9169. name: "Front",
  9170. image: {
  9171. source: "./media/characters/nova/front.svg",
  9172. extra: 5000 / 4722,
  9173. bottom: 0.02
  9174. }
  9175. }
  9176. },
  9177. [
  9178. {
  9179. name: "Micro-",
  9180. height: math.unit(0.8, "inches")
  9181. },
  9182. {
  9183. name: "Micro",
  9184. height: math.unit(2, "inches"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9191. {
  9192. koboldFront: {
  9193. height: math.unit(3 + 1 / 12, "feet"),
  9194. weight: math.unit(21.7, "lbs"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/argent/kobold-front.svg",
  9198. extra: 1471 / 1331,
  9199. bottom: 100.8 / 1575.5
  9200. },
  9201. form: "kobold",
  9202. default: true
  9203. },
  9204. dragonFront: {
  9205. height: math.unit(75, "inches"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/argent/dragon-front.svg",
  9209. extra: 1389/1248,
  9210. bottom: 54/1443
  9211. },
  9212. form: "dragon",
  9213. },
  9214. dragonBack: {
  9215. height: math.unit(75, "inches"),
  9216. name: "Back",
  9217. image: {
  9218. source: "./media/characters/argent/dragon-back.svg",
  9219. extra: 1399/1271,
  9220. bottom: 23/1422
  9221. },
  9222. form: "dragon",
  9223. },
  9224. dragonDressed: {
  9225. height: math.unit(75, "inches"),
  9226. name: "Dressed",
  9227. image: {
  9228. source: "./media/characters/argent/dragon-dressed.svg",
  9229. extra: 1350/1215,
  9230. bottom: 26/1376
  9231. },
  9232. form: "dragon"
  9233. },
  9234. dragonHead: {
  9235. height: math.unit(23.5, "inches"),
  9236. name: "Head",
  9237. image: {
  9238. source: "./media/characters/argent/dragon-head.svg"
  9239. },
  9240. form: "dragon",
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Micro",
  9246. height: math.unit(2, "inches"),
  9247. form: "kobold",
  9248. },
  9249. {
  9250. name: "Normal",
  9251. height: math.unit(3 + 1 / 12, "feet"),
  9252. form: "kobold",
  9253. default: true
  9254. },
  9255. {
  9256. name: "Macro",
  9257. height: math.unit(120, "feet"),
  9258. form: "kobold",
  9259. },
  9260. {
  9261. name: "Speck",
  9262. height: math.unit(1, "mm"),
  9263. form: "dragon",
  9264. },
  9265. {
  9266. name: "Tiny",
  9267. height: math.unit(1, "cm"),
  9268. form: "dragon",
  9269. },
  9270. {
  9271. name: "Micro",
  9272. height: math.unit(5, "cm"),
  9273. form: "dragon",
  9274. },
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(75, "inches"),
  9278. form: "dragon",
  9279. default: true
  9280. },
  9281. {
  9282. name: "Extra Tall",
  9283. height: math.unit(9, "feet"),
  9284. form: "dragon",
  9285. },
  9286. {
  9287. name: "Inconvenient",
  9288. height: math.unit(5, "meters"),
  9289. form: "dragon",
  9290. },
  9291. {
  9292. name: "Macro",
  9293. height: math.unit(70, "meters"),
  9294. form: "dragon",
  9295. },
  9296. {
  9297. name: "Macro+",
  9298. height: math.unit(250, "meters"),
  9299. form: "dragon",
  9300. },
  9301. {
  9302. name: "Megamacro",
  9303. height: math.unit(20, "km"),
  9304. form: "dragon",
  9305. },
  9306. {
  9307. name: "Mountainous",
  9308. height: math.unit(100, "km"),
  9309. form: "dragon",
  9310. },
  9311. {
  9312. name: "Continental",
  9313. height: math.unit(2, "megameters"),
  9314. form: "dragon",
  9315. },
  9316. {
  9317. name: "Too Big",
  9318. height: math.unit(900, "megameters"),
  9319. form: "dragon",
  9320. },
  9321. ],
  9322. {
  9323. "kobold": {
  9324. name: "Kobold",
  9325. default: true
  9326. },
  9327. "dragon": {
  9328. name: "Dragon",
  9329. },
  9330. }
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9334. {
  9335. lamp: {
  9336. height: math.unit(7 * 1559 / 989, "feet"),
  9337. name: "Magic Lamp",
  9338. image: {
  9339. source: "./media/characters/mira-al-cul/lamp.svg",
  9340. extra: 1617 / 1559
  9341. }
  9342. },
  9343. front: {
  9344. height: math.unit(7, "feet"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/mira-al-cul/front.svg",
  9348. extra: 1044 / 990
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Heavily Restricted",
  9355. height: math.unit(7 * 1559 / 989, "feet")
  9356. },
  9357. {
  9358. name: "Freshly Freed",
  9359. height: math.unit(50 * 1559 / 989, "feet")
  9360. },
  9361. {
  9362. name: "World Encompassing",
  9363. height: math.unit(10000 * 1559 / 989, "miles")
  9364. },
  9365. {
  9366. name: "Galactic",
  9367. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9368. },
  9369. {
  9370. name: "Palmed Universe",
  9371. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9372. default: true
  9373. },
  9374. {
  9375. name: "Multiversal Matriarch",
  9376. height: math.unit(8.87e10, "yottameters")
  9377. },
  9378. {
  9379. name: "Void Mother",
  9380. height: math.unit(3.14e110, "yottaparsecs")
  9381. },
  9382. {
  9383. name: "Toying with Transcendence",
  9384. height: math.unit(1e307, "meters")
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9390. {
  9391. front: {
  9392. height: math.unit(17 + 1 / 12, "feet"),
  9393. weight: math.unit(476.2 * 5, "lbs"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/kuro-shi-uchū/front.svg",
  9397. extra: 2329 / 1835,
  9398. bottom: 0.02
  9399. }
  9400. },
  9401. },
  9402. [
  9403. {
  9404. name: "Micro",
  9405. height: math.unit(2, "inches")
  9406. },
  9407. {
  9408. name: "Normal",
  9409. height: math.unit(12, "meters")
  9410. },
  9411. {
  9412. name: "Planetary",
  9413. height: math.unit(0.00929, "AU"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Universal",
  9418. height: math.unit(20, "gigaparsecs")
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(5 + 2 / 12, "feet"),
  9427. weight: math.unit(120, "lbs"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/katherine/front.svg",
  9431. extra: 2075 / 1969
  9432. }
  9433. },
  9434. dress: {
  9435. height: math.unit(5 + 2 / 12, "feet"),
  9436. weight: math.unit(120, "lbs"),
  9437. name: "Dress",
  9438. image: {
  9439. source: "./media/characters/katherine/dress.svg",
  9440. extra: 2258 / 2064
  9441. }
  9442. },
  9443. },
  9444. [
  9445. {
  9446. name: "Micro",
  9447. height: math.unit(1, "inches"),
  9448. default: true
  9449. },
  9450. {
  9451. name: "Normal",
  9452. height: math.unit(5 + 2 / 12, "feet")
  9453. },
  9454. {
  9455. name: "Macro",
  9456. height: math.unit(100, "meters")
  9457. },
  9458. {
  9459. name: "Megamacro",
  9460. height: math.unit(80, "miles")
  9461. },
  9462. ]
  9463. ))
  9464. characterMakers.push(() => makeCharacter(
  9465. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9466. {
  9467. front: {
  9468. height: math.unit(7 + 8 / 12, "feet"),
  9469. weight: math.unit(250, "lbs"),
  9470. name: "Front",
  9471. image: {
  9472. source: "./media/characters/yevis/front.svg",
  9473. extra: 1938 / 1755
  9474. }
  9475. }
  9476. },
  9477. [
  9478. {
  9479. name: "Mortal",
  9480. height: math.unit(7 + 8 / 12, "feet")
  9481. },
  9482. {
  9483. name: "Battle",
  9484. height: math.unit(25 + 11 / 12, "feet")
  9485. },
  9486. {
  9487. name: "Wrath",
  9488. height: math.unit(1654 + 11 / 12, "feet")
  9489. },
  9490. {
  9491. name: "Planet Destroyer",
  9492. height: math.unit(12000, "miles")
  9493. },
  9494. {
  9495. name: "Galaxy Conqueror",
  9496. height: math.unit(1.45, "zettameters"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Universal War",
  9501. height: math.unit(184, "gigaparsecs")
  9502. },
  9503. {
  9504. name: "Eternity War",
  9505. height: math.unit(1.98e55, "yottaparsecs")
  9506. },
  9507. ]
  9508. ))
  9509. characterMakers.push(() => makeCharacter(
  9510. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9511. {
  9512. front: {
  9513. height: math.unit(5 + 8 / 12, "feet"),
  9514. weight: math.unit(63, "kg"),
  9515. name: "Front",
  9516. image: {
  9517. source: "./media/characters/xavier/front.svg",
  9518. extra: 944 / 883
  9519. }
  9520. },
  9521. frontStretch: {
  9522. height: math.unit(5 + 8 / 12, "feet"),
  9523. weight: math.unit(63, "kg"),
  9524. name: "Stretching",
  9525. image: {
  9526. source: "./media/characters/xavier/front-stretch.svg",
  9527. extra: 962 / 820
  9528. }
  9529. },
  9530. },
  9531. [
  9532. {
  9533. name: "Normal",
  9534. height: math.unit(5 + 8 / 12, "feet")
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(100, "meters"),
  9539. default: true
  9540. },
  9541. {
  9542. name: "McLargeHuge",
  9543. height: math.unit(10, "miles")
  9544. },
  9545. ]
  9546. ))
  9547. characterMakers.push(() => makeCharacter(
  9548. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9549. {
  9550. front: {
  9551. height: math.unit(5 + 5 / 12, "feet"),
  9552. weight: math.unit(150, "lb"),
  9553. name: "Front",
  9554. image: {
  9555. source: "./media/characters/joshii/front.svg",
  9556. extra: 765 / 653,
  9557. bottom: 51 / 816
  9558. }
  9559. },
  9560. foot: {
  9561. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9562. name: "Foot",
  9563. image: {
  9564. source: "./media/characters/joshii/foot.svg"
  9565. }
  9566. },
  9567. },
  9568. [
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(2, "inches")
  9572. },
  9573. {
  9574. name: "Normal",
  9575. height: math.unit(5 + 5 / 12, "feet")
  9576. },
  9577. {
  9578. name: "Macro",
  9579. height: math.unit(785, "feet"),
  9580. default: true
  9581. },
  9582. {
  9583. name: "Megamacro",
  9584. height: math.unit(24.5, "miles")
  9585. },
  9586. ]
  9587. ))
  9588. characterMakers.push(() => makeCharacter(
  9589. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9590. {
  9591. front: {
  9592. height: math.unit(6, "feet"),
  9593. weight: math.unit(150, "lb"),
  9594. name: "Front",
  9595. image: {
  9596. source: "./media/characters/goddess-elizabeth/front.svg",
  9597. extra: 1800 / 1525,
  9598. bottom: 0.005
  9599. }
  9600. },
  9601. foot: {
  9602. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9603. name: "Foot",
  9604. image: {
  9605. source: "./media/characters/goddess-elizabeth/foot.svg"
  9606. }
  9607. },
  9608. mouth: {
  9609. height: math.unit(6, "feet"),
  9610. name: "Mouth",
  9611. image: {
  9612. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(12, "feet")
  9620. },
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(80, "miles"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(15000, "parsecs")
  9629. },
  9630. ]
  9631. ))
  9632. characterMakers.push(() => makeCharacter(
  9633. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9634. {
  9635. front: {
  9636. height: math.unit(5 + 9 / 12, "feet"),
  9637. weight: math.unit(144, "lb"),
  9638. name: "Front",
  9639. image: {
  9640. source: "./media/characters/kara/front.svg"
  9641. }
  9642. },
  9643. feet: {
  9644. height: math.unit(6 / 6.765, "feet"),
  9645. name: "Kara's Feet",
  9646. rename: true,
  9647. image: {
  9648. source: "./media/characters/kara/feet.svg"
  9649. }
  9650. },
  9651. },
  9652. [
  9653. {
  9654. name: "Normal",
  9655. height: math.unit(5 + 9 / 12, "feet")
  9656. },
  9657. {
  9658. name: "Macro",
  9659. height: math.unit(174, "feet"),
  9660. default: true
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(18, "feet"),
  9669. weight: math.unit(4050, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/tyrone/front.svg",
  9673. extra: 2405 / 2270,
  9674. bottom: 182 / 2587
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(18, "feet"),
  9682. default: true
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(300, "feet")
  9687. },
  9688. {
  9689. name: "Megamacro",
  9690. height: math.unit(15, "km")
  9691. },
  9692. {
  9693. name: "Gigamacro",
  9694. height: math.unit(500, "km")
  9695. },
  9696. {
  9697. name: "Teramacro",
  9698. height: math.unit(0.5, "gigameters")
  9699. },
  9700. {
  9701. name: "Omnimacro",
  9702. height: math.unit(1e252, "yottauniverse")
  9703. },
  9704. ]
  9705. ))
  9706. characterMakers.push(() => makeCharacter(
  9707. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9708. {
  9709. front: {
  9710. height: math.unit(7 + 8 / 12, "feet"),
  9711. weight: math.unit(120, "lb"),
  9712. name: "Front",
  9713. image: {
  9714. source: "./media/characters/danny/front.svg",
  9715. extra: 1490 / 1350
  9716. }
  9717. },
  9718. back: {
  9719. height: math.unit(7 + 8 / 12, "feet"),
  9720. weight: math.unit(120, "lb"),
  9721. name: "Back",
  9722. image: {
  9723. source: "./media/characters/danny/back.svg",
  9724. extra: 1490 / 1350
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(7 + 8 / 12, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9738. {
  9739. front: {
  9740. height: math.unit(3.5, "inches"),
  9741. weight: math.unit(19, "grams"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/mallow/front.svg",
  9745. extra: 471 / 431
  9746. }
  9747. },
  9748. back: {
  9749. height: math.unit(3.5, "inches"),
  9750. weight: math.unit(19, "grams"),
  9751. name: "Back",
  9752. image: {
  9753. source: "./media/characters/mallow/back.svg",
  9754. extra: 471 / 431
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(3.5, "inches"),
  9762. default: true
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(9, "feet"),
  9771. weight: math.unit(230, "kg"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/starry-aqua/front.svg"
  9775. }
  9776. },
  9777. back: {
  9778. height: math.unit(9, "feet"),
  9779. weight: math.unit(230, "kg"),
  9780. name: "Back",
  9781. image: {
  9782. source: "./media/characters/starry-aqua/back.svg"
  9783. }
  9784. },
  9785. hand: {
  9786. height: math.unit(9 * 0.1168, "feet"),
  9787. name: "Hand",
  9788. image: {
  9789. source: "./media/characters/starry-aqua/hand.svg"
  9790. }
  9791. },
  9792. foot: {
  9793. height: math.unit(9 * 0.18, "feet"),
  9794. name: "Foot",
  9795. image: {
  9796. source: "./media/characters/starry-aqua/foot.svg"
  9797. }
  9798. }
  9799. },
  9800. [
  9801. {
  9802. name: "Micro",
  9803. height: math.unit(3, "inches")
  9804. },
  9805. {
  9806. name: "Normal",
  9807. height: math.unit(9, "feet")
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(300, "feet"),
  9812. default: true
  9813. },
  9814. {
  9815. name: "Megamacro",
  9816. height: math.unit(3200, "feet")
  9817. }
  9818. ]
  9819. ))
  9820. characterMakers.push(() => makeCharacter(
  9821. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9822. {
  9823. front: {
  9824. height: math.unit(15, "feet"),
  9825. weight: math.unit(5026, "lb"),
  9826. name: "Front",
  9827. image: {
  9828. source: "./media/characters/luka-towers/front.svg",
  9829. extra: 1269/1133,
  9830. bottom: 51/1320
  9831. }
  9832. },
  9833. },
  9834. [
  9835. {
  9836. name: "Normal",
  9837. height: math.unit(15, "feet"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "Minimacro",
  9842. height: math.unit(25, "feet")
  9843. },
  9844. {
  9845. name: "Macro",
  9846. height: math.unit(320, "feet")
  9847. },
  9848. {
  9849. name: "Megamacro",
  9850. height: math.unit(35000, "feet")
  9851. },
  9852. {
  9853. name: "Gigamacro",
  9854. height: math.unit(4000, "miles")
  9855. },
  9856. {
  9857. name: "Teramacro",
  9858. height: math.unit(15000, "miles")
  9859. },
  9860. ]
  9861. ))
  9862. characterMakers.push(() => makeCharacter(
  9863. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9864. {
  9865. front: {
  9866. height: math.unit(6, "feet"),
  9867. weight: math.unit(150, "lb"),
  9868. name: "Front",
  9869. image: {
  9870. source: "./media/characters/natalie-nightring/front.svg",
  9871. extra: 1,
  9872. bottom: 0.06
  9873. }
  9874. },
  9875. },
  9876. [
  9877. {
  9878. name: "Uh Oh",
  9879. height: math.unit(0.1, "mm")
  9880. },
  9881. {
  9882. name: "Small",
  9883. height: math.unit(3, "inches")
  9884. },
  9885. {
  9886. name: "Human Scale",
  9887. height: math.unit(6, "feet")
  9888. },
  9889. {
  9890. name: "Librarian",
  9891. height: math.unit(50, "feet"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Immense",
  9896. height: math.unit(200, "miles")
  9897. },
  9898. ]
  9899. ))
  9900. characterMakers.push(() => makeCharacter(
  9901. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9902. {
  9903. front: {
  9904. height: math.unit(6, "feet"),
  9905. weight: math.unit(180, "lbs"),
  9906. name: "Front",
  9907. image: {
  9908. source: "./media/characters/danni-rosie/front.svg",
  9909. extra: 1260 / 1128,
  9910. bottom: 0.022
  9911. }
  9912. },
  9913. },
  9914. [
  9915. {
  9916. name: "Micro",
  9917. height: math.unit(2, "inches"),
  9918. default: true
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(5 + 9 / 12, "feet"),
  9927. weight: math.unit(220, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/samantha-kruse/front.svg",
  9931. extra: (985 / 935),
  9932. bottom: 0.03
  9933. }
  9934. },
  9935. frontUndressed: {
  9936. height: math.unit(5 + 9 / 12, "feet"),
  9937. weight: math.unit(220, "lb"),
  9938. name: "Front (Undressed)",
  9939. image: {
  9940. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9941. extra: (973 / 923),
  9942. bottom: 0.025
  9943. }
  9944. },
  9945. fat: {
  9946. height: math.unit(5 + 9 / 12, "feet"),
  9947. weight: math.unit(900, "lb"),
  9948. name: "Front (Fat)",
  9949. image: {
  9950. source: "./media/characters/samantha-kruse/fat.svg",
  9951. extra: 2688 / 2561
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(5 + 9 / 12, "feet"),
  9959. default: true
  9960. }
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9965. {
  9966. back: {
  9967. height: math.unit(5 + 4 / 12, "feet"),
  9968. weight: math.unit(4963, "lb"),
  9969. name: "Back",
  9970. image: {
  9971. source: "./media/characters/amelia-rosie/back.svg",
  9972. extra: 1113 / 963,
  9973. bottom: 0.01
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Level 0",
  9980. height: math.unit(5 + 4 / 12, "feet")
  9981. },
  9982. {
  9983. name: "Level 1",
  9984. height: math.unit(164597, "feet"),
  9985. default: true
  9986. },
  9987. {
  9988. name: "Level 2",
  9989. height: math.unit(956243, "miles")
  9990. },
  9991. {
  9992. name: "Level 3",
  9993. height: math.unit(29421709423, "miles")
  9994. },
  9995. {
  9996. name: "Level 4",
  9997. height: math.unit(154, "lightyears")
  9998. },
  9999. {
  10000. name: "Level 5",
  10001. height: math.unit(4738272, "lightyears")
  10002. },
  10003. {
  10004. name: "Level 6",
  10005. height: math.unit(145787152896, "lightyears")
  10006. },
  10007. ]
  10008. ))
  10009. characterMakers.push(() => makeCharacter(
  10010. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10011. {
  10012. front: {
  10013. height: math.unit(5 + 11 / 12, "feet"),
  10014. weight: math.unit(65, "kg"),
  10015. name: "Front",
  10016. image: {
  10017. source: "./media/characters/rook-kitara/front.svg",
  10018. extra: 1347 / 1274,
  10019. bottom: 0.005
  10020. }
  10021. },
  10022. },
  10023. [
  10024. {
  10025. name: "Totally Unfair",
  10026. height: math.unit(1.8, "mm")
  10027. },
  10028. {
  10029. name: "Lap Rookie",
  10030. height: math.unit(1.4, "feet")
  10031. },
  10032. {
  10033. name: "Normal",
  10034. height: math.unit(5 + 11 / 12, "feet"),
  10035. default: true
  10036. },
  10037. {
  10038. name: "How Did This Happen",
  10039. height: math.unit(80, "miles")
  10040. }
  10041. ]
  10042. ))
  10043. characterMakers.push(() => makeCharacter(
  10044. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10045. {
  10046. front: {
  10047. height: math.unit(7, "feet"),
  10048. weight: math.unit(300, "lb"),
  10049. name: "Front",
  10050. image: {
  10051. source: "./media/characters/pisces/front.svg",
  10052. extra: 2255 / 2115,
  10053. bottom: 0.03
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(7, "feet"),
  10058. weight: math.unit(300, "lb"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/pisces/back.svg",
  10062. extra: 2146 / 2055,
  10063. bottom: 0.04
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(7, "feet"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Swimming Pool",
  10075. height: math.unit(12.2, "meters")
  10076. },
  10077. {
  10078. name: "Olympic Swimming Pool",
  10079. height: math.unit(56.3, "meters")
  10080. },
  10081. {
  10082. name: "Lake Superior",
  10083. height: math.unit(93900, "meters")
  10084. },
  10085. {
  10086. name: "Mediterranean Sea",
  10087. height: math.unit(644457, "meters")
  10088. },
  10089. {
  10090. name: "World's Oceans",
  10091. height: math.unit(4567491, "meters")
  10092. },
  10093. ]
  10094. ))
  10095. characterMakers.push(() => makeCharacter(
  10096. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10097. {
  10098. front: {
  10099. height: math.unit(2.3, "meters"),
  10100. weight: math.unit(120, "kg"),
  10101. name: "Front",
  10102. image: {
  10103. source: "./media/characters/zelas/front.svg"
  10104. }
  10105. },
  10106. side: {
  10107. height: math.unit(2.3, "meters"),
  10108. weight: math.unit(120, "kg"),
  10109. name: "Side",
  10110. image: {
  10111. source: "./media/characters/zelas/side.svg"
  10112. }
  10113. },
  10114. back: {
  10115. height: math.unit(2.3, "meters"),
  10116. weight: math.unit(120, "kg"),
  10117. name: "Back",
  10118. image: {
  10119. source: "./media/characters/zelas/back.svg"
  10120. }
  10121. },
  10122. foot: {
  10123. height: math.unit(1.116, "feet"),
  10124. name: "Foot",
  10125. image: {
  10126. source: "./media/characters/zelas/foot.svg"
  10127. }
  10128. },
  10129. },
  10130. [
  10131. {
  10132. name: "Normal",
  10133. height: math.unit(2.3, "meters")
  10134. },
  10135. {
  10136. name: "Macro",
  10137. height: math.unit(30, "meters"),
  10138. default: true
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(1, "inch"),
  10147. weight: math.unit(0.21, "grams"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/talbot/front.svg",
  10151. extra: 594 / 544
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Micro",
  10158. height: math.unit(1, "inch"),
  10159. default: true
  10160. },
  10161. ]
  10162. ))
  10163. characterMakers.push(() => makeCharacter(
  10164. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10165. {
  10166. front: {
  10167. height: math.unit(3 + 3 / 12, "feet"),
  10168. weight: math.unit(51.8, "lb"),
  10169. name: "Front",
  10170. image: {
  10171. source: "./media/characters/fliss/front.svg",
  10172. extra: 840 / 640
  10173. }
  10174. },
  10175. },
  10176. [
  10177. {
  10178. name: "Teeny Tiny",
  10179. height: math.unit(1, "mm")
  10180. },
  10181. {
  10182. name: "Small",
  10183. height: math.unit(1, "inch"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Standard Sylveon",
  10188. height: math.unit(3 + 3 / 12, "feet")
  10189. },
  10190. {
  10191. name: "Large Nuisance",
  10192. height: math.unit(33, "feet")
  10193. },
  10194. {
  10195. name: "City Filler",
  10196. height: math.unit(3000, "feet")
  10197. },
  10198. {
  10199. name: "New Horizon",
  10200. height: math.unit(6000, "miles")
  10201. },
  10202. ]
  10203. ))
  10204. characterMakers.push(() => makeCharacter(
  10205. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10206. {
  10207. front: {
  10208. height: math.unit(5, "cm"),
  10209. weight: math.unit(1.94, "g"),
  10210. name: "Front",
  10211. image: {
  10212. source: "./media/characters/fleta/front.svg",
  10213. extra: 835 / 803
  10214. }
  10215. },
  10216. back: {
  10217. height: math.unit(5, "cm"),
  10218. weight: math.unit(1.94, "g"),
  10219. name: "Back",
  10220. image: {
  10221. source: "./media/characters/fleta/back.svg",
  10222. extra: 835 / 803
  10223. }
  10224. },
  10225. },
  10226. [
  10227. {
  10228. name: "Micro",
  10229. height: math.unit(5, "cm"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(6, "feet"),
  10239. weight: math.unit(225, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/dominic/front.svg",
  10243. extra: 1770 / 1620,
  10244. bottom: 0.025
  10245. }
  10246. },
  10247. back: {
  10248. height: math.unit(6, "feet"),
  10249. weight: math.unit(225, "lb"),
  10250. name: "Back",
  10251. image: {
  10252. source: "./media/characters/dominic/back.svg",
  10253. extra: 1745 / 1620,
  10254. bottom: 0.065
  10255. }
  10256. },
  10257. },
  10258. [
  10259. {
  10260. name: "Nano",
  10261. height: math.unit(0.1, "mm")
  10262. },
  10263. {
  10264. name: "Micro-",
  10265. height: math.unit(1, "mm")
  10266. },
  10267. {
  10268. name: "Micro",
  10269. height: math.unit(4, "inches")
  10270. },
  10271. {
  10272. name: "Normal",
  10273. height: math.unit(6 + 4 / 12, "feet"),
  10274. default: true
  10275. },
  10276. {
  10277. name: "Macro",
  10278. height: math.unit(115, "feet")
  10279. },
  10280. {
  10281. name: "Macro+",
  10282. height: math.unit(955, "feet")
  10283. },
  10284. {
  10285. name: "Megamacro",
  10286. height: math.unit(8990, "feet")
  10287. },
  10288. {
  10289. name: "Gigmacro",
  10290. height: math.unit(9310, "miles")
  10291. },
  10292. {
  10293. name: "Teramacro",
  10294. height: math.unit(1567005010, "miles")
  10295. },
  10296. {
  10297. name: "Examacro",
  10298. height: math.unit(1425, "parsecs")
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(400, "feet"),
  10307. weight: math.unit(44444444, "lb"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/major-colonel/front.svg"
  10311. }
  10312. },
  10313. back: {
  10314. height: math.unit(400, "feet"),
  10315. weight: math.unit(44444444, "lb"),
  10316. name: "Back",
  10317. image: {
  10318. source: "./media/characters/major-colonel/back.svg"
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Macro",
  10325. height: math.unit(400, "feet"),
  10326. default: true
  10327. },
  10328. ]
  10329. ))
  10330. characterMakers.push(() => makeCharacter(
  10331. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10332. {
  10333. catFront: {
  10334. height: math.unit(6, "feet"),
  10335. weight: math.unit(120, "lb"),
  10336. name: "Front (Cat Side)",
  10337. image: {
  10338. source: "./media/characters/axel-lycan/cat-front.svg",
  10339. extra: 430 / 402,
  10340. bottom: 43 / 472.35
  10341. }
  10342. },
  10343. catBack: {
  10344. height: math.unit(6, "feet"),
  10345. weight: math.unit(120, "lb"),
  10346. name: "Back (Cat Side)",
  10347. image: {
  10348. source: "./media/characters/axel-lycan/cat-back.svg",
  10349. extra: 447 / 419,
  10350. bottom: 23.3 / 469
  10351. }
  10352. },
  10353. wolfFront: {
  10354. height: math.unit(6, "feet"),
  10355. weight: math.unit(120, "lb"),
  10356. name: "Front (Wolf Side)",
  10357. image: {
  10358. source: "./media/characters/axel-lycan/wolf-front.svg",
  10359. extra: 485 / 456,
  10360. bottom: 19 / 504
  10361. }
  10362. },
  10363. wolfBack: {
  10364. height: math.unit(6, "feet"),
  10365. weight: math.unit(120, "lb"),
  10366. name: "Back (Wolf Side)",
  10367. image: {
  10368. source: "./media/characters/axel-lycan/wolf-back.svg",
  10369. extra: 475 / 438,
  10370. bottom: 39.2 / 514
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(1, "km"),
  10378. default: true
  10379. },
  10380. ]
  10381. ))
  10382. characterMakers.push(() => makeCharacter(
  10383. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10384. {
  10385. front: {
  10386. height: math.unit(5 + 9 / 12, "feet"),
  10387. weight: math.unit(175, "lb"),
  10388. name: "Front",
  10389. image: {
  10390. source: "./media/characters/vanrel-hyena/front.svg",
  10391. extra: 1086 / 1010,
  10392. bottom: 0.04
  10393. }
  10394. },
  10395. },
  10396. [
  10397. {
  10398. name: "Normal",
  10399. height: math.unit(5 + 9 / 12, "feet"),
  10400. default: true
  10401. },
  10402. ]
  10403. ))
  10404. characterMakers.push(() => makeCharacter(
  10405. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10406. {
  10407. front: {
  10408. height: math.unit(6, "feet"),
  10409. weight: math.unit(103, "lb"),
  10410. name: "Front",
  10411. image: {
  10412. source: "./media/characters/abbott-absol/front.svg",
  10413. extra: 2010 / 1842
  10414. }
  10415. },
  10416. },
  10417. [
  10418. {
  10419. name: "Megamicro",
  10420. height: math.unit(0.1, "mm")
  10421. },
  10422. {
  10423. name: "Micro",
  10424. height: math.unit(1, "inch")
  10425. },
  10426. {
  10427. name: "Normal",
  10428. height: math.unit(6, "feet"),
  10429. default: true
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(6, "feet"),
  10438. weight: math.unit(264, "lb"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/hector/front.svg",
  10442. extra: 2280 / 2130,
  10443. bottom: 0.07
  10444. }
  10445. },
  10446. },
  10447. [
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(12.25, "foot"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Macro",
  10455. height: math.unit(160, "feet")
  10456. },
  10457. ]
  10458. ))
  10459. characterMakers.push(() => makeCharacter(
  10460. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10461. {
  10462. front: {
  10463. height: math.unit(6, "feet"),
  10464. weight: math.unit(150, "lb"),
  10465. name: "Front",
  10466. image: {
  10467. source: "./media/characters/sal/front.svg",
  10468. extra: 1846 / 1699,
  10469. bottom: 0.04
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(10, "miles"),
  10477. default: true
  10478. },
  10479. ]
  10480. ))
  10481. characterMakers.push(() => makeCharacter(
  10482. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10483. {
  10484. front: {
  10485. height: math.unit(3, "meters"),
  10486. weight: math.unit(450, "kg"),
  10487. name: "front",
  10488. image: {
  10489. source: "./media/characters/ranger/front.svg",
  10490. extra: 2401 / 2243,
  10491. bottom: 0.05
  10492. }
  10493. },
  10494. },
  10495. [
  10496. {
  10497. name: "Normal",
  10498. height: math.unit(3, "meters"),
  10499. default: true
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(14, "feet"),
  10508. weight: math.unit(800, "kg"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/theresa/front.svg",
  10512. extra: 3575 / 3346,
  10513. bottom: 0.03
  10514. }
  10515. },
  10516. },
  10517. [
  10518. {
  10519. name: "Normal",
  10520. height: math.unit(14, "feet"),
  10521. default: true
  10522. },
  10523. ]
  10524. ))
  10525. characterMakers.push(() => makeCharacter(
  10526. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10527. {
  10528. front: {
  10529. height: math.unit(6, "feet"),
  10530. weight: math.unit(3, "kg"),
  10531. name: "Front",
  10532. image: {
  10533. source: "./media/characters/ine/front.svg",
  10534. extra: 678 / 539,
  10535. bottom: 0.023
  10536. }
  10537. },
  10538. },
  10539. [
  10540. {
  10541. name: "Normal",
  10542. height: math.unit(2.265, "feet"),
  10543. default: true
  10544. },
  10545. ]
  10546. ))
  10547. characterMakers.push(() => makeCharacter(
  10548. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10549. {
  10550. front: {
  10551. height: math.unit(5, "feet"),
  10552. weight: math.unit(30, "kg"),
  10553. name: "Front",
  10554. image: {
  10555. source: "./media/characters/vial/front.svg",
  10556. extra: 1365 / 1277,
  10557. bottom: 0.04
  10558. }
  10559. },
  10560. },
  10561. [
  10562. {
  10563. name: "Normal",
  10564. height: math.unit(5, "feet"),
  10565. default: true
  10566. },
  10567. ]
  10568. ))
  10569. characterMakers.push(() => makeCharacter(
  10570. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10571. {
  10572. side: {
  10573. height: math.unit(3.4, "meters"),
  10574. weight: math.unit(1000, "lb"),
  10575. name: "Side",
  10576. image: {
  10577. source: "./media/characters/rovoska/side.svg",
  10578. extra: 4403 / 1515
  10579. }
  10580. },
  10581. },
  10582. [
  10583. {
  10584. name: "Normal",
  10585. height: math.unit(3.4, "meters"),
  10586. default: true
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(8, "feet"),
  10595. weight: math.unit(315, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/gunner-rotthbauer/front.svg"
  10599. }
  10600. },
  10601. back: {
  10602. height: math.unit(8, "feet"),
  10603. weight: math.unit(315, "lb"),
  10604. name: "Back",
  10605. image: {
  10606. source: "./media/characters/gunner-rotthbauer/back.svg"
  10607. }
  10608. },
  10609. },
  10610. [
  10611. {
  10612. name: "Micro",
  10613. height: math.unit(3.5, "inches")
  10614. },
  10615. {
  10616. name: "Normal",
  10617. height: math.unit(8, "feet"),
  10618. default: true
  10619. },
  10620. {
  10621. name: "Macro",
  10622. height: math.unit(250, "feet")
  10623. },
  10624. {
  10625. name: "Megamacro",
  10626. height: math.unit(1, "AU")
  10627. },
  10628. ]
  10629. ))
  10630. characterMakers.push(() => makeCharacter(
  10631. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10632. {
  10633. front: {
  10634. height: math.unit(5 + 5 / 12, "feet"),
  10635. weight: math.unit(140, "lb"),
  10636. name: "Front",
  10637. image: {
  10638. source: "./media/characters/allatia/front.svg",
  10639. extra: 1227 / 1180,
  10640. bottom: 0.027
  10641. }
  10642. },
  10643. },
  10644. [
  10645. {
  10646. name: "Normal",
  10647. height: math.unit(5 + 5 / 12, "feet")
  10648. },
  10649. {
  10650. name: "Macro",
  10651. height: math.unit(250, "feet"),
  10652. default: true
  10653. },
  10654. {
  10655. name: "Megamacro",
  10656. height: math.unit(8, "miles")
  10657. }
  10658. ]
  10659. ))
  10660. characterMakers.push(() => makeCharacter(
  10661. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10662. {
  10663. front: {
  10664. height: math.unit(6, "feet"),
  10665. weight: math.unit(120, "lb"),
  10666. name: "Front",
  10667. image: {
  10668. source: "./media/characters/tene/front.svg",
  10669. extra: 814/750,
  10670. bottom: 36/850
  10671. }
  10672. },
  10673. stomping: {
  10674. height: math.unit(2.025, "meters"),
  10675. weight: math.unit(120, "lb"),
  10676. name: "Stomping",
  10677. image: {
  10678. source: "./media/characters/tene/stomping.svg",
  10679. extra: 885/821,
  10680. bottom: 15/900
  10681. }
  10682. },
  10683. sitting: {
  10684. height: math.unit(1, "meter"),
  10685. weight: math.unit(120, "lb"),
  10686. name: "Sitting",
  10687. image: {
  10688. source: "./media/characters/tene/sitting.svg",
  10689. extra: 396/366,
  10690. bottom: 79/475
  10691. }
  10692. },
  10693. smiling: {
  10694. height: math.unit(1.2, "feet"),
  10695. name: "Smiling",
  10696. image: {
  10697. source: "./media/characters/tene/smiling.svg",
  10698. extra: 1364/1071,
  10699. bottom: 0/1364
  10700. }
  10701. },
  10702. smug: {
  10703. height: math.unit(1.3, "feet"),
  10704. name: "Smug",
  10705. image: {
  10706. source: "./media/characters/tene/smug.svg",
  10707. extra: 1323/1082,
  10708. bottom: 0/1323
  10709. }
  10710. },
  10711. feral: {
  10712. height: math.unit(3.9, "feet"),
  10713. weight: math.unit(250, "lb"),
  10714. name: "Feral",
  10715. image: {
  10716. source: "./media/characters/tene/feral.svg",
  10717. extra: 717 / 458,
  10718. bottom: 0.179
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(6, "feet")
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(300, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Megamacro",
  10734. height: math.unit(5, "miles")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10740. {
  10741. side: {
  10742. height: math.unit(6, "feet"),
  10743. name: "Side",
  10744. image: {
  10745. source: "./media/characters/evander/side.svg",
  10746. extra: 877 / 477
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(0.83, "meters"),
  10754. default: true
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(12, "feet"),
  10763. weight: math.unit(1000, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10767. extra: 1762 / 1611
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(12, "feet"),
  10772. weight: math.unit(1000, "lb"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10776. extra: 1762 / 1611
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(12, "feet"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Kaiju",
  10788. height: math.unit(150, "feet")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(6, "feet"),
  10797. weight: math.unit(150, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/zero-alurus/front.svg"
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(150, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/zero-alurus/back.svg"
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(5 + 10 / 12, "feet")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(60, "feet"),
  10820. default: true
  10821. },
  10822. {
  10823. name: "Macro+",
  10824. height: math.unit(450, "feet")
  10825. },
  10826. ]
  10827. ))
  10828. characterMakers.push(() => makeCharacter(
  10829. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10830. {
  10831. front: {
  10832. height: math.unit(6, "feet"),
  10833. weight: math.unit(200, "lb"),
  10834. name: "Front",
  10835. image: {
  10836. source: "./media/characters/mega-shi/front.svg",
  10837. extra: 1279 / 1250,
  10838. bottom: 0.02
  10839. }
  10840. },
  10841. back: {
  10842. height: math.unit(6, "feet"),
  10843. weight: math.unit(200, "lb"),
  10844. name: "Back",
  10845. image: {
  10846. source: "./media/characters/mega-shi/back.svg",
  10847. extra: 1279 / 1250,
  10848. bottom: 0.02
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Micro",
  10855. height: math.unit(16 + 6 / 12, "feet")
  10856. },
  10857. {
  10858. name: "Third Dimension",
  10859. height: math.unit(40, "meters")
  10860. },
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(660, "feet"),
  10864. default: true
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(10, "miles")
  10869. },
  10870. {
  10871. name: "Planetary Launch",
  10872. height: math.unit(500, "miles")
  10873. },
  10874. {
  10875. name: "Interstellar",
  10876. height: math.unit(1e9, "miles")
  10877. },
  10878. {
  10879. name: "Leaving the Universe",
  10880. height: math.unit(1, "gigaparsec")
  10881. },
  10882. {
  10883. name: "Travelling Universes",
  10884. height: math.unit(30e15, "parsecs")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(5 + 4/12, "feet"),
  10893. weight: math.unit(120, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/odyssey/front.svg",
  10897. extra: 1747/1571,
  10898. bottom: 47/1794
  10899. }
  10900. },
  10901. side: {
  10902. height: math.unit(5.1, "feet"),
  10903. weight: math.unit(120, "lb"),
  10904. name: "Side",
  10905. image: {
  10906. source: "./media/characters/odyssey/side.svg",
  10907. extra: 1847/1619,
  10908. bottom: 47/1894
  10909. }
  10910. },
  10911. lounging: {
  10912. height: math.unit(1.464, "feet"),
  10913. weight: math.unit(120, "lb"),
  10914. name: "Lounging",
  10915. image: {
  10916. source: "./media/characters/odyssey/lounging.svg",
  10917. extra: 1235/837,
  10918. bottom: 551/1786
  10919. }
  10920. },
  10921. },
  10922. [
  10923. {
  10924. name: "Normal",
  10925. height: math.unit(5 + 4 / 12, "feet")
  10926. },
  10927. {
  10928. name: "Macro",
  10929. height: math.unit(1, "km")
  10930. },
  10931. {
  10932. name: "Megamacro",
  10933. height: math.unit(3000, "km")
  10934. },
  10935. {
  10936. name: "Gigamacro",
  10937. height: math.unit(1, "AU"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Omniversal",
  10942. height: math.unit(100e14, "lightyears")
  10943. },
  10944. ]
  10945. ))
  10946. characterMakers.push(() => makeCharacter(
  10947. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10948. {
  10949. front: {
  10950. height: math.unit(6, "feet"),
  10951. weight: math.unit(300, "lb"),
  10952. name: "Front",
  10953. image: {
  10954. source: "./media/characters/mekuto/front.svg",
  10955. extra: 921 / 832,
  10956. bottom: 0.03
  10957. }
  10958. },
  10959. hand: {
  10960. height: math.unit(6 / 10.24, "feet"),
  10961. name: "Hand",
  10962. image: {
  10963. source: "./media/characters/mekuto/hand.svg"
  10964. }
  10965. },
  10966. foot: {
  10967. height: math.unit(6 / 5.05, "feet"),
  10968. name: "Foot",
  10969. image: {
  10970. source: "./media/characters/mekuto/foot.svg"
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Minimicro",
  10977. height: math.unit(0.2, "inches")
  10978. },
  10979. {
  10980. name: "Micro",
  10981. height: math.unit(1.5, "inches")
  10982. },
  10983. {
  10984. name: "Normal",
  10985. height: math.unit(5 + 11 / 12, "feet"),
  10986. default: true
  10987. },
  10988. {
  10989. name: "Minimacro",
  10990. height: math.unit(17 + 9 / 12, "feet")
  10991. },
  10992. {
  10993. name: "Macro",
  10994. height: math.unit(177.5, "feet")
  10995. },
  10996. {
  10997. name: "Megamacro",
  10998. height: math.unit(152, "miles")
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6.5, "inches"),
  11007. weight: math.unit(13, "oz"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/dafydd-tomos/front.svg",
  11011. extra: 2990 / 2603,
  11012. bottom: 0.03
  11013. }
  11014. },
  11015. },
  11016. [
  11017. {
  11018. name: "Micro",
  11019. height: math.unit(6.5, "inches"),
  11020. default: true
  11021. },
  11022. ]
  11023. ))
  11024. characterMakers.push(() => makeCharacter(
  11025. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11026. {
  11027. front: {
  11028. height: math.unit(6, "feet"),
  11029. weight: math.unit(150, "lb"),
  11030. name: "Front",
  11031. image: {
  11032. source: "./media/characters/splinter/front.svg",
  11033. extra: 2990 / 2882,
  11034. bottom: 0.04
  11035. }
  11036. },
  11037. back: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Back",
  11041. image: {
  11042. source: "./media/characters/splinter/back.svg",
  11043. extra: 2990 / 2882,
  11044. bottom: 0.04
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(6, "feet")
  11052. },
  11053. {
  11054. name: "Macro",
  11055. height: math.unit(230, "meters"),
  11056. default: true
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11062. {
  11063. front: {
  11064. height: math.unit(4 + 10 / 12, "feet"),
  11065. weight: math.unit(480, "lb"),
  11066. name: "Front",
  11067. image: {
  11068. source: "./media/characters/snow-gabumon/front.svg",
  11069. extra: 1140 / 963,
  11070. bottom: 0.058
  11071. }
  11072. },
  11073. back: {
  11074. height: math.unit(4 + 10 / 12, "feet"),
  11075. weight: math.unit(480, "lb"),
  11076. name: "Back",
  11077. image: {
  11078. source: "./media/characters/snow-gabumon/back.svg",
  11079. extra: 1115 / 962,
  11080. bottom: 0.041
  11081. }
  11082. },
  11083. frontUndresed: {
  11084. height: math.unit(4 + 10 / 12, "feet"),
  11085. weight: math.unit(480, "lb"),
  11086. name: "Front (Undressed)",
  11087. image: {
  11088. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11089. extra: 1061 / 960,
  11090. bottom: 0.045
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Micro",
  11097. height: math.unit(1, "inch")
  11098. },
  11099. {
  11100. name: "Normal",
  11101. height: math.unit(4 + 10 / 12, "feet"),
  11102. default: true
  11103. },
  11104. {
  11105. name: "Macro",
  11106. height: math.unit(200, "feet")
  11107. },
  11108. {
  11109. name: "Megamacro",
  11110. height: math.unit(120, "miles")
  11111. },
  11112. {
  11113. name: "Gigamacro",
  11114. height: math.unit(9800, "miles")
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(1.7, "meters"),
  11123. weight: math.unit(140, "lb"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/moody/front.svg",
  11127. extra: 3226 / 3007,
  11128. bottom: 0.087
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Micro",
  11135. height: math.unit(1, "mm")
  11136. },
  11137. {
  11138. name: "Normal",
  11139. height: math.unit(1.7, "meters"),
  11140. default: true
  11141. },
  11142. {
  11143. name: "Macro",
  11144. height: math.unit(80, "meters")
  11145. },
  11146. {
  11147. name: "Macro+",
  11148. height: math.unit(500, "meters")
  11149. },
  11150. ]
  11151. ))
  11152. characterMakers.push(() => makeCharacter(
  11153. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11154. {
  11155. front: {
  11156. height: math.unit(6, "feet"),
  11157. weight: math.unit(150, "lb"),
  11158. name: "Front",
  11159. image: {
  11160. source: "./media/characters/zyas/front.svg",
  11161. extra: 1180 / 1120,
  11162. bottom: 0.045
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(10, "feet"),
  11170. default: true
  11171. },
  11172. {
  11173. name: "Macro",
  11174. height: math.unit(500, "feet")
  11175. },
  11176. {
  11177. name: "Megamacro",
  11178. height: math.unit(5, "miles")
  11179. },
  11180. {
  11181. name: "Teramacro",
  11182. height: math.unit(150000, "miles")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(150, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/cuon/front.svg",
  11195. extra: 1390 / 1320,
  11196. bottom: 0.008
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Micro",
  11203. height: math.unit(3, "inches")
  11204. },
  11205. {
  11206. name: "Normal",
  11207. height: math.unit(18 + 9 / 12, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Macro",
  11212. height: math.unit(360, "feet")
  11213. },
  11214. {
  11215. name: "Megamacro",
  11216. height: math.unit(360, "miles")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(2.4, "meters"),
  11225. weight: math.unit(70, "kg"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/nyanuxk/front.svg",
  11229. extra: 1172 / 1084,
  11230. bottom: 0.065
  11231. }
  11232. },
  11233. side: {
  11234. height: math.unit(2.4, "meters"),
  11235. weight: math.unit(70, "kg"),
  11236. name: "Side",
  11237. image: {
  11238. source: "./media/characters/nyanuxk/side.svg",
  11239. extra: 1190 / 1132,
  11240. bottom: 0.007
  11241. }
  11242. },
  11243. back: {
  11244. height: math.unit(2.4, "meters"),
  11245. weight: math.unit(70, "kg"),
  11246. name: "Back",
  11247. image: {
  11248. source: "./media/characters/nyanuxk/back.svg",
  11249. extra: 1200 / 1141,
  11250. bottom: 0.015
  11251. }
  11252. },
  11253. foot: {
  11254. height: math.unit(0.52, "meters"),
  11255. name: "Foot",
  11256. image: {
  11257. source: "./media/characters/nyanuxk/foot.svg"
  11258. }
  11259. },
  11260. },
  11261. [
  11262. {
  11263. name: "Micro",
  11264. height: math.unit(2, "cm")
  11265. },
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(2.4, "meters"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Smaller Macro",
  11273. height: math.unit(120, "meters")
  11274. },
  11275. {
  11276. name: "Bigger Macro",
  11277. height: math.unit(1.2, "km")
  11278. },
  11279. {
  11280. name: "Megamacro",
  11281. height: math.unit(15, "kilometers")
  11282. },
  11283. {
  11284. name: "Gigamacro",
  11285. height: math.unit(2000, "km")
  11286. },
  11287. {
  11288. name: "Teramacro",
  11289. height: math.unit(500000, "km")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11295. {
  11296. side: {
  11297. height: math.unit(6, "feet"),
  11298. name: "Side",
  11299. image: {
  11300. source: "./media/characters/ailbhe/side.svg",
  11301. extra: 757 / 464,
  11302. bottom: 0.041
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(1.07, "meters"),
  11310. default: true
  11311. },
  11312. ]
  11313. ))
  11314. characterMakers.push(() => makeCharacter(
  11315. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11316. {
  11317. front: {
  11318. height: math.unit(6, "feet"),
  11319. weight: math.unit(120, "kg"),
  11320. name: "Front",
  11321. image: {
  11322. source: "./media/characters/zevulfius/front.svg",
  11323. extra: 965 / 903
  11324. }
  11325. },
  11326. side: {
  11327. height: math.unit(6, "feet"),
  11328. weight: math.unit(120, "kg"),
  11329. name: "Side",
  11330. image: {
  11331. source: "./media/characters/zevulfius/side.svg",
  11332. extra: 939 / 900
  11333. }
  11334. },
  11335. back: {
  11336. height: math.unit(6, "feet"),
  11337. weight: math.unit(120, "kg"),
  11338. name: "Back",
  11339. image: {
  11340. source: "./media/characters/zevulfius/back.svg",
  11341. extra: 918 / 854,
  11342. bottom: 0.005
  11343. }
  11344. },
  11345. foot: {
  11346. height: math.unit(6 / 3.72, "feet"),
  11347. name: "Foot",
  11348. image: {
  11349. source: "./media/characters/zevulfius/foot.svg"
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Macro",
  11356. height: math.unit(750, "meters")
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(20, "km"),
  11361. default: true
  11362. },
  11363. {
  11364. name: "Gigamacro",
  11365. height: math.unit(2000, "km")
  11366. },
  11367. {
  11368. name: "Teramacro",
  11369. height: math.unit(250000, "km")
  11370. },
  11371. ]
  11372. ))
  11373. characterMakers.push(() => makeCharacter(
  11374. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11375. {
  11376. front: {
  11377. height: math.unit(100, "feet"),
  11378. weight: math.unit(350, "kg"),
  11379. name: "Front",
  11380. image: {
  11381. source: "./media/characters/rikes/front.svg",
  11382. extra: 1565 / 1483,
  11383. bottom: 0.017
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(100, "feet"),
  11391. default: true
  11392. },
  11393. ]
  11394. ))
  11395. characterMakers.push(() => makeCharacter(
  11396. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11397. {
  11398. front: {
  11399. height: math.unit(8, "feet"),
  11400. weight: math.unit(356, "lb"),
  11401. name: "Front",
  11402. image: {
  11403. source: "./media/characters/adam-silver-mane/front.svg",
  11404. extra: 1036/937,
  11405. bottom: 63/1099
  11406. }
  11407. },
  11408. side: {
  11409. height: math.unit(8, "feet"),
  11410. weight: math.unit(356, "lb"),
  11411. name: "Side",
  11412. image: {
  11413. source: "./media/characters/adam-silver-mane/side.svg",
  11414. extra: 997/901,
  11415. bottom: 59/1056
  11416. }
  11417. },
  11418. frontNsfw: {
  11419. height: math.unit(8, "feet"),
  11420. weight: math.unit(356, "lb"),
  11421. name: "Front (NSFW)",
  11422. image: {
  11423. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11424. extra: 1036/937,
  11425. bottom: 63/1099
  11426. }
  11427. },
  11428. sideNsfw: {
  11429. height: math.unit(8, "feet"),
  11430. weight: math.unit(356, "lb"),
  11431. name: "Side (NSFW)",
  11432. image: {
  11433. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11434. extra: 997/901,
  11435. bottom: 59/1056
  11436. }
  11437. },
  11438. dick: {
  11439. height: math.unit(2.1, "feet"),
  11440. name: "Dick",
  11441. image: {
  11442. source: "./media/characters/adam-silver-mane/dick.svg"
  11443. }
  11444. },
  11445. taur: {
  11446. height: math.unit(16, "feet"),
  11447. weight: math.unit(1500, "kg"),
  11448. name: "Taur",
  11449. image: {
  11450. source: "./media/characters/adam-silver-mane/taur.svg",
  11451. extra: 1713 / 1571,
  11452. bottom: 0.01
  11453. }
  11454. },
  11455. },
  11456. [
  11457. {
  11458. name: "Normal",
  11459. height: math.unit(8, "feet")
  11460. },
  11461. {
  11462. name: "Minimacro",
  11463. height: math.unit(80, "feet")
  11464. },
  11465. {
  11466. name: "MDA",
  11467. height: math.unit(80, "meters")
  11468. },
  11469. {
  11470. name: "Macro",
  11471. height: math.unit(800, "feet"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Megamacro",
  11476. height: math.unit(8000, "feet")
  11477. },
  11478. {
  11479. name: "Gigamacro",
  11480. height: math.unit(800, "miles")
  11481. },
  11482. {
  11483. name: "Teramacro",
  11484. height: math.unit(80000, "miles")
  11485. },
  11486. {
  11487. name: "Celestial",
  11488. height: math.unit(8e6, "miles")
  11489. },
  11490. {
  11491. name: "Star Dragon",
  11492. height: math.unit(800000, "parsecs")
  11493. },
  11494. {
  11495. name: "Godly",
  11496. height: math.unit(800, "teraparsecs")
  11497. },
  11498. ]
  11499. ))
  11500. characterMakers.push(() => makeCharacter(
  11501. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11502. {
  11503. front: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(150, "lb"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/ky'owin/front.svg",
  11509. extra: 3888 / 3068,
  11510. bottom: 0.015
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(6 + 8 / 12, "feet")
  11518. },
  11519. {
  11520. name: "Large",
  11521. height: math.unit(68, "feet")
  11522. },
  11523. {
  11524. name: "Macro",
  11525. height: math.unit(132, "feet")
  11526. },
  11527. {
  11528. name: "Macro+",
  11529. height: math.unit(340, "feet")
  11530. },
  11531. {
  11532. name: "Macro++",
  11533. height: math.unit(680, "feet"),
  11534. default: true
  11535. },
  11536. {
  11537. name: "Megamacro",
  11538. height: math.unit(1, "mile")
  11539. },
  11540. {
  11541. name: "Megamacro+",
  11542. height: math.unit(10, "miles")
  11543. },
  11544. ]
  11545. ))
  11546. characterMakers.push(() => makeCharacter(
  11547. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11548. {
  11549. front: {
  11550. height: math.unit(4, "feet"),
  11551. weight: math.unit(50, "lb"),
  11552. name: "Front",
  11553. image: {
  11554. source: "./media/characters/mal/front.svg",
  11555. extra: 785 / 724,
  11556. bottom: 0.07
  11557. }
  11558. },
  11559. },
  11560. [
  11561. {
  11562. name: "Micro",
  11563. height: math.unit(4, "inches")
  11564. },
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(4, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Macro",
  11572. height: math.unit(200, "feet")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6, "feet"),
  11581. weight: math.unit(150, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/jordan-deware/front.svg",
  11585. extra: 1191 / 1012
  11586. }
  11587. },
  11588. },
  11589. [
  11590. {
  11591. name: "Nano",
  11592. height: math.unit(0.01, "mm")
  11593. },
  11594. {
  11595. name: "Minimicro",
  11596. height: math.unit(1, "mm")
  11597. },
  11598. {
  11599. name: "Micro",
  11600. height: math.unit(0.5, "inches")
  11601. },
  11602. {
  11603. name: "Normal",
  11604. height: math.unit(4, "feet"),
  11605. default: true
  11606. },
  11607. {
  11608. name: "Minimacro",
  11609. height: math.unit(40, "meters")
  11610. },
  11611. {
  11612. name: "Small Macro",
  11613. height: math.unit(400, "meters")
  11614. },
  11615. {
  11616. name: "Macro",
  11617. height: math.unit(4, "miles")
  11618. },
  11619. {
  11620. name: "Megamacro",
  11621. height: math.unit(40, "miles")
  11622. },
  11623. {
  11624. name: "Megamacro+",
  11625. height: math.unit(400, "miles")
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(400000, "miles")
  11630. },
  11631. ]
  11632. ))
  11633. characterMakers.push(() => makeCharacter(
  11634. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11635. {
  11636. side: {
  11637. height: math.unit(6, "feet"),
  11638. weight: math.unit(150, "lb"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/kimiko/side.svg",
  11642. extra: 600 / 358
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Normal",
  11649. height: math.unit(15, "feet"),
  11650. default: true
  11651. },
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(220, "feet")
  11655. },
  11656. {
  11657. name: "Macro+",
  11658. height: math.unit(1450, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(11500, "feet")
  11663. },
  11664. {
  11665. name: "Gigamacro",
  11666. height: math.unit(9500, "miles")
  11667. },
  11668. {
  11669. name: "Teramacro",
  11670. height: math.unit(2208005005, "miles")
  11671. },
  11672. {
  11673. name: "Examacro",
  11674. height: math.unit(2750, "parsecs")
  11675. },
  11676. {
  11677. name: "Zettamacro",
  11678. height: math.unit(101500, "parsecs")
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(70, "kg"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/andrew-sleepy/front.svg"
  11691. }
  11692. },
  11693. side: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(70, "kg"),
  11696. name: "Side",
  11697. image: {
  11698. source: "./media/characters/andrew-sleepy/side.svg"
  11699. }
  11700. },
  11701. },
  11702. [
  11703. {
  11704. name: "Micro",
  11705. height: math.unit(1, "mm"),
  11706. default: true
  11707. },
  11708. ]
  11709. ))
  11710. characterMakers.push(() => makeCharacter(
  11711. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11712. {
  11713. front: {
  11714. height: math.unit(6, "feet"),
  11715. weight: math.unit(150, "lb"),
  11716. name: "Front",
  11717. image: {
  11718. source: "./media/characters/judio/front.svg",
  11719. extra: 1258 / 1110
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Normal",
  11726. height: math.unit(5 + 6 / 12, "feet")
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(1000, "feet"),
  11731. default: true
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(10, "miles")
  11736. },
  11737. ]
  11738. ))
  11739. characterMakers.push(() => makeCharacter(
  11740. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11741. {
  11742. frontDressed: {
  11743. height: math.unit(6, "feet"),
  11744. weight: math.unit(68, "kg"),
  11745. name: "Front (Dressed)",
  11746. image: {
  11747. source: "./media/characters/nomaxice/front-dressed.svg",
  11748. extra: 1137/824,
  11749. bottom: 74/1211
  11750. }
  11751. },
  11752. frontShorts: {
  11753. height: math.unit(6, "feet"),
  11754. weight: math.unit(68, "kg"),
  11755. name: "Front (Shorts)",
  11756. image: {
  11757. source: "./media/characters/nomaxice/front-shorts.svg",
  11758. extra: 1137/824,
  11759. bottom: 74/1211
  11760. }
  11761. },
  11762. back: {
  11763. height: math.unit(6, "feet"),
  11764. weight: math.unit(68, "kg"),
  11765. name: "Back",
  11766. image: {
  11767. source: "./media/characters/nomaxice/back.svg",
  11768. extra: 822/786,
  11769. bottom: 39/861
  11770. }
  11771. },
  11772. hand: {
  11773. height: math.unit(0.565, "feet"),
  11774. name: "Hand",
  11775. image: {
  11776. source: "./media/characters/nomaxice/hand.svg"
  11777. }
  11778. },
  11779. foot: {
  11780. height: math.unit(1, "feet"),
  11781. name: "Foot",
  11782. image: {
  11783. source: "./media/characters/nomaxice/foot.svg"
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Micro",
  11790. height: math.unit(8, "cm")
  11791. },
  11792. {
  11793. name: "Norm",
  11794. height: math.unit(1.82, "m")
  11795. },
  11796. {
  11797. name: "Norm+",
  11798. height: math.unit(8.8, "feet"),
  11799. default: true
  11800. },
  11801. {
  11802. name: "Big",
  11803. height: math.unit(8, "meters")
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(18, "meters")
  11808. },
  11809. {
  11810. name: "Macro+",
  11811. height: math.unit(88, "meters")
  11812. },
  11813. ]
  11814. ))
  11815. characterMakers.push(() => makeCharacter(
  11816. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11817. {
  11818. front: {
  11819. height: math.unit(12, "feet"),
  11820. weight: math.unit(1.5, "tons"),
  11821. name: "Front",
  11822. image: {
  11823. source: "./media/characters/dydros/front.svg",
  11824. extra: 863 / 800,
  11825. bottom: 0.015
  11826. }
  11827. },
  11828. back: {
  11829. height: math.unit(12, "feet"),
  11830. weight: math.unit(1.5, "tons"),
  11831. name: "Back",
  11832. image: {
  11833. source: "./media/characters/dydros/back.svg",
  11834. extra: 900 / 843,
  11835. bottom: 0.005
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(12, "feet"),
  11843. default: true
  11844. },
  11845. ]
  11846. ))
  11847. characterMakers.push(() => makeCharacter(
  11848. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11849. {
  11850. front: {
  11851. height: math.unit(6, "feet"),
  11852. weight: math.unit(100, "kg"),
  11853. name: "Front",
  11854. image: {
  11855. source: "./media/characters/riggi/front.svg",
  11856. extra: 5787 / 5303
  11857. }
  11858. },
  11859. hyper: {
  11860. height: math.unit(6 * 5 / 3, "feet"),
  11861. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11862. name: "Hyper",
  11863. image: {
  11864. source: "./media/characters/riggi/hyper.svg",
  11865. extra: 3595 / 3485
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Small Macro",
  11872. height: math.unit(50, "feet")
  11873. },
  11874. {
  11875. name: "Default",
  11876. height: math.unit(200, "feet"),
  11877. default: true
  11878. },
  11879. {
  11880. name: "Loom",
  11881. height: math.unit(10000, "feet")
  11882. },
  11883. {
  11884. name: "Cruising Altitude",
  11885. height: math.unit(30000, "feet")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(100, "miles")
  11890. },
  11891. {
  11892. name: "Continent Sized",
  11893. height: math.unit(2800, "miles")
  11894. },
  11895. {
  11896. name: "Earth Sized",
  11897. height: math.unit(8000, "miles")
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(6, "feet"),
  11906. weight: math.unit(250, "lb"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/alexi/front.svg",
  11910. extra: 3483 / 3291,
  11911. bottom: 0.04
  11912. }
  11913. },
  11914. back: {
  11915. height: math.unit(6, "feet"),
  11916. weight: math.unit(250, "lb"),
  11917. name: "Back",
  11918. image: {
  11919. source: "./media/characters/alexi/back.svg",
  11920. extra: 3533 / 3356,
  11921. bottom: 0.021
  11922. }
  11923. },
  11924. frontTransforming: {
  11925. height: math.unit(8.58, "feet"),
  11926. weight: math.unit(1300, "lb"),
  11927. name: "Transforming",
  11928. image: {
  11929. source: "./media/characters/alexi/front-transforming.svg",
  11930. extra: 437 / 409,
  11931. bottom: 19 / 458.66
  11932. }
  11933. },
  11934. frontTransformed: {
  11935. height: math.unit(12.5, "feet"),
  11936. weight: math.unit(4000, "lb"),
  11937. name: "Transformed",
  11938. image: {
  11939. source: "./media/characters/alexi/front-transformed.svg",
  11940. extra: 639 / 614,
  11941. bottom: 30.55 / 671
  11942. }
  11943. },
  11944. },
  11945. [
  11946. {
  11947. name: "Normal",
  11948. height: math.unit(14, "feet"),
  11949. default: true
  11950. },
  11951. {
  11952. name: "Minimacro",
  11953. height: math.unit(30, "meters")
  11954. },
  11955. {
  11956. name: "Macro",
  11957. height: math.unit(500, "meters")
  11958. },
  11959. {
  11960. name: "Megamacro",
  11961. height: math.unit(9000, "km")
  11962. },
  11963. {
  11964. name: "Teramacro",
  11965. height: math.unit(384000, "km")
  11966. },
  11967. ]
  11968. ))
  11969. characterMakers.push(() => makeCharacter(
  11970. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11971. {
  11972. front: {
  11973. height: math.unit(6, "feet"),
  11974. weight: math.unit(150, "lb"),
  11975. name: "Front",
  11976. image: {
  11977. source: "./media/characters/kayroo/front.svg",
  11978. extra: 1153 / 1038,
  11979. bottom: 0.06
  11980. }
  11981. },
  11982. foot: {
  11983. height: math.unit(6, "feet"),
  11984. weight: math.unit(150, "lb"),
  11985. name: "Foot",
  11986. image: {
  11987. source: "./media/characters/kayroo/foot.svg"
  11988. }
  11989. },
  11990. },
  11991. [
  11992. {
  11993. name: "Normal",
  11994. height: math.unit(8, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Minimacro",
  11999. height: math.unit(250, "feet")
  12000. },
  12001. {
  12002. name: "Macro",
  12003. height: math.unit(2800, "feet")
  12004. },
  12005. {
  12006. name: "Megamacro",
  12007. height: math.unit(5200, "feet")
  12008. },
  12009. {
  12010. name: "Gigamacro",
  12011. height: math.unit(27000, "feet")
  12012. },
  12013. {
  12014. name: "Omega",
  12015. height: math.unit(45000, "feet")
  12016. },
  12017. ]
  12018. ))
  12019. characterMakers.push(() => makeCharacter(
  12020. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12021. {
  12022. front: {
  12023. height: math.unit(18, "feet"),
  12024. weight: math.unit(5800, "lb"),
  12025. name: "Front",
  12026. image: {
  12027. source: "./media/characters/rhys/front.svg",
  12028. extra: 3386 / 3090,
  12029. bottom: 0.07
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(18, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Working Size",
  12041. height: math.unit(200, "feet")
  12042. },
  12043. {
  12044. name: "Demolition Size",
  12045. height: math.unit(2000, "feet")
  12046. },
  12047. {
  12048. name: "Maximum Licensed Size",
  12049. height: math.unit(5, "miles")
  12050. },
  12051. {
  12052. name: "Maximum Observed Size",
  12053. height: math.unit(10, "yottameters")
  12054. },
  12055. ]
  12056. ))
  12057. characterMakers.push(() => makeCharacter(
  12058. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12059. {
  12060. front: {
  12061. height: math.unit(6, "feet"),
  12062. weight: math.unit(250, "lb"),
  12063. name: "Front",
  12064. image: {
  12065. source: "./media/characters/toto/front.svg",
  12066. extra: 527 / 479,
  12067. bottom: 0.05
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Micro",
  12074. height: math.unit(3, "feet")
  12075. },
  12076. {
  12077. name: "Normal",
  12078. height: math.unit(10, "feet")
  12079. },
  12080. {
  12081. name: "Macro",
  12082. height: math.unit(150, "feet"),
  12083. default: true
  12084. },
  12085. {
  12086. name: "Megamacro",
  12087. height: math.unit(1200, "feet")
  12088. },
  12089. ]
  12090. ))
  12091. characterMakers.push(() => makeCharacter(
  12092. { name: "King", species: ["lion"], tags: ["anthro"] },
  12093. {
  12094. back: {
  12095. height: math.unit(6, "feet"),
  12096. weight: math.unit(150, "lb"),
  12097. name: "Back",
  12098. image: {
  12099. source: "./media/characters/king/back.svg"
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Micro",
  12106. height: math.unit(2, "inches")
  12107. },
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(8, "feet")
  12111. },
  12112. {
  12113. name: "Macro",
  12114. height: math.unit(200, "feet"),
  12115. default: true
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(50, "miles")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(11, "feet"),
  12128. weight: math.unit(1400, "lb"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/cordite/front.svg",
  12132. extra: 1919/1827,
  12133. bottom: 40/1959
  12134. }
  12135. },
  12136. side: {
  12137. height: math.unit(11, "feet"),
  12138. weight: math.unit(1400, "lb"),
  12139. name: "Side",
  12140. image: {
  12141. source: "./media/characters/cordite/side.svg",
  12142. extra: 1908/1793,
  12143. bottom: 38/1946
  12144. }
  12145. },
  12146. back: {
  12147. height: math.unit(11, "feet"),
  12148. weight: math.unit(1400, "lb"),
  12149. name: "Back",
  12150. image: {
  12151. source: "./media/characters/cordite/back.svg",
  12152. extra: 1938/1837,
  12153. bottom: 10/1948
  12154. }
  12155. },
  12156. feral: {
  12157. height: math.unit(2, "feet"),
  12158. weight: math.unit(90, "lb"),
  12159. name: "Feral",
  12160. image: {
  12161. source: "./media/characters/cordite/feral.svg",
  12162. extra: 1260 / 755,
  12163. bottom: 0.05
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(11, "feet"),
  12171. default: true
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "lb"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/pianostrong/front.svg",
  12184. extra: 6577 / 6254,
  12185. bottom: 0.02
  12186. }
  12187. },
  12188. side: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(150, "lb"),
  12191. name: "Side",
  12192. image: {
  12193. source: "./media/characters/pianostrong/side.svg",
  12194. extra: 6106 / 5730
  12195. }
  12196. },
  12197. back: {
  12198. height: math.unit(6, "feet"),
  12199. weight: math.unit(150, "lb"),
  12200. name: "Back",
  12201. image: {
  12202. source: "./media/characters/pianostrong/back.svg",
  12203. extra: 6085 / 5733,
  12204. bottom: 0.01
  12205. }
  12206. },
  12207. },
  12208. [
  12209. {
  12210. name: "Macro",
  12211. height: math.unit(100, "feet")
  12212. },
  12213. {
  12214. name: "Macro+",
  12215. height: math.unit(300, "feet"),
  12216. default: true
  12217. },
  12218. {
  12219. name: "Macro++",
  12220. height: math.unit(1000, "feet")
  12221. },
  12222. ]
  12223. ))
  12224. characterMakers.push(() => makeCharacter(
  12225. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12226. {
  12227. front: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(150, "lb"),
  12230. name: "Front",
  12231. image: {
  12232. source: "./media/characters/kona/front.svg",
  12233. extra: 2960 / 2629,
  12234. bottom: 0.005
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(11 + 8 / 12, "feet")
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(850, "feet"),
  12246. default: true
  12247. },
  12248. {
  12249. name: "Macro+",
  12250. height: math.unit(1.5, "km"),
  12251. default: true
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(80, "miles")
  12256. },
  12257. {
  12258. name: "Gigamacro",
  12259. height: math.unit(3500, "miles")
  12260. },
  12261. ]
  12262. ))
  12263. characterMakers.push(() => makeCharacter(
  12264. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12265. {
  12266. side: {
  12267. height: math.unit(1.9, "meters"),
  12268. weight: math.unit(326, "kg"),
  12269. name: "Side",
  12270. image: {
  12271. source: "./media/characters/levi/side.svg",
  12272. extra: 1704 / 1334,
  12273. bottom: 0.02
  12274. }
  12275. },
  12276. },
  12277. [
  12278. {
  12279. name: "Normal",
  12280. height: math.unit(1.9, "meters"),
  12281. default: true
  12282. },
  12283. {
  12284. name: "Macro",
  12285. height: math.unit(20, "meters")
  12286. },
  12287. {
  12288. name: "Macro+",
  12289. height: math.unit(200, "meters")
  12290. },
  12291. {
  12292. name: "Megamacro",
  12293. height: math.unit(2, "km")
  12294. },
  12295. {
  12296. name: "Megamacro+",
  12297. height: math.unit(20, "km")
  12298. },
  12299. {
  12300. name: "Gigamacro",
  12301. height: math.unit(2500, "km")
  12302. },
  12303. {
  12304. name: "Gigamacro+",
  12305. height: math.unit(120000, "km")
  12306. },
  12307. {
  12308. name: "Teramacro",
  12309. height: math.unit(7.77e6, "km")
  12310. },
  12311. ]
  12312. ))
  12313. characterMakers.push(() => makeCharacter(
  12314. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12315. {
  12316. front: {
  12317. height: math.unit(6 + 4/12, "feet"),
  12318. weight: math.unit(190, "lb"),
  12319. name: "Front",
  12320. image: {
  12321. source: "./media/characters/bmc/front.svg",
  12322. extra: 1626/1472,
  12323. bottom: 79/1705
  12324. }
  12325. },
  12326. back: {
  12327. height: math.unit(6 + 4/12, "feet"),
  12328. weight: math.unit(190, "lb"),
  12329. name: "Back",
  12330. image: {
  12331. source: "./media/characters/bmc/back.svg",
  12332. extra: 1640/1479,
  12333. bottom: 45/1685
  12334. }
  12335. },
  12336. frontArmor: {
  12337. height: math.unit(6 + 4/12, "feet"),
  12338. weight: math.unit(190, "lb"),
  12339. name: "Front-armor",
  12340. image: {
  12341. source: "./media/characters/bmc/front-armor.svg",
  12342. extra: 1538/1468,
  12343. bottom: 79/1617
  12344. }
  12345. },
  12346. },
  12347. [
  12348. {
  12349. name: "Human-sized",
  12350. height: math.unit(6 + 4 / 12, "feet")
  12351. },
  12352. {
  12353. name: "Interactive Size",
  12354. height: math.unit(25, "feet")
  12355. },
  12356. {
  12357. name: "Small",
  12358. height: math.unit(250, "feet")
  12359. },
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(1250, "feet"),
  12363. default: true
  12364. },
  12365. {
  12366. name: "Good Day",
  12367. height: math.unit(88, "miles")
  12368. },
  12369. {
  12370. name: "Largest Measured Size",
  12371. height: math.unit(105.960, "galaxies")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12377. {
  12378. front: {
  12379. height: math.unit(20, "feet"),
  12380. weight: math.unit(2016, "kg"),
  12381. name: "Front",
  12382. image: {
  12383. source: "./media/characters/sven-the-kaiju/front.svg",
  12384. extra: 1277/1250,
  12385. bottom: 35/1312
  12386. }
  12387. },
  12388. mouth: {
  12389. height: math.unit(1.85, "feet"),
  12390. name: "Mouth",
  12391. image: {
  12392. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Fairy",
  12399. height: math.unit(6, "inches")
  12400. },
  12401. {
  12402. name: "Normal",
  12403. height: math.unit(20, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Rampage",
  12408. height: math.unit(200, "feet")
  12409. },
  12410. {
  12411. name: "Archfey Forest Guardian",
  12412. height: math.unit(1, "mile")
  12413. },
  12414. ]
  12415. ))
  12416. characterMakers.push(() => makeCharacter(
  12417. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12418. {
  12419. front: {
  12420. height: math.unit(4, "meters"),
  12421. weight: math.unit(2, "tons"),
  12422. name: "Front",
  12423. image: {
  12424. source: "./media/characters/marik/front.svg",
  12425. extra: 1057 / 1003,
  12426. bottom: 0.08
  12427. }
  12428. },
  12429. },
  12430. [
  12431. {
  12432. name: "Normal",
  12433. height: math.unit(4, "meters"),
  12434. default: true
  12435. },
  12436. {
  12437. name: "Macro",
  12438. height: math.unit(20, "meters")
  12439. },
  12440. {
  12441. name: "Megamacro",
  12442. height: math.unit(50, "km")
  12443. },
  12444. {
  12445. name: "Gigamacro",
  12446. height: math.unit(100, "km")
  12447. },
  12448. {
  12449. name: "Alpha Macro",
  12450. height: math.unit(7.88e7, "yottameters")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(110, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/mel/front.svg",
  12463. extra: 736 / 617,
  12464. bottom: 0.017
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Pico",
  12471. height: math.unit(3, "pm")
  12472. },
  12473. {
  12474. name: "Nano",
  12475. height: math.unit(3, "nm")
  12476. },
  12477. {
  12478. name: "Micro",
  12479. height: math.unit(0.3, "mm"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Micro+",
  12484. height: math.unit(3, "mm")
  12485. },
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(5 + 10.5 / 12, "feet")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12494. {
  12495. kaiju: {
  12496. height: math.unit(1.75, "meters"),
  12497. weight: math.unit(55, "kg"),
  12498. name: "Kaiju",
  12499. image: {
  12500. source: "./media/characters/lykonous/kaiju.svg",
  12501. extra: 1055 / 946,
  12502. bottom: 0.135
  12503. }
  12504. },
  12505. },
  12506. [
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(2.5, "meters"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Kaiju Dragon",
  12514. height: math.unit(60, "meters")
  12515. },
  12516. {
  12517. name: "Mega Kaiju",
  12518. height: math.unit(120, "km")
  12519. },
  12520. {
  12521. name: "Giga Kaiju",
  12522. height: math.unit(200, "megameters")
  12523. },
  12524. {
  12525. name: "Terra Kaiju",
  12526. height: math.unit(400, "gigameters")
  12527. },
  12528. {
  12529. name: "Kaiju Dragon God",
  12530. height: math.unit(13000, "exaparsecs")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(150, "lb"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/blü/front.svg",
  12543. extra: 1883 / 1564,
  12544. bottom: 0.031
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(13, "feet"),
  12552. default: true
  12553. },
  12554. {
  12555. name: "Big Boi",
  12556. height: math.unit(150, "meters")
  12557. },
  12558. {
  12559. name: "Mini Stomper",
  12560. height: math.unit(300, "meters")
  12561. },
  12562. {
  12563. name: "Macro",
  12564. height: math.unit(1000, "meters")
  12565. },
  12566. {
  12567. name: "Megamacro",
  12568. height: math.unit(11000, "meters")
  12569. },
  12570. {
  12571. name: "Gigamacro",
  12572. height: math.unit(11000, "km")
  12573. },
  12574. {
  12575. name: "Teramacro",
  12576. height: math.unit(420000, "km")
  12577. },
  12578. {
  12579. name: "Examacro",
  12580. height: math.unit(120, "parsecs")
  12581. },
  12582. {
  12583. name: "God Tho",
  12584. height: math.unit(98000000000, "parsecs")
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12590. {
  12591. taurFront: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(200, "lb"),
  12594. name: "Taur (Front)",
  12595. image: {
  12596. source: "./media/characters/scales/taur-front.svg",
  12597. extra: 1,
  12598. bottom: 0.05
  12599. }
  12600. },
  12601. taurBack: {
  12602. height: math.unit(6, "feet"),
  12603. weight: math.unit(200, "lb"),
  12604. name: "Taur (Back)",
  12605. image: {
  12606. source: "./media/characters/scales/taur-back.svg",
  12607. extra: 1,
  12608. bottom: 0.08
  12609. }
  12610. },
  12611. anthro: {
  12612. height: math.unit(6 * 7 / 12, "feet"),
  12613. weight: math.unit(100, "lb"),
  12614. name: "Anthro",
  12615. image: {
  12616. source: "./media/characters/scales/anthro.svg",
  12617. extra: 1,
  12618. bottom: 0.06
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Normal",
  12625. height: math.unit(12, "feet"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/koragos/front.svg",
  12639. extra: 841 / 794,
  12640. bottom: 0.035
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/koragos/back.svg",
  12649. extra: 841 / 810,
  12650. bottom: 0.022
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Normal",
  12657. height: math.unit(6 + 11 / 12, "feet"),
  12658. default: true
  12659. },
  12660. {
  12661. name: "Macro",
  12662. height: math.unit(490, "feet")
  12663. },
  12664. {
  12665. name: "Megamacro",
  12666. height: math.unit(10, "miles")
  12667. },
  12668. {
  12669. name: "Gigamacro",
  12670. height: math.unit(50, "miles")
  12671. },
  12672. ]
  12673. ))
  12674. characterMakers.push(() => makeCharacter(
  12675. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12676. {
  12677. front: {
  12678. height: math.unit(6, "feet"),
  12679. weight: math.unit(250, "lb"),
  12680. name: "Front",
  12681. image: {
  12682. source: "./media/characters/xylrem/front.svg",
  12683. extra: 3323 / 3050,
  12684. bottom: 0.065
  12685. }
  12686. },
  12687. },
  12688. [
  12689. {
  12690. name: "Micro",
  12691. height: math.unit(4, "feet")
  12692. },
  12693. {
  12694. name: "Normal",
  12695. height: math.unit(16, "feet"),
  12696. default: true
  12697. },
  12698. {
  12699. name: "Macro",
  12700. height: math.unit(2720, "feet")
  12701. },
  12702. {
  12703. name: "Megamacro",
  12704. height: math.unit(25000, "miles")
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(8, "feet"),
  12713. weight: math.unit(250, "kg"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/ikideru/front.svg",
  12717. extra: 930 / 870,
  12718. bottom: 0.087
  12719. }
  12720. },
  12721. back: {
  12722. height: math.unit(8, "feet"),
  12723. weight: math.unit(250, "kg"),
  12724. name: "Back",
  12725. image: {
  12726. source: "./media/characters/ikideru/back.svg",
  12727. extra: 919 / 852,
  12728. bottom: 0.055
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Rare",
  12735. height: math.unit(8, "feet"),
  12736. default: true
  12737. },
  12738. {
  12739. name: "Playful Loom",
  12740. height: math.unit(80, "feet")
  12741. },
  12742. {
  12743. name: "City Leaner",
  12744. height: math.unit(230, "feet")
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(2500, "feet")
  12749. },
  12750. {
  12751. name: "Gigamacro",
  12752. height: math.unit(26400, "feet")
  12753. },
  12754. {
  12755. name: "Tectonic Shifter",
  12756. height: math.unit(1.7, "megameters")
  12757. },
  12758. {
  12759. name: "Planet Carer",
  12760. height: math.unit(21, "megameters")
  12761. },
  12762. {
  12763. name: "God",
  12764. height: math.unit(11157.22, "parsecs")
  12765. },
  12766. ]
  12767. ))
  12768. characterMakers.push(() => makeCharacter(
  12769. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12770. {
  12771. front: {
  12772. height: math.unit(6, "feet"),
  12773. weight: math.unit(120, "lb"),
  12774. name: "Front",
  12775. image: {
  12776. source: "./media/characters/neo/front.svg"
  12777. }
  12778. },
  12779. },
  12780. [
  12781. {
  12782. name: "Micro",
  12783. height: math.unit(2, "inches"),
  12784. default: true
  12785. },
  12786. {
  12787. name: "Human Size",
  12788. height: math.unit(5 + 8 / 12, "feet")
  12789. },
  12790. ]
  12791. ))
  12792. characterMakers.push(() => makeCharacter(
  12793. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12794. {
  12795. front: {
  12796. height: math.unit(13 + 10 / 12, "feet"),
  12797. weight: math.unit(5320, "lb"),
  12798. name: "Front",
  12799. image: {
  12800. source: "./media/characters/chauncey-chantz/front.svg",
  12801. extra: 1587 / 1435,
  12802. bottom: 0.02
  12803. }
  12804. },
  12805. },
  12806. [
  12807. {
  12808. name: "Normal",
  12809. height: math.unit(13 + 10 / 12, "feet"),
  12810. default: true
  12811. },
  12812. {
  12813. name: "Macro",
  12814. height: math.unit(45, "feet")
  12815. },
  12816. {
  12817. name: "Megamacro",
  12818. height: math.unit(250, "miles")
  12819. },
  12820. {
  12821. name: "Planetary",
  12822. height: math.unit(10000, "miles")
  12823. },
  12824. {
  12825. name: "Galactic",
  12826. height: math.unit(40000, "parsecs")
  12827. },
  12828. {
  12829. name: "Universal",
  12830. height: math.unit(1, "yottameter")
  12831. },
  12832. ]
  12833. ))
  12834. characterMakers.push(() => makeCharacter(
  12835. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12836. {
  12837. front: {
  12838. height: math.unit(6, "feet"),
  12839. weight: math.unit(150, "lb"),
  12840. name: "Front",
  12841. image: {
  12842. source: "./media/characters/epifox/front.svg",
  12843. extra: 1,
  12844. bottom: 0.075
  12845. }
  12846. },
  12847. },
  12848. [
  12849. {
  12850. name: "Micro",
  12851. height: math.unit(6, "inches")
  12852. },
  12853. {
  12854. name: "Normal",
  12855. height: math.unit(12, "feet"),
  12856. default: true
  12857. },
  12858. {
  12859. name: "Macro",
  12860. height: math.unit(3810, "feet")
  12861. },
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(500, "miles")
  12865. },
  12866. ]
  12867. ))
  12868. characterMakers.push(() => makeCharacter(
  12869. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12870. {
  12871. front: {
  12872. height: math.unit(1.8796, "m"),
  12873. weight: math.unit(230, "lb"),
  12874. name: "Front",
  12875. image: {
  12876. source: "./media/characters/colin-t/front.svg",
  12877. extra: 1272 / 1193,
  12878. bottom: 0.07
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Micro",
  12885. height: math.unit(0.571, "meters")
  12886. },
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(1.8796, "meters"),
  12890. default: true
  12891. },
  12892. {
  12893. name: "Tall",
  12894. height: math.unit(4, "meters")
  12895. },
  12896. {
  12897. name: "Macro",
  12898. height: math.unit(67.241, "meters")
  12899. },
  12900. {
  12901. name: "Megamacro",
  12902. height: math.unit(371.856, "meters")
  12903. },
  12904. {
  12905. name: "Planetary",
  12906. height: math.unit(12631.5689, "km")
  12907. },
  12908. ]
  12909. ))
  12910. characterMakers.push(() => makeCharacter(
  12911. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12912. {
  12913. front: {
  12914. height: math.unit(1.85, "meters"),
  12915. weight: math.unit(80, "kg"),
  12916. name: "Front",
  12917. image: {
  12918. source: "./media/characters/matvei/front.svg",
  12919. extra: 614 / 594,
  12920. bottom: 0.01
  12921. }
  12922. },
  12923. },
  12924. [
  12925. {
  12926. name: "Normal",
  12927. height: math.unit(1.85, "meters"),
  12928. default: true
  12929. },
  12930. ]
  12931. ))
  12932. characterMakers.push(() => makeCharacter(
  12933. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12934. {
  12935. front: {
  12936. height: math.unit(5 + 9 / 12, "feet"),
  12937. weight: math.unit(70, "lb"),
  12938. name: "Front",
  12939. image: {
  12940. source: "./media/characters/quincy/front.svg",
  12941. extra: 3041 / 2751
  12942. }
  12943. },
  12944. back: {
  12945. height: math.unit(5 + 9 / 12, "feet"),
  12946. weight: math.unit(70, "lb"),
  12947. name: "Back",
  12948. image: {
  12949. source: "./media/characters/quincy/back.svg",
  12950. extra: 3041 / 2751
  12951. }
  12952. },
  12953. flying: {
  12954. height: math.unit(5 + 4 / 12, "feet"),
  12955. weight: math.unit(70, "lb"),
  12956. name: "Flying",
  12957. image: {
  12958. source: "./media/characters/quincy/flying.svg",
  12959. extra: 1044 / 930
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Micro",
  12966. height: math.unit(3, "cm")
  12967. },
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(5 + 9 / 12, "feet")
  12971. },
  12972. {
  12973. name: "Macro",
  12974. height: math.unit(200, "meters"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Megamacro",
  12979. height: math.unit(1000, "meters")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(3 + 11/12, "feet"),
  12988. weight: math.unit(50, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/vanrel/front.svg",
  12992. extra: 1104/949,
  12993. bottom: 52/1156
  12994. }
  12995. },
  12996. back: {
  12997. height: math.unit(3 + 11/12, "feet"),
  12998. weight: math.unit(50, "lb"),
  12999. name: "Back",
  13000. image: {
  13001. source: "./media/characters/vanrel/back.svg",
  13002. extra: 1119/976,
  13003. bottom: 37/1156
  13004. }
  13005. },
  13006. tome: {
  13007. height: math.unit(1.35, "feet"),
  13008. weight: math.unit(10, "lb"),
  13009. name: "Vanrel's Tome",
  13010. rename: true,
  13011. image: {
  13012. source: "./media/characters/vanrel/tome.svg"
  13013. }
  13014. },
  13015. beans: {
  13016. height: math.unit(0.89, "feet"),
  13017. name: "Beans",
  13018. image: {
  13019. source: "./media/characters/vanrel/beans.svg"
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(3 + 11/12, "feet"),
  13027. default: true
  13028. },
  13029. ]
  13030. ))
  13031. characterMakers.push(() => makeCharacter(
  13032. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13033. {
  13034. front: {
  13035. height: math.unit(7 + 5 / 12, "feet"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/kuiper-vanrel/front.svg",
  13039. extra: 1219/1169,
  13040. bottom: 69/1288
  13041. }
  13042. },
  13043. back: {
  13044. height: math.unit(7 + 5 / 12, "feet"),
  13045. name: "Back",
  13046. image: {
  13047. source: "./media/characters/kuiper-vanrel/back.svg",
  13048. extra: 1236/1193,
  13049. bottom: 27/1263
  13050. }
  13051. },
  13052. foot: {
  13053. height: math.unit(0.55, "meters"),
  13054. name: "Foot",
  13055. image: {
  13056. source: "./media/characters/kuiper-vanrel/foot.svg",
  13057. }
  13058. },
  13059. battle: {
  13060. height: math.unit(6.824, "feet"),
  13061. name: "Battle",
  13062. image: {
  13063. source: "./media/characters/kuiper-vanrel/battle.svg",
  13064. extra: 1466 / 1327,
  13065. bottom: 29 / 1492.5
  13066. }
  13067. },
  13068. meerkui: {
  13069. height: math.unit(18, "inches"),
  13070. name: "Meerkui",
  13071. image: {
  13072. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13073. extra: 1354/1289,
  13074. bottom: 69/1423
  13075. }
  13076. },
  13077. },
  13078. [
  13079. {
  13080. name: "Normal",
  13081. height: math.unit(7 + 5 / 12, "feet"),
  13082. default: true
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(8 + 5 / 12, "feet"),
  13091. name: "Front",
  13092. image: {
  13093. source: "./media/characters/keset-vanrel/front.svg",
  13094. extra: 1231/1148,
  13095. bottom: 82/1313
  13096. }
  13097. },
  13098. back: {
  13099. height: math.unit(8 + 5 / 12, "feet"),
  13100. name: "Back",
  13101. image: {
  13102. source: "./media/characters/keset-vanrel/back.svg",
  13103. extra: 1240/1174,
  13104. bottom: 33/1273
  13105. }
  13106. },
  13107. hand: {
  13108. height: math.unit(0.6, "meters"),
  13109. name: "Hand",
  13110. image: {
  13111. source: "./media/characters/keset-vanrel/hand.svg"
  13112. }
  13113. },
  13114. foot: {
  13115. height: math.unit(0.94978, "meters"),
  13116. name: "Foot",
  13117. image: {
  13118. source: "./media/characters/keset-vanrel/foot.svg"
  13119. }
  13120. },
  13121. battle: {
  13122. height: math.unit(7.408, "feet"),
  13123. name: "Battle",
  13124. image: {
  13125. source: "./media/characters/keset-vanrel/battle.svg",
  13126. extra: 1890 / 1386,
  13127. bottom: 73.28 / 1970
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Normal",
  13134. height: math.unit(8 + 5 / 12, "feet"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13141. {
  13142. front: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Front",
  13146. image: {
  13147. source: "./media/characters/neos/front.svg",
  13148. extra: 1696 / 992,
  13149. bottom: 0.14
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(54, "cm"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Macro",
  13161. height: math.unit(100, "m")
  13162. },
  13163. {
  13164. name: "Megamacro",
  13165. height: math.unit(10, "km")
  13166. },
  13167. {
  13168. name: "Megamacro+",
  13169. height: math.unit(100, "km")
  13170. },
  13171. {
  13172. name: "Gigamacro",
  13173. height: math.unit(100, "Mm")
  13174. },
  13175. {
  13176. name: "Teramacro",
  13177. height: math.unit(100, "Gm")
  13178. },
  13179. {
  13180. name: "Examacro",
  13181. height: math.unit(100, "Em")
  13182. },
  13183. {
  13184. name: "Godly",
  13185. height: math.unit(10000, "Ym")
  13186. },
  13187. {
  13188. name: "Beyond Godly",
  13189. height: math.unit(25, "multiverses")
  13190. },
  13191. ]
  13192. ))
  13193. characterMakers.push(() => makeCharacter(
  13194. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13195. {
  13196. feminine: {
  13197. height: math.unit(5, "feet"),
  13198. weight: math.unit(100, "lb"),
  13199. name: "Feminine",
  13200. image: {
  13201. source: "./media/characters/sammy-mouse/feminine.svg",
  13202. extra: 2526 / 2425,
  13203. bottom: 0.123
  13204. }
  13205. },
  13206. masculine: {
  13207. height: math.unit(5, "feet"),
  13208. weight: math.unit(100, "lb"),
  13209. name: "Masculine",
  13210. image: {
  13211. source: "./media/characters/sammy-mouse/masculine.svg",
  13212. extra: 2526 / 2425,
  13213. bottom: 0.123
  13214. }
  13215. },
  13216. },
  13217. [
  13218. {
  13219. name: "Micro",
  13220. height: math.unit(5, "inches")
  13221. },
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(5, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Macro",
  13229. height: math.unit(60, "feet")
  13230. },
  13231. ]
  13232. ))
  13233. characterMakers.push(() => makeCharacter(
  13234. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13235. {
  13236. front: {
  13237. height: math.unit(4, "feet"),
  13238. weight: math.unit(50, "lb"),
  13239. name: "Front",
  13240. image: {
  13241. source: "./media/characters/kole/front.svg",
  13242. extra: 1423 / 1303,
  13243. bottom: 0.025
  13244. }
  13245. },
  13246. back: {
  13247. height: math.unit(4, "feet"),
  13248. weight: math.unit(50, "lb"),
  13249. name: "Back",
  13250. image: {
  13251. source: "./media/characters/kole/back.svg",
  13252. extra: 1426 / 1280,
  13253. bottom: 0.02
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Normal",
  13260. height: math.unit(4, "feet"),
  13261. default: true
  13262. },
  13263. ]
  13264. ))
  13265. characterMakers.push(() => makeCharacter(
  13266. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13267. {
  13268. front: {
  13269. height: math.unit(2.5, "feet"),
  13270. weight: math.unit(32, "lb"),
  13271. name: "Front",
  13272. image: {
  13273. source: "./media/characters/rufran/front.svg",
  13274. extra: 1313/885,
  13275. bottom: 94/1407
  13276. }
  13277. },
  13278. side: {
  13279. height: math.unit(2.5, "feet"),
  13280. weight: math.unit(32, "lb"),
  13281. name: "Side",
  13282. image: {
  13283. source: "./media/characters/rufran/side.svg",
  13284. extra: 1109/852,
  13285. bottom: 118/1227
  13286. }
  13287. },
  13288. back: {
  13289. height: math.unit(2.5, "feet"),
  13290. weight: math.unit(32, "lb"),
  13291. name: "Back",
  13292. image: {
  13293. source: "./media/characters/rufran/back.svg",
  13294. extra: 1280/878,
  13295. bottom: 131/1411
  13296. }
  13297. },
  13298. mouth: {
  13299. height: math.unit(1.13, "feet"),
  13300. name: "Mouth",
  13301. image: {
  13302. source: "./media/characters/rufran/mouth.svg"
  13303. }
  13304. },
  13305. foot: {
  13306. height: math.unit(1.33, "feet"),
  13307. name: "Foot",
  13308. image: {
  13309. source: "./media/characters/rufran/foot.svg"
  13310. }
  13311. },
  13312. koboldFront: {
  13313. height: math.unit(2 + 6 / 12, "feet"),
  13314. weight: math.unit(20, "lb"),
  13315. name: "Front (Kobold)",
  13316. image: {
  13317. source: "./media/characters/rufran/kobold-front.svg",
  13318. extra: 2041 / 1839,
  13319. bottom: 0.055
  13320. }
  13321. },
  13322. koboldBack: {
  13323. height: math.unit(2 + 6 / 12, "feet"),
  13324. weight: math.unit(20, "lb"),
  13325. name: "Back (Kobold)",
  13326. image: {
  13327. source: "./media/characters/rufran/kobold-back.svg",
  13328. extra: 2054 / 1839,
  13329. bottom: 0.01
  13330. }
  13331. },
  13332. koboldHand: {
  13333. height: math.unit(0.2166, "meters"),
  13334. name: "Hand (Kobold)",
  13335. image: {
  13336. source: "./media/characters/rufran/kobold-hand.svg"
  13337. }
  13338. },
  13339. koboldFoot: {
  13340. height: math.unit(0.185, "meters"),
  13341. name: "Foot (Kobold)",
  13342. image: {
  13343. source: "./media/characters/rufran/kobold-foot.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Micro",
  13350. height: math.unit(1, "inch")
  13351. },
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(2 + 6 / 12, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Big",
  13359. height: math.unit(60, "feet")
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(325, "feet")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(0.3, "meters"),
  13372. weight: math.unit(3.5, "kg"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/chip/front.svg",
  13376. extra: 748 / 674
  13377. }
  13378. },
  13379. },
  13380. [
  13381. {
  13382. name: "Micro",
  13383. height: math.unit(1, "inch"),
  13384. default: true
  13385. },
  13386. ]
  13387. ))
  13388. characterMakers.push(() => makeCharacter(
  13389. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13390. {
  13391. side: {
  13392. height: math.unit(2.3, "meters"),
  13393. weight: math.unit(3500, "lb"),
  13394. name: "Side",
  13395. image: {
  13396. source: "./media/characters/torvid/side.svg",
  13397. extra: 1972 / 722,
  13398. bottom: 0.035
  13399. }
  13400. },
  13401. },
  13402. [
  13403. {
  13404. name: "Normal",
  13405. height: math.unit(2.3, "meters"),
  13406. default: true
  13407. },
  13408. ]
  13409. ))
  13410. characterMakers.push(() => makeCharacter(
  13411. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13412. {
  13413. front: {
  13414. height: math.unit(2, "meters"),
  13415. weight: math.unit(150.5, "kg"),
  13416. name: "Front",
  13417. image: {
  13418. source: "./media/characters/susan/front.svg",
  13419. extra: 693 / 635,
  13420. bottom: 0.05
  13421. }
  13422. },
  13423. },
  13424. [
  13425. {
  13426. name: "Megamacro",
  13427. height: math.unit(505, "miles"),
  13428. default: true
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13434. {
  13435. front: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Front",
  13439. image: {
  13440. source: "./media/characters/raindrops/front.svg",
  13441. extra: 2655 / 2461,
  13442. bottom: 49 / 2705
  13443. }
  13444. },
  13445. back: {
  13446. height: math.unit(6, "feet"),
  13447. weight: math.unit(150, "lb"),
  13448. name: "Back",
  13449. image: {
  13450. source: "./media/characters/raindrops/back.svg",
  13451. extra: 2574 / 2400,
  13452. bottom: 65 / 2634
  13453. }
  13454. },
  13455. },
  13456. [
  13457. {
  13458. name: "Micro",
  13459. height: math.unit(6, "inches")
  13460. },
  13461. {
  13462. name: "Normal",
  13463. height: math.unit(6 + 2 / 12, "feet")
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(131, "feet"),
  13468. default: true
  13469. },
  13470. {
  13471. name: "Megamacro",
  13472. height: math.unit(15, "miles")
  13473. },
  13474. {
  13475. name: "Gigamacro",
  13476. height: math.unit(4000, "miles")
  13477. },
  13478. {
  13479. name: "Teramacro",
  13480. height: math.unit(315000, "miles")
  13481. },
  13482. ]
  13483. ))
  13484. characterMakers.push(() => makeCharacter(
  13485. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13486. {
  13487. front: {
  13488. height: math.unit(2.794, "meters"),
  13489. weight: math.unit(325, "kg"),
  13490. name: "Front",
  13491. image: {
  13492. source: "./media/characters/tezwa/front.svg",
  13493. extra: 2083 / 1906,
  13494. bottom: 0.031
  13495. }
  13496. },
  13497. foot: {
  13498. height: math.unit(0.687, "meters"),
  13499. name: "Foot",
  13500. image: {
  13501. source: "./media/characters/tezwa/foot.svg"
  13502. }
  13503. },
  13504. },
  13505. [
  13506. {
  13507. name: "Normal",
  13508. height: math.unit(9 + 2 / 12, "feet"),
  13509. default: true
  13510. },
  13511. ]
  13512. ))
  13513. characterMakers.push(() => makeCharacter(
  13514. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13515. {
  13516. front: {
  13517. height: math.unit(58, "feet"),
  13518. weight: math.unit(89000, "lb"),
  13519. name: "Front",
  13520. image: {
  13521. source: "./media/characters/typhus/front.svg",
  13522. extra: 816 / 800,
  13523. bottom: 0.065
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(58, "feet"),
  13531. default: true
  13532. },
  13533. ]
  13534. ))
  13535. characterMakers.push(() => makeCharacter(
  13536. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13537. {
  13538. front: {
  13539. height: math.unit(12, "feet"),
  13540. weight: math.unit(6, "tonnes"),
  13541. name: "Front",
  13542. image: {
  13543. source: "./media/characters/lyra-von-wulf/front.svg",
  13544. extra: 1,
  13545. bottom: 0.10
  13546. }
  13547. },
  13548. frontMecha: {
  13549. height: math.unit(12, "feet"),
  13550. weight: math.unit(12, "tonnes"),
  13551. name: "Front (Mecha)",
  13552. image: {
  13553. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13554. extra: 1,
  13555. bottom: 0.042
  13556. }
  13557. },
  13558. maw: {
  13559. height: math.unit(2.2, "feet"),
  13560. name: "Maw",
  13561. image: {
  13562. source: "./media/characters/lyra-von-wulf/maw.svg"
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Normal",
  13569. height: math.unit(12, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Classic",
  13574. height: math.unit(50, "feet")
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(500, "feet")
  13579. },
  13580. {
  13581. name: "Megamacro",
  13582. height: math.unit(1, "mile")
  13583. },
  13584. {
  13585. name: "Gigamacro",
  13586. height: math.unit(400, "miles")
  13587. },
  13588. {
  13589. name: "Teramacro",
  13590. height: math.unit(22000, "miles")
  13591. },
  13592. {
  13593. name: "Solarmacro",
  13594. height: math.unit(8600000, "miles")
  13595. },
  13596. {
  13597. name: "Galactic",
  13598. height: math.unit(1057000, "lightyears")
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(6 + 10 / 12, "feet"),
  13607. weight: math.unit(150, "lb"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/dixon/front.svg",
  13611. extra: 3361 / 3209,
  13612. bottom: 0.01
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(6 + 10 / 12, "feet"),
  13620. default: true
  13621. },
  13622. {
  13623. name: "Big",
  13624. height: math.unit(12, "meters")
  13625. },
  13626. {
  13627. name: "Macro",
  13628. height: math.unit(500, "meters")
  13629. },
  13630. {
  13631. name: "Megamacro",
  13632. height: math.unit(2, "km")
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(185, "cm"),
  13641. weight: math.unit(68, "kg"),
  13642. name: "Front",
  13643. image: {
  13644. source: "./media/characters/kauko/front.svg",
  13645. extra: 1455 / 1421,
  13646. bottom: 0.03
  13647. }
  13648. },
  13649. back: {
  13650. height: math.unit(185, "cm"),
  13651. weight: math.unit(68, "kg"),
  13652. name: "Back",
  13653. image: {
  13654. source: "./media/characters/kauko/back.svg",
  13655. extra: 1455 / 1421,
  13656. bottom: 0.004
  13657. }
  13658. },
  13659. },
  13660. [
  13661. {
  13662. name: "Normal",
  13663. height: math.unit(185, "cm"),
  13664. default: true
  13665. },
  13666. ]
  13667. ))
  13668. characterMakers.push(() => makeCharacter(
  13669. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13670. {
  13671. front: {
  13672. height: math.unit(6, "feet"),
  13673. weight: math.unit(150, "kg"),
  13674. name: "Front",
  13675. image: {
  13676. source: "./media/characters/varg/front.svg",
  13677. extra: 1108 / 1018,
  13678. bottom: 0.0375
  13679. }
  13680. },
  13681. },
  13682. [
  13683. {
  13684. name: "Normal",
  13685. height: math.unit(5, "meters")
  13686. },
  13687. {
  13688. name: "Macro",
  13689. height: math.unit(200, "meters")
  13690. },
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(20, "kilometers")
  13694. },
  13695. {
  13696. name: "True Size",
  13697. height: math.unit(211, "km"),
  13698. default: true
  13699. },
  13700. {
  13701. name: "Gigamacro",
  13702. height: math.unit(1000, "km")
  13703. },
  13704. {
  13705. name: "Gigamacro+",
  13706. height: math.unit(8000, "km")
  13707. },
  13708. {
  13709. name: "Teramacro",
  13710. height: math.unit(1000000, "km")
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(7 + 7 / 12, "feet"),
  13719. weight: math.unit(267, "lb"),
  13720. name: "Front",
  13721. image: {
  13722. source: "./media/characters/dayza/front.svg",
  13723. extra: 1262 / 1200,
  13724. bottom: 0.035
  13725. }
  13726. },
  13727. side: {
  13728. height: math.unit(7 + 7 / 12, "feet"),
  13729. weight: math.unit(267, "lb"),
  13730. name: "Side",
  13731. image: {
  13732. source: "./media/characters/dayza/side.svg",
  13733. extra: 1295 / 1245,
  13734. bottom: 0.05
  13735. }
  13736. },
  13737. back: {
  13738. height: math.unit(7 + 7 / 12, "feet"),
  13739. weight: math.unit(267, "lb"),
  13740. name: "Back",
  13741. image: {
  13742. source: "./media/characters/dayza/back.svg",
  13743. extra: 1241 / 1170
  13744. }
  13745. },
  13746. },
  13747. [
  13748. {
  13749. name: "Normal",
  13750. height: math.unit(7 + 7 / 12, "feet"),
  13751. default: true
  13752. },
  13753. {
  13754. name: "Macro",
  13755. height: math.unit(155, "feet")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13761. {
  13762. front: {
  13763. height: math.unit(6 + 5 / 12, "feet"),
  13764. weight: math.unit(160, "lb"),
  13765. name: "Front",
  13766. image: {
  13767. source: "./media/characters/xanthos/front.svg",
  13768. extra: 1,
  13769. bottom: 0.04
  13770. }
  13771. },
  13772. back: {
  13773. height: math.unit(6 + 5 / 12, "feet"),
  13774. weight: math.unit(160, "lb"),
  13775. name: "Back",
  13776. image: {
  13777. source: "./media/characters/xanthos/back.svg",
  13778. extra: 1,
  13779. bottom: 0.03
  13780. }
  13781. },
  13782. hand: {
  13783. height: math.unit(0.928, "feet"),
  13784. name: "Hand",
  13785. image: {
  13786. source: "./media/characters/xanthos/hand.svg"
  13787. }
  13788. },
  13789. foot: {
  13790. height: math.unit(1.286, "feet"),
  13791. name: "Foot",
  13792. image: {
  13793. source: "./media/characters/xanthos/foot.svg"
  13794. }
  13795. },
  13796. },
  13797. [
  13798. {
  13799. name: "Normal",
  13800. height: math.unit(6 + 5 / 12, "feet"),
  13801. default: true
  13802. },
  13803. {
  13804. name: "Normal+",
  13805. height: math.unit(6, "meters")
  13806. },
  13807. {
  13808. name: "Macro",
  13809. height: math.unit(40, "feet")
  13810. },
  13811. {
  13812. name: "Macro+",
  13813. height: math.unit(200, "meters")
  13814. },
  13815. {
  13816. name: "Megamacro",
  13817. height: math.unit(20, "km")
  13818. },
  13819. {
  13820. name: "Megamacro+",
  13821. height: math.unit(100, "km")
  13822. },
  13823. {
  13824. name: "Gigamacro",
  13825. height: math.unit(200, "megameters")
  13826. },
  13827. {
  13828. name: "Gigamacro+",
  13829. height: math.unit(1.5, "gigameters")
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(6 + 3 / 12, "feet"),
  13838. weight: math.unit(215, "lb"),
  13839. name: "Front",
  13840. image: {
  13841. source: "./media/characters/grynn/front.svg",
  13842. extra: 4627 / 4209,
  13843. bottom: 0.047
  13844. }
  13845. },
  13846. },
  13847. [
  13848. {
  13849. name: "Micro",
  13850. height: math.unit(6, "inches")
  13851. },
  13852. {
  13853. name: "Normal",
  13854. height: math.unit(6 + 3 / 12, "feet"),
  13855. default: true
  13856. },
  13857. {
  13858. name: "Big",
  13859. height: math.unit(104, "feet")
  13860. },
  13861. {
  13862. name: "Macro",
  13863. height: math.unit(944, "feet")
  13864. },
  13865. {
  13866. name: "Macro+",
  13867. height: math.unit(9480, "feet")
  13868. },
  13869. {
  13870. name: "Megamacro",
  13871. height: math.unit(78752, "feet")
  13872. },
  13873. {
  13874. name: "Megamacro+",
  13875. height: math.unit(630128, "feet")
  13876. },
  13877. {
  13878. name: "Megamacro++",
  13879. height: math.unit(3150695, "feet")
  13880. },
  13881. ]
  13882. ))
  13883. characterMakers.push(() => makeCharacter(
  13884. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13885. {
  13886. front: {
  13887. height: math.unit(7 + 5 / 12, "feet"),
  13888. weight: math.unit(450, "lb"),
  13889. name: "Front",
  13890. image: {
  13891. source: "./media/characters/mocha-aura/front.svg",
  13892. extra: 1907 / 1817,
  13893. bottom: 0.04
  13894. }
  13895. },
  13896. back: {
  13897. height: math.unit(7 + 5 / 12, "feet"),
  13898. weight: math.unit(450, "lb"),
  13899. name: "Back",
  13900. image: {
  13901. source: "./media/characters/mocha-aura/back.svg",
  13902. extra: 1900 / 1825,
  13903. bottom: 0.045
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Nano",
  13910. height: math.unit(1, "nm")
  13911. },
  13912. {
  13913. name: "Megamicro",
  13914. height: math.unit(1, "mm")
  13915. },
  13916. {
  13917. name: "Micro",
  13918. height: math.unit(3, "inches")
  13919. },
  13920. {
  13921. name: "Normal",
  13922. height: math.unit(7 + 5 / 12, "feet"),
  13923. default: true
  13924. },
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(30, "feet")
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(3500, "feet")
  13932. },
  13933. {
  13934. name: "Teramacro",
  13935. height: math.unit(500000, "miles")
  13936. },
  13937. {
  13938. name: "Petamacro",
  13939. height: math.unit(50000000000000000, "parsecs")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(150, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/ilisha-devya/front.svg",
  13952. extra: 1053/1049,
  13953. bottom: 270/1323
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(6, "feet"),
  13958. weight: math.unit(150, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/ilisha-devya/back.svg",
  13962. extra: 1131/1128,
  13963. bottom: 39/1170
  13964. }
  13965. },
  13966. },
  13967. [
  13968. {
  13969. name: "Macro",
  13970. height: math.unit(500, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Megamacro",
  13975. height: math.unit(10, "miles")
  13976. },
  13977. {
  13978. name: "Gigamacro",
  13979. height: math.unit(100000, "miles")
  13980. },
  13981. {
  13982. name: "Examacro",
  13983. height: math.unit(1e9, "lightyears")
  13984. },
  13985. {
  13986. name: "Omniversal",
  13987. height: math.unit(1e33, "lightyears")
  13988. },
  13989. {
  13990. name: "Beyond Infinite",
  13991. height: math.unit(1e100, "lightyears")
  13992. },
  13993. ]
  13994. ))
  13995. characterMakers.push(() => makeCharacter(
  13996. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13997. {
  13998. Side: {
  13999. height: math.unit(6, "feet"),
  14000. weight: math.unit(150, "lb"),
  14001. name: "Side",
  14002. image: {
  14003. source: "./media/characters/mira/side.svg",
  14004. extra: 900 / 799,
  14005. bottom: 0.02
  14006. }
  14007. },
  14008. },
  14009. [
  14010. {
  14011. name: "Human Size",
  14012. height: math.unit(6, "feet")
  14013. },
  14014. {
  14015. name: "Macro",
  14016. height: math.unit(100, "feet"),
  14017. default: true
  14018. },
  14019. {
  14020. name: "Megamacro",
  14021. height: math.unit(10, "miles")
  14022. },
  14023. {
  14024. name: "Gigamacro",
  14025. height: math.unit(25000, "miles")
  14026. },
  14027. {
  14028. name: "Teramacro",
  14029. height: math.unit(300, "AU")
  14030. },
  14031. {
  14032. name: "Full Size",
  14033. height: math.unit(4.5e10, "lightyears")
  14034. },
  14035. ]
  14036. ))
  14037. characterMakers.push(() => makeCharacter(
  14038. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14039. {
  14040. front: {
  14041. height: math.unit(6, "feet"),
  14042. weight: math.unit(150, "lb"),
  14043. name: "Front",
  14044. image: {
  14045. source: "./media/characters/holly/front.svg",
  14046. extra: 639 / 606
  14047. }
  14048. },
  14049. back: {
  14050. height: math.unit(6, "feet"),
  14051. weight: math.unit(150, "lb"),
  14052. name: "Back",
  14053. image: {
  14054. source: "./media/characters/holly/back.svg",
  14055. extra: 623 / 598
  14056. }
  14057. },
  14058. frontWorking: {
  14059. height: math.unit(6, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Front (Working)",
  14062. image: {
  14063. source: "./media/characters/holly/front-working.svg",
  14064. extra: 607 / 577,
  14065. bottom: 0.048
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(12 + 3 / 12, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/porter/front.svg",
  14086. extra: 1,
  14087. bottom: 0.01
  14088. }
  14089. },
  14090. frontRobes: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Front (Robes)",
  14094. image: {
  14095. source: "./media/characters/porter/front-robes.svg",
  14096. extra: 1.01,
  14097. bottom: 0.01
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(11 + 9 / 12, "feet"),
  14105. default: true
  14106. },
  14107. ]
  14108. ))
  14109. characterMakers.push(() => makeCharacter(
  14110. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14111. {
  14112. legendary: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(150, "lb"),
  14115. name: "Legendary",
  14116. image: {
  14117. source: "./media/characters/lucy/legendary.svg",
  14118. extra: 1355 / 1100,
  14119. bottom: 0.045
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Legendary",
  14126. height: math.unit(86882 * 2, "miles"),
  14127. default: true
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(6, "feet"),
  14136. weight: math.unit(150, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/drusilla/front.svg",
  14140. extra: 678 / 635,
  14141. bottom: 0.03
  14142. }
  14143. },
  14144. back: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Back",
  14148. image: {
  14149. source: "./media/characters/drusilla/back.svg",
  14150. extra: 678 / 635,
  14151. bottom: 0.005
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Macro",
  14158. height: math.unit(100, "feet")
  14159. },
  14160. {
  14161. name: "Canon Height",
  14162. height: math.unit(2000, "feet"),
  14163. default: true
  14164. },
  14165. ]
  14166. ))
  14167. characterMakers.push(() => makeCharacter(
  14168. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14169. {
  14170. front: {
  14171. height: math.unit(6, "feet"),
  14172. weight: math.unit(180, "lb"),
  14173. name: "Front",
  14174. image: {
  14175. source: "./media/characters/renard-thatch/front.svg",
  14176. extra: 2411 / 2275,
  14177. bottom: 0.01
  14178. }
  14179. },
  14180. frontPosing: {
  14181. height: math.unit(6, "feet"),
  14182. weight: math.unit(180, "lb"),
  14183. name: "Front (Posing)",
  14184. image: {
  14185. source: "./media/characters/renard-thatch/front-posing.svg",
  14186. extra: 2381 / 2261,
  14187. bottom: 0.01
  14188. }
  14189. },
  14190. back: {
  14191. height: math.unit(6, "feet"),
  14192. weight: math.unit(180, "lb"),
  14193. name: "Back",
  14194. image: {
  14195. source: "./media/characters/renard-thatch/back.svg",
  14196. extra: 2428 / 2288
  14197. }
  14198. },
  14199. },
  14200. [
  14201. {
  14202. name: "Micro",
  14203. height: math.unit(3, "inches")
  14204. },
  14205. {
  14206. name: "Default",
  14207. height: math.unit(6, "feet"),
  14208. default: true
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(75, "feet")
  14213. },
  14214. ]
  14215. ))
  14216. characterMakers.push(() => makeCharacter(
  14217. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14218. {
  14219. front: {
  14220. height: math.unit(1450, "feet"),
  14221. weight: math.unit(1.21e6, "tons"),
  14222. name: "Front",
  14223. image: {
  14224. source: "./media/characters/sekvra/front.svg",
  14225. extra: 1193/1190,
  14226. bottom: 78/1271
  14227. }
  14228. },
  14229. side: {
  14230. height: math.unit(1450, "feet"),
  14231. weight: math.unit(1.21e6, "tons"),
  14232. name: "Side",
  14233. image: {
  14234. source: "./media/characters/sekvra/side.svg",
  14235. extra: 1193/1190,
  14236. bottom: 52/1245
  14237. }
  14238. },
  14239. back: {
  14240. height: math.unit(1450, "feet"),
  14241. weight: math.unit(1.21e6, "tons"),
  14242. name: "Back",
  14243. image: {
  14244. source: "./media/characters/sekvra/back.svg",
  14245. extra: 1219/1216,
  14246. bottom: 21/1240
  14247. }
  14248. },
  14249. frontClothed: {
  14250. height: math.unit(1450, "feet"),
  14251. weight: math.unit(1.21e6, "tons"),
  14252. name: "Front (Clothed)",
  14253. image: {
  14254. source: "./media/characters/sekvra/front-clothed.svg",
  14255. extra: 1192/1189,
  14256. bottom: 79/1271
  14257. }
  14258. },
  14259. },
  14260. [
  14261. {
  14262. name: "Macro",
  14263. height: math.unit(1450, "feet"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Megamacro",
  14268. height: math.unit(15000, "feet")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(6, "feet"),
  14277. weight: math.unit(150, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/carmine/front.svg",
  14281. extra: 1,
  14282. bottom: 0.035
  14283. }
  14284. },
  14285. frontArmor: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(150, "lb"),
  14288. name: "Front (Armor)",
  14289. image: {
  14290. source: "./media/characters/carmine/front-armor.svg",
  14291. extra: 1,
  14292. bottom: 0.035
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Large",
  14299. height: math.unit(1, "mile")
  14300. },
  14301. {
  14302. name: "Huge",
  14303. height: math.unit(40, "miles"),
  14304. default: true
  14305. },
  14306. {
  14307. name: "Colossal",
  14308. height: math.unit(2500, "miles")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(6, "feet"),
  14317. weight: math.unit(150, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/elyssia/front.svg",
  14321. extra: 2201 / 2035,
  14322. bottom: 0.05
  14323. }
  14324. },
  14325. frontClothed: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(150, "lb"),
  14328. name: "Front (Clothed)",
  14329. image: {
  14330. source: "./media/characters/elyssia/front-clothed.svg",
  14331. extra: 2201 / 2035,
  14332. bottom: 0.05
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(150, "lb"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/elyssia/back.svg",
  14341. extra: 2201 / 2035,
  14342. bottom: 0.013
  14343. }
  14344. },
  14345. },
  14346. [
  14347. {
  14348. name: "Smaller",
  14349. height: math.unit(150, "feet")
  14350. },
  14351. {
  14352. name: "Standard",
  14353. height: math.unit(1400, "feet"),
  14354. default: true
  14355. },
  14356. {
  14357. name: "Distracted",
  14358. height: math.unit(15000, "feet")
  14359. },
  14360. ]
  14361. ))
  14362. characterMakers.push(() => makeCharacter(
  14363. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14364. {
  14365. front: {
  14366. height: math.unit(7 + 4/12, "feet"),
  14367. weight: math.unit(690, "lb"),
  14368. name: "Front",
  14369. image: {
  14370. source: "./media/characters/geno-maxwell/front.svg",
  14371. extra: 984/856,
  14372. bottom: 87/1071
  14373. }
  14374. },
  14375. back: {
  14376. height: math.unit(7 + 4/12, "feet"),
  14377. weight: math.unit(690, "lb"),
  14378. name: "Back",
  14379. image: {
  14380. source: "./media/characters/geno-maxwell/back.svg",
  14381. extra: 981/854,
  14382. bottom: 57/1038
  14383. }
  14384. },
  14385. frontCostume: {
  14386. height: math.unit(7 + 4/12, "feet"),
  14387. weight: math.unit(690, "lb"),
  14388. name: "Front (Costume)",
  14389. image: {
  14390. source: "./media/characters/geno-maxwell/front-costume.svg",
  14391. extra: 984/856,
  14392. bottom: 87/1071
  14393. }
  14394. },
  14395. backcostume: {
  14396. height: math.unit(7 + 4/12, "feet"),
  14397. weight: math.unit(690, "lb"),
  14398. name: "Back (Costume)",
  14399. image: {
  14400. source: "./media/characters/geno-maxwell/back-costume.svg",
  14401. extra: 981/854,
  14402. bottom: 57/1038
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Micro",
  14409. height: math.unit(3, "inches")
  14410. },
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(7 + 4 / 12, "feet"),
  14414. default: true
  14415. },
  14416. {
  14417. name: "Macro",
  14418. height: math.unit(220, "feet")
  14419. },
  14420. {
  14421. name: "Megamacro",
  14422. height: math.unit(11, "miles")
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(7 + 4/12, "feet"),
  14431. weight: math.unit(750, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/regena-maxwell/front.svg",
  14435. extra: 984/856,
  14436. bottom: 87/1071
  14437. }
  14438. },
  14439. back: {
  14440. height: math.unit(7 + 4/12, "feet"),
  14441. weight: math.unit(750, "lb"),
  14442. name: "Back",
  14443. image: {
  14444. source: "./media/characters/regena-maxwell/back.svg",
  14445. extra: 981/854,
  14446. bottom: 57/1038
  14447. }
  14448. },
  14449. frontCostume: {
  14450. height: math.unit(7 + 4/12, "feet"),
  14451. weight: math.unit(750, "lb"),
  14452. name: "Front (Costume)",
  14453. image: {
  14454. source: "./media/characters/regena-maxwell/front-costume.svg",
  14455. extra: 984/856,
  14456. bottom: 87/1071
  14457. }
  14458. },
  14459. backcostume: {
  14460. height: math.unit(7 + 4/12, "feet"),
  14461. weight: math.unit(750, "lb"),
  14462. name: "Back (Costume)",
  14463. image: {
  14464. source: "./media/characters/regena-maxwell/back-costume.svg",
  14465. extra: 981/854,
  14466. bottom: 57/1038
  14467. }
  14468. },
  14469. },
  14470. [
  14471. {
  14472. name: "Normal",
  14473. height: math.unit(7 + 4 / 12, "feet"),
  14474. default: true
  14475. },
  14476. {
  14477. name: "Macro",
  14478. height: math.unit(220, "feet")
  14479. },
  14480. {
  14481. name: "Megamacro",
  14482. height: math.unit(11, "miles")
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(150, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14495. extra: 860 / 690,
  14496. bottom: 0.03
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Normal",
  14503. height: math.unit(1.7, "meters"),
  14504. default: true
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(150, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/quilly/front.svg",
  14517. extra: 890 / 776
  14518. }
  14519. },
  14520. },
  14521. [
  14522. {
  14523. name: "Gigamacro",
  14524. height: math.unit(404090, "miles"),
  14525. default: true
  14526. },
  14527. ]
  14528. ))
  14529. characterMakers.push(() => makeCharacter(
  14530. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14531. {
  14532. front: {
  14533. height: math.unit(7 + 8 / 12, "feet"),
  14534. weight: math.unit(350, "lb"),
  14535. name: "Front",
  14536. image: {
  14537. source: "./media/characters/tempest/front.svg",
  14538. extra: 1175 / 1086,
  14539. bottom: 0.02
  14540. }
  14541. },
  14542. },
  14543. [
  14544. {
  14545. name: "Normal",
  14546. height: math.unit(7 + 8 / 12, "feet"),
  14547. default: true
  14548. },
  14549. ]
  14550. ))
  14551. characterMakers.push(() => makeCharacter(
  14552. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14553. {
  14554. side: {
  14555. height: math.unit(4 + 5 / 12, "feet"),
  14556. weight: math.unit(80, "lb"),
  14557. name: "Side",
  14558. image: {
  14559. source: "./media/characters/rodger/side.svg",
  14560. extra: 1235 / 1118
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Micro",
  14567. height: math.unit(1, "inch")
  14568. },
  14569. {
  14570. name: "Normal",
  14571. height: math.unit(4 + 5 / 12, "feet"),
  14572. default: true
  14573. },
  14574. {
  14575. name: "Macro",
  14576. height: math.unit(120, "feet")
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(150, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/danyel/front.svg",
  14589. extra: 1185 / 1123,
  14590. bottom: 0.05
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Shrunken",
  14597. height: math.unit(0.5, "mm")
  14598. },
  14599. {
  14600. name: "Micro",
  14601. height: math.unit(1, "mm"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Upsized",
  14606. height: math.unit(5 + 5 / 12, "feet")
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(5 + 6 / 12, "feet"),
  14615. weight: math.unit(200, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/vivian-bijoux/front.svg",
  14619. extra: 1217/1209,
  14620. bottom: 76/1293
  14621. }
  14622. },
  14623. back: {
  14624. height: math.unit(5 + 6 / 12, "feet"),
  14625. weight: math.unit(200, "lb"),
  14626. name: "Back",
  14627. image: {
  14628. source: "./media/characters/vivian-bijoux/back.svg",
  14629. extra: 1214/1208,
  14630. bottom: 51/1265
  14631. }
  14632. },
  14633. dressed: {
  14634. height: math.unit(5 + 6 / 12, "feet"),
  14635. weight: math.unit(200, "lb"),
  14636. name: "Dressed",
  14637. image: {
  14638. source: "./media/characters/vivian-bijoux/dressed.svg",
  14639. extra: 1217/1209,
  14640. bottom: 76/1293
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(5 + 6 / 12, "feet"),
  14648. default: true
  14649. },
  14650. {
  14651. name: "Bad Dream",
  14652. height: math.unit(500, "feet")
  14653. },
  14654. {
  14655. name: "Nightmare",
  14656. height: math.unit(500, "miles")
  14657. },
  14658. ]
  14659. ))
  14660. characterMakers.push(() => makeCharacter(
  14661. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14662. {
  14663. front: {
  14664. height: math.unit(6 + 1 / 12, "feet"),
  14665. weight: math.unit(260, "lb"),
  14666. name: "Front",
  14667. image: {
  14668. source: "./media/characters/zeta/front.svg",
  14669. extra: 1968 / 1889,
  14670. bottom: 0.06
  14671. }
  14672. },
  14673. back: {
  14674. height: math.unit(6 + 1 / 12, "feet"),
  14675. weight: math.unit(260, "lb"),
  14676. name: "Back",
  14677. image: {
  14678. source: "./media/characters/zeta/back.svg",
  14679. extra: 1944 / 1858,
  14680. bottom: 0.03
  14681. }
  14682. },
  14683. hand: {
  14684. height: math.unit(1.112, "feet"),
  14685. name: "Hand",
  14686. image: {
  14687. source: "./media/characters/zeta/hand.svg"
  14688. }
  14689. },
  14690. foot: {
  14691. height: math.unit(1.48, "feet"),
  14692. name: "Foot",
  14693. image: {
  14694. source: "./media/characters/zeta/foot.svg"
  14695. }
  14696. },
  14697. },
  14698. [
  14699. {
  14700. name: "Micro",
  14701. height: math.unit(6, "inches")
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(6 + 1 / 12, "feet"),
  14706. default: true
  14707. },
  14708. {
  14709. name: "Macro",
  14710. height: math.unit(20, "feet")
  14711. },
  14712. ]
  14713. ))
  14714. characterMakers.push(() => makeCharacter(
  14715. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14716. {
  14717. front: {
  14718. height: math.unit(6, "feet"),
  14719. weight: math.unit(150, "lb"),
  14720. name: "Front",
  14721. image: {
  14722. source: "./media/characters/jamie-larsen/front.svg",
  14723. extra: 962 / 933,
  14724. bottom: 0.02
  14725. }
  14726. },
  14727. back: {
  14728. height: math.unit(6, "feet"),
  14729. weight: math.unit(150, "lb"),
  14730. name: "Back",
  14731. image: {
  14732. source: "./media/characters/jamie-larsen/back.svg",
  14733. extra: 997 / 946
  14734. }
  14735. },
  14736. },
  14737. [
  14738. {
  14739. name: "Macro",
  14740. height: math.unit(28 + 7 / 12, "feet"),
  14741. default: true
  14742. },
  14743. {
  14744. name: "Macro+",
  14745. height: math.unit(180, "feet")
  14746. },
  14747. {
  14748. name: "Megamacro",
  14749. height: math.unit(10, "miles")
  14750. },
  14751. {
  14752. name: "Gigamacro",
  14753. height: math.unit(200000, "miles")
  14754. },
  14755. ]
  14756. ))
  14757. characterMakers.push(() => makeCharacter(
  14758. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14759. {
  14760. front: {
  14761. height: math.unit(6, "feet"),
  14762. weight: math.unit(120, "lb"),
  14763. name: "Front",
  14764. image: {
  14765. source: "./media/characters/vance/front.svg",
  14766. extra: 1980 / 1890,
  14767. bottom: 0.09
  14768. }
  14769. },
  14770. back: {
  14771. height: math.unit(6, "feet"),
  14772. weight: math.unit(120, "lb"),
  14773. name: "Back",
  14774. image: {
  14775. source: "./media/characters/vance/back.svg",
  14776. extra: 2081 / 1994,
  14777. bottom: 0.014
  14778. }
  14779. },
  14780. hand: {
  14781. height: math.unit(0.88, "feet"),
  14782. name: "Hand",
  14783. image: {
  14784. source: "./media/characters/vance/hand.svg"
  14785. }
  14786. },
  14787. foot: {
  14788. height: math.unit(0.64, "feet"),
  14789. name: "Foot",
  14790. image: {
  14791. source: "./media/characters/vance/foot.svg"
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Small",
  14798. height: math.unit(90, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Macro",
  14803. height: math.unit(100, "meters")
  14804. },
  14805. {
  14806. name: "Megamacro",
  14807. height: math.unit(15, "miles")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(180, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/xochitl/front.svg",
  14820. extra: 2297 / 2261,
  14821. bottom: 0.065
  14822. }
  14823. },
  14824. back: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(180, "lb"),
  14827. name: "Back",
  14828. image: {
  14829. source: "./media/characters/xochitl/back.svg",
  14830. extra: 2386 / 2354,
  14831. bottom: 0.01
  14832. }
  14833. },
  14834. foot: {
  14835. height: math.unit(6 / 5 * 1.15, "feet"),
  14836. weight: math.unit(150, "lb"),
  14837. name: "Foot",
  14838. image: {
  14839. source: "./media/characters/xochitl/foot.svg"
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Macro",
  14846. height: math.unit(80, "feet")
  14847. },
  14848. {
  14849. name: "Macro+",
  14850. height: math.unit(400, "feet"),
  14851. default: true
  14852. },
  14853. {
  14854. name: "Gigamacro",
  14855. height: math.unit(80000, "miles")
  14856. },
  14857. {
  14858. name: "Gigamacro+",
  14859. height: math.unit(400000, "miles")
  14860. },
  14861. {
  14862. name: "Teramacro",
  14863. height: math.unit(300, "AU")
  14864. },
  14865. ]
  14866. ))
  14867. characterMakers.push(() => makeCharacter(
  14868. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14869. {
  14870. front: {
  14871. height: math.unit(6, "feet"),
  14872. weight: math.unit(150, "lb"),
  14873. name: "Front",
  14874. image: {
  14875. source: "./media/characters/vincent/front.svg",
  14876. extra: 1130 / 1080,
  14877. bottom: 0.055
  14878. }
  14879. },
  14880. beak: {
  14881. height: math.unit(6 * 0.1, "feet"),
  14882. name: "Beak",
  14883. image: {
  14884. source: "./media/characters/vincent/beak.svg"
  14885. }
  14886. },
  14887. hand: {
  14888. height: math.unit(6 * 0.85, "feet"),
  14889. weight: math.unit(150, "lb"),
  14890. name: "Hand",
  14891. image: {
  14892. source: "./media/characters/vincent/hand.svg"
  14893. }
  14894. },
  14895. foot: {
  14896. height: math.unit(6 * 0.19, "feet"),
  14897. weight: math.unit(150, "lb"),
  14898. name: "Foot",
  14899. image: {
  14900. source: "./media/characters/vincent/foot.svg"
  14901. }
  14902. },
  14903. },
  14904. [
  14905. {
  14906. name: "Base",
  14907. height: math.unit(6 + 5 / 12, "feet"),
  14908. default: true
  14909. },
  14910. {
  14911. name: "Macro",
  14912. height: math.unit(300, "feet")
  14913. },
  14914. {
  14915. name: "Megamacro",
  14916. height: math.unit(2, "miles")
  14917. },
  14918. {
  14919. name: "Gigamacro",
  14920. height: math.unit(1000, "miles")
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14926. {
  14927. front: {
  14928. height: math.unit(2, "meters"),
  14929. weight: math.unit(500, "kg"),
  14930. name: "Front",
  14931. image: {
  14932. source: "./media/characters/coatl/front.svg",
  14933. extra: 3948 / 3500,
  14934. bottom: 0.082
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Normal",
  14941. height: math.unit(4, "meters")
  14942. },
  14943. {
  14944. name: "Macro",
  14945. height: math.unit(100, "meters"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Macro+",
  14950. height: math.unit(300, "meters")
  14951. },
  14952. {
  14953. name: "Megamacro",
  14954. height: math.unit(3, "gigameters")
  14955. },
  14956. {
  14957. name: "Megamacro+",
  14958. height: math.unit(300, "terameters")
  14959. },
  14960. {
  14961. name: "Megamacro++",
  14962. height: math.unit(3, "lightyears")
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14968. {
  14969. front: {
  14970. height: math.unit(6, "feet"),
  14971. weight: math.unit(50, "kg"),
  14972. name: "front",
  14973. image: {
  14974. source: "./media/characters/shiroryu/front.svg",
  14975. extra: 1990 / 1935
  14976. }
  14977. },
  14978. },
  14979. [
  14980. {
  14981. name: "Mortal Mingling",
  14982. height: math.unit(3, "meters")
  14983. },
  14984. {
  14985. name: "Kaiju-ish",
  14986. height: math.unit(250, "meters")
  14987. },
  14988. {
  14989. name: "Somewhat Godly",
  14990. height: math.unit(400, "km"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Planetary",
  14995. height: math.unit(300, "megameters")
  14996. },
  14997. {
  14998. name: "Galaxy-dwarfing",
  14999. height: math.unit(450, "kiloparsecs")
  15000. },
  15001. {
  15002. name: "Universe Eater",
  15003. height: math.unit(150, "gigaparsecs")
  15004. },
  15005. {
  15006. name: "Almost Immeasurable",
  15007. height: math.unit(1.3e266, "yottaparsecs")
  15008. },
  15009. ]
  15010. ))
  15011. characterMakers.push(() => makeCharacter(
  15012. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15013. {
  15014. front: {
  15015. height: math.unit(6, "feet"),
  15016. weight: math.unit(150, "lb"),
  15017. name: "Front",
  15018. image: {
  15019. source: "./media/characters/umeko/front.svg",
  15020. extra: 1,
  15021. bottom: 0.019
  15022. }
  15023. },
  15024. frontArmored: {
  15025. height: math.unit(6, "feet"),
  15026. weight: math.unit(150, "lb"),
  15027. name: "Front (Armored)",
  15028. image: {
  15029. source: "./media/characters/umeko/front-armored.svg",
  15030. extra: 1,
  15031. bottom: 0.021
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Macro",
  15038. height: math.unit(220, "feet"),
  15039. default: true
  15040. },
  15041. {
  15042. name: "Guardian Dragon",
  15043. height: math.unit(50, "miles")
  15044. },
  15045. {
  15046. name: "Cosmic",
  15047. height: math.unit(800000, "miles")
  15048. },
  15049. ]
  15050. ))
  15051. characterMakers.push(() => makeCharacter(
  15052. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15053. {
  15054. front: {
  15055. height: math.unit(6, "feet"),
  15056. weight: math.unit(150, "lb"),
  15057. name: "Front",
  15058. image: {
  15059. source: "./media/characters/cassidy/front.svg",
  15060. extra: 810/808,
  15061. bottom: 41/851
  15062. }
  15063. },
  15064. },
  15065. [
  15066. {
  15067. name: "Canon Height",
  15068. height: math.unit(120, "feet"),
  15069. default: true
  15070. },
  15071. {
  15072. name: "Macro+",
  15073. height: math.unit(400, "feet")
  15074. },
  15075. {
  15076. name: "Macro++",
  15077. height: math.unit(4000, "feet")
  15078. },
  15079. {
  15080. name: "Megamacro",
  15081. height: math.unit(3, "miles")
  15082. },
  15083. ]
  15084. ))
  15085. characterMakers.push(() => makeCharacter(
  15086. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15087. {
  15088. front: {
  15089. height: math.unit(6, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Front",
  15092. image: {
  15093. source: "./media/characters/isaac/front.svg",
  15094. extra: 896 / 815,
  15095. bottom: 0.11
  15096. }
  15097. },
  15098. },
  15099. [
  15100. {
  15101. name: "Human Size",
  15102. height: math.unit(8, "feet"),
  15103. default: true
  15104. },
  15105. {
  15106. name: "Macro",
  15107. height: math.unit(400, "feet")
  15108. },
  15109. {
  15110. name: "Megamacro",
  15111. height: math.unit(50, "miles")
  15112. },
  15113. {
  15114. name: "Canon Height",
  15115. height: math.unit(200, "AU")
  15116. },
  15117. ]
  15118. ))
  15119. characterMakers.push(() => makeCharacter(
  15120. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15121. {
  15122. front: {
  15123. height: math.unit(6, "feet"),
  15124. weight: math.unit(72, "kg"),
  15125. name: "Front",
  15126. image: {
  15127. source: "./media/characters/sleekit/front.svg",
  15128. extra: 4693 / 4487,
  15129. bottom: 0.012
  15130. }
  15131. },
  15132. },
  15133. [
  15134. {
  15135. name: "Minimum Height",
  15136. height: math.unit(10, "meters")
  15137. },
  15138. {
  15139. name: "Smaller",
  15140. height: math.unit(25, "meters")
  15141. },
  15142. {
  15143. name: "Larger",
  15144. height: math.unit(38, "meters"),
  15145. default: true
  15146. },
  15147. {
  15148. name: "Maximum height",
  15149. height: math.unit(100, "meters")
  15150. },
  15151. ]
  15152. ))
  15153. characterMakers.push(() => makeCharacter(
  15154. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15155. {
  15156. front: {
  15157. height: math.unit(6, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Front",
  15160. image: {
  15161. source: "./media/characters/nillia/front.svg",
  15162. extra: 2195 / 2037,
  15163. bottom: 0.005
  15164. }
  15165. },
  15166. back: {
  15167. height: math.unit(6, "feet"),
  15168. weight: math.unit(150, "lb"),
  15169. name: "Back",
  15170. image: {
  15171. source: "./media/characters/nillia/back.svg",
  15172. extra: 2195 / 2037,
  15173. bottom: 0.005
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Canon Height",
  15180. height: math.unit(489, "feet"),
  15181. default: true
  15182. }
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(6, "feet"),
  15190. weight: math.unit(150, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/mesmyriza/front.svg",
  15194. extra: 2067 / 1784,
  15195. bottom: 0.035
  15196. }
  15197. },
  15198. foot: {
  15199. height: math.unit(6 / (250 / 35), "feet"),
  15200. name: "Foot",
  15201. image: {
  15202. source: "./media/characters/mesmyriza/foot.svg"
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Macro",
  15209. height: math.unit(457, "meters"),
  15210. default: true
  15211. },
  15212. {
  15213. name: "Megamacro",
  15214. height: math.unit(8, "megameters")
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15220. {
  15221. front: {
  15222. height: math.unit(6, "feet"),
  15223. weight: math.unit(250, "lb"),
  15224. name: "Front",
  15225. image: {
  15226. source: "./media/characters/saudade/front.svg",
  15227. extra: 1172 / 1139,
  15228. bottom: 0.035
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Micro",
  15235. height: math.unit(3, "inches")
  15236. },
  15237. {
  15238. name: "Normal",
  15239. height: math.unit(6, "feet"),
  15240. default: true
  15241. },
  15242. {
  15243. name: "Macro",
  15244. height: math.unit(50, "feet")
  15245. },
  15246. {
  15247. name: "Megamacro",
  15248. height: math.unit(2800, "feet")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(5 + 4 / 12, "feet"),
  15257. weight: math.unit(100, "lb"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/keireer/front.svg",
  15261. extra: 716 / 666,
  15262. bottom: 0.05
  15263. }
  15264. },
  15265. },
  15266. [
  15267. {
  15268. name: "Normal",
  15269. height: math.unit(5 + 4 / 12, "feet"),
  15270. default: true
  15271. },
  15272. ]
  15273. ))
  15274. characterMakers.push(() => makeCharacter(
  15275. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15276. {
  15277. front: {
  15278. height: math.unit(5.5, "feet"),
  15279. weight: math.unit(90, "kg"),
  15280. name: "Front",
  15281. image: {
  15282. source: "./media/characters/mirja/front.svg",
  15283. extra: 1452/1262,
  15284. bottom: 67/1519
  15285. }
  15286. },
  15287. frontDressed: {
  15288. height: math.unit(5.5, "feet"),
  15289. weight: math.unit(90, "lb"),
  15290. name: "Front (Dressed)",
  15291. image: {
  15292. source: "./media/characters/mirja/dressed.svg",
  15293. extra: 1452/1262,
  15294. bottom: 67/1519
  15295. }
  15296. },
  15297. back: {
  15298. height: math.unit(6, "feet"),
  15299. weight: math.unit(90, "lb"),
  15300. name: "Back",
  15301. image: {
  15302. source: "./media/characters/mirja/back.svg",
  15303. extra: 1892/1795,
  15304. bottom: 48/1940
  15305. }
  15306. },
  15307. maw: {
  15308. height: math.unit(1.312, "feet"),
  15309. name: "Maw",
  15310. image: {
  15311. source: "./media/characters/mirja/maw.svg"
  15312. }
  15313. },
  15314. paw: {
  15315. height: math.unit(1.15, "feet"),
  15316. name: "Paw",
  15317. image: {
  15318. source: "./media/characters/mirja/paw.svg"
  15319. }
  15320. },
  15321. },
  15322. [
  15323. {
  15324. name: "\"Incognito\"",
  15325. height: math.unit(3, "meters")
  15326. },
  15327. {
  15328. name: "Strolling Size",
  15329. height: math.unit(15, "km")
  15330. },
  15331. {
  15332. name: "Larger Strolling Size",
  15333. height: math.unit(400, "km")
  15334. },
  15335. {
  15336. name: "Preferred Size",
  15337. height: math.unit(5000, "km"),
  15338. default: true
  15339. },
  15340. {
  15341. name: "True Size",
  15342. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15343. },
  15344. ]
  15345. ))
  15346. characterMakers.push(() => makeCharacter(
  15347. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15348. {
  15349. front: {
  15350. height: math.unit(15, "feet"),
  15351. weight: math.unit(880, "kg"),
  15352. name: "Front",
  15353. image: {
  15354. source: "./media/characters/nightraver/front.svg",
  15355. extra: 2444 / 2160,
  15356. bottom: 0.027
  15357. }
  15358. },
  15359. back: {
  15360. height: math.unit(15, "feet"),
  15361. weight: math.unit(880, "kg"),
  15362. name: "Back",
  15363. image: {
  15364. source: "./media/characters/nightraver/back.svg",
  15365. extra: 2309 / 2180,
  15366. bottom: 0.005
  15367. }
  15368. },
  15369. sole: {
  15370. height: math.unit(2.878, "feet"),
  15371. name: "Sole",
  15372. image: {
  15373. source: "./media/characters/nightraver/sole.svg"
  15374. }
  15375. },
  15376. foot: {
  15377. height: math.unit(2.285, "feet"),
  15378. name: "Foot",
  15379. image: {
  15380. source: "./media/characters/nightraver/foot.svg"
  15381. }
  15382. },
  15383. maw: {
  15384. height: math.unit(2.67, "feet"),
  15385. name: "Maw",
  15386. image: {
  15387. source: "./media/characters/nightraver/maw.svg"
  15388. }
  15389. },
  15390. },
  15391. [
  15392. {
  15393. name: "Micro",
  15394. height: math.unit(1, "cm")
  15395. },
  15396. {
  15397. name: "Normal",
  15398. height: math.unit(15, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Macro",
  15403. height: math.unit(300, "feet")
  15404. },
  15405. {
  15406. name: "Megamacro",
  15407. height: math.unit(300, "miles")
  15408. },
  15409. {
  15410. name: "Gigamacro",
  15411. height: math.unit(10000, "miles")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15417. {
  15418. side: {
  15419. height: math.unit(2, "inches"),
  15420. weight: math.unit(5, "grams"),
  15421. name: "Side",
  15422. image: {
  15423. source: "./media/characters/arc/side.svg"
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Micro",
  15430. height: math.unit(2, "inches"),
  15431. default: true
  15432. },
  15433. ]
  15434. ))
  15435. characterMakers.push(() => makeCharacter(
  15436. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15437. {
  15438. front: {
  15439. height: math.unit(1.1938, "meters"),
  15440. weight: math.unit(54, "kg"),
  15441. name: "Front",
  15442. image: {
  15443. source: "./media/characters/nebula-shahar/front.svg",
  15444. extra: 1642 / 1436,
  15445. bottom: 0.06
  15446. }
  15447. },
  15448. },
  15449. [
  15450. {
  15451. name: "Megamicro",
  15452. height: math.unit(0.3, "mm")
  15453. },
  15454. {
  15455. name: "Micro",
  15456. height: math.unit(3, "cm")
  15457. },
  15458. {
  15459. name: "Normal",
  15460. height: math.unit(138, "cm"),
  15461. default: true
  15462. },
  15463. {
  15464. name: "Macro",
  15465. height: math.unit(30, "m")
  15466. },
  15467. ]
  15468. ))
  15469. characterMakers.push(() => makeCharacter(
  15470. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15471. {
  15472. front: {
  15473. height: math.unit(5.24, "feet"),
  15474. weight: math.unit(150, "lb"),
  15475. name: "Front",
  15476. image: {
  15477. source: "./media/characters/shayla/front.svg",
  15478. extra: 1512 / 1414,
  15479. bottom: 0.01
  15480. }
  15481. },
  15482. back: {
  15483. height: math.unit(5.24, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Back",
  15486. image: {
  15487. source: "./media/characters/shayla/back.svg",
  15488. extra: 1512 / 1414
  15489. }
  15490. },
  15491. hand: {
  15492. height: math.unit(0.7781496062992126, "feet"),
  15493. name: "Hand",
  15494. image: {
  15495. source: "./media/characters/shayla/hand.svg"
  15496. }
  15497. },
  15498. foot: {
  15499. height: math.unit(1.4206036745406823, "feet"),
  15500. name: "Foot",
  15501. image: {
  15502. source: "./media/characters/shayla/foot.svg"
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Micro",
  15509. height: math.unit(0.32, "feet")
  15510. },
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(5.24, "feet"),
  15514. default: true
  15515. },
  15516. {
  15517. name: "Macro",
  15518. height: math.unit(492.12, "feet")
  15519. },
  15520. {
  15521. name: "Megamacro",
  15522. height: math.unit(186.41, "miles")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(2.2, "m"),
  15531. weight: math.unit(120, "kg"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/pia-jr/front.svg",
  15535. extra: 1000 / 970,
  15536. bottom: 0.035
  15537. }
  15538. },
  15539. hand: {
  15540. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15541. name: "Hand",
  15542. image: {
  15543. source: "./media/characters/pia-jr/hand.svg"
  15544. }
  15545. },
  15546. paw: {
  15547. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15548. name: "Paw",
  15549. image: {
  15550. source: "./media/characters/pia-jr/paw.svg"
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Micro",
  15557. height: math.unit(1.2, "cm")
  15558. },
  15559. {
  15560. name: "Normal",
  15561. height: math.unit(2.2, "m"),
  15562. default: true
  15563. },
  15564. {
  15565. name: "Macro",
  15566. height: math.unit(180, "m")
  15567. },
  15568. {
  15569. name: "Megamacro",
  15570. height: math.unit(420, "km")
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(2, "m"),
  15579. weight: math.unit(115, "kg"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/pia-sr/front.svg",
  15583. extra: 760 / 730,
  15584. bottom: 0.015
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(2, "m"),
  15589. weight: math.unit(115, "kg"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/pia-sr/back.svg",
  15593. extra: 760 / 730,
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. hand: {
  15598. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15599. name: "Hand",
  15600. image: {
  15601. source: "./media/characters/pia-sr/hand.svg"
  15602. }
  15603. },
  15604. foot: {
  15605. height: math.unit(1.83, "feet"),
  15606. name: "Foot",
  15607. image: {
  15608. source: "./media/characters/pia-sr/foot.svg"
  15609. }
  15610. },
  15611. },
  15612. [
  15613. {
  15614. name: "Micro",
  15615. height: math.unit(88, "mm")
  15616. },
  15617. {
  15618. name: "Normal",
  15619. height: math.unit(2, "m"),
  15620. default: true
  15621. },
  15622. {
  15623. name: "Macro",
  15624. height: math.unit(200, "m")
  15625. },
  15626. {
  15627. name: "Megamacro",
  15628. height: math.unit(420, "km")
  15629. },
  15630. ]
  15631. ))
  15632. characterMakers.push(() => makeCharacter(
  15633. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15634. {
  15635. front: {
  15636. height: math.unit(8 + 2 / 12, "feet"),
  15637. weight: math.unit(300, "lb"),
  15638. name: "Front",
  15639. image: {
  15640. source: "./media/characters/kibibyte/front.svg",
  15641. extra: 2221 / 2098,
  15642. bottom: 0.04
  15643. }
  15644. },
  15645. },
  15646. [
  15647. {
  15648. name: "Normal",
  15649. height: math.unit(8 + 2 / 12, "feet"),
  15650. default: true
  15651. },
  15652. {
  15653. name: "Socialable Macro",
  15654. height: math.unit(50, "feet")
  15655. },
  15656. {
  15657. name: "Macro",
  15658. height: math.unit(300, "feet")
  15659. },
  15660. {
  15661. name: "Megamacro",
  15662. height: math.unit(500, "miles")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(6, "feet"),
  15671. weight: math.unit(150, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/felix/front.svg",
  15675. extra: 762 / 722,
  15676. bottom: 0.02
  15677. }
  15678. },
  15679. frontClothed: {
  15680. height: math.unit(6, "feet"),
  15681. weight: math.unit(150, "lb"),
  15682. name: "Front (Clothed)",
  15683. image: {
  15684. source: "./media/characters/felix/front-clothed.svg",
  15685. extra: 762 / 722,
  15686. bottom: 0.02
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(6 + 8 / 12, "feet"),
  15694. default: true
  15695. },
  15696. {
  15697. name: "Macro",
  15698. height: math.unit(2600, "feet")
  15699. },
  15700. {
  15701. name: "Megamacro",
  15702. height: math.unit(450, "miles")
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15708. {
  15709. front: {
  15710. height: math.unit(6 + 1 / 12, "feet"),
  15711. weight: math.unit(250, "lb"),
  15712. name: "Front",
  15713. image: {
  15714. source: "./media/characters/tobo/front.svg",
  15715. extra: 608 / 586,
  15716. bottom: 0.023
  15717. }
  15718. },
  15719. back: {
  15720. height: math.unit(6 + 1 / 12, "feet"),
  15721. weight: math.unit(250, "lb"),
  15722. name: "Back",
  15723. image: {
  15724. source: "./media/characters/tobo/back.svg",
  15725. extra: 608 / 586
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Nano",
  15732. height: math.unit(2, "nm")
  15733. },
  15734. {
  15735. name: "Megamicro",
  15736. height: math.unit(0.1, "mm")
  15737. },
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(1, "inch"),
  15741. default: true
  15742. },
  15743. {
  15744. name: "Human-sized",
  15745. height: math.unit(6 + 1 / 12, "feet")
  15746. },
  15747. {
  15748. name: "Macro",
  15749. height: math.unit(250, "feet")
  15750. },
  15751. {
  15752. name: "Megamacro",
  15753. height: math.unit(75, "miles")
  15754. },
  15755. {
  15756. name: "Texas-sized",
  15757. height: math.unit(750, "miles")
  15758. },
  15759. {
  15760. name: "Teramacro",
  15761. height: math.unit(50000, "miles")
  15762. },
  15763. ]
  15764. ))
  15765. characterMakers.push(() => makeCharacter(
  15766. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15767. {
  15768. front: {
  15769. height: math.unit(6, "feet"),
  15770. weight: math.unit(269, "lb"),
  15771. name: "Front",
  15772. image: {
  15773. source: "./media/characters/danny-kapowsky/front.svg",
  15774. extra: 766 / 736,
  15775. bottom: 0.044
  15776. }
  15777. },
  15778. back: {
  15779. height: math.unit(6, "feet"),
  15780. weight: math.unit(269, "lb"),
  15781. name: "Back",
  15782. image: {
  15783. source: "./media/characters/danny-kapowsky/back.svg",
  15784. extra: 797 / 760,
  15785. bottom: 0.025
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Macro",
  15792. height: math.unit(150, "feet"),
  15793. default: true
  15794. },
  15795. {
  15796. name: "Macro+",
  15797. height: math.unit(200, "feet")
  15798. },
  15799. {
  15800. name: "Macro++",
  15801. height: math.unit(300, "feet")
  15802. },
  15803. {
  15804. name: "Macro+++",
  15805. height: math.unit(400, "feet")
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15811. {
  15812. side: {
  15813. height: math.unit(6, "feet"),
  15814. weight: math.unit(170, "lb"),
  15815. name: "Side",
  15816. image: {
  15817. source: "./media/characters/finn/side.svg",
  15818. extra: 1953 / 1807,
  15819. bottom: 0.057
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Megamacro",
  15826. height: math.unit(14445, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15833. {
  15834. front: {
  15835. height: math.unit(5 + 6 / 12, "feet"),
  15836. weight: math.unit(125, "lb"),
  15837. name: "Front",
  15838. image: {
  15839. source: "./media/characters/roy/front.svg",
  15840. extra: 1,
  15841. bottom: 0.11
  15842. }
  15843. },
  15844. },
  15845. [
  15846. {
  15847. name: "Micro",
  15848. height: math.unit(3, "inches"),
  15849. default: true
  15850. },
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(5 + 6 / 12, "feet")
  15854. },
  15855. {
  15856. name: "Lesser Macro",
  15857. height: math.unit(60, "feet")
  15858. },
  15859. {
  15860. name: "Greater Macro",
  15861. height: math.unit(120, "feet")
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6, "feet"),
  15870. weight: math.unit(100, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/aevsivs/front.svg",
  15874. extra: 1,
  15875. bottom: 0.03
  15876. }
  15877. },
  15878. back: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(100, "lb"),
  15881. name: "Back",
  15882. image: {
  15883. source: "./media/characters/aevsivs/back.svg"
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Micro",
  15890. height: math.unit(2, "inches"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Normal",
  15895. height: math.unit(5, "feet")
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(5 + 7 / 12, "feet"),
  15904. weight: math.unit(159, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/hildegard/front.svg",
  15908. extra: 289 / 269,
  15909. bottom: 7.63 / 297.8
  15910. }
  15911. },
  15912. back: {
  15913. height: math.unit(5 + 7 / 12, "feet"),
  15914. weight: math.unit(159, "lb"),
  15915. name: "Back",
  15916. image: {
  15917. source: "./media/characters/hildegard/back.svg",
  15918. extra: 280 / 260,
  15919. bottom: 2.3 / 282
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(5 + 7 / 12, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15933. {
  15934. bernard: {
  15935. height: math.unit(2 + 7 / 12, "feet"),
  15936. weight: math.unit(66, "lb"),
  15937. name: "Bernard",
  15938. rename: true,
  15939. image: {
  15940. source: "./media/characters/bernard-wilder/bernard.svg",
  15941. extra: 192 / 128,
  15942. bottom: 0.05
  15943. }
  15944. },
  15945. wilder: {
  15946. height: math.unit(5 + 8 / 12, "feet"),
  15947. weight: math.unit(143, "lb"),
  15948. name: "Wilder",
  15949. rename: true,
  15950. image: {
  15951. source: "./media/characters/bernard-wilder/wilder.svg",
  15952. extra: 361 / 312,
  15953. bottom: 0.02
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(2 + 7 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15967. {
  15968. anthro: {
  15969. height: math.unit(6 + 1 / 12, "feet"),
  15970. weight: math.unit(155, "lb"),
  15971. name: "Anthro",
  15972. image: {
  15973. source: "./media/characters/hearth/anthro.svg",
  15974. extra: 1178/1136,
  15975. bottom: 28/1206
  15976. }
  15977. },
  15978. feral: {
  15979. height: math.unit(3.78, "feet"),
  15980. weight: math.unit(35, "kg"),
  15981. name: "Feral",
  15982. image: {
  15983. source: "./media/characters/hearth/feral.svg",
  15984. extra: 153 / 135,
  15985. bottom: 0.03
  15986. }
  15987. },
  15988. },
  15989. [
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(6 + 1 / 12, "feet"),
  15993. default: true
  15994. },
  15995. ]
  15996. ))
  15997. characterMakers.push(() => makeCharacter(
  15998. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15999. {
  16000. front: {
  16001. height: math.unit(6, "feet"),
  16002. weight: math.unit(182, "lb"),
  16003. name: "Front",
  16004. image: {
  16005. source: "./media/characters/ingrid/front.svg",
  16006. extra: 294 / 268,
  16007. bottom: 0.027
  16008. }
  16009. },
  16010. },
  16011. [
  16012. {
  16013. name: "Normal",
  16014. height: math.unit(6, "feet"),
  16015. default: true
  16016. },
  16017. ]
  16018. ))
  16019. characterMakers.push(() => makeCharacter(
  16020. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16021. {
  16022. eevee: {
  16023. height: math.unit(2 + 10 / 12, "feet"),
  16024. weight: math.unit(86, "lb"),
  16025. name: "Malgam",
  16026. image: {
  16027. source: "./media/characters/malgam/eevee.svg",
  16028. extra: 952/784,
  16029. bottom: 38/990
  16030. }
  16031. },
  16032. sylveon: {
  16033. height: math.unit(4, "feet"),
  16034. weight: math.unit(101, "lb"),
  16035. name: "Future Malgam",
  16036. rename: true,
  16037. image: {
  16038. source: "./media/characters/malgam/sylveon.svg",
  16039. extra: 371 / 325,
  16040. bottom: 0.015
  16041. }
  16042. },
  16043. gigantamax: {
  16044. height: math.unit(50, "feet"),
  16045. name: "Gigantamax Malgam",
  16046. rename: true,
  16047. image: {
  16048. source: "./media/characters/malgam/gigantamax.svg"
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Normal",
  16055. height: math.unit(2 + 10 / 12, "feet"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(5 + 11 / 12, "feet"),
  16065. weight: math.unit(188, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/fleur/front.svg",
  16069. extra: 309 / 283,
  16070. bottom: 0.007
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Normal",
  16077. height: math.unit(5 + 11 / 12, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(5 + 4 / 12, "feet"),
  16087. weight: math.unit(122, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/jude/front.svg",
  16091. extra: 288 / 273,
  16092. bottom: 0.03
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Normal",
  16099. height: math.unit(5 + 4 / 12, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(5 + 11 / 12, "feet"),
  16109. weight: math.unit(190, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/seara/front.svg",
  16113. extra: 1,
  16114. bottom: 0.05
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Normal",
  16121. height: math.unit(5 + 11 / 12, "feet"),
  16122. default: true
  16123. },
  16124. ]
  16125. ))
  16126. characterMakers.push(() => makeCharacter(
  16127. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16128. {
  16129. front: {
  16130. height: math.unit(16 + 5 / 12, "feet"),
  16131. weight: math.unit(524, "lb"),
  16132. name: "Front",
  16133. image: {
  16134. source: "./media/characters/caspian-lugia/front.svg",
  16135. extra: 1,
  16136. bottom: 0.04
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(16 + 5 / 12, "feet"),
  16144. default: true
  16145. },
  16146. ]
  16147. ))
  16148. characterMakers.push(() => makeCharacter(
  16149. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16150. {
  16151. front: {
  16152. height: math.unit(5 + 7 / 12, "feet"),
  16153. weight: math.unit(170, "lb"),
  16154. name: "Front",
  16155. image: {
  16156. source: "./media/characters/mika/front.svg",
  16157. extra: 1,
  16158. bottom: 0.016
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Normal",
  16165. height: math.unit(5 + 7 / 12, "feet"),
  16166. default: true
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6 + 2 / 12, "feet"),
  16175. weight: math.unit(268, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/sol/front.svg",
  16179. extra: 247 / 231,
  16180. bottom: 0.05
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Normal",
  16187. height: math.unit(6 + 2 / 12, "feet"),
  16188. default: true
  16189. },
  16190. ]
  16191. ))
  16192. characterMakers.push(() => makeCharacter(
  16193. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16194. {
  16195. buizel: {
  16196. height: math.unit(2 + 5 / 12, "feet"),
  16197. weight: math.unit(87, "lb"),
  16198. name: "Front",
  16199. image: {
  16200. source: "./media/characters/umiko/buizel.svg",
  16201. extra: 172 / 157,
  16202. bottom: 0.01
  16203. },
  16204. form: "buizel",
  16205. default: true
  16206. },
  16207. floatzel: {
  16208. height: math.unit(5 + 9 / 12, "feet"),
  16209. weight: math.unit(250, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/umiko/floatzel.svg",
  16213. extra: 1076/1006,
  16214. bottom: 15/1091
  16215. },
  16216. form: "floatzel",
  16217. default: true
  16218. },
  16219. },
  16220. [
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(2 + 5 / 12, "feet"),
  16224. form: "buizel",
  16225. default: true
  16226. },
  16227. {
  16228. name: "Normal",
  16229. height: math.unit(5 + 9 / 12, "feet"),
  16230. form: "floatzel",
  16231. default: true
  16232. },
  16233. ],
  16234. {
  16235. "buizel": {
  16236. name: "Buizel"
  16237. },
  16238. "floatzel": {
  16239. name: "Floatzel",
  16240. default: true
  16241. }
  16242. }
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6 + 2 / 12, "feet"),
  16249. weight: math.unit(146, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/iliac/front.svg",
  16253. extra: 389 / 365,
  16254. bottom: 0.035
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Normal",
  16261. height: math.unit(6 + 2 / 12, "feet"),
  16262. default: true
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(170, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/topaz/front.svg",
  16275. extra: 317 / 303,
  16276. bottom: 0.055
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(6, "feet"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(5 + 11 / 12, "feet"),
  16293. weight: math.unit(144, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/gabriel/front.svg",
  16297. extra: 285 / 262,
  16298. bottom: 0.004
  16299. }
  16300. },
  16301. },
  16302. [
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(5 + 11 / 12, "feet"),
  16306. default: true
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16312. {
  16313. side: {
  16314. height: math.unit(6 + 5 / 12, "feet"),
  16315. weight: math.unit(300, "lb"),
  16316. name: "Side",
  16317. image: {
  16318. source: "./media/characters/tempest-suicune/side.svg",
  16319. extra: 195 / 154,
  16320. bottom: 0.04
  16321. }
  16322. },
  16323. },
  16324. [
  16325. {
  16326. name: "Normal",
  16327. height: math.unit(6 + 5 / 12, "feet"),
  16328. default: true
  16329. },
  16330. ]
  16331. ))
  16332. characterMakers.push(() => makeCharacter(
  16333. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16334. {
  16335. front: {
  16336. height: math.unit(7 + 2 / 12, "feet"),
  16337. weight: math.unit(322, "lb"),
  16338. name: "Front",
  16339. image: {
  16340. source: "./media/characters/vulcan/front.svg",
  16341. extra: 154 / 147,
  16342. bottom: 0.04
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Normal",
  16349. height: math.unit(7 + 2 / 12, "feet"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(5 + 10 / 12, "feet"),
  16359. weight: math.unit(264, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/gault/front.svg",
  16363. extra: 161 / 140,
  16364. bottom: 0.028
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(5 + 10 / 12, "feet"),
  16372. default: true
  16373. },
  16374. ]
  16375. ))
  16376. characterMakers.push(() => makeCharacter(
  16377. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16378. {
  16379. front: {
  16380. height: math.unit(6, "feet"),
  16381. weight: math.unit(150, "lb"),
  16382. name: "Front",
  16383. image: {
  16384. source: "./media/characters/shard/front.svg",
  16385. extra: 273 / 238,
  16386. bottom: 0.02
  16387. }
  16388. },
  16389. },
  16390. [
  16391. {
  16392. name: "Normal",
  16393. height: math.unit(3 + 6 / 12, "feet"),
  16394. default: true
  16395. },
  16396. ]
  16397. ))
  16398. characterMakers.push(() => makeCharacter(
  16399. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16400. {
  16401. front: {
  16402. height: math.unit(5 + 11 / 12, "feet"),
  16403. weight: math.unit(146, "lb"),
  16404. name: "Front",
  16405. image: {
  16406. source: "./media/characters/ashe/front.svg",
  16407. extra: 400 / 373,
  16408. bottom: 0.01
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(5 + 11 / 12, "feet"),
  16416. default: true
  16417. },
  16418. ]
  16419. ))
  16420. characterMakers.push(() => makeCharacter(
  16421. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16422. {
  16423. front: {
  16424. height: math.unit(5 + 5 / 12, "feet"),
  16425. weight: math.unit(135, "lb"),
  16426. name: "Front",
  16427. image: {
  16428. source: "./media/characters/beatrix/front.svg",
  16429. extra: 392 / 379,
  16430. bottom: 0.01
  16431. }
  16432. },
  16433. },
  16434. [
  16435. {
  16436. name: "Normal",
  16437. height: math.unit(6, "feet"),
  16438. default: true
  16439. },
  16440. ]
  16441. ))
  16442. characterMakers.push(() => makeCharacter(
  16443. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16444. {
  16445. front: {
  16446. height: math.unit(6 + 2/12, "feet"),
  16447. weight: math.unit(135, "lb"),
  16448. name: "Front",
  16449. image: {
  16450. source: "./media/characters/ignatius/front.svg",
  16451. extra: 1380/1259,
  16452. bottom: 27/1407
  16453. }
  16454. },
  16455. },
  16456. [
  16457. {
  16458. name: "Normal",
  16459. height: math.unit(6 + 2/12, "feet"),
  16460. default: true
  16461. },
  16462. ]
  16463. ))
  16464. characterMakers.push(() => makeCharacter(
  16465. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16466. {
  16467. front: {
  16468. height: math.unit(6 + 2 / 12, "feet"),
  16469. weight: math.unit(138, "lb"),
  16470. name: "Front",
  16471. image: {
  16472. source: "./media/characters/mei-li/front.svg",
  16473. extra: 237 / 229,
  16474. bottom: 0.03
  16475. }
  16476. },
  16477. },
  16478. [
  16479. {
  16480. name: "Normal",
  16481. height: math.unit(6 + 2 / 12, "feet"),
  16482. default: true
  16483. },
  16484. ]
  16485. ))
  16486. characterMakers.push(() => makeCharacter(
  16487. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16488. {
  16489. front: {
  16490. height: math.unit(2 + 4 / 12, "feet"),
  16491. weight: math.unit(62, "lb"),
  16492. name: "Front",
  16493. image: {
  16494. source: "./media/characters/puru/front.svg",
  16495. extra: 206 / 149,
  16496. bottom: 0.06
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(2 + 4 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16510. {
  16511. anthro: {
  16512. height: math.unit(5 + 8/12, "feet"),
  16513. weight: math.unit(200, "lb"),
  16514. energyNeed: math.unit(2000, "kcal"),
  16515. name: "Anthro",
  16516. image: {
  16517. source: "./media/characters/kee/anthro.svg",
  16518. extra: 3251/3184,
  16519. bottom: 250/3501
  16520. }
  16521. },
  16522. taur: {
  16523. height: math.unit(11, "feet"),
  16524. weight: math.unit(500, "lb"),
  16525. energyNeed: math.unit(5000, "kcal"),
  16526. name: "Taur",
  16527. image: {
  16528. source: "./media/characters/kee/taur.svg",
  16529. extra: 1362/1320,
  16530. bottom: 83/1445
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(5 + 8/12, "feet"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Macro",
  16542. height: math.unit(35, "feet")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16548. {
  16549. anthro: {
  16550. height: math.unit(7, "feet"),
  16551. weight: math.unit(190, "lb"),
  16552. name: "Anthro",
  16553. image: {
  16554. source: "./media/characters/cobalt-dracha/anthro.svg",
  16555. extra: 231 / 225,
  16556. bottom: 0.04
  16557. }
  16558. },
  16559. feral: {
  16560. height: math.unit(9 + 7 / 12, "feet"),
  16561. weight: math.unit(294, "lb"),
  16562. name: "Feral",
  16563. image: {
  16564. source: "./media/characters/cobalt-dracha/feral.svg",
  16565. extra: 692 / 633,
  16566. bottom: 0.05
  16567. }
  16568. },
  16569. },
  16570. [
  16571. {
  16572. name: "Normal",
  16573. height: math.unit(7, "feet"),
  16574. default: true
  16575. },
  16576. ]
  16577. ))
  16578. characterMakers.push(() => makeCharacter(
  16579. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16580. {
  16581. fallen: {
  16582. height: math.unit(11 + 8 / 12, "feet"),
  16583. weight: math.unit(485, "lb"),
  16584. name: "Java (Fallen)",
  16585. rename: true,
  16586. image: {
  16587. source: "./media/characters/java/fallen.svg",
  16588. extra: 226 / 208,
  16589. bottom: 0.005
  16590. }
  16591. },
  16592. godkin: {
  16593. height: math.unit(10 + 6 / 12, "feet"),
  16594. weight: math.unit(328, "lb"),
  16595. name: "Java (Godkin)",
  16596. rename: true,
  16597. image: {
  16598. source: "./media/characters/java/godkin.svg",
  16599. extra: 1104/1068,
  16600. bottom: 36/1140
  16601. }
  16602. },
  16603. },
  16604. [
  16605. {
  16606. name: "Normal",
  16607. height: math.unit(11 + 8 / 12, "feet"),
  16608. default: true
  16609. },
  16610. ]
  16611. ))
  16612. characterMakers.push(() => makeCharacter(
  16613. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16614. {
  16615. front: {
  16616. height: math.unit(5 + 9 / 12, "feet"),
  16617. weight: math.unit(170, "lb"),
  16618. name: "Front",
  16619. image: {
  16620. source: "./media/characters/purna/front.svg",
  16621. extra: 239 / 229,
  16622. bottom: 0.01
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(5 + 9 / 12, "feet"),
  16630. default: true
  16631. },
  16632. ]
  16633. ))
  16634. characterMakers.push(() => makeCharacter(
  16635. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16636. {
  16637. front: {
  16638. height: math.unit(5 + 9 / 12, "feet"),
  16639. weight: math.unit(142, "lb"),
  16640. name: "Front",
  16641. image: {
  16642. source: "./media/characters/kuva/front.svg",
  16643. extra: 281 / 271,
  16644. bottom: 0.006
  16645. }
  16646. },
  16647. },
  16648. [
  16649. {
  16650. name: "Normal",
  16651. height: math.unit(5 + 9 / 12, "feet"),
  16652. default: true
  16653. },
  16654. ]
  16655. ))
  16656. characterMakers.push(() => makeCharacter(
  16657. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16658. {
  16659. anthro: {
  16660. height: math.unit(9 + 2 / 12, "feet"),
  16661. weight: math.unit(270, "lb"),
  16662. name: "Anthro",
  16663. image: {
  16664. source: "./media/characters/embra/anthro.svg",
  16665. extra: 200 / 187,
  16666. bottom: 0.02
  16667. }
  16668. },
  16669. feral: {
  16670. height: math.unit(18 + 8 / 12, "feet"),
  16671. weight: math.unit(576, "lb"),
  16672. name: "Feral",
  16673. image: {
  16674. source: "./media/characters/embra/feral.svg",
  16675. extra: 152 / 137,
  16676. bottom: 0.037
  16677. }
  16678. },
  16679. },
  16680. [
  16681. {
  16682. name: "Normal",
  16683. height: math.unit(9 + 2 / 12, "feet"),
  16684. default: true
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16690. {
  16691. anthro: {
  16692. height: math.unit(10 + 9 / 12, "feet"),
  16693. weight: math.unit(224, "lb"),
  16694. name: "Anthro",
  16695. image: {
  16696. source: "./media/characters/grottos/anthro.svg",
  16697. extra: 350 / 332,
  16698. bottom: 0.045
  16699. }
  16700. },
  16701. feral: {
  16702. height: math.unit(20 + 7 / 12, "feet"),
  16703. weight: math.unit(629, "lb"),
  16704. name: "Feral",
  16705. image: {
  16706. source: "./media/characters/grottos/feral.svg",
  16707. extra: 207 / 190,
  16708. bottom: 0.05
  16709. }
  16710. },
  16711. },
  16712. [
  16713. {
  16714. name: "Normal",
  16715. height: math.unit(10 + 9 / 12, "feet"),
  16716. default: true
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16722. {
  16723. anthro: {
  16724. height: math.unit(9 + 6 / 12, "feet"),
  16725. weight: math.unit(298, "lb"),
  16726. name: "Anthro",
  16727. image: {
  16728. source: "./media/characters/frifna/anthro.svg",
  16729. extra: 282 / 269,
  16730. bottom: 0.015
  16731. }
  16732. },
  16733. feral: {
  16734. height: math.unit(16 + 2 / 12, "feet"),
  16735. weight: math.unit(624, "lb"),
  16736. name: "Feral",
  16737. image: {
  16738. source: "./media/characters/frifna/feral.svg"
  16739. }
  16740. },
  16741. },
  16742. [
  16743. {
  16744. name: "Normal",
  16745. height: math.unit(9 + 6 / 12, "feet"),
  16746. default: true
  16747. },
  16748. ]
  16749. ))
  16750. characterMakers.push(() => makeCharacter(
  16751. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16752. {
  16753. front: {
  16754. height: math.unit(6 + 2 / 12, "feet"),
  16755. weight: math.unit(168, "lb"),
  16756. name: "Front",
  16757. image: {
  16758. source: "./media/characters/elise/front.svg",
  16759. extra: 276 / 271
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(6 + 2 / 12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(5 + 10 / 12, "feet"),
  16776. weight: math.unit(210, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/glade/front.svg",
  16780. extra: 258 / 247,
  16781. bottom: 0.008
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(5 + 10 / 12, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(5 + 10 / 12, "feet"),
  16798. weight: math.unit(129, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/rina/front.svg",
  16802. extra: 266 / 255,
  16803. bottom: 0.005
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(5 + 10 / 12, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 1 / 12, "feet"),
  16820. weight: math.unit(192, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/veronica/front.svg",
  16824. extra: 319 / 309,
  16825. bottom: 0.005
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6 + 1 / 12, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(9 + 3 / 12, "feet"),
  16842. weight: math.unit(1100, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/braxton/front.svg",
  16846. extra: 1057 / 984,
  16847. bottom: 0.05
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(9 + 3 / 12, "feet")
  16855. },
  16856. {
  16857. name: "Giant",
  16858. height: math.unit(300, "feet"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Macro",
  16863. height: math.unit(700, "feet")
  16864. },
  16865. {
  16866. name: "Megamacro",
  16867. height: math.unit(6000, "feet")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(6 + 7 / 12, "feet"),
  16876. weight: math.unit(150, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/blue-feyonics/front.svg",
  16880. extra: 1403 / 1306,
  16881. bottom: 0.047
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6 + 7 / 12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(1.8, "meters"),
  16898. weight: math.unit(60, "kg"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/maxwell/front.svg",
  16902. extra: 2060 / 1873
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Micro",
  16909. height: math.unit(1, "mm")
  16910. },
  16911. {
  16912. name: "Normal",
  16913. height: math.unit(1.8, "meter"),
  16914. default: true
  16915. },
  16916. {
  16917. name: "Macro",
  16918. height: math.unit(30, "meters")
  16919. },
  16920. {
  16921. name: "Megamacro",
  16922. height: math.unit(10, "km")
  16923. },
  16924. ]
  16925. ))
  16926. characterMakers.push(() => makeCharacter(
  16927. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16928. {
  16929. front: {
  16930. height: math.unit(6, "feet"),
  16931. weight: math.unit(150, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/jack/front.svg",
  16935. extra: 1754 / 1640,
  16936. bottom: 0.01
  16937. }
  16938. },
  16939. },
  16940. [
  16941. {
  16942. name: "Normal",
  16943. height: math.unit(80000, "feet"),
  16944. default: true
  16945. },
  16946. {
  16947. name: "Max size",
  16948. height: math.unit(10, "lightyears")
  16949. },
  16950. ]
  16951. ))
  16952. characterMakers.push(() => makeCharacter(
  16953. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16954. {
  16955. urban: {
  16956. height: math.unit(5, "feet"),
  16957. weight: math.unit(240, "lb"),
  16958. name: "Urban",
  16959. image: {
  16960. source: "./media/characters/cafat/urban.svg",
  16961. extra: 1223/1126,
  16962. bottom: 205/1428
  16963. }
  16964. },
  16965. summer: {
  16966. height: math.unit(5, "feet"),
  16967. weight: math.unit(240, "lb"),
  16968. name: "Summer",
  16969. image: {
  16970. source: "./media/characters/cafat/summer.svg",
  16971. extra: 1223/1126,
  16972. bottom: 205/1428
  16973. }
  16974. },
  16975. winter: {
  16976. height: math.unit(5, "feet"),
  16977. weight: math.unit(240, "lb"),
  16978. name: "Winter",
  16979. image: {
  16980. source: "./media/characters/cafat/winter.svg",
  16981. extra: 1223/1126,
  16982. bottom: 205/1428
  16983. }
  16984. },
  16985. lingerie: {
  16986. height: math.unit(5, "feet"),
  16987. weight: math.unit(240, "lb"),
  16988. name: "Lingerie",
  16989. image: {
  16990. source: "./media/characters/cafat/lingerie.svg",
  16991. extra: 1223/1126,
  16992. bottom: 205/1428
  16993. }
  16994. },
  16995. upright: {
  16996. height: math.unit(6.3, "feet"),
  16997. weight: math.unit(240, "lb"),
  16998. name: "Upright",
  16999. image: {
  17000. source: "./media/characters/cafat/upright.svg",
  17001. bottom: 0.01
  17002. }
  17003. },
  17004. uprightFull: {
  17005. height: math.unit(6.3, "feet"),
  17006. weight: math.unit(240, "lb"),
  17007. name: "Upright (Full)",
  17008. image: {
  17009. source: "./media/characters/cafat/upright-full.svg",
  17010. bottom: 0.01
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Small",
  17017. height: math.unit(5, "feet"),
  17018. default: true
  17019. },
  17020. {
  17021. name: "Large",
  17022. height: math.unit(13, "feet")
  17023. },
  17024. ]
  17025. ))
  17026. characterMakers.push(() => makeCharacter(
  17027. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17028. {
  17029. front: {
  17030. height: math.unit(6, "feet"),
  17031. weight: math.unit(150, "lb"),
  17032. name: "Front",
  17033. image: {
  17034. source: "./media/characters/verin-raharra/front.svg",
  17035. extra: 5019 / 4835,
  17036. bottom: 0.023
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(7 + 5 / 12, "feet"),
  17044. default: true
  17045. },
  17046. {
  17047. name: "Upsized",
  17048. height: math.unit(20, "feet")
  17049. },
  17050. ]
  17051. ))
  17052. characterMakers.push(() => makeCharacter(
  17053. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17054. {
  17055. front: {
  17056. height: math.unit(7, "feet"),
  17057. weight: math.unit(230, "lb"),
  17058. name: "Front",
  17059. image: {
  17060. source: "./media/characters/nakata/front.svg",
  17061. extra: 1.005,
  17062. bottom: 0.01
  17063. }
  17064. },
  17065. },
  17066. [
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(7, "feet"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Big",
  17074. height: math.unit(14, "feet")
  17075. },
  17076. {
  17077. name: "Macro",
  17078. height: math.unit(400, "feet")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(4.91, "feet"),
  17087. weight: math.unit(100, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/lily/front.svg",
  17091. extra: 1585 / 1415,
  17092. bottom: 0.02
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(4.91, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17106. {
  17107. laying: {
  17108. height: math.unit(4 + 4 / 12, "feet"),
  17109. weight: math.unit(600, "lb"),
  17110. name: "Laying",
  17111. image: {
  17112. source: "./media/characters/sheila/laying.svg",
  17113. extra: 1333 / 1265,
  17114. bottom: 0.16
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(4 + 4 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(6, "feet"),
  17131. weight: math.unit(190, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/sax/front.svg",
  17135. extra: 1187 / 973,
  17136. bottom: 0.042
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Micro",
  17143. height: math.unit(4, "inches"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6, "feet"),
  17153. weight: math.unit(150, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/pandora/front.svg",
  17157. extra: 2720 / 2556,
  17158. bottom: 0.015
  17159. }
  17160. },
  17161. back: {
  17162. height: math.unit(6, "feet"),
  17163. weight: math.unit(150, "lb"),
  17164. name: "Back",
  17165. image: {
  17166. source: "./media/characters/pandora/back.svg",
  17167. extra: 2720 / 2556,
  17168. bottom: 0.01
  17169. }
  17170. },
  17171. beans: {
  17172. height: math.unit(6 / 8, "feet"),
  17173. name: "Beans",
  17174. image: {
  17175. source: "./media/characters/pandora/beans.svg"
  17176. }
  17177. },
  17178. collar: {
  17179. height: math.unit(0.31, "feet"),
  17180. name: "Collar",
  17181. image: {
  17182. source: "./media/characters/pandora/collar.svg"
  17183. }
  17184. },
  17185. skirt: {
  17186. height: math.unit(6, "feet"),
  17187. weight: math.unit(150, "lb"),
  17188. name: "Skirt",
  17189. image: {
  17190. source: "./media/characters/pandora/skirt.svg",
  17191. extra: 1622 / 1525,
  17192. bottom: 0.015
  17193. }
  17194. },
  17195. hoodie: {
  17196. height: math.unit(6, "feet"),
  17197. weight: math.unit(150, "lb"),
  17198. name: "Hoodie",
  17199. image: {
  17200. source: "./media/characters/pandora/hoodie.svg",
  17201. extra: 1622 / 1525,
  17202. bottom: 0.015
  17203. }
  17204. },
  17205. casual: {
  17206. height: math.unit(6, "feet"),
  17207. weight: math.unit(150, "lb"),
  17208. name: "Casual",
  17209. image: {
  17210. source: "./media/characters/pandora/casual.svg",
  17211. extra: 1622 / 1525,
  17212. bottom: 0.015
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(6, "feet")
  17220. },
  17221. {
  17222. name: "Big Steppy",
  17223. height: math.unit(1, "km"),
  17224. default: true
  17225. },
  17226. {
  17227. name: "Galactic Steppy",
  17228. height: math.unit(2, "gigameters")
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17234. {
  17235. side: {
  17236. height: math.unit(10, "feet"),
  17237. weight: math.unit(800, "kg"),
  17238. name: "Side",
  17239. image: {
  17240. source: "./media/characters/venio-darcony/side.svg",
  17241. extra: 1373 / 1003,
  17242. bottom: 0.037
  17243. }
  17244. },
  17245. front: {
  17246. height: math.unit(19, "feet"),
  17247. weight: math.unit(800, "kg"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/venio-darcony/front.svg"
  17251. }
  17252. },
  17253. back: {
  17254. height: math.unit(19, "feet"),
  17255. weight: math.unit(800, "kg"),
  17256. name: "Back",
  17257. image: {
  17258. source: "./media/characters/venio-darcony/back.svg"
  17259. }
  17260. },
  17261. sideNsfw: {
  17262. height: math.unit(10, "feet"),
  17263. weight: math.unit(800, "kg"),
  17264. name: "Side (NSFW)",
  17265. image: {
  17266. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17267. extra: 1373 / 1003,
  17268. bottom: 0.037
  17269. }
  17270. },
  17271. frontNsfw: {
  17272. height: math.unit(19, "feet"),
  17273. weight: math.unit(800, "kg"),
  17274. name: "Front (NSFW)",
  17275. image: {
  17276. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17277. }
  17278. },
  17279. backNsfw: {
  17280. height: math.unit(19, "feet"),
  17281. weight: math.unit(800, "kg"),
  17282. name: "Back (NSFW)",
  17283. image: {
  17284. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17285. }
  17286. },
  17287. sideArmored: {
  17288. height: math.unit(10, "feet"),
  17289. weight: math.unit(800, "kg"),
  17290. name: "Side (Armored)",
  17291. image: {
  17292. source: "./media/characters/venio-darcony/side-armored.svg",
  17293. extra: 1373 / 1003,
  17294. bottom: 0.037
  17295. }
  17296. },
  17297. frontArmored: {
  17298. height: math.unit(19, "feet"),
  17299. weight: math.unit(900, "kg"),
  17300. name: "Front (Armored)",
  17301. image: {
  17302. source: "./media/characters/venio-darcony/front-armored.svg"
  17303. }
  17304. },
  17305. backArmored: {
  17306. height: math.unit(19, "feet"),
  17307. weight: math.unit(900, "kg"),
  17308. name: "Back (Armored)",
  17309. image: {
  17310. source: "./media/characters/venio-darcony/back-armored.svg"
  17311. }
  17312. },
  17313. sword: {
  17314. height: math.unit(10, "feet"),
  17315. weight: math.unit(50, "lb"),
  17316. name: "Sword",
  17317. image: {
  17318. source: "./media/characters/venio-darcony/sword.svg"
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(10, "feet")
  17326. },
  17327. {
  17328. name: "Macro",
  17329. height: math.unit(130, "feet"),
  17330. default: true
  17331. },
  17332. {
  17333. name: "Macro+",
  17334. height: math.unit(240, "feet")
  17335. },
  17336. ]
  17337. ))
  17338. characterMakers.push(() => makeCharacter(
  17339. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17340. {
  17341. front: {
  17342. height: math.unit(6, "feet"),
  17343. weight: math.unit(150, "lb"),
  17344. name: "Front",
  17345. image: {
  17346. source: "./media/characters/veski/front.svg",
  17347. extra: 1299 / 1225,
  17348. bottom: 0.04
  17349. }
  17350. },
  17351. back: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(150, "lb"),
  17354. name: "Back",
  17355. image: {
  17356. source: "./media/characters/veski/back.svg",
  17357. extra: 1299 / 1225,
  17358. bottom: 0.008
  17359. }
  17360. },
  17361. maw: {
  17362. height: math.unit(1.5 * 1.21, "feet"),
  17363. name: "Maw",
  17364. image: {
  17365. source: "./media/characters/veski/maw.svg"
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Macro",
  17372. height: math.unit(2, "km"),
  17373. default: true
  17374. },
  17375. ]
  17376. ))
  17377. characterMakers.push(() => makeCharacter(
  17378. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17379. {
  17380. front: {
  17381. height: math.unit(5 + 7 / 12, "feet"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/isabelle/front.svg",
  17385. extra: 2130 / 1976,
  17386. bottom: 0.05
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Supermicro",
  17393. height: math.unit(10, "micrometers")
  17394. },
  17395. {
  17396. name: "Micro",
  17397. height: math.unit(1, "inch")
  17398. },
  17399. {
  17400. name: "Tiny",
  17401. height: math.unit(5, "inches")
  17402. },
  17403. {
  17404. name: "Standard",
  17405. height: math.unit(5 + 7 / 12, "inches")
  17406. },
  17407. {
  17408. name: "Macro",
  17409. height: math.unit(80, "meters"),
  17410. default: true
  17411. },
  17412. {
  17413. name: "Megamacro",
  17414. height: math.unit(250, "meters")
  17415. },
  17416. {
  17417. name: "Gigamacro",
  17418. height: math.unit(5, "km")
  17419. },
  17420. {
  17421. name: "Cosmic",
  17422. height: math.unit(2.5e6, "miles")
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(6, "feet"),
  17431. weight: math.unit(150, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/hanzo/front.svg",
  17435. extra: 374 / 344,
  17436. bottom: 0.02
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(8, "feet"),
  17444. default: true
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17450. {
  17451. front: {
  17452. height: math.unit(7, "feet"),
  17453. weight: math.unit(130, "lb"),
  17454. name: "Front",
  17455. image: {
  17456. source: "./media/characters/anna/front.svg",
  17457. extra: 169 / 145,
  17458. bottom: 0.06
  17459. }
  17460. },
  17461. full: {
  17462. height: math.unit(4.96, "feet"),
  17463. weight: math.unit(220, "lb"),
  17464. name: "Full",
  17465. image: {
  17466. source: "./media/characters/anna/full.svg",
  17467. extra: 138 / 114,
  17468. bottom: 0.15
  17469. }
  17470. },
  17471. tongue: {
  17472. height: math.unit(2.53, "feet"),
  17473. name: "Tongue",
  17474. image: {
  17475. source: "./media/characters/anna/tongue.svg"
  17476. }
  17477. },
  17478. },
  17479. [
  17480. {
  17481. name: "Normal",
  17482. height: math.unit(7, "feet"),
  17483. default: true
  17484. },
  17485. ]
  17486. ))
  17487. characterMakers.push(() => makeCharacter(
  17488. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17489. {
  17490. front: {
  17491. height: math.unit(7, "feet"),
  17492. weight: math.unit(150, "lb"),
  17493. name: "Front",
  17494. image: {
  17495. source: "./media/characters/ian-corvid/front.svg",
  17496. extra: 150 / 142,
  17497. bottom: 0.02
  17498. }
  17499. },
  17500. back: {
  17501. height: math.unit(7, "feet"),
  17502. weight: math.unit(150, "lb"),
  17503. name: "Back",
  17504. image: {
  17505. source: "./media/characters/ian-corvid/back.svg",
  17506. extra: 150 / 143,
  17507. bottom: 0.01
  17508. }
  17509. },
  17510. stomping: {
  17511. height: math.unit(7, "feet"),
  17512. weight: math.unit(150, "lb"),
  17513. name: "Stomping",
  17514. image: {
  17515. source: "./media/characters/ian-corvid/stomping.svg",
  17516. extra: 76 / 72
  17517. }
  17518. },
  17519. sitting: {
  17520. height: math.unit(7 / 1.8, "feet"),
  17521. weight: math.unit(150, "lb"),
  17522. name: "Sitting",
  17523. image: {
  17524. source: "./media/characters/ian-corvid/sitting.svg",
  17525. extra: 1400 / 1269,
  17526. bottom: 0.15
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Tiny Microw",
  17533. height: math.unit(1, "inch")
  17534. },
  17535. {
  17536. name: "Microw",
  17537. height: math.unit(6, "inches")
  17538. },
  17539. {
  17540. name: "Crow",
  17541. height: math.unit(7 + 1 / 12, "feet"),
  17542. default: true
  17543. },
  17544. {
  17545. name: "Macrow",
  17546. height: math.unit(176, "feet")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(5 + 7 / 12, "feet"),
  17555. weight: math.unit(147, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/natalie-kellon/front.svg",
  17559. extra: 1214 / 1141,
  17560. bottom: 0.02
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Micro",
  17567. height: math.unit(1 / 16, "inch")
  17568. },
  17569. {
  17570. name: "Tiny",
  17571. height: math.unit(4, "inches")
  17572. },
  17573. {
  17574. name: "Normal",
  17575. height: math.unit(5 + 7 / 12, "feet"),
  17576. default: true
  17577. },
  17578. {
  17579. name: "Amazon",
  17580. height: math.unit(12, "feet")
  17581. },
  17582. {
  17583. name: "Giantess",
  17584. height: math.unit(160, "meters")
  17585. },
  17586. {
  17587. name: "Titaness",
  17588. height: math.unit(800, "meters")
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(6, "feet"),
  17597. weight: math.unit(150, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/alluria/front.svg",
  17601. extra: 806 / 738,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. side: {
  17606. height: math.unit(6, "feet"),
  17607. weight: math.unit(150, "lb"),
  17608. name: "Side",
  17609. image: {
  17610. source: "./media/characters/alluria/side.svg",
  17611. extra: 800 / 750,
  17612. }
  17613. },
  17614. back: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Back",
  17618. image: {
  17619. source: "./media/characters/alluria/back.svg",
  17620. extra: 806 / 738,
  17621. }
  17622. },
  17623. frontMaid: {
  17624. height: math.unit(6, "feet"),
  17625. weight: math.unit(150, "lb"),
  17626. name: "Front (Maid)",
  17627. image: {
  17628. source: "./media/characters/alluria/front-maid.svg",
  17629. extra: 806 / 738,
  17630. bottom: 0.01
  17631. }
  17632. },
  17633. sideMaid: {
  17634. height: math.unit(6, "feet"),
  17635. weight: math.unit(150, "lb"),
  17636. name: "Side (Maid)",
  17637. image: {
  17638. source: "./media/characters/alluria/side-maid.svg",
  17639. extra: 800 / 750,
  17640. bottom: 0.005
  17641. }
  17642. },
  17643. backMaid: {
  17644. height: math.unit(6, "feet"),
  17645. weight: math.unit(150, "lb"),
  17646. name: "Back (Maid)",
  17647. image: {
  17648. source: "./media/characters/alluria/back-maid.svg",
  17649. extra: 806 / 738,
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Micro",
  17656. height: math.unit(6, "inches"),
  17657. default: true
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17663. {
  17664. front: {
  17665. height: math.unit(6, "feet"),
  17666. weight: math.unit(150, "lb"),
  17667. name: "Front",
  17668. image: {
  17669. source: "./media/characters/kyle/front.svg",
  17670. extra: 1069 / 962,
  17671. bottom: 77.228 / 1727.45
  17672. }
  17673. },
  17674. },
  17675. [
  17676. {
  17677. name: "Macro",
  17678. height: math.unit(150, "feet"),
  17679. default: true
  17680. },
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(6, "feet"),
  17688. weight: math.unit(300, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/duncan/front.svg",
  17692. extra: 1650 / 1482,
  17693. bottom: 0.05
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Macro",
  17700. height: math.unit(100, "feet"),
  17701. default: true
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(5 + 4 / 12, "feet"),
  17710. weight: math.unit(220, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/memory/front.svg",
  17714. extra: 3641 / 3545,
  17715. bottom: 0.03
  17716. }
  17717. },
  17718. back: {
  17719. height: math.unit(5 + 4 / 12, "feet"),
  17720. weight: math.unit(220, "lb"),
  17721. name: "Back",
  17722. image: {
  17723. source: "./media/characters/memory/back.svg",
  17724. extra: 3641 / 3545,
  17725. bottom: 0.025
  17726. }
  17727. },
  17728. frontSkirt: {
  17729. height: math.unit(5 + 4 / 12, "feet"),
  17730. weight: math.unit(220, "lb"),
  17731. name: "Front (Skirt)",
  17732. image: {
  17733. source: "./media/characters/memory/front-skirt.svg",
  17734. extra: 3641 / 3545,
  17735. bottom: 0.03
  17736. }
  17737. },
  17738. frontDress: {
  17739. height: math.unit(5 + 4 / 12, "feet"),
  17740. weight: math.unit(220, "lb"),
  17741. name: "Front (Dress)",
  17742. image: {
  17743. source: "./media/characters/memory/front-dress.svg",
  17744. extra: 3641 / 3545,
  17745. bottom: 0.03
  17746. }
  17747. },
  17748. },
  17749. [
  17750. {
  17751. name: "Micro",
  17752. height: math.unit(6, "inches"),
  17753. default: true
  17754. },
  17755. {
  17756. name: "Normal",
  17757. height: math.unit(5 + 4 / 12, "feet")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(4 + 11 / 12, "feet"),
  17766. weight: math.unit(100, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/luno/front.svg",
  17770. extra: 1535 / 1487,
  17771. bottom: 0.03
  17772. }
  17773. },
  17774. },
  17775. [
  17776. {
  17777. name: "Micro",
  17778. height: math.unit(3, "inches")
  17779. },
  17780. {
  17781. name: "Normal",
  17782. height: math.unit(4 + 11 / 12, "feet"),
  17783. default: true
  17784. },
  17785. {
  17786. name: "Macro",
  17787. height: math.unit(300, "feet")
  17788. },
  17789. {
  17790. name: "Megamacro",
  17791. height: math.unit(700, "miles")
  17792. },
  17793. ]
  17794. ))
  17795. characterMakers.push(() => makeCharacter(
  17796. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17797. {
  17798. front: {
  17799. height: math.unit(6 + 2 / 12, "feet"),
  17800. weight: math.unit(170, "lb"),
  17801. name: "Front",
  17802. image: {
  17803. source: "./media/characters/jamesy/front.svg",
  17804. extra: 440 / 382,
  17805. bottom: 0.005
  17806. }
  17807. },
  17808. },
  17809. [
  17810. {
  17811. name: "Micro",
  17812. height: math.unit(3, "inches")
  17813. },
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(6 + 2 / 12, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Macro",
  17821. height: math.unit(300, "feet")
  17822. },
  17823. {
  17824. name: "Megamacro",
  17825. height: math.unit(700, "miles")
  17826. },
  17827. ]
  17828. ))
  17829. characterMakers.push(() => makeCharacter(
  17830. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17831. {
  17832. front: {
  17833. height: math.unit(6, "feet"),
  17834. weight: math.unit(160, "lb"),
  17835. name: "Front",
  17836. image: {
  17837. source: "./media/characters/mark/front.svg",
  17838. extra: 3300 / 3100,
  17839. bottom: 136.42 / 3440.47
  17840. }
  17841. },
  17842. },
  17843. [
  17844. {
  17845. name: "Macro",
  17846. height: math.unit(120, "meters")
  17847. },
  17848. {
  17849. name: "Bigger Macro",
  17850. height: math.unit(350, "meters")
  17851. },
  17852. {
  17853. name: "Megamacro",
  17854. height: math.unit(8, "km"),
  17855. default: true
  17856. },
  17857. {
  17858. name: "Continental",
  17859. height: math.unit(4550, "km")
  17860. },
  17861. {
  17862. name: "Planetary",
  17863. height: math.unit(65000, "km")
  17864. },
  17865. ]
  17866. ))
  17867. characterMakers.push(() => makeCharacter(
  17868. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17869. {
  17870. front: {
  17871. height: math.unit(6, "feet"),
  17872. weight: math.unit(400, "lb"),
  17873. name: "Front",
  17874. image: {
  17875. source: "./media/characters/mac/front.svg",
  17876. extra: 1048 / 987.7,
  17877. bottom: 60 / 1107.6,
  17878. }
  17879. },
  17880. },
  17881. [
  17882. {
  17883. name: "Macro",
  17884. height: math.unit(500, "feet"),
  17885. default: true
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(5 + 2 / 12, "feet"),
  17894. weight: math.unit(190, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/bari/front.svg",
  17898. extra: 3156 / 2880,
  17899. bottom: 0.03
  17900. }
  17901. },
  17902. back: {
  17903. height: math.unit(5 + 2 / 12, "feet"),
  17904. weight: math.unit(190, "lb"),
  17905. name: "Back",
  17906. image: {
  17907. source: "./media/characters/bari/back.svg",
  17908. extra: 3260 / 2834,
  17909. bottom: 0.025
  17910. }
  17911. },
  17912. frontPlush: {
  17913. height: math.unit(5 + 2 / 12, "feet"),
  17914. weight: math.unit(190, "lb"),
  17915. name: "Front (Plush)",
  17916. image: {
  17917. source: "./media/characters/bari/front-plush.svg",
  17918. extra: 1112 / 1061,
  17919. bottom: 0.002
  17920. }
  17921. },
  17922. },
  17923. [
  17924. {
  17925. name: "Micro",
  17926. height: math.unit(3, "inches")
  17927. },
  17928. {
  17929. name: "Normal",
  17930. height: math.unit(5 + 2 / 12, "feet"),
  17931. default: true
  17932. },
  17933. {
  17934. name: "Macro",
  17935. height: math.unit(20, "feet")
  17936. },
  17937. ]
  17938. ))
  17939. characterMakers.push(() => makeCharacter(
  17940. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17941. {
  17942. front: {
  17943. height: math.unit(6 + 1 / 12, "feet"),
  17944. weight: math.unit(275, "lb"),
  17945. name: "Front",
  17946. image: {
  17947. source: "./media/characters/hunter-misha-raven/front.svg"
  17948. }
  17949. },
  17950. },
  17951. [
  17952. {
  17953. name: "Mortal",
  17954. height: math.unit(6 + 1 / 12, "feet")
  17955. },
  17956. {
  17957. name: "Divine",
  17958. height: math.unit(1.12134e34, "parsecs"),
  17959. default: true
  17960. },
  17961. ]
  17962. ))
  17963. characterMakers.push(() => makeCharacter(
  17964. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17965. {
  17966. front: {
  17967. height: math.unit(6 + 3 / 12, "feet"),
  17968. weight: math.unit(220, "lb"),
  17969. name: "Front",
  17970. image: {
  17971. source: "./media/characters/max-calore/front.svg",
  17972. extra: 1700 / 1648,
  17973. bottom: 0.01
  17974. }
  17975. },
  17976. back: {
  17977. height: math.unit(6 + 3 / 12, "feet"),
  17978. weight: math.unit(220, "lb"),
  17979. name: "Back",
  17980. image: {
  17981. source: "./media/characters/max-calore/back.svg",
  17982. extra: 1700 / 1648,
  17983. bottom: 0.01
  17984. }
  17985. },
  17986. },
  17987. [
  17988. {
  17989. name: "Normal",
  17990. height: math.unit(6 + 3 / 12, "feet"),
  17991. default: true
  17992. },
  17993. ]
  17994. ))
  17995. characterMakers.push(() => makeCharacter(
  17996. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17997. {
  17998. side: {
  17999. height: math.unit(2 + 8 / 12, "feet"),
  18000. weight: math.unit(99, "lb"),
  18001. name: "Side",
  18002. image: {
  18003. source: "./media/characters/aspen/side.svg",
  18004. extra: 152 / 138,
  18005. bottom: 0.032
  18006. }
  18007. },
  18008. },
  18009. [
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(2 + 8 / 12, "feet"),
  18013. default: true
  18014. },
  18015. ]
  18016. ))
  18017. characterMakers.push(() => makeCharacter(
  18018. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18019. {
  18020. side: {
  18021. height: math.unit(3 + 2 / 12, "feet"),
  18022. weight: math.unit(224, "lb"),
  18023. name: "Side",
  18024. image: {
  18025. source: "./media/characters/sheila-feral-wolf/side.svg",
  18026. extra: 179 / 166,
  18027. bottom: 0.03
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(3 + 2 / 12, "feet"),
  18035. default: true
  18036. },
  18037. ]
  18038. ))
  18039. characterMakers.push(() => makeCharacter(
  18040. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18041. {
  18042. side: {
  18043. height: math.unit(1 + 9 / 12, "feet"),
  18044. weight: math.unit(38, "lb"),
  18045. name: "Side",
  18046. image: {
  18047. source: "./media/characters/michelle/side.svg",
  18048. extra: 147 / 136.7,
  18049. bottom: 0.03
  18050. }
  18051. },
  18052. },
  18053. [
  18054. {
  18055. name: "Normal",
  18056. height: math.unit(1 + 9 / 12, "feet"),
  18057. default: true
  18058. },
  18059. ]
  18060. ))
  18061. characterMakers.push(() => makeCharacter(
  18062. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18063. {
  18064. front: {
  18065. height: math.unit(1.54, "feet"),
  18066. weight: math.unit(50, "lb"),
  18067. name: "Front",
  18068. image: {
  18069. source: "./media/characters/nino/front.svg"
  18070. }
  18071. },
  18072. },
  18073. [
  18074. {
  18075. name: "Normal",
  18076. height: math.unit(1.54, "feet"),
  18077. default: true
  18078. },
  18079. ]
  18080. ))
  18081. characterMakers.push(() => makeCharacter(
  18082. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18083. {
  18084. front: {
  18085. height: math.unit(1.49, "feet"),
  18086. weight: math.unit(45, "lb"),
  18087. name: "Front",
  18088. image: {
  18089. source: "./media/characters/viola/front.svg"
  18090. }
  18091. },
  18092. },
  18093. [
  18094. {
  18095. name: "Normal",
  18096. height: math.unit(1.49, "feet"),
  18097. default: true
  18098. },
  18099. ]
  18100. ))
  18101. characterMakers.push(() => makeCharacter(
  18102. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18103. {
  18104. front: {
  18105. height: math.unit(6 + 5 / 12, "feet"),
  18106. weight: math.unit(580, "lb"),
  18107. name: "Front",
  18108. image: {
  18109. source: "./media/characters/atlas/front.svg",
  18110. extra: 298.5 / 290,
  18111. bottom: 0.015
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(6 + 5 / 12, "feet"),
  18119. default: true
  18120. },
  18121. ]
  18122. ))
  18123. characterMakers.push(() => makeCharacter(
  18124. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18125. {
  18126. side: {
  18127. height: math.unit(15.6, "inches"),
  18128. weight: math.unit(10, "lb"),
  18129. name: "Side",
  18130. image: {
  18131. source: "./media/characters/davy/side.svg",
  18132. extra: 200 / 170,
  18133. bottom: 0.01
  18134. }
  18135. },
  18136. },
  18137. [
  18138. {
  18139. name: "Normal",
  18140. height: math.unit(15.6, "inches"),
  18141. default: true
  18142. },
  18143. ]
  18144. ))
  18145. characterMakers.push(() => makeCharacter(
  18146. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18147. {
  18148. side: {
  18149. height: math.unit(4 + 8 / 12, "feet"),
  18150. weight: math.unit(166, "lb"),
  18151. name: "Side",
  18152. image: {
  18153. source: "./media/characters/fiona/side.svg",
  18154. extra: 232 / 220,
  18155. bottom: 0.03
  18156. }
  18157. },
  18158. },
  18159. [
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(4 + 8 / 12, "feet"),
  18163. default: true
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18169. {
  18170. front: {
  18171. height: math.unit(26, "inches"),
  18172. weight: math.unit(35, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/lyla/front.svg",
  18176. bottom: 0.1
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(3, "feet"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18190. {
  18191. side: {
  18192. height: math.unit(1.8, "feet"),
  18193. weight: math.unit(44, "lb"),
  18194. name: "Side",
  18195. image: {
  18196. source: "./media/characters/perseus/side.svg",
  18197. bottom: 0.21
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(1.8, "feet"),
  18205. default: true
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18211. {
  18212. side: {
  18213. height: math.unit(4 + 2 / 12, "feet"),
  18214. weight: math.unit(20, "lb"),
  18215. name: "Side",
  18216. image: {
  18217. source: "./media/characters/remus/side.svg"
  18218. }
  18219. },
  18220. },
  18221. [
  18222. {
  18223. name: "Normal",
  18224. height: math.unit(4 + 2 / 12, "feet"),
  18225. default: true
  18226. },
  18227. ]
  18228. ))
  18229. characterMakers.push(() => makeCharacter(
  18230. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18231. {
  18232. front: {
  18233. height: math.unit(4 + 11 / 12, "feet"),
  18234. weight: math.unit(114, "lb"),
  18235. name: "Front",
  18236. image: {
  18237. source: "./media/characters/raf/front.svg",
  18238. extra: 1504/1339,
  18239. bottom: 26/1530
  18240. }
  18241. },
  18242. side: {
  18243. height: math.unit(4 + 11 / 12, "feet"),
  18244. weight: math.unit(114, "lb"),
  18245. name: "Side",
  18246. image: {
  18247. source: "./media/characters/raf/side.svg",
  18248. extra: 1466/1316,
  18249. bottom: 29/1495
  18250. }
  18251. },
  18252. paw: {
  18253. height: math.unit(1.45, "feet"),
  18254. name: "Paw",
  18255. image: {
  18256. source: "./media/characters/raf/paw.svg"
  18257. },
  18258. extraAttributes: {
  18259. "toeSize": {
  18260. name: "Toe Size",
  18261. power: 2,
  18262. type: "area",
  18263. base: math.unit(0.004, "m^2")
  18264. },
  18265. "padSize": {
  18266. name: "Pad Size",
  18267. power: 2,
  18268. type: "area",
  18269. base: math.unit(0.04, "m^2")
  18270. },
  18271. "footSize": {
  18272. name: "Foot Size",
  18273. power: 2,
  18274. type: "area",
  18275. base: math.unit(0.08, "m^2")
  18276. },
  18277. }
  18278. },
  18279. },
  18280. [
  18281. {
  18282. name: "Micro",
  18283. height: math.unit(2, "inches")
  18284. },
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(4 + 11 / 12, "feet"),
  18288. default: true
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(70, "feet")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(1.5, "meters"),
  18301. weight: math.unit(68, "kg"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/liam-einarr/front.svg",
  18305. extra: 2822 / 2666
  18306. }
  18307. },
  18308. back: {
  18309. height: math.unit(1.5, "meters"),
  18310. weight: math.unit(68, "kg"),
  18311. name: "Back",
  18312. image: {
  18313. source: "./media/characters/liam-einarr/back.svg",
  18314. extra: 2822 / 2666,
  18315. bottom: 0.015
  18316. }
  18317. },
  18318. },
  18319. [
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(1.5, "meters"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Macro",
  18327. height: math.unit(150, "meters")
  18328. },
  18329. {
  18330. name: "Megamacro",
  18331. height: math.unit(35, "km")
  18332. },
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(6, "feet"),
  18340. weight: math.unit(75, "kg"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/linda/front.svg",
  18344. extra: 930 / 874,
  18345. bottom: 0.004
  18346. }
  18347. },
  18348. },
  18349. [
  18350. {
  18351. name: "Normal",
  18352. height: math.unit(6, "feet"),
  18353. default: true
  18354. },
  18355. ]
  18356. ))
  18357. characterMakers.push(() => makeCharacter(
  18358. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18359. {
  18360. front: {
  18361. height: math.unit(6 + 8 / 12, "feet"),
  18362. weight: math.unit(220, "lb"),
  18363. name: "Front",
  18364. image: {
  18365. source: "./media/characters/caylex/front.svg",
  18366. extra: 821 / 772,
  18367. bottom: 0.07
  18368. }
  18369. },
  18370. back: {
  18371. height: math.unit(6 + 8 / 12, "feet"),
  18372. weight: math.unit(220, "lb"),
  18373. name: "Back",
  18374. image: {
  18375. source: "./media/characters/caylex/back.svg",
  18376. extra: 821 / 772,
  18377. bottom: 0.022
  18378. }
  18379. },
  18380. hand: {
  18381. height: math.unit(1.25, "feet"),
  18382. name: "Hand",
  18383. image: {
  18384. source: "./media/characters/caylex/hand.svg"
  18385. }
  18386. },
  18387. foot: {
  18388. height: math.unit(1.6, "feet"),
  18389. name: "Foot",
  18390. image: {
  18391. source: "./media/characters/caylex/foot.svg"
  18392. }
  18393. },
  18394. armored: {
  18395. height: math.unit(6 + 8 / 12, "feet"),
  18396. weight: math.unit(250, "lb"),
  18397. name: "Armored",
  18398. image: {
  18399. source: "./media/characters/caylex/armored.svg",
  18400. extra: 1420 / 1310,
  18401. bottom: 0.045
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(6 + 8 / 12, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Normal+",
  18413. height: math.unit(12, "feet")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(7 + 6 / 12, "feet"),
  18422. weight: math.unit(288, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/alana/front.svg",
  18426. extra: 679 / 653,
  18427. bottom: 22.5 / 701
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(7 + 6 / 12, "feet")
  18435. },
  18436. {
  18437. name: "Large",
  18438. height: math.unit(50, "feet")
  18439. },
  18440. {
  18441. name: "Macro",
  18442. height: math.unit(100, "feet"),
  18443. default: true
  18444. },
  18445. {
  18446. name: "Macro+",
  18447. height: math.unit(200, "feet")
  18448. },
  18449. ]
  18450. ))
  18451. characterMakers.push(() => makeCharacter(
  18452. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18453. {
  18454. front: {
  18455. height: math.unit(6 + 1 / 12, "feet"),
  18456. weight: math.unit(210, "lb"),
  18457. name: "Front",
  18458. image: {
  18459. source: "./media/characters/hasani/front.svg",
  18460. extra: 244 / 232,
  18461. bottom: 0.01
  18462. }
  18463. },
  18464. back: {
  18465. height: math.unit(6 + 1 / 12, "feet"),
  18466. weight: math.unit(210, "lb"),
  18467. name: "Back",
  18468. image: {
  18469. source: "./media/characters/hasani/back.svg",
  18470. extra: 244 / 232,
  18471. bottom: 0.01
  18472. }
  18473. },
  18474. },
  18475. [
  18476. {
  18477. name: "Normal",
  18478. height: math.unit(6 + 1 / 12, "feet")
  18479. },
  18480. {
  18481. name: "Macro",
  18482. height: math.unit(175, "feet"),
  18483. default: true
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(1.82, "meters"),
  18492. weight: math.unit(140, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/nita/front.svg",
  18496. extra: 2473 / 2363,
  18497. bottom: 0.01
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(1.82, "m")
  18505. },
  18506. {
  18507. name: "Macro",
  18508. height: math.unit(300, "m")
  18509. },
  18510. {
  18511. name: "Mistake Canon",
  18512. height: math.unit(0.5, "miles"),
  18513. default: true
  18514. },
  18515. {
  18516. name: "Big Mistake",
  18517. height: math.unit(13, "miles")
  18518. },
  18519. {
  18520. name: "Playing God",
  18521. height: math.unit(2450, "miles")
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(4, "feet"),
  18530. weight: math.unit(120, "lb"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/shiriko/front.svg",
  18534. extra: 970/934,
  18535. bottom: 5/975
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(4, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(6, "feet"),
  18552. name: "front",
  18553. image: {
  18554. source: "./media/characters/deja/front.svg",
  18555. extra: 926 / 840,
  18556. bottom: 0.07
  18557. }
  18558. },
  18559. },
  18560. [
  18561. {
  18562. name: "Planck Length",
  18563. height: math.unit(1.6e-35, "meters")
  18564. },
  18565. {
  18566. name: "Normal",
  18567. height: math.unit(30.48, "meters"),
  18568. default: true
  18569. },
  18570. {
  18571. name: "Universal",
  18572. height: math.unit(8.8e26, "meters")
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18578. {
  18579. side: {
  18580. height: math.unit(8, "feet"),
  18581. weight: math.unit(6300, "lb"),
  18582. name: "Side",
  18583. image: {
  18584. source: "./media/characters/anima/side.svg",
  18585. bottom: 0.035
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(8, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18599. {
  18600. front: {
  18601. height: math.unit(8, "feet"),
  18602. weight: math.unit(350, "lb"),
  18603. name: "Front",
  18604. image: {
  18605. source: "./media/characters/bianca/front.svg",
  18606. extra: 234 / 225,
  18607. bottom: 0.03
  18608. }
  18609. },
  18610. },
  18611. [
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(8, "feet"),
  18615. default: true
  18616. },
  18617. ]
  18618. ))
  18619. characterMakers.push(() => makeCharacter(
  18620. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18621. {
  18622. front: {
  18623. height: math.unit(11 + 5/12, "feet"),
  18624. weight: math.unit(1200, "lb"),
  18625. name: "Front",
  18626. image: {
  18627. source: "./media/characters/adinia/front.svg",
  18628. extra: 1767/1641,
  18629. bottom: 44/1811
  18630. },
  18631. extraAttributes: {
  18632. "energyIntake": {
  18633. name: "Energy Intake",
  18634. power: 3,
  18635. type: "energy",
  18636. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18637. },
  18638. }
  18639. },
  18640. back: {
  18641. height: math.unit(11 + 5/12, "feet"),
  18642. weight: math.unit(1200, "lb"),
  18643. name: "Back",
  18644. image: {
  18645. source: "./media/characters/adinia/back.svg",
  18646. extra: 1834/1684,
  18647. bottom: 14/1848
  18648. },
  18649. extraAttributes: {
  18650. "energyIntake": {
  18651. name: "Energy Intake",
  18652. power: 3,
  18653. type: "energy",
  18654. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18655. },
  18656. }
  18657. },
  18658. maw: {
  18659. height: math.unit(3.79, "feet"),
  18660. name: "Maw",
  18661. image: {
  18662. source: "./media/characters/adinia/maw.svg"
  18663. }
  18664. },
  18665. rump: {
  18666. height: math.unit(4.6, "feet"),
  18667. name: "Rump",
  18668. image: {
  18669. source: "./media/characters/adinia/rump.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(11 + 5 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(3, "meters"),
  18686. weight: math.unit(200, "kg"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/lykasa/front.svg",
  18690. extra: 1076 / 976,
  18691. bottom: 0.06
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Normal",
  18698. height: math.unit(3, "meters")
  18699. },
  18700. {
  18701. name: "Kaiju",
  18702. height: math.unit(120, "meters"),
  18703. default: true
  18704. },
  18705. {
  18706. name: "Mega Kaiju",
  18707. height: math.unit(240, "km")
  18708. },
  18709. {
  18710. name: "Giga Kaiju",
  18711. height: math.unit(400, "megameters")
  18712. },
  18713. {
  18714. name: "Tera Kaiju",
  18715. height: math.unit(800, "gigameters")
  18716. },
  18717. {
  18718. name: "Kaiju Dragon Goddess",
  18719. height: math.unit(26, "zettaparsecs")
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18725. {
  18726. side: {
  18727. height: math.unit(283 / 124 * 6, "feet"),
  18728. weight: math.unit(35000, "lb"),
  18729. name: "Side",
  18730. image: {
  18731. source: "./media/characters/malfaren/side.svg",
  18732. extra: 1310/529,
  18733. bottom: 24/1334
  18734. }
  18735. },
  18736. front: {
  18737. height: math.unit(22.36, "feet"),
  18738. weight: math.unit(35000, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/malfaren/front.svg",
  18742. extra: 1237/1115,
  18743. bottom: 32/1269
  18744. }
  18745. },
  18746. maw: {
  18747. height: math.unit(6.9, "feet"),
  18748. name: "Maw",
  18749. image: {
  18750. source: "./media/characters/malfaren/maw.svg"
  18751. }
  18752. },
  18753. dick: {
  18754. height: math.unit(6.19, "feet"),
  18755. name: "Dick",
  18756. image: {
  18757. source: "./media/characters/malfaren/dick.svg"
  18758. }
  18759. },
  18760. eye: {
  18761. height: math.unit(0.69, "feet"),
  18762. name: "Eye",
  18763. image: {
  18764. source: "./media/characters/malfaren/eye.svg"
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Big",
  18771. height: math.unit(283 / 162 * 6, "feet"),
  18772. },
  18773. {
  18774. name: "Bigger",
  18775. height: math.unit(283 / 124 * 6, "feet")
  18776. },
  18777. {
  18778. name: "Massive",
  18779. height: math.unit(283 / 92 * 6, "feet"),
  18780. default: true
  18781. },
  18782. {
  18783. name: "👀💦",
  18784. height: math.unit(283 / 73 * 6, "feet"),
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(1.7, "m"),
  18793. weight: math.unit(70, "kg"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/kernel/front.svg",
  18797. extra: 222 / 210,
  18798. bottom: 0.007
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Nano",
  18805. height: math.unit(17, "micrometers")
  18806. },
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(1.7, "mm")
  18810. },
  18811. {
  18812. name: "Small",
  18813. height: math.unit(1.7, "cm")
  18814. },
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(1.7, "m"),
  18818. default: true
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18824. {
  18825. front: {
  18826. height: math.unit(1.75, "meters"),
  18827. weight: math.unit(65, "kg"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/jayne-folest/front.svg",
  18831. extra: 2115 / 2007,
  18832. bottom: 0.02
  18833. }
  18834. },
  18835. back: {
  18836. height: math.unit(1.75, "meters"),
  18837. weight: math.unit(65, "kg"),
  18838. name: "Back",
  18839. image: {
  18840. source: "./media/characters/jayne-folest/back.svg",
  18841. extra: 2115 / 2007,
  18842. bottom: 0.005
  18843. }
  18844. },
  18845. frontClothed: {
  18846. height: math.unit(1.75, "meters"),
  18847. weight: math.unit(65, "kg"),
  18848. name: "Front (Clothed)",
  18849. image: {
  18850. source: "./media/characters/jayne-folest/front-clothed.svg",
  18851. extra: 2115 / 2007,
  18852. bottom: 0.035
  18853. }
  18854. },
  18855. hand: {
  18856. height: math.unit(1 / 1.260, "feet"),
  18857. name: "Hand",
  18858. image: {
  18859. source: "./media/characters/jayne-folest/hand.svg"
  18860. }
  18861. },
  18862. foot: {
  18863. height: math.unit(1 / 0.918, "feet"),
  18864. name: "Foot",
  18865. image: {
  18866. source: "./media/characters/jayne-folest/foot.svg"
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Micro",
  18873. height: math.unit(4, "cm")
  18874. },
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(1.75, "meters")
  18878. },
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(47.5, "meters"),
  18882. default: true
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(180, "cm"),
  18891. weight: math.unit(70, "kg"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/algier/front.svg",
  18895. extra: 596 / 572,
  18896. bottom: 0.04
  18897. }
  18898. },
  18899. back: {
  18900. height: math.unit(180, "cm"),
  18901. weight: math.unit(70, "kg"),
  18902. name: "Back",
  18903. image: {
  18904. source: "./media/characters/algier/back.svg",
  18905. extra: 596 / 572,
  18906. bottom: 0.025
  18907. }
  18908. },
  18909. frontdressed: {
  18910. height: math.unit(180, "cm"),
  18911. weight: math.unit(150, "kg"),
  18912. name: "Front-dressed",
  18913. image: {
  18914. source: "./media/characters/algier/front-dressed.svg",
  18915. extra: 596 / 572,
  18916. bottom: 0.038
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Micro",
  18923. height: math.unit(5, "cm")
  18924. },
  18925. {
  18926. name: "Normal",
  18927. height: math.unit(180, "cm"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Macro",
  18932. height: math.unit(64, "m")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18938. {
  18939. upright: {
  18940. height: math.unit(7, "feet"),
  18941. weight: math.unit(300, "lb"),
  18942. name: "Upright",
  18943. image: {
  18944. source: "./media/characters/pretzel/upright.svg",
  18945. extra: 534 / 522,
  18946. bottom: 0.065
  18947. }
  18948. },
  18949. sprawling: {
  18950. height: math.unit(3.75, "feet"),
  18951. weight: math.unit(300, "lb"),
  18952. name: "Sprawling",
  18953. image: {
  18954. source: "./media/characters/pretzel/sprawling.svg",
  18955. extra: 314 / 281,
  18956. bottom: 0.1
  18957. }
  18958. },
  18959. tongue: {
  18960. height: math.unit(2, "feet"),
  18961. name: "Tongue",
  18962. image: {
  18963. source: "./media/characters/pretzel/tongue.svg"
  18964. }
  18965. },
  18966. },
  18967. [
  18968. {
  18969. name: "Normal",
  18970. height: math.unit(7, "feet"),
  18971. default: true
  18972. },
  18973. {
  18974. name: "Oversized",
  18975. height: math.unit(15, "feet")
  18976. },
  18977. {
  18978. name: "Huge",
  18979. height: math.unit(30, "feet")
  18980. },
  18981. {
  18982. name: "Macro",
  18983. height: math.unit(250, "feet")
  18984. },
  18985. ]
  18986. ))
  18987. characterMakers.push(() => makeCharacter(
  18988. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18989. {
  18990. sideFront: {
  18991. height: math.unit(5 + 2 / 12, "feet"),
  18992. weight: math.unit(120, "lb"),
  18993. name: "Front Side",
  18994. image: {
  18995. source: "./media/characters/roxi/side-front.svg",
  18996. extra: 2924 / 2717,
  18997. bottom: 0.08
  18998. }
  18999. },
  19000. sideBack: {
  19001. height: math.unit(5 + 2 / 12, "feet"),
  19002. weight: math.unit(120, "lb"),
  19003. name: "Back Side",
  19004. image: {
  19005. source: "./media/characters/roxi/side-back.svg",
  19006. extra: 2904 / 2693,
  19007. bottom: 0.06
  19008. }
  19009. },
  19010. front: {
  19011. height: math.unit(5 + 2 / 12, "feet"),
  19012. weight: math.unit(120, "lb"),
  19013. name: "Front",
  19014. image: {
  19015. source: "./media/characters/roxi/front.svg",
  19016. extra: 2028 / 1907,
  19017. bottom: 0.01
  19018. }
  19019. },
  19020. frontAlt: {
  19021. height: math.unit(5 + 2 / 12, "feet"),
  19022. weight: math.unit(120, "lb"),
  19023. name: "Front (Alt)",
  19024. image: {
  19025. source: "./media/characters/roxi/front-alt.svg",
  19026. extra: 1828 / 1798,
  19027. bottom: 0.01
  19028. }
  19029. },
  19030. sitting: {
  19031. height: math.unit(2.8, "feet"),
  19032. weight: math.unit(120, "lb"),
  19033. name: "Sitting",
  19034. image: {
  19035. source: "./media/characters/roxi/sitting.svg",
  19036. extra: 2660 / 2462,
  19037. bottom: 0.1
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(5 + 2 / 12, "feet"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19051. {
  19052. side: {
  19053. height: math.unit(55, "feet"),
  19054. weight: math.unit(153, "tons"),
  19055. name: "Side",
  19056. image: {
  19057. source: "./media/characters/shadow/side.svg",
  19058. extra: 701 / 628,
  19059. bottom: 0.02
  19060. }
  19061. },
  19062. flying: {
  19063. height: math.unit(145, "feet"),
  19064. weight: math.unit(153, "tons"),
  19065. name: "Flying",
  19066. image: {
  19067. source: "./media/characters/shadow/flying.svg"
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(55, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6, "feet"),
  19084. weight: math.unit(200, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/marcie/front.svg",
  19088. extra: 960 / 876,
  19089. bottom: 58 / 1017.87
  19090. }
  19091. },
  19092. },
  19093. [
  19094. {
  19095. name: "Macro",
  19096. height: math.unit(1, "mile"),
  19097. default: true
  19098. },
  19099. ]
  19100. ))
  19101. characterMakers.push(() => makeCharacter(
  19102. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19103. {
  19104. front: {
  19105. height: math.unit(7, "feet"),
  19106. weight: math.unit(200, "lb"),
  19107. name: "Front",
  19108. image: {
  19109. source: "./media/characters/kachina/front.svg",
  19110. extra: 1290.68 / 1119,
  19111. bottom: 36.5 / 1327.18
  19112. }
  19113. },
  19114. },
  19115. [
  19116. {
  19117. name: "Normal",
  19118. height: math.unit(7, "feet"),
  19119. default: true
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19125. {
  19126. looking: {
  19127. height: math.unit(2, "meters"),
  19128. weight: math.unit(300, "kg"),
  19129. name: "Looking",
  19130. image: {
  19131. source: "./media/characters/kash/looking.svg",
  19132. extra: 474 / 344,
  19133. bottom: 0.03
  19134. }
  19135. },
  19136. side: {
  19137. height: math.unit(2, "meters"),
  19138. weight: math.unit(300, "kg"),
  19139. name: "Side",
  19140. image: {
  19141. source: "./media/characters/kash/side.svg",
  19142. extra: 302 / 251,
  19143. bottom: 0.03
  19144. }
  19145. },
  19146. front: {
  19147. height: math.unit(2, "meters"),
  19148. weight: math.unit(300, "kg"),
  19149. name: "Front",
  19150. image: {
  19151. source: "./media/characters/kash/front.svg",
  19152. extra: 495 / 360,
  19153. bottom: 0.015
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Normal",
  19160. height: math.unit(2, "meters"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Big",
  19165. height: math.unit(3, "meters")
  19166. },
  19167. {
  19168. name: "Large",
  19169. height: math.unit(5, "meters")
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19175. {
  19176. feeding: {
  19177. height: math.unit(6.7, "feet"),
  19178. weight: math.unit(350, "lb"),
  19179. name: "Feeding",
  19180. image: {
  19181. source: "./media/characters/lalim/feeding.svg",
  19182. }
  19183. },
  19184. },
  19185. [
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(6.7, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(9.5, "feet"),
  19198. weight: math.unit(600, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/de'vout/front.svg",
  19202. extra: 1443 / 1328,
  19203. bottom: 0.025
  19204. }
  19205. },
  19206. back: {
  19207. height: math.unit(9.5, "feet"),
  19208. weight: math.unit(600, "lb"),
  19209. name: "Back",
  19210. image: {
  19211. source: "./media/characters/de'vout/back.svg",
  19212. extra: 1443 / 1328
  19213. }
  19214. },
  19215. frontDressed: {
  19216. height: math.unit(9.5, "feet"),
  19217. weight: math.unit(600, "lb"),
  19218. name: "Front (Dressed",
  19219. image: {
  19220. source: "./media/characters/de'vout/front-dressed.svg",
  19221. extra: 1443 / 1328,
  19222. bottom: 0.025
  19223. }
  19224. },
  19225. backDressed: {
  19226. height: math.unit(9.5, "feet"),
  19227. weight: math.unit(600, "lb"),
  19228. name: "Back (Dressed",
  19229. image: {
  19230. source: "./media/characters/de'vout/back-dressed.svg",
  19231. extra: 1443 / 1328
  19232. }
  19233. },
  19234. },
  19235. [
  19236. {
  19237. name: "Normal",
  19238. height: math.unit(9.5, "feet"),
  19239. default: true
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(8, "feet"),
  19248. weight: math.unit(225, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/talana/front.svg",
  19252. extra: 1410 / 1300,
  19253. bottom: 0.015
  19254. }
  19255. },
  19256. frontDressed: {
  19257. height: math.unit(8, "feet"),
  19258. weight: math.unit(225, "lb"),
  19259. name: "Front (Dressed",
  19260. image: {
  19261. source: "./media/characters/talana/front-dressed.svg",
  19262. extra: 1410 / 1300,
  19263. bottom: 0.015
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(8, "feet"),
  19271. default: true
  19272. },
  19273. ]
  19274. ))
  19275. characterMakers.push(() => makeCharacter(
  19276. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19277. {
  19278. side: {
  19279. height: math.unit(7.2, "feet"),
  19280. weight: math.unit(150, "lb"),
  19281. name: "Side",
  19282. image: {
  19283. source: "./media/characters/xeauvok/side.svg",
  19284. extra: 1975 / 1523,
  19285. bottom: 0.07
  19286. }
  19287. },
  19288. },
  19289. [
  19290. {
  19291. name: "Normal",
  19292. height: math.unit(7.2, "feet"),
  19293. default: true
  19294. },
  19295. ]
  19296. ))
  19297. characterMakers.push(() => makeCharacter(
  19298. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19299. {
  19300. side: {
  19301. height: math.unit(4, "meters"),
  19302. weight: math.unit(2200, "kg"),
  19303. name: "Side",
  19304. image: {
  19305. source: "./media/characters/zara/side.svg",
  19306. extra: 765/744,
  19307. bottom: 156/921
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(4, "meters"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19321. {
  19322. side: {
  19323. height: math.unit(6, "feet"),
  19324. weight: math.unit(150, "lb"),
  19325. name: "Side",
  19326. image: {
  19327. source: "./media/characters/richard-dragon/side.svg",
  19328. extra: 845 / 340,
  19329. bottom: 0.017
  19330. }
  19331. },
  19332. maw: {
  19333. height: math.unit(2.97, "feet"),
  19334. name: "Maw",
  19335. image: {
  19336. source: "./media/characters/richard-dragon/maw.svg"
  19337. }
  19338. },
  19339. },
  19340. [
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(4, "feet"),
  19348. weight: math.unit(100, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/richard-smeargle/front.svg",
  19352. extra: 2952 / 2820,
  19353. bottom: 0.028
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(4, "feet"),
  19361. default: true
  19362. },
  19363. {
  19364. name: "Dynamax",
  19365. height: math.unit(20, "meters")
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(6, "feet"),
  19374. weight: math.unit(110, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/klay/front.svg",
  19378. extra: 962 / 883,
  19379. bottom: 0.04
  19380. }
  19381. },
  19382. back: {
  19383. height: math.unit(6, "feet"),
  19384. weight: math.unit(110, "lb"),
  19385. name: "Back",
  19386. image: {
  19387. source: "./media/characters/klay/back.svg",
  19388. extra: 962 / 883
  19389. }
  19390. },
  19391. beans: {
  19392. height: math.unit(1.15, "feet"),
  19393. name: "Beans",
  19394. image: {
  19395. source: "./media/characters/klay/beans.svg"
  19396. }
  19397. },
  19398. },
  19399. [
  19400. {
  19401. name: "Micro",
  19402. height: math.unit(6, "inches")
  19403. },
  19404. {
  19405. name: "Mini",
  19406. height: math.unit(3, "feet")
  19407. },
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(6, "feet"),
  19411. default: true
  19412. },
  19413. {
  19414. name: "Big",
  19415. height: math.unit(25, "feet")
  19416. },
  19417. {
  19418. name: "Macro",
  19419. height: math.unit(100, "feet")
  19420. },
  19421. {
  19422. name: "Megamacro",
  19423. height: math.unit(400, "feet")
  19424. },
  19425. ]
  19426. ))
  19427. characterMakers.push(() => makeCharacter(
  19428. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19429. {
  19430. front: {
  19431. height: math.unit(6, "feet"),
  19432. weight: math.unit(160, "lb"),
  19433. name: "Front",
  19434. image: {
  19435. source: "./media/characters/marcus/front.svg",
  19436. extra: 734 / 676,
  19437. bottom: 0.03
  19438. }
  19439. },
  19440. },
  19441. [
  19442. {
  19443. name: "Little",
  19444. height: math.unit(6, "feet")
  19445. },
  19446. {
  19447. name: "Normal",
  19448. height: math.unit(110, "feet"),
  19449. default: true
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(250, "feet")
  19454. },
  19455. {
  19456. name: "Megamacro",
  19457. height: math.unit(1000, "feet")
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(7, "feet"),
  19466. weight: math.unit(275, "lb"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/claude-delroute/front.svg",
  19470. extra: 902/827,
  19471. bottom: 26/928
  19472. }
  19473. },
  19474. side: {
  19475. height: math.unit(7, "feet"),
  19476. weight: math.unit(275, "lb"),
  19477. name: "Side",
  19478. image: {
  19479. source: "./media/characters/claude-delroute/side.svg",
  19480. extra: 908/853,
  19481. bottom: 16/924
  19482. }
  19483. },
  19484. back: {
  19485. height: math.unit(7, "feet"),
  19486. weight: math.unit(275, "lb"),
  19487. name: "Back",
  19488. image: {
  19489. source: "./media/characters/claude-delroute/back.svg",
  19490. extra: 911/829,
  19491. bottom: 18/929
  19492. }
  19493. },
  19494. maw: {
  19495. height: math.unit(0.6407, "meters"),
  19496. name: "Maw",
  19497. image: {
  19498. source: "./media/characters/claude-delroute/maw.svg"
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Normal",
  19505. height: math.unit(7, "feet"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Lorge",
  19510. height: math.unit(20, "feet")
  19511. },
  19512. ]
  19513. ))
  19514. characterMakers.push(() => makeCharacter(
  19515. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19516. {
  19517. front: {
  19518. height: math.unit(8 + 4 / 12, "feet"),
  19519. weight: math.unit(600, "lb"),
  19520. name: "Front",
  19521. image: {
  19522. source: "./media/characters/dragonien/front.svg",
  19523. extra: 100 / 94,
  19524. bottom: 3.3 / 103.3445
  19525. }
  19526. },
  19527. back: {
  19528. height: math.unit(8 + 4 / 12, "feet"),
  19529. weight: math.unit(600, "lb"),
  19530. name: "Back",
  19531. image: {
  19532. source: "./media/characters/dragonien/back.svg",
  19533. extra: 776 / 746,
  19534. bottom: 6.4 / 782.0616
  19535. }
  19536. },
  19537. foot: {
  19538. height: math.unit(1.54, "feet"),
  19539. name: "Foot",
  19540. image: {
  19541. source: "./media/characters/dragonien/foot.svg",
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(8 + 4 / 12, "feet"),
  19549. default: true
  19550. },
  19551. {
  19552. name: "Macro",
  19553. height: math.unit(200, "feet")
  19554. },
  19555. {
  19556. name: "Megamacro",
  19557. height: math.unit(1, "mile")
  19558. },
  19559. {
  19560. name: "Gigamacro",
  19561. height: math.unit(1000, "miles")
  19562. },
  19563. ]
  19564. ))
  19565. characterMakers.push(() => makeCharacter(
  19566. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19567. {
  19568. front: {
  19569. height: math.unit(5 + 2 / 12, "feet"),
  19570. weight: math.unit(110, "lb"),
  19571. name: "Front",
  19572. image: {
  19573. source: "./media/characters/desta/front.svg",
  19574. extra: 767 / 726,
  19575. bottom: 11.7 / 779
  19576. }
  19577. },
  19578. back: {
  19579. height: math.unit(5 + 2 / 12, "feet"),
  19580. weight: math.unit(110, "lb"),
  19581. name: "Back",
  19582. image: {
  19583. source: "./media/characters/desta/back.svg",
  19584. extra: 777 / 728,
  19585. bottom: 6 / 784
  19586. }
  19587. },
  19588. frontAlt: {
  19589. height: math.unit(5 + 2 / 12, "feet"),
  19590. weight: math.unit(110, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/desta/front-alt.svg",
  19594. extra: 1482 / 1417
  19595. }
  19596. },
  19597. side: {
  19598. height: math.unit(5 + 2 / 12, "feet"),
  19599. weight: math.unit(110, "lb"),
  19600. name: "Side",
  19601. image: {
  19602. source: "./media/characters/desta/side.svg",
  19603. extra: 2579 / 2491,
  19604. bottom: 0.053
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Micro",
  19611. height: math.unit(6, "inches")
  19612. },
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(5 + 2 / 12, "feet"),
  19616. default: true
  19617. },
  19618. {
  19619. name: "Macro",
  19620. height: math.unit(62, "feet")
  19621. },
  19622. {
  19623. name: "Megamacro",
  19624. height: math.unit(1800, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19630. {
  19631. front: {
  19632. height: math.unit(10, "feet"),
  19633. weight: math.unit(700, "lb"),
  19634. name: "Front",
  19635. image: {
  19636. source: "./media/characters/storm-alystar/front.svg",
  19637. extra: 2112 / 1898,
  19638. bottom: 0.034
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Micro",
  19645. height: math.unit(3.5, "inches")
  19646. },
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(10, "feet"),
  19650. default: true
  19651. },
  19652. {
  19653. name: "Macro",
  19654. height: math.unit(400, "feet")
  19655. },
  19656. {
  19657. name: "Deific",
  19658. height: math.unit(60, "miles")
  19659. },
  19660. ]
  19661. ))
  19662. characterMakers.push(() => makeCharacter(
  19663. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19664. {
  19665. front: {
  19666. height: math.unit(2.35, "meters"),
  19667. weight: math.unit(119, "kg"),
  19668. name: "Front",
  19669. image: {
  19670. source: "./media/characters/ilia/front.svg",
  19671. extra: 1285 / 1255,
  19672. bottom: 0.06
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(2.35, "meters")
  19680. },
  19681. {
  19682. name: "Macro",
  19683. height: math.unit(140, "meters"),
  19684. default: true
  19685. },
  19686. {
  19687. name: "Megamacro",
  19688. height: math.unit(100, "miles")
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(6 + 5 / 12, "feet"),
  19697. weight: math.unit(190, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/kingdead/front.svg",
  19701. extra: 1228 / 1177
  19702. }
  19703. },
  19704. },
  19705. [
  19706. {
  19707. name: "Micro",
  19708. height: math.unit(7, "inches")
  19709. },
  19710. {
  19711. name: "Normal",
  19712. height: math.unit(6 + 5 / 12, "feet")
  19713. },
  19714. {
  19715. name: "Macro",
  19716. height: math.unit(150, "feet"),
  19717. default: true
  19718. },
  19719. {
  19720. name: "Megamacro",
  19721. height: math.unit(200, "miles")
  19722. },
  19723. ]
  19724. ))
  19725. characterMakers.push(() => makeCharacter(
  19726. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19727. {
  19728. front: {
  19729. height: math.unit(8, "feet"),
  19730. weight: math.unit(600, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/kyrehx/front.svg",
  19734. extra: 1195 / 1095,
  19735. bottom: 0.034
  19736. }
  19737. },
  19738. },
  19739. [
  19740. {
  19741. name: "Micro",
  19742. height: math.unit(2, "inches")
  19743. },
  19744. {
  19745. name: "Normal",
  19746. height: math.unit(8, "feet"),
  19747. default: true
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(255, "feet")
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19757. {
  19758. front: {
  19759. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19760. weight: math.unit(184, "lb"),
  19761. name: "Front",
  19762. image: {
  19763. source: "./media/characters/xang/front.svg",
  19764. extra: 845 / 755
  19765. }
  19766. },
  19767. },
  19768. [
  19769. {
  19770. name: "Normal",
  19771. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19772. default: true
  19773. },
  19774. {
  19775. name: "Macro",
  19776. height: math.unit(0.935 * 146, "feet")
  19777. },
  19778. {
  19779. name: "Megamacro",
  19780. height: math.unit(0.935 * 3, "miles")
  19781. },
  19782. ]
  19783. ))
  19784. characterMakers.push(() => makeCharacter(
  19785. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19786. {
  19787. frontDressed: {
  19788. height: math.unit(5 + 7 / 12, "feet"),
  19789. weight: math.unit(140, "lb"),
  19790. name: "Front (Dressed)",
  19791. image: {
  19792. source: "./media/characters/doc-weardno/front-dressed.svg",
  19793. extra: 263 / 234
  19794. }
  19795. },
  19796. backDressed: {
  19797. height: math.unit(5 + 7 / 12, "feet"),
  19798. weight: math.unit(140, "lb"),
  19799. name: "Back (Dressed)",
  19800. image: {
  19801. source: "./media/characters/doc-weardno/back-dressed.svg",
  19802. extra: 266 / 238
  19803. }
  19804. },
  19805. front: {
  19806. height: math.unit(5 + 7 / 12, "feet"),
  19807. weight: math.unit(140, "lb"),
  19808. name: "Front",
  19809. image: {
  19810. source: "./media/characters/doc-weardno/front.svg",
  19811. extra: 254 / 233
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Micro",
  19818. height: math.unit(3, "inches")
  19819. },
  19820. {
  19821. name: "Normal",
  19822. height: math.unit(5 + 7 / 12, "feet"),
  19823. default: true
  19824. },
  19825. {
  19826. name: "Macro",
  19827. height: math.unit(25, "feet")
  19828. },
  19829. {
  19830. name: "Megamacro",
  19831. height: math.unit(2, "miles")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19837. {
  19838. front: {
  19839. height: math.unit(6 + 2 / 12, "feet"),
  19840. weight: math.unit(153, "lb"),
  19841. name: "Front",
  19842. image: {
  19843. source: "./media/characters/seth-whilst/front.svg",
  19844. bottom: 0.07
  19845. }
  19846. },
  19847. },
  19848. [
  19849. {
  19850. name: "Micro",
  19851. height: math.unit(5, "inches")
  19852. },
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(6 + 2 / 12, "feet"),
  19856. default: true
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(3, "inches"),
  19865. weight: math.unit(8, "grams"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/pocket-jabari/front.svg",
  19869. extra: 1024 / 974,
  19870. bottom: 0.039
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Minimicro",
  19877. height: math.unit(8, "mm")
  19878. },
  19879. {
  19880. name: "Micro",
  19881. height: math.unit(3, "inches"),
  19882. default: true
  19883. },
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(3, "feet")
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19892. {
  19893. frontDressed: {
  19894. height: math.unit(15, "feet"),
  19895. weight: math.unit(3280, "lb"),
  19896. name: "Front (Dressed)",
  19897. image: {
  19898. source: "./media/characters/sapphy/front-dressed.svg",
  19899. extra: 1951/1654,
  19900. bottom: 194/2145
  19901. },
  19902. form: "anthro",
  19903. default: true
  19904. },
  19905. backDressed: {
  19906. height: math.unit(15, "feet"),
  19907. weight: math.unit(3280, "lb"),
  19908. name: "Back (Dressed)",
  19909. image: {
  19910. source: "./media/characters/sapphy/back-dressed.svg",
  19911. extra: 2058/1918,
  19912. bottom: 125/2183
  19913. },
  19914. form: "anthro"
  19915. },
  19916. frontNude: {
  19917. height: math.unit(15, "feet"),
  19918. weight: math.unit(3280, "lb"),
  19919. name: "Front (Nude)",
  19920. image: {
  19921. source: "./media/characters/sapphy/front-nude.svg",
  19922. extra: 1951/1654,
  19923. bottom: 194/2145
  19924. },
  19925. form: "anthro"
  19926. },
  19927. backNude: {
  19928. height: math.unit(15, "feet"),
  19929. weight: math.unit(3280, "lb"),
  19930. name: "Back (Nude)",
  19931. image: {
  19932. source: "./media/characters/sapphy/back-nude.svg",
  19933. extra: 2058/1918,
  19934. bottom: 125/2183
  19935. },
  19936. form: "anthro"
  19937. },
  19938. full: {
  19939. height: math.unit(15, "feet"),
  19940. weight: math.unit(3280, "lb"),
  19941. name: "Full",
  19942. image: {
  19943. source: "./media/characters/sapphy/full.svg",
  19944. extra: 1396/1317,
  19945. bottom: 44/1440
  19946. },
  19947. form: "anthro"
  19948. },
  19949. dick: {
  19950. height: math.unit(3.8, "feet"),
  19951. name: "Dick",
  19952. image: {
  19953. source: "./media/characters/sapphy/dick.svg"
  19954. },
  19955. form: "anthro"
  19956. },
  19957. feral: {
  19958. height: math.unit(35, "feet"),
  19959. weight: math.unit(160, "tons"),
  19960. name: "Feral",
  19961. image: {
  19962. source: "./media/characters/sapphy/feral.svg",
  19963. extra: 1050/573,
  19964. bottom: 60/1110
  19965. },
  19966. form: "feral",
  19967. default: true
  19968. },
  19969. },
  19970. [
  19971. {
  19972. name: "Normal",
  19973. height: math.unit(15, "feet"),
  19974. form: "anthro"
  19975. },
  19976. {
  19977. name: "Casual Macro",
  19978. height: math.unit(120, "feet"),
  19979. form: "anthro"
  19980. },
  19981. {
  19982. name: "Macro",
  19983. height: math.unit(2150, "feet"),
  19984. default: true,
  19985. form: "anthro"
  19986. },
  19987. {
  19988. name: "Megamacro",
  19989. height: math.unit(8, "miles"),
  19990. form: "anthro"
  19991. },
  19992. {
  19993. name: "Galaxy Mom",
  19994. height: math.unit(6, "megalightyears"),
  19995. form: "anthro"
  19996. },
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(35, "feet"),
  20000. form: "feral",
  20001. default: true
  20002. },
  20003. {
  20004. name: "Macro",
  20005. height: math.unit(300, "feet"),
  20006. form: "feral"
  20007. },
  20008. {
  20009. name: "Galaxy Mom",
  20010. height: math.unit(10, "megalightyears"),
  20011. form: "feral"
  20012. },
  20013. ],
  20014. {
  20015. "anthro": {
  20016. name: "Anthro",
  20017. default: true
  20018. },
  20019. "feral": {
  20020. name: "Feral"
  20021. }
  20022. }
  20023. ))
  20024. characterMakers.push(() => makeCharacter(
  20025. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20026. {
  20027. hyenaFront: {
  20028. height: math.unit(6, "feet"),
  20029. weight: math.unit(190, "lb"),
  20030. name: "Front",
  20031. image: {
  20032. source: "./media/characters/kiro/hyena-front.svg",
  20033. extra: 927/839,
  20034. bottom: 91/1018
  20035. },
  20036. form: "hyena",
  20037. default: true
  20038. },
  20039. front: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(170, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/kiro/front.svg",
  20045. extra: 1064 / 1012,
  20046. bottom: 0.052
  20047. },
  20048. form: "folf",
  20049. default: true
  20050. },
  20051. },
  20052. [
  20053. {
  20054. name: "Micro",
  20055. height: math.unit(6, "inches"),
  20056. form: "folf"
  20057. },
  20058. {
  20059. name: "Normal",
  20060. height: math.unit(6, "feet"),
  20061. form: "folf",
  20062. default: true
  20063. },
  20064. {
  20065. name: "Macro",
  20066. height: math.unit(72, "feet"),
  20067. form: "folf"
  20068. },
  20069. {
  20070. name: "Micro",
  20071. height: math.unit(6, "inches"),
  20072. form: "hyena"
  20073. },
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(6, "feet"),
  20077. form: "hyena",
  20078. default: true
  20079. },
  20080. {
  20081. name: "Macro",
  20082. height: math.unit(72, "feet"),
  20083. form: "hyena"
  20084. },
  20085. ],
  20086. {
  20087. "hyena": {
  20088. name: "Hyena",
  20089. default: true
  20090. },
  20091. "folf": {
  20092. name: "Folf",
  20093. },
  20094. }
  20095. ))
  20096. characterMakers.push(() => makeCharacter(
  20097. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20098. {
  20099. front: {
  20100. height: math.unit(5 + 9 / 12, "feet"),
  20101. weight: math.unit(175, "lb"),
  20102. name: "Front",
  20103. image: {
  20104. source: "./media/characters/irishfox/front.svg",
  20105. extra: 1912 / 1680,
  20106. bottom: 0.02
  20107. }
  20108. },
  20109. },
  20110. [
  20111. {
  20112. name: "Nano",
  20113. height: math.unit(1, "mm")
  20114. },
  20115. {
  20116. name: "Micro",
  20117. height: math.unit(2, "inches")
  20118. },
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(5 + 9 / 12, "feet"),
  20122. default: true
  20123. },
  20124. {
  20125. name: "Macro",
  20126. height: math.unit(45, "feet")
  20127. },
  20128. ]
  20129. ))
  20130. characterMakers.push(() => makeCharacter(
  20131. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20132. {
  20133. front: {
  20134. height: math.unit(6 + 1 / 12, "feet"),
  20135. weight: math.unit(75, "lb"),
  20136. name: "Front",
  20137. image: {
  20138. source: "./media/characters/aronai-sieyes/front.svg",
  20139. extra: 1532/1450,
  20140. bottom: 42/1574
  20141. }
  20142. },
  20143. side: {
  20144. height: math.unit(6 + 1 / 12, "feet"),
  20145. weight: math.unit(75, "lb"),
  20146. name: "Side",
  20147. image: {
  20148. source: "./media/characters/aronai-sieyes/side.svg",
  20149. extra: 1422/1365,
  20150. bottom: 148/1570
  20151. }
  20152. },
  20153. back: {
  20154. height: math.unit(6 + 1 / 12, "feet"),
  20155. weight: math.unit(75, "lb"),
  20156. name: "Back",
  20157. image: {
  20158. source: "./media/characters/aronai-sieyes/back.svg",
  20159. extra: 1526/1464,
  20160. bottom: 51/1577
  20161. }
  20162. },
  20163. dressed: {
  20164. height: math.unit(6 + 1 / 12, "feet"),
  20165. weight: math.unit(75, "lb"),
  20166. name: "Dressed",
  20167. image: {
  20168. source: "./media/characters/aronai-sieyes/dressed.svg",
  20169. extra: 1559/1483,
  20170. bottom: 39/1598
  20171. }
  20172. },
  20173. slit: {
  20174. height: math.unit(1.3, "feet"),
  20175. name: "Slit",
  20176. image: {
  20177. source: "./media/characters/aronai-sieyes/slit.svg"
  20178. }
  20179. },
  20180. slitSpread: {
  20181. height: math.unit(0.9, "feet"),
  20182. name: "Slit (Spread)",
  20183. image: {
  20184. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20185. }
  20186. },
  20187. rump: {
  20188. height: math.unit(1.3, "feet"),
  20189. name: "Rump",
  20190. image: {
  20191. source: "./media/characters/aronai-sieyes/rump.svg"
  20192. }
  20193. },
  20194. maw: {
  20195. height: math.unit(1.25, "feet"),
  20196. name: "Maw",
  20197. image: {
  20198. source: "./media/characters/aronai-sieyes/maw.svg"
  20199. }
  20200. },
  20201. feral: {
  20202. height: math.unit(18, "feet"),
  20203. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20204. name: "Feral",
  20205. image: {
  20206. source: "./media/characters/aronai-sieyes/feral.svg",
  20207. extra: 1530 / 1240,
  20208. bottom: 0.035
  20209. }
  20210. },
  20211. },
  20212. [
  20213. {
  20214. name: "Micro",
  20215. height: math.unit(2, "inches")
  20216. },
  20217. {
  20218. name: "Normal",
  20219. height: math.unit(6 + 1 / 12, "feet"),
  20220. default: true
  20221. }
  20222. ]
  20223. ))
  20224. characterMakers.push(() => makeCharacter(
  20225. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20226. {
  20227. front: {
  20228. height: math.unit(12, "feet"),
  20229. weight: math.unit(410, "kg"),
  20230. name: "Front",
  20231. image: {
  20232. source: "./media/characters/xuna/front.svg",
  20233. extra: 2184 / 1980
  20234. }
  20235. },
  20236. side: {
  20237. height: math.unit(12, "feet"),
  20238. weight: math.unit(410, "kg"),
  20239. name: "Side",
  20240. image: {
  20241. source: "./media/characters/xuna/side.svg",
  20242. extra: 2184 / 1980
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(12, "feet"),
  20247. weight: math.unit(410, "kg"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/xuna/back.svg",
  20251. extra: 2184 / 1980
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Nano glow",
  20258. height: math.unit(10, "nm")
  20259. },
  20260. {
  20261. name: "Micro floof",
  20262. height: math.unit(0.3, "m")
  20263. },
  20264. {
  20265. name: "Huggable softy boi",
  20266. height: math.unit(3.6576, "m"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Admirable floof",
  20271. height: math.unit(80, "meters")
  20272. },
  20273. {
  20274. name: "Gentle macro",
  20275. height: math.unit(300, "meters")
  20276. },
  20277. {
  20278. name: "Very careful floof",
  20279. height: math.unit(3200, "meters")
  20280. },
  20281. {
  20282. name: "The mega floof",
  20283. height: math.unit(36000, "meters")
  20284. },
  20285. {
  20286. name: "Giga-fur-Wicker",
  20287. height: math.unit(4800000, "meters")
  20288. },
  20289. {
  20290. name: "Licky world",
  20291. height: math.unit(20000000, "meters")
  20292. },
  20293. {
  20294. name: "Floofy cyan sun",
  20295. height: math.unit(1500000000, "meters")
  20296. },
  20297. {
  20298. name: "Milky Wicker",
  20299. height: math.unit(1000000000000000000000, "meters")
  20300. },
  20301. {
  20302. name: "The observing Wicker",
  20303. height: math.unit(999999999999999999999999999, "meters")
  20304. },
  20305. ]
  20306. ))
  20307. characterMakers.push(() => makeCharacter(
  20308. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20309. {
  20310. front: {
  20311. height: math.unit(5 + 9 / 12, "feet"),
  20312. weight: math.unit(150, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/arokha-sieyes/front.svg",
  20316. extra: 1425 / 1284,
  20317. bottom: 0.05
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(5 + 9 / 12, "feet")
  20325. },
  20326. {
  20327. name: "Macro",
  20328. height: math.unit(30, "meters"),
  20329. default: true
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(6, "feet"),
  20338. weight: math.unit(180, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/arokh-sieyes/front.svg",
  20342. extra: 1830 / 1769,
  20343. bottom: 0.01
  20344. }
  20345. },
  20346. },
  20347. [
  20348. {
  20349. name: "Normal",
  20350. height: math.unit(6, "feet")
  20351. },
  20352. {
  20353. name: "Macro",
  20354. height: math.unit(30, "meters"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20361. {
  20362. side: {
  20363. height: math.unit(13 + 1 / 12, "feet"),
  20364. weight: math.unit(8.5, "tonnes"),
  20365. preyCapacity: math.unit(36, "people"),
  20366. name: "Side",
  20367. image: {
  20368. source: "./media/characters/goldeneye/side.svg",
  20369. extra: 1139/741,
  20370. bottom: 98/1237
  20371. }
  20372. },
  20373. front: {
  20374. height: math.unit(5.1, "feet"),
  20375. weight: math.unit(8.5, "tonnes"),
  20376. preyCapacity: math.unit(36, "people"),
  20377. name: "Front",
  20378. image: {
  20379. source: "./media/characters/goldeneye/front.svg",
  20380. extra: 635/365,
  20381. bottom: 598/1233
  20382. }
  20383. },
  20384. maw: {
  20385. height: math.unit(6.6, "feet"),
  20386. name: "Maw",
  20387. image: {
  20388. source: "./media/characters/goldeneye/maw.svg"
  20389. }
  20390. },
  20391. headFront: {
  20392. height: math.unit(8, "feet"),
  20393. name: "Head (Front)",
  20394. image: {
  20395. source: "./media/characters/goldeneye/head-front.svg"
  20396. }
  20397. },
  20398. headSide: {
  20399. height: math.unit(6, "feet"),
  20400. name: "Head (Side)",
  20401. image: {
  20402. source: "./media/characters/goldeneye/head-side.svg"
  20403. }
  20404. },
  20405. headBack: {
  20406. height: math.unit(8, "feet"),
  20407. name: "Head (Back)",
  20408. image: {
  20409. source: "./media/characters/goldeneye/head-back.svg"
  20410. }
  20411. },
  20412. paw: {
  20413. height: math.unit(3.4, "feet"),
  20414. name: "Paw",
  20415. image: {
  20416. source: "./media/characters/goldeneye/paw.svg"
  20417. }
  20418. },
  20419. toering: {
  20420. height: math.unit(0.45, "feet"),
  20421. name: "Toering",
  20422. image: {
  20423. source: "./media/characters/goldeneye/toering.svg"
  20424. }
  20425. },
  20426. eyes: {
  20427. height: math.unit(0.5, "feet"),
  20428. name: "Eyes",
  20429. image: {
  20430. source: "./media/characters/goldeneye/eyes.svg"
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(13 + 1 / 12, "feet"),
  20438. default: true
  20439. },
  20440. ]
  20441. ))
  20442. characterMakers.push(() => makeCharacter(
  20443. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20444. {
  20445. front: {
  20446. height: math.unit(6 + 1 / 12, "feet"),
  20447. weight: math.unit(210, "lb"),
  20448. name: "Front",
  20449. image: {
  20450. source: "./media/characters/leonardo-lycheborne/front.svg",
  20451. extra: 776/723,
  20452. bottom: 34/810
  20453. }
  20454. },
  20455. side: {
  20456. height: math.unit(6 + 1 / 12, "feet"),
  20457. weight: math.unit(210, "lb"),
  20458. name: "Side",
  20459. image: {
  20460. source: "./media/characters/leonardo-lycheborne/side.svg",
  20461. extra: 780/728,
  20462. bottom: 12/792
  20463. }
  20464. },
  20465. back: {
  20466. height: math.unit(6 + 1 / 12, "feet"),
  20467. weight: math.unit(210, "lb"),
  20468. name: "Back",
  20469. image: {
  20470. source: "./media/characters/leonardo-lycheborne/back.svg",
  20471. extra: 775/721,
  20472. bottom: 17/792
  20473. }
  20474. },
  20475. hand: {
  20476. height: math.unit(1.08, "feet"),
  20477. name: "Hand",
  20478. image: {
  20479. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20480. }
  20481. },
  20482. foot: {
  20483. height: math.unit(1.32, "feet"),
  20484. name: "Foot",
  20485. image: {
  20486. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20487. }
  20488. },
  20489. maw: {
  20490. height: math.unit(1, "feet"),
  20491. name: "Maw",
  20492. image: {
  20493. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20494. }
  20495. },
  20496. were: {
  20497. height: math.unit(20, "feet"),
  20498. weight: math.unit(7800, "lb"),
  20499. name: "Were",
  20500. image: {
  20501. source: "./media/characters/leonardo-lycheborne/were.svg",
  20502. extra: 1224/1165,
  20503. bottom: 72/1296
  20504. }
  20505. },
  20506. feral: {
  20507. height: math.unit(7.5, "feet"),
  20508. weight: math.unit(600, "lb"),
  20509. name: "Feral",
  20510. image: {
  20511. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20512. extra: 797/702,
  20513. bottom: 139/936
  20514. }
  20515. },
  20516. taur: {
  20517. height: math.unit(11, "feet"),
  20518. weight: math.unit(3300, "lb"),
  20519. name: "Taur",
  20520. image: {
  20521. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20522. extra: 1271/1197,
  20523. bottom: 47/1318
  20524. }
  20525. },
  20526. barghest: {
  20527. height: math.unit(11, "feet"),
  20528. weight: math.unit(1300, "lb"),
  20529. name: "Barghest",
  20530. image: {
  20531. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20532. extra: 1291/1204,
  20533. bottom: 37/1328
  20534. }
  20535. },
  20536. dick: {
  20537. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20538. name: "Dick",
  20539. image: {
  20540. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20541. }
  20542. },
  20543. dickWere: {
  20544. height: math.unit((20) / 3.8, "feet"),
  20545. name: "Dick (Were)",
  20546. image: {
  20547. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(6 + 1 / 12, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(10, "feet"),
  20564. weight: math.unit(350, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/jet/front.svg",
  20568. extra: 2050 / 1980,
  20569. bottom: 0.013
  20570. }
  20571. },
  20572. back: {
  20573. height: math.unit(10, "feet"),
  20574. weight: math.unit(350, "lb"),
  20575. name: "Back",
  20576. image: {
  20577. source: "./media/characters/jet/back.svg",
  20578. extra: 2050 / 1980,
  20579. bottom: 0.013
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Micro",
  20586. height: math.unit(6, "inches")
  20587. },
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(10, "feet"),
  20591. default: true
  20592. },
  20593. {
  20594. name: "Macro",
  20595. height: math.unit(100, "feet")
  20596. },
  20597. ]
  20598. ))
  20599. characterMakers.push(() => makeCharacter(
  20600. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20601. {
  20602. front: {
  20603. height: math.unit(15, "feet"),
  20604. weight: math.unit(2800, "lb"),
  20605. name: "Front",
  20606. image: {
  20607. source: "./media/characters/tanarath/front.svg",
  20608. extra: 2392 / 2220,
  20609. bottom: 0.03
  20610. }
  20611. },
  20612. back: {
  20613. height: math.unit(15, "feet"),
  20614. weight: math.unit(2800, "lb"),
  20615. name: "Back",
  20616. image: {
  20617. source: "./media/characters/tanarath/back.svg",
  20618. extra: 2392 / 2220,
  20619. bottom: 0.03
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(15, "feet"),
  20627. default: true
  20628. },
  20629. ]
  20630. ))
  20631. characterMakers.push(() => makeCharacter(
  20632. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20633. {
  20634. front: {
  20635. height: math.unit(7 + 1 / 12, "feet"),
  20636. weight: math.unit(175, "lb"),
  20637. name: "Front",
  20638. image: {
  20639. source: "./media/characters/patty-cattybatty/front.svg",
  20640. extra: 908 / 874,
  20641. bottom: 0.025
  20642. }
  20643. },
  20644. },
  20645. [
  20646. {
  20647. name: "Micro",
  20648. height: math.unit(1, "inch")
  20649. },
  20650. {
  20651. name: "Normal",
  20652. height: math.unit(7 + 1 / 12, "feet")
  20653. },
  20654. {
  20655. name: "Mini Macro",
  20656. height: math.unit(155, "feet")
  20657. },
  20658. {
  20659. name: "Macro",
  20660. height: math.unit(1077, "feet")
  20661. },
  20662. {
  20663. name: "Mega Macro",
  20664. height: math.unit(47650, "feet"),
  20665. default: true
  20666. },
  20667. {
  20668. name: "Giga Macro",
  20669. height: math.unit(440, "miles")
  20670. },
  20671. {
  20672. name: "Tera Macro",
  20673. height: math.unit(8700, "miles")
  20674. },
  20675. {
  20676. name: "Planetary Macro",
  20677. height: math.unit(32700, "miles")
  20678. },
  20679. {
  20680. name: "Solar Macro",
  20681. height: math.unit(550000, "miles")
  20682. },
  20683. {
  20684. name: "Celestial Macro",
  20685. height: math.unit(2.5, "AU")
  20686. },
  20687. ]
  20688. ))
  20689. characterMakers.push(() => makeCharacter(
  20690. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20691. {
  20692. front: {
  20693. height: math.unit(4 + 5 / 12, "feet"),
  20694. weight: math.unit(90, "lb"),
  20695. name: "Front",
  20696. image: {
  20697. source: "./media/characters/cappu/front.svg",
  20698. extra: 1247 / 1152,
  20699. bottom: 0.012
  20700. }
  20701. },
  20702. },
  20703. [
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(4 + 5 / 12, "feet"),
  20707. default: true
  20708. },
  20709. ]
  20710. ))
  20711. characterMakers.push(() => makeCharacter(
  20712. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20713. {
  20714. frontDressed: {
  20715. height: math.unit(70, "cm"),
  20716. weight: math.unit(6, "kg"),
  20717. name: "Front (Dressed)",
  20718. image: {
  20719. source: "./media/characters/sebi/front-dressed.svg",
  20720. extra: 713.5 / 686.5,
  20721. bottom: 0.003
  20722. }
  20723. },
  20724. front: {
  20725. height: math.unit(70, "cm"),
  20726. weight: math.unit(5, "kg"),
  20727. name: "Front",
  20728. image: {
  20729. source: "./media/characters/sebi/front.svg",
  20730. extra: 713.5 / 686.5,
  20731. bottom: 0.003
  20732. }
  20733. }
  20734. },
  20735. [
  20736. {
  20737. name: "Normal",
  20738. height: math.unit(70, "cm"),
  20739. default: true
  20740. },
  20741. {
  20742. name: "Macro",
  20743. height: math.unit(8, "meters")
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(6, "feet"),
  20752. weight: math.unit(150, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/typhek/front.svg",
  20756. extra: 1948 / 1929,
  20757. bottom: 0.025
  20758. }
  20759. },
  20760. side: {
  20761. height: math.unit(6, "feet"),
  20762. weight: math.unit(150, "lb"),
  20763. name: "Side",
  20764. image: {
  20765. source: "./media/characters/typhek/side.svg",
  20766. extra: 2034 / 2010,
  20767. bottom: 0.003
  20768. }
  20769. },
  20770. back: {
  20771. height: math.unit(6, "feet"),
  20772. weight: math.unit(150, "lb"),
  20773. name: "Back",
  20774. image: {
  20775. source: "./media/characters/typhek/back.svg",
  20776. extra: 2005 / 1978,
  20777. bottom: 0.004
  20778. }
  20779. },
  20780. palm: {
  20781. height: math.unit(1.2, "feet"),
  20782. name: "Palm",
  20783. image: {
  20784. source: "./media/characters/typhek/palm.svg"
  20785. }
  20786. },
  20787. fist: {
  20788. height: math.unit(1.1, "feet"),
  20789. name: "Fist",
  20790. image: {
  20791. source: "./media/characters/typhek/fist.svg"
  20792. }
  20793. },
  20794. foot: {
  20795. height: math.unit(1.57, "feet"),
  20796. name: "Foot",
  20797. image: {
  20798. source: "./media/characters/typhek/foot.svg"
  20799. }
  20800. },
  20801. sole: {
  20802. height: math.unit(2.05, "feet"),
  20803. name: "Sole",
  20804. image: {
  20805. source: "./media/characters/typhek/sole.svg"
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Macro",
  20812. height: math.unit(40, "stories"),
  20813. default: true
  20814. },
  20815. {
  20816. name: "Megamacro",
  20817. height: math.unit(1, "mile")
  20818. },
  20819. {
  20820. name: "Gigamacro",
  20821. height: math.unit(4000, "solarradii")
  20822. },
  20823. {
  20824. name: "Universal",
  20825. height: math.unit(1.1, "universes")
  20826. }
  20827. ]
  20828. ))
  20829. characterMakers.push(() => makeCharacter(
  20830. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20831. {
  20832. side: {
  20833. height: math.unit(5 + 7 / 12, "feet"),
  20834. weight: math.unit(150, "lb"),
  20835. name: "Side",
  20836. image: {
  20837. source: "./media/characters/kassy/side.svg",
  20838. extra: 1280 / 1225,
  20839. bottom: 0.002
  20840. }
  20841. },
  20842. front: {
  20843. height: math.unit(5 + 7 / 12, "feet"),
  20844. weight: math.unit(150, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/kassy/front.svg",
  20848. extra: 1280 / 1225,
  20849. bottom: 0.025
  20850. }
  20851. },
  20852. back: {
  20853. height: math.unit(5 + 7 / 12, "feet"),
  20854. weight: math.unit(150, "lb"),
  20855. name: "Back",
  20856. image: {
  20857. source: "./media/characters/kassy/back.svg",
  20858. extra: 1280 / 1225,
  20859. bottom: 0.002
  20860. }
  20861. },
  20862. foot: {
  20863. height: math.unit(1.266, "feet"),
  20864. name: "Foot",
  20865. image: {
  20866. source: "./media/characters/kassy/foot.svg"
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(5 + 7 / 12, "feet")
  20874. },
  20875. {
  20876. name: "Macro",
  20877. height: math.unit(137, "feet"),
  20878. default: true
  20879. },
  20880. {
  20881. name: "Megamacro",
  20882. height: math.unit(1, "mile")
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20888. {
  20889. front: {
  20890. height: math.unit(6 + 1 / 12, "feet"),
  20891. weight: math.unit(200, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/neil/front.svg",
  20895. extra: 1326 / 1250,
  20896. bottom: 0.023
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(6 + 1 / 12, "feet"),
  20904. default: true
  20905. },
  20906. {
  20907. name: "Macro",
  20908. height: math.unit(200, "feet")
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(5 + 9 / 12, "feet"),
  20917. weight: math.unit(190, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/atticus/front.svg",
  20921. extra: 2934 / 2785,
  20922. bottom: 0.025
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Normal",
  20929. height: math.unit(5 + 9 / 12, "feet"),
  20930. default: true
  20931. },
  20932. {
  20933. name: "Macro",
  20934. height: math.unit(180, "feet")
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20940. {
  20941. side: {
  20942. height: math.unit(9, "feet"),
  20943. weight: math.unit(650, "lb"),
  20944. name: "Side",
  20945. image: {
  20946. source: "./media/characters/milo/side.svg",
  20947. extra: 2644 / 2310,
  20948. bottom: 0.032
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(9, "feet"),
  20956. default: true
  20957. },
  20958. {
  20959. name: "Macro",
  20960. height: math.unit(300, "feet")
  20961. },
  20962. ]
  20963. ))
  20964. characterMakers.push(() => makeCharacter(
  20965. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20966. {
  20967. side: {
  20968. height: math.unit(8, "meters"),
  20969. weight: math.unit(90000, "kg"),
  20970. name: "Side",
  20971. image: {
  20972. source: "./media/characters/ijzer/side.svg",
  20973. extra: 2756 / 1600,
  20974. bottom: 0.01
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Small",
  20981. height: math.unit(3, "meters")
  20982. },
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(8, "meters"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Normal+",
  20990. height: math.unit(10, "meters")
  20991. },
  20992. {
  20993. name: "Bigger",
  20994. height: math.unit(24, "meters")
  20995. },
  20996. {
  20997. name: "Huge",
  20998. height: math.unit(80, "meters")
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(6 + 2 / 12, "feet"),
  21007. weight: math.unit(153, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/luca-cervicum/front.svg",
  21011. extra: 370 / 327,
  21012. bottom: 0.015
  21013. }
  21014. },
  21015. back: {
  21016. height: math.unit(6 + 2 / 12, "feet"),
  21017. weight: math.unit(153, "lb"),
  21018. name: "Back",
  21019. image: {
  21020. source: "./media/characters/luca-cervicum/back.svg",
  21021. extra: 367 / 333,
  21022. bottom: 0.005
  21023. }
  21024. },
  21025. frontGear: {
  21026. height: math.unit(6 + 2 / 12, "feet"),
  21027. weight: math.unit(173, "lb"),
  21028. name: "Front (Gear)",
  21029. image: {
  21030. source: "./media/characters/luca-cervicum/front-gear.svg",
  21031. extra: 377 / 333,
  21032. bottom: 0.006
  21033. }
  21034. },
  21035. },
  21036. [
  21037. {
  21038. name: "Normal",
  21039. height: math.unit(6 + 2 / 12, "feet"),
  21040. default: true
  21041. },
  21042. ]
  21043. ))
  21044. characterMakers.push(() => makeCharacter(
  21045. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21046. {
  21047. front: {
  21048. height: math.unit(6 + 1 / 12, "feet"),
  21049. weight: math.unit(304, "lb"),
  21050. name: "Front",
  21051. image: {
  21052. source: "./media/characters/oliver/front.svg",
  21053. extra: 157 / 143,
  21054. bottom: 0.08
  21055. }
  21056. },
  21057. },
  21058. [
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(6 + 1 / 12, "feet"),
  21062. default: true
  21063. },
  21064. ]
  21065. ))
  21066. characterMakers.push(() => makeCharacter(
  21067. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21068. {
  21069. front: {
  21070. height: math.unit(5 + 7 / 12, "feet"),
  21071. weight: math.unit(140, "lb"),
  21072. name: "Front",
  21073. image: {
  21074. source: "./media/characters/shane/front.svg",
  21075. extra: 304 / 289,
  21076. bottom: 0.005
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Normal",
  21083. height: math.unit(5 + 7 / 12, "feet"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(5 + 9 / 12, "feet"),
  21093. weight: math.unit(178, "lb"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/shin/front.svg",
  21097. extra: 159 / 151,
  21098. bottom: 0.015
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Normal",
  21105. height: math.unit(5 + 9 / 12, "feet"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21112. {
  21113. front: {
  21114. height: math.unit(5 + 10 / 12, "feet"),
  21115. weight: math.unit(168, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/xerxes/front.svg",
  21119. extra: 282 / 260,
  21120. bottom: 0.045
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(5 + 10 / 12, "feet"),
  21128. default: true
  21129. },
  21130. ]
  21131. ))
  21132. characterMakers.push(() => makeCharacter(
  21133. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21134. {
  21135. front: {
  21136. height: math.unit(6 + 7 / 12, "feet"),
  21137. weight: math.unit(208, "lb"),
  21138. name: "Front",
  21139. image: {
  21140. source: "./media/characters/chaska/front.svg",
  21141. extra: 332 / 319,
  21142. bottom: 0.015
  21143. }
  21144. },
  21145. },
  21146. [
  21147. {
  21148. name: "Normal",
  21149. height: math.unit(6 + 7 / 12, "feet"),
  21150. default: true
  21151. },
  21152. ]
  21153. ))
  21154. characterMakers.push(() => makeCharacter(
  21155. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21156. {
  21157. front: {
  21158. height: math.unit(5 + 8 / 12, "feet"),
  21159. weight: math.unit(208, "lb"),
  21160. name: "Front",
  21161. image: {
  21162. source: "./media/characters/enuk/front.svg",
  21163. extra: 437 / 406,
  21164. bottom: 0.02
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(5 + 8 / 12, "feet"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 10 / 12, "feet"),
  21181. weight: math.unit(252, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/bruun/front.svg",
  21185. extra: 197 / 187,
  21186. bottom: 0.012
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(5 + 10 / 12, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21200. {
  21201. front: {
  21202. height: math.unit(6 + 10 / 12, "feet"),
  21203. weight: math.unit(255, "lb"),
  21204. name: "Front",
  21205. image: {
  21206. source: "./media/characters/alexeev/front.svg",
  21207. extra: 213 / 200,
  21208. bottom: 0.05
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(6 + 10 / 12, "feet"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(2 + 8 / 12, "feet"),
  21225. weight: math.unit(22, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/evelyn/front.svg",
  21229. extra: 208 / 180
  21230. }
  21231. },
  21232. },
  21233. [
  21234. {
  21235. name: "Normal",
  21236. height: math.unit(2 + 8 / 12, "feet"),
  21237. default: true
  21238. },
  21239. ]
  21240. ))
  21241. characterMakers.push(() => makeCharacter(
  21242. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21243. {
  21244. front: {
  21245. height: math.unit(5 + 9 / 12, "feet"),
  21246. weight: math.unit(139, "lb"),
  21247. name: "Front",
  21248. image: {
  21249. source: "./media/characters/inca/front.svg",
  21250. extra: 294 / 291,
  21251. bottom: 0.03
  21252. }
  21253. },
  21254. },
  21255. [
  21256. {
  21257. name: "Normal",
  21258. height: math.unit(5 + 9 / 12, "feet"),
  21259. default: true
  21260. },
  21261. ]
  21262. ))
  21263. characterMakers.push(() => makeCharacter(
  21264. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21265. {
  21266. front: {
  21267. height: math.unit(6 + 3 / 12, "feet"),
  21268. weight: math.unit(185, "lb"),
  21269. name: "Front",
  21270. image: {
  21271. source: "./media/characters/mera/front.svg",
  21272. extra: 291 / 277,
  21273. bottom: 0.03
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(6 + 3 / 12, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(6 + 7 / 12, "feet"),
  21290. weight: math.unit(160, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/ceres/front.svg",
  21294. extra: 1023 / 950,
  21295. bottom: 0.027
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(6 + 7 / 12, "feet"),
  21300. weight: math.unit(160, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/ceres/back.svg",
  21304. extra: 1023 / 950
  21305. }
  21306. },
  21307. },
  21308. [
  21309. {
  21310. name: "Normal",
  21311. height: math.unit(6 + 7 / 12, "feet"),
  21312. default: true
  21313. },
  21314. ]
  21315. ))
  21316. characterMakers.push(() => makeCharacter(
  21317. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21318. {
  21319. front: {
  21320. height: math.unit(5 + 10 / 12, "feet"),
  21321. weight: math.unit(150, "lb"),
  21322. name: "Front",
  21323. image: {
  21324. source: "./media/characters/kris/front.svg",
  21325. extra: 885 / 803,
  21326. bottom: 0.03
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(5 + 10 / 12, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(7, "feet"),
  21343. weight: math.unit(120, "kg"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/taluthus/front.svg",
  21347. extra: 903 / 833,
  21348. bottom: 0.015
  21349. }
  21350. },
  21351. },
  21352. [
  21353. {
  21354. name: "Normal",
  21355. height: math.unit(7, "feet"),
  21356. default: true
  21357. },
  21358. {
  21359. name: "Macro",
  21360. height: math.unit(300, "feet")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(5 + 9 / 12, "feet"),
  21369. weight: math.unit(145, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/dawn/front.svg",
  21373. extra: 2094 / 2016,
  21374. bottom: 0.025
  21375. }
  21376. },
  21377. back: {
  21378. height: math.unit(5 + 9 / 12, "feet"),
  21379. weight: math.unit(160, "lb"),
  21380. name: "Back",
  21381. image: {
  21382. source: "./media/characters/dawn/back.svg",
  21383. extra: 2112 / 2080,
  21384. bottom: 0.005
  21385. }
  21386. },
  21387. },
  21388. [
  21389. {
  21390. name: "Normal",
  21391. height: math.unit(6 + 7 / 12, "feet"),
  21392. default: true
  21393. },
  21394. ]
  21395. ))
  21396. characterMakers.push(() => makeCharacter(
  21397. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21398. {
  21399. anthro: {
  21400. height: math.unit(8 + 3 / 12, "feet"),
  21401. weight: math.unit(450, "lb"),
  21402. name: "Anthro",
  21403. image: {
  21404. source: "./media/characters/arador/anthro.svg",
  21405. extra: 1835 / 1718,
  21406. bottom: 0.025
  21407. }
  21408. },
  21409. feral: {
  21410. height: math.unit(4, "feet"),
  21411. weight: math.unit(200, "lb"),
  21412. name: "Feral",
  21413. image: {
  21414. source: "./media/characters/arador/feral.svg",
  21415. extra: 1683 / 1514,
  21416. bottom: 0.07
  21417. }
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(8 + 3 / 12, "feet")
  21424. },
  21425. {
  21426. name: "Macro",
  21427. height: math.unit(82.5, "feet"),
  21428. default: true
  21429. },
  21430. ]
  21431. ))
  21432. characterMakers.push(() => makeCharacter(
  21433. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21434. {
  21435. front: {
  21436. height: math.unit(5 + 10 / 12, "feet"),
  21437. weight: math.unit(125, "lb"),
  21438. name: "Front",
  21439. image: {
  21440. source: "./media/characters/dharsi/front.svg",
  21441. extra: 716 / 630,
  21442. bottom: 0.035
  21443. }
  21444. },
  21445. },
  21446. [
  21447. {
  21448. name: "Nano",
  21449. height: math.unit(100, "nm")
  21450. },
  21451. {
  21452. name: "Micro",
  21453. height: math.unit(2, "inches")
  21454. },
  21455. {
  21456. name: "Normal",
  21457. height: math.unit(5 + 10 / 12, "feet"),
  21458. default: true
  21459. },
  21460. {
  21461. name: "Macro",
  21462. height: math.unit(1000, "feet")
  21463. },
  21464. {
  21465. name: "Megamacro",
  21466. height: math.unit(10, "miles")
  21467. },
  21468. {
  21469. name: "Gigamacro",
  21470. height: math.unit(3000, "miles")
  21471. },
  21472. {
  21473. name: "Teramacro",
  21474. height: math.unit(500000, "miles")
  21475. },
  21476. {
  21477. name: "Teramacro+",
  21478. height: math.unit(30, "galaxies")
  21479. },
  21480. ]
  21481. ))
  21482. characterMakers.push(() => makeCharacter(
  21483. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21484. {
  21485. front: {
  21486. height: math.unit(6, "feet"),
  21487. weight: math.unit(150, "lb"),
  21488. name: "Front",
  21489. image: {
  21490. source: "./media/characters/deathy/front.svg",
  21491. extra: 1552 / 1463,
  21492. bottom: 0.025
  21493. }
  21494. },
  21495. side: {
  21496. height: math.unit(6, "feet"),
  21497. weight: math.unit(150, "lb"),
  21498. name: "Side",
  21499. image: {
  21500. source: "./media/characters/deathy/side.svg",
  21501. extra: 1604 / 1455,
  21502. bottom: 0.025
  21503. }
  21504. },
  21505. back: {
  21506. height: math.unit(6, "feet"),
  21507. weight: math.unit(150, "lb"),
  21508. name: "Back",
  21509. image: {
  21510. source: "./media/characters/deathy/back.svg",
  21511. extra: 1580 / 1463,
  21512. bottom: 0.005
  21513. }
  21514. },
  21515. },
  21516. [
  21517. {
  21518. name: "Micro",
  21519. height: math.unit(5, "millimeters")
  21520. },
  21521. {
  21522. name: "Normal",
  21523. height: math.unit(6 + 5 / 12, "feet"),
  21524. default: true
  21525. },
  21526. ]
  21527. ))
  21528. characterMakers.push(() => makeCharacter(
  21529. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21530. {
  21531. front: {
  21532. height: math.unit(16, "feet"),
  21533. weight: math.unit(4000, "lb"),
  21534. name: "Front",
  21535. image: {
  21536. source: "./media/characters/juniper/front.svg",
  21537. bottom: 0.04
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(16, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(6, "feet"),
  21554. weight: math.unit(150, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/hipster/front.svg",
  21558. extra: 1312 / 1209,
  21559. bottom: 0.025
  21560. }
  21561. },
  21562. back: {
  21563. height: math.unit(6, "feet"),
  21564. weight: math.unit(150, "lb"),
  21565. name: "Back",
  21566. image: {
  21567. source: "./media/characters/hipster/back.svg",
  21568. extra: 1281 / 1196,
  21569. bottom: 0.01
  21570. }
  21571. },
  21572. },
  21573. [
  21574. {
  21575. name: "Micro",
  21576. height: math.unit(1, "mm")
  21577. },
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(4, "inches"),
  21581. default: true
  21582. },
  21583. {
  21584. name: "Macro",
  21585. height: math.unit(500, "feet")
  21586. },
  21587. {
  21588. name: "Megamacro",
  21589. height: math.unit(1000, "miles")
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(6, "feet"),
  21598. weight: math.unit(150, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/tendirmuldr/front.svg",
  21602. extra: 1878 / 1772,
  21603. bottom: 0.015
  21604. }
  21605. },
  21606. },
  21607. [
  21608. {
  21609. name: "Megamacro",
  21610. height: math.unit(1500, "miles"),
  21611. default: true
  21612. },
  21613. ]
  21614. ))
  21615. characterMakers.push(() => makeCharacter(
  21616. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21617. {
  21618. front: {
  21619. height: math.unit(14, "feet"),
  21620. weight: math.unit(12000, "lb"),
  21621. name: "Front",
  21622. image: {
  21623. source: "./media/characters/mort/front.svg",
  21624. extra: 365 / 318,
  21625. bottom: 0.01
  21626. }
  21627. },
  21628. side: {
  21629. height: math.unit(14, "feet"),
  21630. weight: math.unit(12000, "lb"),
  21631. name: "Side",
  21632. image: {
  21633. source: "./media/characters/mort/side.svg",
  21634. extra: 365 / 318,
  21635. bottom: 0.052
  21636. },
  21637. default: true
  21638. },
  21639. back: {
  21640. height: math.unit(14, "feet"),
  21641. weight: math.unit(12000, "lb"),
  21642. name: "Back",
  21643. image: {
  21644. source: "./media/characters/mort/back.svg",
  21645. extra: 371 / 332,
  21646. bottom: 0.18
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(14, "feet"),
  21654. default: true
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21660. {
  21661. front: {
  21662. height: math.unit(8, "feet"),
  21663. weight: math.unit(1, "ton"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/lycoa/front.svg",
  21667. extra: 1836/1728,
  21668. bottom: 81/1917
  21669. }
  21670. },
  21671. back: {
  21672. height: math.unit(8, "feet"),
  21673. weight: math.unit(1, "ton"),
  21674. name: "Back",
  21675. image: {
  21676. source: "./media/characters/lycoa/back.svg",
  21677. extra: 1785/1720,
  21678. bottom: 91/1876
  21679. }
  21680. },
  21681. head: {
  21682. height: math.unit(1.6243, "feet"),
  21683. name: "Head",
  21684. image: {
  21685. source: "./media/characters/lycoa/head.svg",
  21686. extra: 1011/782,
  21687. bottom: 0/1011
  21688. }
  21689. },
  21690. tailmaw: {
  21691. height: math.unit(1.9, "feet"),
  21692. name: "Tailmaw",
  21693. image: {
  21694. source: "./media/characters/lycoa/tailmaw.svg"
  21695. }
  21696. },
  21697. tentacles: {
  21698. height: math.unit(2.1, "feet"),
  21699. name: "Tentacles",
  21700. image: {
  21701. source: "./media/characters/lycoa/tentacles.svg"
  21702. }
  21703. },
  21704. dick: {
  21705. height: math.unit(1.73, "feet"),
  21706. name: "Dick",
  21707. image: {
  21708. source: "./media/characters/lycoa/dick.svg"
  21709. }
  21710. },
  21711. },
  21712. [
  21713. {
  21714. name: "Normal",
  21715. height: math.unit(8, "feet"),
  21716. default: true
  21717. },
  21718. {
  21719. name: "Macro",
  21720. height: math.unit(30, "feet")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21726. {
  21727. front: {
  21728. height: math.unit(4 + 2 / 12, "feet"),
  21729. weight: math.unit(70, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/naldara/front.svg",
  21733. extra: 1664/1387,
  21734. bottom: 81/1745
  21735. },
  21736. form: "anthro",
  21737. default: true
  21738. },
  21739. naga: {
  21740. height: math.unit(20, "feet"),
  21741. weight: math.unit(15000, "kg"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/naldara/naga.svg",
  21745. extra: 1590/1396,
  21746. bottom: 285/1875
  21747. },
  21748. form: "naga",
  21749. default: true
  21750. },
  21751. },
  21752. [
  21753. {
  21754. name: "Normal",
  21755. height: math.unit(4 + 2 / 12, "feet"),
  21756. form: "anthro",
  21757. default: true
  21758. },
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(20, "feet"),
  21762. form: "naga",
  21763. default: true
  21764. },
  21765. ],
  21766. {
  21767. "anthro": {
  21768. name: "Anthro",
  21769. default: true
  21770. },
  21771. "naga": {
  21772. name: "Naga"
  21773. }
  21774. }
  21775. ))
  21776. characterMakers.push(() => makeCharacter(
  21777. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21778. {
  21779. front: {
  21780. height: math.unit(13 + 7 / 12, "feet"),
  21781. weight: math.unit(1500, "lb"),
  21782. name: "Front",
  21783. image: {
  21784. source: "./media/characters/briar/front.svg",
  21785. extra: 1223/1157,
  21786. bottom: 123/1346
  21787. }
  21788. },
  21789. },
  21790. [
  21791. {
  21792. name: "Normal",
  21793. height: math.unit(13 + 7 / 12, "feet"),
  21794. default: true
  21795. },
  21796. ]
  21797. ))
  21798. characterMakers.push(() => makeCharacter(
  21799. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21800. {
  21801. side: {
  21802. height: math.unit(16, "feet"),
  21803. weight: math.unit(500, "lb"),
  21804. name: "Side",
  21805. image: {
  21806. source: "./media/characters/vanguard/side.svg",
  21807. extra: 1022/914,
  21808. bottom: 30/1052
  21809. }
  21810. },
  21811. sideAlt: {
  21812. height: math.unit(10, "feet"),
  21813. weight: math.unit(500, "lb"),
  21814. name: "Side (Alt)",
  21815. image: {
  21816. source: "./media/characters/vanguard/side-alt.svg",
  21817. extra: 502 / 425,
  21818. bottom: 0.087
  21819. }
  21820. },
  21821. },
  21822. [
  21823. {
  21824. name: "Normal",
  21825. height: math.unit(17.71, "feet"),
  21826. default: true
  21827. },
  21828. ]
  21829. ))
  21830. characterMakers.push(() => makeCharacter(
  21831. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21832. {
  21833. front: {
  21834. height: math.unit(7.5, "feet"),
  21835. weight: math.unit(2, "lb"),
  21836. name: "Front",
  21837. image: {
  21838. source: "./media/characters/artemis/work-safe-front.svg",
  21839. extra: 1192 / 1075,
  21840. bottom: 0.07
  21841. },
  21842. form: "work-safe",
  21843. default: true
  21844. },
  21845. frontNsfw: {
  21846. height: math.unit(7.5, "feet"),
  21847. weight: math.unit(2, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/artemis/calibrating-front.svg",
  21851. extra: 1192 / 1075,
  21852. bottom: 0.07
  21853. },
  21854. form: "calibrating",
  21855. default: true
  21856. },
  21857. frontNsfwer: {
  21858. height: math.unit(7.5, "feet"),
  21859. weight: math.unit(2, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/artemis/oversize-load-front.svg",
  21863. extra: 1192 / 1075,
  21864. bottom: 0.07
  21865. },
  21866. form: "oversize-load",
  21867. default: true
  21868. },
  21869. side: {
  21870. height: math.unit(7.5, "feet"),
  21871. weight: math.unit(2, "lb"),
  21872. name: "Side",
  21873. image: {
  21874. source: "./media/characters/artemis/work-safe-side.svg",
  21875. extra: 1192 / 1075,
  21876. bottom: 0.07
  21877. },
  21878. form: "work-safe"
  21879. },
  21880. sideNsfw: {
  21881. height: math.unit(7.5, "feet"),
  21882. weight: math.unit(2, "lb"),
  21883. name: "Side",
  21884. image: {
  21885. source: "./media/characters/artemis/calibrating-side.svg",
  21886. extra: 1192 / 1075,
  21887. bottom: 0.07
  21888. },
  21889. form: "calibrating"
  21890. },
  21891. sideNsfwer: {
  21892. height: math.unit(7.5, "feet"),
  21893. weight: math.unit(2, "lb"),
  21894. name: "Side",
  21895. image: {
  21896. source: "./media/characters/artemis/oversize-load-side.svg",
  21897. extra: 1192 / 1075,
  21898. bottom: 0.07
  21899. },
  21900. form: "oversize-load"
  21901. },
  21902. maw: {
  21903. height: math.unit(1.1, "feet"),
  21904. name: "Maw",
  21905. image: {
  21906. source: "./media/characters/artemis/maw.svg"
  21907. },
  21908. form: "work-safe"
  21909. },
  21910. stomach: {
  21911. height: math.unit(0.95, "feet"),
  21912. name: "Stomach",
  21913. image: {
  21914. source: "./media/characters/artemis/stomach.svg"
  21915. },
  21916. form: "work-safe"
  21917. },
  21918. dickCanine: {
  21919. height: math.unit(1, "feet"),
  21920. name: "Dick (Canine)",
  21921. image: {
  21922. source: "./media/characters/artemis/dick-canine.svg"
  21923. },
  21924. form: "calibrating"
  21925. },
  21926. dickEquine: {
  21927. height: math.unit(0.85, "feet"),
  21928. name: "Dick (Equine)",
  21929. image: {
  21930. source: "./media/characters/artemis/dick-equine.svg"
  21931. },
  21932. form: "calibrating"
  21933. },
  21934. dickExotic: {
  21935. height: math.unit(0.85, "feet"),
  21936. name: "Dick (Exotic)",
  21937. image: {
  21938. source: "./media/characters/artemis/dick-exotic.svg"
  21939. },
  21940. form: "calibrating"
  21941. },
  21942. dickCanineBigger: {
  21943. height: math.unit(1 * 1.33, "feet"),
  21944. name: "Dick (Canine)",
  21945. image: {
  21946. source: "./media/characters/artemis/dick-canine.svg"
  21947. },
  21948. form: "oversize-load"
  21949. },
  21950. dickEquineBigger: {
  21951. height: math.unit(0.85 * 1.33, "feet"),
  21952. name: "Dick (Equine)",
  21953. image: {
  21954. source: "./media/characters/artemis/dick-equine.svg"
  21955. },
  21956. form: "oversize-load"
  21957. },
  21958. dickExoticBigger: {
  21959. height: math.unit(0.85 * 1.33, "feet"),
  21960. name: "Dick (Exotic)",
  21961. image: {
  21962. source: "./media/characters/artemis/dick-exotic.svg"
  21963. },
  21964. form: "oversize-load"
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Normal",
  21970. height: math.unit(7.5, "feet"),
  21971. form: "work-safe",
  21972. default: true
  21973. },
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(7.5, "feet"),
  21977. form: "calibrating",
  21978. default: true
  21979. },
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(7.5, "feet"),
  21983. form: "oversize-load",
  21984. default: true
  21985. },
  21986. {
  21987. name: "Enlarged",
  21988. height: math.unit(12, "feet"),
  21989. form: "work-safe",
  21990. },
  21991. {
  21992. name: "Enlarged",
  21993. height: math.unit(12, "feet"),
  21994. form: "calibrating",
  21995. },
  21996. {
  21997. name: "Enlarged",
  21998. height: math.unit(12, "feet"),
  21999. form: "oversize-load",
  22000. },
  22001. ],
  22002. {
  22003. "work-safe": {
  22004. name: "Work-Safe",
  22005. default: true
  22006. },
  22007. "calibrating": {
  22008. name: "Calibrating"
  22009. },
  22010. "oversize-load": {
  22011. name: "Oversize Load"
  22012. }
  22013. }
  22014. ))
  22015. characterMakers.push(() => makeCharacter(
  22016. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22017. {
  22018. front: {
  22019. height: math.unit(5 + 3 / 12, "feet"),
  22020. weight: math.unit(160, "lb"),
  22021. name: "Front",
  22022. image: {
  22023. source: "./media/characters/kira/front.svg",
  22024. extra: 906 / 786,
  22025. bottom: 0.01
  22026. }
  22027. },
  22028. back: {
  22029. height: math.unit(5 + 3 / 12, "feet"),
  22030. weight: math.unit(160, "lb"),
  22031. name: "Back",
  22032. image: {
  22033. source: "./media/characters/kira/back.svg",
  22034. extra: 882 / 757,
  22035. bottom: 0.005
  22036. }
  22037. },
  22038. frontDressed: {
  22039. height: math.unit(5 + 3 / 12, "feet"),
  22040. weight: math.unit(160, "lb"),
  22041. name: "Front (Dressed)",
  22042. image: {
  22043. source: "./media/characters/kira/front-dressed.svg",
  22044. extra: 906 / 786,
  22045. bottom: 0.01
  22046. }
  22047. },
  22048. beans: {
  22049. height: math.unit(0.92, "feet"),
  22050. name: "Beans",
  22051. image: {
  22052. source: "./media/characters/kira/beans.svg"
  22053. }
  22054. },
  22055. },
  22056. [
  22057. {
  22058. name: "Normal",
  22059. height: math.unit(5 + 3 / 12, "feet"),
  22060. default: true
  22061. },
  22062. ]
  22063. ))
  22064. characterMakers.push(() => makeCharacter(
  22065. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22066. {
  22067. front: {
  22068. height: math.unit(5 + 4 / 12, "feet"),
  22069. weight: math.unit(145, "lb"),
  22070. name: "Front",
  22071. image: {
  22072. source: "./media/characters/scramble/front.svg",
  22073. extra: 763 / 727,
  22074. bottom: 0.05
  22075. }
  22076. },
  22077. back: {
  22078. height: math.unit(5 + 4 / 12, "feet"),
  22079. weight: math.unit(145, "lb"),
  22080. name: "Back",
  22081. image: {
  22082. source: "./media/characters/scramble/back.svg",
  22083. extra: 826 / 737,
  22084. bottom: 0.002
  22085. }
  22086. },
  22087. },
  22088. [
  22089. {
  22090. name: "Normal",
  22091. height: math.unit(5 + 4 / 12, "feet"),
  22092. default: true
  22093. },
  22094. ]
  22095. ))
  22096. characterMakers.push(() => makeCharacter(
  22097. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22098. {
  22099. side: {
  22100. height: math.unit(6 + 2 / 12, "feet"),
  22101. weight: math.unit(190, "lb"),
  22102. name: "Side",
  22103. image: {
  22104. source: "./media/characters/biscuit/side.svg",
  22105. extra: 858 / 791,
  22106. bottom: 0.044
  22107. }
  22108. },
  22109. },
  22110. [
  22111. {
  22112. name: "Normal",
  22113. height: math.unit(6 + 2 / 12, "feet"),
  22114. default: true
  22115. },
  22116. ]
  22117. ))
  22118. characterMakers.push(() => makeCharacter(
  22119. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22120. {
  22121. front: {
  22122. height: math.unit(5 + 2 / 12, "feet"),
  22123. weight: math.unit(120, "lb"),
  22124. name: "Front",
  22125. image: {
  22126. source: "./media/characters/poffin/front.svg",
  22127. extra: 786 / 680,
  22128. bottom: 0.005
  22129. }
  22130. },
  22131. },
  22132. [
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(5 + 2 / 12, "feet"),
  22136. default: true
  22137. },
  22138. ]
  22139. ))
  22140. characterMakers.push(() => makeCharacter(
  22141. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22142. {
  22143. front: {
  22144. height: math.unit(6 + 3 / 12, "feet"),
  22145. weight: math.unit(519, "lb"),
  22146. name: "Front",
  22147. image: {
  22148. source: "./media/characters/dhari/front.svg",
  22149. extra: 1048 / 946,
  22150. bottom: 0.015
  22151. }
  22152. },
  22153. back: {
  22154. height: math.unit(6 + 3 / 12, "feet"),
  22155. weight: math.unit(519, "lb"),
  22156. name: "Back",
  22157. image: {
  22158. source: "./media/characters/dhari/back.svg",
  22159. extra: 1048 / 931,
  22160. bottom: 0.005
  22161. }
  22162. },
  22163. frontDressed: {
  22164. height: math.unit(6 + 3 / 12, "feet"),
  22165. weight: math.unit(519, "lb"),
  22166. name: "Front (Dressed)",
  22167. image: {
  22168. source: "./media/characters/dhari/front-dressed.svg",
  22169. extra: 1713 / 1546,
  22170. bottom: 0.02
  22171. }
  22172. },
  22173. backDressed: {
  22174. height: math.unit(6 + 3 / 12, "feet"),
  22175. weight: math.unit(519, "lb"),
  22176. name: "Back (Dressed)",
  22177. image: {
  22178. source: "./media/characters/dhari/back-dressed.svg",
  22179. extra: 1699 / 1537,
  22180. bottom: 0.01
  22181. }
  22182. },
  22183. maw: {
  22184. height: math.unit(0.95, "feet"),
  22185. name: "Maw",
  22186. image: {
  22187. source: "./media/characters/dhari/maw.svg"
  22188. }
  22189. },
  22190. wereFront: {
  22191. height: math.unit(12 + 8 / 12, "feet"),
  22192. weight: math.unit(4000, "lb"),
  22193. name: "Front (Were)",
  22194. image: {
  22195. source: "./media/characters/dhari/were-front.svg",
  22196. extra: 1065 / 969,
  22197. bottom: 0.015
  22198. }
  22199. },
  22200. wereBack: {
  22201. height: math.unit(12 + 8 / 12, "feet"),
  22202. weight: math.unit(4000, "lb"),
  22203. name: "Back (Were)",
  22204. image: {
  22205. source: "./media/characters/dhari/were-back.svg",
  22206. extra: 1065 / 969,
  22207. bottom: 0.012
  22208. }
  22209. },
  22210. wereMaw: {
  22211. height: math.unit(0.625, "meters"),
  22212. name: "Maw (Were)",
  22213. image: {
  22214. source: "./media/characters/dhari/were-maw.svg"
  22215. }
  22216. },
  22217. },
  22218. [
  22219. {
  22220. name: "Normal",
  22221. height: math.unit(6 + 3 / 12, "feet"),
  22222. default: true
  22223. },
  22224. ]
  22225. ))
  22226. characterMakers.push(() => makeCharacter(
  22227. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22228. {
  22229. anthro: {
  22230. height: math.unit(5 + 7 / 12, "feet"),
  22231. weight: math.unit(175, "lb"),
  22232. name: "Anthro",
  22233. image: {
  22234. source: "./media/characters/rena-dyne/anthro.svg",
  22235. extra: 1849 / 1785,
  22236. bottom: 0.005
  22237. }
  22238. },
  22239. taur: {
  22240. height: math.unit(15 + 6 / 12, "feet"),
  22241. weight: math.unit(8000, "lb"),
  22242. name: "Taur",
  22243. image: {
  22244. source: "./media/characters/rena-dyne/taur.svg",
  22245. extra: 2315 / 2234,
  22246. bottom: 0.033
  22247. }
  22248. },
  22249. },
  22250. [
  22251. {
  22252. name: "Normal",
  22253. height: math.unit(5 + 7 / 12, "feet"),
  22254. default: true
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(8, "feet"),
  22263. weight: math.unit(600, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/weremeep/front.svg",
  22267. extra: 970/849,
  22268. bottom: 7/977
  22269. }
  22270. },
  22271. },
  22272. [
  22273. {
  22274. name: "Normal",
  22275. height: math.unit(8, "feet"),
  22276. default: true
  22277. },
  22278. {
  22279. name: "Lorg",
  22280. height: math.unit(12, "feet")
  22281. },
  22282. {
  22283. name: "Oh Lawd She Comin'",
  22284. height: math.unit(20, "feet")
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22290. {
  22291. front: {
  22292. height: math.unit(4, "feet"),
  22293. weight: math.unit(90, "lb"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/reza/front.svg",
  22297. extra: 1183 / 1111,
  22298. bottom: 0.017
  22299. }
  22300. },
  22301. back: {
  22302. height: math.unit(4, "feet"),
  22303. weight: math.unit(90, "lb"),
  22304. name: "Back",
  22305. image: {
  22306. source: "./media/characters/reza/back.svg",
  22307. extra: 1183 / 1111,
  22308. bottom: 0.01
  22309. }
  22310. },
  22311. drake: {
  22312. height: math.unit(30, "feet"),
  22313. weight: math.unit(246960, "lb"),
  22314. name: "Drake",
  22315. image: {
  22316. source: "./media/characters/reza/drake.svg",
  22317. extra: 2350 / 2024,
  22318. bottom: 60.7 / 2403
  22319. }
  22320. },
  22321. },
  22322. [
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(4, "feet"),
  22326. default: true
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22332. {
  22333. side: {
  22334. height: math.unit(15, "feet"),
  22335. weight: math.unit(14, "tons"),
  22336. name: "Side",
  22337. image: {
  22338. source: "./media/characters/athea/side.svg",
  22339. extra: 960 / 540,
  22340. bottom: 0.003
  22341. }
  22342. },
  22343. sitting: {
  22344. height: math.unit(6 * 2.85, "feet"),
  22345. weight: math.unit(14, "tons"),
  22346. name: "Sitting",
  22347. image: {
  22348. source: "./media/characters/athea/sitting.svg",
  22349. extra: 621 / 581,
  22350. bottom: 0.075
  22351. }
  22352. },
  22353. maw: {
  22354. height: math.unit(7.59498031496063, "feet"),
  22355. name: "Maw",
  22356. image: {
  22357. source: "./media/characters/athea/maw.svg"
  22358. }
  22359. },
  22360. },
  22361. [
  22362. {
  22363. name: "Lap Cat",
  22364. height: math.unit(2.5, "feet")
  22365. },
  22366. {
  22367. name: "Minimacro",
  22368. height: math.unit(15, "feet"),
  22369. default: true
  22370. },
  22371. {
  22372. name: "Macro",
  22373. height: math.unit(120, "feet")
  22374. },
  22375. {
  22376. name: "Macro+",
  22377. height: math.unit(640, "feet")
  22378. },
  22379. {
  22380. name: "Colossus",
  22381. height: math.unit(2.2, "miles")
  22382. },
  22383. ]
  22384. ))
  22385. characterMakers.push(() => makeCharacter(
  22386. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22387. {
  22388. front: {
  22389. height: math.unit(8 + 8 / 12, "feet"),
  22390. weight: math.unit(130, "kg"),
  22391. name: "Front",
  22392. image: {
  22393. source: "./media/characters/seroko/front.svg",
  22394. extra: 1385 / 1280,
  22395. bottom: 0.025
  22396. }
  22397. },
  22398. back: {
  22399. height: math.unit(8 + 8 / 12, "feet"),
  22400. weight: math.unit(130, "kg"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/seroko/back.svg",
  22404. extra: 1369 / 1238,
  22405. bottom: 0.018
  22406. }
  22407. },
  22408. frontDressed: {
  22409. height: math.unit(8 + 8 / 12, "feet"),
  22410. weight: math.unit(130, "kg"),
  22411. name: "Front (Dressed)",
  22412. image: {
  22413. source: "./media/characters/seroko/front-dressed.svg",
  22414. extra: 1366 / 1275,
  22415. bottom: 0.03
  22416. }
  22417. },
  22418. },
  22419. [
  22420. {
  22421. name: "Normal",
  22422. height: math.unit(8 + 8 / 12, "feet"),
  22423. default: true
  22424. },
  22425. ]
  22426. ))
  22427. characterMakers.push(() => makeCharacter(
  22428. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22429. {
  22430. front: {
  22431. height: math.unit(5.5, "feet"),
  22432. weight: math.unit(160, "lb"),
  22433. name: "Front",
  22434. image: {
  22435. source: "./media/characters/quatzi/front.svg",
  22436. extra: 2346 / 2242,
  22437. bottom: 0.015
  22438. }
  22439. },
  22440. },
  22441. [
  22442. {
  22443. name: "Normal",
  22444. height: math.unit(5.5, "feet"),
  22445. default: true
  22446. },
  22447. {
  22448. name: "Big",
  22449. height: math.unit(7.7, "feet")
  22450. },
  22451. ]
  22452. ))
  22453. characterMakers.push(() => makeCharacter(
  22454. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22455. {
  22456. front: {
  22457. height: math.unit(5 + 11 / 12, "feet"),
  22458. weight: math.unit(180, "lb"),
  22459. name: "Front",
  22460. image: {
  22461. source: "./media/characters/sen/front.svg",
  22462. extra: 1321 / 1254,
  22463. bottom: 0.015
  22464. }
  22465. },
  22466. side: {
  22467. height: math.unit(5 + 11 / 12, "feet"),
  22468. weight: math.unit(180, "lb"),
  22469. name: "Side",
  22470. image: {
  22471. source: "./media/characters/sen/side.svg",
  22472. extra: 1321 / 1254,
  22473. bottom: 0.007
  22474. }
  22475. },
  22476. back: {
  22477. height: math.unit(5 + 11 / 12, "feet"),
  22478. weight: math.unit(180, "lb"),
  22479. name: "Back",
  22480. image: {
  22481. source: "./media/characters/sen/back.svg",
  22482. extra: 1321 / 1254
  22483. }
  22484. },
  22485. },
  22486. [
  22487. {
  22488. name: "Normal",
  22489. height: math.unit(5 + 11 / 12, "feet"),
  22490. default: true
  22491. },
  22492. ]
  22493. ))
  22494. characterMakers.push(() => makeCharacter(
  22495. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22496. {
  22497. front: {
  22498. height: math.unit(166.6, "cm"),
  22499. weight: math.unit(66.6, "kg"),
  22500. name: "Front",
  22501. image: {
  22502. source: "./media/characters/fruity/front.svg",
  22503. extra: 1510 / 1386,
  22504. bottom: 0.04
  22505. }
  22506. },
  22507. back: {
  22508. height: math.unit(166.6, "cm"),
  22509. weight: math.unit(66.6, "lb"),
  22510. name: "Back",
  22511. image: {
  22512. source: "./media/characters/fruity/back.svg",
  22513. extra: 1563 / 1435,
  22514. bottom: 0.005
  22515. }
  22516. },
  22517. },
  22518. [
  22519. {
  22520. name: "Normal",
  22521. height: math.unit(166.6, "cm"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Demonic",
  22526. height: math.unit(166.6, "feet")
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22532. {
  22533. side: {
  22534. height: math.unit(10, "feet"),
  22535. weight: math.unit(500, "lb"),
  22536. name: "Side",
  22537. image: {
  22538. source: "./media/characters/zost/side.svg",
  22539. extra: 2870/2533,
  22540. bottom: 252/3122
  22541. }
  22542. },
  22543. mawFront: {
  22544. height: math.unit(1.08, "meters"),
  22545. name: "Maw (Front)",
  22546. image: {
  22547. source: "./media/characters/zost/maw-front.svg"
  22548. }
  22549. },
  22550. mawSide: {
  22551. height: math.unit(2.66, "feet"),
  22552. name: "Maw (Side)",
  22553. image: {
  22554. source: "./media/characters/zost/maw-side.svg"
  22555. }
  22556. },
  22557. wingspan: {
  22558. height: math.unit(7.4, "feet"),
  22559. name: "Wingspan",
  22560. image: {
  22561. source: "./media/characters/zost/wingspan.svg"
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(10, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(5 + 4 / 12, "feet"),
  22578. weight: math.unit(120, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/luci/front.svg",
  22582. extra: 1985 / 1884,
  22583. bottom: 0.04
  22584. }
  22585. },
  22586. back: {
  22587. height: math.unit(5 + 4 / 12, "feet"),
  22588. weight: math.unit(120, "lb"),
  22589. name: "Back",
  22590. image: {
  22591. source: "./media/characters/luci/back.svg",
  22592. extra: 1892 / 1791,
  22593. bottom: 0.002
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(5 + 4 / 12, "feet"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22607. {
  22608. front: {
  22609. height: math.unit(1500, "feet"),
  22610. weight: math.unit(3.8e6, "tons"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/2th/front.svg",
  22614. extra: 3489 / 3350,
  22615. bottom: 0.1
  22616. }
  22617. },
  22618. foot: {
  22619. height: math.unit(461, "feet"),
  22620. name: "Foot",
  22621. image: {
  22622. source: "./media/characters/2th/foot.svg"
  22623. }
  22624. },
  22625. },
  22626. [
  22627. {
  22628. name: "\"Micro\"",
  22629. height: math.unit(15 + 7 / 12, "feet")
  22630. },
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(1500, "feet"),
  22634. default: true
  22635. },
  22636. {
  22637. name: "Macro",
  22638. height: math.unit(5000, "feet")
  22639. },
  22640. {
  22641. name: "Megamacro",
  22642. height: math.unit(15, "miles")
  22643. },
  22644. {
  22645. name: "Gigamacro",
  22646. height: math.unit(4000, "miles")
  22647. },
  22648. {
  22649. name: "Galactic",
  22650. height: math.unit(50, "AU")
  22651. },
  22652. ]
  22653. ))
  22654. characterMakers.push(() => makeCharacter(
  22655. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22656. {
  22657. front: {
  22658. height: math.unit(5 + 6 / 12, "feet"),
  22659. weight: math.unit(220, "lb"),
  22660. name: "Front",
  22661. image: {
  22662. source: "./media/characters/amethyst/front.svg",
  22663. extra: 2078 / 2040,
  22664. bottom: 0.045
  22665. }
  22666. },
  22667. back: {
  22668. height: math.unit(5 + 6 / 12, "feet"),
  22669. weight: math.unit(220, "lb"),
  22670. name: "Back",
  22671. image: {
  22672. source: "./media/characters/amethyst/back.svg",
  22673. extra: 2021 / 1989,
  22674. bottom: 0.02
  22675. }
  22676. },
  22677. },
  22678. [
  22679. {
  22680. name: "Normal",
  22681. height: math.unit(5 + 6 / 12, "feet"),
  22682. default: true
  22683. },
  22684. ]
  22685. ))
  22686. characterMakers.push(() => makeCharacter(
  22687. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22688. {
  22689. front: {
  22690. height: math.unit(4 + 11 / 12, "feet"),
  22691. weight: math.unit(120, "lb"),
  22692. name: "Front",
  22693. image: {
  22694. source: "./media/characters/yumi-akiyama/front.svg",
  22695. extra: 1327 / 1235,
  22696. bottom: 0.02
  22697. }
  22698. },
  22699. back: {
  22700. height: math.unit(4 + 11 / 12, "feet"),
  22701. weight: math.unit(120, "lb"),
  22702. name: "Back",
  22703. image: {
  22704. source: "./media/characters/yumi-akiyama/back.svg",
  22705. extra: 1287 / 1245,
  22706. bottom: 0.002
  22707. }
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Galactic",
  22713. height: math.unit(50, "galaxies"),
  22714. default: true
  22715. },
  22716. {
  22717. name: "Universal",
  22718. height: math.unit(100, "universes")
  22719. },
  22720. ]
  22721. ))
  22722. characterMakers.push(() => makeCharacter(
  22723. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22724. {
  22725. front: {
  22726. height: math.unit(8, "feet"),
  22727. weight: math.unit(500, "lb"),
  22728. name: "Front",
  22729. image: {
  22730. source: "./media/characters/rifter-yrmori/front.svg",
  22731. extra: 1180 / 1125,
  22732. bottom: 0.02
  22733. }
  22734. },
  22735. back: {
  22736. height: math.unit(8, "feet"),
  22737. weight: math.unit(500, "lb"),
  22738. name: "Back",
  22739. image: {
  22740. source: "./media/characters/rifter-yrmori/back.svg",
  22741. extra: 1190 / 1145,
  22742. bottom: 0.001
  22743. }
  22744. },
  22745. wings: {
  22746. height: math.unit(7.75, "feet"),
  22747. weight: math.unit(500, "lb"),
  22748. name: "Wings",
  22749. image: {
  22750. source: "./media/characters/rifter-yrmori/wings.svg",
  22751. extra: 1357 / 1285
  22752. }
  22753. },
  22754. maw: {
  22755. height: math.unit(0.8, "feet"),
  22756. name: "Maw",
  22757. image: {
  22758. source: "./media/characters/rifter-yrmori/maw.svg"
  22759. }
  22760. },
  22761. mawfront: {
  22762. height: math.unit(1.45, "feet"),
  22763. name: "Maw (Front)",
  22764. image: {
  22765. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(8, "feet"),
  22773. default: true
  22774. },
  22775. {
  22776. name: "Macro",
  22777. height: math.unit(42, "meters")
  22778. },
  22779. ]
  22780. ))
  22781. characterMakers.push(() => makeCharacter(
  22782. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22783. {
  22784. were: {
  22785. height: math.unit(25 + 6 / 12, "feet"),
  22786. weight: math.unit(10000, "lb"),
  22787. name: "Were",
  22788. image: {
  22789. source: "./media/characters/tahajin/were.svg",
  22790. extra: 801 / 770,
  22791. bottom: 0.042
  22792. }
  22793. },
  22794. aquatic: {
  22795. height: math.unit(6 + 4 / 12, "feet"),
  22796. weight: math.unit(160, "lb"),
  22797. name: "Aquatic",
  22798. image: {
  22799. source: "./media/characters/tahajin/aquatic.svg",
  22800. extra: 572 / 542,
  22801. bottom: 0.04
  22802. }
  22803. },
  22804. chow: {
  22805. height: math.unit(8 + 11 / 12, "feet"),
  22806. weight: math.unit(450, "lb"),
  22807. name: "Chow",
  22808. image: {
  22809. source: "./media/characters/tahajin/chow.svg",
  22810. extra: 660 / 640,
  22811. bottom: 0.015
  22812. }
  22813. },
  22814. demiNaga: {
  22815. height: math.unit(6 + 8 / 12, "feet"),
  22816. weight: math.unit(300, "lb"),
  22817. name: "Demi Naga",
  22818. image: {
  22819. source: "./media/characters/tahajin/demi-naga.svg",
  22820. extra: 643 / 615,
  22821. bottom: 0.1
  22822. }
  22823. },
  22824. data: {
  22825. height: math.unit(5, "inches"),
  22826. weight: math.unit(0.1, "lb"),
  22827. name: "Data",
  22828. image: {
  22829. source: "./media/characters/tahajin/data.svg"
  22830. }
  22831. },
  22832. fluu: {
  22833. height: math.unit(5 + 7 / 12, "feet"),
  22834. weight: math.unit(140, "lb"),
  22835. name: "Fluu",
  22836. image: {
  22837. source: "./media/characters/tahajin/fluu.svg",
  22838. extra: 628 / 592,
  22839. bottom: 0.02
  22840. }
  22841. },
  22842. starWarrior: {
  22843. height: math.unit(4 + 5 / 12, "feet"),
  22844. weight: math.unit(50, "lb"),
  22845. name: "Star Warrior",
  22846. image: {
  22847. source: "./media/characters/tahajin/star-warrior.svg"
  22848. }
  22849. },
  22850. },
  22851. [
  22852. {
  22853. name: "Normal",
  22854. height: math.unit(25 + 6 / 12, "feet"),
  22855. default: true
  22856. },
  22857. ]
  22858. ))
  22859. characterMakers.push(() => makeCharacter(
  22860. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22861. {
  22862. front: {
  22863. height: math.unit(8, "feet"),
  22864. weight: math.unit(350, "lb"),
  22865. name: "Front",
  22866. image: {
  22867. source: "./media/characters/gabira/front.svg",
  22868. extra: 1261/1154,
  22869. bottom: 51/1312
  22870. }
  22871. },
  22872. back: {
  22873. height: math.unit(8, "feet"),
  22874. weight: math.unit(350, "lb"),
  22875. name: "Back",
  22876. image: {
  22877. source: "./media/characters/gabira/back.svg",
  22878. extra: 1265/1163,
  22879. bottom: 46/1311
  22880. }
  22881. },
  22882. head: {
  22883. height: math.unit(2.85, "feet"),
  22884. name: "Head",
  22885. image: {
  22886. source: "./media/characters/gabira/head.svg"
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(8, "feet"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22900. {
  22901. front: {
  22902. height: math.unit(5 + 3 / 12, "feet"),
  22903. weight: math.unit(137, "lb"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/sasha-katraine/front.svg",
  22907. extra: 1745/1694,
  22908. bottom: 37/1782
  22909. }
  22910. },
  22911. back: {
  22912. height: math.unit(5 + 3 / 12, "feet"),
  22913. weight: math.unit(137, "lb"),
  22914. name: "Back",
  22915. image: {
  22916. source: "./media/characters/sasha-katraine/back.svg",
  22917. extra: 1776/1699,
  22918. bottom: 26/1802
  22919. }
  22920. },
  22921. },
  22922. [
  22923. {
  22924. name: "Micro",
  22925. height: math.unit(5, "inches")
  22926. },
  22927. {
  22928. name: "Normal",
  22929. height: math.unit(5 + 3 / 12, "feet"),
  22930. default: true
  22931. },
  22932. ]
  22933. ))
  22934. characterMakers.push(() => makeCharacter(
  22935. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22936. {
  22937. side: {
  22938. height: math.unit(4, "inches"),
  22939. weight: math.unit(200, "grams"),
  22940. name: "Side",
  22941. image: {
  22942. source: "./media/characters/der/side.svg",
  22943. extra: 719 / 400,
  22944. bottom: 30.6 / 749.9187
  22945. }
  22946. },
  22947. },
  22948. [
  22949. {
  22950. name: "Micro",
  22951. height: math.unit(4, "inches"),
  22952. default: true
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22958. {
  22959. side: {
  22960. height: math.unit(30, "meters"),
  22961. weight: math.unit(700, "tonnes"),
  22962. name: "Side",
  22963. image: {
  22964. source: "./media/characters/fixerdragon/side.svg",
  22965. extra: (1293.0514 - 116.03) / 1106.86,
  22966. bottom: 116.03 / 1293.0514
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Planck",
  22973. height: math.unit(1.6e-35, "meters")
  22974. },
  22975. {
  22976. name: "Micro",
  22977. height: math.unit(0.4, "meters")
  22978. },
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(30, "meters"),
  22982. default: true
  22983. },
  22984. {
  22985. name: "Megamacro",
  22986. height: math.unit(1.2, "megameters")
  22987. },
  22988. {
  22989. name: "Teramacro",
  22990. height: math.unit(130, "terameters")
  22991. },
  22992. {
  22993. name: "Yottamacro",
  22994. height: math.unit(6200, "yottameters")
  22995. },
  22996. ]
  22997. ));
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23000. {
  23001. front: {
  23002. height: math.unit(8, "feet"),
  23003. weight: math.unit(250, "lb"),
  23004. name: "Front",
  23005. image: {
  23006. source: "./media/characters/kite/front.svg",
  23007. extra: 2796 / 2659,
  23008. bottom: 0.002
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Normal",
  23015. height: math.unit(8, "feet"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Macro",
  23020. height: math.unit(360, "feet")
  23021. },
  23022. {
  23023. name: "Megamacro",
  23024. height: math.unit(1500, "feet")
  23025. },
  23026. ]
  23027. ))
  23028. characterMakers.push(() => makeCharacter(
  23029. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23030. {
  23031. front: {
  23032. height: math.unit(5 + 11/12, "feet"),
  23033. weight: math.unit(170, "lb"),
  23034. name: "Front",
  23035. image: {
  23036. source: "./media/characters/poojawa-vynar/front.svg",
  23037. extra: 1735/1585,
  23038. bottom: 96/1831
  23039. }
  23040. },
  23041. back: {
  23042. height: math.unit(5 + 11/12, "feet"),
  23043. weight: math.unit(170, "lb"),
  23044. name: "Back",
  23045. image: {
  23046. source: "./media/characters/poojawa-vynar/back.svg",
  23047. extra: 1749/1607,
  23048. bottom: 28/1777
  23049. }
  23050. },
  23051. male: {
  23052. height: math.unit(5 + 11/12, "feet"),
  23053. weight: math.unit(170, "lb"),
  23054. name: "Male",
  23055. image: {
  23056. source: "./media/characters/poojawa-vynar/male.svg",
  23057. extra: 1855/1713,
  23058. bottom: 63/1918
  23059. }
  23060. },
  23061. taur: {
  23062. height: math.unit(5 + 11/12, "feet"),
  23063. weight: math.unit(170, "lb"),
  23064. name: "Taur",
  23065. image: {
  23066. source: "./media/characters/poojawa-vynar/taur.svg",
  23067. extra: 1151/1059,
  23068. bottom: 356/1507
  23069. }
  23070. },
  23071. frontDressed: {
  23072. height: math.unit(5 + 11/12, "feet"),
  23073. weight: math.unit(170, "lb"),
  23074. name: "Front (Dressed)",
  23075. image: {
  23076. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23077. extra: 1735/1585,
  23078. bottom: 96/1831
  23079. }
  23080. },
  23081. backDressed: {
  23082. height: math.unit(5 + 11/12, "feet"),
  23083. weight: math.unit(170, "lb"),
  23084. name: "Back (Dressed)",
  23085. image: {
  23086. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23087. extra: 1749/1607,
  23088. bottom: 28/1777
  23089. }
  23090. },
  23091. maleDressed: {
  23092. height: math.unit(5 + 11/12, "feet"),
  23093. weight: math.unit(170, "lb"),
  23094. name: "Male (Dressed)",
  23095. image: {
  23096. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23097. extra: 1855/1713,
  23098. bottom: 63/1918
  23099. }
  23100. },
  23101. taurDressed: {
  23102. height: math.unit(5 + 11/12, "feet"),
  23103. weight: math.unit(170, "lb"),
  23104. name: "Taur (Dressed)",
  23105. image: {
  23106. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23107. extra: 1151/1059,
  23108. bottom: 356/1507
  23109. }
  23110. },
  23111. maw: {
  23112. height: math.unit(1.46, "feet"),
  23113. name: "Maw",
  23114. image: {
  23115. source: "./media/characters/poojawa-vynar/maw.svg"
  23116. }
  23117. },
  23118. head: {
  23119. height: math.unit(2.34, "feet"),
  23120. name: "Head",
  23121. image: {
  23122. source: "./media/characters/poojawa-vynar/head.svg"
  23123. }
  23124. },
  23125. paw: {
  23126. height: math.unit(1.61, "feet"),
  23127. name: "Paw",
  23128. image: {
  23129. source: "./media/characters/poojawa-vynar/paw.svg"
  23130. }
  23131. },
  23132. pawToering: {
  23133. height: math.unit(1.72, "feet"),
  23134. name: "Paw (Toering)",
  23135. image: {
  23136. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23137. }
  23138. },
  23139. toering: {
  23140. height: math.unit(2.9, "inches"),
  23141. name: "Toering",
  23142. image: {
  23143. source: "./media/characters/poojawa-vynar/toering.svg"
  23144. }
  23145. },
  23146. shaft: {
  23147. height: math.unit(0.625, "feet"),
  23148. name: "Shaft",
  23149. image: {
  23150. source: "./media/characters/poojawa-vynar/shaft.svg"
  23151. }
  23152. },
  23153. spade: {
  23154. height: math.unit(0.42, "feet"),
  23155. name: "Spade",
  23156. image: {
  23157. source: "./media/characters/poojawa-vynar/spade.svg"
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Shortstack",
  23164. height: math.unit(4, "feet")
  23165. },
  23166. {
  23167. name: "Normal",
  23168. height: math.unit(5 + 11 / 12, "feet"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Tauric",
  23173. height: math.unit(4, "meters")
  23174. },
  23175. ]
  23176. ))
  23177. characterMakers.push(() => makeCharacter(
  23178. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23179. {
  23180. front: {
  23181. height: math.unit(293, "meters"),
  23182. weight: math.unit(70400, "tons"),
  23183. name: "Front",
  23184. image: {
  23185. source: "./media/characters/violette/front.svg",
  23186. extra: 1227 / 1180,
  23187. bottom: 0.005
  23188. }
  23189. },
  23190. back: {
  23191. height: math.unit(293, "meters"),
  23192. weight: math.unit(70400, "tons"),
  23193. name: "Back",
  23194. image: {
  23195. source: "./media/characters/violette/back.svg",
  23196. extra: 1227 / 1180,
  23197. bottom: 0.005
  23198. }
  23199. },
  23200. },
  23201. [
  23202. {
  23203. name: "Macro",
  23204. height: math.unit(293, "meters"),
  23205. default: true
  23206. },
  23207. ]
  23208. ))
  23209. characterMakers.push(() => makeCharacter(
  23210. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23211. {
  23212. front: {
  23213. height: math.unit(1050, "feet"),
  23214. weight: math.unit(200000, "tons"),
  23215. name: "Front",
  23216. image: {
  23217. source: "./media/characters/alessandra/front.svg",
  23218. extra: 960 / 912,
  23219. bottom: 0.06
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Macro",
  23226. height: math.unit(1050, "feet")
  23227. },
  23228. {
  23229. name: "Macro+",
  23230. height: math.unit(900, "meters"),
  23231. default: true
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(5, "feet"),
  23240. weight: math.unit(187, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/person/front.svg",
  23244. extra: 3087 / 2945,
  23245. bottom: 91 / 3181
  23246. }
  23247. },
  23248. },
  23249. [
  23250. {
  23251. name: "Micro",
  23252. height: math.unit(3, "inches")
  23253. },
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(5, "feet"),
  23257. default: true
  23258. },
  23259. {
  23260. name: "Macro",
  23261. height: math.unit(90, "feet")
  23262. },
  23263. {
  23264. name: "Max Size",
  23265. height: math.unit(280, "feet")
  23266. },
  23267. ]
  23268. ))
  23269. characterMakers.push(() => makeCharacter(
  23270. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23271. {
  23272. front: {
  23273. height: math.unit(4.5, "meters"),
  23274. weight: math.unit(3200, "lb"),
  23275. name: "Front",
  23276. image: {
  23277. source: "./media/characters/ty/front.svg",
  23278. extra: 1038 / 960,
  23279. bottom: 31.156 / 1068
  23280. }
  23281. },
  23282. back: {
  23283. height: math.unit(4.5, "meters"),
  23284. weight: math.unit(3200, "lb"),
  23285. name: "Back",
  23286. image: {
  23287. source: "./media/characters/ty/back.svg",
  23288. extra: 1044 / 966,
  23289. bottom: 7.48 / 1049
  23290. }
  23291. },
  23292. },
  23293. [
  23294. {
  23295. name: "Normal",
  23296. height: math.unit(4.5, "meters"),
  23297. default: true
  23298. },
  23299. ]
  23300. ))
  23301. characterMakers.push(() => makeCharacter(
  23302. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23303. {
  23304. front: {
  23305. height: math.unit(5 + 4 / 12, "feet"),
  23306. weight: math.unit(115, "lb"),
  23307. name: "Front",
  23308. image: {
  23309. source: "./media/characters/rocky/front.svg",
  23310. extra: 1012 / 975,
  23311. bottom: 54 / 1066
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Normal",
  23318. height: math.unit(5 + 4 / 12, "feet"),
  23319. default: true
  23320. },
  23321. ]
  23322. ))
  23323. characterMakers.push(() => makeCharacter(
  23324. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23325. {
  23326. upright: {
  23327. height: math.unit(6, "meters"),
  23328. weight: math.unit(4000, "kg"),
  23329. name: "Upright",
  23330. image: {
  23331. source: "./media/characters/ruin/upright.svg",
  23332. extra: 668 / 661,
  23333. bottom: 42 / 799.8396
  23334. }
  23335. },
  23336. },
  23337. [
  23338. {
  23339. name: "Normal",
  23340. height: math.unit(6, "meters"),
  23341. default: true
  23342. },
  23343. ]
  23344. ))
  23345. characterMakers.push(() => makeCharacter(
  23346. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23347. {
  23348. front: {
  23349. height: math.unit(5, "feet"),
  23350. weight: math.unit(106, "lb"),
  23351. name: "Front",
  23352. image: {
  23353. source: "./media/characters/robin/front.svg",
  23354. extra: 862 / 799,
  23355. bottom: 42.4 / 914.8856
  23356. }
  23357. },
  23358. },
  23359. [
  23360. {
  23361. name: "Normal",
  23362. height: math.unit(5, "feet"),
  23363. default: true
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23369. {
  23370. side: {
  23371. height: math.unit(3, "feet"),
  23372. weight: math.unit(225, "lb"),
  23373. name: "Side",
  23374. image: {
  23375. source: "./media/characters/saian/side.svg",
  23376. extra: 566 / 356,
  23377. bottom: 79.7 / 643
  23378. }
  23379. },
  23380. maw: {
  23381. height: math.unit(2.85, "feet"),
  23382. name: "Maw",
  23383. image: {
  23384. source: "./media/characters/saian/maw.svg"
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Normal",
  23391. height: math.unit(3, "feet"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23398. {
  23399. side: {
  23400. height: math.unit(8, "feet"),
  23401. weight: math.unit(300, "lb"),
  23402. name: "Side",
  23403. image: {
  23404. source: "./media/characters/equus-silvermane/side.svg",
  23405. extra: 2176 / 2050,
  23406. bottom: 65.7 / 2245
  23407. }
  23408. },
  23409. front: {
  23410. height: math.unit(8, "feet"),
  23411. weight: math.unit(300, "lb"),
  23412. name: "Front",
  23413. image: {
  23414. source: "./media/characters/equus-silvermane/front.svg",
  23415. extra: 4633 / 4400,
  23416. bottom: 71.3 / 4706.915
  23417. }
  23418. },
  23419. sideStepping: {
  23420. height: math.unit(8, "feet"),
  23421. weight: math.unit(300, "lb"),
  23422. name: "Side (Stepping)",
  23423. image: {
  23424. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23425. extra: 1968 / 1860,
  23426. bottom: 16.4 / 1989
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Normal",
  23433. height: math.unit(8, "feet")
  23434. },
  23435. {
  23436. name: "Minimacro",
  23437. height: math.unit(75, "feet"),
  23438. default: true
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(150, "feet")
  23443. },
  23444. {
  23445. name: "Macro+",
  23446. height: math.unit(1000, "feet")
  23447. },
  23448. {
  23449. name: "Megamacro",
  23450. height: math.unit(1, "mile")
  23451. },
  23452. ]
  23453. ))
  23454. characterMakers.push(() => makeCharacter(
  23455. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23456. {
  23457. side: {
  23458. height: math.unit(20, "feet"),
  23459. weight: math.unit(30000, "kg"),
  23460. name: "Side",
  23461. image: {
  23462. source: "./media/characters/windar/side.svg",
  23463. extra: 1491 / 1248,
  23464. bottom: 82.56 / 1568
  23465. }
  23466. },
  23467. },
  23468. [
  23469. {
  23470. name: "Normal",
  23471. height: math.unit(20, "feet"),
  23472. default: true
  23473. },
  23474. ]
  23475. ))
  23476. characterMakers.push(() => makeCharacter(
  23477. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23478. {
  23479. side: {
  23480. height: math.unit(15.66, "feet"),
  23481. weight: math.unit(150, "lb"),
  23482. name: "Side",
  23483. image: {
  23484. source: "./media/characters/melody/side.svg",
  23485. extra: 1097 / 944,
  23486. bottom: 11.8 / 1109
  23487. }
  23488. },
  23489. sideOutfit: {
  23490. height: math.unit(15.66, "feet"),
  23491. weight: math.unit(150, "lb"),
  23492. name: "Side (Outfit)",
  23493. image: {
  23494. source: "./media/characters/melody/side-outfit.svg",
  23495. extra: 1097 / 944,
  23496. bottom: 11.8 / 1109
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Normal",
  23503. height: math.unit(15.66, "feet"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23510. {
  23511. armoredFront: {
  23512. height: math.unit(8, "feet"),
  23513. weight: math.unit(325, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/windera/armored-front.svg",
  23517. extra: 1830/1598,
  23518. bottom: 151/1981
  23519. },
  23520. form: "armored",
  23521. default: true
  23522. },
  23523. macroFront: {
  23524. height: math.unit(70, "feet"),
  23525. weight: math.unit(315453, "lb"),
  23526. name: "Front",
  23527. image: {
  23528. source: "./media/characters/windera/macro-front.svg",
  23529. extra: 963/883,
  23530. bottom: 23/986
  23531. },
  23532. form: "macro",
  23533. default: true
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(8, "feet"),
  23540. default: true,
  23541. form: "armored"
  23542. },
  23543. {
  23544. name: "Normal",
  23545. height: math.unit(70, "feet"),
  23546. default: true,
  23547. form: "macro"
  23548. },
  23549. ],
  23550. {
  23551. "armored": {
  23552. name: "Armored",
  23553. default: true
  23554. },
  23555. "macro": {
  23556. name: "Macro",
  23557. },
  23558. }
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23562. {
  23563. front: {
  23564. height: math.unit(28.75, "feet"),
  23565. weight: math.unit(2000, "kg"),
  23566. name: "Front",
  23567. image: {
  23568. source: "./media/characters/sonear/front.svg",
  23569. extra: 1041.1 / 964.9,
  23570. bottom: 53.7 / 1096.6
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Normal",
  23577. height: math.unit(28.75, "feet"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23584. {
  23585. side: {
  23586. height: math.unit(25.5, "feet"),
  23587. weight: math.unit(23000, "kg"),
  23588. name: "Side",
  23589. image: {
  23590. source: "./media/characters/kanara/side.svg"
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(25.5, "feet"),
  23598. default: true
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23604. {
  23605. side: {
  23606. height: math.unit(10, "feet"),
  23607. weight: math.unit(1000, "kg"),
  23608. name: "Side",
  23609. image: {
  23610. source: "./media/characters/ereus/side.svg",
  23611. extra: 1157 / 959,
  23612. bottom: 153 / 1312.5
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(10, "feet"),
  23620. default: true
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23626. {
  23627. side: {
  23628. height: math.unit(4.5, "feet"),
  23629. weight: math.unit(500, "lb"),
  23630. name: "Side",
  23631. image: {
  23632. source: "./media/characters/e-ter/side.svg",
  23633. extra: 1550 / 1248,
  23634. bottom: 146 / 1694
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Normal",
  23641. height: math.unit(4.5, "feet"),
  23642. default: true
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23648. {
  23649. side: {
  23650. height: math.unit(9.7, "feet"),
  23651. weight: math.unit(4000, "kg"),
  23652. name: "Side",
  23653. image: {
  23654. source: "./media/characters/yamie/side.svg"
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Normal",
  23661. height: math.unit(9.7, "feet"),
  23662. default: true
  23663. },
  23664. ]
  23665. ))
  23666. characterMakers.push(() => makeCharacter(
  23667. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23668. {
  23669. front: {
  23670. height: math.unit(50, "feet"),
  23671. weight: math.unit(50000, "kg"),
  23672. name: "Front",
  23673. image: {
  23674. source: "./media/characters/anders/front.svg",
  23675. extra: 570 / 539,
  23676. bottom: 14.7 / 586.7
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Large",
  23683. height: math.unit(50, "feet")
  23684. },
  23685. {
  23686. name: "Macro",
  23687. height: math.unit(2000, "feet"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Megamacro",
  23692. height: math.unit(12, "miles")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(7 + 2 / 12, "feet"),
  23701. weight: math.unit(300, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/reban/front.svg",
  23705. extra: 1287/1212,
  23706. bottom: 148/1435
  23707. }
  23708. },
  23709. head: {
  23710. height: math.unit(1.95, "feet"),
  23711. name: "Head",
  23712. image: {
  23713. source: "./media/characters/reban/head.svg"
  23714. }
  23715. },
  23716. maw: {
  23717. height: math.unit(0.95, "feet"),
  23718. name: "Maw",
  23719. image: {
  23720. source: "./media/characters/reban/maw.svg"
  23721. }
  23722. },
  23723. foot: {
  23724. height: math.unit(1.65, "feet"),
  23725. name: "Foot",
  23726. image: {
  23727. source: "./media/characters/reban/foot.svg"
  23728. }
  23729. },
  23730. dick: {
  23731. height: math.unit(7 / 5, "feet"),
  23732. name: "Dick",
  23733. image: {
  23734. source: "./media/characters/reban/dick.svg"
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Natural Height",
  23741. height: math.unit(7 + 2 / 12, "feet")
  23742. },
  23743. {
  23744. name: "Macro",
  23745. height: math.unit(500, "feet"),
  23746. default: true
  23747. },
  23748. {
  23749. name: "Canon Height",
  23750. height: math.unit(50, "AU")
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(6, "feet"),
  23759. weight: math.unit(150, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/terrance-keayes/front.svg",
  23763. extra: 1.005,
  23764. bottom: 151 / 1615
  23765. }
  23766. },
  23767. side: {
  23768. height: math.unit(6, "feet"),
  23769. weight: math.unit(150, "lb"),
  23770. name: "Side",
  23771. image: {
  23772. source: "./media/characters/terrance-keayes/side.svg",
  23773. extra: 1.005,
  23774. bottom: 129.4 / 1544
  23775. }
  23776. },
  23777. back: {
  23778. height: math.unit(6, "feet"),
  23779. weight: math.unit(150, "lb"),
  23780. name: "Back",
  23781. image: {
  23782. source: "./media/characters/terrance-keayes/back.svg",
  23783. extra: 1.005,
  23784. bottom: 58.4 / 1557.3
  23785. }
  23786. },
  23787. dick: {
  23788. height: math.unit(6 * 0.208, "feet"),
  23789. name: "Dick",
  23790. image: {
  23791. source: "./media/characters/terrance-keayes/dick.svg"
  23792. }
  23793. },
  23794. },
  23795. [
  23796. {
  23797. name: "Canon Height",
  23798. height: math.unit(35, "miles"),
  23799. default: true
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(6, "feet"),
  23808. weight: math.unit(150, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/ofelia/front.svg",
  23812. extra: 1130/1117,
  23813. bottom: 91/1221
  23814. }
  23815. },
  23816. back: {
  23817. height: math.unit(6, "feet"),
  23818. weight: math.unit(150, "lb"),
  23819. name: "Back",
  23820. image: {
  23821. source: "./media/characters/ofelia/back.svg",
  23822. extra: 1172/1159,
  23823. bottom: 28/1200
  23824. }
  23825. },
  23826. maw: {
  23827. height: math.unit(1, "feet"),
  23828. name: "Maw",
  23829. image: {
  23830. source: "./media/characters/ofelia/maw.svg"
  23831. }
  23832. },
  23833. foot: {
  23834. height: math.unit(1.949, "feet"),
  23835. name: "Foot",
  23836. image: {
  23837. source: "./media/characters/ofelia/foot.svg"
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Canon Height",
  23844. height: math.unit(2000, "miles"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23851. {
  23852. front: {
  23853. height: math.unit(6, "feet"),
  23854. weight: math.unit(150, "lb"),
  23855. name: "Front",
  23856. image: {
  23857. source: "./media/characters/samuel/front.svg",
  23858. extra: 265 / 258,
  23859. bottom: 2 / 266.1566
  23860. }
  23861. },
  23862. },
  23863. [
  23864. {
  23865. name: "Macro",
  23866. height: math.unit(100, "feet"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Full Size",
  23871. height: math.unit(1000, "miles")
  23872. },
  23873. ]
  23874. ))
  23875. characterMakers.push(() => makeCharacter(
  23876. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23877. {
  23878. front: {
  23879. height: math.unit(6, "feet"),
  23880. weight: math.unit(300, "lb"),
  23881. name: "Front",
  23882. image: {
  23883. source: "./media/characters/beishir-kiel/front.svg",
  23884. extra: 569 / 547,
  23885. bottom: 41.9 / 609
  23886. }
  23887. },
  23888. maw: {
  23889. height: math.unit(6 * 0.202, "feet"),
  23890. name: "Maw",
  23891. image: {
  23892. source: "./media/characters/beishir-kiel/maw.svg"
  23893. }
  23894. },
  23895. },
  23896. [
  23897. {
  23898. name: "Macro",
  23899. height: math.unit(300, "feet"),
  23900. default: true
  23901. },
  23902. ]
  23903. ))
  23904. characterMakers.push(() => makeCharacter(
  23905. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23906. {
  23907. front: {
  23908. height: math.unit(5 + 7/12, "feet"),
  23909. weight: math.unit(120, "lb"),
  23910. name: "Front",
  23911. image: {
  23912. source: "./media/characters/logan-grey/front.svg",
  23913. extra: 1836/1738,
  23914. bottom: 108/1944
  23915. }
  23916. },
  23917. back: {
  23918. height: math.unit(5 + 7/12, "feet"),
  23919. weight: math.unit(120, "lb"),
  23920. name: "Back",
  23921. image: {
  23922. source: "./media/characters/logan-grey/back.svg",
  23923. extra: 1880/1794,
  23924. bottom: 24/1904
  23925. }
  23926. },
  23927. frontSfw: {
  23928. height: math.unit(5 + 7/12, "feet"),
  23929. weight: math.unit(120, "lb"),
  23930. name: "Front (SFW)",
  23931. image: {
  23932. source: "./media/characters/logan-grey/front-sfw.svg",
  23933. extra: 1836/1738,
  23934. bottom: 108/1944
  23935. }
  23936. },
  23937. backSfw: {
  23938. height: math.unit(5 + 7/12, "feet"),
  23939. weight: math.unit(120, "lb"),
  23940. name: "Back (SFW)",
  23941. image: {
  23942. source: "./media/characters/logan-grey/back-sfw.svg",
  23943. extra: 1880/1794,
  23944. bottom: 24/1904
  23945. }
  23946. },
  23947. hands: {
  23948. height: math.unit(0.84, "feet"),
  23949. name: "Hands",
  23950. image: {
  23951. source: "./media/characters/logan-grey/hands.svg"
  23952. }
  23953. },
  23954. paws: {
  23955. height: math.unit(0.72, "feet"),
  23956. name: "Paws",
  23957. image: {
  23958. source: "./media/characters/logan-grey/paws.svg"
  23959. }
  23960. },
  23961. cock: {
  23962. height: math.unit(1.45, "feet"),
  23963. name: "Cock",
  23964. image: {
  23965. source: "./media/characters/logan-grey/cock.svg"
  23966. }
  23967. },
  23968. cockAlt: {
  23969. height: math.unit(1.437, "feet"),
  23970. name: "Cock (alt)",
  23971. image: {
  23972. source: "./media/characters/logan-grey/cock-alt.svg"
  23973. }
  23974. },
  23975. },
  23976. [
  23977. {
  23978. name: "Normal",
  23979. height: math.unit(5 + 8 / 12, "feet")
  23980. },
  23981. {
  23982. name: "The 500 Foot Femboy",
  23983. height: math.unit(500, "feet"),
  23984. default: true
  23985. },
  23986. {
  23987. name: "Megmacro",
  23988. height: math.unit(20, "miles")
  23989. },
  23990. ]
  23991. ))
  23992. characterMakers.push(() => makeCharacter(
  23993. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23994. {
  23995. front: {
  23996. height: math.unit(8 + 2 / 12, "feet"),
  23997. weight: math.unit(275, "lb"),
  23998. name: "Front",
  23999. image: {
  24000. source: "./media/characters/draganta/front.svg",
  24001. extra: 1177 / 1135,
  24002. bottom: 33.46 / 1212.1
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(8 + 6 / 12, "feet"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Macro",
  24014. height: math.unit(150, "feet")
  24015. },
  24016. {
  24017. name: "Megamacro",
  24018. height: math.unit(1000, "miles")
  24019. },
  24020. ]
  24021. ))
  24022. characterMakers.push(() => makeCharacter(
  24023. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24024. {
  24025. front: {
  24026. height: math.unit(1.72, "m"),
  24027. weight: math.unit(80, "lb"),
  24028. name: "Front",
  24029. image: {
  24030. source: "./media/characters/voski/front.svg",
  24031. extra: 2076.22 / 2022.4,
  24032. bottom: 102.7 / 2177.3866
  24033. }
  24034. },
  24035. frontFlaccid: {
  24036. height: math.unit(1.72, "m"),
  24037. weight: math.unit(80, "lb"),
  24038. name: "Front (Flaccid)",
  24039. image: {
  24040. source: "./media/characters/voski/front-flaccid.svg",
  24041. extra: 2076.22 / 2022.4,
  24042. bottom: 102.7 / 2177.3866
  24043. }
  24044. },
  24045. frontErect: {
  24046. height: math.unit(1.72, "m"),
  24047. weight: math.unit(80, "lb"),
  24048. name: "Front (Erect)",
  24049. image: {
  24050. source: "./media/characters/voski/front-erect.svg",
  24051. extra: 2076.22 / 2022.4,
  24052. bottom: 102.7 / 2177.3866
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(1.72, "m"),
  24057. weight: math.unit(80, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/voski/back.svg",
  24061. extra: 2104 / 2051,
  24062. bottom: 10.45 / 2113.63
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(1.72, "m")
  24070. },
  24071. {
  24072. name: "Macro",
  24073. height: math.unit(55, "m"),
  24074. default: true
  24075. },
  24076. {
  24077. name: "Macro+",
  24078. height: math.unit(300, "m")
  24079. },
  24080. {
  24081. name: "Macro++",
  24082. height: math.unit(700, "m")
  24083. },
  24084. {
  24085. name: "Macro+++",
  24086. height: math.unit(4500, "m")
  24087. },
  24088. {
  24089. name: "Macro++++",
  24090. height: math.unit(45, "km")
  24091. },
  24092. {
  24093. name: "Macro+++++",
  24094. height: math.unit(1220, "km")
  24095. },
  24096. ]
  24097. ))
  24098. characterMakers.push(() => makeCharacter(
  24099. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24100. {
  24101. front: {
  24102. height: math.unit(2.3, "m"),
  24103. weight: math.unit(304, "kg"),
  24104. name: "Front",
  24105. image: {
  24106. source: "./media/characters/icowom-lee/front.svg",
  24107. extra: 985 / 955,
  24108. bottom: 25.4 / 1012
  24109. }
  24110. },
  24111. fronttentacles: {
  24112. height: math.unit(2.3, "m"),
  24113. weight: math.unit(304, "kg"),
  24114. name: "Front-tentacles",
  24115. image: {
  24116. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24117. extra: 985 / 955,
  24118. bottom: 25.4 / 1012
  24119. }
  24120. },
  24121. back: {
  24122. height: math.unit(2.3, "m"),
  24123. weight: math.unit(304, "kg"),
  24124. name: "Back",
  24125. image: {
  24126. source: "./media/characters/icowom-lee/back.svg",
  24127. extra: 975 / 954,
  24128. bottom: 9.5 / 985
  24129. }
  24130. },
  24131. backtentacles: {
  24132. height: math.unit(2.3, "m"),
  24133. weight: math.unit(304, "kg"),
  24134. name: "Back-tentacles",
  24135. image: {
  24136. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24137. extra: 975 / 954,
  24138. bottom: 9.5 / 985
  24139. }
  24140. },
  24141. frontDressed: {
  24142. height: math.unit(2.3, "m"),
  24143. weight: math.unit(304, "kg"),
  24144. name: "Front (Dressed)",
  24145. image: {
  24146. source: "./media/characters/icowom-lee/front-dressed.svg",
  24147. extra: 3076 / 2933,
  24148. bottom: 51.4 / 3125.1889
  24149. }
  24150. },
  24151. rump: {
  24152. height: math.unit(0.776, "meters"),
  24153. name: "Rump",
  24154. image: {
  24155. source: "./media/characters/icowom-lee/rump.svg"
  24156. }
  24157. },
  24158. genitals: {
  24159. height: math.unit(0.78, "meters"),
  24160. name: "Genitals",
  24161. image: {
  24162. source: "./media/characters/icowom-lee/genitals.svg"
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(2.3, "meters"),
  24170. default: true
  24171. },
  24172. {
  24173. name: "Macro",
  24174. height: math.unit(94, "meters"),
  24175. default: true
  24176. },
  24177. ]
  24178. ))
  24179. characterMakers.push(() => makeCharacter(
  24180. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24181. {
  24182. front: {
  24183. height: math.unit(22, "meters"),
  24184. weight: math.unit(21000, "kg"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/shock-diamond/front.svg",
  24188. extra: 2204 / 2053,
  24189. bottom: 65 / 2239.47
  24190. }
  24191. },
  24192. frontNude: {
  24193. height: math.unit(22, "meters"),
  24194. weight: math.unit(21000, "kg"),
  24195. name: "Front (Nude)",
  24196. image: {
  24197. source: "./media/characters/shock-diamond/front-nude.svg",
  24198. extra: 2514 / 2285,
  24199. bottom: 13 / 2527.56
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(3, "meters")
  24207. },
  24208. {
  24209. name: "Macro",
  24210. height: math.unit(22, "meters"),
  24211. default: true
  24212. },
  24213. ]
  24214. ))
  24215. characterMakers.push(() => makeCharacter(
  24216. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24217. {
  24218. front: {
  24219. height: math.unit(5 + 4/12, "feet"),
  24220. weight: math.unit(125, "lb"),
  24221. name: "Front",
  24222. image: {
  24223. source: "./media/characters/rory/front.svg",
  24224. extra: 1790/1681,
  24225. bottom: 66/1856
  24226. }
  24227. },
  24228. back: {
  24229. height: math.unit(5 + 4/12, "feet"),
  24230. weight: math.unit(125, "lb"),
  24231. name: "Back",
  24232. image: {
  24233. source: "./media/characters/rory/back.svg",
  24234. extra: 1805/1690,
  24235. bottom: 56/1861
  24236. }
  24237. },
  24238. frontDressed: {
  24239. height: math.unit(5 + 4/12, "feet"),
  24240. weight: math.unit(125, "lb"),
  24241. name: "Front (Dressed)",
  24242. image: {
  24243. source: "./media/characters/rory/front-dressed.svg",
  24244. extra: 1790/1681,
  24245. bottom: 66/1856
  24246. }
  24247. },
  24248. backDressed: {
  24249. height: math.unit(5 + 4/12, "feet"),
  24250. weight: math.unit(125, "lb"),
  24251. name: "Back (Dressed)",
  24252. image: {
  24253. source: "./media/characters/rory/back-dressed.svg",
  24254. extra: 1805/1690,
  24255. bottom: 56/1861
  24256. }
  24257. },
  24258. frontNsfw: {
  24259. height: math.unit(5 + 4/12, "feet"),
  24260. weight: math.unit(125, "lb"),
  24261. name: "Front (NSFW)",
  24262. image: {
  24263. source: "./media/characters/rory/front-nsfw.svg",
  24264. extra: 1790/1681,
  24265. bottom: 66/1856
  24266. }
  24267. },
  24268. backNsfw: {
  24269. height: math.unit(5 + 4/12, "feet"),
  24270. weight: math.unit(125, "lb"),
  24271. name: "Back (NSFW)",
  24272. image: {
  24273. source: "./media/characters/rory/back-nsfw.svg",
  24274. extra: 1805/1690,
  24275. bottom: 56/1861
  24276. }
  24277. },
  24278. dick: {
  24279. height: math.unit(0.8, "feet"),
  24280. name: "Dick",
  24281. image: {
  24282. source: "./media/characters/rory/dick.svg"
  24283. }
  24284. },
  24285. },
  24286. [
  24287. {
  24288. name: "Micro",
  24289. height: math.unit(3, "inches")
  24290. },
  24291. {
  24292. name: "Normal",
  24293. height: math.unit(5 + 4/12, "feet"),
  24294. default: true
  24295. },
  24296. {
  24297. name: "Macro",
  24298. height: math.unit(90, "feet")
  24299. },
  24300. {
  24301. name: "Supercharged",
  24302. height: math.unit(270, "feet")
  24303. },
  24304. ]
  24305. ))
  24306. characterMakers.push(() => makeCharacter(
  24307. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24308. {
  24309. front: {
  24310. height: math.unit(5 + 9 / 12, "feet"),
  24311. weight: math.unit(190, "lb"),
  24312. name: "Front",
  24313. image: {
  24314. source: "./media/characters/sprisk/front.svg",
  24315. extra: 1225 / 1180,
  24316. bottom: 42.7 / 1266.4
  24317. }
  24318. },
  24319. frontNsfw: {
  24320. height: math.unit(5 + 9 / 12, "feet"),
  24321. weight: math.unit(190, "lb"),
  24322. name: "Front (NSFW)",
  24323. image: {
  24324. source: "./media/characters/sprisk/front-nsfw.svg",
  24325. extra: 1225 / 1180,
  24326. bottom: 42.7 / 1266.4
  24327. }
  24328. },
  24329. back: {
  24330. height: math.unit(5 + 9 / 12, "feet"),
  24331. weight: math.unit(190, "lb"),
  24332. name: "Back",
  24333. image: {
  24334. source: "./media/characters/sprisk/back.svg",
  24335. extra: 1247 / 1200,
  24336. bottom: 5.6 / 1253.04
  24337. }
  24338. },
  24339. },
  24340. [
  24341. {
  24342. name: "Tiny",
  24343. height: math.unit(2, "inches")
  24344. },
  24345. {
  24346. name: "Normal",
  24347. height: math.unit(5 + 9 / 12, "feet"),
  24348. default: true
  24349. },
  24350. {
  24351. name: "Mini Macro",
  24352. height: math.unit(18, "feet")
  24353. },
  24354. {
  24355. name: "Macro",
  24356. height: math.unit(100, "feet")
  24357. },
  24358. {
  24359. name: "MACRO",
  24360. height: math.unit(50, "miles")
  24361. },
  24362. {
  24363. name: "M A C R O",
  24364. height: math.unit(300, "miles")
  24365. },
  24366. ]
  24367. ))
  24368. characterMakers.push(() => makeCharacter(
  24369. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24370. {
  24371. side: {
  24372. height: math.unit(15.6, "meters"),
  24373. weight: math.unit(700000, "kg"),
  24374. name: "Side",
  24375. image: {
  24376. source: "./media/characters/bunsen/side.svg",
  24377. extra: 1644 / 358
  24378. }
  24379. },
  24380. foot: {
  24381. height: math.unit(1.611 * 1644 / 358, "meter"),
  24382. name: "Foot",
  24383. image: {
  24384. source: "./media/characters/bunsen/foot.svg"
  24385. }
  24386. },
  24387. },
  24388. [
  24389. {
  24390. name: "Small",
  24391. height: math.unit(10, "feet")
  24392. },
  24393. {
  24394. name: "Normal",
  24395. height: math.unit(15.6, "meters"),
  24396. default: true
  24397. },
  24398. ]
  24399. ))
  24400. characterMakers.push(() => makeCharacter(
  24401. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24402. {
  24403. front: {
  24404. height: math.unit(4 + 11 / 12, "feet"),
  24405. weight: math.unit(140, "lb"),
  24406. name: "Front",
  24407. image: {
  24408. source: "./media/characters/sesh/front.svg",
  24409. extra: 3420 / 3231,
  24410. bottom: 72 / 3949.5
  24411. }
  24412. },
  24413. },
  24414. [
  24415. {
  24416. name: "Normal",
  24417. height: math.unit(4 + 11 / 12, "feet")
  24418. },
  24419. {
  24420. name: "Grown",
  24421. height: math.unit(15, "feet"),
  24422. default: true
  24423. },
  24424. {
  24425. name: "Macro",
  24426. height: math.unit(1500, "feet")
  24427. },
  24428. {
  24429. name: "Megamacro",
  24430. height: math.unit(30, "miles")
  24431. },
  24432. {
  24433. name: "Continental",
  24434. height: math.unit(3000, "miles")
  24435. },
  24436. {
  24437. name: "Gravity Mass",
  24438. height: math.unit(300000, "miles")
  24439. },
  24440. {
  24441. name: "Planet Buster",
  24442. height: math.unit(30000000, "miles")
  24443. },
  24444. {
  24445. name: "Big",
  24446. height: math.unit(3000000000, "miles")
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24452. {
  24453. front: {
  24454. height: math.unit(9, "feet"),
  24455. weight: math.unit(350, "lb"),
  24456. name: "Front",
  24457. image: {
  24458. source: "./media/characters/pepper/front.svg",
  24459. extra: 1448 / 1312,
  24460. bottom: 9.4 / 1457.88
  24461. }
  24462. },
  24463. back: {
  24464. height: math.unit(9, "feet"),
  24465. weight: math.unit(350, "lb"),
  24466. name: "Back",
  24467. image: {
  24468. source: "./media/characters/pepper/back.svg",
  24469. extra: 1423 / 1300,
  24470. bottom: 4.6 / 1429
  24471. }
  24472. },
  24473. maw: {
  24474. height: math.unit(0.932, "feet"),
  24475. name: "Maw",
  24476. image: {
  24477. source: "./media/characters/pepper/maw.svg"
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(9, "feet"),
  24485. default: true
  24486. },
  24487. ]
  24488. ))
  24489. characterMakers.push(() => makeCharacter(
  24490. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24491. {
  24492. front: {
  24493. height: math.unit(6, "feet"),
  24494. weight: math.unit(150, "lb"),
  24495. name: "Front",
  24496. image: {
  24497. source: "./media/characters/maelstrom/front.svg",
  24498. extra: 2100 / 1883,
  24499. bottom: 94 / 2196.7
  24500. }
  24501. },
  24502. },
  24503. [
  24504. {
  24505. name: "Less Kaiju",
  24506. height: math.unit(200, "feet")
  24507. },
  24508. {
  24509. name: "Kaiju",
  24510. height: math.unit(400, "feet"),
  24511. default: true
  24512. },
  24513. {
  24514. name: "Kaiju-er",
  24515. height: math.unit(600, "feet")
  24516. },
  24517. ]
  24518. ))
  24519. characterMakers.push(() => makeCharacter(
  24520. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24521. {
  24522. front: {
  24523. height: math.unit(6 + 5 / 12, "feet"),
  24524. weight: math.unit(180, "lb"),
  24525. name: "Front",
  24526. image: {
  24527. source: "./media/characters/lexir/front.svg",
  24528. extra: 180 / 172,
  24529. bottom: 12 / 192
  24530. }
  24531. },
  24532. back: {
  24533. height: math.unit(6 + 5 / 12, "feet"),
  24534. weight: math.unit(180, "lb"),
  24535. name: "Back",
  24536. image: {
  24537. source: "./media/characters/lexir/back.svg",
  24538. extra: 1273/1201,
  24539. bottom: 39/1312
  24540. }
  24541. },
  24542. },
  24543. [
  24544. {
  24545. name: "Very Smal",
  24546. height: math.unit(1, "nm")
  24547. },
  24548. {
  24549. name: "Normal",
  24550. height: math.unit(6 + 5 / 12, "feet"),
  24551. default: true
  24552. },
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(1, "mile")
  24556. },
  24557. {
  24558. name: "Megamacro",
  24559. height: math.unit(50, "miles")
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(1.5, "meters"),
  24568. weight: math.unit(100, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/maksio/front.svg",
  24572. extra: 1549 / 1531,
  24573. bottom: 123.7 / 1674.5429
  24574. }
  24575. },
  24576. back: {
  24577. height: math.unit(1.5, "meters"),
  24578. weight: math.unit(100, "lb"),
  24579. name: "Back",
  24580. image: {
  24581. source: "./media/characters/maksio/back.svg",
  24582. extra: 1541 / 1509,
  24583. bottom: 97 / 1639
  24584. }
  24585. },
  24586. hand: {
  24587. height: math.unit(0.621, "feet"),
  24588. name: "Hand",
  24589. image: {
  24590. source: "./media/characters/maksio/hand.svg"
  24591. }
  24592. },
  24593. foot: {
  24594. height: math.unit(1.611, "feet"),
  24595. name: "Foot",
  24596. image: {
  24597. source: "./media/characters/maksio/foot.svg"
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Shrunken",
  24604. height: math.unit(10, "cm")
  24605. },
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(150, "cm"),
  24609. default: true
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(100, "feet"),
  24618. name: "Front",
  24619. image: {
  24620. source: "./media/characters/erza-bear/front.svg",
  24621. extra: 2449 / 2390,
  24622. bottom: 46 / 2494
  24623. }
  24624. },
  24625. back: {
  24626. height: math.unit(100, "feet"),
  24627. name: "Back",
  24628. image: {
  24629. source: "./media/characters/erza-bear/back.svg",
  24630. extra: 2489 / 2430,
  24631. bottom: 85.4 / 2480
  24632. }
  24633. },
  24634. tail: {
  24635. height: math.unit(42, "feet"),
  24636. name: "Tail",
  24637. image: {
  24638. source: "./media/characters/erza-bear/tail.svg"
  24639. }
  24640. },
  24641. tongue: {
  24642. height: math.unit(8, "feet"),
  24643. name: "Tongue",
  24644. image: {
  24645. source: "./media/characters/erza-bear/tongue.svg"
  24646. }
  24647. },
  24648. dick: {
  24649. height: math.unit(10.5, "feet"),
  24650. name: "Dick",
  24651. image: {
  24652. source: "./media/characters/erza-bear/dick.svg"
  24653. }
  24654. },
  24655. dickVertical: {
  24656. height: math.unit(16.9, "feet"),
  24657. name: "Dick (Vertical)",
  24658. image: {
  24659. source: "./media/characters/erza-bear/dick-vertical.svg"
  24660. }
  24661. },
  24662. },
  24663. [
  24664. {
  24665. name: "Macro",
  24666. height: math.unit(100, "feet"),
  24667. default: true
  24668. },
  24669. ]
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24673. {
  24674. front: {
  24675. height: math.unit(172, "cm"),
  24676. weight: math.unit(73, "kg"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/violet-flor/front.svg",
  24680. extra: 1530 / 1442,
  24681. bottom: 61.9 / 1588.8
  24682. }
  24683. },
  24684. back: {
  24685. height: math.unit(180, "cm"),
  24686. weight: math.unit(73, "kg"),
  24687. name: "Back",
  24688. image: {
  24689. source: "./media/characters/violet-flor/back.svg",
  24690. extra: 1692 / 1630,
  24691. bottom: 20 / 1712
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(172, "cm"),
  24699. default: true
  24700. },
  24701. ]
  24702. ))
  24703. characterMakers.push(() => makeCharacter(
  24704. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24705. {
  24706. front: {
  24707. height: math.unit(6, "feet"),
  24708. weight: math.unit(220, "lb"),
  24709. name: "Front",
  24710. image: {
  24711. source: "./media/characters/lynn-rhea/front.svg",
  24712. extra: 310 / 273
  24713. }
  24714. },
  24715. back: {
  24716. height: math.unit(6, "feet"),
  24717. weight: math.unit(220, "lb"),
  24718. name: "Back",
  24719. image: {
  24720. source: "./media/characters/lynn-rhea/back.svg",
  24721. extra: 310 / 273
  24722. }
  24723. },
  24724. dicks: {
  24725. height: math.unit(0.9, "feet"),
  24726. name: "Dicks",
  24727. image: {
  24728. source: "./media/characters/lynn-rhea/dicks.svg"
  24729. }
  24730. },
  24731. slit: {
  24732. height: math.unit(0.4, "feet"),
  24733. name: "Slit",
  24734. image: {
  24735. source: "./media/characters/lynn-rhea/slit.svg"
  24736. }
  24737. },
  24738. },
  24739. [
  24740. {
  24741. name: "Micro",
  24742. height: math.unit(1, "inch")
  24743. },
  24744. {
  24745. name: "Macro",
  24746. height: math.unit(60, "feet"),
  24747. default: true
  24748. },
  24749. {
  24750. name: "Megamacro",
  24751. height: math.unit(2, "miles")
  24752. },
  24753. {
  24754. name: "Gigamacro",
  24755. height: math.unit(3, "earths")
  24756. },
  24757. {
  24758. name: "Galactic",
  24759. height: math.unit(0.8, "galaxies")
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24765. {
  24766. front: {
  24767. height: math.unit(1600, "feet"),
  24768. weight: math.unit(85758785169, "kg"),
  24769. name: "Front",
  24770. image: {
  24771. source: "./media/characters/valathos/front.svg",
  24772. extra: 1451 / 1339
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Macro",
  24779. height: math.unit(1600, "feet"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24786. {
  24787. front: {
  24788. height: math.unit(7 + 5 / 12, "feet"),
  24789. weight: math.unit(300, "lb"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/azula/front.svg",
  24793. extra: 3208 / 2880,
  24794. bottom: 80.2 / 3277
  24795. }
  24796. },
  24797. back: {
  24798. height: math.unit(7 + 5 / 12, "feet"),
  24799. weight: math.unit(300, "lb"),
  24800. name: "Back",
  24801. image: {
  24802. source: "./media/characters/azula/back.svg",
  24803. extra: 3169 / 2822,
  24804. bottom: 150.6 / 3321
  24805. }
  24806. },
  24807. },
  24808. [
  24809. {
  24810. name: "Normal",
  24811. height: math.unit(7 + 5 / 12, "feet"),
  24812. default: true
  24813. },
  24814. {
  24815. name: "Big",
  24816. height: math.unit(20, "feet")
  24817. },
  24818. ]
  24819. ))
  24820. characterMakers.push(() => makeCharacter(
  24821. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24822. {
  24823. front: {
  24824. height: math.unit(5 + 1 / 12, "feet"),
  24825. weight: math.unit(110, "lb"),
  24826. name: "Front",
  24827. image: {
  24828. source: "./media/characters/rupert/front.svg",
  24829. extra: 1549 / 1495,
  24830. bottom: 54.2 / 1604.4
  24831. }
  24832. },
  24833. },
  24834. [
  24835. {
  24836. name: "Normal",
  24837. height: math.unit(5 + 1 / 12, "feet"),
  24838. default: true
  24839. },
  24840. ]
  24841. ))
  24842. characterMakers.push(() => makeCharacter(
  24843. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24844. {
  24845. front: {
  24846. height: math.unit(8 + 4 / 12, "feet"),
  24847. weight: math.unit(350, "lb"),
  24848. name: "Front",
  24849. image: {
  24850. source: "./media/characters/sheera-castellar/front.svg",
  24851. extra: 1957 / 1894,
  24852. bottom: 26.97 / 1975.017
  24853. }
  24854. },
  24855. side: {
  24856. height: math.unit(8 + 4 / 12, "feet"),
  24857. weight: math.unit(350, "lb"),
  24858. name: "Side",
  24859. image: {
  24860. source: "./media/characters/sheera-castellar/side.svg",
  24861. extra: 1957 / 1894
  24862. }
  24863. },
  24864. back: {
  24865. height: math.unit(8 + 4 / 12, "feet"),
  24866. weight: math.unit(350, "lb"),
  24867. name: "Back",
  24868. image: {
  24869. source: "./media/characters/sheera-castellar/back.svg",
  24870. extra: 1957 / 1894
  24871. }
  24872. },
  24873. angled: {
  24874. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24875. weight: math.unit(350, "lb"),
  24876. name: "Angled",
  24877. image: {
  24878. source: "./media/characters/sheera-castellar/angled.svg",
  24879. extra: 1807 / 1707,
  24880. bottom: 68 / 1875
  24881. }
  24882. },
  24883. genitals: {
  24884. height: math.unit(2.2, "feet"),
  24885. name: "Genitals",
  24886. image: {
  24887. source: "./media/characters/sheera-castellar/genitals.svg"
  24888. }
  24889. },
  24890. taur: {
  24891. height: math.unit(10 + 6/12, "feet"),
  24892. name: "Taur",
  24893. image: {
  24894. source: "./media/characters/sheera-castellar/taur.svg",
  24895. extra: 2017/1909,
  24896. bottom: 185/2202
  24897. }
  24898. },
  24899. },
  24900. [
  24901. {
  24902. name: "Normal",
  24903. height: math.unit(8 + 4 / 12, "feet")
  24904. },
  24905. {
  24906. name: "Macro",
  24907. height: math.unit(150, "feet"),
  24908. default: true
  24909. },
  24910. {
  24911. name: "Macro+",
  24912. height: math.unit(800, "feet")
  24913. },
  24914. ]
  24915. ))
  24916. characterMakers.push(() => makeCharacter(
  24917. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24918. {
  24919. front: {
  24920. height: math.unit(6, "feet"),
  24921. weight: math.unit(150, "lb"),
  24922. name: "Front",
  24923. image: {
  24924. source: "./media/characters/jaipur/front.svg",
  24925. extra: 3860 / 3731,
  24926. bottom: 287 / 4140
  24927. }
  24928. },
  24929. back: {
  24930. height: math.unit(6, "feet"),
  24931. weight: math.unit(150, "lb"),
  24932. name: "Back",
  24933. image: {
  24934. source: "./media/characters/jaipur/back.svg",
  24935. extra: 1637/1561,
  24936. bottom: 154/1791
  24937. }
  24938. },
  24939. },
  24940. [
  24941. {
  24942. name: "Normal",
  24943. height: math.unit(1.85, "meters"),
  24944. default: true
  24945. },
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(150, "meters")
  24949. },
  24950. {
  24951. name: "Macro+",
  24952. height: math.unit(0.5, "miles")
  24953. },
  24954. {
  24955. name: "Macro++",
  24956. height: math.unit(2.5, "miles")
  24957. },
  24958. {
  24959. name: "Macro+++",
  24960. height: math.unit(12, "miles")
  24961. },
  24962. {
  24963. name: "Macro++++",
  24964. height: math.unit(120, "miles")
  24965. },
  24966. {
  24967. name: "Macro+++++",
  24968. height: math.unit(1200, "miles")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(6, "feet"),
  24977. weight: math.unit(150, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/sheila-wolf/front.svg",
  24981. extra: 1931 / 1808,
  24982. bottom: 29.5 / 1960
  24983. }
  24984. },
  24985. dick: {
  24986. height: math.unit(1.464, "feet"),
  24987. name: "Dick",
  24988. image: {
  24989. source: "./media/characters/sheila-wolf/dick.svg"
  24990. }
  24991. },
  24992. muzzle: {
  24993. height: math.unit(0.513, "feet"),
  24994. name: "Muzzle",
  24995. image: {
  24996. source: "./media/characters/sheila-wolf/muzzle.svg"
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Macro",
  25003. height: math.unit(70, "feet"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(32, "meters"),
  25013. weight: math.unit(300000, "kg"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/almor/front.svg",
  25017. extra: 1408 / 1322,
  25018. bottom: 94.6 / 1506.5
  25019. }
  25020. },
  25021. },
  25022. [
  25023. {
  25024. name: "Macro",
  25025. height: math.unit(32, "meters"),
  25026. default: true
  25027. },
  25028. ]
  25029. ))
  25030. characterMakers.push(() => makeCharacter(
  25031. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25032. {
  25033. front: {
  25034. height: math.unit(7, "feet"),
  25035. weight: math.unit(200, "lb"),
  25036. name: "Front",
  25037. image: {
  25038. source: "./media/characters/silver/front.svg",
  25039. extra: 472.1 / 450.5,
  25040. bottom: 26.5 / 499.424
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Normal",
  25047. height: math.unit(7, "feet"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Macro",
  25052. height: math.unit(800, "feet")
  25053. },
  25054. {
  25055. name: "Megamacro",
  25056. height: math.unit(250, "miles")
  25057. },
  25058. ]
  25059. ))
  25060. characterMakers.push(() => makeCharacter(
  25061. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25062. {
  25063. front: {
  25064. height: math.unit(6, "feet"),
  25065. weight: math.unit(150, "lb"),
  25066. name: "Front",
  25067. image: {
  25068. source: "./media/characters/pliskin/front.svg",
  25069. extra: 1469 / 1359,
  25070. bottom: 70 / 1540
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Micro",
  25077. height: math.unit(3, "inches")
  25078. },
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(5 + 11 / 12, "feet"),
  25082. default: true
  25083. },
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(120, "feet")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(6, "feet"),
  25095. weight: math.unit(150, "lb"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/sammy/front.svg",
  25099. extra: 1193 / 1089,
  25100. bottom: 30.5 / 1226
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Macro",
  25107. height: math.unit(1700, "feet"),
  25108. default: true
  25109. },
  25110. {
  25111. name: "Examacro",
  25112. height: math.unit(2.5e9, "lightyears")
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25118. {
  25119. front: {
  25120. height: math.unit(21, "meters"),
  25121. weight: math.unit(12, "tonnes"),
  25122. name: "Front",
  25123. image: {
  25124. source: "./media/characters/kuru/front.svg",
  25125. extra: 4301 / 3785,
  25126. bottom: 371.3 / 4691
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Macro",
  25133. height: math.unit(21, "meters"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25140. {
  25141. front: {
  25142. height: math.unit(23, "meters"),
  25143. weight: math.unit(12.2, "tonnes"),
  25144. name: "Front",
  25145. image: {
  25146. source: "./media/characters/rakka/front.svg",
  25147. extra: 4670 / 4169,
  25148. bottom: 301 / 4968.7
  25149. }
  25150. },
  25151. },
  25152. [
  25153. {
  25154. name: "Macro",
  25155. height: math.unit(23, "meters"),
  25156. default: true
  25157. },
  25158. ]
  25159. ))
  25160. characterMakers.push(() => makeCharacter(
  25161. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25162. {
  25163. front: {
  25164. height: math.unit(6, "feet"),
  25165. weight: math.unit(150, "lb"),
  25166. name: "Front",
  25167. image: {
  25168. source: "./media/characters/rhys-feline/front.svg",
  25169. extra: 2488 / 2308,
  25170. bottom: 35.67 / 2519.19
  25171. }
  25172. },
  25173. },
  25174. [
  25175. {
  25176. name: "Really Small",
  25177. height: math.unit(1, "nm")
  25178. },
  25179. {
  25180. name: "Micro",
  25181. height: math.unit(4, "inches")
  25182. },
  25183. {
  25184. name: "Normal",
  25185. height: math.unit(4 + 10 / 12, "feet"),
  25186. default: true
  25187. },
  25188. {
  25189. name: "Macro",
  25190. height: math.unit(100, "feet")
  25191. },
  25192. {
  25193. name: "Megamacto",
  25194. height: math.unit(50, "miles")
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25200. {
  25201. side: {
  25202. height: math.unit(30, "feet"),
  25203. weight: math.unit(35000, "kg"),
  25204. name: "Side",
  25205. image: {
  25206. source: "./media/characters/alydar/side.svg",
  25207. extra: 234 / 222,
  25208. bottom: 6.5 / 241
  25209. }
  25210. },
  25211. front: {
  25212. height: math.unit(30, "feet"),
  25213. weight: math.unit(35000, "kg"),
  25214. name: "Front",
  25215. image: {
  25216. source: "./media/characters/alydar/front.svg",
  25217. extra: 223.37 / 210.2,
  25218. bottom: 22.3 / 246.76
  25219. }
  25220. },
  25221. top: {
  25222. height: math.unit(64.54, "feet"),
  25223. weight: math.unit(35000, "kg"),
  25224. name: "Top",
  25225. image: {
  25226. source: "./media/characters/alydar/top.svg"
  25227. }
  25228. },
  25229. anthro: {
  25230. height: math.unit(30, "feet"),
  25231. weight: math.unit(9000, "kg"),
  25232. name: "Anthro",
  25233. image: {
  25234. source: "./media/characters/alydar/anthro.svg",
  25235. extra: 432 / 421,
  25236. bottom: 7.18 / 440
  25237. }
  25238. },
  25239. maw: {
  25240. height: math.unit(11.693, "feet"),
  25241. name: "Maw",
  25242. image: {
  25243. source: "./media/characters/alydar/maw.svg"
  25244. }
  25245. },
  25246. head: {
  25247. height: math.unit(11.693, "feet"),
  25248. name: "Head",
  25249. image: {
  25250. source: "./media/characters/alydar/head.svg"
  25251. }
  25252. },
  25253. headAlt: {
  25254. height: math.unit(12.861, "feet"),
  25255. name: "Head (Alt)",
  25256. image: {
  25257. source: "./media/characters/alydar/head-alt.svg"
  25258. }
  25259. },
  25260. wing: {
  25261. height: math.unit(20.712, "feet"),
  25262. name: "Wing",
  25263. image: {
  25264. source: "./media/characters/alydar/wing.svg"
  25265. }
  25266. },
  25267. wingFeather: {
  25268. height: math.unit(9.662, "feet"),
  25269. name: "Wing Feather",
  25270. image: {
  25271. source: "./media/characters/alydar/wing-feather.svg"
  25272. }
  25273. },
  25274. countourFeather: {
  25275. height: math.unit(4.154, "feet"),
  25276. name: "Contour Feather",
  25277. image: {
  25278. source: "./media/characters/alydar/contour-feather.svg"
  25279. }
  25280. },
  25281. },
  25282. [
  25283. {
  25284. name: "Diplomatic",
  25285. height: math.unit(13, "feet"),
  25286. default: true
  25287. },
  25288. {
  25289. name: "Small",
  25290. height: math.unit(30, "feet")
  25291. },
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(95, "feet"),
  25295. default: true
  25296. },
  25297. {
  25298. name: "Large",
  25299. height: math.unit(285, "feet")
  25300. },
  25301. {
  25302. name: "Incomprehensible",
  25303. height: math.unit(450, "megameters")
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25309. {
  25310. side: {
  25311. height: math.unit(11, "feet"),
  25312. weight: math.unit(1750, "kg"),
  25313. name: "Side",
  25314. image: {
  25315. source: "./media/characters/selicia/side.svg",
  25316. extra: 440 / 396,
  25317. bottom: 24.8 / 465.979
  25318. }
  25319. },
  25320. maw: {
  25321. height: math.unit(4.665, "feet"),
  25322. name: "Maw",
  25323. image: {
  25324. source: "./media/characters/selicia/maw.svg"
  25325. }
  25326. },
  25327. },
  25328. [
  25329. {
  25330. name: "Normal",
  25331. height: math.unit(11, "feet"),
  25332. default: true
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25338. {
  25339. side: {
  25340. height: math.unit(2 + 6 / 12, "feet"),
  25341. weight: math.unit(30, "lb"),
  25342. name: "Side",
  25343. image: {
  25344. source: "./media/characters/layla/side.svg",
  25345. extra: 244 / 188,
  25346. bottom: 18.2 / 262.1
  25347. }
  25348. },
  25349. back: {
  25350. height: math.unit(2 + 6 / 12, "feet"),
  25351. weight: math.unit(30, "lb"),
  25352. name: "Back",
  25353. image: {
  25354. source: "./media/characters/layla/back.svg",
  25355. extra: 308 / 241.5,
  25356. bottom: 8.9 / 316.8
  25357. }
  25358. },
  25359. cumming: {
  25360. height: math.unit(2 + 6 / 12, "feet"),
  25361. weight: math.unit(30, "lb"),
  25362. name: "Cumming",
  25363. image: {
  25364. source: "./media/characters/layla/cumming.svg",
  25365. extra: 342 / 279,
  25366. bottom: 595 / 938
  25367. }
  25368. },
  25369. dickFlaccid: {
  25370. height: math.unit(2.595, "feet"),
  25371. name: "Flaccid Genitals",
  25372. image: {
  25373. source: "./media/characters/layla/dick-flaccid.svg"
  25374. }
  25375. },
  25376. dickErect: {
  25377. height: math.unit(2.359, "feet"),
  25378. name: "Erect Genitals",
  25379. image: {
  25380. source: "./media/characters/layla/dick-erect.svg"
  25381. }
  25382. },
  25383. dragon: {
  25384. height: math.unit(40, "feet"),
  25385. name: "Dragon",
  25386. image: {
  25387. source: "./media/characters/layla/dragon.svg",
  25388. extra: 610/535,
  25389. bottom: 367/977
  25390. }
  25391. },
  25392. taur: {
  25393. height: math.unit(30, "feet"),
  25394. name: "Taur",
  25395. image: {
  25396. source: "./media/characters/layla/taur.svg",
  25397. extra: 1268/1199,
  25398. bottom: 112/1380
  25399. }
  25400. },
  25401. },
  25402. [
  25403. {
  25404. name: "Micro",
  25405. height: math.unit(1, "inch")
  25406. },
  25407. {
  25408. name: "Small",
  25409. height: math.unit(1, "foot")
  25410. },
  25411. {
  25412. name: "Normal",
  25413. height: math.unit(2 + 6 / 12, "feet"),
  25414. default: true
  25415. },
  25416. {
  25417. name: "Macro",
  25418. height: math.unit(200, "feet")
  25419. },
  25420. {
  25421. name: "Megamacro",
  25422. height: math.unit(1000, "miles")
  25423. },
  25424. {
  25425. name: "Planetary",
  25426. height: math.unit(8000, "miles")
  25427. },
  25428. {
  25429. name: "True Layla",
  25430. height: math.unit(200000 * 7, "multiverses")
  25431. },
  25432. ]
  25433. ))
  25434. characterMakers.push(() => makeCharacter(
  25435. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25436. {
  25437. back: {
  25438. height: math.unit(10.5, "feet"),
  25439. weight: math.unit(800, "lb"),
  25440. name: "Back",
  25441. image: {
  25442. source: "./media/characters/knox/back.svg",
  25443. extra: 1486 / 1089,
  25444. bottom: 107 / 1601.4
  25445. }
  25446. },
  25447. side: {
  25448. height: math.unit(10.5, "feet"),
  25449. weight: math.unit(800, "lb"),
  25450. name: "Side",
  25451. image: {
  25452. source: "./media/characters/knox/side.svg",
  25453. extra: 244 / 218,
  25454. bottom: 14 / 260
  25455. }
  25456. },
  25457. },
  25458. [
  25459. {
  25460. name: "Compact",
  25461. height: math.unit(10.5, "feet"),
  25462. default: true
  25463. },
  25464. {
  25465. name: "Dynamax",
  25466. height: math.unit(210, "feet")
  25467. },
  25468. {
  25469. name: "Full Macro",
  25470. height: math.unit(850, "feet")
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25476. {
  25477. front: {
  25478. height: math.unit(28, "feet"),
  25479. weight: math.unit(10500, "lb"),
  25480. name: "Front",
  25481. image: {
  25482. source: "./media/characters/kayda/front.svg",
  25483. extra: 1536 / 1428,
  25484. bottom: 68.7 / 1603
  25485. }
  25486. },
  25487. back: {
  25488. height: math.unit(28, "feet"),
  25489. weight: math.unit(10500, "lb"),
  25490. name: "Back",
  25491. image: {
  25492. source: "./media/characters/kayda/back.svg",
  25493. extra: 1557 / 1464,
  25494. bottom: 39.5 / 1597.49
  25495. }
  25496. },
  25497. dick: {
  25498. height: math.unit(3.858, "feet"),
  25499. name: "Dick",
  25500. image: {
  25501. source: "./media/characters/kayda/dick.svg"
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Macro",
  25508. height: math.unit(28, "feet"),
  25509. default: true
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(10 + 11 / 12, "feet"),
  25518. weight: math.unit(1400, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/brian/front.svg",
  25522. extra: 737 / 692,
  25523. bottom: 55.4 / 785
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Normal",
  25530. height: math.unit(10 + 11 / 12, "feet"),
  25531. default: true
  25532. },
  25533. ]
  25534. ))
  25535. characterMakers.push(() => makeCharacter(
  25536. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25537. {
  25538. front: {
  25539. height: math.unit(5 + 8 / 12, "feet"),
  25540. weight: math.unit(140, "lb"),
  25541. name: "Front",
  25542. image: {
  25543. source: "./media/characters/khemri/front.svg",
  25544. extra: 4780 / 4059,
  25545. bottom: 80.1 / 4859.25
  25546. }
  25547. },
  25548. },
  25549. [
  25550. {
  25551. name: "Micro",
  25552. height: math.unit(6, "inches")
  25553. },
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(5 + 8 / 12, "feet"),
  25557. default: true
  25558. },
  25559. ]
  25560. ))
  25561. characterMakers.push(() => makeCharacter(
  25562. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25563. {
  25564. front: {
  25565. height: math.unit(13, "feet"),
  25566. weight: math.unit(1700, "lb"),
  25567. name: "Front",
  25568. image: {
  25569. source: "./media/characters/felix-braveheart/front.svg",
  25570. extra: 1222 / 1157,
  25571. bottom: 53.2 / 1280
  25572. }
  25573. },
  25574. back: {
  25575. height: math.unit(13, "feet"),
  25576. weight: math.unit(1700, "lb"),
  25577. name: "Back",
  25578. image: {
  25579. source: "./media/characters/felix-braveheart/back.svg",
  25580. extra: 1277 / 1203,
  25581. bottom: 50.2 / 1327
  25582. }
  25583. },
  25584. feral: {
  25585. height: math.unit(6, "feet"),
  25586. weight: math.unit(400, "lb"),
  25587. name: "Feral",
  25588. image: {
  25589. source: "./media/characters/felix-braveheart/feral.svg",
  25590. extra: 682 / 625,
  25591. bottom: 6.9 / 688
  25592. }
  25593. },
  25594. },
  25595. [
  25596. {
  25597. name: "Normal",
  25598. height: math.unit(13, "feet"),
  25599. default: true
  25600. },
  25601. ]
  25602. ))
  25603. characterMakers.push(() => makeCharacter(
  25604. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25605. {
  25606. side: {
  25607. height: math.unit(5 + 11 / 12, "feet"),
  25608. weight: math.unit(1400, "lb"),
  25609. name: "Side",
  25610. image: {
  25611. source: "./media/characters/shadow-blade/side.svg",
  25612. extra: 1726 / 1267,
  25613. bottom: 58.4 / 1785
  25614. }
  25615. },
  25616. },
  25617. [
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(5 + 11 / 12, "feet"),
  25621. default: true
  25622. },
  25623. ]
  25624. ))
  25625. characterMakers.push(() => makeCharacter(
  25626. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25627. {
  25628. front: {
  25629. height: math.unit(1 + 6 / 12, "feet"),
  25630. weight: math.unit(25, "lb"),
  25631. name: "Front",
  25632. image: {
  25633. source: "./media/characters/karla-halldor/front.svg",
  25634. extra: 1459 / 1383,
  25635. bottom: 12 / 1472
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Normal",
  25642. height: math.unit(1 + 6 / 12, "feet"),
  25643. default: true
  25644. },
  25645. ]
  25646. ))
  25647. characterMakers.push(() => makeCharacter(
  25648. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25649. {
  25650. front: {
  25651. height: math.unit(6 + 2 / 12, "feet"),
  25652. weight: math.unit(160, "lb"),
  25653. name: "Front",
  25654. image: {
  25655. source: "./media/characters/ariam/front.svg",
  25656. extra: 1073/976,
  25657. bottom: 52/1125
  25658. }
  25659. },
  25660. back: {
  25661. height: math.unit(6 + 2/12, "feet"),
  25662. weight: math.unit(160, "lb"),
  25663. name: "Back",
  25664. image: {
  25665. source: "./media/characters/ariam/back.svg",
  25666. extra: 1103/1023,
  25667. bottom: 9/1112
  25668. }
  25669. },
  25670. dressed: {
  25671. height: math.unit(6 + 2/12, "feet"),
  25672. weight: math.unit(160, "lb"),
  25673. name: "Dressed",
  25674. image: {
  25675. source: "./media/characters/ariam/dressed.svg",
  25676. extra: 1099/1009,
  25677. bottom: 25/1124
  25678. }
  25679. },
  25680. squatting: {
  25681. height: math.unit(4.1, "feet"),
  25682. weight: math.unit(160, "lb"),
  25683. name: "Squatting",
  25684. image: {
  25685. source: "./media/characters/ariam/squatting.svg",
  25686. extra: 2617 / 2112,
  25687. bottom: 61.2 / 2681,
  25688. }
  25689. },
  25690. },
  25691. [
  25692. {
  25693. name: "Normal",
  25694. height: math.unit(6 + 2 / 12, "feet"),
  25695. default: true
  25696. },
  25697. {
  25698. name: "Normal+",
  25699. height: math.unit(4, "meters")
  25700. },
  25701. {
  25702. name: "Macro",
  25703. height: math.unit(50, "meters")
  25704. },
  25705. {
  25706. name: "Macro+",
  25707. height: math.unit(100, "meters")
  25708. },
  25709. {
  25710. name: "Megamacro",
  25711. height: math.unit(20, "km")
  25712. },
  25713. {
  25714. name: "Caretaker",
  25715. height: math.unit(444, "megameters")
  25716. },
  25717. ]
  25718. ))
  25719. characterMakers.push(() => makeCharacter(
  25720. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25721. {
  25722. front: {
  25723. height: math.unit(1.67, "meters"),
  25724. weight: math.unit(140, "lb"),
  25725. name: "Front",
  25726. image: {
  25727. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25728. extra: 438 / 410,
  25729. bottom: 0.75 / 439
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Shrunken",
  25736. height: math.unit(7.6, "cm")
  25737. },
  25738. {
  25739. name: "Human Scale",
  25740. height: math.unit(1.67, "meters")
  25741. },
  25742. {
  25743. name: "Wolxi Scale",
  25744. height: math.unit(36.7, "meters"),
  25745. default: true
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(1.73, "meters"),
  25754. weight: math.unit(240, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/izue-two-mothers/front.svg",
  25758. extra: 469 / 437,
  25759. bottom: 1.24 / 470.6
  25760. }
  25761. },
  25762. },
  25763. [
  25764. {
  25765. name: "Shrunken",
  25766. height: math.unit(7.86, "cm")
  25767. },
  25768. {
  25769. name: "Human Scale",
  25770. height: math.unit(1.73, "meters")
  25771. },
  25772. {
  25773. name: "Wolxi Scale",
  25774. height: math.unit(38, "meters"),
  25775. default: true
  25776. },
  25777. ]
  25778. ))
  25779. characterMakers.push(() => makeCharacter(
  25780. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25781. {
  25782. front: {
  25783. height: math.unit(1.55, "meters"),
  25784. weight: math.unit(120, "lb"),
  25785. name: "Front",
  25786. image: {
  25787. source: "./media/characters/teeku-love-shack/front.svg",
  25788. extra: 387 / 362,
  25789. bottom: 1.51 / 388
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Shrunken",
  25796. height: math.unit(7, "cm")
  25797. },
  25798. {
  25799. name: "Human Scale",
  25800. height: math.unit(1.55, "meters")
  25801. },
  25802. {
  25803. name: "Wolxi Scale",
  25804. height: math.unit(34.1, "meters"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25811. {
  25812. front: {
  25813. height: math.unit(1.83, "meters"),
  25814. weight: math.unit(135, "lb"),
  25815. name: "Front",
  25816. image: {
  25817. source: "./media/characters/dejma-the-red/front.svg",
  25818. extra: 480 / 458,
  25819. bottom: 1.8 / 482
  25820. }
  25821. },
  25822. },
  25823. [
  25824. {
  25825. name: "Shrunken",
  25826. height: math.unit(8.3, "cm")
  25827. },
  25828. {
  25829. name: "Human Scale",
  25830. height: math.unit(1.83, "meters")
  25831. },
  25832. {
  25833. name: "Wolxi Scale",
  25834. height: math.unit(40, "meters"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(1.78, "meters"),
  25844. weight: math.unit(65, "kg"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/aki/front.svg",
  25848. extra: 452 / 415
  25849. }
  25850. },
  25851. frontNsfw: {
  25852. height: math.unit(1.78, "meters"),
  25853. weight: math.unit(65, "kg"),
  25854. name: "Front (NSFW)",
  25855. image: {
  25856. source: "./media/characters/aki/front-nsfw.svg",
  25857. extra: 452 / 415
  25858. }
  25859. },
  25860. back: {
  25861. height: math.unit(1.78, "meters"),
  25862. weight: math.unit(65, "kg"),
  25863. name: "Back",
  25864. image: {
  25865. source: "./media/characters/aki/back.svg",
  25866. extra: 452 / 415
  25867. }
  25868. },
  25869. rump: {
  25870. height: math.unit(2.05, "feet"),
  25871. name: "Rump",
  25872. image: {
  25873. source: "./media/characters/aki/rump.svg"
  25874. }
  25875. },
  25876. dick: {
  25877. height: math.unit(0.95, "feet"),
  25878. name: "Dick",
  25879. image: {
  25880. source: "./media/characters/aki/dick.svg"
  25881. }
  25882. },
  25883. },
  25884. [
  25885. {
  25886. name: "Micro",
  25887. height: math.unit(15, "cm")
  25888. },
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(178, "cm"),
  25892. default: true
  25893. },
  25894. {
  25895. name: "Macro",
  25896. height: math.unit(214, "m")
  25897. },
  25898. {
  25899. name: "Macro+",
  25900. height: math.unit(534, "m")
  25901. },
  25902. ]
  25903. ))
  25904. characterMakers.push(() => makeCharacter(
  25905. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25906. {
  25907. front: {
  25908. height: math.unit(5 + 5 / 12, "feet"),
  25909. weight: math.unit(120, "lb"),
  25910. name: "Front",
  25911. image: {
  25912. source: "./media/characters/ari/front.svg",
  25913. extra: 1550/1471,
  25914. bottom: 39/1589
  25915. }
  25916. },
  25917. },
  25918. [
  25919. {
  25920. name: "Normal",
  25921. height: math.unit(5 + 5 / 12, "feet")
  25922. },
  25923. {
  25924. name: "Macro",
  25925. height: math.unit(100, "feet"),
  25926. default: true
  25927. },
  25928. {
  25929. name: "Megamacro",
  25930. height: math.unit(100, "miles")
  25931. },
  25932. {
  25933. name: "Gigamacro",
  25934. height: math.unit(80000, "miles")
  25935. },
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25940. {
  25941. side: {
  25942. height: math.unit(9, "feet"),
  25943. weight: math.unit(400, "kg"),
  25944. name: "Side",
  25945. image: {
  25946. source: "./media/characters/bolt/side.svg",
  25947. extra: 1126 / 896,
  25948. bottom: 60 / 1187.3,
  25949. }
  25950. },
  25951. },
  25952. [
  25953. {
  25954. name: "Micro",
  25955. height: math.unit(5, "inches")
  25956. },
  25957. {
  25958. name: "Normal",
  25959. height: math.unit(9, "feet"),
  25960. default: true
  25961. },
  25962. {
  25963. name: "Macro",
  25964. height: math.unit(700, "feet")
  25965. },
  25966. {
  25967. name: "Max Size",
  25968. height: math.unit(1.52e22, "yottameters")
  25969. },
  25970. ]
  25971. ))
  25972. characterMakers.push(() => makeCharacter(
  25973. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25974. {
  25975. front: {
  25976. height: math.unit(4.3, "meters"),
  25977. weight: math.unit(3, "tons"),
  25978. name: "Front",
  25979. image: {
  25980. source: "./media/characters/draekon-sylviar/front.svg",
  25981. extra: 2072/1512,
  25982. bottom: 74/2146
  25983. }
  25984. },
  25985. back: {
  25986. height: math.unit(4.3, "meters"),
  25987. weight: math.unit(3, "tons"),
  25988. name: "Back",
  25989. image: {
  25990. source: "./media/characters/draekon-sylviar/back.svg",
  25991. extra: 1639/1483,
  25992. bottom: 41/1680
  25993. }
  25994. },
  25995. feral: {
  25996. height: math.unit(1.15, "meters"),
  25997. weight: math.unit(3, "tons"),
  25998. name: "Feral",
  25999. image: {
  26000. source: "./media/characters/draekon-sylviar/feral.svg",
  26001. extra: 1033/395,
  26002. bottom: 130/1163
  26003. }
  26004. },
  26005. maw: {
  26006. height: math.unit(1.3, "meters"),
  26007. name: "Maw",
  26008. image: {
  26009. source: "./media/characters/draekon-sylviar/maw.svg"
  26010. }
  26011. },
  26012. mawSeparated: {
  26013. height: math.unit(1.53, "meters"),
  26014. name: "Separated Maw",
  26015. image: {
  26016. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26017. }
  26018. },
  26019. tail: {
  26020. height: math.unit(1.15, "meters"),
  26021. name: "Tail",
  26022. image: {
  26023. source: "./media/characters/draekon-sylviar/tail.svg"
  26024. }
  26025. },
  26026. tailDick: {
  26027. height: math.unit(1.15, "meters"),
  26028. name: "Tail (Dick)",
  26029. image: {
  26030. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26031. }
  26032. },
  26033. tailDickSeparated: {
  26034. height: math.unit(1.19, "meters"),
  26035. name: "Tail (Separated Dick)",
  26036. image: {
  26037. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26038. }
  26039. },
  26040. slit: {
  26041. height: math.unit(1, "meters"),
  26042. name: "Slit",
  26043. image: {
  26044. source: "./media/characters/draekon-sylviar/slit.svg"
  26045. }
  26046. },
  26047. dick: {
  26048. height: math.unit(1.15, "meters"),
  26049. name: "Dick",
  26050. image: {
  26051. source: "./media/characters/draekon-sylviar/dick.svg"
  26052. }
  26053. },
  26054. dickSeparated: {
  26055. height: math.unit(1.1, "meters"),
  26056. name: "Separated Dick",
  26057. image: {
  26058. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26059. }
  26060. },
  26061. sheath: {
  26062. height: math.unit(1.15, "meters"),
  26063. name: "Sheath",
  26064. image: {
  26065. source: "./media/characters/draekon-sylviar/sheath.svg"
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Small",
  26072. height: math.unit(4.53 / 2, "meters"),
  26073. default: true
  26074. },
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(4.53, "meters"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Large",
  26082. height: math.unit(4.53 * 2, "meters"),
  26083. },
  26084. ]
  26085. ))
  26086. characterMakers.push(() => makeCharacter(
  26087. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26088. {
  26089. front: {
  26090. height: math.unit(6 + 2 / 12, "feet"),
  26091. weight: math.unit(180, "lb"),
  26092. name: "Front",
  26093. image: {
  26094. source: "./media/characters/brawler/front.svg",
  26095. extra: 3301 / 3027,
  26096. bottom: 138 / 3439
  26097. }
  26098. },
  26099. },
  26100. [
  26101. {
  26102. name: "Normal",
  26103. height: math.unit(6 + 2 / 12, "feet"),
  26104. default: true
  26105. },
  26106. ]
  26107. ))
  26108. characterMakers.push(() => makeCharacter(
  26109. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26110. {
  26111. front: {
  26112. height: math.unit(11, "feet"),
  26113. weight: math.unit(1000, "lb"),
  26114. name: "Front",
  26115. image: {
  26116. source: "./media/characters/alex/front.svg",
  26117. bottom: 44.5 / 620
  26118. }
  26119. },
  26120. },
  26121. [
  26122. {
  26123. name: "Micro",
  26124. height: math.unit(5, "inches")
  26125. },
  26126. {
  26127. name: "Normal",
  26128. height: math.unit(11, "feet"),
  26129. default: true
  26130. },
  26131. {
  26132. name: "Macro",
  26133. height: math.unit(9.5e9, "feet")
  26134. },
  26135. {
  26136. name: "Max Size",
  26137. height: math.unit(1.4e283, "yottameters")
  26138. },
  26139. ]
  26140. ))
  26141. characterMakers.push(() => makeCharacter(
  26142. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26143. {
  26144. female: {
  26145. height: math.unit(29.9, "m"),
  26146. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26147. name: "Female",
  26148. image: {
  26149. source: "./media/characters/zenari/female.svg",
  26150. extra: 3281.6 / 3217,
  26151. bottom: 72.2 / 3353
  26152. }
  26153. },
  26154. male: {
  26155. height: math.unit(27.7, "m"),
  26156. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26157. name: "Male",
  26158. image: {
  26159. source: "./media/characters/zenari/male.svg",
  26160. extra: 3008 / 2991,
  26161. bottom: 54.6 / 3069
  26162. }
  26163. },
  26164. },
  26165. [
  26166. {
  26167. name: "Macro",
  26168. height: math.unit(29.7, "meters"),
  26169. default: true
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26175. {
  26176. female: {
  26177. height: math.unit(23.8, "m"),
  26178. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26179. name: "Female",
  26180. image: {
  26181. source: "./media/characters/mactarian/female.svg",
  26182. extra: 2662 / 2569,
  26183. bottom: 73 / 2736
  26184. }
  26185. },
  26186. male: {
  26187. height: math.unit(23.8, "m"),
  26188. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26189. name: "Male",
  26190. image: {
  26191. source: "./media/characters/mactarian/male.svg",
  26192. extra: 2673 / 2600,
  26193. bottom: 76 / 2750
  26194. }
  26195. },
  26196. },
  26197. [
  26198. {
  26199. name: "Macro",
  26200. height: math.unit(23.8, "meters"),
  26201. default: true
  26202. },
  26203. ]
  26204. ))
  26205. characterMakers.push(() => makeCharacter(
  26206. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26207. {
  26208. female: {
  26209. height: math.unit(19.3, "m"),
  26210. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26211. name: "Female",
  26212. image: {
  26213. source: "./media/characters/umok/female.svg",
  26214. extra: 2186 / 2078,
  26215. bottom: 87 / 2277
  26216. }
  26217. },
  26218. male: {
  26219. height: math.unit(19.5, "m"),
  26220. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26221. name: "Male",
  26222. image: {
  26223. source: "./media/characters/umok/male.svg",
  26224. extra: 2233 / 2140,
  26225. bottom: 24.4 / 2258
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Macro",
  26232. height: math.unit(19.3, "meters"),
  26233. default: true
  26234. },
  26235. ]
  26236. ))
  26237. characterMakers.push(() => makeCharacter(
  26238. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26239. {
  26240. female: {
  26241. height: math.unit(26.15, "m"),
  26242. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26243. name: "Female",
  26244. image: {
  26245. source: "./media/characters/joraxian/female.svg",
  26246. extra: 2912 / 2824,
  26247. bottom: 36 / 2956
  26248. }
  26249. },
  26250. male: {
  26251. height: math.unit(25.4, "m"),
  26252. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26253. name: "Male",
  26254. image: {
  26255. source: "./media/characters/joraxian/male.svg",
  26256. extra: 2877 / 2721,
  26257. bottom: 82 / 2967
  26258. }
  26259. },
  26260. },
  26261. [
  26262. {
  26263. name: "Macro",
  26264. height: math.unit(26.15, "meters"),
  26265. default: true
  26266. },
  26267. ]
  26268. ))
  26269. characterMakers.push(() => makeCharacter(
  26270. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26271. {
  26272. female: {
  26273. height: math.unit(21.6, "m"),
  26274. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26275. name: "Female",
  26276. image: {
  26277. source: "./media/characters/sthara/female.svg",
  26278. extra: 2516 / 2347,
  26279. bottom: 21.5 / 2537
  26280. }
  26281. },
  26282. male: {
  26283. height: math.unit(24, "m"),
  26284. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26285. name: "Male",
  26286. image: {
  26287. source: "./media/characters/sthara/male.svg",
  26288. extra: 2732 / 2607,
  26289. bottom: 23 / 2732
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Macro",
  26296. height: math.unit(21.6, "meters"),
  26297. default: true
  26298. },
  26299. ]
  26300. ))
  26301. characterMakers.push(() => makeCharacter(
  26302. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26303. {
  26304. front: {
  26305. height: math.unit(6 + 4 / 12, "feet"),
  26306. weight: math.unit(175, "lb"),
  26307. name: "Front",
  26308. image: {
  26309. source: "./media/characters/luka-bryzant/front.svg",
  26310. extra: 311 / 289,
  26311. bottom: 4 / 315
  26312. }
  26313. },
  26314. back: {
  26315. height: math.unit(6 + 4 / 12, "feet"),
  26316. weight: math.unit(175, "lb"),
  26317. name: "Back",
  26318. image: {
  26319. source: "./media/characters/luka-bryzant/back.svg",
  26320. extra: 311 / 289,
  26321. bottom: 3.8 / 313.7
  26322. }
  26323. },
  26324. },
  26325. [
  26326. {
  26327. name: "Micro",
  26328. height: math.unit(10, "inches")
  26329. },
  26330. {
  26331. name: "Normal",
  26332. height: math.unit(6 + 4 / 12, "feet"),
  26333. default: true
  26334. },
  26335. {
  26336. name: "Large",
  26337. height: math.unit(12, "feet")
  26338. },
  26339. ]
  26340. ))
  26341. characterMakers.push(() => makeCharacter(
  26342. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26343. {
  26344. front: {
  26345. height: math.unit(5 + 7 / 12, "feet"),
  26346. weight: math.unit(185, "lb"),
  26347. name: "Front",
  26348. image: {
  26349. source: "./media/characters/aman-aquila/front.svg",
  26350. extra: 1013 / 976,
  26351. bottom: 45.6 / 1057
  26352. }
  26353. },
  26354. side: {
  26355. height: math.unit(5 + 7 / 12, "feet"),
  26356. weight: math.unit(185, "lb"),
  26357. name: "Side",
  26358. image: {
  26359. source: "./media/characters/aman-aquila/side.svg",
  26360. extra: 1054 / 1011,
  26361. bottom: 15 / 1070
  26362. }
  26363. },
  26364. back: {
  26365. height: math.unit(5 + 7 / 12, "feet"),
  26366. weight: math.unit(185, "lb"),
  26367. name: "Back",
  26368. image: {
  26369. source: "./media/characters/aman-aquila/back.svg",
  26370. extra: 1026 / 970,
  26371. bottom: 12 / 1039
  26372. }
  26373. },
  26374. head: {
  26375. height: math.unit(1.211, "feet"),
  26376. name: "Head",
  26377. image: {
  26378. source: "./media/characters/aman-aquila/head.svg",
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Minimicro",
  26385. height: math.unit(0.057, "inches")
  26386. },
  26387. {
  26388. name: "Micro",
  26389. height: math.unit(7, "inches")
  26390. },
  26391. {
  26392. name: "Mini",
  26393. height: math.unit(3 + 7 / 12, "feet")
  26394. },
  26395. {
  26396. name: "Normal",
  26397. height: math.unit(5 + 7 / 12, "feet"),
  26398. default: true
  26399. },
  26400. {
  26401. name: "Macro",
  26402. height: math.unit(157 + 7 / 12, "feet")
  26403. },
  26404. {
  26405. name: "Megamacro",
  26406. height: math.unit(1557 + 7 / 12, "feet")
  26407. },
  26408. {
  26409. name: "Gigamacro",
  26410. height: math.unit(15557 + 7 / 12, "feet")
  26411. },
  26412. ]
  26413. ))
  26414. characterMakers.push(() => makeCharacter(
  26415. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26416. {
  26417. front: {
  26418. height: math.unit(3 + 2 / 12, "inches"),
  26419. weight: math.unit(0.3, "ounces"),
  26420. name: "Front",
  26421. image: {
  26422. source: "./media/characters/hiphae/front.svg",
  26423. extra: 1931 / 1683,
  26424. bottom: 24 / 1955
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(3 + 1 / 2, "inches"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26438. {
  26439. front: {
  26440. height: math.unit(5 + 10 / 12, "feet"),
  26441. weight: math.unit(165, "lb"),
  26442. name: "Front",
  26443. image: {
  26444. source: "./media/characters/nicky/front.svg",
  26445. extra: 3144 / 2886,
  26446. bottom: 45.6 / 3192
  26447. }
  26448. },
  26449. back: {
  26450. height: math.unit(5 + 10 / 12, "feet"),
  26451. weight: math.unit(165, "lb"),
  26452. name: "Back",
  26453. image: {
  26454. source: "./media/characters/nicky/back.svg",
  26455. extra: 3055 / 2804,
  26456. bottom: 28.4 / 3087
  26457. }
  26458. },
  26459. frontclothed: {
  26460. height: math.unit(5 + 10 / 12, "feet"),
  26461. weight: math.unit(165, "lb"),
  26462. name: "Front-clothed",
  26463. image: {
  26464. source: "./media/characters/nicky/front-clothed.svg",
  26465. extra: 3184.9 / 2926.9,
  26466. bottom: 86.5 / 3239.9
  26467. }
  26468. },
  26469. foot: {
  26470. height: math.unit(1.16, "feet"),
  26471. name: "Foot",
  26472. image: {
  26473. source: "./media/characters/nicky/foot.svg"
  26474. }
  26475. },
  26476. feet: {
  26477. height: math.unit(1.34, "feet"),
  26478. name: "Feet",
  26479. image: {
  26480. source: "./media/characters/nicky/feet.svg"
  26481. }
  26482. },
  26483. maw: {
  26484. height: math.unit(0.9, "feet"),
  26485. name: "Maw",
  26486. image: {
  26487. source: "./media/characters/nicky/maw.svg"
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Normal",
  26494. height: math.unit(5 + 10 / 12, "feet"),
  26495. default: true
  26496. },
  26497. {
  26498. name: "Macro",
  26499. height: math.unit(60, "feet")
  26500. },
  26501. {
  26502. name: "Megamacro",
  26503. height: math.unit(1, "mile")
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26509. {
  26510. side: {
  26511. height: math.unit(10, "feet"),
  26512. weight: math.unit(600, "lb"),
  26513. name: "Side",
  26514. image: {
  26515. source: "./media/characters/blair/side.svg",
  26516. bottom: 16.6 / 475,
  26517. extra: 458 / 431
  26518. }
  26519. },
  26520. },
  26521. [
  26522. {
  26523. name: "Micro",
  26524. height: math.unit(8, "inches")
  26525. },
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(10, "feet"),
  26529. default: true
  26530. },
  26531. {
  26532. name: "Macro",
  26533. height: math.unit(180, "feet")
  26534. },
  26535. ]
  26536. ))
  26537. characterMakers.push(() => makeCharacter(
  26538. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26539. {
  26540. front: {
  26541. height: math.unit(5 + 4 / 12, "feet"),
  26542. weight: math.unit(125, "lb"),
  26543. name: "Front",
  26544. image: {
  26545. source: "./media/characters/fisher/front.svg",
  26546. extra: 444 / 390,
  26547. bottom: 2 / 444.8
  26548. }
  26549. },
  26550. },
  26551. [
  26552. {
  26553. name: "Micro",
  26554. height: math.unit(4, "inches")
  26555. },
  26556. {
  26557. name: "Normal",
  26558. height: math.unit(5 + 4 / 12, "feet"),
  26559. default: true
  26560. },
  26561. {
  26562. name: "Macro",
  26563. height: math.unit(100, "feet")
  26564. },
  26565. ]
  26566. ))
  26567. characterMakers.push(() => makeCharacter(
  26568. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26569. {
  26570. front: {
  26571. height: math.unit(6.71, "feet"),
  26572. weight: math.unit(200, "lb"),
  26573. preyCapacity: math.unit(1000000, "people"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/gliss/front.svg",
  26577. extra: 2347 / 2231,
  26578. bottom: 113 / 2462
  26579. }
  26580. },
  26581. hammerspaceSize: {
  26582. height: math.unit(6.71 * 717, "feet"),
  26583. weight: math.unit(200, "lb"),
  26584. preyCapacity: math.unit(1000000, "people"),
  26585. name: "Hammerspace Size",
  26586. image: {
  26587. source: "./media/characters/gliss/front.svg",
  26588. extra: 2347 / 2231,
  26589. bottom: 113 / 2462
  26590. }
  26591. },
  26592. },
  26593. [
  26594. {
  26595. name: "Normal",
  26596. height: math.unit(6.71, "feet"),
  26597. default: true
  26598. },
  26599. ]
  26600. ))
  26601. characterMakers.push(() => makeCharacter(
  26602. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26603. {
  26604. side: {
  26605. height: math.unit(1.44, "m"),
  26606. weight: math.unit(80, "kg"),
  26607. name: "Side",
  26608. image: {
  26609. source: "./media/characters/dune-anderson/side.svg",
  26610. bottom: 49 / 1426
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Wolf-sized",
  26617. height: math.unit(1.44, "meters")
  26618. },
  26619. {
  26620. name: "Normal",
  26621. height: math.unit(5.05, "meters"),
  26622. default: true
  26623. },
  26624. {
  26625. name: "Big",
  26626. height: math.unit(14.4, "meters")
  26627. },
  26628. {
  26629. name: "Huge",
  26630. height: math.unit(144, "meters")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(7, "feet"),
  26639. weight: math.unit(425, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/hind/front.svg",
  26643. extra: 2091 / 1860,
  26644. bottom: 129 / 2220
  26645. }
  26646. },
  26647. back: {
  26648. height: math.unit(7, "feet"),
  26649. weight: math.unit(425, "lb"),
  26650. name: "Back",
  26651. image: {
  26652. source: "./media/characters/hind/back.svg",
  26653. extra: 2091 / 1860,
  26654. bottom: 24.6 / 2309
  26655. }
  26656. },
  26657. tail: {
  26658. height: math.unit(2.8, "feet"),
  26659. name: "Tail",
  26660. image: {
  26661. source: "./media/characters/hind/tail.svg"
  26662. }
  26663. },
  26664. head: {
  26665. height: math.unit(2.55, "feet"),
  26666. name: "Head",
  26667. image: {
  26668. source: "./media/characters/hind/head.svg"
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "XS",
  26675. height: math.unit(0.7, "feet")
  26676. },
  26677. {
  26678. name: "Normal",
  26679. height: math.unit(7, "feet"),
  26680. default: true
  26681. },
  26682. {
  26683. name: "XL",
  26684. height: math.unit(70, "feet")
  26685. },
  26686. ]
  26687. ))
  26688. characterMakers.push(() => makeCharacter(
  26689. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26690. {
  26691. front: {
  26692. height: math.unit(2.1, "meters"),
  26693. weight: math.unit(150, "lb"),
  26694. name: "Front",
  26695. image: {
  26696. source: "./media/characters/tharquench-sizestealer/front.svg",
  26697. extra: 1605/1470,
  26698. bottom: 36/1641
  26699. }
  26700. },
  26701. frontAlt: {
  26702. height: math.unit(2.1, "meters"),
  26703. weight: math.unit(150, "lb"),
  26704. name: "Front (Alt)",
  26705. image: {
  26706. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26707. extra: 2318 / 2063,
  26708. bottom: 93.4 / 2410
  26709. }
  26710. },
  26711. },
  26712. [
  26713. {
  26714. name: "Nano",
  26715. height: math.unit(1, "mm")
  26716. },
  26717. {
  26718. name: "Micro",
  26719. height: math.unit(1, "cm")
  26720. },
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(2.1, "meters"),
  26724. default: true
  26725. },
  26726. ]
  26727. ))
  26728. characterMakers.push(() => makeCharacter(
  26729. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26730. {
  26731. front: {
  26732. height: math.unit(7 + 5 / 12, "feet"),
  26733. weight: math.unit(357, "lb"),
  26734. name: "Front",
  26735. image: {
  26736. source: "./media/characters/solex-draconov/front.svg",
  26737. extra: 1993 / 1865,
  26738. bottom: 117 / 2111
  26739. }
  26740. },
  26741. },
  26742. [
  26743. {
  26744. name: "Natural Height",
  26745. height: math.unit(7 + 5 / 12, "feet"),
  26746. default: true
  26747. },
  26748. {
  26749. name: "Macro",
  26750. height: math.unit(350, "feet")
  26751. },
  26752. {
  26753. name: "Macro+",
  26754. height: math.unit(1000, "feet")
  26755. },
  26756. {
  26757. name: "Megamacro",
  26758. height: math.unit(20, "km")
  26759. },
  26760. {
  26761. name: "Megamacro+",
  26762. height: math.unit(1000, "km")
  26763. },
  26764. {
  26765. name: "Gigamacro",
  26766. height: math.unit(2.5, "Gm")
  26767. },
  26768. {
  26769. name: "Teramacro",
  26770. height: math.unit(15, "Tm")
  26771. },
  26772. {
  26773. name: "Galactic",
  26774. height: math.unit(30, "Zm")
  26775. },
  26776. {
  26777. name: "Universal",
  26778. height: math.unit(21000, "Ym")
  26779. },
  26780. {
  26781. name: "Omniversal",
  26782. height: math.unit(9.861e50, "Ym")
  26783. },
  26784. {
  26785. name: "Existential",
  26786. height: math.unit(1e300, "meters")
  26787. },
  26788. ]
  26789. ))
  26790. characterMakers.push(() => makeCharacter(
  26791. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26792. {
  26793. side: {
  26794. height: math.unit(25, "feet"),
  26795. weight: math.unit(90000, "lb"),
  26796. name: "Side",
  26797. image: {
  26798. source: "./media/characters/mandarax/side.svg",
  26799. extra: 614 / 332,
  26800. bottom: 55 / 630
  26801. }
  26802. },
  26803. lounging: {
  26804. height: math.unit(15.4, "feet"),
  26805. weight: math.unit(90000, "lb"),
  26806. name: "Lounging",
  26807. image: {
  26808. source: "./media/characters/mandarax/lounging.svg",
  26809. extra: 817/609,
  26810. bottom: 685/1502
  26811. }
  26812. },
  26813. head: {
  26814. height: math.unit(11.4, "feet"),
  26815. name: "Head",
  26816. image: {
  26817. source: "./media/characters/mandarax/head.svg"
  26818. }
  26819. },
  26820. belly: {
  26821. height: math.unit(33, "feet"),
  26822. name: "Belly",
  26823. preyCapacity: math.unit(500, "people"),
  26824. image: {
  26825. source: "./media/characters/mandarax/belly.svg"
  26826. }
  26827. },
  26828. dick: {
  26829. height: math.unit(8.46, "feet"),
  26830. name: "Dick",
  26831. image: {
  26832. source: "./media/characters/mandarax/dick.svg"
  26833. }
  26834. },
  26835. top: {
  26836. height: math.unit(28, "meters"),
  26837. name: "Top",
  26838. image: {
  26839. source: "./media/characters/mandarax/top.svg"
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Normal",
  26846. height: math.unit(25, "feet"),
  26847. default: true
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(5, "feet"),
  26856. weight: math.unit(90, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/pixil/front.svg",
  26860. extra: 2000 / 1618,
  26861. bottom: 12.3 / 2011
  26862. }
  26863. },
  26864. },
  26865. [
  26866. {
  26867. name: "Normal",
  26868. height: math.unit(5, "feet"),
  26869. default: true
  26870. },
  26871. {
  26872. name: "Megamacro",
  26873. height: math.unit(10, "miles"),
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(7 + 2 / 12, "feet"),
  26882. weight: math.unit(200, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/angel/front.svg",
  26886. extra: 1830 / 1737,
  26887. bottom: 22.6 / 1854,
  26888. }
  26889. },
  26890. },
  26891. [
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(7 + 2 / 12, "feet"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Macro",
  26899. height: math.unit(1000, "feet")
  26900. },
  26901. {
  26902. name: "Megamacro",
  26903. height: math.unit(2, "miles")
  26904. },
  26905. {
  26906. name: "Gigamacro",
  26907. height: math.unit(20, "earths")
  26908. },
  26909. ]
  26910. ))
  26911. characterMakers.push(() => makeCharacter(
  26912. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26913. {
  26914. front: {
  26915. height: math.unit(5, "feet"),
  26916. weight: math.unit(180, "lb"),
  26917. name: "Front",
  26918. image: {
  26919. source: "./media/characters/mekana/front.svg",
  26920. extra: 1671 / 1605,
  26921. bottom: 3.5 / 1691
  26922. }
  26923. },
  26924. side: {
  26925. height: math.unit(5, "feet"),
  26926. weight: math.unit(180, "lb"),
  26927. name: "Side",
  26928. image: {
  26929. source: "./media/characters/mekana/side.svg",
  26930. extra: 1671 / 1605,
  26931. bottom: 3.5 / 1691
  26932. }
  26933. },
  26934. back: {
  26935. height: math.unit(5, "feet"),
  26936. weight: math.unit(180, "lb"),
  26937. name: "Back",
  26938. image: {
  26939. source: "./media/characters/mekana/back.svg",
  26940. extra: 1671 / 1605,
  26941. bottom: 3.5 / 1691
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Normal",
  26948. height: math.unit(5, "feet"),
  26949. default: true
  26950. },
  26951. ]
  26952. ))
  26953. characterMakers.push(() => makeCharacter(
  26954. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26955. {
  26956. front: {
  26957. height: math.unit(4 + 6 / 12, "feet"),
  26958. weight: math.unit(80, "lb"),
  26959. name: "Front",
  26960. image: {
  26961. source: "./media/characters/pixie/front.svg",
  26962. extra: 1924 / 1825,
  26963. bottom: 22.4 / 1946
  26964. }
  26965. },
  26966. },
  26967. [
  26968. {
  26969. name: "Normal",
  26970. height: math.unit(4 + 6 / 12, "feet"),
  26971. default: true
  26972. },
  26973. {
  26974. name: "Macro",
  26975. height: math.unit(40, "feet")
  26976. },
  26977. ]
  26978. ))
  26979. characterMakers.push(() => makeCharacter(
  26980. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26981. {
  26982. front: {
  26983. height: math.unit(2.1, "meters"),
  26984. weight: math.unit(200, "lb"),
  26985. name: "Front",
  26986. image: {
  26987. source: "./media/characters/the-lascivious/front.svg",
  26988. extra: 1 / 0.893,
  26989. bottom: 3.5 / 573.7
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Human Scale",
  26996. height: math.unit(2.1, "meters")
  26997. },
  26998. {
  26999. name: "Wolxi Scale",
  27000. height: math.unit(46.2, "m"),
  27001. default: true
  27002. },
  27003. {
  27004. name: "Boinker of Buildings",
  27005. height: math.unit(10, "km")
  27006. },
  27007. {
  27008. name: "Shagger of Skyscrapers",
  27009. height: math.unit(40, "km")
  27010. },
  27011. {
  27012. name: "Banger of Boroughs",
  27013. height: math.unit(4000, "km")
  27014. },
  27015. {
  27016. name: "Screwer of States",
  27017. height: math.unit(100000, "km")
  27018. },
  27019. {
  27020. name: "Pounder of Planets",
  27021. height: math.unit(2000000, "km")
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(6, "feet"),
  27030. weight: math.unit(150, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/aj/front.svg",
  27034. extra: 2039 / 1562,
  27035. bottom: 40 / 2079
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(11 + 6 / 12, "feet"),
  27043. default: true
  27044. },
  27045. {
  27046. name: "Megamacro",
  27047. height: math.unit(60, "megameters")
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27053. {
  27054. side: {
  27055. height: math.unit(31 + 8 / 12, "feet"),
  27056. weight: math.unit(75000, "kg"),
  27057. name: "Side",
  27058. image: {
  27059. source: "./media/characters/koros/side.svg",
  27060. extra: 1442 / 1297,
  27061. bottom: 122.7 / 1562
  27062. }
  27063. },
  27064. dicksKingsCrown: {
  27065. height: math.unit(6, "feet"),
  27066. name: "Dicks (King's Crown)",
  27067. image: {
  27068. source: "./media/characters/koros/dicks-kings-crown.svg"
  27069. }
  27070. },
  27071. dicksTailSet: {
  27072. height: math.unit(3, "feet"),
  27073. name: "Dicks (Tail Set)",
  27074. image: {
  27075. source: "./media/characters/koros/dicks-tail-set.svg"
  27076. }
  27077. },
  27078. dickCumming: {
  27079. height: math.unit(7.98, "feet"),
  27080. name: "Dick (Cumming)",
  27081. image: {
  27082. source: "./media/characters/koros/dick-cumming.svg"
  27083. }
  27084. },
  27085. dicksBack: {
  27086. height: math.unit(5.9, "feet"),
  27087. name: "Dicks (Back)",
  27088. image: {
  27089. source: "./media/characters/koros/dicks-back.svg"
  27090. }
  27091. },
  27092. dicksFront: {
  27093. height: math.unit(3.72, "feet"),
  27094. name: "Dicks (Front)",
  27095. image: {
  27096. source: "./media/characters/koros/dicks-front.svg"
  27097. }
  27098. },
  27099. dicksPeeking: {
  27100. height: math.unit(3.0, "feet"),
  27101. name: "Dicks (Peeking)",
  27102. image: {
  27103. source: "./media/characters/koros/dicks-peeking.svg"
  27104. }
  27105. },
  27106. eye: {
  27107. height: math.unit(1.7, "feet"),
  27108. name: "Eye",
  27109. image: {
  27110. source: "./media/characters/koros/eye.svg"
  27111. }
  27112. },
  27113. headFront: {
  27114. height: math.unit(11.69, "feet"),
  27115. name: "Head (Front)",
  27116. image: {
  27117. source: "./media/characters/koros/head-front.svg"
  27118. }
  27119. },
  27120. headSide: {
  27121. height: math.unit(14, "feet"),
  27122. name: "Head (Side)",
  27123. image: {
  27124. source: "./media/characters/koros/head-side.svg"
  27125. }
  27126. },
  27127. leg: {
  27128. height: math.unit(17, "feet"),
  27129. name: "Leg",
  27130. image: {
  27131. source: "./media/characters/koros/leg.svg"
  27132. }
  27133. },
  27134. mawSide: {
  27135. height: math.unit(12.8, "feet"),
  27136. name: "Maw (Side)",
  27137. image: {
  27138. source: "./media/characters/koros/maw-side.svg"
  27139. }
  27140. },
  27141. mawSpitting: {
  27142. height: math.unit(17, "feet"),
  27143. name: "Maw (Spitting)",
  27144. image: {
  27145. source: "./media/characters/koros/maw-spitting.svg"
  27146. }
  27147. },
  27148. slit: {
  27149. height: math.unit(2.8, "feet"),
  27150. name: "Slit",
  27151. image: {
  27152. source: "./media/characters/koros/slit.svg"
  27153. }
  27154. },
  27155. stomach: {
  27156. height: math.unit(6.8, "feet"),
  27157. preyCapacity: math.unit(20, "people"),
  27158. name: "Stomach",
  27159. image: {
  27160. source: "./media/characters/koros/stomach.svg"
  27161. }
  27162. },
  27163. wingspanBottom: {
  27164. height: math.unit(114, "feet"),
  27165. name: "Wingspan (Bottom)",
  27166. image: {
  27167. source: "./media/characters/koros/wingspan-bottom.svg"
  27168. }
  27169. },
  27170. wingspanTop: {
  27171. height: math.unit(104, "feet"),
  27172. name: "Wingspan (Top)",
  27173. image: {
  27174. source: "./media/characters/koros/wingspan-top.svg"
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(31 + 8 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(18 + 5 / 12, "feet"),
  27191. weight: math.unit(3750, "kg"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/vexx/front.svg",
  27195. extra: 426 / 396,
  27196. bottom: 31.5 / 458
  27197. }
  27198. },
  27199. maw: {
  27200. height: math.unit(6, "feet"),
  27201. name: "Maw",
  27202. image: {
  27203. source: "./media/characters/vexx/maw.svg"
  27204. }
  27205. },
  27206. },
  27207. [
  27208. {
  27209. name: "Normal",
  27210. height: math.unit(18 + 5 / 12, "feet"),
  27211. default: true
  27212. },
  27213. ]
  27214. ))
  27215. characterMakers.push(() => makeCharacter(
  27216. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27217. {
  27218. front: {
  27219. height: math.unit(17 + 6 / 12, "feet"),
  27220. weight: math.unit(150, "lb"),
  27221. name: "Front",
  27222. image: {
  27223. source: "./media/characters/baadra/front.svg",
  27224. extra: 1694/1553,
  27225. bottom: 179/1873
  27226. }
  27227. },
  27228. frontAlt: {
  27229. height: math.unit(17 + 6 / 12, "feet"),
  27230. weight: math.unit(150, "lb"),
  27231. name: "Front (Alt)",
  27232. image: {
  27233. source: "./media/characters/baadra/front-alt.svg",
  27234. extra: 3137 / 2890,
  27235. bottom: 168.4 / 3305
  27236. }
  27237. },
  27238. back: {
  27239. height: math.unit(17 + 6 / 12, "feet"),
  27240. weight: math.unit(150, "lb"),
  27241. name: "Back",
  27242. image: {
  27243. source: "./media/characters/baadra/back.svg",
  27244. extra: 3142 / 2890,
  27245. bottom: 220 / 3371
  27246. }
  27247. },
  27248. head: {
  27249. height: math.unit(5.45, "feet"),
  27250. name: "Head",
  27251. image: {
  27252. source: "./media/characters/baadra/head.svg"
  27253. }
  27254. },
  27255. headAngry: {
  27256. height: math.unit(4.95, "feet"),
  27257. name: "Head (Angry)",
  27258. image: {
  27259. source: "./media/characters/baadra/head-angry.svg"
  27260. }
  27261. },
  27262. headOpen: {
  27263. height: math.unit(6, "feet"),
  27264. name: "Head (Open)",
  27265. image: {
  27266. source: "./media/characters/baadra/head-open.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(17 + 6 / 12, "feet"),
  27274. default: true
  27275. },
  27276. ]
  27277. ))
  27278. characterMakers.push(() => makeCharacter(
  27279. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27280. {
  27281. front: {
  27282. height: math.unit(7 + 3 / 12, "feet"),
  27283. weight: math.unit(180, "lb"),
  27284. name: "Front",
  27285. image: {
  27286. source: "./media/characters/juri/front.svg",
  27287. extra: 1401 / 1237,
  27288. bottom: 18.5 / 1418
  27289. }
  27290. },
  27291. side: {
  27292. height: math.unit(7 + 3 / 12, "feet"),
  27293. weight: math.unit(180, "lb"),
  27294. name: "Side",
  27295. image: {
  27296. source: "./media/characters/juri/side.svg",
  27297. extra: 1424 / 1242,
  27298. bottom: 18.5 / 1447
  27299. }
  27300. },
  27301. sitting: {
  27302. height: math.unit(6, "feet"),
  27303. weight: math.unit(180, "lb"),
  27304. name: "Sitting",
  27305. image: {
  27306. source: "./media/characters/juri/sitting.svg",
  27307. extra: 1270 / 1143,
  27308. bottom: 100 / 1343
  27309. }
  27310. },
  27311. back: {
  27312. height: math.unit(7 + 3 / 12, "feet"),
  27313. weight: math.unit(180, "lb"),
  27314. name: "Back",
  27315. image: {
  27316. source: "./media/characters/juri/back.svg",
  27317. extra: 1377 / 1240,
  27318. bottom: 23.7 / 1405
  27319. }
  27320. },
  27321. maw: {
  27322. height: math.unit(2.8, "feet"),
  27323. name: "Maw",
  27324. image: {
  27325. source: "./media/characters/juri/maw.svg"
  27326. }
  27327. },
  27328. stomach: {
  27329. height: math.unit(0.89, "feet"),
  27330. preyCapacity: math.unit(4, "liters"),
  27331. name: "Stomach",
  27332. image: {
  27333. source: "./media/characters/juri/stomach.svg"
  27334. }
  27335. },
  27336. },
  27337. [
  27338. {
  27339. name: "Normal",
  27340. height: math.unit(7 + 3 / 12, "feet"),
  27341. default: true
  27342. },
  27343. ]
  27344. ))
  27345. characterMakers.push(() => makeCharacter(
  27346. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27347. {
  27348. fox: {
  27349. height: math.unit(5 + 6 / 12, "feet"),
  27350. weight: math.unit(140, "lb"),
  27351. name: "Fox",
  27352. image: {
  27353. source: "./media/characters/maxene-sita/fox.svg",
  27354. extra: 146 / 138,
  27355. bottom: 2.1 / 148.19
  27356. }
  27357. },
  27358. foxLaying: {
  27359. height: math.unit(1.70, "feet"),
  27360. weight: math.unit(140, "lb"),
  27361. name: "Fox (Laying)",
  27362. image: {
  27363. source: "./media/characters/maxene-sita/fox-laying.svg",
  27364. extra: 910 / 572,
  27365. bottom: 71 / 981
  27366. }
  27367. },
  27368. kitsune: {
  27369. height: math.unit(10, "feet"),
  27370. weight: math.unit(800, "lb"),
  27371. name: "Kitsune",
  27372. image: {
  27373. source: "./media/characters/maxene-sita/kitsune.svg",
  27374. extra: 185 / 176,
  27375. bottom: 4.7 / 189.9
  27376. }
  27377. },
  27378. hellhound: {
  27379. height: math.unit(10, "feet"),
  27380. weight: math.unit(700, "lb"),
  27381. name: "Hellhound",
  27382. image: {
  27383. source: "./media/characters/maxene-sita/hellhound.svg",
  27384. extra: 1600 / 1545,
  27385. bottom: 81 / 1681
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Normal",
  27392. height: math.unit(5 + 6 / 12, "feet"),
  27393. default: true
  27394. },
  27395. ]
  27396. ))
  27397. characterMakers.push(() => makeCharacter(
  27398. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27399. {
  27400. front: {
  27401. height: math.unit(3 + 4 / 12, "feet"),
  27402. weight: math.unit(70, "lb"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/maia/front.svg",
  27406. extra: 227 / 219.5,
  27407. bottom: 40 / 267
  27408. }
  27409. },
  27410. back: {
  27411. height: math.unit(3 + 4 / 12, "feet"),
  27412. weight: math.unit(70, "lb"),
  27413. name: "Back",
  27414. image: {
  27415. source: "./media/characters/maia/back.svg",
  27416. extra: 237 / 225
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(3 + 4 / 12, "feet"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(5 + 10 / 12, "feet"),
  27433. weight: math.unit(197, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/jabaro/front.svg",
  27437. extra: 225 / 216,
  27438. bottom: 5.06 / 230
  27439. }
  27440. },
  27441. back: {
  27442. height: math.unit(5 + 10 / 12, "feet"),
  27443. weight: math.unit(197, "lb"),
  27444. name: "Back",
  27445. image: {
  27446. source: "./media/characters/jabaro/back.svg",
  27447. extra: 225 / 219,
  27448. bottom: 1.9 / 227
  27449. }
  27450. },
  27451. },
  27452. [
  27453. {
  27454. name: "Normal",
  27455. height: math.unit(5 + 10 / 12, "feet"),
  27456. default: true
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(5 + 8 / 12, "feet"),
  27465. weight: math.unit(139, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/risa/front.svg",
  27469. extra: 270 / 260,
  27470. bottom: 11.2 / 282
  27471. }
  27472. },
  27473. back: {
  27474. height: math.unit(5 + 8 / 12, "feet"),
  27475. weight: math.unit(139, "lb"),
  27476. name: "Back",
  27477. image: {
  27478. source: "./media/characters/risa/back.svg",
  27479. extra: 264 / 255,
  27480. bottom: 4 / 268
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(5 + 8 / 12, "feet"),
  27488. default: true
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(2 + 11 / 12, "feet"),
  27497. weight: math.unit(30, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/weatley/front.svg",
  27501. bottom: 10.7 / 414,
  27502. extra: 403.5 / 362
  27503. }
  27504. },
  27505. back: {
  27506. height: math.unit(2 + 11 / 12, "feet"),
  27507. weight: math.unit(30, "lb"),
  27508. name: "Back",
  27509. image: {
  27510. source: "./media/characters/weatley/back.svg",
  27511. bottom: 10.7 / 414,
  27512. extra: 403.5 / 362
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Normal",
  27519. height: math.unit(2 + 11 / 12, "feet"),
  27520. default: true
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27526. {
  27527. front: {
  27528. height: math.unit(5 + 2 / 12, "feet"),
  27529. weight: math.unit(50, "kg"),
  27530. name: "Front",
  27531. image: {
  27532. source: "./media/characters/mercury-crescent/front.svg",
  27533. extra: 1088 / 1033,
  27534. bottom: 18.9 / 1109
  27535. }
  27536. },
  27537. },
  27538. [
  27539. {
  27540. name: "Normal",
  27541. height: math.unit(5 + 2 / 12, "feet"),
  27542. default: true
  27543. },
  27544. ]
  27545. ))
  27546. characterMakers.push(() => makeCharacter(
  27547. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27548. {
  27549. front: {
  27550. height: math.unit(2, "feet"),
  27551. weight: math.unit(15, "kg"),
  27552. name: "Front",
  27553. image: {
  27554. source: "./media/characters/diamond-jones/front.svg",
  27555. extra: 727/723,
  27556. bottom: 46/773
  27557. }
  27558. },
  27559. },
  27560. [
  27561. {
  27562. name: "Normal",
  27563. height: math.unit(2, "feet"),
  27564. default: true
  27565. },
  27566. ]
  27567. ))
  27568. characterMakers.push(() => makeCharacter(
  27569. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27570. {
  27571. front: {
  27572. height: math.unit(3, "feet"),
  27573. weight: math.unit(30, "kg"),
  27574. name: "Front",
  27575. image: {
  27576. source: "./media/characters/sweet-bit/front.svg",
  27577. extra: 675 / 567,
  27578. bottom: 27.7 / 703
  27579. }
  27580. },
  27581. },
  27582. [
  27583. {
  27584. name: "Normal",
  27585. height: math.unit(3, "feet"),
  27586. default: true
  27587. },
  27588. ]
  27589. ))
  27590. characterMakers.push(() => makeCharacter(
  27591. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27592. {
  27593. side: {
  27594. height: math.unit(9.178, "feet"),
  27595. weight: math.unit(500, "lb"),
  27596. name: "Side",
  27597. image: {
  27598. source: "./media/characters/umbrazen/side.svg",
  27599. extra: 1730 / 1473,
  27600. bottom: 34.6 / 1765
  27601. }
  27602. },
  27603. },
  27604. [
  27605. {
  27606. name: "Normal",
  27607. height: math.unit(9.178, "feet"),
  27608. default: true
  27609. },
  27610. ]
  27611. ))
  27612. characterMakers.push(() => makeCharacter(
  27613. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27614. {
  27615. front: {
  27616. height: math.unit(10, "feet"),
  27617. weight: math.unit(750, "lb"),
  27618. name: "Front",
  27619. image: {
  27620. source: "./media/characters/arlist/front.svg",
  27621. extra: 961 / 778,
  27622. bottom: 6.2 / 986
  27623. }
  27624. },
  27625. },
  27626. [
  27627. {
  27628. name: "Normal",
  27629. height: math.unit(10, "feet"),
  27630. default: true
  27631. },
  27632. ]
  27633. ))
  27634. characterMakers.push(() => makeCharacter(
  27635. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27636. {
  27637. front: {
  27638. height: math.unit(5 + 1 / 12, "feet"),
  27639. weight: math.unit(110, "lb"),
  27640. name: "Front",
  27641. image: {
  27642. source: "./media/characters/aradel/front.svg",
  27643. extra: 324 / 303,
  27644. bottom: 3.6 / 329.4
  27645. }
  27646. },
  27647. },
  27648. [
  27649. {
  27650. name: "Normal",
  27651. height: math.unit(5 + 1 / 12, "feet"),
  27652. default: true
  27653. },
  27654. ]
  27655. ))
  27656. characterMakers.push(() => makeCharacter(
  27657. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27658. {
  27659. dressed: {
  27660. height: math.unit(3 + 8 / 12, "feet"),
  27661. weight: math.unit(50, "lb"),
  27662. name: "Dressed",
  27663. image: {
  27664. source: "./media/characters/serryn/dressed.svg",
  27665. extra: 1792 / 1656,
  27666. bottom: 43.5 / 1840
  27667. }
  27668. },
  27669. nude: {
  27670. height: math.unit(3 + 8 / 12, "feet"),
  27671. weight: math.unit(50, "lb"),
  27672. name: "Nude",
  27673. image: {
  27674. source: "./media/characters/serryn/nude.svg",
  27675. extra: 1792 / 1656,
  27676. bottom: 43.5 / 1840
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(3 + 8 / 12, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(7 + 10 / 12, "feet"),
  27693. weight: math.unit(255, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/xavier-thyme/front.svg",
  27697. extra: 3733 / 3642,
  27698. bottom: 131 / 3869
  27699. }
  27700. },
  27701. frontRaven: {
  27702. height: math.unit(7 + 10 / 12, "feet"),
  27703. weight: math.unit(255, "lb"),
  27704. name: "Front (Raven)",
  27705. image: {
  27706. source: "./media/characters/xavier-thyme/front-raven.svg",
  27707. extra: 4385 / 3642,
  27708. bottom: 131 / 4517
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(7 + 10 / 12, "feet"),
  27716. default: true
  27717. },
  27718. ]
  27719. ))
  27720. characterMakers.push(() => makeCharacter(
  27721. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27722. {
  27723. front: {
  27724. height: math.unit(1.6, "m"),
  27725. weight: math.unit(50, "kg"),
  27726. name: "Front",
  27727. image: {
  27728. source: "./media/characters/kiki/front.svg",
  27729. extra: 4682 / 3610,
  27730. bottom: 115 / 4777
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Normal",
  27737. height: math.unit(1.6, "meters"),
  27738. default: true
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(50, "m"),
  27747. weight: math.unit(500, "tonnes"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/ryoko/front.svg",
  27751. extra: 4632 / 3926,
  27752. bottom: 193 / 4823
  27753. }
  27754. },
  27755. },
  27756. [
  27757. {
  27758. name: "Normal",
  27759. height: math.unit(50, "meters"),
  27760. default: true
  27761. },
  27762. ]
  27763. ))
  27764. characterMakers.push(() => makeCharacter(
  27765. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27766. {
  27767. front: {
  27768. height: math.unit(30, "m"),
  27769. weight: math.unit(22, "tonnes"),
  27770. name: "Front",
  27771. image: {
  27772. source: "./media/characters/elio/front.svg",
  27773. extra: 4582 / 3720,
  27774. bottom: 236 / 4828
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(30, "meters"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(6 + 3 / 12, "feet"),
  27791. weight: math.unit(120, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/azura/front.svg",
  27795. extra: 1149 / 1135,
  27796. bottom: 45 / 1194
  27797. }
  27798. },
  27799. frontClothed: {
  27800. height: math.unit(6 + 3 / 12, "feet"),
  27801. weight: math.unit(120, "lb"),
  27802. name: "Front (Clothed)",
  27803. image: {
  27804. source: "./media/characters/azura/front-clothed.svg",
  27805. extra: 1149 / 1135,
  27806. bottom: 45 / 1194
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(6 + 3 / 12, "feet"),
  27814. default: true
  27815. },
  27816. {
  27817. name: "Macro",
  27818. height: math.unit(20 + 6 / 12, "feet")
  27819. },
  27820. {
  27821. name: "Megamacro",
  27822. height: math.unit(12, "miles")
  27823. },
  27824. {
  27825. name: "Gigamacro",
  27826. height: math.unit(10000, "miles")
  27827. },
  27828. {
  27829. name: "Teramacro",
  27830. height: math.unit(900000, "miles")
  27831. },
  27832. ]
  27833. ))
  27834. characterMakers.push(() => makeCharacter(
  27835. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27836. {
  27837. front: {
  27838. height: math.unit(12, "feet"),
  27839. weight: math.unit(1, "ton"),
  27840. capacity: math.unit(660000, "gallons"),
  27841. name: "Front",
  27842. image: {
  27843. source: "./media/characters/zeus/front.svg",
  27844. extra: 5005 / 4717,
  27845. bottom: 363 / 5388
  27846. }
  27847. },
  27848. },
  27849. [
  27850. {
  27851. name: "Normal",
  27852. height: math.unit(12, "feet")
  27853. },
  27854. {
  27855. name: "Preferred Size",
  27856. height: math.unit(0.5, "miles"),
  27857. default: true
  27858. },
  27859. {
  27860. name: "Giga Horse",
  27861. height: math.unit(300, "miles")
  27862. },
  27863. {
  27864. name: "Riding Planets",
  27865. height: math.unit(30, "megameters")
  27866. },
  27867. {
  27868. name: "Cosmic Giant",
  27869. height: math.unit(3, "zettameters")
  27870. },
  27871. {
  27872. name: "Breeding God",
  27873. height: math.unit(9.92e22, "yottameters")
  27874. },
  27875. ]
  27876. ))
  27877. characterMakers.push(() => makeCharacter(
  27878. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27879. {
  27880. side: {
  27881. height: math.unit(9, "feet"),
  27882. weight: math.unit(1500, "kg"),
  27883. name: "Side",
  27884. image: {
  27885. source: "./media/characters/fang/side.svg",
  27886. extra: 924 / 866,
  27887. bottom: 47.5 / 972.3
  27888. }
  27889. },
  27890. },
  27891. [
  27892. {
  27893. name: "Normal",
  27894. height: math.unit(9, "feet"),
  27895. default: true
  27896. },
  27897. {
  27898. name: "Macro",
  27899. height: math.unit(75 + 6 / 12, "feet")
  27900. },
  27901. {
  27902. name: "Teramacro",
  27903. height: math.unit(50000, "miles")
  27904. },
  27905. ]
  27906. ))
  27907. characterMakers.push(() => makeCharacter(
  27908. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27909. {
  27910. front: {
  27911. height: math.unit(10, "feet"),
  27912. weight: math.unit(2, "tons"),
  27913. name: "Front",
  27914. image: {
  27915. source: "./media/characters/rekhit/front.svg",
  27916. extra: 2796 / 2590,
  27917. bottom: 225 / 3022
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(10, "feet"),
  27925. default: true
  27926. },
  27927. {
  27928. name: "Macro",
  27929. height: math.unit(500, "feet")
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(7 + 6.451 / 12, "feet"),
  27938. weight: math.unit(310, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/dahlia-verrick/front.svg",
  27942. extra: 1488 / 1365,
  27943. bottom: 6.2 / 1495
  27944. }
  27945. },
  27946. back: {
  27947. height: math.unit(7 + 6.451 / 12, "feet"),
  27948. weight: math.unit(310, "lb"),
  27949. name: "Back",
  27950. image: {
  27951. source: "./media/characters/dahlia-verrick/back.svg",
  27952. extra: 1472 / 1351,
  27953. bottom: 5.28 / 1477
  27954. }
  27955. },
  27956. frontBusiness: {
  27957. height: math.unit(7 + 6.451 / 12, "feet"),
  27958. weight: math.unit(200, "lb"),
  27959. name: "Front (Business)",
  27960. image: {
  27961. source: "./media/characters/dahlia-verrick/front-business.svg",
  27962. extra: 1478 / 1381,
  27963. bottom: 5.5 / 1484
  27964. }
  27965. },
  27966. frontCasual: {
  27967. height: math.unit(7 + 6.451 / 12, "feet"),
  27968. weight: math.unit(200, "lb"),
  27969. name: "Front (Casual)",
  27970. image: {
  27971. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27972. extra: 1478 / 1381,
  27973. bottom: 5.5 / 1484
  27974. }
  27975. },
  27976. },
  27977. [
  27978. {
  27979. name: "Travel-Sized",
  27980. height: math.unit(7.45, "inches")
  27981. },
  27982. {
  27983. name: "Normal",
  27984. height: math.unit(7 + 6.451 / 12, "feet"),
  27985. default: true
  27986. },
  27987. {
  27988. name: "Hitting the Town",
  27989. height: math.unit(37 + 8 / 12, "feet")
  27990. },
  27991. {
  27992. name: "Stomp in the Suburbs",
  27993. height: math.unit(964 + 9.728 / 12, "feet")
  27994. },
  27995. {
  27996. name: "Sit on the City",
  27997. height: math.unit(61747 + 10.592 / 12, "feet")
  27998. },
  27999. {
  28000. name: "Glomp the Globe",
  28001. height: math.unit(252919327 + 4.832 / 12, "feet")
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(6 + 4 / 12, "feet"),
  28010. weight: math.unit(320, "lb"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/balina-mahigan/front.svg",
  28014. extra: 447 / 428,
  28015. bottom: 18 / 466
  28016. }
  28017. },
  28018. back: {
  28019. height: math.unit(6 + 4 / 12, "feet"),
  28020. weight: math.unit(320, "lb"),
  28021. name: "Back",
  28022. image: {
  28023. source: "./media/characters/balina-mahigan/back.svg",
  28024. extra: 445 / 428,
  28025. bottom: 4.07 / 448
  28026. }
  28027. },
  28028. arm: {
  28029. height: math.unit(1.88, "feet"),
  28030. name: "Arm",
  28031. image: {
  28032. source: "./media/characters/balina-mahigan/arm.svg"
  28033. }
  28034. },
  28035. backPort: {
  28036. height: math.unit(0.685, "feet"),
  28037. name: "Back Port",
  28038. image: {
  28039. source: "./media/characters/balina-mahigan/back-port.svg"
  28040. }
  28041. },
  28042. hoofpaw: {
  28043. height: math.unit(1.41, "feet"),
  28044. name: "Hoofpaw",
  28045. image: {
  28046. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28047. }
  28048. },
  28049. leftHandBack: {
  28050. height: math.unit(0.938, "feet"),
  28051. name: "Left Hand (Back)",
  28052. image: {
  28053. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28054. }
  28055. },
  28056. leftHandFront: {
  28057. height: math.unit(0.938, "feet"),
  28058. name: "Left Hand (Front)",
  28059. image: {
  28060. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28061. }
  28062. },
  28063. rightHandBack: {
  28064. height: math.unit(0.95, "feet"),
  28065. name: "Right Hand (Back)",
  28066. image: {
  28067. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28068. }
  28069. },
  28070. rightHandFront: {
  28071. height: math.unit(0.95, "feet"),
  28072. name: "Right Hand (Front)",
  28073. image: {
  28074. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(6 + 4 / 12, "feet"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(6, "feet"),
  28091. weight: math.unit(320, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/balina-mejeri/front.svg",
  28095. extra: 517 / 488,
  28096. bottom: 44.2 / 561
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(6 + 4 / 12, "feet")
  28104. },
  28105. {
  28106. name: "Business",
  28107. height: math.unit(155, "feet"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28114. {
  28115. kneeling: {
  28116. height: math.unit(6 + 4 / 12, "feet"),
  28117. weight: math.unit(300 * 20, "lb"),
  28118. name: "Kneeling",
  28119. image: {
  28120. source: "./media/characters/balbarian/kneeling.svg",
  28121. extra: 922 / 862,
  28122. bottom: 42.4 / 965
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Normal",
  28129. height: math.unit(6 + 4 / 12, "feet")
  28130. },
  28131. {
  28132. name: "Treasured",
  28133. height: math.unit(18 + 9 / 12, "feet"),
  28134. default: true
  28135. },
  28136. {
  28137. name: "Macro",
  28138. height: math.unit(900, "feet")
  28139. },
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(6 + 4 / 12, "feet"),
  28147. weight: math.unit(325, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/balina-amarini/front.svg",
  28151. extra: 415 / 403,
  28152. bottom: 19 / 433.4
  28153. }
  28154. },
  28155. back: {
  28156. height: math.unit(6 + 4 / 12, "feet"),
  28157. weight: math.unit(325, "lb"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/balina-amarini/back.svg",
  28161. extra: 415 / 403,
  28162. bottom: 13.5 / 432
  28163. }
  28164. },
  28165. overdrive: {
  28166. height: math.unit(6 + 4 / 12, "feet"),
  28167. weight: math.unit(400, "lb"),
  28168. name: "Overdrive",
  28169. image: {
  28170. source: "./media/characters/balina-amarini/overdrive.svg",
  28171. extra: 269 / 259,
  28172. bottom: 12 / 282
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Boom",
  28179. height: math.unit(9 + 10 / 12, "feet"),
  28180. default: true
  28181. },
  28182. {
  28183. name: "Macro",
  28184. height: math.unit(280, "feet")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28190. {
  28191. goddess: {
  28192. height: math.unit(600, "feet"),
  28193. weight: math.unit(2000000, "tons"),
  28194. name: "Goddess",
  28195. image: {
  28196. source: "./media/characters/lady-kubwa/goddess.svg",
  28197. extra: 1240.5 / 1223,
  28198. bottom: 22 / 1263
  28199. }
  28200. },
  28201. goddesser: {
  28202. height: math.unit(900, "feet"),
  28203. weight: math.unit(20000000, "lb"),
  28204. name: "Goddess-er",
  28205. image: {
  28206. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28207. extra: 899 / 888,
  28208. bottom: 12.6 / 912
  28209. }
  28210. },
  28211. },
  28212. [
  28213. {
  28214. name: "Macro",
  28215. height: math.unit(600, "feet"),
  28216. default: true
  28217. },
  28218. {
  28219. name: "Megamacro",
  28220. height: math.unit(250, "miles")
  28221. },
  28222. ]
  28223. ))
  28224. characterMakers.push(() => makeCharacter(
  28225. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28226. {
  28227. front: {
  28228. height: math.unit(7 + 7 / 12, "feet"),
  28229. weight: math.unit(250, "lb"),
  28230. name: "Front",
  28231. image: {
  28232. source: "./media/characters/tala-grovehorn/front.svg",
  28233. extra: 2636 / 2525,
  28234. bottom: 147 / 2781
  28235. }
  28236. },
  28237. back: {
  28238. height: math.unit(7 + 7 / 12, "feet"),
  28239. weight: math.unit(250, "lb"),
  28240. name: "Back",
  28241. image: {
  28242. source: "./media/characters/tala-grovehorn/back.svg",
  28243. extra: 2635 / 2539,
  28244. bottom: 100 / 2732.8
  28245. }
  28246. },
  28247. mouth: {
  28248. height: math.unit(1.15, "feet"),
  28249. name: "Mouth",
  28250. image: {
  28251. source: "./media/characters/tala-grovehorn/mouth.svg"
  28252. }
  28253. },
  28254. dick: {
  28255. height: math.unit(2.36, "feet"),
  28256. name: "Dick",
  28257. image: {
  28258. source: "./media/characters/tala-grovehorn/dick.svg"
  28259. }
  28260. },
  28261. slit: {
  28262. height: math.unit(0.61, "feet"),
  28263. name: "Slit",
  28264. image: {
  28265. source: "./media/characters/tala-grovehorn/slit.svg"
  28266. }
  28267. },
  28268. },
  28269. [
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(7 + 7 / 12, "feet"),
  28277. weight: math.unit(225, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/epona/front.svg",
  28281. extra: 2445 / 2290,
  28282. bottom: 251 / 2696
  28283. }
  28284. },
  28285. back: {
  28286. height: math.unit(7 + 7 / 12, "feet"),
  28287. weight: math.unit(225, "lb"),
  28288. name: "Back",
  28289. image: {
  28290. source: "./media/characters/epona/back.svg",
  28291. extra: 2546 / 2408,
  28292. bottom: 44 / 2589
  28293. }
  28294. },
  28295. genitals: {
  28296. height: math.unit(1.5, "feet"),
  28297. name: "Genitals",
  28298. image: {
  28299. source: "./media/characters/epona/genitals.svg"
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Normal",
  28306. height: math.unit(7 + 7 / 12, "feet"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28313. {
  28314. front: {
  28315. height: math.unit(7, "feet"),
  28316. weight: math.unit(518, "lb"),
  28317. name: "Front",
  28318. image: {
  28319. source: "./media/characters/avia-bloodbourn/front.svg",
  28320. extra: 1466 / 1350,
  28321. bottom: 65 / 1527
  28322. }
  28323. },
  28324. },
  28325. [
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28330. {
  28331. front: {
  28332. height: math.unit(9.35, "feet"),
  28333. weight: math.unit(600, "lb"),
  28334. name: "Front",
  28335. image: {
  28336. source: "./media/characters/amera/front.svg",
  28337. extra: 891 / 818,
  28338. bottom: 30 / 922.7
  28339. }
  28340. },
  28341. back: {
  28342. height: math.unit(9.35, "feet"),
  28343. weight: math.unit(600, "lb"),
  28344. name: "Back",
  28345. image: {
  28346. source: "./media/characters/amera/back.svg",
  28347. extra: 876 / 824,
  28348. bottom: 6.8 / 884
  28349. }
  28350. },
  28351. dick: {
  28352. height: math.unit(2.14, "feet"),
  28353. name: "Dick",
  28354. image: {
  28355. source: "./media/characters/amera/dick.svg"
  28356. }
  28357. },
  28358. },
  28359. [
  28360. {
  28361. name: "Normal",
  28362. height: math.unit(9.35, "feet"),
  28363. default: true
  28364. },
  28365. ]
  28366. ))
  28367. characterMakers.push(() => makeCharacter(
  28368. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28369. {
  28370. kneeling: {
  28371. height: math.unit(3 + 4 / 12, "feet"),
  28372. weight: math.unit(90, "lb"),
  28373. name: "Kneeling",
  28374. image: {
  28375. source: "./media/characters/rosewen/kneeling.svg",
  28376. extra: 1835 / 1571,
  28377. bottom: 27.7 / 1862
  28378. }
  28379. },
  28380. },
  28381. [
  28382. {
  28383. name: "Normal",
  28384. height: math.unit(3 + 4 / 12, "feet"),
  28385. default: true
  28386. },
  28387. ]
  28388. ))
  28389. characterMakers.push(() => makeCharacter(
  28390. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28391. {
  28392. front: {
  28393. height: math.unit(5 + 10 / 12, "feet"),
  28394. weight: math.unit(200, "lb"),
  28395. name: "Front",
  28396. image: {
  28397. source: "./media/characters/sabah/front.svg",
  28398. extra: 849 / 763,
  28399. bottom: 33.9 / 881
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(5 + 10 / 12, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28413. {
  28414. front: {
  28415. height: math.unit(3 + 5 / 12, "feet"),
  28416. weight: math.unit(40, "kg"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/purple-flame/front.svg",
  28420. extra: 1577 / 1412,
  28421. bottom: 97 / 1694
  28422. }
  28423. },
  28424. frontDressed: {
  28425. height: math.unit(3 + 5 / 12, "feet"),
  28426. weight: math.unit(40, "kg"),
  28427. name: "Front (Dressed)",
  28428. image: {
  28429. source: "./media/characters/purple-flame/front-dressed.svg",
  28430. extra: 1577 / 1412,
  28431. bottom: 97 / 1694
  28432. }
  28433. },
  28434. headphones: {
  28435. height: math.unit(0.85, "feet"),
  28436. name: "Headphones",
  28437. image: {
  28438. source: "./media/characters/purple-flame/headphones.svg"
  28439. }
  28440. },
  28441. },
  28442. [
  28443. {
  28444. name: "Really Small",
  28445. height: math.unit(5, "cm")
  28446. },
  28447. {
  28448. name: "Micro",
  28449. height: math.unit(1 + 5 / 12, "feet")
  28450. },
  28451. {
  28452. name: "Normal",
  28453. height: math.unit(3 + 5 / 12, "feet"),
  28454. default: true
  28455. },
  28456. {
  28457. name: "Minimacro",
  28458. height: math.unit(125, "feet")
  28459. },
  28460. {
  28461. name: "Macro",
  28462. height: math.unit(0.5, "miles")
  28463. },
  28464. {
  28465. name: "Megamacro",
  28466. height: math.unit(50, "miles")
  28467. },
  28468. {
  28469. name: "Gigantic",
  28470. height: math.unit(750, "miles")
  28471. },
  28472. {
  28473. name: "Planetary",
  28474. height: math.unit(15000, "miles")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(14, "feet"),
  28483. weight: math.unit(959, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/arsenal/front.svg",
  28487. extra: 2357 / 2157,
  28488. bottom: 93 / 2458
  28489. }
  28490. },
  28491. },
  28492. [
  28493. {
  28494. name: "Normal",
  28495. height: math.unit(14, "feet"),
  28496. default: true
  28497. },
  28498. ]
  28499. ))
  28500. characterMakers.push(() => makeCharacter(
  28501. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28502. {
  28503. front: {
  28504. height: math.unit(6, "feet"),
  28505. weight: math.unit(150, "lb"),
  28506. name: "Front",
  28507. image: {
  28508. source: "./media/characters/adira/front.svg",
  28509. extra: 1078 / 1029,
  28510. bottom: 87 / 1166
  28511. }
  28512. },
  28513. },
  28514. [
  28515. {
  28516. name: "Micro",
  28517. height: math.unit(4, "inches"),
  28518. default: true
  28519. },
  28520. {
  28521. name: "Macro",
  28522. height: math.unit(50, "feet")
  28523. },
  28524. ]
  28525. ))
  28526. characterMakers.push(() => makeCharacter(
  28527. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28528. {
  28529. front: {
  28530. height: math.unit(16, "feet"),
  28531. weight: math.unit(1000, "lb"),
  28532. name: "Front",
  28533. image: {
  28534. source: "./media/characters/grim/front.svg",
  28535. extra: 622 / 614,
  28536. bottom: 18.1 / 642
  28537. }
  28538. },
  28539. back: {
  28540. height: math.unit(16, "feet"),
  28541. weight: math.unit(1000, "lb"),
  28542. name: "Back",
  28543. image: {
  28544. source: "./media/characters/grim/back.svg",
  28545. extra: 610.6 / 602,
  28546. bottom: 40.8 / 652
  28547. }
  28548. },
  28549. hunched: {
  28550. height: math.unit(9.75, "feet"),
  28551. weight: math.unit(1000, "lb"),
  28552. name: "Hunched",
  28553. image: {
  28554. source: "./media/characters/grim/hunched.svg",
  28555. extra: 304 / 297,
  28556. bottom: 35.4 / 394
  28557. }
  28558. },
  28559. },
  28560. [
  28561. {
  28562. name: "Normal",
  28563. height: math.unit(16, "feet"),
  28564. default: true
  28565. },
  28566. ]
  28567. ))
  28568. characterMakers.push(() => makeCharacter(
  28569. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28570. {
  28571. front: {
  28572. height: math.unit(2.3, "meters"),
  28573. weight: math.unit(300, "lb"),
  28574. name: "Front",
  28575. image: {
  28576. source: "./media/characters/sinja/front-sfw.svg",
  28577. extra: 1393 / 1294,
  28578. bottom: 70 / 1463
  28579. }
  28580. },
  28581. frontNsfw: {
  28582. height: math.unit(2.3, "meters"),
  28583. weight: math.unit(300, "lb"),
  28584. name: "Front (NSFW)",
  28585. image: {
  28586. source: "./media/characters/sinja/front-nsfw.svg",
  28587. extra: 1393 / 1294,
  28588. bottom: 70 / 1463
  28589. }
  28590. },
  28591. back: {
  28592. height: math.unit(2.3, "meters"),
  28593. weight: math.unit(300, "lb"),
  28594. name: "Back",
  28595. image: {
  28596. source: "./media/characters/sinja/back.svg",
  28597. extra: 1393 / 1294,
  28598. bottom: 70 / 1463
  28599. }
  28600. },
  28601. head: {
  28602. height: math.unit(1.771, "feet"),
  28603. name: "Head",
  28604. image: {
  28605. source: "./media/characters/sinja/head.svg"
  28606. }
  28607. },
  28608. slit: {
  28609. height: math.unit(0.8, "feet"),
  28610. name: "Slit",
  28611. image: {
  28612. source: "./media/characters/sinja/slit.svg"
  28613. }
  28614. },
  28615. },
  28616. [
  28617. {
  28618. name: "Normal",
  28619. height: math.unit(2.3, "meters")
  28620. },
  28621. {
  28622. name: "Macro",
  28623. height: math.unit(91, "meters"),
  28624. default: true
  28625. },
  28626. {
  28627. name: "Megamacro",
  28628. height: math.unit(91440, "meters")
  28629. },
  28630. {
  28631. name: "Gigamacro",
  28632. height: math.unit(60960000, "meters")
  28633. },
  28634. {
  28635. name: "Teramacro",
  28636. height: math.unit(9144000000, "meters")
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(1.7, "meters"),
  28645. weight: math.unit(130, "lb"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/kyu/front.svg",
  28649. extra: 415 / 395,
  28650. bottom: 5 / 420
  28651. }
  28652. },
  28653. head: {
  28654. height: math.unit(1.75, "feet"),
  28655. name: "Head",
  28656. image: {
  28657. source: "./media/characters/kyu/head.svg"
  28658. }
  28659. },
  28660. foot: {
  28661. height: math.unit(0.81, "feet"),
  28662. name: "Foot",
  28663. image: {
  28664. source: "./media/characters/kyu/foot.svg"
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Normal",
  28671. height: math.unit(1.7, "meters")
  28672. },
  28673. {
  28674. name: "Macro",
  28675. height: math.unit(131, "feet"),
  28676. default: true
  28677. },
  28678. {
  28679. name: "Megamacro",
  28680. height: math.unit(91440, "meters")
  28681. },
  28682. {
  28683. name: "Gigamacro",
  28684. height: math.unit(60960000, "meters")
  28685. },
  28686. {
  28687. name: "Teramacro",
  28688. height: math.unit(9144000000, "meters")
  28689. },
  28690. ]
  28691. ))
  28692. characterMakers.push(() => makeCharacter(
  28693. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28694. {
  28695. front: {
  28696. height: math.unit(7 + 1 / 12, "feet"),
  28697. weight: math.unit(250, "lb"),
  28698. name: "Front",
  28699. image: {
  28700. source: "./media/characters/joey/front.svg",
  28701. extra: 1791 / 1537,
  28702. bottom: 28 / 1816
  28703. }
  28704. },
  28705. },
  28706. [
  28707. {
  28708. name: "Micro",
  28709. height: math.unit(3, "inches")
  28710. },
  28711. {
  28712. name: "Normal",
  28713. height: math.unit(7 + 1 / 12, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(165, "cm"),
  28723. weight: math.unit(140, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/sam-evans/front.svg",
  28727. extra: 3417 / 3230,
  28728. bottom: 41.3 / 3417
  28729. }
  28730. },
  28731. frontSixTails: {
  28732. height: math.unit(165, "cm"),
  28733. weight: math.unit(140, "lb"),
  28734. name: "Front-six-tails",
  28735. image: {
  28736. source: "./media/characters/sam-evans/front-six-tails.svg",
  28737. extra: 3417 / 3230,
  28738. bottom: 41.3 / 3417
  28739. }
  28740. },
  28741. back: {
  28742. height: math.unit(165, "cm"),
  28743. weight: math.unit(140, "lb"),
  28744. name: "Back",
  28745. image: {
  28746. source: "./media/characters/sam-evans/back.svg",
  28747. extra: 3227 / 3032,
  28748. bottom: 6.8 / 3234
  28749. }
  28750. },
  28751. face: {
  28752. height: math.unit(0.68, "feet"),
  28753. name: "Face",
  28754. image: {
  28755. source: "./media/characters/sam-evans/face.svg"
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(165, "cm"),
  28763. default: true
  28764. },
  28765. {
  28766. name: "Macro",
  28767. height: math.unit(100, "meters")
  28768. },
  28769. {
  28770. name: "Macro+",
  28771. height: math.unit(800, "meters")
  28772. },
  28773. {
  28774. name: "Macro++",
  28775. height: math.unit(3, "km")
  28776. },
  28777. {
  28778. name: "Macro+++",
  28779. height: math.unit(30, "km")
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(10, "feet"),
  28788. weight: math.unit(750, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/juliet-a/front.svg",
  28792. extra: 1766 / 1720,
  28793. bottom: 43 / 1809
  28794. }
  28795. },
  28796. back: {
  28797. height: math.unit(10, "feet"),
  28798. weight: math.unit(750, "lb"),
  28799. name: "Back",
  28800. image: {
  28801. source: "./media/characters/juliet-a/back.svg",
  28802. extra: 1781 / 1734,
  28803. bottom: 35 / 1810,
  28804. }
  28805. },
  28806. },
  28807. [
  28808. {
  28809. name: "Normal",
  28810. height: math.unit(10, "feet"),
  28811. default: true
  28812. },
  28813. {
  28814. name: "Dragon Form",
  28815. height: math.unit(250, "feet")
  28816. },
  28817. {
  28818. name: "Macro",
  28819. height: math.unit(1000, "feet")
  28820. },
  28821. {
  28822. name: "Megamacro",
  28823. height: math.unit(10000, "feet")
  28824. }
  28825. ]
  28826. ))
  28827. characterMakers.push(() => makeCharacter(
  28828. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28829. {
  28830. regular: {
  28831. height: math.unit(7 + 3 / 12, "feet"),
  28832. weight: math.unit(260, "lb"),
  28833. name: "Regular",
  28834. image: {
  28835. source: "./media/characters/wild/regular.svg",
  28836. extra: 97.45 / 92,
  28837. bottom: 6.8 / 104.3
  28838. }
  28839. },
  28840. biggums: {
  28841. height: math.unit(8 + 6 / 12, "feet"),
  28842. weight: math.unit(425, "lb"),
  28843. name: "Biggums",
  28844. image: {
  28845. source: "./media/characters/wild/biggums.svg",
  28846. extra: 97.45 / 92,
  28847. bottom: 7.5 / 132.34
  28848. }
  28849. },
  28850. mawRegular: {
  28851. height: math.unit(1.24, "feet"),
  28852. name: "Maw (Regular)",
  28853. image: {
  28854. source: "./media/characters/wild/maw.svg"
  28855. }
  28856. },
  28857. mawBiggums: {
  28858. height: math.unit(1.47, "feet"),
  28859. name: "Maw (Biggums)",
  28860. image: {
  28861. source: "./media/characters/wild/maw.svg"
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Normal",
  28868. height: math.unit(7 + 3 / 12, "feet"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28875. {
  28876. front: {
  28877. height: math.unit(2.5, "meters"),
  28878. weight: math.unit(200, "kg"),
  28879. name: "Front",
  28880. image: {
  28881. source: "./media/characters/vidar/front.svg",
  28882. extra: 2994 / 2795,
  28883. bottom: 56 / 3061
  28884. }
  28885. },
  28886. back: {
  28887. height: math.unit(2.5, "meters"),
  28888. weight: math.unit(200, "kg"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/vidar/back.svg",
  28892. extra: 3131 / 2928,
  28893. bottom: 13.5 / 3141.5
  28894. }
  28895. },
  28896. feral: {
  28897. height: math.unit(2.5, "meters"),
  28898. weight: math.unit(2000, "kg"),
  28899. name: "Feral",
  28900. image: {
  28901. source: "./media/characters/vidar/feral.svg",
  28902. extra: 2790 / 1765,
  28903. bottom: 6 / 2796
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(2.5, "meters"),
  28911. default: true
  28912. },
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(100, "meters")
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(5 + 9 / 12, "feet"),
  28924. weight: math.unit(120, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/ash/front.svg",
  28928. extra: 2189 / 1961,
  28929. bottom: 5.2 / 2194
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(5 + 9 / 12, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28943. {
  28944. front: {
  28945. height: math.unit(9, "feet"),
  28946. weight: math.unit(10000, "lb"),
  28947. name: "Front",
  28948. image: {
  28949. source: "./media/characters/gygabite/front.svg",
  28950. bottom: 31.7 / 537.8,
  28951. extra: 505 / 370
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(9, "feet"),
  28959. default: true
  28960. },
  28961. ]
  28962. ))
  28963. characterMakers.push(() => makeCharacter(
  28964. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28965. {
  28966. front: {
  28967. height: math.unit(12, "feet"),
  28968. weight: math.unit(4000, "lb"),
  28969. name: "Front",
  28970. image: {
  28971. source: "./media/characters/p0tat0/front.svg",
  28972. extra: 1065 / 921,
  28973. bottom: 55.7 / 1121.25
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(12, "feet"),
  28981. default: true
  28982. },
  28983. ]
  28984. ))
  28985. characterMakers.push(() => makeCharacter(
  28986. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28987. {
  28988. side: {
  28989. height: math.unit(6.5, "feet"),
  28990. weight: math.unit(800, "lb"),
  28991. name: "Side",
  28992. image: {
  28993. source: "./media/characters/dusk/side.svg",
  28994. extra: 615 / 373,
  28995. bottom: 53 / 664
  28996. }
  28997. },
  28998. sitting: {
  28999. height: math.unit(7, "feet"),
  29000. weight: math.unit(800, "lb"),
  29001. name: "Sitting",
  29002. image: {
  29003. source: "./media/characters/dusk/sitting.svg",
  29004. extra: 753 / 425,
  29005. bottom: 33 / 774
  29006. }
  29007. },
  29008. head: {
  29009. height: math.unit(6.1, "feet"),
  29010. name: "Head",
  29011. image: {
  29012. source: "./media/characters/dusk/head.svg"
  29013. }
  29014. },
  29015. },
  29016. [
  29017. {
  29018. name: "Normal",
  29019. height: math.unit(7, "feet"),
  29020. default: true
  29021. },
  29022. ]
  29023. ))
  29024. characterMakers.push(() => makeCharacter(
  29025. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29026. {
  29027. front: {
  29028. height: math.unit(15, "feet"),
  29029. weight: math.unit(7000, "lb"),
  29030. name: "Front",
  29031. image: {
  29032. source: "./media/characters/jay-direwolf/front.svg",
  29033. extra: 1810 / 1732,
  29034. bottom: 66 / 1892
  29035. }
  29036. },
  29037. },
  29038. [
  29039. {
  29040. name: "Normal",
  29041. height: math.unit(15, "feet"),
  29042. default: true
  29043. },
  29044. ]
  29045. ))
  29046. characterMakers.push(() => makeCharacter(
  29047. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29048. {
  29049. front: {
  29050. height: math.unit(4 + 9 / 12, "feet"),
  29051. weight: math.unit(130, "lb"),
  29052. name: "Front",
  29053. image: {
  29054. source: "./media/characters/anchovie/front.svg",
  29055. extra: 382 / 350,
  29056. bottom: 25 / 409
  29057. }
  29058. },
  29059. back: {
  29060. height: math.unit(4 + 9 / 12, "feet"),
  29061. weight: math.unit(130, "lb"),
  29062. name: "Back",
  29063. image: {
  29064. source: "./media/characters/anchovie/back.svg",
  29065. extra: 385 / 352,
  29066. bottom: 16.6 / 402
  29067. }
  29068. },
  29069. frontDressed: {
  29070. height: math.unit(4 + 9 / 12, "feet"),
  29071. weight: math.unit(130, "lb"),
  29072. name: "Front (Dressed)",
  29073. image: {
  29074. source: "./media/characters/anchovie/front-dressed.svg",
  29075. extra: 382 / 350,
  29076. bottom: 25 / 409
  29077. }
  29078. },
  29079. backDressed: {
  29080. height: math.unit(4 + 9 / 12, "feet"),
  29081. weight: math.unit(130, "lb"),
  29082. name: "Back (Dressed)",
  29083. image: {
  29084. source: "./media/characters/anchovie/back-dressed.svg",
  29085. extra: 385 / 352,
  29086. bottom: 16.6 / 402
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Micro",
  29093. height: math.unit(6.4, "inches")
  29094. },
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(4 + 9 / 12, "feet"),
  29098. default: true
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(2, "meters"),
  29107. weight: math.unit(180, "lb"),
  29108. name: "Front",
  29109. image: {
  29110. source: "./media/characters/acidrenamon/front.svg",
  29111. extra: 987 / 890,
  29112. bottom: 22.8 / 1009
  29113. }
  29114. },
  29115. back: {
  29116. height: math.unit(2, "meters"),
  29117. weight: math.unit(180, "lb"),
  29118. name: "Back",
  29119. image: {
  29120. source: "./media/characters/acidrenamon/back.svg",
  29121. extra: 983 / 891,
  29122. bottom: 8.4 / 992
  29123. }
  29124. },
  29125. head: {
  29126. height: math.unit(1.92, "feet"),
  29127. name: "Head",
  29128. image: {
  29129. source: "./media/characters/acidrenamon/head.svg"
  29130. }
  29131. },
  29132. rump: {
  29133. height: math.unit(1.72, "feet"),
  29134. name: "Rump",
  29135. image: {
  29136. source: "./media/characters/acidrenamon/rump.svg"
  29137. }
  29138. },
  29139. tail: {
  29140. height: math.unit(4.2, "feet"),
  29141. name: "Tail",
  29142. image: {
  29143. source: "./media/characters/acidrenamon/tail.svg"
  29144. }
  29145. },
  29146. },
  29147. [
  29148. {
  29149. name: "Normal",
  29150. height: math.unit(2, "meters"),
  29151. default: true
  29152. },
  29153. {
  29154. name: "Minimacro",
  29155. height: math.unit(7, "meters")
  29156. },
  29157. {
  29158. name: "Macro",
  29159. height: math.unit(200, "meters")
  29160. },
  29161. {
  29162. name: "Gigamacro",
  29163. height: math.unit(0.2, "earths")
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(152, "feet"),
  29172. name: "Front",
  29173. image: {
  29174. source: "./media/characters/kenzie-lee/front.svg",
  29175. extra: 1869/1774,
  29176. bottom: 128/1997
  29177. }
  29178. },
  29179. side: {
  29180. height: math.unit(86, "feet"),
  29181. name: "Side",
  29182. image: {
  29183. source: "./media/characters/kenzie-lee/side.svg",
  29184. extra: 930/815,
  29185. bottom: 177/1107
  29186. }
  29187. },
  29188. paw: {
  29189. height: math.unit(15, "feet"),
  29190. name: "Paw",
  29191. image: {
  29192. source: "./media/characters/kenzie-lee/paw.svg"
  29193. }
  29194. },
  29195. },
  29196. [
  29197. {
  29198. name: "Kenzie Flea",
  29199. height: math.unit(2, "mm"),
  29200. default: true
  29201. },
  29202. {
  29203. name: "Micro",
  29204. height: math.unit(2, "inches")
  29205. },
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(152, "feet")
  29209. },
  29210. {
  29211. name: "Megamacro",
  29212. height: math.unit(7, "miles")
  29213. },
  29214. {
  29215. name: "Gigamacro",
  29216. height: math.unit(8000, "miles")
  29217. },
  29218. ]
  29219. ))
  29220. characterMakers.push(() => makeCharacter(
  29221. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29222. {
  29223. front: {
  29224. height: math.unit(6, "feet"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/withers/front.svg",
  29228. extra: 1935/1760,
  29229. bottom: 72/2007
  29230. }
  29231. },
  29232. back: {
  29233. height: math.unit(6, "feet"),
  29234. name: "Back",
  29235. image: {
  29236. source: "./media/characters/withers/back.svg",
  29237. extra: 1944/1792,
  29238. bottom: 12/1956
  29239. }
  29240. },
  29241. dressed: {
  29242. height: math.unit(6, "feet"),
  29243. name: "Dressed",
  29244. image: {
  29245. source: "./media/characters/withers/dressed.svg",
  29246. extra: 1937/1765,
  29247. bottom: 73/2010
  29248. }
  29249. },
  29250. phase1: {
  29251. height: math.unit(1.1, "feet"),
  29252. name: "Phase 1",
  29253. image: {
  29254. source: "./media/characters/withers/phase-1.svg",
  29255. extra: 1885/1232,
  29256. bottom: 0/1885
  29257. }
  29258. },
  29259. phase2: {
  29260. height: math.unit(1.05, "feet"),
  29261. name: "Phase 2",
  29262. image: {
  29263. source: "./media/characters/withers/phase-2.svg",
  29264. extra: 1792/1090,
  29265. bottom: 0/1792
  29266. }
  29267. },
  29268. partyWipe: {
  29269. height: math.unit(1.1, "feet"),
  29270. name: "Party Wipe",
  29271. image: {
  29272. source: "./media/characters/withers/party-wipe.svg",
  29273. extra: 1864/1207,
  29274. bottom: 0/1864
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Macro",
  29281. height: math.unit(167, "feet"),
  29282. default: true
  29283. },
  29284. {
  29285. name: "Megamacro",
  29286. height: math.unit(15, "miles")
  29287. }
  29288. ]
  29289. ))
  29290. characterMakers.push(() => makeCharacter(
  29291. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29292. {
  29293. front: {
  29294. height: math.unit(6 + 7 / 12, "feet"),
  29295. weight: math.unit(250, "lb"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/nemoskii/front.svg",
  29299. extra: 2270 / 1734,
  29300. bottom: 86 / 2354
  29301. }
  29302. },
  29303. back: {
  29304. height: math.unit(6 + 7 / 12, "feet"),
  29305. weight: math.unit(250, "lb"),
  29306. name: "Back",
  29307. image: {
  29308. source: "./media/characters/nemoskii/back.svg",
  29309. extra: 1845 / 1788,
  29310. bottom: 10.5 / 1852
  29311. }
  29312. },
  29313. head: {
  29314. height: math.unit(1.31, "feet"),
  29315. name: "Head",
  29316. image: {
  29317. source: "./media/characters/nemoskii/head.svg"
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Micro",
  29324. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29325. },
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(6 + 7 / 12, "feet"),
  29329. default: true
  29330. },
  29331. {
  29332. name: "Macro",
  29333. height: math.unit((6 + 7 / 12) * 150, "feet")
  29334. },
  29335. {
  29336. name: "Macro+",
  29337. height: math.unit((6 + 7 / 12) * 500, "feet")
  29338. },
  29339. {
  29340. name: "Megamacro",
  29341. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29342. },
  29343. ]
  29344. ))
  29345. characterMakers.push(() => makeCharacter(
  29346. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29347. {
  29348. front: {
  29349. height: math.unit(1, "mile"),
  29350. weight: math.unit(265261.9, "lb"),
  29351. name: "Front",
  29352. image: {
  29353. source: "./media/characters/shui/front.svg",
  29354. extra: 1633 / 1564,
  29355. bottom: 91.5 / 1726
  29356. }
  29357. },
  29358. },
  29359. [
  29360. {
  29361. name: "Macro",
  29362. height: math.unit(1, "mile"),
  29363. default: true
  29364. },
  29365. ]
  29366. ))
  29367. characterMakers.push(() => makeCharacter(
  29368. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29369. {
  29370. front: {
  29371. height: math.unit(12 + 6 / 12, "feet"),
  29372. weight: math.unit(1342, "lb"),
  29373. name: "Front",
  29374. image: {
  29375. source: "./media/characters/arokh-takakura/front.svg",
  29376. extra: 1089 / 1043,
  29377. bottom: 77.4 / 1176.7
  29378. }
  29379. },
  29380. back: {
  29381. height: math.unit(12 + 6 / 12, "feet"),
  29382. weight: math.unit(1342, "lb"),
  29383. name: "Back",
  29384. image: {
  29385. source: "./media/characters/arokh-takakura/back.svg",
  29386. extra: 1046 / 1019,
  29387. bottom: 102 / 1150
  29388. }
  29389. },
  29390. },
  29391. [
  29392. {
  29393. name: "Big",
  29394. height: math.unit(12 + 6 / 12, "feet"),
  29395. default: true
  29396. },
  29397. ]
  29398. ))
  29399. characterMakers.push(() => makeCharacter(
  29400. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29401. {
  29402. front: {
  29403. height: math.unit(5 + 6 / 12, "feet"),
  29404. weight: math.unit(150, "lb"),
  29405. name: "Front",
  29406. image: {
  29407. source: "./media/characters/theo/front.svg",
  29408. extra: 1184 / 1131,
  29409. bottom: 7.4 / 1191
  29410. }
  29411. },
  29412. },
  29413. [
  29414. {
  29415. name: "Micro",
  29416. height: math.unit(5, "inches")
  29417. },
  29418. {
  29419. name: "Normal",
  29420. height: math.unit(5 + 6 / 12, "feet"),
  29421. default: true
  29422. },
  29423. ]
  29424. ))
  29425. characterMakers.push(() => makeCharacter(
  29426. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29427. {
  29428. front: {
  29429. height: math.unit(5 + 9 / 12, "feet"),
  29430. weight: math.unit(130, "lb"),
  29431. name: "Front",
  29432. image: {
  29433. source: "./media/characters/cecelia-swift/front.svg",
  29434. extra: 502 / 484,
  29435. bottom: 23 / 523
  29436. }
  29437. },
  29438. back: {
  29439. height: math.unit(5 + 9 / 12, "feet"),
  29440. weight: math.unit(130, "lb"),
  29441. name: "Back",
  29442. image: {
  29443. source: "./media/characters/cecelia-swift/back.svg",
  29444. extra: 499 / 485,
  29445. bottom: 12 / 511
  29446. }
  29447. },
  29448. head: {
  29449. height: math.unit(0.90, "feet"),
  29450. name: "Head",
  29451. image: {
  29452. source: "./media/characters/cecelia-swift/head.svg"
  29453. }
  29454. },
  29455. rump: {
  29456. height: math.unit(1.75, "feet"),
  29457. name: "Rump",
  29458. image: {
  29459. source: "./media/characters/cecelia-swift/rump.svg"
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Normal",
  29466. height: math.unit(5 + 9 / 12, "feet"),
  29467. default: true
  29468. },
  29469. {
  29470. name: "Big",
  29471. height: math.unit(50, "feet")
  29472. },
  29473. {
  29474. name: "Macro",
  29475. height: math.unit(100, "feet")
  29476. },
  29477. {
  29478. name: "Macro+",
  29479. height: math.unit(500, "feet")
  29480. },
  29481. {
  29482. name: "Macro++",
  29483. height: math.unit(1000, "feet")
  29484. },
  29485. ]
  29486. ))
  29487. characterMakers.push(() => makeCharacter(
  29488. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29489. {
  29490. front: {
  29491. height: math.unit(6, "feet"),
  29492. weight: math.unit(150, "lb"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/kaunan/front.svg",
  29496. extra: 2890 / 2523,
  29497. bottom: 49 / 2939
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(150, "feet"),
  29505. default: true
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29511. {
  29512. dressed: {
  29513. height: math.unit(175, "cm"),
  29514. weight: math.unit(60, "kg"),
  29515. name: "Dressed",
  29516. image: {
  29517. source: "./media/characters/fei/dressed.svg",
  29518. extra: 1402/1278,
  29519. bottom: 27/1429
  29520. }
  29521. },
  29522. nude: {
  29523. height: math.unit(175, "cm"),
  29524. weight: math.unit(60, "kg"),
  29525. name: "Nude",
  29526. image: {
  29527. source: "./media/characters/fei/nude.svg",
  29528. extra: 1402/1278,
  29529. bottom: 27/1429
  29530. }
  29531. },
  29532. heels: {
  29533. height: math.unit(0.466, "feet"),
  29534. name: "Heels",
  29535. image: {
  29536. source: "./media/characters/fei/heels.svg",
  29537. extra: 156/152,
  29538. bottom: 28/184
  29539. }
  29540. },
  29541. },
  29542. [
  29543. {
  29544. name: "Mortal",
  29545. height: math.unit(175, "cm")
  29546. },
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(3500, "m")
  29550. },
  29551. {
  29552. name: "Stroll",
  29553. height: math.unit(18.4, "km"),
  29554. default: true
  29555. },
  29556. {
  29557. name: "Showoff",
  29558. height: math.unit(175, "km")
  29559. },
  29560. ]
  29561. ))
  29562. characterMakers.push(() => makeCharacter(
  29563. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29564. {
  29565. front: {
  29566. height: math.unit(7, "feet"),
  29567. weight: math.unit(1000, "kg"),
  29568. name: "Front",
  29569. image: {
  29570. source: "./media/characters/edrax/front.svg",
  29571. extra: 2838 / 2550,
  29572. bottom: 130 / 2968
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Small",
  29579. height: math.unit(7, "feet")
  29580. },
  29581. {
  29582. name: "Normal",
  29583. height: math.unit(1500, "meters")
  29584. },
  29585. {
  29586. name: "Mega",
  29587. height: math.unit(12000000, "km"),
  29588. default: true
  29589. },
  29590. {
  29591. name: "Megamacro",
  29592. height: math.unit(10600000, "lightyears")
  29593. },
  29594. {
  29595. name: "Hypermacro",
  29596. height: math.unit(256, "yottameters")
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(10, "feet"),
  29605. weight: math.unit(750, "lb"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/clove/front.svg",
  29609. extra: 1918/1751,
  29610. bottom: 52/1970
  29611. }
  29612. },
  29613. back: {
  29614. height: math.unit(10, "feet"),
  29615. weight: math.unit(750, "lb"),
  29616. name: "Back",
  29617. image: {
  29618. source: "./media/characters/clove/back.svg",
  29619. extra: 1912/1747,
  29620. bottom: 50/1962
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Normal",
  29627. height: math.unit(10, "feet"),
  29628. default: true
  29629. },
  29630. ]
  29631. ))
  29632. characterMakers.push(() => makeCharacter(
  29633. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29634. {
  29635. front: {
  29636. height: math.unit(4, "feet"),
  29637. weight: math.unit(50, "lb"),
  29638. name: "Front",
  29639. image: {
  29640. source: "./media/characters/alex-rabbit/front.svg",
  29641. extra: 507 / 458,
  29642. bottom: 18.5 / 527
  29643. }
  29644. },
  29645. back: {
  29646. height: math.unit(4, "feet"),
  29647. weight: math.unit(50, "lb"),
  29648. name: "Back",
  29649. image: {
  29650. source: "./media/characters/alex-rabbit/back.svg",
  29651. extra: 502 / 460,
  29652. bottom: 18.9 / 521
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(4, "feet"),
  29660. default: true
  29661. },
  29662. ]
  29663. ))
  29664. characterMakers.push(() => makeCharacter(
  29665. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29666. {
  29667. front: {
  29668. height: math.unit(1 + 3 / 12, "feet"),
  29669. weight: math.unit(80, "lb"),
  29670. name: "Front",
  29671. image: {
  29672. source: "./media/characters/zander-rose/front.svg",
  29673. extra: 916 / 797,
  29674. bottom: 17 / 933
  29675. }
  29676. },
  29677. back: {
  29678. height: math.unit(1 + 3 / 12, "feet"),
  29679. weight: math.unit(80, "lb"),
  29680. name: "Back",
  29681. image: {
  29682. source: "./media/characters/zander-rose/back.svg",
  29683. extra: 903 / 779,
  29684. bottom: 31 / 934
  29685. }
  29686. },
  29687. },
  29688. [
  29689. {
  29690. name: "Normal",
  29691. height: math.unit(1 + 3 / 12, "feet"),
  29692. default: true
  29693. },
  29694. ]
  29695. ))
  29696. characterMakers.push(() => makeCharacter(
  29697. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29698. {
  29699. anthro: {
  29700. height: math.unit(6, "feet"),
  29701. weight: math.unit(150, "lb"),
  29702. name: "Anthro",
  29703. image: {
  29704. source: "./media/characters/razz/anthro.svg",
  29705. extra: 1437 / 1343,
  29706. bottom: 48 / 1485
  29707. }
  29708. },
  29709. feral: {
  29710. height: math.unit(6, "feet"),
  29711. weight: math.unit(150, "lb"),
  29712. name: "Feral",
  29713. image: {
  29714. source: "./media/characters/razz/feral.svg",
  29715. extra: 2569 / 1385,
  29716. bottom: 95 / 2664
  29717. }
  29718. },
  29719. },
  29720. [
  29721. {
  29722. name: "Normal",
  29723. height: math.unit(6, "feet"),
  29724. default: true
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(9 + 4 / 12, "feet"),
  29733. weight: math.unit(500, "lb"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/morrigan/front.svg",
  29737. extra: 2707 / 2579,
  29738. bottom: 156 / 2863
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Normal",
  29745. height: math.unit(9 + 4 / 12, "feet"),
  29746. default: true
  29747. },
  29748. ]
  29749. ))
  29750. characterMakers.push(() => makeCharacter(
  29751. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29752. {
  29753. front: {
  29754. height: math.unit(5, "stories"),
  29755. weight: math.unit(4000, "lb"),
  29756. name: "Front",
  29757. image: {
  29758. source: "./media/characters/jenene/front.svg",
  29759. extra: 1780 / 1710,
  29760. bottom: 57 / 1837
  29761. }
  29762. },
  29763. },
  29764. [
  29765. {
  29766. name: "Normal",
  29767. height: math.unit(5, "stories"),
  29768. default: true
  29769. },
  29770. ]
  29771. ))
  29772. characterMakers.push(() => makeCharacter(
  29773. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29774. {
  29775. taurSfw: {
  29776. height: math.unit(10, "meters"),
  29777. weight: math.unit(17500, "kg"),
  29778. name: "Taur",
  29779. image: {
  29780. source: "./media/characters/faey/taur-sfw.svg",
  29781. extra: 1200 / 968,
  29782. bottom: 41 / 1241
  29783. }
  29784. },
  29785. chestmaw: {
  29786. height: math.unit(2.01, "meters"),
  29787. name: "Chestmaw",
  29788. image: {
  29789. source: "./media/characters/faey/chestmaw.svg"
  29790. }
  29791. },
  29792. foot: {
  29793. height: math.unit(2.43, "meters"),
  29794. name: "Foot",
  29795. image: {
  29796. source: "./media/characters/faey/foot.svg"
  29797. }
  29798. },
  29799. jaws: {
  29800. height: math.unit(1.66, "meters"),
  29801. name: "Jaws",
  29802. image: {
  29803. source: "./media/characters/faey/jaws.svg"
  29804. }
  29805. },
  29806. tongues: {
  29807. height: math.unit(2.01, "meters"),
  29808. name: "Tongues",
  29809. image: {
  29810. source: "./media/characters/faey/tongues.svg"
  29811. }
  29812. },
  29813. },
  29814. [
  29815. {
  29816. name: "Small",
  29817. height: math.unit(10, "meters"),
  29818. default: true
  29819. },
  29820. {
  29821. name: "Big",
  29822. height: math.unit(500000, "km")
  29823. },
  29824. ]
  29825. ))
  29826. characterMakers.push(() => makeCharacter(
  29827. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29828. {
  29829. front: {
  29830. height: math.unit(7, "feet"),
  29831. weight: math.unit(275, "lb"),
  29832. name: "Front",
  29833. image: {
  29834. source: "./media/characters/roku/front.svg",
  29835. extra: 903 / 878,
  29836. bottom: 37 / 940
  29837. }
  29838. },
  29839. },
  29840. [
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(7, "feet"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Macro",
  29848. height: math.unit(500, "feet")
  29849. },
  29850. {
  29851. name: "Megamacro",
  29852. height: math.unit(200, "miles")
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29858. {
  29859. front: {
  29860. height: math.unit(6 + 2 / 12, "feet"),
  29861. weight: math.unit(150, "lb"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/lira/front.svg",
  29865. extra: 1727 / 1605,
  29866. bottom: 26 / 1753
  29867. }
  29868. },
  29869. back: {
  29870. height: math.unit(6 + 2 / 12, "feet"),
  29871. weight: math.unit(150, "lb"),
  29872. name: "Back",
  29873. image: {
  29874. source: "./media/characters/lira/back.svg",
  29875. extra: 1713/1621,
  29876. bottom: 20/1733
  29877. }
  29878. },
  29879. hand: {
  29880. height: math.unit(0.75, "feet"),
  29881. name: "Hand",
  29882. image: {
  29883. source: "./media/characters/lira/hand.svg"
  29884. }
  29885. },
  29886. maw: {
  29887. height: math.unit(0.65, "feet"),
  29888. name: "Maw",
  29889. image: {
  29890. source: "./media/characters/lira/maw.svg"
  29891. }
  29892. },
  29893. pawDigi: {
  29894. height: math.unit(1.6, "feet"),
  29895. name: "Paw Digi",
  29896. image: {
  29897. source: "./media/characters/lira/paw-digi.svg"
  29898. }
  29899. },
  29900. pawPlanti: {
  29901. height: math.unit(1.4, "feet"),
  29902. name: "Paw Planti",
  29903. image: {
  29904. source: "./media/characters/lira/paw-planti.svg"
  29905. }
  29906. },
  29907. },
  29908. [
  29909. {
  29910. name: "Normal",
  29911. height: math.unit(6 + 2 / 12, "feet"),
  29912. default: true
  29913. },
  29914. {
  29915. name: "Macro",
  29916. height: math.unit(100, "feet")
  29917. },
  29918. {
  29919. name: "Macro²",
  29920. height: math.unit(1600, "feet")
  29921. },
  29922. {
  29923. name: "Planetary",
  29924. height: math.unit(20, "earths")
  29925. },
  29926. ]
  29927. ))
  29928. characterMakers.push(() => makeCharacter(
  29929. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29930. {
  29931. front: {
  29932. height: math.unit(6, "feet"),
  29933. weight: math.unit(150, "lb"),
  29934. name: "Front",
  29935. image: {
  29936. source: "./media/characters/hadjet/front.svg",
  29937. extra: 1480 / 1346,
  29938. bottom: 26 / 1506
  29939. }
  29940. },
  29941. frontNsfw: {
  29942. height: math.unit(6, "feet"),
  29943. weight: math.unit(150, "lb"),
  29944. name: "Front (NSFW)",
  29945. image: {
  29946. source: "./media/characters/hadjet/front-nsfw.svg",
  29947. extra: 1440 / 1358,
  29948. bottom: 52 / 1492
  29949. }
  29950. },
  29951. },
  29952. [
  29953. {
  29954. name: "Macro",
  29955. height: math.unit(10, "stories"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Megamacro",
  29960. height: math.unit(1.5, "miles")
  29961. },
  29962. {
  29963. name: "Megamacro+",
  29964. height: math.unit(5, "miles")
  29965. },
  29966. ]
  29967. ))
  29968. characterMakers.push(() => makeCharacter(
  29969. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29970. {
  29971. side: {
  29972. height: math.unit(106, "feet"),
  29973. weight: math.unit(500, "tonnes"),
  29974. name: "Side",
  29975. image: {
  29976. source: "./media/characters/kodran/side.svg",
  29977. extra: 553 / 480,
  29978. bottom: 33 / 586
  29979. }
  29980. },
  29981. front: {
  29982. height: math.unit(132, "feet"),
  29983. weight: math.unit(500, "tonnes"),
  29984. name: "Front",
  29985. image: {
  29986. source: "./media/characters/kodran/front.svg",
  29987. extra: 667 / 643,
  29988. bottom: 42 / 709
  29989. }
  29990. },
  29991. flying: {
  29992. height: math.unit(350, "feet"),
  29993. weight: math.unit(500, "tonnes"),
  29994. name: "Flying",
  29995. image: {
  29996. source: "./media/characters/kodran/flying.svg"
  29997. }
  29998. },
  29999. foot: {
  30000. height: math.unit(33, "feet"),
  30001. name: "Foot",
  30002. image: {
  30003. source: "./media/characters/kodran/foot.svg"
  30004. }
  30005. },
  30006. footFront: {
  30007. height: math.unit(19, "feet"),
  30008. name: "Foot (Front)",
  30009. image: {
  30010. source: "./media/characters/kodran/foot-front.svg",
  30011. extra: 261 / 261,
  30012. bottom: 91 / 352
  30013. }
  30014. },
  30015. headFront: {
  30016. height: math.unit(53, "feet"),
  30017. name: "Head (Front)",
  30018. image: {
  30019. source: "./media/characters/kodran/head-front.svg"
  30020. }
  30021. },
  30022. headSide: {
  30023. height: math.unit(65, "feet"),
  30024. name: "Head (Side)",
  30025. image: {
  30026. source: "./media/characters/kodran/head-side.svg"
  30027. }
  30028. },
  30029. throat: {
  30030. height: math.unit(79, "feet"),
  30031. name: "Throat",
  30032. image: {
  30033. source: "./media/characters/kodran/throat.svg"
  30034. }
  30035. },
  30036. },
  30037. [
  30038. {
  30039. name: "Large",
  30040. height: math.unit(106, "feet"),
  30041. default: true
  30042. },
  30043. ]
  30044. ))
  30045. characterMakers.push(() => makeCharacter(
  30046. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30047. {
  30048. side: {
  30049. height: math.unit(11, "feet"),
  30050. weight: math.unit(150, "lb"),
  30051. name: "Side",
  30052. image: {
  30053. source: "./media/characters/pyxaron/side.svg",
  30054. extra: 305 / 195,
  30055. bottom: 17 / 322
  30056. }
  30057. },
  30058. },
  30059. [
  30060. {
  30061. name: "Normal",
  30062. height: math.unit(11, "feet"),
  30063. default: true
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(6, "feet"),
  30072. weight: math.unit(150, "lb"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/meep/front.svg",
  30076. extra: 88 / 80,
  30077. bottom: 6 / 94
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Fun Sized",
  30084. height: math.unit(2, "inches"),
  30085. default: true
  30086. },
  30087. {
  30088. name: "Friend Sized",
  30089. height: math.unit(8, "inches")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30095. {
  30096. front: {
  30097. height: math.unit(15, "feet"),
  30098. weight: math.unit(2500, "lb"),
  30099. name: "Front",
  30100. image: {
  30101. source: "./media/characters/holly-rabbit/front.svg",
  30102. extra: 1433 / 1233,
  30103. bottom: 125 / 1558
  30104. }
  30105. },
  30106. dick: {
  30107. height: math.unit(4.6, "feet"),
  30108. name: "Dick",
  30109. image: {
  30110. source: "./media/characters/holly-rabbit/dick.svg"
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Normal",
  30117. height: math.unit(15, "feet"),
  30118. default: true
  30119. },
  30120. {
  30121. name: "Macro",
  30122. height: math.unit(250, "feet")
  30123. },
  30124. {
  30125. name: "Macro+",
  30126. height: math.unit(2500, "feet")
  30127. },
  30128. ]
  30129. ))
  30130. characterMakers.push(() => makeCharacter(
  30131. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30132. {
  30133. front: {
  30134. height: math.unit(3.02, "meters"),
  30135. weight: math.unit(500, "kg"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/drena/front.svg",
  30139. extra: 282 / 243,
  30140. bottom: 8 / 290
  30141. }
  30142. },
  30143. side: {
  30144. height: math.unit(3.02, "meters"),
  30145. weight: math.unit(500, "kg"),
  30146. name: "Side",
  30147. image: {
  30148. source: "./media/characters/drena/side.svg",
  30149. extra: 280 / 245,
  30150. bottom: 10 / 290
  30151. }
  30152. },
  30153. back: {
  30154. height: math.unit(3.02, "meters"),
  30155. weight: math.unit(500, "kg"),
  30156. name: "Back",
  30157. image: {
  30158. source: "./media/characters/drena/back.svg",
  30159. extra: 278 / 243,
  30160. bottom: 2 / 280
  30161. }
  30162. },
  30163. foot: {
  30164. height: math.unit(0.75, "meters"),
  30165. name: "Foot",
  30166. image: {
  30167. source: "./media/characters/drena/foot.svg"
  30168. }
  30169. },
  30170. maw: {
  30171. height: math.unit(0.82, "meters"),
  30172. name: "Maw",
  30173. image: {
  30174. source: "./media/characters/drena/maw.svg"
  30175. }
  30176. },
  30177. eating: {
  30178. height: math.unit(0.75, "meters"),
  30179. name: "Eating",
  30180. image: {
  30181. source: "./media/characters/drena/eating.svg"
  30182. }
  30183. },
  30184. rump: {
  30185. height: math.unit(0.93, "meters"),
  30186. name: "Rump",
  30187. image: {
  30188. source: "./media/characters/drena/rump.svg"
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Normal",
  30195. height: math.unit(3.02, "meters"),
  30196. default: true
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(6 + 4 / 12, "feet"),
  30205. weight: math.unit(250, "lb"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/remmyzilla/front.svg",
  30209. extra: 4033 / 3588,
  30210. bottom: 123 / 4156
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(6 + 4 / 12, "feet"),
  30215. weight: math.unit(250, "lb"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/remmyzilla/back.svg",
  30219. extra: 2687 / 2555,
  30220. bottom: 48 / 2735
  30221. }
  30222. },
  30223. paw: {
  30224. height: math.unit(1.73, "feet"),
  30225. name: "Paw",
  30226. image: {
  30227. source: "./media/characters/remmyzilla/paw.svg"
  30228. },
  30229. extraAttributes: {
  30230. "toeSize": {
  30231. name: "Toe Size",
  30232. power: 2,
  30233. type: "area",
  30234. base: math.unit(0.0035, "m^2")
  30235. },
  30236. "padSize": {
  30237. name: "Pad Size",
  30238. power: 2,
  30239. type: "area",
  30240. base: math.unit(0.015, "m^2")
  30241. },
  30242. "pawsize": {
  30243. name: "Paw Size",
  30244. power: 2,
  30245. type: "area",
  30246. base: math.unit(0.072, "m^2")
  30247. },
  30248. }
  30249. },
  30250. maw: {
  30251. height: math.unit(1.73, "feet"),
  30252. name: "Maw",
  30253. image: {
  30254. source: "./media/characters/remmyzilla/maw.svg"
  30255. }
  30256. },
  30257. },
  30258. [
  30259. {
  30260. name: "Normal",
  30261. height: math.unit(6 + 4 / 12, "feet")
  30262. },
  30263. {
  30264. name: "Minimacro",
  30265. height: math.unit(12 + 8 / 12, "feet")
  30266. },
  30267. {
  30268. name: "Normal",
  30269. height: math.unit(640, "feet"),
  30270. default: true
  30271. },
  30272. {
  30273. name: "Megamacro",
  30274. height: math.unit(6400, "feet")
  30275. },
  30276. {
  30277. name: "Gigamacro",
  30278. height: math.unit(64000, "miles")
  30279. },
  30280. ]
  30281. ))
  30282. characterMakers.push(() => makeCharacter(
  30283. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30284. {
  30285. front: {
  30286. height: math.unit(2.5, "meters"),
  30287. weight: math.unit(300, "lb"),
  30288. name: "Front",
  30289. image: {
  30290. source: "./media/characters/lawrence/front.svg",
  30291. extra: 357 / 335,
  30292. bottom: 30 / 387
  30293. }
  30294. },
  30295. back: {
  30296. height: math.unit(2.5, "meters"),
  30297. weight: math.unit(300, "lb"),
  30298. name: "Back",
  30299. image: {
  30300. source: "./media/characters/lawrence/back.svg",
  30301. extra: 357 / 338,
  30302. bottom: 16 / 373
  30303. }
  30304. },
  30305. head: {
  30306. height: math.unit(0.9, "meter"),
  30307. name: "Head",
  30308. image: {
  30309. source: "./media/characters/lawrence/head.svg"
  30310. }
  30311. },
  30312. maw: {
  30313. height: math.unit(0.7, "meter"),
  30314. name: "Maw",
  30315. image: {
  30316. source: "./media/characters/lawrence/maw.svg"
  30317. }
  30318. },
  30319. footBottom: {
  30320. height: math.unit(0.5, "meter"),
  30321. name: "Foot (Bottom)",
  30322. image: {
  30323. source: "./media/characters/lawrence/foot-bottom.svg"
  30324. }
  30325. },
  30326. footTop: {
  30327. height: math.unit(0.5, "meter"),
  30328. name: "Foot (Top)",
  30329. image: {
  30330. source: "./media/characters/lawrence/foot-top.svg"
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Normal",
  30337. height: math.unit(2.5, "meters"),
  30338. default: true
  30339. },
  30340. {
  30341. name: "Macro",
  30342. height: math.unit(95, "meters")
  30343. },
  30344. {
  30345. name: "Megamacro",
  30346. height: math.unit(150, "km")
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30352. {
  30353. front: {
  30354. height: math.unit(4.2, "meters"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/sydney/front.svg",
  30358. extra: 1323 / 1277,
  30359. bottom: 111 / 1434
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(4.2, "meters"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30373. {
  30374. back: {
  30375. height: math.unit(201, "feet"),
  30376. name: "Back",
  30377. image: {
  30378. source: "./media/characters/jessica/back.svg",
  30379. extra: 273 / 259,
  30380. bottom: 7 / 280
  30381. }
  30382. },
  30383. },
  30384. [
  30385. {
  30386. name: "Normal",
  30387. height: math.unit(201, "feet"),
  30388. default: true
  30389. },
  30390. {
  30391. name: "Megamacro",
  30392. height: math.unit(8, "miles")
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30398. {
  30399. side: {
  30400. height: math.unit(5.6, "m"),
  30401. weight: math.unit(8000, "kg"),
  30402. name: "Side",
  30403. image: {
  30404. source: "./media/characters/victoria/side.svg",
  30405. extra: 1542/1229,
  30406. bottom: 124/1666
  30407. }
  30408. },
  30409. maw: {
  30410. height: math.unit(7.14, "feet"),
  30411. name: "Maw",
  30412. image: {
  30413. source: "./media/characters/victoria/maw.svg"
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(5.6, "m"),
  30421. default: true
  30422. },
  30423. ]
  30424. ))
  30425. characterMakers.push(() => makeCharacter(
  30426. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30427. {
  30428. front: {
  30429. height: math.unit(5 + 6 / 12, "feet"),
  30430. name: "Front",
  30431. image: {
  30432. source: "./media/characters/cat/front.svg",
  30433. extra: 1449/1295,
  30434. bottom: 34/1483
  30435. },
  30436. form: "cat",
  30437. default: true
  30438. },
  30439. back: {
  30440. height: math.unit(5 + 6 / 12, "feet"),
  30441. name: "Back",
  30442. image: {
  30443. source: "./media/characters/cat/back.svg",
  30444. extra: 1466/1301,
  30445. bottom: 19/1485
  30446. },
  30447. form: "cat"
  30448. },
  30449. taur: {
  30450. height: math.unit(7, "feet"),
  30451. name: "Taur",
  30452. image: {
  30453. source: "./media/characters/cat/taur.svg",
  30454. extra: 1389/1233,
  30455. bottom: 83/1472
  30456. },
  30457. form: "taur",
  30458. default: true
  30459. },
  30460. lucarioFront: {
  30461. height: math.unit(4, "feet"),
  30462. name: "Lucario (Front)",
  30463. image: {
  30464. source: "./media/characters/cat/lucario-front.svg",
  30465. extra: 1149/1019,
  30466. bottom: 84/1233
  30467. },
  30468. form: "lucario",
  30469. default: true
  30470. },
  30471. lucarioBack: {
  30472. height: math.unit(4, "feet"),
  30473. name: "Lucario (Back)",
  30474. image: {
  30475. source: "./media/characters/cat/lucario-back.svg",
  30476. extra: 1190/1059,
  30477. bottom: 33/1223
  30478. },
  30479. form: "lucario"
  30480. },
  30481. megaLucario: {
  30482. height: math.unit(4, "feet"),
  30483. name: "Mega Lucario",
  30484. image: {
  30485. source: "./media/characters/cat/mega-lucario.svg",
  30486. extra: 1515 / 1319,
  30487. bottom: 63 / 1578
  30488. },
  30489. form: "lucario"
  30490. },
  30491. nickit: {
  30492. height: math.unit(2, "feet"),
  30493. name: "Nickit",
  30494. image: {
  30495. source: "./media/characters/cat/nickit.svg",
  30496. extra: 1980 / 1585,
  30497. bottom: 102 / 2082
  30498. },
  30499. form: "nickit",
  30500. default: true
  30501. },
  30502. lopunnyFront: {
  30503. height: math.unit(5, "feet"),
  30504. name: "Lopunny (Front)",
  30505. image: {
  30506. source: "./media/characters/cat/lopunny-front.svg",
  30507. extra: 1782 / 1469,
  30508. bottom: 38 / 1820
  30509. },
  30510. form: "lopunny",
  30511. default: true
  30512. },
  30513. lopunnyBack: {
  30514. height: math.unit(5, "feet"),
  30515. name: "Lopunny (Back)",
  30516. image: {
  30517. source: "./media/characters/cat/lopunny-back.svg",
  30518. extra: 1660 / 1490,
  30519. bottom: 25 / 1685
  30520. },
  30521. form: "lopunny"
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Really small",
  30527. height: math.unit(1, "nm")
  30528. },
  30529. {
  30530. name: "Micro",
  30531. height: math.unit(5, "inches")
  30532. },
  30533. {
  30534. name: "Normal",
  30535. height: math.unit(5 + 6 / 12, "feet"),
  30536. default: true
  30537. },
  30538. {
  30539. name: "Macro",
  30540. height: math.unit(50, "feet")
  30541. },
  30542. {
  30543. name: "Macro+",
  30544. height: math.unit(150, "feet")
  30545. },
  30546. {
  30547. name: "Megamacro",
  30548. height: math.unit(100, "miles")
  30549. },
  30550. ]
  30551. ))
  30552. characterMakers.push(() => makeCharacter(
  30553. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30554. {
  30555. front: {
  30556. height: math.unit(63.4, "meters"),
  30557. weight: math.unit(3.28349e+6, "kilograms"),
  30558. name: "Front",
  30559. image: {
  30560. source: "./media/characters/kirina-violet/front.svg",
  30561. extra: 2812 / 2725,
  30562. bottom: 0 / 2812
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(63.4, "meters"),
  30567. weight: math.unit(3.28349e+6, "kilograms"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/kirina-violet/back.svg",
  30571. extra: 2812 / 2725,
  30572. bottom: 0 / 2812
  30573. }
  30574. },
  30575. mouth: {
  30576. height: math.unit(4.35, "meters"),
  30577. name: "Mouth",
  30578. image: {
  30579. source: "./media/characters/kirina-violet/mouth.svg"
  30580. }
  30581. },
  30582. paw: {
  30583. height: math.unit(5.6, "meters"),
  30584. name: "Paw",
  30585. image: {
  30586. source: "./media/characters/kirina-violet/paw.svg"
  30587. }
  30588. },
  30589. tail: {
  30590. height: math.unit(18, "meters"),
  30591. name: "Tail",
  30592. image: {
  30593. source: "./media/characters/kirina-violet/tail.svg"
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Macro",
  30600. height: math.unit(63.4, "meters"),
  30601. default: true
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30607. {
  30608. front: {
  30609. height: math.unit(75, "feet"),
  30610. name: "Front",
  30611. image: {
  30612. source: "./media/characters/cat-gigachu/front.svg",
  30613. extra: 1239/1027,
  30614. bottom: 32/1271
  30615. }
  30616. },
  30617. back: {
  30618. height: math.unit(75, "feet"),
  30619. name: "Back",
  30620. image: {
  30621. source: "./media/characters/cat-gigachu/back.svg",
  30622. extra: 1229/1030,
  30623. bottom: 9/1238
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Dynamax",
  30630. height: math.unit(75, "feet"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(6, "feet"),
  30640. weight: math.unit(150, "lb"),
  30641. name: "Front",
  30642. image: {
  30643. source: "./media/characters/sfaiyan/front.svg",
  30644. extra: 999 / 978,
  30645. bottom: 5 / 1004
  30646. }
  30647. },
  30648. },
  30649. [
  30650. {
  30651. name: "Normal",
  30652. height: math.unit(1.82, "meters")
  30653. },
  30654. {
  30655. name: "Giant",
  30656. height: math.unit(2.27, "km"),
  30657. default: true
  30658. },
  30659. ]
  30660. ))
  30661. characterMakers.push(() => makeCharacter(
  30662. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30663. {
  30664. front: {
  30665. height: math.unit(179, "cm"),
  30666. weight: math.unit(100, "kg"),
  30667. name: "Front",
  30668. image: {
  30669. source: "./media/characters/raunehkeli/front.svg",
  30670. extra: 1934 / 1926,
  30671. bottom: 0 / 1934
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Normal",
  30678. height: math.unit(179, "cm")
  30679. },
  30680. {
  30681. name: "Maximum",
  30682. height: math.unit(575, "meters"),
  30683. default: true
  30684. },
  30685. ]
  30686. ))
  30687. characterMakers.push(() => makeCharacter(
  30688. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30689. {
  30690. front: {
  30691. height: math.unit(6, "feet"),
  30692. weight: math.unit(150, "lb"),
  30693. name: "Front",
  30694. image: {
  30695. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30696. extra: 2625 / 2518,
  30697. bottom: 60 / 2685
  30698. }
  30699. },
  30700. },
  30701. [
  30702. {
  30703. name: "Normal",
  30704. height: math.unit(6 + 2 / 12, "feet")
  30705. },
  30706. {
  30707. name: "Macro",
  30708. height: math.unit(1180, "feet"),
  30709. default: true
  30710. },
  30711. ]
  30712. ))
  30713. characterMakers.push(() => makeCharacter(
  30714. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30715. {
  30716. front: {
  30717. height: math.unit(5 + 6 / 12, "feet"),
  30718. weight: math.unit(108, "lb"),
  30719. name: "Front",
  30720. image: {
  30721. source: "./media/characters/lilith-zott/front.svg",
  30722. extra: 2510 / 2238,
  30723. bottom: 100 / 2610
  30724. }
  30725. },
  30726. frontDressed: {
  30727. height: math.unit(5 + 6 / 12, "feet"),
  30728. weight: math.unit(108, "lb"),
  30729. name: "Front (Dressed)",
  30730. image: {
  30731. source: "./media/characters/lilith-zott/front-dressed.svg",
  30732. extra: 2510 / 2238,
  30733. bottom: 100 / 2610
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Normal",
  30740. height: math.unit(5 + 6 / 12, "feet")
  30741. },
  30742. {
  30743. name: "Macro",
  30744. height: math.unit(1030, "feet"),
  30745. default: true
  30746. },
  30747. ]
  30748. ))
  30749. characterMakers.push(() => makeCharacter(
  30750. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30751. {
  30752. front: {
  30753. height: math.unit(6, "feet"),
  30754. weight: math.unit(150, "lb"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30758. extra: 2567 / 2435,
  30759. bottom: 39 / 2606
  30760. }
  30761. },
  30762. frontSuper: {
  30763. height: math.unit(6, "feet"),
  30764. name: "Front (Super)",
  30765. image: {
  30766. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30767. extra: 2567 / 2435,
  30768. bottom: 39 / 2606
  30769. }
  30770. },
  30771. },
  30772. [
  30773. {
  30774. name: "Normal",
  30775. height: math.unit(5 + 10 / 12, "feet")
  30776. },
  30777. {
  30778. name: "Macro",
  30779. height: math.unit(1100, "feet"),
  30780. default: true
  30781. },
  30782. ]
  30783. ))
  30784. characterMakers.push(() => makeCharacter(
  30785. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30786. {
  30787. front: {
  30788. height: math.unit(100, "miles"),
  30789. name: "Front",
  30790. image: {
  30791. source: "./media/characters/sona/front.svg",
  30792. extra: 2433 / 2201,
  30793. bottom: 53 / 2486
  30794. }
  30795. },
  30796. foot: {
  30797. height: math.unit(16.1, "miles"),
  30798. name: "Foot",
  30799. image: {
  30800. source: "./media/characters/sona/foot.svg"
  30801. }
  30802. },
  30803. },
  30804. [
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(100, "miles"),
  30808. default: true
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(6, "feet"),
  30817. weight: math.unit(150, "lb"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/bailey/front.svg",
  30821. extra: 1778 / 1724,
  30822. bottom: 30 / 1808
  30823. }
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Micro",
  30829. height: math.unit(4, "inches")
  30830. },
  30831. {
  30832. name: "Normal",
  30833. height: math.unit(5 + 5 / 12, "feet"),
  30834. default: true
  30835. },
  30836. {
  30837. name: "Macro",
  30838. height: math.unit(250, "feet")
  30839. },
  30840. {
  30841. name: "Megamacro",
  30842. height: math.unit(100, "miles")
  30843. },
  30844. ]
  30845. ))
  30846. characterMakers.push(() => makeCharacter(
  30847. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30848. {
  30849. front: {
  30850. height: math.unit(5 + 2 / 12, "feet"),
  30851. weight: math.unit(120, "lb"),
  30852. name: "Front",
  30853. image: {
  30854. source: "./media/characters/snaps/front.svg",
  30855. extra: 2370 / 2177,
  30856. bottom: 48 / 2418
  30857. }
  30858. },
  30859. back: {
  30860. height: math.unit(5 + 2 / 12, "feet"),
  30861. weight: math.unit(120, "lb"),
  30862. name: "Back",
  30863. image: {
  30864. source: "./media/characters/snaps/back.svg",
  30865. extra: 2408 / 2258,
  30866. bottom: 15 / 2423
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Micro",
  30873. height: math.unit(9, "inches")
  30874. },
  30875. {
  30876. name: "Normal",
  30877. height: math.unit(5 + 2 / 12, "feet"),
  30878. default: true
  30879. },
  30880. {
  30881. name: "Mini Macro",
  30882. height: math.unit(10, "feet")
  30883. },
  30884. ]
  30885. ))
  30886. characterMakers.push(() => makeCharacter(
  30887. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30888. {
  30889. front: {
  30890. height: math.unit(1.8, "meters"),
  30891. weight: math.unit(85, "kg"),
  30892. name: "Front",
  30893. image: {
  30894. source: "./media/characters/azteck/front.svg",
  30895. extra: 2815 / 2625,
  30896. bottom: 89 / 2904
  30897. }
  30898. },
  30899. back: {
  30900. height: math.unit(1.8, "meters"),
  30901. weight: math.unit(85, "kg"),
  30902. name: "Back",
  30903. image: {
  30904. source: "./media/characters/azteck/back.svg",
  30905. extra: 2856 / 2648,
  30906. bottom: 85 / 2941
  30907. }
  30908. },
  30909. frontDressed: {
  30910. height: math.unit(1.8, "meters"),
  30911. weight: math.unit(85, "kg"),
  30912. name: "Front (Dressed)",
  30913. image: {
  30914. source: "./media/characters/azteck/front-dressed.svg",
  30915. extra: 2147 / 2003,
  30916. bottom: 68 / 2215
  30917. }
  30918. },
  30919. head: {
  30920. height: math.unit(0.47, "meters"),
  30921. weight: math.unit(85, "kg"),
  30922. name: "Head",
  30923. image: {
  30924. source: "./media/characters/azteck/head.svg"
  30925. }
  30926. },
  30927. },
  30928. [
  30929. {
  30930. name: "Bite sized",
  30931. height: math.unit(16, "cm")
  30932. },
  30933. {
  30934. name: "Normal",
  30935. height: math.unit(1.8, "meters"),
  30936. default: true
  30937. },
  30938. ]
  30939. ))
  30940. characterMakers.push(() => makeCharacter(
  30941. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30942. {
  30943. front: {
  30944. height: math.unit(6, "feet"),
  30945. weight: math.unit(150, "lb"),
  30946. name: "Front",
  30947. image: {
  30948. source: "./media/characters/pidge/front.svg",
  30949. extra: 1936/1820,
  30950. bottom: 0/1936
  30951. }
  30952. },
  30953. back: {
  30954. height: math.unit(6, "feet"),
  30955. weight: math.unit(150, "lb"),
  30956. name: "Back",
  30957. image: {
  30958. source: "./media/characters/pidge/back.svg",
  30959. extra: 1938/1843,
  30960. bottom: 0/1938
  30961. }
  30962. },
  30963. casual: {
  30964. height: math.unit(6, "feet"),
  30965. weight: math.unit(150, "lb"),
  30966. name: "Casual",
  30967. image: {
  30968. source: "./media/characters/pidge/casual.svg",
  30969. extra: 1936/1820,
  30970. bottom: 0/1936
  30971. }
  30972. },
  30973. tech: {
  30974. height: math.unit(6, "feet"),
  30975. weight: math.unit(150, "lb"),
  30976. name: "Tech",
  30977. image: {
  30978. source: "./media/characters/pidge/tech.svg",
  30979. extra: 1802/1682,
  30980. bottom: 0/1802
  30981. }
  30982. },
  30983. head: {
  30984. height: math.unit(1.61, "feet"),
  30985. name: "Head",
  30986. image: {
  30987. source: "./media/characters/pidge/head.svg"
  30988. }
  30989. },
  30990. collar: {
  30991. height: math.unit(0.82, "feet"),
  30992. name: "Collar",
  30993. image: {
  30994. source: "./media/characters/pidge/collar.svg"
  30995. }
  30996. },
  30997. },
  30998. [
  30999. {
  31000. name: "Macro",
  31001. height: math.unit(2, "mile"),
  31002. default: true
  31003. },
  31004. {
  31005. name: "PUPPY",
  31006. height: math.unit(20, "miles")
  31007. },
  31008. ]
  31009. ))
  31010. characterMakers.push(() => makeCharacter(
  31011. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31012. {
  31013. front: {
  31014. height: math.unit(6, "feet"),
  31015. weight: math.unit(150, "lb"),
  31016. name: "Front",
  31017. image: {
  31018. source: "./media/characters/en/front.svg",
  31019. extra: 1697 / 1563,
  31020. bottom: 103 / 1800
  31021. }
  31022. },
  31023. back: {
  31024. height: math.unit(6, "feet"),
  31025. weight: math.unit(150, "lb"),
  31026. name: "Back",
  31027. image: {
  31028. source: "./media/characters/en/back.svg",
  31029. extra: 1700 / 1570,
  31030. bottom: 51 / 1751
  31031. }
  31032. },
  31033. frontDressed: {
  31034. height: math.unit(6, "feet"),
  31035. weight: math.unit(150, "lb"),
  31036. name: "Front (Dressed)",
  31037. image: {
  31038. source: "./media/characters/en/front-dressed.svg",
  31039. extra: 1697 / 1563,
  31040. bottom: 103 / 1800
  31041. }
  31042. },
  31043. backDressed: {
  31044. height: math.unit(6, "feet"),
  31045. weight: math.unit(150, "lb"),
  31046. name: "Back (Dressed)",
  31047. image: {
  31048. source: "./media/characters/en/back-dressed.svg",
  31049. extra: 1700 / 1570,
  31050. bottom: 51 / 1751
  31051. }
  31052. },
  31053. },
  31054. [
  31055. {
  31056. name: "Macro",
  31057. height: math.unit(210, "feet"),
  31058. default: true
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(6, "feet"),
  31067. weight: math.unit(150, "lb"),
  31068. name: "Front",
  31069. image: {
  31070. source: "./media/characters/haze-orris/front.svg",
  31071. extra: 3975 / 3525,
  31072. bottom: 137 / 4112
  31073. }
  31074. },
  31075. },
  31076. [
  31077. {
  31078. name: "Micro",
  31079. height: math.unit(150, "mm"),
  31080. default: true
  31081. },
  31082. ]
  31083. ))
  31084. characterMakers.push(() => makeCharacter(
  31085. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31086. {
  31087. front: {
  31088. height: math.unit(6, "feet"),
  31089. weight: math.unit(150, "lb"),
  31090. name: "Front",
  31091. image: {
  31092. source: "./media/characters/casselene-yaro/front.svg",
  31093. extra: 4721 / 4541,
  31094. bottom: 82 / 4803
  31095. }
  31096. },
  31097. back: {
  31098. height: math.unit(6, "feet"),
  31099. weight: math.unit(150, "lb"),
  31100. name: "Back",
  31101. image: {
  31102. source: "./media/characters/casselene-yaro/back.svg",
  31103. extra: 4569 / 4377,
  31104. bottom: 69 / 4638
  31105. }
  31106. },
  31107. dressed: {
  31108. height: math.unit(6, "feet"),
  31109. weight: math.unit(150, "lb"),
  31110. name: "Dressed",
  31111. image: {
  31112. source: "./media/characters/casselene-yaro/dressed.svg",
  31113. extra: 4721 / 4541,
  31114. bottom: 82 / 4803
  31115. }
  31116. },
  31117. maw: {
  31118. height: math.unit(1, "feet"),
  31119. name: "Maw",
  31120. image: {
  31121. source: "./media/characters/casselene-yaro/maw.svg"
  31122. }
  31123. },
  31124. },
  31125. [
  31126. {
  31127. name: "Macro",
  31128. height: math.unit(190, "feet"),
  31129. default: true
  31130. },
  31131. ]
  31132. ))
  31133. characterMakers.push(() => makeCharacter(
  31134. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31135. {
  31136. front: {
  31137. height: math.unit(10, "feet"),
  31138. weight: math.unit(15015, "lb"),
  31139. name: "Front",
  31140. image: {
  31141. source: "./media/characters/platine/front.svg",
  31142. extra: 1741/1650,
  31143. bottom: 84/1825
  31144. }
  31145. },
  31146. side: {
  31147. height: math.unit(10, "feet"),
  31148. weight: math.unit(15015, "lb"),
  31149. name: "Side",
  31150. image: {
  31151. source: "./media/characters/platine/side.svg",
  31152. extra: 1790/1705,
  31153. bottom: 29/1819
  31154. }
  31155. },
  31156. },
  31157. [
  31158. {
  31159. name: "Normal",
  31160. height: math.unit(10, "feet"),
  31161. default: true
  31162. },
  31163. {
  31164. name: "Macro",
  31165. height: math.unit(100, "feet")
  31166. },
  31167. {
  31168. name: "Megamacro",
  31169. height: math.unit(1000, "feet")
  31170. },
  31171. ]
  31172. ))
  31173. characterMakers.push(() => makeCharacter(
  31174. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31175. {
  31176. front: {
  31177. height: math.unit(15 + 5 / 12, "feet"),
  31178. weight: math.unit(4600, "lb"),
  31179. name: "Front",
  31180. image: {
  31181. source: "./media/characters/neapolitan-ananassa/front.svg",
  31182. extra: 2903 / 2736,
  31183. bottom: 0 / 2903
  31184. }
  31185. },
  31186. side: {
  31187. height: math.unit(15 + 5 / 12, "feet"),
  31188. weight: math.unit(4600, "lb"),
  31189. name: "Side",
  31190. image: {
  31191. source: "./media/characters/neapolitan-ananassa/side.svg",
  31192. extra: 2925 / 2719,
  31193. bottom: 0 / 2925
  31194. }
  31195. },
  31196. back: {
  31197. height: math.unit(15 + 5 / 12, "feet"),
  31198. weight: math.unit(4600, "lb"),
  31199. name: "Back",
  31200. image: {
  31201. source: "./media/characters/neapolitan-ananassa/back.svg",
  31202. extra: 2903 / 2736,
  31203. bottom: 0 / 2903
  31204. }
  31205. },
  31206. },
  31207. [
  31208. {
  31209. name: "Normal",
  31210. height: math.unit(15 + 5 / 12, "feet"),
  31211. default: true
  31212. },
  31213. {
  31214. name: "Post-Millenium",
  31215. height: math.unit(35 + 5 / 12, "feet")
  31216. },
  31217. {
  31218. name: "Post-Era",
  31219. height: math.unit(450 + 5 / 12, "feet")
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31225. {
  31226. front: {
  31227. height: math.unit(300, "meters"),
  31228. weight: math.unit(125000, "tonnes"),
  31229. name: "Front",
  31230. image: {
  31231. source: "./media/characters/pazuzu/front.svg",
  31232. extra: 877 / 794,
  31233. bottom: 47 / 924
  31234. }
  31235. },
  31236. },
  31237. [
  31238. {
  31239. name: "Macro",
  31240. height: math.unit(300, "meters"),
  31241. default: true
  31242. },
  31243. ]
  31244. ))
  31245. characterMakers.push(() => makeCharacter(
  31246. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31247. {
  31248. side: {
  31249. height: math.unit(10 + 7 / 12, "feet"),
  31250. weight: math.unit(2.5, "tons"),
  31251. name: "Side",
  31252. image: {
  31253. source: "./media/characters/aasha/side.svg",
  31254. extra: 1345 / 1245,
  31255. bottom: 111 / 1456
  31256. }
  31257. },
  31258. back: {
  31259. height: math.unit(10 + 7 / 12, "feet"),
  31260. weight: math.unit(2.5, "tons"),
  31261. name: "Back",
  31262. image: {
  31263. source: "./media/characters/aasha/back.svg",
  31264. extra: 1133 / 1057,
  31265. bottom: 257 / 1390
  31266. }
  31267. },
  31268. },
  31269. [
  31270. {
  31271. name: "Normal",
  31272. height: math.unit(10 + 7 / 12, "feet"),
  31273. default: true
  31274. },
  31275. ]
  31276. ))
  31277. characterMakers.push(() => makeCharacter(
  31278. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31279. {
  31280. front: {
  31281. height: math.unit(6 + 3 / 12, "feet"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/nevan/front.svg",
  31285. extra: 704 / 704,
  31286. bottom: 28 / 732
  31287. }
  31288. },
  31289. back: {
  31290. height: math.unit(6 + 3 / 12, "feet"),
  31291. name: "Back",
  31292. image: {
  31293. source: "./media/characters/nevan/back.svg",
  31294. extra: 714 / 714,
  31295. bottom: 21 / 735
  31296. }
  31297. },
  31298. frontFlaccid: {
  31299. height: math.unit(6 + 3 / 12, "feet"),
  31300. name: "Front (Flaccid)",
  31301. image: {
  31302. source: "./media/characters/nevan/front-flaccid.svg",
  31303. extra: 704 / 704,
  31304. bottom: 28 / 732
  31305. }
  31306. },
  31307. frontErect: {
  31308. height: math.unit(6 + 3 / 12, "feet"),
  31309. name: "Front (Erect)",
  31310. image: {
  31311. source: "./media/characters/nevan/front-erect.svg",
  31312. extra: 704 / 704,
  31313. bottom: 28 / 732
  31314. }
  31315. },
  31316. backFlaccid: {
  31317. height: math.unit(6 + 3 / 12, "feet"),
  31318. name: "Back (Flaccid)",
  31319. image: {
  31320. source: "./media/characters/nevan/back-flaccid.svg",
  31321. extra: 714 / 714,
  31322. bottom: 21 / 735
  31323. }
  31324. },
  31325. },
  31326. [
  31327. {
  31328. name: "Normal",
  31329. height: math.unit(6 + 3 / 12, "feet"),
  31330. default: true
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(4, "feet"),
  31339. name: "Front",
  31340. image: {
  31341. source: "./media/characters/arhan/front.svg",
  31342. extra: 3368 / 3133,
  31343. bottom: 0 / 3368
  31344. }
  31345. },
  31346. side: {
  31347. height: math.unit(4, "feet"),
  31348. name: "Side",
  31349. image: {
  31350. source: "./media/characters/arhan/side.svg",
  31351. extra: 3347 / 3105,
  31352. bottom: 0 / 3347
  31353. }
  31354. },
  31355. tongue: {
  31356. height: math.unit(1.42, "feet"),
  31357. name: "Tongue",
  31358. image: {
  31359. source: "./media/characters/arhan/tongue.svg"
  31360. }
  31361. },
  31362. head: {
  31363. height: math.unit(0.85, "feet"),
  31364. name: "Head",
  31365. image: {
  31366. source: "./media/characters/arhan/head.svg"
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(4, "feet"),
  31374. default: true
  31375. },
  31376. ]
  31377. ))
  31378. characterMakers.push(() => makeCharacter(
  31379. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31380. {
  31381. front: {
  31382. height: math.unit(5 + 7.5 / 12, "feet"),
  31383. weight: math.unit(120, "lb"),
  31384. name: "Front",
  31385. image: {
  31386. source: "./media/characters/digi-duncan/front.svg",
  31387. extra: 330 / 326,
  31388. bottom: 16 / 346
  31389. }
  31390. },
  31391. side: {
  31392. height: math.unit(5 + 7.5 / 12, "feet"),
  31393. weight: math.unit(120, "lb"),
  31394. name: "Side",
  31395. image: {
  31396. source: "./media/characters/digi-duncan/side.svg",
  31397. extra: 341 / 337,
  31398. bottom: 1 / 342
  31399. }
  31400. },
  31401. back: {
  31402. height: math.unit(5 + 7.5 / 12, "feet"),
  31403. weight: math.unit(120, "lb"),
  31404. name: "Back",
  31405. image: {
  31406. source: "./media/characters/digi-duncan/back.svg",
  31407. extra: 330 / 326,
  31408. bottom: 12 / 342
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Speck",
  31415. height: math.unit(0.25, "mm")
  31416. },
  31417. {
  31418. name: "Micro",
  31419. height: math.unit(5, "mm")
  31420. },
  31421. {
  31422. name: "Tiny",
  31423. height: math.unit(0.5, "inches"),
  31424. default: true
  31425. },
  31426. {
  31427. name: "Human",
  31428. height: math.unit(5 + 7.5 / 12, "feet")
  31429. },
  31430. {
  31431. name: "Minigiant",
  31432. height: math.unit(8 + 5.25, "feet")
  31433. },
  31434. {
  31435. name: "Giant",
  31436. height: math.unit(2000, "feet")
  31437. },
  31438. {
  31439. name: "Mega",
  31440. height: math.unit(371.1, "miles")
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(2, "meters"),
  31449. weight: math.unit(350, "kg"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31453. extra: 898 / 838,
  31454. bottom: 9 / 907
  31455. }
  31456. },
  31457. },
  31458. [
  31459. {
  31460. name: "Micro",
  31461. height: math.unit(8, "meters")
  31462. },
  31463. {
  31464. name: "Normal",
  31465. height: math.unit(50, "meters"),
  31466. default: true
  31467. },
  31468. {
  31469. name: "Macro",
  31470. height: math.unit(500, "meters")
  31471. },
  31472. ]
  31473. ))
  31474. characterMakers.push(() => makeCharacter(
  31475. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31476. {
  31477. front: {
  31478. height: math.unit(6 + 6 / 12, "feet"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/khardesh/front.svg",
  31482. extra: 1788/1596,
  31483. bottom: 66/1854
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(6 + 6 / 12, "feet"),
  31488. name: "Back",
  31489. image: {
  31490. source: "./media/characters/khardesh/back.svg",
  31491. extra: 1781/1584,
  31492. bottom: 68/1849
  31493. }
  31494. },
  31495. },
  31496. [
  31497. {
  31498. name: "Normal",
  31499. height: math.unit(6 + 6 / 12, "feet"),
  31500. default: true
  31501. },
  31502. {
  31503. name: "Normal+",
  31504. height: math.unit(4, "meters")
  31505. },
  31506. {
  31507. name: "Macro",
  31508. height: math.unit(50, "meters")
  31509. },
  31510. {
  31511. name: "Macro+",
  31512. height: math.unit(100, "meters")
  31513. },
  31514. {
  31515. name: "Megamacro",
  31516. height: math.unit(20, "km")
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31522. {
  31523. front: {
  31524. height: math.unit(6, "feet"),
  31525. weight: math.unit(150, "lb"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/kosho/front.svg",
  31529. extra: 1847 / 1847,
  31530. bottom: 86 / 1933
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Second-stage micro",
  31537. height: math.unit(0.5, "inches")
  31538. },
  31539. {
  31540. name: "First-stage micro",
  31541. height: math.unit(6, "inches")
  31542. },
  31543. {
  31544. name: "Normal",
  31545. height: math.unit(6, "feet"),
  31546. default: true
  31547. },
  31548. {
  31549. name: "First-stage macro",
  31550. height: math.unit(72, "feet")
  31551. },
  31552. {
  31553. name: "Second-stage macro",
  31554. height: math.unit(864, "feet")
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31560. {
  31561. normal: {
  31562. height: math.unit(4 + 6 / 12, "feet"),
  31563. name: "Normal",
  31564. image: {
  31565. source: "./media/characters/hydra/normal.svg",
  31566. extra: 2833 / 2634,
  31567. bottom: 68 / 2901
  31568. }
  31569. },
  31570. smol: {
  31571. height: math.unit(0.705, "inches"),
  31572. name: "Smol",
  31573. image: {
  31574. source: "./media/characters/hydra/smol.svg",
  31575. extra: 2715 / 2540,
  31576. bottom: 0 / 2715
  31577. }
  31578. },
  31579. },
  31580. [
  31581. {
  31582. name: "Normal",
  31583. height: math.unit(4 + 6 / 12, "feet"),
  31584. default: true
  31585. }
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(0.6, "cm"),
  31593. name: "Front",
  31594. image: {
  31595. source: "./media/characters/daz/front.svg",
  31596. extra: 1682 / 1164,
  31597. bottom: 42 / 1724
  31598. }
  31599. },
  31600. },
  31601. [
  31602. {
  31603. name: "Normal",
  31604. height: math.unit(0.6, "cm"),
  31605. default: true
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31611. {
  31612. front: {
  31613. height: math.unit(6, "feet"),
  31614. weight: math.unit(235, "lb"),
  31615. name: "Front",
  31616. image: {
  31617. source: "./media/characters/theo-pangolin/front.svg",
  31618. extra: 1996 / 1969,
  31619. bottom: 115 / 2111
  31620. }
  31621. },
  31622. back: {
  31623. height: math.unit(6, "feet"),
  31624. weight: math.unit(235, "lb"),
  31625. name: "Back",
  31626. image: {
  31627. source: "./media/characters/theo-pangolin/back.svg",
  31628. extra: 1979 / 1979,
  31629. bottom: 40 / 2019
  31630. }
  31631. },
  31632. feral: {
  31633. height: math.unit(2, "feet"),
  31634. weight: math.unit(30, "lb"),
  31635. name: "Feral",
  31636. image: {
  31637. source: "./media/characters/theo-pangolin/feral.svg",
  31638. extra: 803 / 791,
  31639. bottom: 181 / 984
  31640. }
  31641. },
  31642. footFive: {
  31643. height: math.unit(1.43, "feet"),
  31644. name: "Foot (Five Toes)",
  31645. image: {
  31646. source: "./media/characters/theo-pangolin/foot-five.svg"
  31647. }
  31648. },
  31649. footFour: {
  31650. height: math.unit(1.43, "feet"),
  31651. name: "Foot (Four Toes)",
  31652. image: {
  31653. source: "./media/characters/theo-pangolin/foot-four.svg"
  31654. }
  31655. },
  31656. handFour: {
  31657. height: math.unit(0.81, "feet"),
  31658. name: "Hand (Four Fingers)",
  31659. image: {
  31660. source: "./media/characters/theo-pangolin/hand-four.svg"
  31661. }
  31662. },
  31663. handThree: {
  31664. height: math.unit(0.81, "feet"),
  31665. name: "Hand (Three Fingers)",
  31666. image: {
  31667. source: "./media/characters/theo-pangolin/hand-three.svg"
  31668. }
  31669. },
  31670. headFront: {
  31671. height: math.unit(1.37, "feet"),
  31672. name: "Head (Front)",
  31673. image: {
  31674. source: "./media/characters/theo-pangolin/head-front.svg"
  31675. }
  31676. },
  31677. headSide: {
  31678. height: math.unit(1.43, "feet"),
  31679. name: "Head (Side)",
  31680. image: {
  31681. source: "./media/characters/theo-pangolin/head-side.svg"
  31682. }
  31683. },
  31684. tongue: {
  31685. height: math.unit(2.29, "feet"),
  31686. name: "Tongue",
  31687. image: {
  31688. source: "./media/characters/theo-pangolin/tongue.svg"
  31689. }
  31690. },
  31691. },
  31692. [
  31693. {
  31694. name: "Normal",
  31695. height: math.unit(6, "feet")
  31696. },
  31697. {
  31698. name: "Macro",
  31699. height: math.unit(400, "feet"),
  31700. default: true
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(6, "inches"),
  31709. weight: math.unit(0.036, "kg"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/renée/front.svg",
  31713. extra: 900 / 886,
  31714. bottom: 8 / 908
  31715. }
  31716. },
  31717. },
  31718. [
  31719. {
  31720. name: "Nano",
  31721. height: math.unit(1, "nm")
  31722. },
  31723. {
  31724. name: "Micro",
  31725. height: math.unit(1, "mm")
  31726. },
  31727. {
  31728. name: "Normal",
  31729. height: math.unit(6, "inches")
  31730. },
  31731. {
  31732. name: "Macro",
  31733. height: math.unit(2000, "feet"),
  31734. default: true
  31735. },
  31736. {
  31737. name: "Megamacro",
  31738. height: math.unit(2, "km")
  31739. },
  31740. {
  31741. name: "Gigamacro",
  31742. height: math.unit(2000, "km")
  31743. },
  31744. {
  31745. name: "Teramacro",
  31746. height: math.unit(250000, "km")
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(4, "meters"),
  31755. weight: math.unit(150, "kg"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/caledvwlch/front.svg",
  31759. extra: 1760 / 1551,
  31760. bottom: 28 / 1788
  31761. }
  31762. },
  31763. side: {
  31764. height: math.unit(4, "meters"),
  31765. weight: math.unit(150, "kg"),
  31766. name: "Side",
  31767. image: {
  31768. source: "./media/characters/caledvwlch/side.svg",
  31769. extra: 1605 / 1536,
  31770. bottom: 31 / 1636
  31771. }
  31772. },
  31773. back: {
  31774. height: math.unit(4, "meters"),
  31775. weight: math.unit(150, "kg"),
  31776. name: "Back",
  31777. image: {
  31778. source: "./media/characters/caledvwlch/back.svg",
  31779. extra: 1635 / 1565,
  31780. bottom: 27 / 1662
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "\"Incognito\"",
  31787. height: math.unit(4, "meters")
  31788. },
  31789. {
  31790. name: "Small rampage",
  31791. height: math.unit(600, "meters")
  31792. },
  31793. {
  31794. name: "Mega",
  31795. height: math.unit(30, "km")
  31796. },
  31797. {
  31798. name: "Home-size",
  31799. height: math.unit(50, "km"),
  31800. default: true
  31801. },
  31802. {
  31803. name: "Giga",
  31804. height: math.unit(300, "km")
  31805. },
  31806. {
  31807. name: "Lounging",
  31808. height: math.unit(11000, "km")
  31809. },
  31810. {
  31811. name: "Planet snacking",
  31812. height: math.unit(2000000, "km")
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(215, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/sapphire-svell/front.svg",
  31825. extra: 495 / 455,
  31826. bottom: 20 / 515
  31827. }
  31828. },
  31829. back: {
  31830. height: math.unit(6, "feet"),
  31831. weight: math.unit(216, "lb"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/sapphire-svell/back.svg",
  31835. extra: 497 / 477,
  31836. bottom: 7 / 504
  31837. }
  31838. },
  31839. maw: {
  31840. height: math.unit(1.57, "feet"),
  31841. name: "Maw",
  31842. image: {
  31843. source: "./media/characters/sapphire-svell/maw.svg"
  31844. }
  31845. },
  31846. foot: {
  31847. height: math.unit(1.07, "feet"),
  31848. name: "Foot",
  31849. image: {
  31850. source: "./media/characters/sapphire-svell/foot.svg"
  31851. }
  31852. },
  31853. toering: {
  31854. height: math.unit(1.7, "inch"),
  31855. name: "Toering",
  31856. image: {
  31857. source: "./media/characters/sapphire-svell/toering.svg"
  31858. }
  31859. },
  31860. },
  31861. [
  31862. {
  31863. name: "Normal",
  31864. height: math.unit(300, "feet"),
  31865. default: true
  31866. },
  31867. {
  31868. name: "Augmented",
  31869. height: math.unit(1250, "feet")
  31870. },
  31871. {
  31872. name: "Unleashed",
  31873. height: math.unit(3000, "feet")
  31874. },
  31875. ]
  31876. ))
  31877. characterMakers.push(() => makeCharacter(
  31878. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31879. {
  31880. side: {
  31881. height: math.unit(2 + 3 / 12, "feet"),
  31882. weight: math.unit(110, "lb"),
  31883. name: "Side",
  31884. image: {
  31885. source: "./media/characters/glitch-flux/side.svg",
  31886. extra: 997 / 805,
  31887. bottom: 20 / 1017
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(2 + 3 / 12, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(4, "meters"),
  31904. name: "Front",
  31905. image: {
  31906. source: "./media/characters/mid/front.svg",
  31907. extra: 507 / 476,
  31908. bottom: 17 / 524
  31909. }
  31910. },
  31911. back: {
  31912. height: math.unit(4, "meters"),
  31913. name: "Back",
  31914. image: {
  31915. source: "./media/characters/mid/back.svg",
  31916. extra: 519 / 487,
  31917. bottom: 7 / 526
  31918. }
  31919. },
  31920. stuck: {
  31921. height: math.unit(2.2, "meters"),
  31922. name: "Stuck",
  31923. image: {
  31924. source: "./media/characters/mid/stuck.svg",
  31925. extra: 1951 / 1869,
  31926. bottom: 88 / 2039
  31927. }
  31928. }
  31929. },
  31930. [
  31931. {
  31932. name: "Normal",
  31933. height: math.unit(4, "meters"),
  31934. default: true
  31935. },
  31936. {
  31937. name: "Big",
  31938. height: math.unit(10, "meters")
  31939. },
  31940. {
  31941. name: "Macro",
  31942. height: math.unit(800, "meters")
  31943. },
  31944. {
  31945. name: "Megamacro",
  31946. height: math.unit(100, "km")
  31947. },
  31948. {
  31949. name: "Overgrown",
  31950. height: math.unit(1, "parsec")
  31951. },
  31952. ]
  31953. ))
  31954. characterMakers.push(() => makeCharacter(
  31955. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31956. {
  31957. front: {
  31958. height: math.unit(2.5, "meters"),
  31959. weight: math.unit(225, "kg"),
  31960. name: "Front",
  31961. image: {
  31962. source: "./media/characters/iris/front.svg",
  31963. extra: 3348 / 3251,
  31964. bottom: 205 / 3553
  31965. }
  31966. },
  31967. maw: {
  31968. height: math.unit(0.56, "meter"),
  31969. name: "Maw",
  31970. image: {
  31971. source: "./media/characters/iris/maw.svg"
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Mewter cat",
  31978. height: math.unit(1.2, "meters")
  31979. },
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(2.5, "meters"),
  31983. default: true
  31984. },
  31985. {
  31986. name: "Minimacro",
  31987. height: math.unit(18, "feet")
  31988. },
  31989. {
  31990. name: "Macro",
  31991. height: math.unit(140, "feet")
  31992. },
  31993. {
  31994. name: "Macro+",
  31995. height: math.unit(180, "meters")
  31996. },
  31997. {
  31998. name: "Megamacro",
  31999. height: math.unit(2746, "meters")
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32005. {
  32006. front: {
  32007. height: math.unit(6, "feet"),
  32008. weight: math.unit(135, "lb"),
  32009. name: "Front",
  32010. image: {
  32011. source: "./media/characters/axel/front.svg",
  32012. extra: 908 / 908,
  32013. bottom: 58 / 966
  32014. }
  32015. },
  32016. side: {
  32017. height: math.unit(6, "feet"),
  32018. weight: math.unit(135, "lb"),
  32019. name: "Side",
  32020. image: {
  32021. source: "./media/characters/axel/side.svg",
  32022. extra: 958 / 958,
  32023. bottom: 11 / 969
  32024. }
  32025. },
  32026. back: {
  32027. height: math.unit(6, "feet"),
  32028. weight: math.unit(135, "lb"),
  32029. name: "Back",
  32030. image: {
  32031. source: "./media/characters/axel/back.svg",
  32032. extra: 887 / 887,
  32033. bottom: 34 / 921
  32034. }
  32035. },
  32036. head: {
  32037. height: math.unit(1.07, "feet"),
  32038. name: "Head",
  32039. image: {
  32040. source: "./media/characters/axel/head.svg"
  32041. }
  32042. },
  32043. beak: {
  32044. height: math.unit(1.4, "feet"),
  32045. name: "Beak",
  32046. image: {
  32047. source: "./media/characters/axel/beak.svg"
  32048. }
  32049. },
  32050. beakSide: {
  32051. height: math.unit(1.4, "feet"),
  32052. name: "Beak Side",
  32053. image: {
  32054. source: "./media/characters/axel/beak-side.svg"
  32055. }
  32056. },
  32057. sheath: {
  32058. height: math.unit(0.5, "feet"),
  32059. name: "Sheath",
  32060. image: {
  32061. source: "./media/characters/axel/sheath.svg"
  32062. }
  32063. },
  32064. dick: {
  32065. height: math.unit(0.98, "feet"),
  32066. name: "Dick",
  32067. image: {
  32068. source: "./media/characters/axel/dick.svg"
  32069. }
  32070. },
  32071. },
  32072. [
  32073. {
  32074. name: "Macro",
  32075. height: math.unit(68, "meters"),
  32076. default: true
  32077. },
  32078. ]
  32079. ))
  32080. characterMakers.push(() => makeCharacter(
  32081. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32082. {
  32083. front: {
  32084. height: math.unit(3.5, "meters"),
  32085. weight: math.unit(1200, "kg"),
  32086. name: "Front",
  32087. image: {
  32088. source: "./media/characters/joanna/front.svg",
  32089. extra: 1596 / 1488,
  32090. bottom: 29 / 1625
  32091. }
  32092. },
  32093. back: {
  32094. height: math.unit(3.5, "meters"),
  32095. weight: math.unit(1200, "kg"),
  32096. name: "Back",
  32097. image: {
  32098. source: "./media/characters/joanna/back.svg",
  32099. extra: 1594 / 1495,
  32100. bottom: 26 / 1620
  32101. }
  32102. },
  32103. frontShorts: {
  32104. height: math.unit(3.5, "meters"),
  32105. weight: math.unit(1200, "kg"),
  32106. name: "Front (Shorts)",
  32107. image: {
  32108. source: "./media/characters/joanna/front-shorts.svg",
  32109. extra: 1596 / 1488,
  32110. bottom: 29 / 1625
  32111. }
  32112. },
  32113. frontBiker: {
  32114. height: math.unit(3.5, "meters"),
  32115. weight: math.unit(1200, "kg"),
  32116. name: "Front (Biker)",
  32117. image: {
  32118. source: "./media/characters/joanna/front-biker.svg",
  32119. extra: 1596 / 1488,
  32120. bottom: 29 / 1625
  32121. }
  32122. },
  32123. backBiker: {
  32124. height: math.unit(3.5, "meters"),
  32125. weight: math.unit(1200, "kg"),
  32126. name: "Back (Biker)",
  32127. image: {
  32128. source: "./media/characters/joanna/back-biker.svg",
  32129. extra: 1594 / 1495,
  32130. bottom: 88 / 1682
  32131. }
  32132. },
  32133. bikeLeft: {
  32134. height: math.unit(2.4, "meters"),
  32135. weight: math.unit(1600, "kg"),
  32136. name: "Bike (Left)",
  32137. image: {
  32138. source: "./media/characters/joanna/bike-left.svg",
  32139. extra: 720 / 720,
  32140. bottom: 8 / 728
  32141. }
  32142. },
  32143. bikeRight: {
  32144. height: math.unit(2.4, "meters"),
  32145. weight: math.unit(1600, "kg"),
  32146. name: "Bike (Right)",
  32147. image: {
  32148. source: "./media/characters/joanna/bike-right.svg",
  32149. extra: 720 / 720,
  32150. bottom: 8 / 728
  32151. }
  32152. },
  32153. },
  32154. [
  32155. {
  32156. name: "Incognito",
  32157. height: math.unit(3.5, "meters")
  32158. },
  32159. {
  32160. name: "Casual Big",
  32161. height: math.unit(200, "meters")
  32162. },
  32163. {
  32164. name: "Macro",
  32165. height: math.unit(600, "meters")
  32166. },
  32167. {
  32168. name: "Original",
  32169. height: math.unit(20, "km"),
  32170. default: true
  32171. },
  32172. {
  32173. name: "Giga",
  32174. height: math.unit(400, "km")
  32175. },
  32176. {
  32177. name: "Lounging",
  32178. height: math.unit(1500, "km")
  32179. },
  32180. {
  32181. name: "Planetary",
  32182. height: math.unit(200000, "km")
  32183. },
  32184. ]
  32185. ))
  32186. characterMakers.push(() => makeCharacter(
  32187. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32188. {
  32189. front: {
  32190. height: math.unit(6, "feet"),
  32191. weight: math.unit(150, "lb"),
  32192. name: "Front",
  32193. image: {
  32194. source: "./media/characters/hugo-sigil/front.svg",
  32195. extra: 522 / 500,
  32196. bottom: 2 / 524
  32197. }
  32198. },
  32199. back: {
  32200. height: math.unit(6, "feet"),
  32201. weight: math.unit(150, "lb"),
  32202. name: "Back",
  32203. image: {
  32204. source: "./media/characters/hugo-sigil/back.svg",
  32205. extra: 519 / 495,
  32206. bottom: 5 / 524
  32207. }
  32208. },
  32209. maw: {
  32210. height: math.unit(1.4, "feet"),
  32211. weight: math.unit(150, "lb"),
  32212. name: "Maw",
  32213. image: {
  32214. source: "./media/characters/hugo-sigil/maw.svg"
  32215. }
  32216. },
  32217. feet: {
  32218. height: math.unit(1.56, "feet"),
  32219. weight: math.unit(150, "lb"),
  32220. name: "Feet",
  32221. image: {
  32222. source: "./media/characters/hugo-sigil/feet.svg",
  32223. extra: 177 / 177,
  32224. bottom: 12 / 189
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(6, "feet")
  32232. },
  32233. {
  32234. name: "Macro",
  32235. height: math.unit(200, "feet"),
  32236. default: true
  32237. },
  32238. ]
  32239. ))
  32240. characterMakers.push(() => makeCharacter(
  32241. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32242. {
  32243. front: {
  32244. height: math.unit(6, "feet"),
  32245. weight: math.unit(150, "lb"),
  32246. name: "Front",
  32247. image: {
  32248. source: "./media/characters/peri/front.svg",
  32249. extra: 2354 / 2233,
  32250. bottom: 49 / 2403
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Really Small",
  32257. height: math.unit(1, "nm")
  32258. },
  32259. {
  32260. name: "Micro",
  32261. height: math.unit(4, "inches")
  32262. },
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(7, "inches"),
  32266. default: true
  32267. },
  32268. {
  32269. name: "Macro",
  32270. height: math.unit(400, "feet")
  32271. },
  32272. {
  32273. name: "Megamacro",
  32274. height: math.unit(100, "miles")
  32275. },
  32276. ]
  32277. ))
  32278. characterMakers.push(() => makeCharacter(
  32279. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32280. {
  32281. frontSlim: {
  32282. height: math.unit(7, "feet"),
  32283. name: "Front (Slim)",
  32284. image: {
  32285. source: "./media/characters/issilora/front-slim.svg",
  32286. extra: 529 / 449,
  32287. bottom: 53 / 582
  32288. }
  32289. },
  32290. sideSlim: {
  32291. height: math.unit(7, "feet"),
  32292. name: "Side (Slim)",
  32293. image: {
  32294. source: "./media/characters/issilora/side-slim.svg",
  32295. extra: 570 / 480,
  32296. bottom: 30 / 600
  32297. }
  32298. },
  32299. backSlim: {
  32300. height: math.unit(7, "feet"),
  32301. name: "Back (Slim)",
  32302. image: {
  32303. source: "./media/characters/issilora/back-slim.svg",
  32304. extra: 537 / 455,
  32305. bottom: 46 / 583
  32306. }
  32307. },
  32308. frontBuff: {
  32309. height: math.unit(7, "feet"),
  32310. name: "Front (Buff)",
  32311. image: {
  32312. source: "./media/characters/issilora/front-buff.svg",
  32313. extra: 2310 / 2035,
  32314. bottom: 335 / 2645
  32315. }
  32316. },
  32317. head: {
  32318. height: math.unit(1.94, "feet"),
  32319. name: "Head",
  32320. image: {
  32321. source: "./media/characters/issilora/head.svg"
  32322. }
  32323. },
  32324. },
  32325. [
  32326. {
  32327. name: "Minimum",
  32328. height: math.unit(7, "feet")
  32329. },
  32330. {
  32331. name: "Comfortable",
  32332. height: math.unit(17, "feet")
  32333. },
  32334. {
  32335. name: "Fun Size",
  32336. height: math.unit(47, "feet")
  32337. },
  32338. {
  32339. name: "Natural Macro",
  32340. height: math.unit(137, "feet"),
  32341. default: true
  32342. },
  32343. {
  32344. name: "Maximum Kaiju",
  32345. height: math.unit(397, "feet")
  32346. },
  32347. ]
  32348. ))
  32349. characterMakers.push(() => makeCharacter(
  32350. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32351. {
  32352. front: {
  32353. height: math.unit(50 + 9/12, "feet"),
  32354. weight: math.unit(32.8, "tons"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/irb'iiritaahn/front.svg",
  32358. extra: 1878/1826,
  32359. bottom: 326/2204
  32360. }
  32361. },
  32362. back: {
  32363. height: math.unit(50 + 9/12, "feet"),
  32364. weight: math.unit(32.8, "tons"),
  32365. name: "Back",
  32366. image: {
  32367. source: "./media/characters/irb'iiritaahn/back.svg",
  32368. extra: 2052/2018,
  32369. bottom: 152/2204
  32370. }
  32371. },
  32372. head: {
  32373. height: math.unit(12.86, "feet"),
  32374. name: "Head",
  32375. image: {
  32376. source: "./media/characters/irb'iiritaahn/head.svg"
  32377. }
  32378. },
  32379. maw: {
  32380. height: math.unit(9.66, "feet"),
  32381. name: "Maw",
  32382. image: {
  32383. source: "./media/characters/irb'iiritaahn/maw.svg"
  32384. }
  32385. },
  32386. frontDick: {
  32387. height: math.unit(8.78461, "feet"),
  32388. name: "Front Dick",
  32389. image: {
  32390. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32391. }
  32392. },
  32393. rearDick: {
  32394. height: math.unit(8.78461, "feet"),
  32395. name: "Rear Dick",
  32396. image: {
  32397. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32398. }
  32399. },
  32400. rearDickUnfolded: {
  32401. height: math.unit(8.78, "feet"),
  32402. name: "Rear Dick (Unfolded)",
  32403. image: {
  32404. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32405. }
  32406. },
  32407. wings: {
  32408. height: math.unit(43, "feet"),
  32409. name: "Wings",
  32410. image: {
  32411. source: "./media/characters/irb'iiritaahn/wings.svg"
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Macro",
  32418. height: math.unit(50 + 9/12, "feet"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32425. {
  32426. front: {
  32427. height: math.unit(205, "cm"),
  32428. weight: math.unit(102, "kg"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/irbisgreif/front.svg",
  32432. extra: 785/706,
  32433. bottom: 13/798
  32434. }
  32435. },
  32436. back: {
  32437. height: math.unit(205, "cm"),
  32438. weight: math.unit(102, "kg"),
  32439. name: "Back",
  32440. image: {
  32441. source: "./media/characters/irbisgreif/back.svg",
  32442. extra: 713/701,
  32443. bottom: 26/739
  32444. }
  32445. },
  32446. frontDressed: {
  32447. height: math.unit(216, "cm"),
  32448. weight: math.unit(102, "kg"),
  32449. name: "Front-dressed",
  32450. image: {
  32451. source: "./media/characters/irbisgreif/front-dressed.svg",
  32452. extra: 902/776,
  32453. bottom: 14/916
  32454. }
  32455. },
  32456. sideDressed: {
  32457. height: math.unit(195, "cm"),
  32458. weight: math.unit(102, "kg"),
  32459. name: "Side-dressed",
  32460. image: {
  32461. source: "./media/characters/irbisgreif/side-dressed.svg",
  32462. extra: 788/688,
  32463. bottom: 21/809
  32464. }
  32465. },
  32466. backDressed: {
  32467. height: math.unit(216, "cm"),
  32468. weight: math.unit(102, "kg"),
  32469. name: "Back-dressed",
  32470. image: {
  32471. source: "./media/characters/irbisgreif/back-dressed.svg",
  32472. extra: 901/783,
  32473. bottom: 10/911
  32474. }
  32475. },
  32476. dick: {
  32477. height: math.unit(0.49, "feet"),
  32478. name: "Dick",
  32479. image: {
  32480. source: "./media/characters/irbisgreif/dick.svg"
  32481. }
  32482. },
  32483. wingTop: {
  32484. height: math.unit(1.93 , "feet"),
  32485. name: "Wing-top",
  32486. image: {
  32487. source: "./media/characters/irbisgreif/wing-top.svg"
  32488. }
  32489. },
  32490. wingBottom: {
  32491. height: math.unit(1.93 , "feet"),
  32492. name: "Wing-bottom",
  32493. image: {
  32494. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32495. }
  32496. },
  32497. },
  32498. [
  32499. {
  32500. name: "Normal",
  32501. height: math.unit(216, "cm"),
  32502. default: true
  32503. },
  32504. ]
  32505. ))
  32506. characterMakers.push(() => makeCharacter(
  32507. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32508. {
  32509. front: {
  32510. height: math.unit(6, "feet"),
  32511. weight: math.unit(150, "lb"),
  32512. name: "Front",
  32513. image: {
  32514. source: "./media/characters/pride/front.svg",
  32515. extra: 1299/1230,
  32516. bottom: 18/1317
  32517. }
  32518. },
  32519. },
  32520. [
  32521. {
  32522. name: "Normal",
  32523. height: math.unit(7, "feet")
  32524. },
  32525. {
  32526. name: "Mini-macro",
  32527. height: math.unit(11, "feet")
  32528. },
  32529. {
  32530. name: "Macro",
  32531. height: math.unit(15, "meters"),
  32532. default: true
  32533. },
  32534. {
  32535. name: "Macro+",
  32536. height: math.unit(40, "meters")
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32542. {
  32543. front: {
  32544. height: math.unit(4 + 2 / 12, "feet"),
  32545. weight: math.unit(95, "lb"),
  32546. name: "Front",
  32547. image: {
  32548. source: "./media/characters/vaelophis-nyx/front.svg",
  32549. extra: 2532/2330,
  32550. bottom: 0/2532
  32551. }
  32552. },
  32553. back: {
  32554. height: math.unit(4 + 2 / 12, "feet"),
  32555. weight: math.unit(95, "lb"),
  32556. name: "Back",
  32557. image: {
  32558. source: "./media/characters/vaelophis-nyx/back.svg",
  32559. extra: 2484/2361,
  32560. bottom: 0/2484
  32561. }
  32562. },
  32563. feralSide: {
  32564. height: math.unit(2 + 1/12, "feet"),
  32565. weight: math.unit(20, "lb"),
  32566. name: "Feral (Side)",
  32567. image: {
  32568. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32569. extra: 1721/1581,
  32570. bottom: 70/1791
  32571. }
  32572. },
  32573. feralLazing: {
  32574. height: math.unit(1.08, "feet"),
  32575. weight: math.unit(20, "lb"),
  32576. name: "Feral (Lazing)",
  32577. image: {
  32578. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32579. extra: 822/822,
  32580. bottom: 248/1070
  32581. }
  32582. },
  32583. ear: {
  32584. height: math.unit(0.416, "feet"),
  32585. name: "Ear",
  32586. image: {
  32587. source: "./media/characters/vaelophis-nyx/ear.svg"
  32588. }
  32589. },
  32590. eye: {
  32591. height: math.unit(0.0748, "feet"),
  32592. name: "Eye",
  32593. image: {
  32594. source: "./media/characters/vaelophis-nyx/eye.svg"
  32595. }
  32596. },
  32597. mouth: {
  32598. height: math.unit(0.378, "feet"),
  32599. name: "Mouth",
  32600. image: {
  32601. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32602. }
  32603. },
  32604. spade: {
  32605. height: math.unit(0.55, "feet"),
  32606. name: "Spade",
  32607. image: {
  32608. source: "./media/characters/vaelophis-nyx/spade.svg"
  32609. }
  32610. },
  32611. },
  32612. [
  32613. {
  32614. name: "Normal",
  32615. height: math.unit(4 + 2/12, "feet"),
  32616. default: true
  32617. },
  32618. ]
  32619. ))
  32620. characterMakers.push(() => makeCharacter(
  32621. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32622. {
  32623. front: {
  32624. height: math.unit(7, "feet"),
  32625. weight: math.unit(231, "lb"),
  32626. name: "Front",
  32627. image: {
  32628. source: "./media/characters/flux/front.svg",
  32629. extra: 919/871,
  32630. bottom: 0/919
  32631. }
  32632. },
  32633. back: {
  32634. height: math.unit(7, "feet"),
  32635. weight: math.unit(231, "lb"),
  32636. name: "Back",
  32637. image: {
  32638. source: "./media/characters/flux/back.svg",
  32639. extra: 1040/992,
  32640. bottom: 0/1040
  32641. }
  32642. },
  32643. frontDressed: {
  32644. height: math.unit(7, "feet"),
  32645. weight: math.unit(231, "lb"),
  32646. name: "Front (Dressed)",
  32647. image: {
  32648. source: "./media/characters/flux/front-dressed.svg",
  32649. extra: 919/871,
  32650. bottom: 0/919
  32651. }
  32652. },
  32653. feralSide: {
  32654. height: math.unit(5, "feet"),
  32655. weight: math.unit(150, "lb"),
  32656. name: "Feral (Side)",
  32657. image: {
  32658. source: "./media/characters/flux/feral-side.svg",
  32659. extra: 598/528,
  32660. bottom: 28/626
  32661. }
  32662. },
  32663. head: {
  32664. height: math.unit(1.585, "feet"),
  32665. name: "Head",
  32666. image: {
  32667. source: "./media/characters/flux/head.svg"
  32668. }
  32669. },
  32670. headSide: {
  32671. height: math.unit(1.74, "feet"),
  32672. name: "Head (Side)",
  32673. image: {
  32674. source: "./media/characters/flux/head-side.svg"
  32675. }
  32676. },
  32677. headSideFire: {
  32678. height: math.unit(1.76, "feet"),
  32679. name: "Head (Side, Fire)",
  32680. image: {
  32681. source: "./media/characters/flux/head-side-fire.svg"
  32682. }
  32683. },
  32684. },
  32685. [
  32686. {
  32687. name: "Normal",
  32688. height: math.unit(7, "feet"),
  32689. default: true
  32690. },
  32691. ]
  32692. ))
  32693. characterMakers.push(() => makeCharacter(
  32694. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32695. {
  32696. front: {
  32697. height: math.unit(9, "feet"),
  32698. weight: math.unit(1012, "lb"),
  32699. name: "Front",
  32700. image: {
  32701. source: "./media/characters/ulfra-lupae/front.svg",
  32702. extra: 1083/1011,
  32703. bottom: 67/1150
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Micro",
  32710. height: math.unit(6, "inches")
  32711. },
  32712. {
  32713. name: "Socializing",
  32714. height: math.unit(6 + 5/12, "feet")
  32715. },
  32716. {
  32717. name: "Normal",
  32718. height: math.unit(9, "feet"),
  32719. default: true
  32720. },
  32721. {
  32722. name: "Macro",
  32723. height: math.unit(150, "feet")
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(5 + 2/12, "feet"),
  32732. weight: math.unit(120, "lb"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/timber/front.svg",
  32736. extra: 2814/2705,
  32737. bottom: 181/2995
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Normal",
  32744. height: math.unit(5 + 2/12, "feet"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(9, "feet"),
  32754. name: "Front",
  32755. image: {
  32756. source: "./media/characters/nicki/front.svg",
  32757. extra: 1240/990,
  32758. bottom: 45/1285
  32759. },
  32760. form: "anthro",
  32761. default: true
  32762. },
  32763. side: {
  32764. height: math.unit(9, "feet"),
  32765. name: "Side",
  32766. image: {
  32767. source: "./media/characters/nicki/side.svg",
  32768. extra: 1047/973,
  32769. bottom: 61/1108
  32770. },
  32771. form: "anthro"
  32772. },
  32773. back: {
  32774. height: math.unit(9, "feet"),
  32775. name: "Back",
  32776. image: {
  32777. source: "./media/characters/nicki/back.svg",
  32778. extra: 1006/965,
  32779. bottom: 39/1045
  32780. },
  32781. form: "anthro"
  32782. },
  32783. taur: {
  32784. height: math.unit(15, "feet"),
  32785. name: "Taur",
  32786. image: {
  32787. source: "./media/characters/nicki/taur.svg",
  32788. extra: 1592/1347,
  32789. bottom: 0/1592
  32790. },
  32791. form: "taur",
  32792. default: true
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(9, "feet"),
  32799. form: "anthro",
  32800. default: true
  32801. },
  32802. {
  32803. name: "Normal",
  32804. height: math.unit(15, "feet"),
  32805. form: "taur",
  32806. default: true
  32807. }
  32808. ],
  32809. {
  32810. "anthro": {
  32811. name: "Anthro",
  32812. default: true
  32813. },
  32814. "taur": {
  32815. name: "Taur"
  32816. }
  32817. }
  32818. ))
  32819. characterMakers.push(() => makeCharacter(
  32820. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32821. {
  32822. front: {
  32823. height: math.unit(7 + 10/12, "feet"),
  32824. weight: math.unit(3.5, "tons"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/lee/front.svg",
  32828. extra: 1773/1615,
  32829. bottom: 86/1859
  32830. }
  32831. },
  32832. hand: {
  32833. height: math.unit(1.78, "feet"),
  32834. name: "Hand",
  32835. image: {
  32836. source: "./media/characters/lee/hand.svg"
  32837. }
  32838. },
  32839. maw: {
  32840. height: math.unit(1.18, "feet"),
  32841. name: "Maw",
  32842. image: {
  32843. source: "./media/characters/lee/maw.svg"
  32844. }
  32845. },
  32846. },
  32847. [
  32848. {
  32849. name: "Normal",
  32850. height: math.unit(7 + 10/12, "feet"),
  32851. default: true
  32852. },
  32853. ]
  32854. ))
  32855. characterMakers.push(() => makeCharacter(
  32856. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32857. {
  32858. front: {
  32859. height: math.unit(9, "feet"),
  32860. name: "Front",
  32861. image: {
  32862. source: "./media/characters/guti/front.svg",
  32863. extra: 4551/4355,
  32864. bottom: 123/4674
  32865. }
  32866. },
  32867. tongue: {
  32868. height: math.unit(1, "feet"),
  32869. name: "Tongue",
  32870. image: {
  32871. source: "./media/characters/guti/tongue.svg"
  32872. }
  32873. },
  32874. paw: {
  32875. height: math.unit(1.18, "feet"),
  32876. name: "Paw",
  32877. image: {
  32878. source: "./media/characters/guti/paw.svg"
  32879. }
  32880. },
  32881. },
  32882. [
  32883. {
  32884. name: "Normal",
  32885. height: math.unit(9, "feet"),
  32886. default: true
  32887. },
  32888. ]
  32889. ))
  32890. characterMakers.push(() => makeCharacter(
  32891. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32892. {
  32893. side: {
  32894. height: math.unit(5, "meters"),
  32895. name: "Side",
  32896. image: {
  32897. source: "./media/characters/vesper/side.svg",
  32898. extra: 1605/1518,
  32899. bottom: 0/1605
  32900. }
  32901. },
  32902. },
  32903. [
  32904. {
  32905. name: "Small",
  32906. height: math.unit(5, "meters")
  32907. },
  32908. {
  32909. name: "Sage",
  32910. height: math.unit(100, "meters"),
  32911. default: true
  32912. },
  32913. {
  32914. name: "Fun Size",
  32915. height: math.unit(600, "meters")
  32916. },
  32917. {
  32918. name: "Goddess",
  32919. height: math.unit(20000, "km")
  32920. },
  32921. {
  32922. name: "Maximum",
  32923. height: math.unit(5, "galaxies")
  32924. },
  32925. ]
  32926. ))
  32927. characterMakers.push(() => makeCharacter(
  32928. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32929. {
  32930. front: {
  32931. height: math.unit(6 + 3/12, "feet"),
  32932. weight: math.unit(190, "lb"),
  32933. name: "Front",
  32934. image: {
  32935. source: "./media/characters/gawain/front.svg",
  32936. extra: 2222/2139,
  32937. bottom: 90/2312
  32938. }
  32939. },
  32940. back: {
  32941. height: math.unit(6 + 3/12, "feet"),
  32942. weight: math.unit(190, "lb"),
  32943. name: "Back",
  32944. image: {
  32945. source: "./media/characters/gawain/back.svg",
  32946. extra: 2199/2111,
  32947. bottom: 73/2272
  32948. }
  32949. },
  32950. },
  32951. [
  32952. {
  32953. name: "Normal",
  32954. height: math.unit(6 + 3/12, "feet"),
  32955. default: true
  32956. },
  32957. ]
  32958. ))
  32959. characterMakers.push(() => makeCharacter(
  32960. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32961. {
  32962. side: {
  32963. height: math.unit(3.5, "meters"),
  32964. weight: math.unit(16000, "lb"),
  32965. name: "Side",
  32966. image: {
  32967. source: "./media/characters/dascalti/side.svg",
  32968. extra: 392/273,
  32969. bottom: 47/439
  32970. }
  32971. },
  32972. breath: {
  32973. height: math.unit(7.4, "feet"),
  32974. name: "Breath",
  32975. image: {
  32976. source: "./media/characters/dascalti/breath.svg"
  32977. }
  32978. },
  32979. fed: {
  32980. height: math.unit(3.6, "meters"),
  32981. weight: math.unit(16000, "lb"),
  32982. name: "Fed",
  32983. image: {
  32984. source: "./media/characters/dascalti/fed.svg",
  32985. extra: 1419/820,
  32986. bottom: 95/1514
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(3.5, "meters"),
  32994. default: true
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(3 + 5/12, "feet"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/mauve/front.svg",
  33006. extra: 1126/1033,
  33007. bottom: 65/1191
  33008. }
  33009. },
  33010. side: {
  33011. height: math.unit(3 + 5/12, "feet"),
  33012. name: "Side",
  33013. image: {
  33014. source: "./media/characters/mauve/side.svg",
  33015. extra: 1089/1001,
  33016. bottom: 29/1118
  33017. }
  33018. },
  33019. back: {
  33020. height: math.unit(3 + 5/12, "feet"),
  33021. name: "Back",
  33022. image: {
  33023. source: "./media/characters/mauve/back.svg",
  33024. extra: 1173/1053,
  33025. bottom: 109/1282
  33026. }
  33027. },
  33028. },
  33029. [
  33030. {
  33031. name: "Normal",
  33032. height: math.unit(3 + 5/12, "feet"),
  33033. default: true
  33034. },
  33035. ]
  33036. ))
  33037. characterMakers.push(() => makeCharacter(
  33038. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33039. {
  33040. front: {
  33041. height: math.unit(6 + 3/12, "feet"),
  33042. weight: math.unit(430, "lb"),
  33043. name: "Front",
  33044. image: {
  33045. source: "./media/characters/carlos/front.svg",
  33046. extra: 1964/1913,
  33047. bottom: 70/2034
  33048. }
  33049. },
  33050. },
  33051. [
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(6 + 3/12, "feet"),
  33055. default: true
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33061. {
  33062. back: {
  33063. height: math.unit(5 + 10/12, "feet"),
  33064. weight: math.unit(200, "lb"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/jax/back.svg",
  33068. extra: 764/739,
  33069. bottom: 25/789
  33070. }
  33071. },
  33072. },
  33073. [
  33074. {
  33075. name: "Normal",
  33076. height: math.unit(5 + 10/12, "feet"),
  33077. default: true
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33083. {
  33084. front: {
  33085. height: math.unit(8, "feet"),
  33086. weight: math.unit(250, "lb"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/eikthynir/front.svg",
  33090. extra: 1332/1166,
  33091. bottom: 82/1414
  33092. }
  33093. },
  33094. back: {
  33095. height: math.unit(8, "feet"),
  33096. weight: math.unit(250, "lb"),
  33097. name: "Back",
  33098. image: {
  33099. source: "./media/characters/eikthynir/back.svg",
  33100. extra: 1342/1190,
  33101. bottom: 19/1361
  33102. }
  33103. },
  33104. dick: {
  33105. height: math.unit(2.35, "feet"),
  33106. name: "Dick",
  33107. image: {
  33108. source: "./media/characters/eikthynir/dick.svg"
  33109. }
  33110. },
  33111. },
  33112. [
  33113. {
  33114. name: "Normal",
  33115. height: math.unit(8, "feet"),
  33116. default: true
  33117. },
  33118. ]
  33119. ))
  33120. characterMakers.push(() => makeCharacter(
  33121. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33122. {
  33123. front: {
  33124. height: math.unit(99, "meters"),
  33125. weight: math.unit(13000, "tons"),
  33126. name: "Front",
  33127. image: {
  33128. source: "./media/characters/zlmos/front.svg",
  33129. extra: 2202/1992,
  33130. bottom: 315/2517
  33131. }
  33132. },
  33133. },
  33134. [
  33135. {
  33136. name: "Macro",
  33137. height: math.unit(99, "meters"),
  33138. default: true
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33144. {
  33145. front: {
  33146. height: math.unit(6 + 5/12, "feet"),
  33147. name: "Front",
  33148. image: {
  33149. source: "./media/characters/purri/front.svg",
  33150. extra: 1698/1610,
  33151. bottom: 32/1730
  33152. }
  33153. },
  33154. frontAlt: {
  33155. height: math.unit(6 + 5/12, "feet"),
  33156. name: "Front (Alt)",
  33157. image: {
  33158. source: "./media/characters/purri/front-alt.svg",
  33159. extra: 450/420,
  33160. bottom: 26/476
  33161. }
  33162. },
  33163. boots: {
  33164. height: math.unit(5.5, "feet"),
  33165. name: "Boots",
  33166. image: {
  33167. source: "./media/characters/purri/boots.svg",
  33168. extra: 905/853,
  33169. bottom: 18/923
  33170. }
  33171. },
  33172. lying: {
  33173. height: math.unit(2, "feet"),
  33174. name: "Lying",
  33175. image: {
  33176. source: "./media/characters/purri/lying.svg",
  33177. extra: 940/843,
  33178. bottom: 146/1086
  33179. }
  33180. },
  33181. devious: {
  33182. height: math.unit(1.77, "feet"),
  33183. name: "Devious",
  33184. image: {
  33185. source: "./media/characters/purri/devious.svg",
  33186. extra: 1440/1155,
  33187. bottom: 147/1587
  33188. }
  33189. },
  33190. bean: {
  33191. height: math.unit(1.94, "feet"),
  33192. name: "Bean",
  33193. image: {
  33194. source: "./media/characters/purri/bean.svg"
  33195. }
  33196. },
  33197. },
  33198. [
  33199. {
  33200. name: "Micro",
  33201. height: math.unit(1, "mm")
  33202. },
  33203. {
  33204. name: "Normal",
  33205. height: math.unit(6 + 5/12, "feet"),
  33206. default: true
  33207. },
  33208. {
  33209. name: "Macro :3c",
  33210. height: math.unit(2, "miles")
  33211. },
  33212. ]
  33213. ))
  33214. characterMakers.push(() => makeCharacter(
  33215. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33216. {
  33217. front: {
  33218. height: math.unit(6 + 2/12, "feet"),
  33219. weight: math.unit(250, "lb"),
  33220. name: "Front",
  33221. image: {
  33222. source: "./media/characters/moonlight/front.svg",
  33223. extra: 1044/908,
  33224. bottom: 56/1100
  33225. }
  33226. },
  33227. feral: {
  33228. height: math.unit(3 + 1/12, "feet"),
  33229. weight: math.unit(50, "kg"),
  33230. name: "Feral",
  33231. image: {
  33232. source: "./media/characters/moonlight/feral.svg",
  33233. extra: 3705/2791,
  33234. bottom: 145/3850
  33235. }
  33236. },
  33237. paw: {
  33238. height: math.unit(1, "feet"),
  33239. name: "Paw",
  33240. image: {
  33241. source: "./media/characters/moonlight/paw.svg"
  33242. }
  33243. },
  33244. paws: {
  33245. height: math.unit(0.98, "feet"),
  33246. name: "Paws",
  33247. image: {
  33248. source: "./media/characters/moonlight/paws.svg",
  33249. extra: 939/939,
  33250. bottom: 50/989
  33251. }
  33252. },
  33253. mouth: {
  33254. height: math.unit(0.48, "feet"),
  33255. name: "Mouth",
  33256. image: {
  33257. source: "./media/characters/moonlight/mouth.svg"
  33258. }
  33259. },
  33260. dick: {
  33261. height: math.unit(1.46, "feet"),
  33262. name: "Dick",
  33263. image: {
  33264. source: "./media/characters/moonlight/dick.svg"
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(6 + 2/12, "feet"),
  33272. default: true
  33273. },
  33274. {
  33275. name: "Macro",
  33276. height: math.unit(300, "feet")
  33277. },
  33278. {
  33279. name: "Macro+",
  33280. height: math.unit(1, "mile")
  33281. },
  33282. {
  33283. name: "Mt. Moon",
  33284. height: math.unit(5, "miles")
  33285. },
  33286. {
  33287. name: "Megamacro",
  33288. height: math.unit(15, "miles")
  33289. },
  33290. ]
  33291. ))
  33292. characterMakers.push(() => makeCharacter(
  33293. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33294. {
  33295. back: {
  33296. height: math.unit(6, "feet"),
  33297. weight: math.unit(150, "lb"),
  33298. name: "Back",
  33299. image: {
  33300. source: "./media/characters/sylen/back.svg",
  33301. extra: 1335/1273,
  33302. bottom: 107/1442
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Normal",
  33309. height: math.unit(5 + 5/12, "feet")
  33310. },
  33311. {
  33312. name: "Megamacro",
  33313. height: math.unit(3, "miles"),
  33314. default: true
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33320. {
  33321. front: {
  33322. height: math.unit(6, "feet"),
  33323. weight: math.unit(190, "lb"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/huttser/front.svg",
  33327. extra: 1152/1058,
  33328. bottom: 23/1175
  33329. }
  33330. },
  33331. side: {
  33332. height: math.unit(6, "feet"),
  33333. weight: math.unit(190, "lb"),
  33334. name: "Side",
  33335. image: {
  33336. source: "./media/characters/huttser/side.svg",
  33337. extra: 1174/1065,
  33338. bottom: 18/1192
  33339. }
  33340. },
  33341. back: {
  33342. height: math.unit(6, "feet"),
  33343. weight: math.unit(190, "lb"),
  33344. name: "Back",
  33345. image: {
  33346. source: "./media/characters/huttser/back.svg",
  33347. extra: 1158/1056,
  33348. bottom: 12/1170
  33349. }
  33350. },
  33351. },
  33352. [
  33353. ]
  33354. ))
  33355. characterMakers.push(() => makeCharacter(
  33356. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33357. {
  33358. side: {
  33359. height: math.unit(12 + 9/12, "feet"),
  33360. weight: math.unit(15000, "lb"),
  33361. name: "Side",
  33362. image: {
  33363. source: "./media/characters/faan/side.svg",
  33364. extra: 2747/2697,
  33365. bottom: 0/2747
  33366. }
  33367. },
  33368. front: {
  33369. height: math.unit(12 + 9/12, "feet"),
  33370. weight: math.unit(15000, "lb"),
  33371. name: "Front",
  33372. image: {
  33373. source: "./media/characters/faan/front.svg",
  33374. extra: 607/571,
  33375. bottom: 24/631
  33376. }
  33377. },
  33378. head: {
  33379. height: math.unit(2.85, "feet"),
  33380. name: "Head",
  33381. image: {
  33382. source: "./media/characters/faan/head.svg"
  33383. }
  33384. },
  33385. headAlt: {
  33386. height: math.unit(3.13, "feet"),
  33387. name: "Head-alt",
  33388. image: {
  33389. source: "./media/characters/faan/head-alt.svg"
  33390. }
  33391. },
  33392. },
  33393. [
  33394. {
  33395. name: "Normal",
  33396. height: math.unit(12 + 9/12, "feet"),
  33397. default: true
  33398. },
  33399. ]
  33400. ))
  33401. characterMakers.push(() => makeCharacter(
  33402. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33403. {
  33404. front: {
  33405. height: math.unit(6, "feet"),
  33406. weight: math.unit(300, "lb"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/tanio/front.svg",
  33410. extra: 711/673,
  33411. bottom: 25/736
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(6, "feet"),
  33419. default: true
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33425. {
  33426. front: {
  33427. height: math.unit(3, "inches"),
  33428. name: "Front",
  33429. image: {
  33430. source: "./media/characters/noboru/front.svg",
  33431. extra: 1039/932,
  33432. bottom: 18/1057
  33433. }
  33434. },
  33435. },
  33436. [
  33437. {
  33438. name: "Micro",
  33439. height: math.unit(3, "inches"),
  33440. default: true
  33441. },
  33442. ]
  33443. ))
  33444. characterMakers.push(() => makeCharacter(
  33445. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33446. {
  33447. front: {
  33448. height: math.unit(1.85, "meters"),
  33449. weight: math.unit(80, "kg"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/daniel-barrett/front.svg",
  33453. extra: 355/337,
  33454. bottom: 9/364
  33455. }
  33456. },
  33457. },
  33458. [
  33459. {
  33460. name: "Pico",
  33461. height: math.unit(0.0433, "mm")
  33462. },
  33463. {
  33464. name: "Nano",
  33465. height: math.unit(1.5, "mm")
  33466. },
  33467. {
  33468. name: "Micro",
  33469. height: math.unit(5.3, "cm"),
  33470. default: true
  33471. },
  33472. {
  33473. name: "Normal",
  33474. height: math.unit(1.85, "meters")
  33475. },
  33476. {
  33477. name: "Macro",
  33478. height: math.unit(64.7, "meters")
  33479. },
  33480. {
  33481. name: "Megamacro",
  33482. height: math.unit(2.26, "km")
  33483. },
  33484. {
  33485. name: "Gigamacro",
  33486. height: math.unit(79, "km")
  33487. },
  33488. {
  33489. name: "Teramacro",
  33490. height: math.unit(2765, "km")
  33491. },
  33492. {
  33493. name: "Petamacro",
  33494. height: math.unit(96678, "km")
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(30, "meters"),
  33503. weight: math.unit(400, "tons"),
  33504. name: "Front",
  33505. image: {
  33506. source: "./media/characters/zeel/front.svg",
  33507. extra: 2599/2599,
  33508. bottom: 226/2825
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Macro",
  33515. height: math.unit(30, "meters"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(6 + 7/12, "feet"),
  33525. weight: math.unit(210, "lb"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/tarn/front.svg",
  33529. extra: 3517/3220,
  33530. bottom: 91/3608
  33531. }
  33532. },
  33533. back: {
  33534. height: math.unit(6 + 7/12, "feet"),
  33535. weight: math.unit(210, "lb"),
  33536. name: "Back",
  33537. image: {
  33538. source: "./media/characters/tarn/back.svg",
  33539. extra: 3566/3241,
  33540. bottom: 34/3600
  33541. }
  33542. },
  33543. dick: {
  33544. height: math.unit(1.65, "feet"),
  33545. name: "Dick",
  33546. image: {
  33547. source: "./media/characters/tarn/dick.svg"
  33548. }
  33549. },
  33550. paw: {
  33551. height: math.unit(1.80, "feet"),
  33552. name: "Paw",
  33553. image: {
  33554. source: "./media/characters/tarn/paw.svg"
  33555. }
  33556. },
  33557. tongue: {
  33558. height: math.unit(0.97, "feet"),
  33559. name: "Tongue",
  33560. image: {
  33561. source: "./media/characters/tarn/tongue.svg"
  33562. }
  33563. },
  33564. },
  33565. [
  33566. {
  33567. name: "Micro",
  33568. height: math.unit(4, "inches")
  33569. },
  33570. {
  33571. name: "Normal",
  33572. height: math.unit(6 + 7/12, "feet"),
  33573. default: true
  33574. },
  33575. {
  33576. name: "Macro",
  33577. height: math.unit(300, "feet")
  33578. },
  33579. ]
  33580. ))
  33581. characterMakers.push(() => makeCharacter(
  33582. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33583. {
  33584. front: {
  33585. height: math.unit(5 + 7/12, "feet"),
  33586. weight: math.unit(80, "kg"),
  33587. name: "Front",
  33588. image: {
  33589. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33590. extra: 3023/2865,
  33591. bottom: 33/3056
  33592. }
  33593. },
  33594. back: {
  33595. height: math.unit(5 + 7/12, "feet"),
  33596. weight: math.unit(80, "kg"),
  33597. name: "Back",
  33598. image: {
  33599. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33600. extra: 3020/2886,
  33601. bottom: 30/3050
  33602. }
  33603. },
  33604. dick: {
  33605. height: math.unit(0.98, "feet"),
  33606. name: "Dick",
  33607. image: {
  33608. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33609. }
  33610. },
  33611. anatomy: {
  33612. height: math.unit(2.86, "feet"),
  33613. name: "Anatomy",
  33614. image: {
  33615. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33616. }
  33617. },
  33618. },
  33619. [
  33620. {
  33621. name: "Really Small",
  33622. height: math.unit(2, "inches")
  33623. },
  33624. {
  33625. name: "Micro",
  33626. height: math.unit(5.583, "inches")
  33627. },
  33628. {
  33629. name: "Normal",
  33630. height: math.unit(5 + 7/12, "feet"),
  33631. default: true
  33632. },
  33633. {
  33634. name: "Macro",
  33635. height: math.unit(67, "feet")
  33636. },
  33637. {
  33638. name: "Megamacro",
  33639. height: math.unit(134, "feet")
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33645. {
  33646. front: {
  33647. height: math.unit(9, "feet"),
  33648. weight: math.unit(120, "lb"),
  33649. name: "Front",
  33650. image: {
  33651. source: "./media/characters/sally/front.svg",
  33652. extra: 1506/1349,
  33653. bottom: 66/1572
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Normal",
  33660. height: math.unit(9, "feet"),
  33661. default: true
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(8, "feet"),
  33670. weight: math.unit(900, "lb"),
  33671. name: "Front",
  33672. image: {
  33673. source: "./media/characters/owen/front.svg",
  33674. extra: 1761/1657,
  33675. bottom: 74/1835
  33676. }
  33677. },
  33678. side: {
  33679. height: math.unit(8, "feet"),
  33680. weight: math.unit(900, "lb"),
  33681. name: "Side",
  33682. image: {
  33683. source: "./media/characters/owen/side.svg",
  33684. extra: 1797/1734,
  33685. bottom: 30/1827
  33686. }
  33687. },
  33688. back: {
  33689. height: math.unit(8, "feet"),
  33690. weight: math.unit(900, "lb"),
  33691. name: "Back",
  33692. image: {
  33693. source: "./media/characters/owen/back.svg",
  33694. extra: 1796/1706,
  33695. bottom: 59/1855
  33696. }
  33697. },
  33698. maw: {
  33699. height: math.unit(1.76, "feet"),
  33700. name: "Maw",
  33701. image: {
  33702. source: "./media/characters/owen/maw.svg"
  33703. }
  33704. },
  33705. },
  33706. [
  33707. {
  33708. name: "Normal",
  33709. height: math.unit(8, "feet"),
  33710. default: true
  33711. },
  33712. ]
  33713. ))
  33714. characterMakers.push(() => makeCharacter(
  33715. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33716. {
  33717. front: {
  33718. height: math.unit(4, "feet"),
  33719. weight: math.unit(400, "lb"),
  33720. name: "Front",
  33721. image: {
  33722. source: "./media/characters/ryth/front.svg",
  33723. extra: 1920/1748,
  33724. bottom: 42/1962
  33725. }
  33726. },
  33727. back: {
  33728. height: math.unit(4, "feet"),
  33729. weight: math.unit(400, "lb"),
  33730. name: "Back",
  33731. image: {
  33732. source: "./media/characters/ryth/back.svg",
  33733. extra: 1897/1690,
  33734. bottom: 89/1986
  33735. }
  33736. },
  33737. mouth: {
  33738. height: math.unit(1.39, "feet"),
  33739. name: "Mouth",
  33740. image: {
  33741. source: "./media/characters/ryth/mouth.svg"
  33742. }
  33743. },
  33744. tailmaw: {
  33745. height: math.unit(1.23, "feet"),
  33746. name: "Tailmaw",
  33747. image: {
  33748. source: "./media/characters/ryth/tailmaw.svg"
  33749. }
  33750. },
  33751. goia: {
  33752. height: math.unit(4, "meters"),
  33753. weight: math.unit(10800, "lb"),
  33754. name: "Goia",
  33755. image: {
  33756. source: "./media/characters/ryth/goia.svg",
  33757. extra: 745/640,
  33758. bottom: 107/852
  33759. }
  33760. },
  33761. goiaFront: {
  33762. height: math.unit(4, "meters"),
  33763. weight: math.unit(10800, "lb"),
  33764. name: "Goia (Front)",
  33765. image: {
  33766. source: "./media/characters/ryth/goia-front.svg",
  33767. extra: 750/586,
  33768. bottom: 114/864
  33769. }
  33770. },
  33771. goiaMaw: {
  33772. height: math.unit(5.55, "feet"),
  33773. name: "Goia Maw",
  33774. image: {
  33775. source: "./media/characters/ryth/goia-maw.svg"
  33776. }
  33777. },
  33778. goiaForepaw: {
  33779. height: math.unit(3.5, "feet"),
  33780. name: "Goia Forepaw",
  33781. image: {
  33782. source: "./media/characters/ryth/goia-forepaw.svg"
  33783. }
  33784. },
  33785. goiaHindpaw: {
  33786. height: math.unit(5.55, "feet"),
  33787. name: "Goia Hindpaw",
  33788. image: {
  33789. source: "./media/characters/ryth/goia-hindpaw.svg"
  33790. }
  33791. },
  33792. },
  33793. [
  33794. {
  33795. name: "Normal",
  33796. height: math.unit(4, "feet"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(7, "feet"),
  33806. weight: math.unit(180, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/necrolance/front.svg",
  33810. extra: 1062/947,
  33811. bottom: 41/1103
  33812. }
  33813. },
  33814. back: {
  33815. height: math.unit(7, "feet"),
  33816. weight: math.unit(180, "lb"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/necrolance/back.svg",
  33820. extra: 1045/984,
  33821. bottom: 14/1059
  33822. }
  33823. },
  33824. wing: {
  33825. height: math.unit(2.67, "feet"),
  33826. name: "Wing",
  33827. image: {
  33828. source: "./media/characters/necrolance/wing.svg"
  33829. }
  33830. },
  33831. },
  33832. [
  33833. {
  33834. name: "Normal",
  33835. height: math.unit(7, "feet"),
  33836. default: true
  33837. },
  33838. ]
  33839. ))
  33840. characterMakers.push(() => makeCharacter(
  33841. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33842. {
  33843. front: {
  33844. height: math.unit(76, "meters"),
  33845. weight: math.unit(30000, "tons"),
  33846. name: "Front",
  33847. image: {
  33848. source: "./media/characters/tyler/front.svg",
  33849. extra: 1640/1640,
  33850. bottom: 114/1754
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Macro",
  33857. height: math.unit(76, "meters"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33864. {
  33865. front: {
  33866. height: math.unit(4 + 11/12, "feet"),
  33867. weight: math.unit(132, "lb"),
  33868. name: "Front",
  33869. image: {
  33870. source: "./media/characters/icey/front.svg",
  33871. extra: 2750/2550,
  33872. bottom: 33/2783
  33873. }
  33874. },
  33875. back: {
  33876. height: math.unit(4 + 11/12, "feet"),
  33877. weight: math.unit(132, "lb"),
  33878. name: "Back",
  33879. image: {
  33880. source: "./media/characters/icey/back.svg",
  33881. extra: 2624/2481,
  33882. bottom: 35/2659
  33883. }
  33884. },
  33885. },
  33886. [
  33887. {
  33888. name: "Normal",
  33889. height: math.unit(4 + 11/12, "feet"),
  33890. default: true
  33891. },
  33892. ]
  33893. ))
  33894. characterMakers.push(() => makeCharacter(
  33895. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33896. {
  33897. front: {
  33898. height: math.unit(100, "feet"),
  33899. weight: math.unit(0, "lb"),
  33900. name: "Front",
  33901. image: {
  33902. source: "./media/characters/smile/front.svg",
  33903. extra: 2983/2912,
  33904. bottom: 162/3145
  33905. }
  33906. },
  33907. back: {
  33908. height: math.unit(100, "feet"),
  33909. weight: math.unit(0, "lb"),
  33910. name: "Back",
  33911. image: {
  33912. source: "./media/characters/smile/back.svg",
  33913. extra: 3143/3031,
  33914. bottom: 91/3234
  33915. }
  33916. },
  33917. head: {
  33918. height: math.unit(26.3, "feet"),
  33919. weight: math.unit(0, "lb"),
  33920. name: "Head",
  33921. image: {
  33922. source: "./media/characters/smile/head.svg"
  33923. }
  33924. },
  33925. collar: {
  33926. height: math.unit(5.3, "feet"),
  33927. weight: math.unit(0, "lb"),
  33928. name: "Collar",
  33929. image: {
  33930. source: "./media/characters/smile/collar.svg"
  33931. }
  33932. },
  33933. },
  33934. [
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(100, "feet"),
  33938. default: true
  33939. },
  33940. ]
  33941. ))
  33942. characterMakers.push(() => makeCharacter(
  33943. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33944. {
  33945. dragon: {
  33946. height: math.unit(26, "feet"),
  33947. weight: math.unit(36, "tons"),
  33948. name: "Dragon",
  33949. image: {
  33950. source: "./media/characters/arimphae/dragon.svg",
  33951. extra: 1574/983,
  33952. bottom: 357/1931
  33953. }
  33954. },
  33955. drake: {
  33956. height: math.unit(9, "feet"),
  33957. weight: math.unit(1.5, "tons"),
  33958. name: "Drake",
  33959. image: {
  33960. source: "./media/characters/arimphae/drake.svg",
  33961. extra: 1120/925,
  33962. bottom: 435/1555
  33963. }
  33964. },
  33965. },
  33966. [
  33967. {
  33968. name: "Small",
  33969. height: math.unit(26*5/9, "feet")
  33970. },
  33971. {
  33972. name: "Normal",
  33973. height: math.unit(26, "feet"),
  33974. default: true
  33975. },
  33976. ]
  33977. ))
  33978. characterMakers.push(() => makeCharacter(
  33979. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33980. {
  33981. front: {
  33982. height: math.unit(8 + 9/12, "feet"),
  33983. name: "Front",
  33984. image: {
  33985. source: "./media/characters/xander/front.svg",
  33986. extra: 1237/974,
  33987. bottom: 94/1331
  33988. }
  33989. },
  33990. },
  33991. [
  33992. {
  33993. name: "Normal",
  33994. height: math.unit(8 + 9/12, "feet"),
  33995. default: true
  33996. },
  33997. {
  33998. name: "Gaze Grabber",
  33999. height: math.unit(13 + 8/12, "feet")
  34000. },
  34001. {
  34002. name: "Jaw Dropper",
  34003. height: math.unit(27, "feet")
  34004. },
  34005. {
  34006. name: "Show Stopper",
  34007. height: math.unit(136, "feet")
  34008. },
  34009. {
  34010. name: "Superstar",
  34011. height: math.unit(1.9e6, "miles")
  34012. },
  34013. ]
  34014. ))
  34015. characterMakers.push(() => makeCharacter(
  34016. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34017. {
  34018. side: {
  34019. height: math.unit(2100, "feet"),
  34020. name: "Side",
  34021. image: {
  34022. source: "./media/characters/osiris/side.svg",
  34023. extra: 1105/939,
  34024. bottom: 167/1272
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(2100, "feet"),
  34032. default: true
  34033. },
  34034. ]
  34035. ))
  34036. characterMakers.push(() => makeCharacter(
  34037. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34038. {
  34039. front: {
  34040. height: math.unit(6 + 8/12, "feet"),
  34041. weight: math.unit(225, "lb"),
  34042. name: "Front",
  34043. image: {
  34044. source: "./media/characters/rhys-londe/front.svg",
  34045. extra: 2258/2141,
  34046. bottom: 188/2446
  34047. }
  34048. },
  34049. back: {
  34050. height: math.unit(6 + 8/12, "feet"),
  34051. weight: math.unit(225, "lb"),
  34052. name: "Back",
  34053. image: {
  34054. source: "./media/characters/rhys-londe/back.svg",
  34055. extra: 2237/2137,
  34056. bottom: 63/2300
  34057. }
  34058. },
  34059. frontNsfw: {
  34060. height: math.unit(6 + 8/12, "feet"),
  34061. weight: math.unit(225, "lb"),
  34062. name: "Front (NSFW)",
  34063. image: {
  34064. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34065. extra: 2258/2141,
  34066. bottom: 188/2446
  34067. }
  34068. },
  34069. backNsfw: {
  34070. height: math.unit(6 + 8/12, "feet"),
  34071. weight: math.unit(225, "lb"),
  34072. name: "Back (NSFW)",
  34073. image: {
  34074. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34075. extra: 2237/2137,
  34076. bottom: 63/2300
  34077. }
  34078. },
  34079. dick: {
  34080. height: math.unit(30, "inches"),
  34081. name: "Dick",
  34082. image: {
  34083. source: "./media/characters/rhys-londe/dick.svg"
  34084. }
  34085. },
  34086. maw: {
  34087. height: math.unit(1.6, "feet"),
  34088. name: "Maw",
  34089. image: {
  34090. source: "./media/characters/rhys-londe/maw.svg"
  34091. }
  34092. },
  34093. },
  34094. [
  34095. {
  34096. name: "Normal",
  34097. height: math.unit(6 + 8/12, "feet"),
  34098. default: true
  34099. },
  34100. ]
  34101. ))
  34102. characterMakers.push(() => makeCharacter(
  34103. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34104. {
  34105. front: {
  34106. height: math.unit(3 + 10/12, "feet"),
  34107. weight: math.unit(90, "lb"),
  34108. name: "Front",
  34109. image: {
  34110. source: "./media/characters/taivas-ensim/front.svg",
  34111. extra: 1327/1216,
  34112. bottom: 96/1423
  34113. }
  34114. },
  34115. back: {
  34116. height: math.unit(3 + 10/12, "feet"),
  34117. weight: math.unit(90, "lb"),
  34118. name: "Back",
  34119. image: {
  34120. source: "./media/characters/taivas-ensim/back.svg",
  34121. extra: 1355/1247,
  34122. bottom: 11/1366
  34123. }
  34124. },
  34125. frontNsfw: {
  34126. height: math.unit(3 + 10/12, "feet"),
  34127. weight: math.unit(90, "lb"),
  34128. name: "Front (NSFW)",
  34129. image: {
  34130. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34131. extra: 1327/1216,
  34132. bottom: 96/1423
  34133. }
  34134. },
  34135. backNsfw: {
  34136. height: math.unit(3 + 10/12, "feet"),
  34137. weight: math.unit(90, "lb"),
  34138. name: "Back (NSFW)",
  34139. image: {
  34140. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34141. extra: 1355/1247,
  34142. bottom: 11/1366
  34143. }
  34144. },
  34145. },
  34146. [
  34147. {
  34148. name: "Normal",
  34149. height: math.unit(3 + 10/12, "feet"),
  34150. default: true
  34151. },
  34152. ]
  34153. ))
  34154. characterMakers.push(() => makeCharacter(
  34155. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34156. {
  34157. front: {
  34158. height: math.unit(9 + 6/12, "feet"),
  34159. weight: math.unit(940, "lb"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/byliss/front.svg",
  34163. extra: 1327/1290,
  34164. bottom: 82/1409
  34165. }
  34166. },
  34167. back: {
  34168. height: math.unit(9 + 6/12, "feet"),
  34169. weight: math.unit(940, "lb"),
  34170. name: "Back",
  34171. image: {
  34172. source: "./media/characters/byliss/back.svg",
  34173. extra: 1376/1349,
  34174. bottom: 9/1385
  34175. }
  34176. },
  34177. frontNsfw: {
  34178. height: math.unit(9 + 6/12, "feet"),
  34179. weight: math.unit(940, "lb"),
  34180. name: "Front (NSFW)",
  34181. image: {
  34182. source: "./media/characters/byliss/front-nsfw.svg",
  34183. extra: 1327/1290,
  34184. bottom: 82/1409
  34185. }
  34186. },
  34187. backNsfw: {
  34188. height: math.unit(9 + 6/12, "feet"),
  34189. weight: math.unit(940, "lb"),
  34190. name: "Back (NSFW)",
  34191. image: {
  34192. source: "./media/characters/byliss/back-nsfw.svg",
  34193. extra: 1376/1349,
  34194. bottom: 9/1385
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(9 + 6/12, "feet"),
  34202. default: true
  34203. },
  34204. ]
  34205. ))
  34206. characterMakers.push(() => makeCharacter(
  34207. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34208. {
  34209. front: {
  34210. height: math.unit(5 + 2/12, "feet"),
  34211. weight: math.unit(200, "lb"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/noraly/front.svg",
  34215. extra: 4985/4773,
  34216. bottom: 150/5135
  34217. }
  34218. },
  34219. full: {
  34220. height: math.unit(5 + 2/12, "feet"),
  34221. weight: math.unit(164, "lb"),
  34222. name: "Full",
  34223. image: {
  34224. source: "./media/characters/noraly/full.svg",
  34225. extra: 1114/1059,
  34226. bottom: 35/1149
  34227. }
  34228. },
  34229. fuller: {
  34230. height: math.unit(5 + 2/12, "feet"),
  34231. weight: math.unit(230, "lb"),
  34232. name: "Fuller",
  34233. image: {
  34234. source: "./media/characters/noraly/fuller.svg",
  34235. extra: 1114/1059,
  34236. bottom: 35/1149
  34237. }
  34238. },
  34239. fullest: {
  34240. height: math.unit(5 + 2/12, "feet"),
  34241. weight: math.unit(300, "lb"),
  34242. name: "Fullest",
  34243. image: {
  34244. source: "./media/characters/noraly/fullest.svg",
  34245. extra: 1114/1059,
  34246. bottom: 35/1149
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(5 + 2/12, "feet"),
  34254. default: true
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34260. {
  34261. front: {
  34262. height: math.unit(5 + 2/12, "feet"),
  34263. weight: math.unit(210, "lb"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/pera/front.svg",
  34267. extra: 1560/1531,
  34268. bottom: 165/1725
  34269. }
  34270. },
  34271. back: {
  34272. height: math.unit(5 + 2/12, "feet"),
  34273. weight: math.unit(210, "lb"),
  34274. name: "Back",
  34275. image: {
  34276. source: "./media/characters/pera/back.svg",
  34277. extra: 1523/1493,
  34278. bottom: 152/1675
  34279. }
  34280. },
  34281. dick: {
  34282. height: math.unit(2.4, "feet"),
  34283. name: "Dick",
  34284. image: {
  34285. source: "./media/characters/pera/dick.svg"
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Normal",
  34292. height: math.unit(5 + 2/12, "feet"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(12, "feet"),
  34302. weight: math.unit(3200, "lb"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/julian/front.svg",
  34306. extra: 2962/2701,
  34307. bottom: 184/3146
  34308. }
  34309. },
  34310. maw: {
  34311. height: math.unit(5.35, "feet"),
  34312. name: "Maw",
  34313. image: {
  34314. source: "./media/characters/julian/maw.svg"
  34315. }
  34316. },
  34317. paw: {
  34318. height: math.unit(3.07, "feet"),
  34319. name: "Paw",
  34320. image: {
  34321. source: "./media/characters/julian/paw.svg"
  34322. }
  34323. },
  34324. },
  34325. [
  34326. {
  34327. name: "Default",
  34328. height: math.unit(12, "feet"),
  34329. default: true
  34330. },
  34331. {
  34332. name: "Big",
  34333. height: math.unit(50, "feet")
  34334. },
  34335. {
  34336. name: "Really Big",
  34337. height: math.unit(1, "mile")
  34338. },
  34339. {
  34340. name: "Extremely Big",
  34341. height: math.unit(100, "miles")
  34342. },
  34343. {
  34344. name: "Planet Hugger",
  34345. height: math.unit(200, "megameters")
  34346. },
  34347. {
  34348. name: "Unreasonably Big",
  34349. height: math.unit(1e300, "meters")
  34350. },
  34351. ]
  34352. ))
  34353. characterMakers.push(() => makeCharacter(
  34354. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34355. {
  34356. solgooleo: {
  34357. height: math.unit(4, "meters"),
  34358. weight: math.unit(6000*1.5, "kg"),
  34359. volume: math.unit(6000, "liters"),
  34360. name: "Solgooleo",
  34361. image: {
  34362. source: "./media/characters/pi/solgooleo.svg",
  34363. extra: 388/331,
  34364. bottom: 29/417
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(4, "meters"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(8, "feet"),
  34381. weight: math.unit(4, "tons"),
  34382. name: "Front",
  34383. image: {
  34384. source: "./media/characters/shaun/front.svg",
  34385. extra: 503/495,
  34386. bottom: 20/523
  34387. }
  34388. },
  34389. back: {
  34390. height: math.unit(8, "feet"),
  34391. weight: math.unit(4, "tons"),
  34392. name: "Back",
  34393. image: {
  34394. source: "./media/characters/shaun/back.svg",
  34395. extra: 487/480,
  34396. bottom: 20/507
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Lorg",
  34403. height: math.unit(8, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34410. {
  34411. frontAnthro: {
  34412. height: math.unit(7, "feet"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/sini/front-anthro.svg",
  34416. extra: 726/678,
  34417. bottom: 35/761
  34418. },
  34419. form: "anthro",
  34420. default: true
  34421. },
  34422. backAnthro: {
  34423. height: math.unit(7, "feet"),
  34424. name: "Back",
  34425. image: {
  34426. source: "./media/characters/sini/back-anthro.svg",
  34427. extra: 743/701,
  34428. bottom: 12/755
  34429. },
  34430. form: "anthro",
  34431. },
  34432. frontAnthroNsfw: {
  34433. height: math.unit(7, "feet"),
  34434. name: "Front (NSFW)",
  34435. image: {
  34436. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34437. extra: 726/678,
  34438. bottom: 35/761
  34439. },
  34440. form: "anthro"
  34441. },
  34442. backAnthroNsfw: {
  34443. height: math.unit(7, "feet"),
  34444. name: "Back (NSFW)",
  34445. image: {
  34446. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34447. extra: 743/701,
  34448. bottom: 12/755
  34449. },
  34450. form: "anthro",
  34451. },
  34452. mawAnthro: {
  34453. height: math.unit(2.14, "feet"),
  34454. name: "Maw",
  34455. image: {
  34456. source: "./media/characters/sini/maw-anthro.svg"
  34457. },
  34458. form: "anthro"
  34459. },
  34460. dick: {
  34461. height: math.unit(1.45, "feet"),
  34462. name: "Dick",
  34463. image: {
  34464. source: "./media/characters/sini/dick-anthro.svg"
  34465. },
  34466. form: "anthro"
  34467. },
  34468. feral: {
  34469. height: math.unit(16, "feet"),
  34470. name: "Feral",
  34471. image: {
  34472. source: "./media/characters/sini/feral.svg",
  34473. extra: 814/605,
  34474. bottom: 11/825
  34475. },
  34476. form: "feral",
  34477. default: true
  34478. },
  34479. feralNsfw: {
  34480. height: math.unit(16, "feet"),
  34481. name: "Feral (NSFW)",
  34482. image: {
  34483. source: "./media/characters/sini/feral-nsfw.svg",
  34484. extra: 814/605,
  34485. bottom: 11/825
  34486. },
  34487. form: "feral"
  34488. },
  34489. mawFeral: {
  34490. height: math.unit(5.66, "feet"),
  34491. name: "Maw",
  34492. image: {
  34493. source: "./media/characters/sini/maw-feral.svg"
  34494. },
  34495. form: "feral",
  34496. },
  34497. pawFeral: {
  34498. height: math.unit(5.17, "feet"),
  34499. name: "Paw",
  34500. image: {
  34501. source: "./media/characters/sini/paw-feral.svg"
  34502. },
  34503. form: "feral",
  34504. },
  34505. rumpFeral: {
  34506. height: math.unit(13.11, "feet"),
  34507. name: "Rump",
  34508. image: {
  34509. source: "./media/characters/sini/rump-feral.svg"
  34510. },
  34511. form: "feral",
  34512. },
  34513. dickFeral: {
  34514. height: math.unit(1, "feet"),
  34515. name: "Dick",
  34516. image: {
  34517. source: "./media/characters/sini/dick-feral.svg"
  34518. },
  34519. form: "feral",
  34520. },
  34521. eyeFeral: {
  34522. height: math.unit(1.23, "feet"),
  34523. name: "Eye",
  34524. image: {
  34525. source: "./media/characters/sini/eye-feral.svg"
  34526. },
  34527. form: "feral",
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Normal",
  34533. height: math.unit(7, "feet"),
  34534. default: true,
  34535. form: "anthro"
  34536. },
  34537. {
  34538. name: "Normal",
  34539. height: math.unit(16, "feet"),
  34540. default: true,
  34541. form: "feral"
  34542. },
  34543. ],
  34544. {
  34545. "anthro": {
  34546. name: "Anthro",
  34547. default: true
  34548. },
  34549. "feral": {
  34550. name: "Feral",
  34551. }
  34552. }
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34556. {
  34557. side: {
  34558. height: math.unit(47.2, "meters"),
  34559. weight: math.unit(10000, "tons"),
  34560. name: "Side",
  34561. image: {
  34562. source: "./media/characters/raylldo/side.svg",
  34563. extra: 2363/642,
  34564. bottom: 221/2584
  34565. }
  34566. },
  34567. top: {
  34568. height: math.unit(240, "meters"),
  34569. weight: math.unit(10000, "tons"),
  34570. name: "Top",
  34571. image: {
  34572. source: "./media/characters/raylldo/top.svg"
  34573. }
  34574. },
  34575. bottom: {
  34576. height: math.unit(240, "meters"),
  34577. weight: math.unit(10000, "tons"),
  34578. name: "Bottom",
  34579. image: {
  34580. source: "./media/characters/raylldo/bottom.svg"
  34581. }
  34582. },
  34583. head: {
  34584. height: math.unit(38.6, "meters"),
  34585. name: "Head",
  34586. image: {
  34587. source: "./media/characters/raylldo/head.svg",
  34588. extra: 1335/1112,
  34589. bottom: 0/1335
  34590. }
  34591. },
  34592. maw: {
  34593. height: math.unit(16.37, "meters"),
  34594. name: "Maw",
  34595. image: {
  34596. source: "./media/characters/raylldo/maw.svg",
  34597. extra: 883/660,
  34598. bottom: 0/883
  34599. },
  34600. extraAttributes: {
  34601. preyCapacity: {
  34602. name: "Capacity",
  34603. power: 3,
  34604. type: "volume",
  34605. base: math.unit(1000, "people")
  34606. },
  34607. tongueSize: {
  34608. name: "Tongue Size",
  34609. power: 2,
  34610. type: "area",
  34611. base: math.unit(21, "m^2")
  34612. }
  34613. }
  34614. },
  34615. forepaw: {
  34616. height: math.unit(18, "meters"),
  34617. name: "Forepaw",
  34618. image: {
  34619. source: "./media/characters/raylldo/forepaw.svg"
  34620. }
  34621. },
  34622. hindpaw: {
  34623. height: math.unit(23, "meters"),
  34624. name: "Hindpaw",
  34625. image: {
  34626. source: "./media/characters/raylldo/hindpaw.svg"
  34627. }
  34628. },
  34629. genitals: {
  34630. height: math.unit(42, "meters"),
  34631. name: "Genitals",
  34632. image: {
  34633. source: "./media/characters/raylldo/genitals.svg"
  34634. }
  34635. },
  34636. },
  34637. [
  34638. {
  34639. name: "Normal",
  34640. height: math.unit(47.2, "meters"),
  34641. default: true
  34642. },
  34643. ]
  34644. ))
  34645. characterMakers.push(() => makeCharacter(
  34646. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34647. {
  34648. anthroFront: {
  34649. height: math.unit(9, "feet"),
  34650. weight: math.unit(600, "lb"),
  34651. name: "Anthro (Front)",
  34652. image: {
  34653. source: "./media/characters/glint/anthro-front.svg",
  34654. extra: 1097/1018,
  34655. bottom: 28/1125
  34656. }
  34657. },
  34658. anthroBack: {
  34659. height: math.unit(9, "feet"),
  34660. weight: math.unit(600, "lb"),
  34661. name: "Anthro (Back)",
  34662. image: {
  34663. source: "./media/characters/glint/anthro-back.svg",
  34664. extra: 1154/997,
  34665. bottom: 36/1190
  34666. }
  34667. },
  34668. feral: {
  34669. height: math.unit(11, "feet"),
  34670. weight: math.unit(50000, "lb"),
  34671. name: "Feral",
  34672. image: {
  34673. source: "./media/characters/glint/feral.svg",
  34674. extra: 3035/1585,
  34675. bottom: 1169/4204
  34676. }
  34677. },
  34678. dickAnthro: {
  34679. height: math.unit(0.7, "meters"),
  34680. name: "Dick (Anthro)",
  34681. image: {
  34682. source: "./media/characters/glint/dick-anthro.svg"
  34683. }
  34684. },
  34685. dickFeral: {
  34686. height: math.unit(2.65, "meters"),
  34687. name: "Dick (Feral)",
  34688. image: {
  34689. source: "./media/characters/glint/dick-feral.svg"
  34690. }
  34691. },
  34692. slitHidden: {
  34693. height: math.unit(5.85, "meters"),
  34694. name: "Slit (Hidden)",
  34695. image: {
  34696. source: "./media/characters/glint/slit-hidden.svg"
  34697. }
  34698. },
  34699. slitErect: {
  34700. height: math.unit(5.85, "meters"),
  34701. name: "Slit (Erect)",
  34702. image: {
  34703. source: "./media/characters/glint/slit-erect.svg"
  34704. }
  34705. },
  34706. mawAnthro: {
  34707. height: math.unit(0.63, "meters"),
  34708. name: "Maw (Anthro)",
  34709. image: {
  34710. source: "./media/characters/glint/maw.svg"
  34711. }
  34712. },
  34713. mawFeral: {
  34714. height: math.unit(2.89, "meters"),
  34715. name: "Maw (Feral)",
  34716. image: {
  34717. source: "./media/characters/glint/maw.svg"
  34718. }
  34719. },
  34720. },
  34721. [
  34722. {
  34723. name: "Normal",
  34724. height: math.unit(9, "feet"),
  34725. default: true
  34726. },
  34727. ]
  34728. ))
  34729. characterMakers.push(() => makeCharacter(
  34730. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34731. {
  34732. side: {
  34733. height: math.unit(15, "feet"),
  34734. weight: math.unit(5000, "kg"),
  34735. name: "Side",
  34736. image: {
  34737. source: "./media/characters/kairne/side.svg",
  34738. extra: 979/811,
  34739. bottom: 13/992
  34740. }
  34741. },
  34742. front: {
  34743. height: math.unit(15, "feet"),
  34744. weight: math.unit(5000, "kg"),
  34745. name: "Front",
  34746. image: {
  34747. source: "./media/characters/kairne/front.svg",
  34748. extra: 908/814,
  34749. bottom: 26/934
  34750. }
  34751. },
  34752. sideNsfw: {
  34753. height: math.unit(15, "feet"),
  34754. weight: math.unit(5000, "kg"),
  34755. name: "Side (NSFW)",
  34756. image: {
  34757. source: "./media/characters/kairne/side-nsfw.svg",
  34758. extra: 979/811,
  34759. bottom: 13/992
  34760. }
  34761. },
  34762. frontNsfw: {
  34763. height: math.unit(15, "feet"),
  34764. weight: math.unit(5000, "kg"),
  34765. name: "Front (NSFW)",
  34766. image: {
  34767. source: "./media/characters/kairne/front-nsfw.svg",
  34768. extra: 908/814,
  34769. bottom: 26/934
  34770. }
  34771. },
  34772. dickCaged: {
  34773. height: math.unit(0.65, "meters"),
  34774. name: "Dick-caged",
  34775. image: {
  34776. source: "./media/characters/kairne/dick-caged.svg"
  34777. }
  34778. },
  34779. dick: {
  34780. height: math.unit(0.79, "meters"),
  34781. name: "Dick",
  34782. image: {
  34783. source: "./media/characters/kairne/dick.svg"
  34784. }
  34785. },
  34786. genitals: {
  34787. height: math.unit(1.29, "meters"),
  34788. name: "Genitals",
  34789. image: {
  34790. source: "./media/characters/kairne/genitals.svg"
  34791. }
  34792. },
  34793. maw: {
  34794. height: math.unit(1.73, "meters"),
  34795. name: "Maw",
  34796. image: {
  34797. source: "./media/characters/kairne/maw.svg"
  34798. }
  34799. },
  34800. },
  34801. [
  34802. {
  34803. name: "Normal",
  34804. height: math.unit(15, "feet"),
  34805. default: true
  34806. },
  34807. ]
  34808. ))
  34809. characterMakers.push(() => makeCharacter(
  34810. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34811. {
  34812. front: {
  34813. height: math.unit(5 + 8/12, "feet"),
  34814. weight: math.unit(139, "lb"),
  34815. name: "Front",
  34816. image: {
  34817. source: "./media/characters/biscuit-jackal/front.svg",
  34818. extra: 2106/1961,
  34819. bottom: 58/2164
  34820. }
  34821. },
  34822. back: {
  34823. height: math.unit(5 + 8/12, "feet"),
  34824. weight: math.unit(139, "lb"),
  34825. name: "Back",
  34826. image: {
  34827. source: "./media/characters/biscuit-jackal/back.svg",
  34828. extra: 2132/1976,
  34829. bottom: 57/2189
  34830. }
  34831. },
  34832. werejackal: {
  34833. height: math.unit(6 + 3/12, "feet"),
  34834. weight: math.unit(188, "lb"),
  34835. name: "Werejackal",
  34836. image: {
  34837. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34838. extra: 2373/2178,
  34839. bottom: 53/2426
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(5 + 8/12, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(140, "cm"),
  34856. weight: math.unit(45, "kg"),
  34857. name: "Front",
  34858. image: {
  34859. source: "./media/characters/tayra-white/front.svg",
  34860. extra: 2229/2192,
  34861. bottom: 75/2304
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(140, "cm"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(4 + 5/12, "feet"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/scoop/front.svg",
  34881. extra: 1257/1136,
  34882. bottom: 69/1326
  34883. }
  34884. },
  34885. back: {
  34886. height: math.unit(4 + 5/12, "feet"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/scoop/back.svg",
  34890. extra: 1321/1152,
  34891. bottom: 32/1353
  34892. }
  34893. },
  34894. maw: {
  34895. height: math.unit(0.68, "feet"),
  34896. name: "Maw",
  34897. image: {
  34898. source: "./media/characters/scoop/maw.svg"
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Really Small",
  34905. height: math.unit(1, "mm")
  34906. },
  34907. {
  34908. name: "Micro",
  34909. height: math.unit(1, "inch")
  34910. },
  34911. {
  34912. name: "Normal",
  34913. height: math.unit(4 + 5/12, "feet"),
  34914. default: true
  34915. },
  34916. {
  34917. name: "Macro",
  34918. height: math.unit(200, "feet")
  34919. },
  34920. {
  34921. name: "Megamacro",
  34922. height: math.unit(3240, "feet")
  34923. },
  34924. {
  34925. name: "Teramacro",
  34926. height: math.unit(2500, "miles")
  34927. },
  34928. ]
  34929. ))
  34930. characterMakers.push(() => makeCharacter(
  34931. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34932. {
  34933. front: {
  34934. height: math.unit(15 + 7/12, "feet"),
  34935. weight: math.unit(1150, "tons"),
  34936. name: "Front",
  34937. image: {
  34938. source: "./media/characters/saphinara/front.svg",
  34939. extra: 1837/1643,
  34940. bottom: 84/1921
  34941. },
  34942. form: "normal",
  34943. default: true
  34944. },
  34945. side: {
  34946. height: math.unit(15 + 7/12, "feet"),
  34947. weight: math.unit(1150, "tons"),
  34948. name: "Side",
  34949. image: {
  34950. source: "./media/characters/saphinara/side.svg",
  34951. extra: 605/547,
  34952. bottom: 6/611
  34953. },
  34954. form: "normal"
  34955. },
  34956. back: {
  34957. height: math.unit(15 + 7/12, "feet"),
  34958. weight: math.unit(1150, "tons"),
  34959. name: "Back",
  34960. image: {
  34961. source: "./media/characters/saphinara/back.svg",
  34962. extra: 591/531,
  34963. bottom: 13/604
  34964. },
  34965. form: "normal"
  34966. },
  34967. frontTail: {
  34968. height: math.unit(15 + 7/12, "feet"),
  34969. weight: math.unit(1150, "tons"),
  34970. name: "Front (Full Tail)",
  34971. image: {
  34972. source: "./media/characters/saphinara/front-tail.svg",
  34973. extra: 2256/1630,
  34974. bottom: 261/2517
  34975. },
  34976. form: "normal"
  34977. },
  34978. insides: {
  34979. height: math.unit(11.92, "feet"),
  34980. name: "Insides",
  34981. image: {
  34982. source: "./media/characters/saphinara/insides.svg"
  34983. },
  34984. form: "normal"
  34985. },
  34986. head: {
  34987. height: math.unit(4.17, "feet"),
  34988. name: "Head",
  34989. image: {
  34990. source: "./media/characters/saphinara/head.svg"
  34991. },
  34992. form: "normal"
  34993. },
  34994. tongue: {
  34995. height: math.unit(4.60, "feet"),
  34996. name: "Tongue",
  34997. image: {
  34998. source: "./media/characters/saphinara/tongue.svg"
  34999. },
  35000. form: "normal"
  35001. },
  35002. headEnraged: {
  35003. height: math.unit(5.55, "feet"),
  35004. name: "Head (Enraged)",
  35005. image: {
  35006. source: "./media/characters/saphinara/head-enraged.svg"
  35007. },
  35008. form: "normal"
  35009. },
  35010. wings: {
  35011. height: math.unit(11.95, "feet"),
  35012. name: "Wings",
  35013. image: {
  35014. source: "./media/characters/saphinara/wings.svg"
  35015. },
  35016. form: "normal"
  35017. },
  35018. feathers: {
  35019. height: math.unit(8.92, "feet"),
  35020. name: "Feathers",
  35021. image: {
  35022. source: "./media/characters/saphinara/feathers.svg"
  35023. },
  35024. form: "normal"
  35025. },
  35026. shackles: {
  35027. height: math.unit(2, "feet"),
  35028. name: "Shackles",
  35029. image: {
  35030. source: "./media/characters/saphinara/shackles.svg"
  35031. },
  35032. form: "normal"
  35033. },
  35034. eyes: {
  35035. height: math.unit(1.331, "feet"),
  35036. name: "Eyes",
  35037. image: {
  35038. source: "./media/characters/saphinara/eyes.svg"
  35039. },
  35040. form: "normal"
  35041. },
  35042. eyesEnraged: {
  35043. height: math.unit(1.331, "feet"),
  35044. name: "Eyes (Enraged)",
  35045. image: {
  35046. source: "./media/characters/saphinara/eyes-enraged.svg"
  35047. },
  35048. form: "normal"
  35049. },
  35050. trueFormSide: {
  35051. height: math.unit(200, "feet"),
  35052. weight: math.unit(1e7, "tons"),
  35053. name: "Side",
  35054. image: {
  35055. source: "./media/characters/saphinara/true-form-side.svg",
  35056. extra: 1399/770,
  35057. bottom: 97/1496
  35058. },
  35059. form: "true-form",
  35060. default: true
  35061. },
  35062. trueFormMaw: {
  35063. height: math.unit(71.5, "feet"),
  35064. name: "Maw",
  35065. image: {
  35066. source: "./media/characters/saphinara/true-form-maw.svg",
  35067. extra: 2302/1453,
  35068. bottom: 0/2302
  35069. },
  35070. form: "true-form"
  35071. },
  35072. meowberusSide: {
  35073. height: math.unit(75, "feet"),
  35074. weight: math.unit(180000, "kg"),
  35075. preyCapacity: math.unit(50000, "people"),
  35076. name: "Side",
  35077. image: {
  35078. source: "./media/characters/saphinara/meowberus-side.svg",
  35079. extra: 1400/711,
  35080. bottom: 126/1526
  35081. },
  35082. form: "meowberus",
  35083. extraAttributes: {
  35084. "pawArea": {
  35085. name: "Paw Size",
  35086. power: 2,
  35087. type: "area",
  35088. base: math.unit(35, "m^2")
  35089. }
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Normal",
  35096. height: math.unit(15 + 7/12, "feet"),
  35097. default: true,
  35098. form: "normal"
  35099. },
  35100. {
  35101. name: "Angry",
  35102. height: math.unit(30 + 6/12, "feet"),
  35103. form: "normal"
  35104. },
  35105. {
  35106. name: "Enraged",
  35107. height: math.unit(102 + 1/12, "feet"),
  35108. form: "normal"
  35109. },
  35110. {
  35111. name: "True",
  35112. height: math.unit(200, "feet"),
  35113. default: true,
  35114. form: "true-form"
  35115. },
  35116. {
  35117. name: "Normal",
  35118. height: math.unit(75, "feet"),
  35119. default: true,
  35120. form: "meowberus"
  35121. },
  35122. ],
  35123. {
  35124. "normal": {
  35125. name: "Normal",
  35126. default: true
  35127. },
  35128. "true-form": {
  35129. name: "True Form"
  35130. },
  35131. "meowberus": {
  35132. name: "Meowberus",
  35133. },
  35134. }
  35135. ))
  35136. characterMakers.push(() => makeCharacter(
  35137. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35138. {
  35139. front: {
  35140. height: math.unit(6 + 8/12, "feet"),
  35141. weight: math.unit(300, "lb"),
  35142. name: "Front",
  35143. image: {
  35144. source: "./media/characters/jrain/front.svg",
  35145. extra: 3039/2865,
  35146. bottom: 399/3438
  35147. }
  35148. },
  35149. back: {
  35150. height: math.unit(6 + 8/12, "feet"),
  35151. weight: math.unit(300, "lb"),
  35152. name: "Back",
  35153. image: {
  35154. source: "./media/characters/jrain/back.svg",
  35155. extra: 3089/2938,
  35156. bottom: 172/3261
  35157. }
  35158. },
  35159. head: {
  35160. height: math.unit(2.14, "feet"),
  35161. name: "Head",
  35162. image: {
  35163. source: "./media/characters/jrain/head.svg"
  35164. }
  35165. },
  35166. maw: {
  35167. height: math.unit(1.77, "feet"),
  35168. name: "Maw",
  35169. image: {
  35170. source: "./media/characters/jrain/maw.svg"
  35171. }
  35172. },
  35173. leftHand: {
  35174. height: math.unit(1.1, "feet"),
  35175. name: "Left Hand",
  35176. image: {
  35177. source: "./media/characters/jrain/left-hand.svg"
  35178. }
  35179. },
  35180. rightHand: {
  35181. height: math.unit(1.1, "feet"),
  35182. name: "Right Hand",
  35183. image: {
  35184. source: "./media/characters/jrain/right-hand.svg"
  35185. }
  35186. },
  35187. eye: {
  35188. height: math.unit(0.35, "feet"),
  35189. name: "Eye",
  35190. image: {
  35191. source: "./media/characters/jrain/eye.svg"
  35192. }
  35193. },
  35194. },
  35195. [
  35196. {
  35197. name: "Normal",
  35198. height: math.unit(6 + 8/12, "feet"),
  35199. default: true
  35200. },
  35201. {
  35202. name: "Casually Large",
  35203. height: math.unit(25, "feet")
  35204. },
  35205. {
  35206. name: "Giant",
  35207. height: math.unit(100, "feet")
  35208. },
  35209. {
  35210. name: "Kaiju",
  35211. height: math.unit(300, "feet")
  35212. },
  35213. ]
  35214. ))
  35215. characterMakers.push(() => makeCharacter(
  35216. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35217. {
  35218. dragon: {
  35219. height: math.unit(5, "meters"),
  35220. name: "Dragon",
  35221. image: {
  35222. source: "./media/characters/sabrina/dragon.svg",
  35223. extra: 3670 / 2365,
  35224. bottom: 333 / 4003
  35225. }
  35226. },
  35227. gryphon: {
  35228. height: math.unit(3, "meters"),
  35229. name: "Gryphon",
  35230. image: {
  35231. source: "./media/characters/sabrina/gryphon.svg",
  35232. extra: 1576 / 945,
  35233. bottom: 71 / 1647
  35234. }
  35235. },
  35236. snake: {
  35237. height: math.unit(12, "meters"),
  35238. name: "Snake",
  35239. image: {
  35240. source: "./media/characters/sabrina/snake.svg",
  35241. extra: 1758 / 1320,
  35242. bottom: 186 / 1944
  35243. }
  35244. },
  35245. collar: {
  35246. height: math.unit(1.86, "meters"),
  35247. name: "Collar",
  35248. image: {
  35249. source: "./media/characters/sabrina/collar.svg"
  35250. }
  35251. },
  35252. eye: {
  35253. height: math.unit(0.53, "meters"),
  35254. name: "Eye",
  35255. image: {
  35256. source: "./media/characters/sabrina/eye.svg"
  35257. }
  35258. },
  35259. foot: {
  35260. height: math.unit(1.86, "meters"),
  35261. name: "Foot",
  35262. image: {
  35263. source: "./media/characters/sabrina/foot.svg"
  35264. }
  35265. },
  35266. hand: {
  35267. height: math.unit(1.32, "meters"),
  35268. name: "Hand",
  35269. image: {
  35270. source: "./media/characters/sabrina/hand.svg"
  35271. }
  35272. },
  35273. head: {
  35274. height: math.unit(2.44, "meters"),
  35275. name: "Head",
  35276. image: {
  35277. source: "./media/characters/sabrina/head.svg"
  35278. }
  35279. },
  35280. headAngry: {
  35281. height: math.unit(2.44, "meters"),
  35282. name: "Head (Angry))",
  35283. image: {
  35284. source: "./media/characters/sabrina/head-angry.svg"
  35285. }
  35286. },
  35287. maw: {
  35288. height: math.unit(1.65, "meters"),
  35289. name: "Maw",
  35290. image: {
  35291. source: "./media/characters/sabrina/maw.svg"
  35292. }
  35293. },
  35294. spikes: {
  35295. height: math.unit(1.69, "meters"),
  35296. name: "Spikes",
  35297. image: {
  35298. source: "./media/characters/sabrina/spikes.svg"
  35299. }
  35300. },
  35301. stomach: {
  35302. height: math.unit(1.15, "meters"),
  35303. name: "Stomach",
  35304. image: {
  35305. source: "./media/characters/sabrina/stomach.svg"
  35306. }
  35307. },
  35308. tongue: {
  35309. height: math.unit(1.27, "meters"),
  35310. name: "Tongue",
  35311. image: {
  35312. source: "./media/characters/sabrina/tongue.svg"
  35313. }
  35314. },
  35315. wingDorsal: {
  35316. height: math.unit(4.85, "meters"),
  35317. name: "Wing (Dorsal)",
  35318. image: {
  35319. source: "./media/characters/sabrina/wing-dorsal.svg"
  35320. }
  35321. },
  35322. wingVentral: {
  35323. height: math.unit(4.85, "meters"),
  35324. name: "Wing (Ventral)",
  35325. image: {
  35326. source: "./media/characters/sabrina/wing-ventral.svg"
  35327. }
  35328. },
  35329. },
  35330. [
  35331. {
  35332. name: "Normal",
  35333. height: math.unit(5, "meters"),
  35334. default: true
  35335. },
  35336. ]
  35337. ))
  35338. characterMakers.push(() => makeCharacter(
  35339. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35340. {
  35341. frontMaid: {
  35342. height: math.unit(5 + 5/12, "feet"),
  35343. weight: math.unit(130, "lb"),
  35344. name: "Front (Maid)",
  35345. image: {
  35346. source: "./media/characters/midnight-tales/front-maid.svg",
  35347. extra: 489/454,
  35348. bottom: 61/550
  35349. }
  35350. },
  35351. frontFormal: {
  35352. height: math.unit(5 + 5/12, "feet"),
  35353. weight: math.unit(130, "lb"),
  35354. name: "Front (Formal)",
  35355. image: {
  35356. source: "./media/characters/midnight-tales/front-formal.svg",
  35357. extra: 489/454,
  35358. bottom: 61/550
  35359. }
  35360. },
  35361. back: {
  35362. height: math.unit(5 + 5/12, "feet"),
  35363. weight: math.unit(130, "lb"),
  35364. name: "Back",
  35365. image: {
  35366. source: "./media/characters/midnight-tales/back.svg",
  35367. extra: 498/456,
  35368. bottom: 33/531
  35369. }
  35370. },
  35371. frontBeast: {
  35372. height: math.unit(40, "feet"),
  35373. weight: math.unit(64000, "lb"),
  35374. name: "Front (Beast)",
  35375. image: {
  35376. source: "./media/characters/midnight-tales/front-beast.svg",
  35377. extra: 927/860,
  35378. bottom: 53/980
  35379. }
  35380. },
  35381. backBeast: {
  35382. height: math.unit(40, "feet"),
  35383. weight: math.unit(64000, "lb"),
  35384. name: "Back (Beast)",
  35385. image: {
  35386. source: "./media/characters/midnight-tales/back-beast.svg",
  35387. extra: 929/855,
  35388. bottom: 16/945
  35389. }
  35390. },
  35391. footBeast: {
  35392. height: math.unit(6.7, "feet"),
  35393. name: "Foot (Beast)",
  35394. image: {
  35395. source: "./media/characters/midnight-tales/foot-beast.svg"
  35396. }
  35397. },
  35398. headBeast: {
  35399. height: math.unit(8, "feet"),
  35400. name: "Head (Beast)",
  35401. image: {
  35402. source: "./media/characters/midnight-tales/head-beast.svg"
  35403. }
  35404. },
  35405. },
  35406. [
  35407. {
  35408. name: "Normal",
  35409. height: math.unit(5 + 5 / 12, "feet"),
  35410. default: true
  35411. },
  35412. {
  35413. name: "Macro",
  35414. height: math.unit(25, "feet")
  35415. },
  35416. ]
  35417. ))
  35418. characterMakers.push(() => makeCharacter(
  35419. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35420. {
  35421. front: {
  35422. height: math.unit(5 + 10/12, "feet"),
  35423. name: "Front",
  35424. image: {
  35425. source: "./media/characters/argon/front.svg",
  35426. extra: 2009/1935,
  35427. bottom: 118/2127
  35428. }
  35429. },
  35430. back: {
  35431. height: math.unit(5 + 10/12, "feet"),
  35432. name: "Back",
  35433. image: {
  35434. source: "./media/characters/argon/back.svg",
  35435. extra: 2047/1992,
  35436. bottom: 20/2067
  35437. }
  35438. },
  35439. frontDressed: {
  35440. height: math.unit(5 + 10/12, "feet"),
  35441. name: "Front (Dressed)",
  35442. image: {
  35443. source: "./media/characters/argon/front-dressed.svg",
  35444. extra: 2009/1935,
  35445. bottom: 118/2127
  35446. }
  35447. },
  35448. },
  35449. [
  35450. {
  35451. name: "Normal",
  35452. height: math.unit(5 + 10/12, "feet"),
  35453. default: true
  35454. },
  35455. ]
  35456. ))
  35457. characterMakers.push(() => makeCharacter(
  35458. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35459. {
  35460. front: {
  35461. height: math.unit(8 + 6/12, "feet"),
  35462. weight: math.unit(1150, "lb"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/kichi/front.svg",
  35466. extra: 1267/1164,
  35467. bottom: 61/1328
  35468. }
  35469. },
  35470. back: {
  35471. height: math.unit(8 + 6/12, "feet"),
  35472. weight: math.unit(1150, "lb"),
  35473. name: "Back",
  35474. image: {
  35475. source: "./media/characters/kichi/back.svg",
  35476. extra: 1273/1166,
  35477. bottom: 33/1306
  35478. }
  35479. },
  35480. },
  35481. [
  35482. {
  35483. name: "Normal",
  35484. height: math.unit(8 + 6/12, "feet"),
  35485. default: true
  35486. },
  35487. ]
  35488. ))
  35489. characterMakers.push(() => makeCharacter(
  35490. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35491. {
  35492. front: {
  35493. height: math.unit(6, "feet"),
  35494. weight: math.unit(210, "lb"),
  35495. name: "Front",
  35496. image: {
  35497. source: "./media/characters/manetel-greyscale/front.svg",
  35498. extra: 350/312,
  35499. bottom: 8/358
  35500. }
  35501. },
  35502. },
  35503. [
  35504. {
  35505. name: "Micro",
  35506. height: math.unit(2, "inches")
  35507. },
  35508. {
  35509. name: "Normal",
  35510. height: math.unit(6, "feet"),
  35511. default: true
  35512. },
  35513. {
  35514. name: "Minimacro",
  35515. height: math.unit(17, "feet")
  35516. },
  35517. {
  35518. name: "Macro",
  35519. height: math.unit(117, "feet")
  35520. },
  35521. ]
  35522. ))
  35523. characterMakers.push(() => makeCharacter(
  35524. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35525. {
  35526. side: {
  35527. height: math.unit(5 + 1/12, "feet"),
  35528. weight: math.unit(418, "lb"),
  35529. name: "Side",
  35530. image: {
  35531. source: "./media/characters/softpurr/side.svg",
  35532. extra: 1993/1945,
  35533. bottom: 134/2127
  35534. }
  35535. },
  35536. front: {
  35537. height: math.unit(5 + 1/12, "feet"),
  35538. weight: math.unit(418, "lb"),
  35539. name: "Front",
  35540. image: {
  35541. source: "./media/characters/softpurr/front.svg",
  35542. extra: 1950/1856,
  35543. bottom: 174/2124
  35544. }
  35545. },
  35546. paw: {
  35547. height: math.unit(1, "feet"),
  35548. name: "Paw",
  35549. image: {
  35550. source: "./media/characters/softpurr/paw.svg"
  35551. }
  35552. },
  35553. },
  35554. [
  35555. {
  35556. name: "Normal",
  35557. height: math.unit(5 + 1/12, "feet"),
  35558. default: true
  35559. },
  35560. ]
  35561. ))
  35562. characterMakers.push(() => makeCharacter(
  35563. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35564. {
  35565. front: {
  35566. height: math.unit(260, "meters"),
  35567. name: "Front",
  35568. image: {
  35569. source: "./media/characters/anahita/front.svg",
  35570. extra: 665/635,
  35571. bottom: 89/754
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Macro",
  35578. height: math.unit(260, "meters"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(4 + 10/12, "feet"),
  35588. weight: math.unit(160, "lb"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/chip-mouse/front.svg",
  35592. extra: 3528/3408,
  35593. bottom: 0/3528
  35594. }
  35595. },
  35596. frontNsfw: {
  35597. height: math.unit(4 + 10/12, "feet"),
  35598. weight: math.unit(160, "lb"),
  35599. name: "Front (NSFW)",
  35600. image: {
  35601. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35602. extra: 3528/3408,
  35603. bottom: 0/3528
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(4 + 10/12, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35617. {
  35618. side: {
  35619. height: math.unit(10, "feet"),
  35620. weight: math.unit(14000, "lb"),
  35621. name: "Side",
  35622. image: {
  35623. source: "./media/characters/kremm/side.svg",
  35624. extra: 1390/1053,
  35625. bottom: 90/1480
  35626. }
  35627. },
  35628. gut: {
  35629. height: math.unit(5.8, "feet"),
  35630. name: "Gut",
  35631. image: {
  35632. source: "./media/characters/kremm/gut.svg"
  35633. }
  35634. },
  35635. ass: {
  35636. height: math.unit(6.1, "feet"),
  35637. name: "Ass",
  35638. image: {
  35639. source: "./media/characters/kremm/ass.svg"
  35640. }
  35641. },
  35642. jaws: {
  35643. height: math.unit(2.2, "feet"),
  35644. name: "Jaws",
  35645. image: {
  35646. source: "./media/characters/kremm/jaws.svg"
  35647. }
  35648. },
  35649. dick: {
  35650. height: math.unit(4.26, "feet"),
  35651. name: "Dick",
  35652. image: {
  35653. source: "./media/characters/kremm/dick.svg"
  35654. }
  35655. },
  35656. },
  35657. [
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(10, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(30, "stories"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/kai/front.svg",
  35673. extra: 1892/1718,
  35674. bottom: 162/2054
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Macro",
  35681. height: math.unit(30, "stories"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(6 + 4/12, "feet"),
  35691. weight: math.unit(145, "lb"),
  35692. name: "Front",
  35693. image: {
  35694. source: "./media/characters/sykes/front.svg",
  35695. extra: 1321 / 1187,
  35696. bottom: 66 / 1387
  35697. }
  35698. },
  35699. back: {
  35700. height: math.unit(6 + 4/12, "feet"),
  35701. weight: math.unit(145, "lb"),
  35702. name: "Back",
  35703. image: {
  35704. source: "./media/characters/sykes/back.svg",
  35705. extra: 1326/1181,
  35706. bottom: 31/1357
  35707. }
  35708. },
  35709. traditionalOutfit: {
  35710. height: math.unit(6 + 4/12, "feet"),
  35711. weight: math.unit(145, "lb"),
  35712. name: "Traditional Outfit",
  35713. image: {
  35714. source: "./media/characters/sykes/traditional-outfit.svg",
  35715. extra: 1321 / 1187,
  35716. bottom: 66 / 1387
  35717. }
  35718. },
  35719. adventureOutfit: {
  35720. height: math.unit(6 + 4/12, "feet"),
  35721. weight: math.unit(145, "lb"),
  35722. name: "Adventure Outfit",
  35723. image: {
  35724. source: "./media/characters/sykes/adventure-outfit.svg",
  35725. extra: 1321 / 1187,
  35726. bottom: 66 / 1387
  35727. }
  35728. },
  35729. handLeft: {
  35730. height: math.unit(0.9, "feet"),
  35731. name: "Hand (Left)",
  35732. image: {
  35733. source: "./media/characters/sykes/hand-left.svg"
  35734. }
  35735. },
  35736. handRight: {
  35737. height: math.unit(0.839, "feet"),
  35738. name: "Hand (Right)",
  35739. image: {
  35740. source: "./media/characters/sykes/hand-right.svg"
  35741. }
  35742. },
  35743. leftFoot: {
  35744. height: math.unit(1.2, "feet"),
  35745. name: "Foot (Left)",
  35746. image: {
  35747. source: "./media/characters/sykes/foot-left.svg"
  35748. }
  35749. },
  35750. rightFoot: {
  35751. height: math.unit(1.2, "feet"),
  35752. name: "Foot (Right)",
  35753. image: {
  35754. source: "./media/characters/sykes/foot-right.svg"
  35755. }
  35756. },
  35757. maw: {
  35758. height: math.unit(1.93, "feet"),
  35759. name: "Maw",
  35760. image: {
  35761. source: "./media/characters/sykes/maw.svg"
  35762. }
  35763. },
  35764. teeth: {
  35765. height: math.unit(0.51, "feet"),
  35766. name: "Teeth",
  35767. image: {
  35768. source: "./media/characters/sykes/teeth.svg"
  35769. }
  35770. },
  35771. tongue: {
  35772. height: math.unit(2.13, "feet"),
  35773. name: "Tongue",
  35774. image: {
  35775. source: "./media/characters/sykes/tongue.svg"
  35776. }
  35777. },
  35778. uvula: {
  35779. height: math.unit(0.16, "feet"),
  35780. name: "Uvula",
  35781. image: {
  35782. source: "./media/characters/sykes/uvula.svg"
  35783. }
  35784. },
  35785. collar: {
  35786. height: math.unit(0.287, "feet"),
  35787. name: "Collar",
  35788. image: {
  35789. source: "./media/characters/sykes/collar.svg"
  35790. }
  35791. },
  35792. tail: {
  35793. height: math.unit(3.8, "feet"),
  35794. name: "Tail",
  35795. image: {
  35796. source: "./media/characters/sykes/tail.svg"
  35797. }
  35798. },
  35799. },
  35800. [
  35801. {
  35802. name: "Shrunken",
  35803. height: math.unit(5, "inches")
  35804. },
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(6 + 4 / 12, "feet"),
  35808. default: true
  35809. },
  35810. {
  35811. name: "Big",
  35812. height: math.unit(15, "feet")
  35813. },
  35814. ]
  35815. ))
  35816. characterMakers.push(() => makeCharacter(
  35817. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35818. {
  35819. front: {
  35820. height: math.unit(5 + 8/12, "feet"),
  35821. weight: math.unit(190, "lb"),
  35822. name: "Front",
  35823. image: {
  35824. source: "./media/characters/oven-otter/front.svg",
  35825. extra: 1809/1740,
  35826. bottom: 181/1990
  35827. }
  35828. },
  35829. back: {
  35830. height: math.unit(5 + 8/12, "feet"),
  35831. weight: math.unit(190, "lb"),
  35832. name: "Back",
  35833. image: {
  35834. source: "./media/characters/oven-otter/back.svg",
  35835. extra: 1709/1635,
  35836. bottom: 118/1827
  35837. }
  35838. },
  35839. hand: {
  35840. height: math.unit(1.07, "feet"),
  35841. name: "Hand",
  35842. image: {
  35843. source: "./media/characters/oven-otter/hand.svg"
  35844. }
  35845. },
  35846. beans: {
  35847. height: math.unit(1.74, "feet"),
  35848. name: "Beans",
  35849. image: {
  35850. source: "./media/characters/oven-otter/beans.svg"
  35851. }
  35852. },
  35853. },
  35854. [
  35855. {
  35856. name: "Micro",
  35857. height: math.unit(0.5, "inches")
  35858. },
  35859. {
  35860. name: "Normal",
  35861. height: math.unit(5 + 8/12, "feet"),
  35862. default: true
  35863. },
  35864. {
  35865. name: "Macro",
  35866. height: math.unit(250, "feet")
  35867. },
  35868. {
  35869. name: "Really High",
  35870. height: math.unit(420, "feet")
  35871. },
  35872. ]
  35873. ))
  35874. characterMakers.push(() => makeCharacter(
  35875. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35876. {
  35877. front: {
  35878. height: math.unit(5, "meters"),
  35879. weight: math.unit(292000000000000, "kg"),
  35880. name: "Front",
  35881. image: {
  35882. source: "./media/characters/devourer/front.svg",
  35883. extra: 1800/1733,
  35884. bottom: 211/2011
  35885. }
  35886. },
  35887. maw: {
  35888. height: math.unit(1.1, "meter"),
  35889. name: "Maw",
  35890. image: {
  35891. source: "./media/characters/devourer/maw.svg"
  35892. }
  35893. },
  35894. },
  35895. [
  35896. {
  35897. name: "Small",
  35898. height: math.unit(3, "meters")
  35899. },
  35900. {
  35901. name: "Large",
  35902. height: math.unit(5, "meters"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35909. {
  35910. front: {
  35911. height: math.unit(6, "feet"),
  35912. weight: math.unit(400, "lb"),
  35913. name: "Front",
  35914. image: {
  35915. source: "./media/characters/ellarby/front.svg",
  35916. extra: 1909/1763,
  35917. bottom: 80/1989
  35918. }
  35919. },
  35920. back: {
  35921. height: math.unit(6, "feet"),
  35922. weight: math.unit(400, "lb"),
  35923. name: "Back",
  35924. image: {
  35925. source: "./media/characters/ellarby/back.svg",
  35926. extra: 1914/1784,
  35927. bottom: 172/2086
  35928. }
  35929. },
  35930. },
  35931. [
  35932. {
  35933. name: "Mischief",
  35934. height: math.unit(18, "inches")
  35935. },
  35936. {
  35937. name: "Trouble",
  35938. height: math.unit(12, "feet")
  35939. },
  35940. {
  35941. name: "Havoc",
  35942. height: math.unit(200, "feet"),
  35943. default: true
  35944. },
  35945. {
  35946. name: "Pandemonium",
  35947. height: math.unit(1, "mile")
  35948. },
  35949. {
  35950. name: "Catastrophe",
  35951. height: math.unit(100, "miles")
  35952. },
  35953. ]
  35954. ))
  35955. characterMakers.push(() => makeCharacter(
  35956. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35957. {
  35958. front: {
  35959. height: math.unit(4.7, "meters"),
  35960. weight: math.unit(6500, "kg"),
  35961. name: "Front",
  35962. image: {
  35963. source: "./media/characters/vex/front.svg",
  35964. extra: 1288/1140,
  35965. bottom: 100/1388
  35966. }
  35967. },
  35968. },
  35969. [
  35970. {
  35971. name: "Normal",
  35972. height: math.unit(4.7, "meters"),
  35973. default: true
  35974. },
  35975. ]
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35979. {
  35980. normal: {
  35981. height: math.unit(6, "feet"),
  35982. weight: math.unit(350, "lb"),
  35983. name: "Normal",
  35984. image: {
  35985. source: "./media/characters/teshy/normal.svg",
  35986. extra: 1795/1735,
  35987. bottom: 16/1811
  35988. }
  35989. },
  35990. monsterFront: {
  35991. height: math.unit(12, "feet"),
  35992. weight: math.unit(4700, "lb"),
  35993. name: "Monster (Front)",
  35994. image: {
  35995. source: "./media/characters/teshy/monster-front.svg",
  35996. extra: 2042/2034,
  35997. bottom: 128/2170
  35998. }
  35999. },
  36000. monsterSide: {
  36001. height: math.unit(12, "feet"),
  36002. weight: math.unit(4700, "lb"),
  36003. name: "Monster (Side)",
  36004. image: {
  36005. source: "./media/characters/teshy/monster-side.svg",
  36006. extra: 2067/2056,
  36007. bottom: 70/2137
  36008. }
  36009. },
  36010. monsterBack: {
  36011. height: math.unit(12, "feet"),
  36012. weight: math.unit(4700, "lb"),
  36013. name: "Monster (Back)",
  36014. image: {
  36015. source: "./media/characters/teshy/monster-back.svg",
  36016. extra: 1921/1914,
  36017. bottom: 171/2092
  36018. }
  36019. },
  36020. },
  36021. [
  36022. {
  36023. name: "Normal",
  36024. height: math.unit(6, "feet"),
  36025. default: true
  36026. },
  36027. ]
  36028. ))
  36029. characterMakers.push(() => makeCharacter(
  36030. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36031. {
  36032. front: {
  36033. height: math.unit(6, "feet"),
  36034. name: "Front",
  36035. image: {
  36036. source: "./media/characters/ramey/front.svg",
  36037. extra: 790/787,
  36038. bottom: 27/817
  36039. }
  36040. },
  36041. },
  36042. [
  36043. {
  36044. name: "Normal",
  36045. height: math.unit(6, "feet"),
  36046. default: true
  36047. },
  36048. ]
  36049. ))
  36050. characterMakers.push(() => makeCharacter(
  36051. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36052. {
  36053. front: {
  36054. height: math.unit(5 + 5/12, "feet"),
  36055. weight: math.unit(120, "lb"),
  36056. name: "Front",
  36057. image: {
  36058. source: "./media/characters/phirae/front.svg",
  36059. extra: 2491/2436,
  36060. bottom: 38/2529
  36061. }
  36062. },
  36063. },
  36064. [
  36065. {
  36066. name: "Normal",
  36067. height: math.unit(5 + 5/12, "feet"),
  36068. default: true
  36069. },
  36070. ]
  36071. ))
  36072. characterMakers.push(() => makeCharacter(
  36073. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36074. {
  36075. front: {
  36076. height: math.unit(5 + 3/12, "feet"),
  36077. name: "Front",
  36078. image: {
  36079. source: "./media/characters/stagglas/front.svg",
  36080. extra: 962/882,
  36081. bottom: 53/1015
  36082. }
  36083. },
  36084. feral: {
  36085. height: math.unit(335, "cm"),
  36086. name: "Feral",
  36087. image: {
  36088. source: "./media/characters/stagglas/feral.svg",
  36089. extra: 1732/1090,
  36090. bottom: 48/1780
  36091. }
  36092. },
  36093. },
  36094. [
  36095. {
  36096. name: "Normal",
  36097. height: math.unit(5 + 3/12, "feet"),
  36098. default: true
  36099. },
  36100. ]
  36101. ))
  36102. characterMakers.push(() => makeCharacter(
  36103. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36104. {
  36105. front: {
  36106. height: math.unit(5 + 4/12, "feet"),
  36107. weight: math.unit(145, "lb"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/starra/front.svg",
  36111. extra: 1790/1691,
  36112. bottom: 91/1881
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(5 + 4/12, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(2.2, "meters"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36132. extra: 1248/972,
  36133. bottom: 38/1286
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(2.2, "meters"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36147. {
  36148. side: {
  36149. height: math.unit(8 + 2/12, "feet"),
  36150. weight: math.unit(1240, "lb"),
  36151. name: "Side",
  36152. image: {
  36153. source: "./media/characters/mika-valentine/side.svg",
  36154. extra: 2670/2501,
  36155. bottom: 250/2920
  36156. }
  36157. },
  36158. },
  36159. [
  36160. {
  36161. name: "Normal",
  36162. height: math.unit(8 + 2/12, "feet"),
  36163. default: true
  36164. },
  36165. ]
  36166. ))
  36167. characterMakers.push(() => makeCharacter(
  36168. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36169. {
  36170. front: {
  36171. height: math.unit(7 + 2/12, "feet"),
  36172. name: "Front",
  36173. image: {
  36174. source: "./media/characters/xoltol/front.svg",
  36175. extra: 2212/2124,
  36176. bottom: 84/2296
  36177. }
  36178. },
  36179. side: {
  36180. height: math.unit(7 + 2/12, "feet"),
  36181. name: "Side",
  36182. image: {
  36183. source: "./media/characters/xoltol/side.svg",
  36184. extra: 2273/2197,
  36185. bottom: 26/2299
  36186. }
  36187. },
  36188. hand: {
  36189. height: math.unit(2.5, "feet"),
  36190. name: "Hand",
  36191. image: {
  36192. source: "./media/characters/xoltol/hand.svg"
  36193. }
  36194. },
  36195. },
  36196. [
  36197. {
  36198. name: "Small-ish",
  36199. height: math.unit(5 + 11/12, "feet")
  36200. },
  36201. {
  36202. name: "Normal",
  36203. height: math.unit(7 + 2/12, "feet")
  36204. },
  36205. {
  36206. name: "\"Macro\"",
  36207. height: math.unit(14 + 9/12, "feet"),
  36208. default: true
  36209. },
  36210. {
  36211. name: "Alternate Height",
  36212. height: math.unit(20, "feet")
  36213. },
  36214. {
  36215. name: "Actually Macro",
  36216. height: math.unit(100, "feet")
  36217. },
  36218. ]
  36219. ))
  36220. characterMakers.push(() => makeCharacter(
  36221. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36222. {
  36223. front: {
  36224. height: math.unit(5 + 2/12, "feet"),
  36225. name: "Front",
  36226. image: {
  36227. source: "./media/characters/kotetsu-redwood/front.svg",
  36228. extra: 1053/942,
  36229. bottom: 60/1113
  36230. }
  36231. },
  36232. },
  36233. [
  36234. {
  36235. name: "Normal",
  36236. height: math.unit(5 + 2/12, "feet"),
  36237. default: true
  36238. },
  36239. ]
  36240. ))
  36241. characterMakers.push(() => makeCharacter(
  36242. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36243. {
  36244. front: {
  36245. height: math.unit(2.4, "meters"),
  36246. weight: math.unit(125, "kg"),
  36247. name: "Front",
  36248. image: {
  36249. source: "./media/characters/lilith/front.svg",
  36250. extra: 1590/1513,
  36251. bottom: 203/1793
  36252. }
  36253. },
  36254. },
  36255. [
  36256. {
  36257. name: "Humanoid",
  36258. height: math.unit(2.4, "meters")
  36259. },
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(6, "meters"),
  36263. default: true
  36264. },
  36265. {
  36266. name: "Largest",
  36267. height: math.unit(55, "meters")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(8 + 4/12, "feet"),
  36276. weight: math.unit(535, "lb"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/beh'kah-bolger/front.svg",
  36280. extra: 1660/1603,
  36281. bottom: 37/1697
  36282. }
  36283. },
  36284. },
  36285. [
  36286. {
  36287. name: "Normal",
  36288. height: math.unit(8 + 4/12, "feet"),
  36289. default: true
  36290. },
  36291. {
  36292. name: "Kaiju",
  36293. height: math.unit(250, "feet")
  36294. },
  36295. {
  36296. name: "Still Growing",
  36297. height: math.unit(10, "miles")
  36298. },
  36299. {
  36300. name: "Continental",
  36301. height: math.unit(5000, "miles")
  36302. },
  36303. {
  36304. name: "Final Form",
  36305. height: math.unit(2500000, "miles")
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36311. {
  36312. front: {
  36313. height: math.unit(7 + 2/12, "feet"),
  36314. weight: math.unit(230, "kg"),
  36315. name: "Front",
  36316. image: {
  36317. source: "./media/characters/tatyana-milewska/front.svg",
  36318. extra: 1199/1150,
  36319. bottom: 86/1285
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(7 + 2/12, "feet"),
  36327. default: true
  36328. },
  36329. {
  36330. name: "Big",
  36331. height: math.unit(12, "feet")
  36332. },
  36333. {
  36334. name: "Minimacro",
  36335. height: math.unit(20, "feet")
  36336. },
  36337. {
  36338. name: "Macro",
  36339. height: math.unit(120, "feet")
  36340. },
  36341. ]
  36342. ))
  36343. characterMakers.push(() => makeCharacter(
  36344. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36345. {
  36346. front: {
  36347. height: math.unit(7 + 8/12, "feet"),
  36348. weight: math.unit(152, "kg"),
  36349. name: "Front",
  36350. image: {
  36351. source: "./media/characters/helen-arri/front.svg",
  36352. extra: 440/423,
  36353. bottom: 14/454
  36354. }
  36355. },
  36356. back: {
  36357. height: math.unit(7 + 8/12, "feet"),
  36358. weight: math.unit(152, "kg"),
  36359. name: "Back",
  36360. image: {
  36361. source: "./media/characters/helen-arri/back.svg",
  36362. extra: 443/426,
  36363. bottom: 8/451
  36364. }
  36365. },
  36366. },
  36367. [
  36368. {
  36369. name: "Normal",
  36370. height: math.unit(7 + 8/12, "feet"),
  36371. default: true
  36372. },
  36373. {
  36374. name: "Big",
  36375. height: math.unit(14, "feet")
  36376. },
  36377. {
  36378. name: "Minimacro",
  36379. height: math.unit(24, "feet")
  36380. },
  36381. {
  36382. name: "Macro",
  36383. height: math.unit(140, "feet")
  36384. },
  36385. ]
  36386. ))
  36387. characterMakers.push(() => makeCharacter(
  36388. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36389. {
  36390. front: {
  36391. height: math.unit(6, "meters"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/ehanu-rehu/front.svg",
  36395. extra: 1800/1800,
  36396. bottom: 59/1859
  36397. }
  36398. },
  36399. },
  36400. [
  36401. {
  36402. name: "Normal",
  36403. height: math.unit(6, "meters"),
  36404. default: true
  36405. },
  36406. ]
  36407. ))
  36408. characterMakers.push(() => makeCharacter(
  36409. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36410. {
  36411. front: {
  36412. height: math.unit(7 + 3/12, "feet"),
  36413. name: "Front",
  36414. image: {
  36415. source: "./media/characters/renholder/front.svg",
  36416. extra: 3096/2960,
  36417. bottom: 250/3346
  36418. }
  36419. },
  36420. },
  36421. [
  36422. {
  36423. name: "Normal Bat",
  36424. height: math.unit(7 + 3/12, "feet"),
  36425. default: true
  36426. },
  36427. {
  36428. name: "Slightly Tall Bat",
  36429. height: math.unit(100, "feet")
  36430. },
  36431. {
  36432. name: "Big Bat",
  36433. height: math.unit(1000, "feet")
  36434. },
  36435. {
  36436. name: "City-Sized Bat",
  36437. height: math.unit(200000, "feet")
  36438. },
  36439. {
  36440. name: "Bigger Bat",
  36441. height: math.unit(10000, "miles")
  36442. },
  36443. {
  36444. name: "Solar Sized Bat",
  36445. height: math.unit(100, "AU")
  36446. },
  36447. {
  36448. name: "Galactic Bat",
  36449. height: math.unit(200000, "lightyears")
  36450. },
  36451. {
  36452. name: "Universally Known Bat",
  36453. height: math.unit(1, "universe")
  36454. },
  36455. ]
  36456. ))
  36457. characterMakers.push(() => makeCharacter(
  36458. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36459. {
  36460. front: {
  36461. height: math.unit(6 + 11/12, "feet"),
  36462. weight: math.unit(250, "lb"),
  36463. name: "Front",
  36464. image: {
  36465. source: "./media/characters/cookiecat/front.svg",
  36466. extra: 893/827,
  36467. bottom: 14/907
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Micro",
  36474. height: math.unit(3, "inches")
  36475. },
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(6 + 11/12, "feet"),
  36479. default: true
  36480. },
  36481. {
  36482. name: "Macro",
  36483. height: math.unit(100, "feet")
  36484. },
  36485. {
  36486. name: "Macro+",
  36487. height: math.unit(404, "feet")
  36488. },
  36489. {
  36490. name: "Megamacro",
  36491. height: math.unit(165, "miles")
  36492. },
  36493. {
  36494. name: "Planetary",
  36495. height: math.unit(4600, "miles")
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(10 + 3/12, "feet"),
  36504. weight: math.unit(1500, "lb"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/tux-kusanagi/front.svg",
  36508. extra: 944/840,
  36509. bottom: 39/983
  36510. }
  36511. },
  36512. back: {
  36513. height: math.unit(10 + 3/12, "feet"),
  36514. weight: math.unit(1500, "lb"),
  36515. name: "Back",
  36516. image: {
  36517. source: "./media/characters/tux-kusanagi/back.svg",
  36518. extra: 941/842,
  36519. bottom: 28/969
  36520. }
  36521. },
  36522. rump: {
  36523. height: math.unit(5.25, "feet"),
  36524. name: "Rump",
  36525. image: {
  36526. source: "./media/characters/tux-kusanagi/rump.svg"
  36527. }
  36528. },
  36529. beak: {
  36530. height: math.unit(1.54, "feet"),
  36531. name: "Beak",
  36532. image: {
  36533. source: "./media/characters/tux-kusanagi/beak.svg"
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(10 + 3/12, "feet"),
  36541. default: true
  36542. },
  36543. ]
  36544. ))
  36545. characterMakers.push(() => makeCharacter(
  36546. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36547. {
  36548. front: {
  36549. height: math.unit(58, "feet"),
  36550. weight: math.unit(200, "tons"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/uzarmazari/front.svg",
  36554. extra: 1575/1455,
  36555. bottom: 152/1727
  36556. }
  36557. },
  36558. back: {
  36559. height: math.unit(58, "feet"),
  36560. weight: math.unit(200, "tons"),
  36561. name: "Back",
  36562. image: {
  36563. source: "./media/characters/uzarmazari/back.svg",
  36564. extra: 1585/1510,
  36565. bottom: 157/1742
  36566. }
  36567. },
  36568. head: {
  36569. height: math.unit(26, "feet"),
  36570. name: "Head",
  36571. image: {
  36572. source: "./media/characters/uzarmazari/head.svg"
  36573. }
  36574. },
  36575. },
  36576. [
  36577. {
  36578. name: "Normal",
  36579. height: math.unit(58, "feet"),
  36580. default: true
  36581. },
  36582. ]
  36583. ))
  36584. characterMakers.push(() => makeCharacter(
  36585. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36586. {
  36587. side: {
  36588. height: math.unit(15, "feet"),
  36589. name: "Side",
  36590. image: {
  36591. source: "./media/characters/akitu/side.svg",
  36592. extra: 1421/1321,
  36593. bottom: 157/1578
  36594. }
  36595. },
  36596. front: {
  36597. height: math.unit(15, "feet"),
  36598. name: "Front",
  36599. image: {
  36600. source: "./media/characters/akitu/front.svg",
  36601. extra: 1435/1326,
  36602. bottom: 232/1667
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(15, "feet"),
  36610. default: true
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36616. {
  36617. front: {
  36618. height: math.unit(10 + 8/12, "feet"),
  36619. name: "Front",
  36620. image: {
  36621. source: "./media/characters/azalie-croixland/front.svg",
  36622. extra: 1972/1856,
  36623. bottom: 31/2003
  36624. }
  36625. },
  36626. },
  36627. [
  36628. {
  36629. name: "Original Height",
  36630. height: math.unit(5 + 4/12, "feet")
  36631. },
  36632. {
  36633. name: "Normal Height",
  36634. height: math.unit(10 + 8/12, "feet"),
  36635. default: true
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36641. {
  36642. side: {
  36643. height: math.unit(7 + 1/12, "feet"),
  36644. weight: math.unit(245, "lb"),
  36645. name: "Side",
  36646. image: {
  36647. source: "./media/characters/kavus-kazian/side.svg",
  36648. extra: 349/342,
  36649. bottom: 15/364
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(7 + 1/12, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36663. {
  36664. normalFront: {
  36665. height: math.unit(5 + 11/12, "feet"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/moonlight-rose/normal-front.svg",
  36669. extra: 1980/1825,
  36670. bottom: 18/1998
  36671. },
  36672. form: "normal",
  36673. default: true
  36674. },
  36675. normalBack: {
  36676. height: math.unit(5 + 11/12, "feet"),
  36677. name: "Back",
  36678. image: {
  36679. source: "./media/characters/moonlight-rose/normal-back.svg",
  36680. extra: 2010/1839,
  36681. bottom: 10/2020
  36682. },
  36683. form: "normal"
  36684. },
  36685. demonFront: {
  36686. height: math.unit(1.5, "earths"),
  36687. name: "Front",
  36688. image: {
  36689. source: "./media/characters/moonlight-rose/demon.svg",
  36690. extra: 1400/1294,
  36691. bottom: 45/1445
  36692. },
  36693. form: "demon",
  36694. default: true
  36695. },
  36696. terraFront: {
  36697. height: math.unit(1.5, "earths"),
  36698. name: "Front",
  36699. image: {
  36700. source: "./media/characters/moonlight-rose/terra.svg"
  36701. },
  36702. form: "terra",
  36703. default: true
  36704. },
  36705. jupiterFront: {
  36706. height: math.unit(69911*2, "km"),
  36707. name: "Front",
  36708. image: {
  36709. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36710. extra: 1367/1286,
  36711. bottom: 55/1422
  36712. },
  36713. form: "jupiter",
  36714. default: true
  36715. },
  36716. neptuneFront: {
  36717. height: math.unit(24622*2, "feet"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36721. extra: 1851/1712,
  36722. bottom: 0/1851
  36723. },
  36724. form: "neptune",
  36725. default: true
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "\"Natural\" Height",
  36731. height: math.unit(5 + 11/12, "feet"),
  36732. form: "normal"
  36733. },
  36734. {
  36735. name: "Smallest comfortable size",
  36736. height: math.unit(40, "meters"),
  36737. form: "normal"
  36738. },
  36739. {
  36740. name: "Common size",
  36741. height: math.unit(50, "km"),
  36742. form: "normal",
  36743. default: true
  36744. },
  36745. {
  36746. name: "Normal",
  36747. height: math.unit(1.5, "earths"),
  36748. form: "demon",
  36749. default: true
  36750. },
  36751. {
  36752. name: "Universal",
  36753. height: math.unit(15, "universes"),
  36754. form: "demon"
  36755. },
  36756. {
  36757. name: "Earth",
  36758. height: math.unit(1.5, "earths"),
  36759. form: "terra",
  36760. default: true
  36761. },
  36762. {
  36763. name: "Super Earth",
  36764. height: math.unit(67.5, "earths"),
  36765. form: "terra"
  36766. },
  36767. {
  36768. name: "Doesn't fit in a solar system...",
  36769. height: math.unit(1, "galaxy"),
  36770. form: "terra"
  36771. },
  36772. {
  36773. name: "Saturn",
  36774. height: math.unit(58232*2, "km"),
  36775. form: "jupiter"
  36776. },
  36777. {
  36778. name: "Jupiter",
  36779. height: math.unit(69911*2, "km"),
  36780. form: "jupiter",
  36781. default: true
  36782. },
  36783. {
  36784. name: "HD 100546 b",
  36785. height: math.unit(482938, "km"),
  36786. form: "jupiter"
  36787. },
  36788. {
  36789. name: "Enceladus",
  36790. height: math.unit(513*2, "km"),
  36791. form: "neptune"
  36792. },
  36793. {
  36794. name: "Europe",
  36795. height: math.unit(1560*2, "km"),
  36796. form: "neptune"
  36797. },
  36798. {
  36799. name: "Neptune",
  36800. height: math.unit(24622*2, "km"),
  36801. form: "neptune",
  36802. default: true
  36803. },
  36804. {
  36805. name: "CoRoT-9b",
  36806. height: math.unit(75067*2, "km"),
  36807. form: "neptune"
  36808. },
  36809. ],
  36810. {
  36811. "normal": {
  36812. name: "Normal",
  36813. default: true
  36814. },
  36815. "demon": {
  36816. name: "Demon"
  36817. },
  36818. "terra": {
  36819. name: "Terra"
  36820. },
  36821. "jupiter": {
  36822. name: "Jupiter"
  36823. },
  36824. "neptune": {
  36825. name: "Neptune"
  36826. }
  36827. }
  36828. ))
  36829. characterMakers.push(() => makeCharacter(
  36830. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36831. {
  36832. front: {
  36833. height: math.unit(16, "feet"),
  36834. weight: math.unit(610, "kg"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/huckle/front.svg",
  36838. extra: 1731/1625,
  36839. bottom: 33/1764
  36840. }
  36841. },
  36842. back: {
  36843. height: math.unit(16, "feet"),
  36844. weight: math.unit(610, "kg"),
  36845. name: "Back",
  36846. image: {
  36847. source: "./media/characters/huckle/back.svg",
  36848. extra: 1738/1651,
  36849. bottom: 37/1775
  36850. }
  36851. },
  36852. laughing: {
  36853. height: math.unit(3.75, "feet"),
  36854. name: "Laughing",
  36855. image: {
  36856. source: "./media/characters/huckle/laughing.svg"
  36857. }
  36858. },
  36859. angry: {
  36860. height: math.unit(4.15, "feet"),
  36861. name: "Angry",
  36862. image: {
  36863. source: "./media/characters/huckle/angry.svg"
  36864. }
  36865. },
  36866. },
  36867. [
  36868. {
  36869. name: "Normal",
  36870. height: math.unit(16, "feet"),
  36871. default: true
  36872. },
  36873. {
  36874. name: "Mini Macro",
  36875. height: math.unit(463, "feet")
  36876. },
  36877. {
  36878. name: "Macro",
  36879. height: math.unit(1680, "meters")
  36880. },
  36881. {
  36882. name: "Mega Macro",
  36883. height: math.unit(175, "km")
  36884. },
  36885. {
  36886. name: "Terra Macro",
  36887. height: math.unit(32, "gigameters")
  36888. },
  36889. {
  36890. name: "Multiverse+",
  36891. height: math.unit(2.56e23, "yottameters")
  36892. },
  36893. ]
  36894. ))
  36895. characterMakers.push(() => makeCharacter(
  36896. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36897. {
  36898. front: {
  36899. height: math.unit(6 + 9/12, "feet"),
  36900. weight: math.unit(280, "lb"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/candy/front.svg",
  36904. extra: 234/217,
  36905. bottom: 11/245
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Really Small",
  36912. height: math.unit(0.1, "nm")
  36913. },
  36914. {
  36915. name: "Micro",
  36916. height: math.unit(2, "inches")
  36917. },
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(6 + 9/12, "feet"),
  36921. default: true
  36922. },
  36923. {
  36924. name: "Small Macro",
  36925. height: math.unit(69, "feet")
  36926. },
  36927. {
  36928. name: "Macro",
  36929. height: math.unit(160, "feet")
  36930. },
  36931. {
  36932. name: "Megamacro",
  36933. height: math.unit(22000, "miles")
  36934. },
  36935. {
  36936. name: "Gigamacro",
  36937. height: math.unit(50000, "miles")
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(4, "feet"),
  36946. weight: math.unit(90, "lb"),
  36947. name: "Front",
  36948. image: {
  36949. source: "./media/characters/joey-mcdonald/front.svg",
  36950. extra: 1059/852,
  36951. bottom: 33/1092
  36952. }
  36953. },
  36954. back: {
  36955. height: math.unit(4, "feet"),
  36956. weight: math.unit(90, "lb"),
  36957. name: "Back",
  36958. image: {
  36959. source: "./media/characters/joey-mcdonald/back.svg",
  36960. extra: 1077/879,
  36961. bottom: 5/1082
  36962. }
  36963. },
  36964. frontKobold: {
  36965. height: math.unit(4, "feet"),
  36966. weight: math.unit(100, "lb"),
  36967. name: "Front-kobold",
  36968. image: {
  36969. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36970. extra: 1480/1367,
  36971. bottom: 0/1480
  36972. }
  36973. },
  36974. backKobold: {
  36975. height: math.unit(4, "feet"),
  36976. weight: math.unit(100, "lb"),
  36977. name: "Back-kobold",
  36978. image: {
  36979. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36980. extra: 1449/1361,
  36981. bottom: 0/1449
  36982. }
  36983. },
  36984. },
  36985. [
  36986. {
  36987. name: "Normal",
  36988. height: math.unit(4, "feet"),
  36989. default: true
  36990. },
  36991. ]
  36992. ))
  36993. characterMakers.push(() => makeCharacter(
  36994. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36995. {
  36996. front: {
  36997. height: math.unit(12 + 6/12, "feet"),
  36998. name: "Front",
  36999. image: {
  37000. source: "./media/characters/kass-lockheed/front.svg",
  37001. extra: 354/343,
  37002. bottom: 9/363
  37003. }
  37004. },
  37005. back: {
  37006. height: math.unit(12 + 6/12, "feet"),
  37007. name: "Back",
  37008. image: {
  37009. source: "./media/characters/kass-lockheed/back.svg",
  37010. extra: 364/352,
  37011. bottom: 3/367
  37012. }
  37013. },
  37014. dick: {
  37015. height: math.unit(3.12, "feet"),
  37016. name: "Dick",
  37017. image: {
  37018. source: "./media/characters/kass-lockheed/dick.svg"
  37019. }
  37020. },
  37021. head: {
  37022. height: math.unit(2.6, "feet"),
  37023. name: "Head",
  37024. image: {
  37025. source: "./media/characters/kass-lockheed/head.svg"
  37026. }
  37027. },
  37028. bleh: {
  37029. height: math.unit(2.85, "feet"),
  37030. name: "Bleh",
  37031. image: {
  37032. source: "./media/characters/kass-lockheed/bleh.svg"
  37033. }
  37034. },
  37035. smug: {
  37036. height: math.unit(2.85, "feet"),
  37037. name: "Smug",
  37038. image: {
  37039. source: "./media/characters/kass-lockheed/smug.svg"
  37040. }
  37041. },
  37042. },
  37043. [
  37044. {
  37045. name: "Normal",
  37046. height: math.unit(12 + 6/12, "feet"),
  37047. default: true
  37048. },
  37049. ]
  37050. ))
  37051. characterMakers.push(() => makeCharacter(
  37052. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37053. {
  37054. front: {
  37055. height: math.unit(6 + 2/12, "feet"),
  37056. name: "Front",
  37057. image: {
  37058. source: "./media/characters/taylor/front.svg",
  37059. extra: 639/495,
  37060. bottom: 12/651
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Normal",
  37067. height: math.unit(6 + 2/12, "feet"),
  37068. default: true
  37069. },
  37070. {
  37071. name: "Big",
  37072. height: math.unit(15, "feet")
  37073. },
  37074. {
  37075. name: "Lorg",
  37076. height: math.unit(80, "feet")
  37077. },
  37078. {
  37079. name: "Too Lorg",
  37080. height: math.unit(120, "feet")
  37081. },
  37082. ]
  37083. ))
  37084. characterMakers.push(() => makeCharacter(
  37085. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37086. {
  37087. front: {
  37088. height: math.unit(15, "feet"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/kaizer/front.svg",
  37092. extra: 1612/1436,
  37093. bottom: 43/1655
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Normal",
  37100. height: math.unit(15, "feet"),
  37101. default: true
  37102. },
  37103. ]
  37104. ))
  37105. characterMakers.push(() => makeCharacter(
  37106. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37107. {
  37108. front: {
  37109. height: math.unit(2, "feet"),
  37110. weight: math.unit(30, "lb"),
  37111. name: "Front",
  37112. image: {
  37113. source: "./media/characters/sandy/front.svg",
  37114. extra: 1439/1307,
  37115. bottom: 194/1633
  37116. }
  37117. },
  37118. },
  37119. [
  37120. {
  37121. name: "Normal",
  37122. height: math.unit(2, "feet"),
  37123. default: true
  37124. },
  37125. ]
  37126. ))
  37127. characterMakers.push(() => makeCharacter(
  37128. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37129. {
  37130. front: {
  37131. height: math.unit(3, "feet"),
  37132. name: "Front",
  37133. image: {
  37134. source: "./media/characters/mellvi/front.svg",
  37135. extra: 1831/1630,
  37136. bottom: 58/1889
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Normal",
  37143. height: math.unit(3, "feet"),
  37144. default: true
  37145. },
  37146. ]
  37147. ))
  37148. characterMakers.push(() => makeCharacter(
  37149. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37150. {
  37151. front: {
  37152. height: math.unit(5 + 11/12, "feet"),
  37153. weight: math.unit(200, "lb"),
  37154. name: "Front",
  37155. image: {
  37156. source: "./media/characters/shirou/front.svg",
  37157. extra: 2491/2383,
  37158. bottom: 189/2680
  37159. }
  37160. },
  37161. back: {
  37162. height: math.unit(5 + 11/12, "feet"),
  37163. weight: math.unit(200, "lb"),
  37164. name: "Back",
  37165. image: {
  37166. source: "./media/characters/shirou/back.svg",
  37167. extra: 2554/2450,
  37168. bottom: 76/2630
  37169. }
  37170. },
  37171. },
  37172. [
  37173. {
  37174. name: "Normal",
  37175. height: math.unit(5 + 11/12, "feet"),
  37176. default: true
  37177. },
  37178. ]
  37179. ))
  37180. characterMakers.push(() => makeCharacter(
  37181. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37182. {
  37183. front: {
  37184. height: math.unit(6 + 3/12, "feet"),
  37185. weight: math.unit(177, "lb"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/noryu/front.svg",
  37189. extra: 973/885,
  37190. bottom: 10/983
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(6 + 3/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(5 + 6/12, "feet"),
  37207. weight: math.unit(170, "lb"),
  37208. name: "Front",
  37209. image: {
  37210. source: "./media/characters/mevolas-rubenido/front.svg",
  37211. extra: 2109/1901,
  37212. bottom: 96/2205
  37213. }
  37214. },
  37215. },
  37216. [
  37217. {
  37218. name: "Normal",
  37219. height: math.unit(5 + 6/12, "feet"),
  37220. default: true
  37221. },
  37222. ]
  37223. ))
  37224. characterMakers.push(() => makeCharacter(
  37225. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37226. {
  37227. front: {
  37228. height: math.unit(100, "feet"),
  37229. name: "Front",
  37230. image: {
  37231. source: "./media/characters/dee/front.svg",
  37232. extra: 2153/2036,
  37233. bottom: 59/2212
  37234. }
  37235. },
  37236. back: {
  37237. height: math.unit(100, "feet"),
  37238. name: "Back",
  37239. image: {
  37240. source: "./media/characters/dee/back.svg",
  37241. extra: 2183/2058,
  37242. bottom: 75/2258
  37243. }
  37244. },
  37245. foot: {
  37246. height: math.unit(19.43, "feet"),
  37247. name: "Foot",
  37248. image: {
  37249. source: "./media/characters/dee/foot.svg"
  37250. }
  37251. },
  37252. hoof: {
  37253. height: math.unit(20.6, "feet"),
  37254. name: "Hoof",
  37255. image: {
  37256. source: "./media/characters/dee/hoof.svg"
  37257. }
  37258. },
  37259. },
  37260. [
  37261. {
  37262. name: "Macro",
  37263. height: math.unit(100, "feet"),
  37264. default: true
  37265. },
  37266. ]
  37267. ))
  37268. characterMakers.push(() => makeCharacter(
  37269. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37270. {
  37271. front: {
  37272. height: math.unit(5 + 6/12, "feet"),
  37273. name: "Front",
  37274. image: {
  37275. source: "./media/characters/teh/front.svg",
  37276. extra: 1002/847,
  37277. bottom: 62/1064
  37278. }
  37279. },
  37280. },
  37281. [
  37282. {
  37283. name: "Normal",
  37284. height: math.unit(5 + 6/12, "feet"),
  37285. default: true
  37286. },
  37287. ]
  37288. ))
  37289. characterMakers.push(() => makeCharacter(
  37290. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37291. {
  37292. side: {
  37293. height: math.unit(6 + 1/12, "feet"),
  37294. weight: math.unit(204, "lb"),
  37295. name: "Side",
  37296. image: {
  37297. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37298. extra: 974/775,
  37299. bottom: 169/1143
  37300. }
  37301. },
  37302. sitting: {
  37303. height: math.unit(6 + 2/12, "feet"),
  37304. weight: math.unit(204, "lb"),
  37305. name: "Sitting",
  37306. image: {
  37307. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37308. extra: 1175/964,
  37309. bottom: 378/1553
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Normal",
  37316. height: math.unit(6 + 1/12, "feet"),
  37317. default: true
  37318. },
  37319. ]
  37320. ))
  37321. characterMakers.push(() => makeCharacter(
  37322. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37323. {
  37324. front: {
  37325. height: math.unit(6, "inches"),
  37326. name: "Front",
  37327. image: {
  37328. source: "./media/characters/tululi/front.svg",
  37329. extra: 1997/1876,
  37330. bottom: 20/2017
  37331. }
  37332. },
  37333. },
  37334. [
  37335. {
  37336. name: "Normal",
  37337. height: math.unit(6, "inches"),
  37338. default: true
  37339. },
  37340. ]
  37341. ))
  37342. characterMakers.push(() => makeCharacter(
  37343. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37344. {
  37345. front: {
  37346. height: math.unit(4 + 1/12, "feet"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/star/front.svg",
  37350. extra: 1493/1189,
  37351. bottom: 48/1541
  37352. }
  37353. },
  37354. },
  37355. [
  37356. {
  37357. name: "Normal",
  37358. height: math.unit(4 + 1/12, "feet"),
  37359. default: true
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(6 + 3/12, "feet"),
  37368. name: "Front",
  37369. image: {
  37370. source: "./media/characters/comet/front.svg",
  37371. extra: 1681/1462,
  37372. bottom: 26/1707
  37373. }
  37374. },
  37375. },
  37376. [
  37377. {
  37378. name: "Normal",
  37379. height: math.unit(6 + 3/12, "feet"),
  37380. default: true
  37381. },
  37382. ]
  37383. ))
  37384. characterMakers.push(() => makeCharacter(
  37385. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37386. {
  37387. front: {
  37388. height: math.unit(950, "feet"),
  37389. name: "Front",
  37390. image: {
  37391. source: "./media/characters/vortex/front.svg",
  37392. extra: 1497/1434,
  37393. bottom: 56/1553
  37394. }
  37395. },
  37396. maw: {
  37397. height: math.unit(285, "feet"),
  37398. name: "Maw",
  37399. image: {
  37400. source: "./media/characters/vortex/maw.svg"
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Macro",
  37407. height: math.unit(950, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37414. {
  37415. front: {
  37416. height: math.unit(600, "feet"),
  37417. weight: math.unit(0.02, "grams"),
  37418. name: "Front",
  37419. image: {
  37420. source: "./media/characters/doodle/front.svg",
  37421. extra: 1578/1413,
  37422. bottom: 37/1615
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Macro",
  37429. height: math.unit(600, "feet"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(6 + 6/12, "feet"),
  37439. name: "Front",
  37440. image: {
  37441. source: "./media/characters/jai/front.svg",
  37442. extra: 1645/1534,
  37443. bottom: 115/1760
  37444. }
  37445. },
  37446. },
  37447. [
  37448. {
  37449. name: "Normal",
  37450. height: math.unit(6 + 6/12, "feet"),
  37451. default: true
  37452. },
  37453. ]
  37454. ))
  37455. characterMakers.push(() => makeCharacter(
  37456. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37457. {
  37458. front: {
  37459. height: math.unit(6 + 8/12, "feet"),
  37460. name: "Front",
  37461. image: {
  37462. source: "./media/characters/pixel/front.svg",
  37463. extra: 1900/1735,
  37464. bottom: 63/1963
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(6 + 8/12, "feet"),
  37472. default: true
  37473. },
  37474. ]
  37475. ))
  37476. characterMakers.push(() => makeCharacter(
  37477. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37478. {
  37479. back: {
  37480. height: math.unit(4 + 1/12, "feet"),
  37481. weight: math.unit(75, "lb"),
  37482. name: "Back",
  37483. image: {
  37484. source: "./media/characters/rhett/back.svg",
  37485. extra: 930/878,
  37486. bottom: 25/955
  37487. }
  37488. },
  37489. front: {
  37490. height: math.unit(4 + 1/12, "feet"),
  37491. weight: math.unit(75, "lb"),
  37492. name: "Front",
  37493. image: {
  37494. source: "./media/characters/rhett/front.svg",
  37495. extra: 1682/1586,
  37496. bottom: 92/1774
  37497. }
  37498. },
  37499. },
  37500. [
  37501. {
  37502. name: "Micro",
  37503. height: math.unit(8, "inches")
  37504. },
  37505. {
  37506. name: "Tiny",
  37507. height: math.unit(2, "feet")
  37508. },
  37509. {
  37510. name: "Normal",
  37511. height: math.unit(4 + 1/12, "feet"),
  37512. default: true
  37513. },
  37514. ]
  37515. ))
  37516. characterMakers.push(() => makeCharacter(
  37517. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37518. {
  37519. front: {
  37520. height: math.unit(3 + 3/12, "feet"),
  37521. name: "Front",
  37522. image: {
  37523. source: "./media/characters/penny/front.svg",
  37524. extra: 1406/1311,
  37525. bottom: 26/1432
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(3 + 3/12, "feet"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37539. {
  37540. front: {
  37541. height: math.unit(4 + 11/12, "feet"),
  37542. name: "Front",
  37543. image: {
  37544. source: "./media/characters/monty/front.svg",
  37545. extra: 1479/1209,
  37546. bottom: 0/1479
  37547. }
  37548. },
  37549. },
  37550. [
  37551. {
  37552. name: "Normal",
  37553. height: math.unit(4 + 11/12, "feet"),
  37554. default: true
  37555. },
  37556. ]
  37557. ))
  37558. characterMakers.push(() => makeCharacter(
  37559. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37560. {
  37561. front: {
  37562. height: math.unit(8 + 4/12, "feet"),
  37563. name: "Front",
  37564. image: {
  37565. source: "./media/characters/sterling/front.svg",
  37566. extra: 1420/1236,
  37567. bottom: 27/1447
  37568. }
  37569. },
  37570. },
  37571. [
  37572. {
  37573. name: "Normal",
  37574. height: math.unit(8 + 4/12, "feet"),
  37575. default: true
  37576. },
  37577. ]
  37578. ))
  37579. characterMakers.push(() => makeCharacter(
  37580. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37581. {
  37582. front: {
  37583. height: math.unit(15, "feet"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/marble/front.svg",
  37587. extra: 973/937,
  37588. bottom: 32/1005
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(15, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37602. {
  37603. front: {
  37604. height: math.unit(3, "inches"),
  37605. name: "Front",
  37606. image: {
  37607. source: "./media/characters/powder/front.svg",
  37608. extra: 1504/1334,
  37609. bottom: 518/2022
  37610. }
  37611. },
  37612. },
  37613. [
  37614. {
  37615. name: "Normal",
  37616. height: math.unit(3, "inches"),
  37617. default: true
  37618. },
  37619. ]
  37620. ))
  37621. characterMakers.push(() => makeCharacter(
  37622. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37623. {
  37624. front: {
  37625. height: math.unit(4 + 5/12, "feet"),
  37626. name: "Front",
  37627. image: {
  37628. source: "./media/characters/joey-raccoon/front.svg",
  37629. extra: 1273/1197,
  37630. bottom: 0/1273
  37631. }
  37632. },
  37633. },
  37634. [
  37635. {
  37636. name: "Normal",
  37637. height: math.unit(4 + 5/12, "feet"),
  37638. default: true
  37639. },
  37640. ]
  37641. ))
  37642. characterMakers.push(() => makeCharacter(
  37643. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37644. {
  37645. front: {
  37646. height: math.unit(8 + 4/12, "feet"),
  37647. name: "Front",
  37648. image: {
  37649. source: "./media/characters/vick/front.svg",
  37650. extra: 2187/2118,
  37651. bottom: 47/2234
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(8 + 4/12, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(5 + 5/12, "feet"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/mitsy/front.svg",
  37671. extra: 1842/1695,
  37672. bottom: 0/1842
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(5 + 5/12, "feet"),
  37680. default: true
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(6 + 3/12, "feet"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/silvy/front.svg",
  37692. extra: 1995/1836,
  37693. bottom: 225/2220
  37694. }
  37695. },
  37696. },
  37697. [
  37698. {
  37699. name: "Normal",
  37700. height: math.unit(6 + 3/12, "feet"),
  37701. default: true
  37702. },
  37703. ]
  37704. ))
  37705. characterMakers.push(() => makeCharacter(
  37706. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37707. {
  37708. front: {
  37709. height: math.unit(3 + 8/12, "feet"),
  37710. name: "Front",
  37711. image: {
  37712. source: "./media/characters/rodney/front.svg",
  37713. extra: 1956/1747,
  37714. bottom: 31/1987
  37715. }
  37716. },
  37717. frontDressed: {
  37718. height: math.unit(2.9, "feet"),
  37719. name: "Front (Dressed)",
  37720. image: {
  37721. source: "./media/characters/rodney/front-dressed.svg",
  37722. extra: 1382/1241,
  37723. bottom: 385/1767
  37724. }
  37725. },
  37726. },
  37727. [
  37728. {
  37729. name: "Normal",
  37730. height: math.unit(3 + 8/12, "feet"),
  37731. default: true
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(5 + 9/12, "feet"),
  37740. weight: math.unit(194, "lbs"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/zakail-sudekai/front.svg",
  37744. extra: 2696/2533,
  37745. bottom: 248/2944
  37746. }
  37747. },
  37748. maw: {
  37749. height: math.unit(1.35, "feet"),
  37750. name: "Maw",
  37751. image: {
  37752. source: "./media/characters/zakail-sudekai/maw.svg"
  37753. }
  37754. },
  37755. },
  37756. [
  37757. {
  37758. name: "Normal",
  37759. height: math.unit(5 + 9/12, "feet"),
  37760. default: true
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(8 + 4/12, "feet"),
  37769. weight: math.unit(1200, "lb"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/eleanor/front.svg",
  37773. extra: 1226/1192,
  37774. bottom: 52/1278
  37775. }
  37776. },
  37777. back: {
  37778. height: math.unit(8 + 4/12, "feet"),
  37779. weight: math.unit(1200, "lb"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/eleanor/back.svg",
  37783. extra: 1242/1184,
  37784. bottom: 60/1302
  37785. }
  37786. },
  37787. head: {
  37788. height: math.unit(2.62, "feet"),
  37789. name: "Head",
  37790. image: {
  37791. source: "./media/characters/eleanor/head.svg"
  37792. }
  37793. },
  37794. },
  37795. [
  37796. {
  37797. name: "Normal",
  37798. height: math.unit(8 + 4/12, "feet"),
  37799. default: true
  37800. },
  37801. ]
  37802. ))
  37803. characterMakers.push(() => makeCharacter(
  37804. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37805. {
  37806. front: {
  37807. height: math.unit(8 + 4/12, "feet"),
  37808. weight: math.unit(750, "lb"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/tanya/front.svg",
  37812. extra: 1749/1615,
  37813. bottom: 33/1782
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(8 + 4/12, "feet"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(5, "feet"),
  37830. weight: math.unit(225, "lb"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/cindy/front.svg",
  37834. extra: 1320/1250,
  37835. bottom: 42/1362
  37836. }
  37837. },
  37838. frontDressed: {
  37839. height: math.unit(5, "feet"),
  37840. weight: math.unit(225, "lb"),
  37841. name: "Front (Dressed)",
  37842. image: {
  37843. source: "./media/characters/cindy/front-dressed.svg",
  37844. extra: 1320/1250,
  37845. bottom: 42/1362
  37846. }
  37847. },
  37848. back: {
  37849. height: math.unit(5, "feet"),
  37850. weight: math.unit(225, "lb"),
  37851. name: "Back",
  37852. image: {
  37853. source: "./media/characters/cindy/back.svg",
  37854. extra: 1384/1346,
  37855. bottom: 14/1398
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(5, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(6 + 9/12, "feet"),
  37872. weight: math.unit(440, "lb"),
  37873. name: "Front",
  37874. image: {
  37875. source: "./media/characters/wilbur-owen/front.svg",
  37876. extra: 1575/1448,
  37877. bottom: 72/1647
  37878. }
  37879. },
  37880. back: {
  37881. height: math.unit(6 + 9/12, "feet"),
  37882. weight: math.unit(440, "lb"),
  37883. name: "Back",
  37884. image: {
  37885. source: "./media/characters/wilbur-owen/back.svg",
  37886. extra: 1578/1445,
  37887. bottom: 36/1614
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(6 + 9/12, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(6 + 5/12, "feet"),
  37904. weight: math.unit(650, "lb"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/keegan/front.svg",
  37908. extra: 2387/2198,
  37909. bottom: 33/2420
  37910. }
  37911. },
  37912. side: {
  37913. height: math.unit(6 + 5/12, "feet"),
  37914. weight: math.unit(650, "lb"),
  37915. name: "Side",
  37916. image: {
  37917. source: "./media/characters/keegan/side.svg",
  37918. extra: 2390/2202,
  37919. bottom: 47/2437
  37920. }
  37921. },
  37922. back: {
  37923. height: math.unit(6 + 5/12, "feet"),
  37924. weight: math.unit(650, "lb"),
  37925. name: "Back",
  37926. image: {
  37927. source: "./media/characters/keegan/back.svg",
  37928. extra: 2418/2268,
  37929. bottom: 15/2433
  37930. }
  37931. },
  37932. frontSfw: {
  37933. height: math.unit(6 + 5/12, "feet"),
  37934. weight: math.unit(650, "lb"),
  37935. name: "Front (SFW)",
  37936. image: {
  37937. source: "./media/characters/keegan/front-sfw.svg",
  37938. extra: 2387/2198,
  37939. bottom: 33/2420
  37940. }
  37941. },
  37942. beans: {
  37943. height: math.unit(1.85, "feet"),
  37944. name: "Beans",
  37945. image: {
  37946. source: "./media/characters/keegan/beans.svg"
  37947. }
  37948. },
  37949. },
  37950. [
  37951. {
  37952. name: "Normal",
  37953. height: math.unit(6 + 5/12, "feet"),
  37954. default: true
  37955. },
  37956. ]
  37957. ))
  37958. characterMakers.push(() => makeCharacter(
  37959. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37960. {
  37961. front: {
  37962. height: math.unit(9, "feet"),
  37963. name: "Front",
  37964. image: {
  37965. source: "./media/characters/colton/front.svg",
  37966. extra: 1589/1326,
  37967. bottom: 139/1728
  37968. }
  37969. },
  37970. },
  37971. [
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(9, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(2 + 9/12, "feet"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/bora/front.svg",
  37987. extra: 1265/1250,
  37988. bottom: 24/1289
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(2 + 9/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(8, "feet"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/myu-myu/front.svg",
  38008. extra: 1949/1857,
  38009. bottom: 90/2039
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(8, "feet"),
  38017. default: true
  38018. },
  38019. {
  38020. name: "Big",
  38021. height: math.unit(15, "feet")
  38022. },
  38023. {
  38024. name: "BIG",
  38025. height: math.unit(25, "feet")
  38026. },
  38027. ]
  38028. ))
  38029. characterMakers.push(() => makeCharacter(
  38030. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38031. {
  38032. side: {
  38033. height: math.unit(7 + 5/12, "feet"),
  38034. weight: math.unit(2800, "lb"),
  38035. name: "Side",
  38036. image: {
  38037. source: "./media/characters/haloren/side.svg",
  38038. extra: 1793/409,
  38039. bottom: 59/1852
  38040. }
  38041. },
  38042. frontPaw: {
  38043. height: math.unit(2.36, "feet"),
  38044. name: "Front paw",
  38045. image: {
  38046. source: "./media/characters/haloren/front-paw.svg"
  38047. }
  38048. },
  38049. hindPaw: {
  38050. height: math.unit(3.18, "feet"),
  38051. name: "Hind paw",
  38052. image: {
  38053. source: "./media/characters/haloren/hind-paw.svg"
  38054. }
  38055. },
  38056. maw: {
  38057. height: math.unit(5.05, "feet"),
  38058. name: "Maw",
  38059. image: {
  38060. source: "./media/characters/haloren/maw.svg"
  38061. }
  38062. },
  38063. dick: {
  38064. height: math.unit(2.90, "feet"),
  38065. name: "Dick",
  38066. image: {
  38067. source: "./media/characters/haloren/dick.svg"
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(7 + 5/12, "feet"),
  38075. default: true
  38076. },
  38077. {
  38078. name: "Enhanced",
  38079. height: math.unit(14 + 3/12, "feet")
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38085. {
  38086. front: {
  38087. height: math.unit(171, "cm"),
  38088. name: "Front",
  38089. image: {
  38090. source: "./media/characters/kimmy/front.svg",
  38091. extra: 1491/1435,
  38092. bottom: 53/1544
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Small",
  38099. height: math.unit(9, "cm")
  38100. },
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(171, "cm"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(8, "feet"),
  38113. weight: math.unit(300, "lb"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/galeboomer/front.svg",
  38117. extra: 4651/4415,
  38118. bottom: 162/4813
  38119. }
  38120. },
  38121. back: {
  38122. height: math.unit(8, "feet"),
  38123. weight: math.unit(300, "lb"),
  38124. name: "Back",
  38125. image: {
  38126. source: "./media/characters/galeboomer/back.svg",
  38127. extra: 4544/4314,
  38128. bottom: 16/4560
  38129. }
  38130. },
  38131. frontAlt: {
  38132. height: math.unit(8, "feet"),
  38133. weight: math.unit(300, "lb"),
  38134. name: "Front (Alt)",
  38135. image: {
  38136. source: "./media/characters/galeboomer/front-alt.svg",
  38137. extra: 4458/4228,
  38138. bottom: 68/4526
  38139. }
  38140. },
  38141. maw: {
  38142. height: math.unit(1.2, "feet"),
  38143. name: "Maw",
  38144. image: {
  38145. source: "./media/characters/galeboomer/maw.svg"
  38146. }
  38147. },
  38148. },
  38149. [
  38150. {
  38151. name: "Normal",
  38152. height: math.unit(8, "feet"),
  38153. default: true
  38154. },
  38155. ]
  38156. ))
  38157. characterMakers.push(() => makeCharacter(
  38158. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38159. {
  38160. front: {
  38161. height: math.unit(5 + 9/12, "feet"),
  38162. weight: math.unit(120, "lb"),
  38163. name: "Front",
  38164. image: {
  38165. source: "./media/characters/chyr/front.svg",
  38166. extra: 1323/1254,
  38167. bottom: 63/1386
  38168. }
  38169. },
  38170. back: {
  38171. height: math.unit(5 + 9/12, "feet"),
  38172. weight: math.unit(120, "lb"),
  38173. name: "Back",
  38174. image: {
  38175. source: "./media/characters/chyr/back.svg",
  38176. extra: 1323/1252,
  38177. bottom: 48/1371
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "Normal",
  38184. height: math.unit(5 + 9/12, "feet"),
  38185. default: true
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(7, "feet"),
  38194. weight: math.unit(310, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/solarus/front.svg",
  38198. extra: 2415/2021,
  38199. bottom: 103/2518
  38200. }
  38201. },
  38202. back: {
  38203. height: math.unit(7, "feet"),
  38204. weight: math.unit(310, "lb"),
  38205. name: "Back",
  38206. image: {
  38207. source: "./media/characters/solarus/back.svg",
  38208. extra: 2463/2089,
  38209. bottom: 79/2542
  38210. }
  38211. },
  38212. },
  38213. [
  38214. {
  38215. name: "Normal",
  38216. height: math.unit(7, "feet"),
  38217. default: true
  38218. },
  38219. ]
  38220. ))
  38221. characterMakers.push(() => makeCharacter(
  38222. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38223. {
  38224. front: {
  38225. height: math.unit(16, "feet"),
  38226. name: "Front",
  38227. image: {
  38228. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38229. extra: 1844/1780,
  38230. bottom: 58/1902
  38231. }
  38232. },
  38233. winterCoat: {
  38234. height: math.unit(16, "feet"),
  38235. name: "Winter Coat",
  38236. image: {
  38237. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38238. extra: 1807/1775,
  38239. bottom: 69/1876
  38240. }
  38241. },
  38242. },
  38243. [
  38244. {
  38245. name: "Normal",
  38246. height: math.unit(16, "feet"),
  38247. default: true
  38248. },
  38249. {
  38250. name: "Chicago Size",
  38251. height: math.unit(560, "feet")
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(11 + 6/12, "feet"),
  38260. weight: math.unit(1366, "lb"),
  38261. name: "Front",
  38262. image: {
  38263. source: "./media/characters/lexor/front.svg",
  38264. extra: 1560/1481,
  38265. bottom: 211/1771
  38266. }
  38267. },
  38268. back: {
  38269. height: math.unit(11 + 6/12, "feet"),
  38270. weight: math.unit(1366, "lb"),
  38271. name: "Back",
  38272. image: {
  38273. source: "./media/characters/lexor/back.svg",
  38274. extra: 1614/1533,
  38275. bottom: 76/1690
  38276. }
  38277. },
  38278. maw: {
  38279. height: math.unit(3, "feet"),
  38280. name: "Maw",
  38281. image: {
  38282. source: "./media/characters/lexor/maw.svg"
  38283. }
  38284. },
  38285. dick: {
  38286. height: math.unit(2.59, "feet"),
  38287. name: "Dick",
  38288. image: {
  38289. source: "./media/characters/lexor/dick.svg"
  38290. }
  38291. },
  38292. },
  38293. [
  38294. {
  38295. name: "Normal",
  38296. height: math.unit(11 + 6/12, "feet"),
  38297. default: true
  38298. },
  38299. ]
  38300. ))
  38301. characterMakers.push(() => makeCharacter(
  38302. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38303. {
  38304. front: {
  38305. height: math.unit(5 + 8/12, "feet"),
  38306. name: "Front",
  38307. image: {
  38308. source: "./media/characters/magnum/front.svg",
  38309. extra: 942/855,
  38310. bottom: 26/968
  38311. }
  38312. },
  38313. },
  38314. [
  38315. {
  38316. name: "Normal",
  38317. height: math.unit(5 + 8/12, "feet"),
  38318. default: true
  38319. },
  38320. ]
  38321. ))
  38322. characterMakers.push(() => makeCharacter(
  38323. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38324. {
  38325. front: {
  38326. height: math.unit(18 + 4/12, "feet"),
  38327. weight: math.unit(1500, "kg"),
  38328. name: "Front",
  38329. image: {
  38330. source: "./media/characters/solas-sharpsman/front.svg",
  38331. extra: 1698/1589,
  38332. bottom: 0/1698
  38333. }
  38334. },
  38335. },
  38336. [
  38337. {
  38338. name: "Normal",
  38339. height: math.unit(18 + 4/12, "feet"),
  38340. default: true
  38341. },
  38342. ]
  38343. ))
  38344. characterMakers.push(() => makeCharacter(
  38345. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38346. {
  38347. front: {
  38348. height: math.unit(5 + 5/12, "feet"),
  38349. weight: math.unit(180, "lb"),
  38350. name: "Front",
  38351. image: {
  38352. source: "./media/characters/october/front.svg",
  38353. extra: 1800/1650,
  38354. bottom: 0/1800
  38355. }
  38356. },
  38357. frontNsfw: {
  38358. height: math.unit(5 + 5/12, "feet"),
  38359. weight: math.unit(180, "lb"),
  38360. name: "Front (NSFW)",
  38361. image: {
  38362. source: "./media/characters/october/front-nsfw.svg",
  38363. extra: 1392/1307,
  38364. bottom: 42/1434
  38365. }
  38366. },
  38367. },
  38368. [
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(5 + 5/12, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(8 + 6/12, "feet"),
  38381. name: "Front",
  38382. image: {
  38383. source: "./media/characters/essynkardi/front.svg",
  38384. extra: 1914/1846,
  38385. bottom: 22/1936
  38386. }
  38387. },
  38388. },
  38389. [
  38390. {
  38391. name: "Normal",
  38392. height: math.unit(8 + 6/12, "feet"),
  38393. default: true
  38394. },
  38395. ]
  38396. ))
  38397. characterMakers.push(() => makeCharacter(
  38398. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38399. {
  38400. front: {
  38401. height: math.unit(6 + 6/12, "feet"),
  38402. weight: math.unit(7, "lb"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/icky/front.svg",
  38406. extra: 813/782,
  38407. bottom: 66/879
  38408. }
  38409. },
  38410. back: {
  38411. height: math.unit(6 + 6/12, "feet"),
  38412. weight: math.unit(7, "lb"),
  38413. name: "Back",
  38414. image: {
  38415. source: "./media/characters/icky/back.svg",
  38416. extra: 754/735,
  38417. bottom: 56/810
  38418. }
  38419. },
  38420. },
  38421. [
  38422. {
  38423. name: "Normal",
  38424. height: math.unit(6 + 6/12, "feet"),
  38425. default: true
  38426. },
  38427. ]
  38428. ))
  38429. characterMakers.push(() => makeCharacter(
  38430. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38431. {
  38432. front: {
  38433. height: math.unit(15, "feet"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/rojas/front.svg",
  38437. extra: 1462/1408,
  38438. bottom: 95/1557
  38439. }
  38440. },
  38441. back: {
  38442. height: math.unit(15, "feet"),
  38443. name: "Back",
  38444. image: {
  38445. source: "./media/characters/rojas/back.svg",
  38446. extra: 1023/954,
  38447. bottom: 28/1051
  38448. }
  38449. },
  38450. },
  38451. [
  38452. {
  38453. name: "Normal",
  38454. height: math.unit(15, "feet"),
  38455. default: true
  38456. },
  38457. ]
  38458. ))
  38459. characterMakers.push(() => makeCharacter(
  38460. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38461. {
  38462. frontHuman: {
  38463. height: math.unit(5 + 7/12, "feet"),
  38464. name: "Front (Human)",
  38465. image: {
  38466. source: "./media/characters/alek-dryagan/front-human.svg",
  38467. extra: 1687/1667,
  38468. bottom: 69/1756
  38469. }
  38470. },
  38471. backHuman: {
  38472. height: math.unit(5 + 7/12, "feet"),
  38473. name: "Back (Human)",
  38474. image: {
  38475. source: "./media/characters/alek-dryagan/back-human.svg",
  38476. extra: 1670/1649,
  38477. bottom: 65/1735
  38478. }
  38479. },
  38480. frontDemi: {
  38481. height: math.unit(65, "feet"),
  38482. name: "Front (Demi)",
  38483. image: {
  38484. source: "./media/characters/alek-dryagan/front-demi.svg",
  38485. extra: 1669/1642,
  38486. bottom: 49/1718
  38487. }
  38488. },
  38489. backDemi: {
  38490. height: math.unit(65, "feet"),
  38491. name: "Back (Demi)",
  38492. image: {
  38493. source: "./media/characters/alek-dryagan/back-demi.svg",
  38494. extra: 1658/1637,
  38495. bottom: 40/1698
  38496. }
  38497. },
  38498. mawHuman: {
  38499. height: math.unit(0.3, "feet"),
  38500. name: "Maw (Human)",
  38501. image: {
  38502. source: "./media/characters/alek-dryagan/maw-human.svg"
  38503. }
  38504. },
  38505. mawDemi: {
  38506. height: math.unit(3.8, "feet"),
  38507. name: "Maw (Demi)",
  38508. image: {
  38509. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5 + 7/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38523. {
  38524. frontHuman: {
  38525. height: math.unit(5 + 2/12, "feet"),
  38526. name: "Front (Human)",
  38527. image: {
  38528. source: "./media/characters/gen/front-human.svg",
  38529. extra: 1627/1538,
  38530. bottom: 71/1698
  38531. }
  38532. },
  38533. backHuman: {
  38534. height: math.unit(5 + 2/12, "feet"),
  38535. name: "Back (Human)",
  38536. image: {
  38537. source: "./media/characters/gen/back-human.svg",
  38538. extra: 1638/1548,
  38539. bottom: 69/1707
  38540. }
  38541. },
  38542. frontDemi: {
  38543. height: math.unit(5 + 2/12, "feet"),
  38544. name: "Front (Demi)",
  38545. image: {
  38546. source: "./media/characters/gen/front-demi.svg",
  38547. extra: 1627/1538,
  38548. bottom: 71/1698
  38549. }
  38550. },
  38551. backDemi: {
  38552. height: math.unit(5 + 2/12, "feet"),
  38553. name: "Back (Demi)",
  38554. image: {
  38555. source: "./media/characters/gen/back-demi.svg",
  38556. extra: 1638/1548,
  38557. bottom: 69/1707
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(5 + 2/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38571. {
  38572. frontImp: {
  38573. height: math.unit(1 + 11/12, "feet"),
  38574. name: "Front (Imp)",
  38575. image: {
  38576. source: "./media/characters/max-kobold/front-imp.svg",
  38577. extra: 1238/1134,
  38578. bottom: 81/1319
  38579. }
  38580. },
  38581. backImp: {
  38582. height: math.unit(1 + 11/12, "feet"),
  38583. name: "Back (Imp)",
  38584. image: {
  38585. source: "./media/characters/max-kobold/back-imp.svg",
  38586. extra: 1334/1175,
  38587. bottom: 34/1368
  38588. }
  38589. },
  38590. frontDemi: {
  38591. height: math.unit(5 + 9/12, "feet"),
  38592. name: "Front (Demi)",
  38593. image: {
  38594. source: "./media/characters/max-kobold/front-demi.svg",
  38595. extra: 1715/1685,
  38596. bottom: 54/1769
  38597. }
  38598. },
  38599. backDemi: {
  38600. height: math.unit(5 + 9/12, "feet"),
  38601. name: "Back (Demi)",
  38602. image: {
  38603. source: "./media/characters/max-kobold/back-demi.svg",
  38604. extra: 1752/1729,
  38605. bottom: 41/1793
  38606. }
  38607. },
  38608. handImp: {
  38609. height: math.unit(0.45, "feet"),
  38610. name: "Hand (Imp)",
  38611. image: {
  38612. source: "./media/characters/max-kobold/hand.svg"
  38613. }
  38614. },
  38615. pawImp: {
  38616. height: math.unit(0.46, "feet"),
  38617. name: "Paw (Imp)",
  38618. image: {
  38619. source: "./media/characters/max-kobold/paw.svg"
  38620. }
  38621. },
  38622. handDemi: {
  38623. height: math.unit(0.80, "feet"),
  38624. name: "Hand (Demi)",
  38625. image: {
  38626. source: "./media/characters/max-kobold/hand.svg"
  38627. }
  38628. },
  38629. pawDemi: {
  38630. height: math.unit(1.1, "feet"),
  38631. name: "Paw (Demi)",
  38632. image: {
  38633. source: "./media/characters/max-kobold/paw.svg"
  38634. }
  38635. },
  38636. headImp: {
  38637. height: math.unit(1.33, "feet"),
  38638. name: "Head (Imp)",
  38639. image: {
  38640. source: "./media/characters/max-kobold/head-imp.svg"
  38641. }
  38642. },
  38643. mawImp: {
  38644. height: math.unit(0.75, "feet"),
  38645. name: "Maw (Imp)",
  38646. image: {
  38647. source: "./media/characters/max-kobold/maw-imp.svg"
  38648. }
  38649. },
  38650. mawDemi: {
  38651. height: math.unit(0.42, "feet"),
  38652. name: "Maw (Demi)",
  38653. image: {
  38654. source: "./media/characters/max-kobold/maw-demi.svg"
  38655. }
  38656. },
  38657. },
  38658. [
  38659. {
  38660. name: "Normal",
  38661. height: math.unit(1 + 11/12, "feet"),
  38662. default: true
  38663. },
  38664. ]
  38665. ))
  38666. characterMakers.push(() => makeCharacter(
  38667. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38668. {
  38669. front: {
  38670. height: math.unit(7 + 5/12, "feet"),
  38671. name: "Front",
  38672. image: {
  38673. source: "./media/characters/carbon/front.svg",
  38674. extra: 1754/1689,
  38675. bottom: 65/1819
  38676. }
  38677. },
  38678. back: {
  38679. height: math.unit(7 + 5/12, "feet"),
  38680. name: "Back",
  38681. image: {
  38682. source: "./media/characters/carbon/back.svg",
  38683. extra: 1762/1695,
  38684. bottom: 24/1786
  38685. }
  38686. },
  38687. frontGigantamax: {
  38688. height: math.unit(150, "feet"),
  38689. name: "Front (Gigantamax)",
  38690. image: {
  38691. source: "./media/characters/carbon/front-gigantamax.svg",
  38692. extra: 1826/1669,
  38693. bottom: 59/1885
  38694. }
  38695. },
  38696. backGigantamax: {
  38697. height: math.unit(150, "feet"),
  38698. name: "Back (Gigantamax)",
  38699. image: {
  38700. source: "./media/characters/carbon/back-gigantamax.svg",
  38701. extra: 1796/1653,
  38702. bottom: 53/1849
  38703. }
  38704. },
  38705. maw: {
  38706. height: math.unit(0.48, "feet"),
  38707. name: "Maw",
  38708. image: {
  38709. source: "./media/characters/carbon/maw.svg"
  38710. }
  38711. },
  38712. mawGigantamax: {
  38713. height: math.unit(7.5, "feet"),
  38714. name: "Maw (Gigantamax)",
  38715. image: {
  38716. source: "./media/characters/carbon/maw-gigantamax.svg"
  38717. }
  38718. },
  38719. },
  38720. [
  38721. {
  38722. name: "Normal",
  38723. height: math.unit(7 + 5/12, "feet"),
  38724. default: true
  38725. },
  38726. ]
  38727. ))
  38728. characterMakers.push(() => makeCharacter(
  38729. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38730. {
  38731. front: {
  38732. height: math.unit(6, "feet"),
  38733. name: "Front",
  38734. image: {
  38735. source: "./media/characters/maverick/front.svg",
  38736. extra: 1672/1661,
  38737. bottom: 85/1757
  38738. }
  38739. },
  38740. back: {
  38741. height: math.unit(6, "feet"),
  38742. name: "Back",
  38743. image: {
  38744. source: "./media/characters/maverick/back.svg",
  38745. extra: 1642/1631,
  38746. bottom: 38/1680
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(6, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38760. {
  38761. front: {
  38762. height: math.unit(15, "feet"),
  38763. weight: math.unit(615, "lb"),
  38764. name: "Front",
  38765. image: {
  38766. source: "./media/characters/grockle/front.svg",
  38767. extra: 1535/1427,
  38768. bottom: 56/1591
  38769. }
  38770. },
  38771. },
  38772. [
  38773. {
  38774. name: "Normal",
  38775. height: math.unit(15, "feet"),
  38776. default: true
  38777. },
  38778. {
  38779. name: "Large",
  38780. height: math.unit(150, "feet")
  38781. },
  38782. {
  38783. name: "Macro",
  38784. height: math.unit(1876, "feet")
  38785. },
  38786. {
  38787. name: "Mega Macro",
  38788. height: math.unit(121940, "feet")
  38789. },
  38790. {
  38791. name: "Giga Macro",
  38792. height: math.unit(750, "km")
  38793. },
  38794. {
  38795. name: "Tera Macro",
  38796. height: math.unit(750000, "km")
  38797. },
  38798. {
  38799. name: "Galactic",
  38800. height: math.unit(1.4e5, "km")
  38801. },
  38802. {
  38803. name: "Godlike",
  38804. height: math.unit(9.8e280, "galaxies")
  38805. },
  38806. ]
  38807. ))
  38808. characterMakers.push(() => makeCharacter(
  38809. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38810. {
  38811. front: {
  38812. height: math.unit(11, "meters"),
  38813. weight: math.unit(20, "tonnes"),
  38814. name: "Front",
  38815. image: {
  38816. source: "./media/characters/alistair/front.svg",
  38817. extra: 1265/1009,
  38818. bottom: 93/1358
  38819. }
  38820. },
  38821. },
  38822. [
  38823. {
  38824. name: "Normal",
  38825. height: math.unit(11, "meters"),
  38826. default: true
  38827. },
  38828. ]
  38829. ))
  38830. characterMakers.push(() => makeCharacter(
  38831. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38832. {
  38833. front: {
  38834. height: math.unit(5 + 8/12, "feet"),
  38835. name: "Front",
  38836. image: {
  38837. source: "./media/characters/haruka/front.svg",
  38838. extra: 2012/1952,
  38839. bottom: 0/2012
  38840. }
  38841. },
  38842. },
  38843. [
  38844. {
  38845. name: "Normal",
  38846. height: math.unit(5 + 8/12, "feet"),
  38847. default: true
  38848. },
  38849. ]
  38850. ))
  38851. characterMakers.push(() => makeCharacter(
  38852. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38853. {
  38854. back: {
  38855. height: math.unit(9, "feet"),
  38856. name: "Back",
  38857. image: {
  38858. source: "./media/characters/vivian-sylveon/back.svg",
  38859. extra: 1853/1714,
  38860. bottom: 0/1853
  38861. }
  38862. },
  38863. },
  38864. [
  38865. {
  38866. name: "Normal",
  38867. height: math.unit(9, "feet"),
  38868. default: true
  38869. },
  38870. {
  38871. name: "Macro",
  38872. height: math.unit(500, "feet")
  38873. },
  38874. {
  38875. name: "Megamacro",
  38876. height: math.unit(600, "miles")
  38877. },
  38878. {
  38879. name: "Gigamacro",
  38880. height: math.unit(30000, "miles")
  38881. },
  38882. ]
  38883. ))
  38884. characterMakers.push(() => makeCharacter(
  38885. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38886. {
  38887. anthro: {
  38888. height: math.unit(5 + 10/12, "feet"),
  38889. weight: math.unit(100, "lb"),
  38890. name: "Anthro",
  38891. image: {
  38892. source: "./media/characters/daiki/anthro.svg",
  38893. extra: 1115/1027,
  38894. bottom: 69/1184
  38895. }
  38896. },
  38897. feral: {
  38898. height: math.unit(200, "feet"),
  38899. name: "Feral",
  38900. image: {
  38901. source: "./media/characters/daiki/feral.svg",
  38902. extra: 1256/313,
  38903. bottom: 39/1295
  38904. }
  38905. },
  38906. feralHead: {
  38907. height: math.unit(171, "feet"),
  38908. name: "Feral Head",
  38909. image: {
  38910. source: "./media/characters/daiki/feral-head.svg"
  38911. }
  38912. },
  38913. manaDragon: {
  38914. height: math.unit(170, "meters"),
  38915. name: "Mana-dragon",
  38916. image: {
  38917. source: "./media/characters/daiki/mana-dragon.svg",
  38918. extra: 763/420,
  38919. bottom: 97/860
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Normal",
  38926. height: math.unit(5 + 10/12, "feet"),
  38927. default: true
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38933. {
  38934. fullyEquippedFront: {
  38935. height: math.unit(3 + 1/12, "feet"),
  38936. weight: math.unit(24, "lb"),
  38937. name: "Fully Equipped (Front)",
  38938. image: {
  38939. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38940. extra: 687/605,
  38941. bottom: 18/705
  38942. }
  38943. },
  38944. fullyEquippedBack: {
  38945. height: math.unit(3 + 1/12, "feet"),
  38946. weight: math.unit(24, "lb"),
  38947. name: "Fully Equipped (Back)",
  38948. image: {
  38949. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38950. extra: 689/590,
  38951. bottom: 18/707
  38952. }
  38953. },
  38954. dailyWear: {
  38955. height: math.unit(3 + 1/12, "feet"),
  38956. weight: math.unit(24, "lb"),
  38957. name: "Daily Wear",
  38958. image: {
  38959. source: "./media/characters/tea-spot/daily-wear.svg",
  38960. extra: 701/620,
  38961. bottom: 21/722
  38962. }
  38963. },
  38964. maidWork: {
  38965. height: math.unit(3 + 1/12, "feet"),
  38966. weight: math.unit(24, "lb"),
  38967. name: "Maid Work",
  38968. image: {
  38969. source: "./media/characters/tea-spot/maid-work.svg",
  38970. extra: 693/609,
  38971. bottom: 15/708
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(3 + 1/12, "feet"),
  38979. default: true
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(175, "cm"),
  38988. weight: math.unit(75, "kg"),
  38989. name: "Front",
  38990. image: {
  38991. source: "./media/characters/chee/front.svg",
  38992. extra: 1796/1740,
  38993. bottom: 40/1836
  38994. }
  38995. },
  38996. },
  38997. [
  38998. {
  38999. name: "Micro-Micro",
  39000. height: math.unit(1, "nm")
  39001. },
  39002. {
  39003. name: "Micro-erst",
  39004. height: math.unit(1, "micrometer")
  39005. },
  39006. {
  39007. name: "Micro-er",
  39008. height: math.unit(1, "cm")
  39009. },
  39010. {
  39011. name: "Normal",
  39012. height: math.unit(175, "cm"),
  39013. default: true
  39014. },
  39015. {
  39016. name: "Macro",
  39017. height: math.unit(100, "m")
  39018. },
  39019. {
  39020. name: "Macro-er",
  39021. height: math.unit(1, "km")
  39022. },
  39023. {
  39024. name: "Macro-erst",
  39025. height: math.unit(10, "km")
  39026. },
  39027. {
  39028. name: "Macro-Macro",
  39029. height: math.unit(100, "km")
  39030. },
  39031. ]
  39032. ))
  39033. characterMakers.push(() => makeCharacter(
  39034. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39035. {
  39036. front: {
  39037. height: math.unit(11 + 9/12, "feet"),
  39038. weight: math.unit(935, "lb"),
  39039. name: "Front",
  39040. image: {
  39041. source: "./media/characters/kingsley/front.svg",
  39042. extra: 1803/1674,
  39043. bottom: 127/1930
  39044. }
  39045. },
  39046. frontNude: {
  39047. height: math.unit(11 + 9/12, "feet"),
  39048. weight: math.unit(935, "lb"),
  39049. name: "Front (Nude)",
  39050. image: {
  39051. source: "./media/characters/kingsley/front-nude.svg",
  39052. extra: 1803/1674,
  39053. bottom: 127/1930
  39054. }
  39055. },
  39056. },
  39057. [
  39058. {
  39059. name: "Normal",
  39060. height: math.unit(11 + 9/12, "feet"),
  39061. default: true
  39062. },
  39063. ]
  39064. ))
  39065. characterMakers.push(() => makeCharacter(
  39066. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39067. {
  39068. side: {
  39069. height: math.unit(9, "feet"),
  39070. name: "Side",
  39071. image: {
  39072. source: "./media/characters/rymel/side.svg",
  39073. extra: 792/469,
  39074. bottom: 121/913
  39075. }
  39076. },
  39077. maw: {
  39078. height: math.unit(2.4, "meters"),
  39079. name: "Maw",
  39080. image: {
  39081. source: "./media/characters/rymel/maw.svg"
  39082. }
  39083. },
  39084. },
  39085. [
  39086. {
  39087. name: "House Drake",
  39088. height: math.unit(2, "feet")
  39089. },
  39090. {
  39091. name: "Reduced",
  39092. height: math.unit(4.5, "feet")
  39093. },
  39094. {
  39095. name: "Normal",
  39096. height: math.unit(9, "feet"),
  39097. default: true
  39098. },
  39099. ]
  39100. ))
  39101. characterMakers.push(() => makeCharacter(
  39102. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39103. {
  39104. front: {
  39105. height: math.unit(1.74, "meters"),
  39106. weight: math.unit(55, "kg"),
  39107. name: "Front",
  39108. image: {
  39109. source: "./media/characters/rubus/front.svg",
  39110. extra: 1894/1742,
  39111. bottom: 44/1938
  39112. }
  39113. },
  39114. },
  39115. [
  39116. {
  39117. name: "Normal",
  39118. height: math.unit(1.74, "meters"),
  39119. default: true
  39120. },
  39121. ]
  39122. ))
  39123. characterMakers.push(() => makeCharacter(
  39124. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39125. {
  39126. front: {
  39127. height: math.unit(5 + 2/12, "feet"),
  39128. weight: math.unit(112, "lb"),
  39129. name: "Front",
  39130. image: {
  39131. source: "./media/characters/cassie-kingston/front.svg",
  39132. extra: 1438/1390,
  39133. bottom: 47/1485
  39134. }
  39135. },
  39136. },
  39137. [
  39138. {
  39139. name: "Normal",
  39140. height: math.unit(5 + 2/12, "feet"),
  39141. default: true
  39142. },
  39143. {
  39144. name: "Macro",
  39145. height: math.unit(128, "feet")
  39146. },
  39147. {
  39148. name: "Megamacro",
  39149. height: math.unit(2.56, "miles")
  39150. },
  39151. ]
  39152. ))
  39153. characterMakers.push(() => makeCharacter(
  39154. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39155. {
  39156. front: {
  39157. height: math.unit(7, "feet"),
  39158. name: "Front",
  39159. image: {
  39160. source: "./media/characters/fox/front.svg",
  39161. extra: 1798/1703,
  39162. bottom: 55/1853
  39163. }
  39164. },
  39165. back: {
  39166. height: math.unit(7, "feet"),
  39167. name: "Back",
  39168. image: {
  39169. source: "./media/characters/fox/back.svg",
  39170. extra: 1748/1649,
  39171. bottom: 32/1780
  39172. }
  39173. },
  39174. head: {
  39175. height: math.unit(1.95, "feet"),
  39176. name: "Head",
  39177. image: {
  39178. source: "./media/characters/fox/head.svg"
  39179. }
  39180. },
  39181. dick: {
  39182. height: math.unit(1.33, "feet"),
  39183. name: "Dick",
  39184. image: {
  39185. source: "./media/characters/fox/dick.svg"
  39186. }
  39187. },
  39188. foot: {
  39189. height: math.unit(1, "feet"),
  39190. name: "Foot",
  39191. image: {
  39192. source: "./media/characters/fox/foot.svg"
  39193. }
  39194. },
  39195. paw: {
  39196. height: math.unit(0.92, "feet"),
  39197. name: "Paw",
  39198. image: {
  39199. source: "./media/characters/fox/paw.svg"
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Small",
  39206. height: math.unit(3, "inches")
  39207. },
  39208. {
  39209. name: "\"Realistic\"",
  39210. height: math.unit(7, "feet")
  39211. },
  39212. {
  39213. name: "Normal",
  39214. height: math.unit(150, "feet"),
  39215. default: true
  39216. },
  39217. {
  39218. name: "BIG",
  39219. height: math.unit(1200, "feet")
  39220. },
  39221. {
  39222. name: "👀",
  39223. height: math.unit(5, "miles")
  39224. },
  39225. {
  39226. name: "👀👀👀",
  39227. height: math.unit(64, "miles")
  39228. },
  39229. ]
  39230. ))
  39231. characterMakers.push(() => makeCharacter(
  39232. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39233. {
  39234. front: {
  39235. height: math.unit(625, "feet"),
  39236. name: "Front",
  39237. image: {
  39238. source: "./media/characters/asonja-rossa/front.svg",
  39239. extra: 1833/1686,
  39240. bottom: 24/1857
  39241. }
  39242. },
  39243. back: {
  39244. height: math.unit(625, "feet"),
  39245. name: "Back",
  39246. image: {
  39247. source: "./media/characters/asonja-rossa/back.svg",
  39248. extra: 1852/1753,
  39249. bottom: 26/1878
  39250. }
  39251. },
  39252. },
  39253. [
  39254. {
  39255. name: "Macro",
  39256. height: math.unit(625, "feet"),
  39257. default: true
  39258. },
  39259. ]
  39260. ))
  39261. characterMakers.push(() => makeCharacter(
  39262. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39263. {
  39264. side: {
  39265. height: math.unit(8, "feet"),
  39266. name: "Side",
  39267. image: {
  39268. source: "./media/characters/rezukii/side.svg",
  39269. extra: 979/542,
  39270. bottom: 87/1066
  39271. }
  39272. },
  39273. sitting: {
  39274. height: math.unit(14.6, "feet"),
  39275. name: "Sitting",
  39276. image: {
  39277. source: "./media/characters/rezukii/sitting.svg",
  39278. extra: 1023/813,
  39279. bottom: 45/1068
  39280. }
  39281. },
  39282. },
  39283. [
  39284. {
  39285. name: "Tiny",
  39286. height: math.unit(2, "feet")
  39287. },
  39288. {
  39289. name: "Smol",
  39290. height: math.unit(4, "feet")
  39291. },
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(8, "feet"),
  39295. default: true
  39296. },
  39297. {
  39298. name: "Big",
  39299. height: math.unit(12, "feet")
  39300. },
  39301. {
  39302. name: "Macro",
  39303. height: math.unit(30, "feet")
  39304. },
  39305. ]
  39306. ))
  39307. characterMakers.push(() => makeCharacter(
  39308. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39309. {
  39310. front: {
  39311. height: math.unit(14, "feet"),
  39312. weight: math.unit(9.5, "tonnes"),
  39313. name: "Front",
  39314. image: {
  39315. source: "./media/characters/dawnheart/front.svg",
  39316. extra: 2792/2675,
  39317. bottom: 64/2856
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Normal",
  39324. height: math.unit(14, "feet"),
  39325. default: true
  39326. },
  39327. ]
  39328. ))
  39329. characterMakers.push(() => makeCharacter(
  39330. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39331. {
  39332. front: {
  39333. height: math.unit(1.7, "m"),
  39334. name: "Front",
  39335. image: {
  39336. source: "./media/characters/gladi/front.svg",
  39337. extra: 1460/1362,
  39338. bottom: 19/1479
  39339. }
  39340. },
  39341. back: {
  39342. height: math.unit(1.7, "m"),
  39343. name: "Back",
  39344. image: {
  39345. source: "./media/characters/gladi/back.svg",
  39346. extra: 1459/1357,
  39347. bottom: 12/1471
  39348. }
  39349. },
  39350. feral: {
  39351. height: math.unit(2.05, "m"),
  39352. name: "Feral",
  39353. image: {
  39354. source: "./media/characters/gladi/feral.svg",
  39355. extra: 821/557,
  39356. bottom: 91/912
  39357. }
  39358. },
  39359. },
  39360. [
  39361. {
  39362. name: "Shortest",
  39363. height: math.unit(70, "cm")
  39364. },
  39365. {
  39366. name: "Normal",
  39367. height: math.unit(1.7, "m")
  39368. },
  39369. {
  39370. name: "Macro",
  39371. height: math.unit(10, "m"),
  39372. default: true
  39373. },
  39374. {
  39375. name: "Tallest",
  39376. height: math.unit(200, "m")
  39377. },
  39378. ]
  39379. ))
  39380. characterMakers.push(() => makeCharacter(
  39381. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39382. {
  39383. front: {
  39384. height: math.unit(5 + 7/12, "feet"),
  39385. weight: math.unit(2, "tons"),
  39386. name: "Front",
  39387. image: {
  39388. source: "./media/characters/erdno/front.svg",
  39389. extra: 1234/1129,
  39390. bottom: 35/1269
  39391. }
  39392. },
  39393. angled: {
  39394. height: math.unit(5 + 7/12, "feet"),
  39395. weight: math.unit(2, "tons"),
  39396. name: "Angled",
  39397. image: {
  39398. source: "./media/characters/erdno/angled.svg",
  39399. extra: 1185/1139,
  39400. bottom: 36/1221
  39401. }
  39402. },
  39403. side: {
  39404. height: math.unit(5 + 7/12, "feet"),
  39405. weight: math.unit(2, "tons"),
  39406. name: "Side",
  39407. image: {
  39408. source: "./media/characters/erdno/side.svg",
  39409. extra: 1191/1144,
  39410. bottom: 40/1231
  39411. }
  39412. },
  39413. back: {
  39414. height: math.unit(5 + 7/12, "feet"),
  39415. weight: math.unit(2, "tons"),
  39416. name: "Back",
  39417. image: {
  39418. source: "./media/characters/erdno/back.svg",
  39419. extra: 1202/1146,
  39420. bottom: 17/1219
  39421. }
  39422. },
  39423. frontNsfw: {
  39424. height: math.unit(5 + 7/12, "feet"),
  39425. weight: math.unit(2, "tons"),
  39426. name: "Front (NSFW)",
  39427. image: {
  39428. source: "./media/characters/erdno/front-nsfw.svg",
  39429. extra: 1234/1129,
  39430. bottom: 35/1269
  39431. }
  39432. },
  39433. angledNsfw: {
  39434. height: math.unit(5 + 7/12, "feet"),
  39435. weight: math.unit(2, "tons"),
  39436. name: "Angled (NSFW)",
  39437. image: {
  39438. source: "./media/characters/erdno/angled-nsfw.svg",
  39439. extra: 1185/1139,
  39440. bottom: 36/1221
  39441. }
  39442. },
  39443. sideNsfw: {
  39444. height: math.unit(5 + 7/12, "feet"),
  39445. weight: math.unit(2, "tons"),
  39446. name: "Side (NSFW)",
  39447. image: {
  39448. source: "./media/characters/erdno/side-nsfw.svg",
  39449. extra: 1191/1144,
  39450. bottom: 40/1231
  39451. }
  39452. },
  39453. backNsfw: {
  39454. height: math.unit(5 + 7/12, "feet"),
  39455. weight: math.unit(2, "tons"),
  39456. name: "Back (NSFW)",
  39457. image: {
  39458. source: "./media/characters/erdno/back-nsfw.svg",
  39459. extra: 1202/1146,
  39460. bottom: 17/1219
  39461. }
  39462. },
  39463. frontHyper: {
  39464. height: math.unit(5 + 7/12, "feet"),
  39465. weight: math.unit(2, "tons"),
  39466. name: "Front (Hyper)",
  39467. image: {
  39468. source: "./media/characters/erdno/front-hyper.svg",
  39469. extra: 1298/1136,
  39470. bottom: 35/1333
  39471. }
  39472. },
  39473. },
  39474. [
  39475. {
  39476. name: "Normal",
  39477. height: math.unit(5 + 7/12, "feet"),
  39478. default: true
  39479. },
  39480. {
  39481. name: "Big",
  39482. height: math.unit(5.7, "meters")
  39483. },
  39484. {
  39485. name: "Macro",
  39486. height: math.unit(5.7, "kilometers")
  39487. },
  39488. {
  39489. name: "Megamacro",
  39490. height: math.unit(5.7, "earths")
  39491. },
  39492. ]
  39493. ))
  39494. characterMakers.push(() => makeCharacter(
  39495. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39496. {
  39497. front: {
  39498. height: math.unit(5 + 10/12, "feet"),
  39499. weight: math.unit(150, "lb"),
  39500. name: "Front",
  39501. image: {
  39502. source: "./media/characters/jamie/front.svg",
  39503. extra: 1908/1768,
  39504. bottom: 19/1927
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Minimum",
  39511. height: math.unit(2, "cm")
  39512. },
  39513. {
  39514. name: "Micro",
  39515. height: math.unit(3, "inches")
  39516. },
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(5 + 10/12, "feet"),
  39520. default: true
  39521. },
  39522. {
  39523. name: "Macro",
  39524. height: math.unit(150, "feet")
  39525. },
  39526. {
  39527. name: "Megamacro",
  39528. height: math.unit(10000, "m")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(2, "meters"),
  39537. weight: math.unit(100, "kg"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/shiron/front.svg",
  39541. extra: 2103/1985,
  39542. bottom: 98/2201
  39543. }
  39544. },
  39545. back: {
  39546. height: math.unit(2, "meters"),
  39547. weight: math.unit(100, "kg"),
  39548. name: "Back",
  39549. image: {
  39550. source: "./media/characters/shiron/back.svg",
  39551. extra: 2110/2015,
  39552. bottom: 89/2199
  39553. }
  39554. },
  39555. hand: {
  39556. height: math.unit(0.96, "feet"),
  39557. name: "Hand",
  39558. image: {
  39559. source: "./media/characters/shiron/hand.svg"
  39560. }
  39561. },
  39562. foot: {
  39563. height: math.unit(1.464, "feet"),
  39564. name: "Foot",
  39565. image: {
  39566. source: "./media/characters/shiron/foot.svg"
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(2, "meters")
  39574. },
  39575. {
  39576. name: "Macro",
  39577. height: math.unit(500, "meters"),
  39578. default: true
  39579. },
  39580. {
  39581. name: "Megamacro",
  39582. height: math.unit(20, "km")
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(6, "feet"),
  39591. name: "Front",
  39592. image: {
  39593. source: "./media/characters/sam/front.svg",
  39594. extra: 849/826,
  39595. bottom: 19/868
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Normal",
  39602. height: math.unit(6, "feet"),
  39603. default: true
  39604. },
  39605. ]
  39606. ))
  39607. characterMakers.push(() => makeCharacter(
  39608. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39609. {
  39610. front: {
  39611. height: math.unit(8 + 4/12, "feet"),
  39612. weight: math.unit(122, "kg"),
  39613. name: "Front",
  39614. image: {
  39615. source: "./media/characters/namori-kurogawa/front.svg",
  39616. extra: 1894/1576,
  39617. bottom: 34/1928
  39618. }
  39619. },
  39620. },
  39621. [
  39622. {
  39623. name: "Normal",
  39624. height: math.unit(8 + 4/12, "feet"),
  39625. default: true
  39626. },
  39627. ]
  39628. ))
  39629. characterMakers.push(() => makeCharacter(
  39630. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39631. {
  39632. front: {
  39633. height: math.unit(9, "feet"),
  39634. weight: math.unit(621, "lb"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/unmru/front.svg",
  39638. extra: 1853/1747,
  39639. bottom: 73/1926
  39640. }
  39641. },
  39642. side: {
  39643. height: math.unit(9, "feet"),
  39644. weight: math.unit(621, "lb"),
  39645. name: "Side",
  39646. image: {
  39647. source: "./media/characters/unmru/side.svg",
  39648. extra: 1781/1671,
  39649. bottom: 127/1908
  39650. }
  39651. },
  39652. back: {
  39653. height: math.unit(9, "feet"),
  39654. weight: math.unit(621, "lb"),
  39655. name: "Back",
  39656. image: {
  39657. source: "./media/characters/unmru/back.svg",
  39658. extra: 1894/1765,
  39659. bottom: 75/1969
  39660. }
  39661. },
  39662. dick: {
  39663. height: math.unit(3, "feet"),
  39664. weight: math.unit(35, "lb"),
  39665. name: "Dick",
  39666. image: {
  39667. source: "./media/characters/unmru/dick.svg"
  39668. }
  39669. },
  39670. },
  39671. [
  39672. {
  39673. name: "Normal",
  39674. height: math.unit(9, "feet")
  39675. },
  39676. {
  39677. name: "Natural",
  39678. height: math.unit(27, "feet"),
  39679. default: true
  39680. },
  39681. {
  39682. name: "Giant",
  39683. height: math.unit(90, "feet")
  39684. },
  39685. {
  39686. name: "Kaiju",
  39687. height: math.unit(270, "feet")
  39688. },
  39689. {
  39690. name: "Macro",
  39691. height: math.unit(900, "feet")
  39692. },
  39693. {
  39694. name: "Macro+",
  39695. height: math.unit(2700, "feet")
  39696. },
  39697. {
  39698. name: "Megamacro",
  39699. height: math.unit(9000, "feet")
  39700. },
  39701. {
  39702. name: "City-Crushing",
  39703. height: math.unit(27000, "feet")
  39704. },
  39705. {
  39706. name: "Mountain-Mashing",
  39707. height: math.unit(90000, "feet")
  39708. },
  39709. {
  39710. name: "Earth-Eclipsing",
  39711. height: math.unit(2.7e8, "feet")
  39712. },
  39713. {
  39714. name: "Sol-Swallowing",
  39715. height: math.unit(9e10, "feet")
  39716. },
  39717. {
  39718. name: "Majoris-Munching",
  39719. height: math.unit(2.7e13, "feet")
  39720. },
  39721. ]
  39722. ))
  39723. characterMakers.push(() => makeCharacter(
  39724. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39725. {
  39726. front: {
  39727. height: math.unit(1, "inch"),
  39728. name: "Front",
  39729. image: {
  39730. source: "./media/characters/squeaks-mouse/front.svg",
  39731. extra: 352/308,
  39732. bottom: 25/377
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Micro",
  39739. height: math.unit(1, "inch"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39746. {
  39747. side: {
  39748. height: math.unit(35, "feet"),
  39749. name: "Side",
  39750. image: {
  39751. source: "./media/characters/sayko/side.svg",
  39752. extra: 1697/1021,
  39753. bottom: 82/1779
  39754. }
  39755. },
  39756. head: {
  39757. height: math.unit(16, "feet"),
  39758. name: "Head",
  39759. image: {
  39760. source: "./media/characters/sayko/head.svg"
  39761. }
  39762. },
  39763. forepaw: {
  39764. height: math.unit(7.85, "feet"),
  39765. name: "Forepaw",
  39766. image: {
  39767. source: "./media/characters/sayko/forepaw.svg"
  39768. }
  39769. },
  39770. hindpaw: {
  39771. height: math.unit(8.8, "feet"),
  39772. name: "Hindpaw",
  39773. image: {
  39774. source: "./media/characters/sayko/hindpaw.svg"
  39775. }
  39776. },
  39777. },
  39778. [
  39779. {
  39780. name: "Normal",
  39781. height: math.unit(35, "feet"),
  39782. default: true
  39783. },
  39784. {
  39785. name: "Colossus",
  39786. height: math.unit(100, "meters")
  39787. },
  39788. {
  39789. name: "\"Small\" Deity",
  39790. height: math.unit(1, "km")
  39791. },
  39792. {
  39793. name: "\"Large\" Deity",
  39794. height: math.unit(15, "km")
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(6, "feet"),
  39803. weight: math.unit(250, "lb"),
  39804. name: "Front",
  39805. image: {
  39806. source: "./media/characters/mukiro/front.svg",
  39807. extra: 1368/1310,
  39808. bottom: 34/1402
  39809. }
  39810. },
  39811. },
  39812. [
  39813. {
  39814. name: "Normal",
  39815. height: math.unit(6, "feet"),
  39816. default: true
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(12 + 4/12, "feet"),
  39825. name: "Front",
  39826. image: {
  39827. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39828. extra: 1346/1311,
  39829. bottom: 65/1411
  39830. }
  39831. },
  39832. },
  39833. [
  39834. {
  39835. name: "Base",
  39836. height: math.unit(12 + 4/12, "feet"),
  39837. default: true
  39838. },
  39839. {
  39840. name: "Macro",
  39841. height: math.unit(150, "feet")
  39842. },
  39843. {
  39844. name: "Mega",
  39845. height: math.unit(2, "miles")
  39846. },
  39847. {
  39848. name: "Demi God",
  39849. height: math.unit(4, "AU")
  39850. },
  39851. {
  39852. name: "God Size",
  39853. height: math.unit(1, "universe")
  39854. },
  39855. ]
  39856. ))
  39857. characterMakers.push(() => makeCharacter(
  39858. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39859. {
  39860. front: {
  39861. height: math.unit(3 + 3/12, "feet"),
  39862. weight: math.unit(88, "lb"),
  39863. name: "Front",
  39864. image: {
  39865. source: "./media/characters/trey/front.svg",
  39866. extra: 1815/1509,
  39867. bottom: 60/1875
  39868. }
  39869. },
  39870. },
  39871. [
  39872. {
  39873. name: "Normal",
  39874. height: math.unit(3 + 3/12, "feet"),
  39875. default: true
  39876. },
  39877. ]
  39878. ))
  39879. characterMakers.push(() => makeCharacter(
  39880. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39881. {
  39882. front: {
  39883. height: math.unit(4, "meters"),
  39884. name: "Front",
  39885. image: {
  39886. source: "./media/characters/adelonda/front.svg",
  39887. extra: 1077/982,
  39888. bottom: 39/1116
  39889. }
  39890. },
  39891. back: {
  39892. height: math.unit(4, "meters"),
  39893. name: "Back",
  39894. image: {
  39895. source: "./media/characters/adelonda/back.svg",
  39896. extra: 1105/1003,
  39897. bottom: 25/1130
  39898. }
  39899. },
  39900. feral: {
  39901. height: math.unit(40/1.5, "meters"),
  39902. name: "Feral",
  39903. image: {
  39904. source: "./media/characters/adelonda/feral.svg",
  39905. extra: 597/271,
  39906. bottom: 387/984
  39907. }
  39908. },
  39909. },
  39910. [
  39911. {
  39912. name: "Normal",
  39913. height: math.unit(4, "meters"),
  39914. default: true
  39915. },
  39916. ]
  39917. ))
  39918. characterMakers.push(() => makeCharacter(
  39919. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39920. {
  39921. front: {
  39922. height: math.unit(8 + 4/12, "feet"),
  39923. weight: math.unit(670, "lb"),
  39924. name: "Front",
  39925. image: {
  39926. source: "./media/characters/acadiel/front.svg",
  39927. extra: 1901/1595,
  39928. bottom: 142/2043
  39929. }
  39930. },
  39931. },
  39932. [
  39933. {
  39934. name: "Normal",
  39935. height: math.unit(8 + 4/12, "feet"),
  39936. default: true
  39937. },
  39938. {
  39939. name: "Macro",
  39940. height: math.unit(200, "feet")
  39941. },
  39942. ]
  39943. ))
  39944. characterMakers.push(() => makeCharacter(
  39945. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39946. {
  39947. front: {
  39948. height: math.unit(6 + 2/12, "feet"),
  39949. weight: math.unit(185, "lb"),
  39950. name: "Front",
  39951. image: {
  39952. source: "./media/characters/kayne-ein/front.svg",
  39953. extra: 1780/1560,
  39954. bottom: 81/1861
  39955. }
  39956. },
  39957. },
  39958. [
  39959. {
  39960. name: "Normal",
  39961. height: math.unit(6 + 2/12, "feet"),
  39962. default: true
  39963. },
  39964. {
  39965. name: "Transformation Stage",
  39966. height: math.unit(15, "feet")
  39967. },
  39968. {
  39969. name: "Macro",
  39970. height: math.unit(150, "feet")
  39971. },
  39972. {
  39973. name: "Earth's Shadow",
  39974. height: math.unit(6200, "miles")
  39975. },
  39976. {
  39977. name: "Universal Demon",
  39978. height: math.unit(28e9, "parsecs")
  39979. },
  39980. {
  39981. name: "Multiverse God",
  39982. height: math.unit(3, "multiverses")
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39988. {
  39989. front: {
  39990. height: math.unit(5 + 5/12, "feet"),
  39991. name: "Front",
  39992. image: {
  39993. source: "./media/characters/fawn/front.svg",
  39994. extra: 1873/1731,
  39995. bottom: 95/1968
  39996. }
  39997. },
  39998. back: {
  39999. height: math.unit(5 + 5/12, "feet"),
  40000. name: "Back",
  40001. image: {
  40002. source: "./media/characters/fawn/back.svg",
  40003. extra: 1813/1700,
  40004. bottom: 14/1827
  40005. }
  40006. },
  40007. hoof: {
  40008. height: math.unit(1.45, "feet"),
  40009. name: "Hoof",
  40010. image: {
  40011. source: "./media/characters/fawn/hoof.svg"
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(5 + 5/12, "feet"),
  40019. default: true
  40020. },
  40021. ]
  40022. ))
  40023. characterMakers.push(() => makeCharacter(
  40024. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40025. {
  40026. front: {
  40027. height: math.unit(2 + 5/12, "feet"),
  40028. name: "Front",
  40029. image: {
  40030. source: "./media/characters/orion/front.svg",
  40031. extra: 1366/1304,
  40032. bottom: 43/1409
  40033. }
  40034. },
  40035. paw: {
  40036. height: math.unit(0.52, "feet"),
  40037. name: "Paw",
  40038. image: {
  40039. source: "./media/characters/orion/paw.svg"
  40040. }
  40041. },
  40042. },
  40043. [
  40044. {
  40045. name: "Normal",
  40046. height: math.unit(2 + 5/12, "feet"),
  40047. default: true
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(5 + 10/12, "feet"),
  40056. name: "Front",
  40057. image: {
  40058. source: "./media/characters/vera/front.svg",
  40059. extra: 1680/1575,
  40060. bottom: 49/1729
  40061. }
  40062. },
  40063. back: {
  40064. height: math.unit(5 + 10/12, "feet"),
  40065. name: "Back",
  40066. image: {
  40067. source: "./media/characters/vera/back.svg",
  40068. extra: 1700/1588,
  40069. bottom: 18/1718
  40070. }
  40071. },
  40072. arcanine: {
  40073. height: math.unit(6 + 8/12, "feet"),
  40074. name: "Arcanine",
  40075. image: {
  40076. source: "./media/characters/vera/arcanine.svg",
  40077. extra: 1590/1511,
  40078. bottom: 71/1661
  40079. }
  40080. },
  40081. maw: {
  40082. height: math.unit(0.82, "feet"),
  40083. name: "Maw",
  40084. image: {
  40085. source: "./media/characters/vera/maw.svg"
  40086. }
  40087. },
  40088. mawArcanine: {
  40089. height: math.unit(0.97, "feet"),
  40090. name: "Maw (Arcanine)",
  40091. image: {
  40092. source: "./media/characters/vera/maw-arcanine.svg"
  40093. }
  40094. },
  40095. paw: {
  40096. height: math.unit(0.75, "feet"),
  40097. name: "Paw",
  40098. image: {
  40099. source: "./media/characters/vera/paw.svg"
  40100. }
  40101. },
  40102. pawprint: {
  40103. height: math.unit(0.52, "feet"),
  40104. name: "Pawprint",
  40105. image: {
  40106. source: "./media/characters/vera/pawprint.svg"
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Normal",
  40113. height: math.unit(5 + 10/12, "feet"),
  40114. default: true
  40115. },
  40116. {
  40117. name: "Macro",
  40118. height: math.unit(75, "feet")
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(4, "feet"),
  40127. weight: math.unit(40, "lb"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/orvan-rabbit/front.svg",
  40131. extra: 1896/1642,
  40132. bottom: 29/1925
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Normal",
  40139. height: math.unit(4, "feet"),
  40140. default: true
  40141. },
  40142. ]
  40143. ))
  40144. characterMakers.push(() => makeCharacter(
  40145. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40146. {
  40147. front: {
  40148. height: math.unit(6, "feet"),
  40149. weight: math.unit(168, "lb"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/lisa/front.svg",
  40153. extra: 2065/1867,
  40154. bottom: 46/2111
  40155. }
  40156. },
  40157. back: {
  40158. height: math.unit(6, "feet"),
  40159. weight: math.unit(168, "lb"),
  40160. name: "Back",
  40161. image: {
  40162. source: "./media/characters/lisa/back.svg",
  40163. extra: 1982/1838,
  40164. bottom: 29/2011
  40165. }
  40166. },
  40167. maw: {
  40168. height: math.unit(0.81, "feet"),
  40169. name: "Maw",
  40170. image: {
  40171. source: "./media/characters/lisa/maw.svg"
  40172. }
  40173. },
  40174. paw: {
  40175. height: math.unit(0.9, "feet"),
  40176. name: "Paw",
  40177. image: {
  40178. source: "./media/characters/lisa/paw.svg"
  40179. }
  40180. },
  40181. caribousune: {
  40182. height: math.unit(7 + 2/12, "feet"),
  40183. weight: math.unit(268, "lb"),
  40184. name: "Caribousune",
  40185. image: {
  40186. source: "./media/characters/lisa/caribousune.svg",
  40187. extra: 1843/1633,
  40188. bottom: 29/1872
  40189. }
  40190. },
  40191. frontCaribousune: {
  40192. height: math.unit(7 + 2/12, "feet"),
  40193. weight: math.unit(268, "lb"),
  40194. name: "Front (Caribousune)",
  40195. image: {
  40196. source: "./media/characters/lisa/front-caribousune.svg",
  40197. extra: 1818/1638,
  40198. bottom: 52/1870
  40199. }
  40200. },
  40201. sideCaribousune: {
  40202. height: math.unit(7 + 2/12, "feet"),
  40203. weight: math.unit(268, "lb"),
  40204. name: "Side (Caribousune)",
  40205. image: {
  40206. source: "./media/characters/lisa/side-caribousune.svg",
  40207. extra: 1851/1635,
  40208. bottom: 16/1867
  40209. }
  40210. },
  40211. backCaribousune: {
  40212. height: math.unit(7 + 2/12, "feet"),
  40213. weight: math.unit(268, "lb"),
  40214. name: "Back (Caribousune)",
  40215. image: {
  40216. source: "./media/characters/lisa/back-caribousune.svg",
  40217. extra: 1801/1604,
  40218. bottom: 44/1845
  40219. }
  40220. },
  40221. caribou: {
  40222. height: math.unit(7 + 2/12, "feet"),
  40223. weight: math.unit(268, "lb"),
  40224. name: "Caribou",
  40225. image: {
  40226. source: "./media/characters/lisa/caribou.svg",
  40227. extra: 1843/1633,
  40228. bottom: 29/1872
  40229. }
  40230. },
  40231. frontCaribou: {
  40232. height: math.unit(7 + 2/12, "feet"),
  40233. weight: math.unit(268, "lb"),
  40234. name: "Front (Caribou)",
  40235. image: {
  40236. source: "./media/characters/lisa/front-caribou.svg",
  40237. extra: 1818/1638,
  40238. bottom: 52/1870
  40239. }
  40240. },
  40241. sideCaribou: {
  40242. height: math.unit(7 + 2/12, "feet"),
  40243. weight: math.unit(268, "lb"),
  40244. name: "Side (Caribou)",
  40245. image: {
  40246. source: "./media/characters/lisa/side-caribou.svg",
  40247. extra: 1851/1635,
  40248. bottom: 16/1867
  40249. }
  40250. },
  40251. backCaribou: {
  40252. height: math.unit(7 + 2/12, "feet"),
  40253. weight: math.unit(268, "lb"),
  40254. name: "Back (Caribou)",
  40255. image: {
  40256. source: "./media/characters/lisa/back-caribou.svg",
  40257. extra: 1801/1604,
  40258. bottom: 44/1845
  40259. }
  40260. },
  40261. mawCaribou: {
  40262. height: math.unit(1.45, "feet"),
  40263. name: "Maw (Caribou)",
  40264. image: {
  40265. source: "./media/characters/lisa/maw-caribou.svg"
  40266. }
  40267. },
  40268. mawCaribousune: {
  40269. height: math.unit(1.45, "feet"),
  40270. name: "Maw (Caribousune)",
  40271. image: {
  40272. source: "./media/characters/lisa/maw-caribousune.svg"
  40273. }
  40274. },
  40275. pawCaribousune: {
  40276. height: math.unit(1.61, "feet"),
  40277. name: "Paw (Caribou)",
  40278. image: {
  40279. source: "./media/characters/lisa/paw-caribousune.svg"
  40280. }
  40281. },
  40282. },
  40283. [
  40284. {
  40285. name: "Normal",
  40286. height: math.unit(6, "feet")
  40287. },
  40288. {
  40289. name: "God Size",
  40290. height: math.unit(72, "feet"),
  40291. default: true
  40292. },
  40293. {
  40294. name: "Towering",
  40295. height: math.unit(288, "feet")
  40296. },
  40297. {
  40298. name: "City Size",
  40299. height: math.unit(48384, "feet")
  40300. },
  40301. {
  40302. name: "Continental",
  40303. height: math.unit(4200, "miles")
  40304. },
  40305. {
  40306. name: "Planet Eater",
  40307. height: math.unit(42, "earths")
  40308. },
  40309. {
  40310. name: "Star Swallower",
  40311. height: math.unit(42, "solarradii")
  40312. },
  40313. {
  40314. name: "System Swallower",
  40315. height: math.unit(84000, "AU")
  40316. },
  40317. {
  40318. name: "Galaxy Gobbler",
  40319. height: math.unit(42, "galaxies")
  40320. },
  40321. {
  40322. name: "Universe Devourer",
  40323. height: math.unit(42, "universes")
  40324. },
  40325. {
  40326. name: "Multiverse Muncher",
  40327. height: math.unit(42, "multiverses")
  40328. },
  40329. ]
  40330. ))
  40331. characterMakers.push(() => makeCharacter(
  40332. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40333. {
  40334. front: {
  40335. height: math.unit(36, "feet"),
  40336. name: "Front",
  40337. image: {
  40338. source: "./media/characters/shadow-rat/front.svg",
  40339. extra: 1845/1758,
  40340. bottom: 83/1928
  40341. }
  40342. },
  40343. },
  40344. [
  40345. {
  40346. name: "Macro",
  40347. height: math.unit(36, "feet"),
  40348. default: true
  40349. },
  40350. ]
  40351. ))
  40352. characterMakers.push(() => makeCharacter(
  40353. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40354. {
  40355. side: {
  40356. height: math.unit(8, "feet"),
  40357. weight: math.unit(2630, "lb"),
  40358. name: "Side",
  40359. image: {
  40360. source: "./media/characters/torallia/side.svg",
  40361. extra: 2164/2021,
  40362. bottom: 371/2535
  40363. }
  40364. },
  40365. },
  40366. [
  40367. {
  40368. name: "Mortal Interaction",
  40369. height: math.unit(8, "feet")
  40370. },
  40371. {
  40372. name: "Natural",
  40373. height: math.unit(24, "feet"),
  40374. default: true
  40375. },
  40376. {
  40377. name: "Giant",
  40378. height: math.unit(80, "feet")
  40379. },
  40380. {
  40381. name: "Kaiju",
  40382. height: math.unit(240, "feet")
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(800, "feet")
  40387. },
  40388. {
  40389. name: "Macro+",
  40390. height: math.unit(2400, "feet")
  40391. },
  40392. {
  40393. name: "Macro++",
  40394. height: math.unit(8000, "feet")
  40395. },
  40396. {
  40397. name: "City-Crushing",
  40398. height: math.unit(24000, "feet")
  40399. },
  40400. {
  40401. name: "Mountain-Mashing",
  40402. height: math.unit(80000, "feet")
  40403. },
  40404. {
  40405. name: "District Demolisher",
  40406. height: math.unit(240000, "feet")
  40407. },
  40408. {
  40409. name: "Tri-County Terror",
  40410. height: math.unit(800000, "feet")
  40411. },
  40412. {
  40413. name: "State Smasher",
  40414. height: math.unit(2.4e6, "feet")
  40415. },
  40416. {
  40417. name: "Nation Nemesis",
  40418. height: math.unit(8e6, "feet")
  40419. },
  40420. {
  40421. name: "Continent Cracker",
  40422. height: math.unit(2.4e7, "feet")
  40423. },
  40424. {
  40425. name: "Planet-Pillaging",
  40426. height: math.unit(8e7, "feet")
  40427. },
  40428. {
  40429. name: "Earth-Eclipsing",
  40430. height: math.unit(2.4e8, "feet")
  40431. },
  40432. {
  40433. name: "Jovian-Jostling",
  40434. height: math.unit(8e8, "feet")
  40435. },
  40436. {
  40437. name: "Gas Giant Gulper",
  40438. height: math.unit(2.4e9, "feet")
  40439. },
  40440. {
  40441. name: "Astral Annihilator",
  40442. height: math.unit(8e9, "feet")
  40443. },
  40444. {
  40445. name: "Celestial Conqueror",
  40446. height: math.unit(2.4e10, "feet")
  40447. },
  40448. {
  40449. name: "Sol-Swallowing",
  40450. height: math.unit(8e10, "feet")
  40451. },
  40452. {
  40453. name: "Hunter of the Heavens",
  40454. height: math.unit(2.4e13, "feet")
  40455. },
  40456. ]
  40457. ))
  40458. characterMakers.push(() => makeCharacter(
  40459. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40460. {
  40461. front: {
  40462. height: math.unit(6 + 8/12, "feet"),
  40463. weight: math.unit(250, "kilograms"),
  40464. volume: math.unit(28, "liters"),
  40465. name: "Front",
  40466. image: {
  40467. source: "./media/characters/rebecca-pawlson/front.svg",
  40468. extra: 1737/1596,
  40469. bottom: 107/1844
  40470. }
  40471. },
  40472. back: {
  40473. height: math.unit(6 + 8/12, "feet"),
  40474. weight: math.unit(250, "kilograms"),
  40475. volume: math.unit(28, "liters"),
  40476. name: "Back",
  40477. image: {
  40478. source: "./media/characters/rebecca-pawlson/back.svg",
  40479. extra: 1702/1523,
  40480. bottom: 86/1788
  40481. }
  40482. },
  40483. },
  40484. [
  40485. {
  40486. name: "Normal",
  40487. height: math.unit(6 + 8/12, "feet")
  40488. },
  40489. {
  40490. name: "Mini Macro",
  40491. height: math.unit(10, "feet"),
  40492. default: true
  40493. },
  40494. {
  40495. name: "Macro",
  40496. height: math.unit(100, "feet")
  40497. },
  40498. {
  40499. name: "Mega Macro",
  40500. height: math.unit(2500, "feet")
  40501. },
  40502. {
  40503. name: "Giga Macro",
  40504. height: math.unit(50, "miles")
  40505. },
  40506. ]
  40507. ))
  40508. characterMakers.push(() => makeCharacter(
  40509. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40510. {
  40511. front: {
  40512. height: math.unit(7 + 6/12, "feet"),
  40513. weight: math.unit(600, "lb"),
  40514. name: "Front",
  40515. image: {
  40516. source: "./media/characters/moxie-nova/front.svg",
  40517. extra: 1734/1652,
  40518. bottom: 41/1775
  40519. }
  40520. },
  40521. },
  40522. [
  40523. {
  40524. name: "Normal",
  40525. height: math.unit(7 + 6/12, "feet"),
  40526. default: true
  40527. },
  40528. ]
  40529. ))
  40530. characterMakers.push(() => makeCharacter(
  40531. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40532. {
  40533. goat: {
  40534. height: math.unit(4, "feet"),
  40535. weight: math.unit(180, "lb"),
  40536. name: "Goat",
  40537. image: {
  40538. source: "./media/characters/tiffany/goat.svg",
  40539. extra: 1845/1595,
  40540. bottom: 106/1951
  40541. }
  40542. },
  40543. front: {
  40544. height: math.unit(5, "feet"),
  40545. weight: math.unit(150, "lb"),
  40546. name: "Foxcoon",
  40547. image: {
  40548. source: "./media/characters/tiffany/foxcoon.svg",
  40549. extra: 1941/1845,
  40550. bottom: 58/1999
  40551. }
  40552. },
  40553. },
  40554. [
  40555. {
  40556. name: "Normal",
  40557. height: math.unit(5, "feet"),
  40558. default: true
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40564. {
  40565. front: {
  40566. height: math.unit(8, "feet"),
  40567. weight: math.unit(300, "lb"),
  40568. name: "Front",
  40569. image: {
  40570. source: "./media/characters/raxinath/front.svg",
  40571. extra: 1407/1309,
  40572. bottom: 39/1446
  40573. }
  40574. },
  40575. back: {
  40576. height: math.unit(8, "feet"),
  40577. weight: math.unit(300, "lb"),
  40578. name: "Back",
  40579. image: {
  40580. source: "./media/characters/raxinath/back.svg",
  40581. extra: 1405/1315,
  40582. bottom: 9/1414
  40583. }
  40584. },
  40585. },
  40586. [
  40587. {
  40588. name: "Speck",
  40589. height: math.unit(0.5, "nm")
  40590. },
  40591. {
  40592. name: "Micro",
  40593. height: math.unit(3, "inches")
  40594. },
  40595. {
  40596. name: "Kobold",
  40597. height: math.unit(3, "feet")
  40598. },
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(8, "feet"),
  40602. default: true
  40603. },
  40604. {
  40605. name: "Giant",
  40606. height: math.unit(50, "feet")
  40607. },
  40608. {
  40609. name: "Macro",
  40610. height: math.unit(1000, "feet")
  40611. },
  40612. {
  40613. name: "Megamacro",
  40614. height: math.unit(1, "mile")
  40615. },
  40616. ]
  40617. ))
  40618. characterMakers.push(() => makeCharacter(
  40619. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40620. {
  40621. front: {
  40622. height: math.unit(10, "feet"),
  40623. weight: math.unit(1442, "lb"),
  40624. name: "Front",
  40625. image: {
  40626. source: "./media/characters/mal-dragon/front.svg",
  40627. extra: 1515/1444,
  40628. bottom: 113/1628
  40629. }
  40630. },
  40631. back: {
  40632. height: math.unit(10, "feet"),
  40633. weight: math.unit(1442, "lb"),
  40634. name: "Back",
  40635. image: {
  40636. source: "./media/characters/mal-dragon/back.svg",
  40637. extra: 1527/1434,
  40638. bottom: 25/1552
  40639. }
  40640. },
  40641. },
  40642. [
  40643. {
  40644. name: "Mortal Interaction",
  40645. height: math.unit(10, "feet"),
  40646. default: true
  40647. },
  40648. {
  40649. name: "Large",
  40650. height: math.unit(30, "feet")
  40651. },
  40652. {
  40653. name: "Kaiju",
  40654. height: math.unit(300, "feet")
  40655. },
  40656. {
  40657. name: "Megamacro",
  40658. height: math.unit(10000, "feet")
  40659. },
  40660. {
  40661. name: "Continent Cracker",
  40662. height: math.unit(30000000, "feet")
  40663. },
  40664. {
  40665. name: "Sol-Swallowing",
  40666. height: math.unit(1e11, "feet")
  40667. },
  40668. {
  40669. name: "Light Universal",
  40670. height: math.unit(5, "universes")
  40671. },
  40672. {
  40673. name: "Universe Atoms",
  40674. height: math.unit(1.829e9, "universes")
  40675. },
  40676. {
  40677. name: "Light Multiversal",
  40678. height: math.unit(5, "multiverses")
  40679. },
  40680. {
  40681. name: "Multiverse Atoms",
  40682. height: math.unit(1.829e9, "multiverses")
  40683. },
  40684. {
  40685. name: "Fabric of Time",
  40686. height: math.unit(1e262, "multiverses")
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40692. {
  40693. front: {
  40694. height: math.unit(9, "feet"),
  40695. weight: math.unit(1050, "lb"),
  40696. name: "Front",
  40697. image: {
  40698. source: "./media/characters/tabitha/front.svg",
  40699. extra: 2083/1994,
  40700. bottom: 68/2151
  40701. }
  40702. },
  40703. },
  40704. [
  40705. {
  40706. name: "Baseline",
  40707. height: math.unit(9, "feet"),
  40708. default: true
  40709. },
  40710. {
  40711. name: "Giant",
  40712. height: math.unit(90, "feet")
  40713. },
  40714. {
  40715. name: "Macro",
  40716. height: math.unit(900, "feet")
  40717. },
  40718. {
  40719. name: "Megamacro",
  40720. height: math.unit(9000, "feet")
  40721. },
  40722. {
  40723. name: "City-Crushing",
  40724. height: math.unit(27000, "feet")
  40725. },
  40726. {
  40727. name: "Mountain-Mashing",
  40728. height: math.unit(90000, "feet")
  40729. },
  40730. {
  40731. name: "Nation Nemesis",
  40732. height: math.unit(9e6, "feet")
  40733. },
  40734. {
  40735. name: "Continent Cracker",
  40736. height: math.unit(27e6, "feet")
  40737. },
  40738. {
  40739. name: "Earth-Eclipsing",
  40740. height: math.unit(2.7e8, "feet")
  40741. },
  40742. {
  40743. name: "Gas Giant Gulper",
  40744. height: math.unit(2.7e9, "feet")
  40745. },
  40746. {
  40747. name: "Sol-Swallowing",
  40748. height: math.unit(9e10, "feet")
  40749. },
  40750. {
  40751. name: "Galaxy Gulper",
  40752. height: math.unit(9, "galaxies")
  40753. },
  40754. {
  40755. name: "Cosmos Churner",
  40756. height: math.unit(9, "universes")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(160, "cm"),
  40765. weight: math.unit(55, "kg"),
  40766. name: "Front",
  40767. image: {
  40768. source: "./media/characters/tow/front.svg",
  40769. extra: 1751/1722,
  40770. bottom: 74/1825
  40771. }
  40772. },
  40773. },
  40774. [
  40775. {
  40776. name: "Norm",
  40777. height: math.unit(160, "cm")
  40778. },
  40779. {
  40780. name: "Casual",
  40781. height: math.unit(3200, "m"),
  40782. default: true
  40783. },
  40784. {
  40785. name: "Show-Off",
  40786. height: math.unit(160, "km")
  40787. },
  40788. ]
  40789. ))
  40790. characterMakers.push(() => makeCharacter(
  40791. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40792. {
  40793. front: {
  40794. height: math.unit(7 + 11/12, "feet"),
  40795. weight: math.unit(342.8, "lb"),
  40796. name: "Front",
  40797. image: {
  40798. source: "./media/characters/vivian-orca-dragon/front.svg",
  40799. extra: 1890/1865,
  40800. bottom: 28/1918
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Micro",
  40807. height: math.unit(5, "inches")
  40808. },
  40809. {
  40810. name: "Normal",
  40811. height: math.unit(7 + 11/12, "feet"),
  40812. default: true
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(395 + 7/12, "feet")
  40817. },
  40818. ]
  40819. ))
  40820. characterMakers.push(() => makeCharacter(
  40821. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40822. {
  40823. side: {
  40824. height: math.unit(10, "feet"),
  40825. weight: math.unit(1442, "lb"),
  40826. name: "Side",
  40827. image: {
  40828. source: "./media/characters/lotherakon/side.svg",
  40829. extra: 1604/1497,
  40830. bottom: 89/1693
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Mortal Interaction",
  40837. height: math.unit(10, "feet")
  40838. },
  40839. {
  40840. name: "Large",
  40841. height: math.unit(30, "feet"),
  40842. default: true
  40843. },
  40844. {
  40845. name: "Giant",
  40846. height: math.unit(100, "feet")
  40847. },
  40848. {
  40849. name: "Kaiju",
  40850. height: math.unit(300, "feet")
  40851. },
  40852. {
  40853. name: "Macro",
  40854. height: math.unit(1000, "feet")
  40855. },
  40856. {
  40857. name: "Macro+",
  40858. height: math.unit(3000, "feet")
  40859. },
  40860. {
  40861. name: "Megamacro",
  40862. height: math.unit(10000, "feet")
  40863. },
  40864. {
  40865. name: "City-Crushing",
  40866. height: math.unit(30000, "feet")
  40867. },
  40868. {
  40869. name: "Continent Cracker",
  40870. height: math.unit(30e6, "feet")
  40871. },
  40872. {
  40873. name: "Earth Eclipsing",
  40874. height: math.unit(3e8, "feet")
  40875. },
  40876. {
  40877. name: "Gas Giant Gulper",
  40878. height: math.unit(3e9, "feet")
  40879. },
  40880. {
  40881. name: "Sol-Swallowing",
  40882. height: math.unit(1e11, "feet")
  40883. },
  40884. {
  40885. name: "System Swallower",
  40886. height: math.unit(3e14, "feet")
  40887. },
  40888. {
  40889. name: "Galaxy Gulper",
  40890. height: math.unit(10, "galaxies")
  40891. },
  40892. {
  40893. name: "Light Universal",
  40894. height: math.unit(5, "universes")
  40895. },
  40896. {
  40897. name: "Universe Palm",
  40898. height: math.unit(20, "universes")
  40899. },
  40900. {
  40901. name: "Light Multiversal",
  40902. height: math.unit(5, "multiverses")
  40903. },
  40904. {
  40905. name: "Multiverse Palm",
  40906. height: math.unit(20, "multiverses")
  40907. },
  40908. {
  40909. name: "Inferno Incarnate",
  40910. height: math.unit(1e7, "multiverses")
  40911. },
  40912. ]
  40913. ))
  40914. characterMakers.push(() => makeCharacter(
  40915. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40916. {
  40917. front: {
  40918. height: math.unit(8, "feet"),
  40919. weight: math.unit(1200, "lb"),
  40920. name: "Front",
  40921. image: {
  40922. source: "./media/characters/malithee/front.svg",
  40923. extra: 1675/1640,
  40924. bottom: 162/1837
  40925. }
  40926. },
  40927. },
  40928. [
  40929. {
  40930. name: "Mortal Interaction",
  40931. height: math.unit(8, "feet"),
  40932. default: true
  40933. },
  40934. {
  40935. name: "Large",
  40936. height: math.unit(24, "feet")
  40937. },
  40938. {
  40939. name: "Kaiju",
  40940. height: math.unit(240, "feet")
  40941. },
  40942. {
  40943. name: "Megamacro",
  40944. height: math.unit(8000, "feet")
  40945. },
  40946. {
  40947. name: "Continent Cracker",
  40948. height: math.unit(24e6, "feet")
  40949. },
  40950. {
  40951. name: "Earth-Eclipsing",
  40952. height: math.unit(2.4e8, "feet")
  40953. },
  40954. {
  40955. name: "Sol-Swallowing",
  40956. height: math.unit(8e10, "feet")
  40957. },
  40958. {
  40959. name: "Galaxy Gulper",
  40960. height: math.unit(8, "galaxies")
  40961. },
  40962. {
  40963. name: "Light Universal",
  40964. height: math.unit(4, "universes")
  40965. },
  40966. {
  40967. name: "Universe Atoms",
  40968. height: math.unit(1.829e9, "universes")
  40969. },
  40970. {
  40971. name: "Light Multiversal",
  40972. height: math.unit(4, "multiverses")
  40973. },
  40974. {
  40975. name: "Multiverse Atoms",
  40976. height: math.unit(1.829e9, "multiverses")
  40977. },
  40978. {
  40979. name: "Nigh-Omnipresence",
  40980. height: math.unit(8e261, "multiverses")
  40981. },
  40982. ]
  40983. ))
  40984. characterMakers.push(() => makeCharacter(
  40985. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40986. {
  40987. front: {
  40988. height: math.unit(10, "feet"),
  40989. weight: math.unit(1500, "lb"),
  40990. name: "Front",
  40991. image: {
  40992. source: "./media/characters/miles-thestia/front.svg",
  40993. extra: 1812/1727,
  40994. bottom: 86/1898
  40995. }
  40996. },
  40997. back: {
  40998. height: math.unit(10, "feet"),
  40999. weight: math.unit(1500, "lb"),
  41000. name: "Back",
  41001. image: {
  41002. source: "./media/characters/miles-thestia/back.svg",
  41003. extra: 1799/1690,
  41004. bottom: 47/1846
  41005. }
  41006. },
  41007. frontNsfw: {
  41008. height: math.unit(10, "feet"),
  41009. weight: math.unit(1500, "lb"),
  41010. name: "Front (NSFW)",
  41011. image: {
  41012. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41013. extra: 1812/1727,
  41014. bottom: 86/1898
  41015. }
  41016. },
  41017. },
  41018. [
  41019. {
  41020. name: "Mini-Macro",
  41021. height: math.unit(10, "feet"),
  41022. default: true
  41023. },
  41024. ]
  41025. ))
  41026. characterMakers.push(() => makeCharacter(
  41027. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41028. {
  41029. front: {
  41030. height: math.unit(25, "feet"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/titan-s-wulf/front.svg",
  41034. extra: 1560/1484,
  41035. bottom: 76/1636
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Smallest",
  41042. height: math.unit(25, "feet"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Normal",
  41047. height: math.unit(200, "feet")
  41048. },
  41049. {
  41050. name: "Macro",
  41051. height: math.unit(200000, "feet")
  41052. },
  41053. {
  41054. name: "Multiversal Original",
  41055. height: math.unit(10000, "multiverses")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(8, "feet"),
  41064. weight: math.unit(553, "lb"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/tawendeh/front.svg",
  41068. extra: 2365/2268,
  41069. bottom: 83/2448
  41070. }
  41071. },
  41072. frontClothed: {
  41073. height: math.unit(8, "feet"),
  41074. weight: math.unit(553, "lb"),
  41075. name: "Front (Clothed)",
  41076. image: {
  41077. source: "./media/characters/tawendeh/front-clothed.svg",
  41078. extra: 2365/2268,
  41079. bottom: 83/2448
  41080. }
  41081. },
  41082. back: {
  41083. height: math.unit(8, "feet"),
  41084. weight: math.unit(553, "lb"),
  41085. name: "Back",
  41086. image: {
  41087. source: "./media/characters/tawendeh/back.svg",
  41088. extra: 2397/2294,
  41089. bottom: 42/2439
  41090. }
  41091. },
  41092. },
  41093. [
  41094. {
  41095. name: "Mortal Interaction",
  41096. height: math.unit(8, "feet"),
  41097. default: true
  41098. },
  41099. {
  41100. name: "Giant",
  41101. height: math.unit(80, "feet")
  41102. },
  41103. {
  41104. name: "Macro",
  41105. height: math.unit(800, "feet")
  41106. },
  41107. {
  41108. name: "Megamacro",
  41109. height: math.unit(8000, "feet")
  41110. },
  41111. {
  41112. name: "City-Crushing",
  41113. height: math.unit(24000, "feet")
  41114. },
  41115. {
  41116. name: "Mountain-Mashing",
  41117. height: math.unit(80000, "feet")
  41118. },
  41119. {
  41120. name: "Nation Nemesis",
  41121. height: math.unit(8e6, "feet")
  41122. },
  41123. {
  41124. name: "Continent Cracker",
  41125. height: math.unit(24e6, "feet")
  41126. },
  41127. {
  41128. name: "Earth-Eclipsing",
  41129. height: math.unit(2.4e8, "feet")
  41130. },
  41131. {
  41132. name: "Gas Giant Gulper",
  41133. height: math.unit(2.4e9, "feet")
  41134. },
  41135. {
  41136. name: "Sol-Swallowing",
  41137. height: math.unit(8e10, "feet")
  41138. },
  41139. {
  41140. name: "Galaxy Gulper",
  41141. height: math.unit(8, "galaxies")
  41142. },
  41143. {
  41144. name: "Cosmos Churner",
  41145. height: math.unit(8, "universes")
  41146. },
  41147. {
  41148. name: "Omnipotent Otter",
  41149. height: math.unit(80, "universes")
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(2.6, "meters"),
  41158. weight: math.unit(900, "kg"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/neesha/front.svg",
  41162. extra: 1803/1653,
  41163. bottom: 128/1931
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Normal",
  41170. height: math.unit(2.6, "meters"),
  41171. default: true
  41172. },
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(50, "meters")
  41176. },
  41177. ]
  41178. ))
  41179. characterMakers.push(() => makeCharacter(
  41180. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41181. {
  41182. front: {
  41183. height: math.unit(5, "feet"),
  41184. weight: math.unit(185, "lb"),
  41185. name: "Front",
  41186. image: {
  41187. source: "./media/characters/kyera/front.svg",
  41188. extra: 1875/1790,
  41189. bottom: 96/1971
  41190. }
  41191. },
  41192. },
  41193. [
  41194. {
  41195. name: "Normal",
  41196. height: math.unit(5, "feet"),
  41197. default: true
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(7 + 6/12, "feet"),
  41206. weight: math.unit(540, "lb"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/yuko/front.svg",
  41210. extra: 1282/1222,
  41211. bottom: 101/1383
  41212. }
  41213. },
  41214. frontClothed: {
  41215. height: math.unit(7 + 6/12, "feet"),
  41216. weight: math.unit(540, "lb"),
  41217. name: "Front (Clothed)",
  41218. image: {
  41219. source: "./media/characters/yuko/front-clothed.svg",
  41220. extra: 1282/1222,
  41221. bottom: 101/1383
  41222. }
  41223. },
  41224. },
  41225. [
  41226. {
  41227. name: "Normal",
  41228. height: math.unit(7 + 6/12, "feet"),
  41229. default: true
  41230. },
  41231. {
  41232. name: "Macro",
  41233. height: math.unit(26 + 9/12, "feet")
  41234. },
  41235. {
  41236. name: "Megamacro",
  41237. height: math.unit(300, "feet")
  41238. },
  41239. {
  41240. name: "Gigamacro",
  41241. height: math.unit(5000, "feet")
  41242. },
  41243. {
  41244. name: "Planetary",
  41245. height: math.unit(10000, "miles")
  41246. },
  41247. ]
  41248. ))
  41249. characterMakers.push(() => makeCharacter(
  41250. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41251. {
  41252. front: {
  41253. height: math.unit(8 + 2/12, "feet"),
  41254. weight: math.unit(600, "lb"),
  41255. name: "Front",
  41256. image: {
  41257. source: "./media/characters/deam-nitrel/front.svg",
  41258. extra: 1308/1234,
  41259. bottom: 125/1433
  41260. }
  41261. },
  41262. },
  41263. [
  41264. {
  41265. name: "Normal",
  41266. height: math.unit(8 + 2/12, "feet"),
  41267. default: true
  41268. },
  41269. ]
  41270. ))
  41271. characterMakers.push(() => makeCharacter(
  41272. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41273. {
  41274. front: {
  41275. height: math.unit(6.1, "feet"),
  41276. weight: math.unit(180, "lb"),
  41277. name: "Front",
  41278. image: {
  41279. source: "./media/characters/skyress/front.svg",
  41280. extra: 1045/915,
  41281. bottom: 28/1073
  41282. }
  41283. },
  41284. maw: {
  41285. height: math.unit(1, "feet"),
  41286. name: "Maw",
  41287. image: {
  41288. source: "./media/characters/skyress/maw.svg"
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(6.1, "feet"),
  41296. default: true
  41297. },
  41298. {
  41299. name: "Macro",
  41300. height: math.unit(200, "feet")
  41301. },
  41302. ]
  41303. ))
  41304. characterMakers.push(() => makeCharacter(
  41305. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41306. {
  41307. front: {
  41308. height: math.unit(4 + 2/12, "feet"),
  41309. weight: math.unit(40, "kg"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/amethyst-jones/front.svg",
  41313. extra: 1220/1150,
  41314. bottom: 101/1321
  41315. }
  41316. },
  41317. },
  41318. [
  41319. {
  41320. name: "Normal",
  41321. height: math.unit(4 + 2/12, "feet"),
  41322. default: true
  41323. },
  41324. ]
  41325. ))
  41326. characterMakers.push(() => makeCharacter(
  41327. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41328. {
  41329. front: {
  41330. height: math.unit(1.7, "m"),
  41331. weight: math.unit(135, "lb"),
  41332. name: "Front",
  41333. image: {
  41334. source: "./media/characters/jade/front.svg",
  41335. extra: 1818/1767,
  41336. bottom: 32/1850
  41337. }
  41338. },
  41339. back: {
  41340. height: math.unit(1.7, "m"),
  41341. weight: math.unit(135, "lb"),
  41342. name: "Back",
  41343. image: {
  41344. source: "./media/characters/jade/back.svg",
  41345. extra: 1869/1809,
  41346. bottom: 35/1904
  41347. }
  41348. },
  41349. hand: {
  41350. height: math.unit(0.24, "m"),
  41351. name: "Hand",
  41352. image: {
  41353. source: "./media/characters/jade/hand.svg"
  41354. }
  41355. },
  41356. foot: {
  41357. height: math.unit(0.263, "m"),
  41358. name: "Foot",
  41359. image: {
  41360. source: "./media/characters/jade/foot.svg"
  41361. }
  41362. },
  41363. dick: {
  41364. height: math.unit(0.47, "m"),
  41365. name: "Dick",
  41366. image: {
  41367. source: "./media/characters/jade/dick.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Micro",
  41374. height: math.unit(22, "cm")
  41375. },
  41376. {
  41377. name: "Normal",
  41378. height: math.unit(1.7, "m"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Macro",
  41383. height: math.unit(152, "m")
  41384. },
  41385. ]
  41386. ))
  41387. characterMakers.push(() => makeCharacter(
  41388. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41389. {
  41390. front: {
  41391. height: math.unit(100, "miles"),
  41392. weight: math.unit(20000, "tons"),
  41393. name: "Front",
  41394. image: {
  41395. source: "./media/characters/cookie/front.svg",
  41396. extra: 1125/1070,
  41397. bottom: 30/1155
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "Big",
  41404. height: math.unit(50, "feet")
  41405. },
  41406. {
  41407. name: "Macro",
  41408. height: math.unit(100, "miles"),
  41409. default: true
  41410. },
  41411. {
  41412. name: "Megamacro",
  41413. height: math.unit(90000, "miles")
  41414. },
  41415. ]
  41416. ))
  41417. characterMakers.push(() => makeCharacter(
  41418. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41419. {
  41420. front: {
  41421. height: math.unit(6, "feet"),
  41422. weight: math.unit(145, "lb"),
  41423. name: "Front",
  41424. image: {
  41425. source: "./media/characters/farzian/front.svg",
  41426. extra: 1902/1693,
  41427. bottom: 108/2010
  41428. }
  41429. },
  41430. },
  41431. [
  41432. {
  41433. name: "Macro",
  41434. height: math.unit(500, "feet"),
  41435. default: true
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(3 + 6/12, "feet"),
  41444. weight: math.unit(50, "lb"),
  41445. name: "Front",
  41446. image: {
  41447. source: "./media/characters/kimberly-tilson/front.svg",
  41448. extra: 1400/1322,
  41449. bottom: 36/1436
  41450. }
  41451. },
  41452. back: {
  41453. height: math.unit(3 + 6/12, "feet"),
  41454. weight: math.unit(50, "lb"),
  41455. name: "Back",
  41456. image: {
  41457. source: "./media/characters/kimberly-tilson/back.svg",
  41458. extra: 1370/1307,
  41459. bottom: 20/1390
  41460. }
  41461. },
  41462. },
  41463. [
  41464. {
  41465. name: "Normal",
  41466. height: math.unit(3 + 6/12, "feet"),
  41467. default: true
  41468. },
  41469. ]
  41470. ))
  41471. characterMakers.push(() => makeCharacter(
  41472. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41473. {
  41474. front: {
  41475. height: math.unit(1148, "feet"),
  41476. weight: math.unit(34057, "lb"),
  41477. name: "Front",
  41478. image: {
  41479. source: "./media/characters/harthos/front.svg",
  41480. extra: 1391/1339,
  41481. bottom: 13/1404
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Macro",
  41488. height: math.unit(1148, "feet"),
  41489. default: true
  41490. },
  41491. ]
  41492. ))
  41493. characterMakers.push(() => makeCharacter(
  41494. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41495. {
  41496. front: {
  41497. height: math.unit(15, "feet"),
  41498. name: "Front",
  41499. image: {
  41500. source: "./media/characters/hypatia/front.svg",
  41501. extra: 1653/1591,
  41502. bottom: 79/1732
  41503. }
  41504. },
  41505. },
  41506. [
  41507. {
  41508. name: "Normal",
  41509. height: math.unit(15, "feet")
  41510. },
  41511. {
  41512. name: "Small",
  41513. height: math.unit(300, "feet")
  41514. },
  41515. {
  41516. name: "Macro",
  41517. height: math.unit(2500, "feet"),
  41518. default: true
  41519. },
  41520. {
  41521. name: "Mega Macro",
  41522. height: math.unit(1500, "miles")
  41523. },
  41524. {
  41525. name: "Giga Macro",
  41526. height: math.unit(1.5e6, "miles")
  41527. },
  41528. ]
  41529. ))
  41530. characterMakers.push(() => makeCharacter(
  41531. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41532. {
  41533. front: {
  41534. height: math.unit(6, "feet"),
  41535. weight: math.unit(200, "lb"),
  41536. name: "Front",
  41537. image: {
  41538. source: "./media/characters/wulver/front.svg",
  41539. extra: 1724/1632,
  41540. bottom: 130/1854
  41541. }
  41542. },
  41543. frontNsfw: {
  41544. height: math.unit(6, "feet"),
  41545. weight: math.unit(200, "lb"),
  41546. name: "Front (NSFW)",
  41547. image: {
  41548. source: "./media/characters/wulver/front-nsfw.svg",
  41549. extra: 1724/1632,
  41550. bottom: 130/1854
  41551. }
  41552. },
  41553. },
  41554. [
  41555. {
  41556. name: "Human-Sized",
  41557. height: math.unit(6, "feet")
  41558. },
  41559. {
  41560. name: "Normal",
  41561. height: math.unit(4, "meters"),
  41562. default: true
  41563. },
  41564. {
  41565. name: "Large",
  41566. height: math.unit(6, "m")
  41567. },
  41568. ]
  41569. ))
  41570. characterMakers.push(() => makeCharacter(
  41571. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41572. {
  41573. front: {
  41574. height: math.unit(7, "feet"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/maru/front.svg",
  41578. extra: 1595/1570,
  41579. bottom: 0/1595
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Normal",
  41586. height: math.unit(7, "feet"),
  41587. default: true
  41588. },
  41589. {
  41590. name: "Macro",
  41591. height: math.unit(700, "feet")
  41592. },
  41593. {
  41594. name: "Mega Macro",
  41595. height: math.unit(25, "miles")
  41596. },
  41597. ]
  41598. ))
  41599. characterMakers.push(() => makeCharacter(
  41600. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41601. {
  41602. front: {
  41603. height: math.unit(6, "feet"),
  41604. weight: math.unit(170, "lb"),
  41605. name: "Front",
  41606. image: {
  41607. source: "./media/characters/xenon/front.svg",
  41608. extra: 1376/1305,
  41609. bottom: 56/1432
  41610. }
  41611. },
  41612. back: {
  41613. height: math.unit(6, "feet"),
  41614. weight: math.unit(170, "lb"),
  41615. name: "Back",
  41616. image: {
  41617. source: "./media/characters/xenon/back.svg",
  41618. extra: 1328/1259,
  41619. bottom: 95/1423
  41620. }
  41621. },
  41622. maw: {
  41623. height: math.unit(0.52, "feet"),
  41624. name: "Maw",
  41625. image: {
  41626. source: "./media/characters/xenon/maw.svg"
  41627. }
  41628. },
  41629. handLeft: {
  41630. height: math.unit(0.82 * 169 / 153, "feet"),
  41631. name: "Hand (Left)",
  41632. image: {
  41633. source: "./media/characters/xenon/hand-left.svg"
  41634. }
  41635. },
  41636. handRight: {
  41637. height: math.unit(0.82, "feet"),
  41638. name: "Hand (Right)",
  41639. image: {
  41640. source: "./media/characters/xenon/hand-right.svg"
  41641. }
  41642. },
  41643. footLeft: {
  41644. height: math.unit(1.13, "feet"),
  41645. name: "Foot (Left)",
  41646. image: {
  41647. source: "./media/characters/xenon/foot-left.svg"
  41648. }
  41649. },
  41650. footRight: {
  41651. height: math.unit(1.13 * 194 / 196, "feet"),
  41652. name: "Foot (Right)",
  41653. image: {
  41654. source: "./media/characters/xenon/foot-right.svg"
  41655. }
  41656. },
  41657. },
  41658. [
  41659. {
  41660. name: "Micro",
  41661. height: math.unit(0.8, "inches")
  41662. },
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(6, "feet")
  41666. },
  41667. {
  41668. name: "Macro",
  41669. height: math.unit(50, "feet"),
  41670. default: true
  41671. },
  41672. {
  41673. name: "Macro+",
  41674. height: math.unit(250, "feet")
  41675. },
  41676. {
  41677. name: "Megamacro",
  41678. height: math.unit(1500, "feet")
  41679. },
  41680. ]
  41681. ))
  41682. characterMakers.push(() => makeCharacter(
  41683. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41684. {
  41685. front: {
  41686. height: math.unit(7 + 5/12, "feet"),
  41687. name: "Front",
  41688. image: {
  41689. source: "./media/characters/zane/front.svg",
  41690. extra: 1260/1203,
  41691. bottom: 94/1354
  41692. }
  41693. },
  41694. back: {
  41695. height: math.unit(5.05, "feet"),
  41696. name: "Back",
  41697. image: {
  41698. source: "./media/characters/zane/back.svg",
  41699. extra: 893/829,
  41700. bottom: 30/923
  41701. }
  41702. },
  41703. werewolf: {
  41704. height: math.unit(11, "feet"),
  41705. name: "Werewolf",
  41706. image: {
  41707. source: "./media/characters/zane/werewolf.svg",
  41708. extra: 1383/1323,
  41709. bottom: 89/1472
  41710. }
  41711. },
  41712. foot: {
  41713. height: math.unit(1.46, "feet"),
  41714. name: "Foot",
  41715. image: {
  41716. source: "./media/characters/zane/foot.svg"
  41717. }
  41718. },
  41719. footFront: {
  41720. height: math.unit(0.784, "feet"),
  41721. name: "Foot (Front)",
  41722. image: {
  41723. source: "./media/characters/zane/foot-front.svg"
  41724. }
  41725. },
  41726. dick: {
  41727. height: math.unit(1.95, "feet"),
  41728. name: "Dick",
  41729. image: {
  41730. source: "./media/characters/zane/dick.svg"
  41731. }
  41732. },
  41733. dickWerewolf: {
  41734. height: math.unit(3.77, "feet"),
  41735. name: "Dick (Werewolf)",
  41736. image: {
  41737. source: "./media/characters/zane/dick.svg"
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Normal",
  41744. height: math.unit(7 + 5/12, "feet"),
  41745. default: true
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41751. {
  41752. front: {
  41753. height: math.unit(6 + 2/12, "feet"),
  41754. weight: math.unit(284, "lb"),
  41755. name: "Front",
  41756. image: {
  41757. source: "./media/characters/benni-desparque/front.svg",
  41758. extra: 1353/1126,
  41759. bottom: 69/1422
  41760. }
  41761. },
  41762. },
  41763. [
  41764. {
  41765. name: "Civilian",
  41766. height: math.unit(6 + 2/12, "feet")
  41767. },
  41768. {
  41769. name: "Normal",
  41770. height: math.unit(98, "feet"),
  41771. default: true
  41772. },
  41773. {
  41774. name: "Kaiju Fighter",
  41775. height: math.unit(268, "feet")
  41776. },
  41777. ]
  41778. ))
  41779. characterMakers.push(() => makeCharacter(
  41780. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41781. {
  41782. front: {
  41783. height: math.unit(5, "feet"),
  41784. weight: math.unit(105, "lb"),
  41785. name: "Front",
  41786. image: {
  41787. source: "./media/characters/maxine/front.svg",
  41788. extra: 1386/1250,
  41789. bottom: 71/1457
  41790. }
  41791. },
  41792. },
  41793. [
  41794. {
  41795. name: "Normal",
  41796. height: math.unit(5, "feet"),
  41797. default: true
  41798. },
  41799. ]
  41800. ))
  41801. characterMakers.push(() => makeCharacter(
  41802. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41803. {
  41804. front: {
  41805. height: math.unit(11 + 7/12, "feet"),
  41806. weight: math.unit(9576, "lb"),
  41807. name: "Front",
  41808. image: {
  41809. source: "./media/characters/scaly/front.svg",
  41810. extra: 888/867,
  41811. bottom: 36/924
  41812. }
  41813. },
  41814. },
  41815. [
  41816. {
  41817. name: "Normal",
  41818. height: math.unit(11 + 7/12, "feet"),
  41819. default: true
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41825. {
  41826. front: {
  41827. height: math.unit(6 + 3/12, "feet"),
  41828. name: "Front",
  41829. image: {
  41830. source: "./media/characters/saelria/front.svg",
  41831. extra: 1243/1138,
  41832. bottom: 46/1289
  41833. }
  41834. },
  41835. },
  41836. [
  41837. {
  41838. name: "Micro",
  41839. height: math.unit(6, "inches"),
  41840. },
  41841. {
  41842. name: "Normal",
  41843. height: math.unit(6 + 3/12, "feet"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Macro",
  41848. height: math.unit(25, "feet")
  41849. },
  41850. ]
  41851. ))
  41852. characterMakers.push(() => makeCharacter(
  41853. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41854. {
  41855. front: {
  41856. height: math.unit(80, "meters"),
  41857. weight: math.unit(7000, "tonnes"),
  41858. name: "Front",
  41859. image: {
  41860. source: "./media/characters/tef/front.svg",
  41861. extra: 2036/1991,
  41862. bottom: 54/2090
  41863. }
  41864. },
  41865. back: {
  41866. height: math.unit(80, "meters"),
  41867. weight: math.unit(7000, "tonnes"),
  41868. name: "Back",
  41869. image: {
  41870. source: "./media/characters/tef/back.svg",
  41871. extra: 2036/1991,
  41872. bottom: 54/2090
  41873. }
  41874. },
  41875. },
  41876. [
  41877. {
  41878. name: "Macro",
  41879. height: math.unit(80, "meters"),
  41880. default: true
  41881. },
  41882. ]
  41883. ))
  41884. characterMakers.push(() => makeCharacter(
  41885. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41886. {
  41887. front: {
  41888. height: math.unit(13, "feet"),
  41889. weight: math.unit(6, "tons"),
  41890. name: "Front",
  41891. image: {
  41892. source: "./media/characters/rover/front.svg",
  41893. extra: 1233/1156,
  41894. bottom: 50/1283
  41895. }
  41896. },
  41897. back: {
  41898. height: math.unit(13, "feet"),
  41899. weight: math.unit(6, "tons"),
  41900. name: "Back",
  41901. image: {
  41902. source: "./media/characters/rover/back.svg",
  41903. extra: 1327/1258,
  41904. bottom: 39/1366
  41905. }
  41906. },
  41907. },
  41908. [
  41909. {
  41910. name: "Normal",
  41911. height: math.unit(13, "feet"),
  41912. default: true
  41913. },
  41914. {
  41915. name: "Macro",
  41916. height: math.unit(1300, "feet")
  41917. },
  41918. {
  41919. name: "Megamacro",
  41920. height: math.unit(1300, "miles")
  41921. },
  41922. {
  41923. name: "Gigamacro",
  41924. height: math.unit(1300000, "miles")
  41925. },
  41926. ]
  41927. ))
  41928. characterMakers.push(() => makeCharacter(
  41929. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41930. {
  41931. front: {
  41932. height: math.unit(6, "feet"),
  41933. weight: math.unit(150, "lb"),
  41934. name: "Front",
  41935. image: {
  41936. source: "./media/characters/ariz/front.svg",
  41937. extra: 1401/1346,
  41938. bottom: 5/1406
  41939. }
  41940. },
  41941. },
  41942. [
  41943. {
  41944. name: "Normal",
  41945. height: math.unit(10, "feet"),
  41946. default: true
  41947. },
  41948. ]
  41949. ))
  41950. characterMakers.push(() => makeCharacter(
  41951. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41952. {
  41953. front: {
  41954. height: math.unit(6, "feet"),
  41955. weight: math.unit(140, "lb"),
  41956. name: "Front",
  41957. image: {
  41958. source: "./media/characters/sigrun/front.svg",
  41959. extra: 1418/1359,
  41960. bottom: 27/1445
  41961. }
  41962. },
  41963. },
  41964. [
  41965. {
  41966. name: "Macro",
  41967. height: math.unit(35, "feet"),
  41968. default: true
  41969. },
  41970. ]
  41971. ))
  41972. characterMakers.push(() => makeCharacter(
  41973. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41974. {
  41975. front: {
  41976. height: math.unit(6, "feet"),
  41977. weight: math.unit(150, "lb"),
  41978. name: "Front",
  41979. image: {
  41980. source: "./media/characters/numin/front.svg",
  41981. extra: 1433/1388,
  41982. bottom: 12/1445
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Macro",
  41989. height: math.unit(21.5, "km"),
  41990. default: true
  41991. },
  41992. ]
  41993. ))
  41994. characterMakers.push(() => makeCharacter(
  41995. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41996. {
  41997. front: {
  41998. height: math.unit(6, "feet"),
  41999. weight: math.unit(463, "lb"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/melwa/front.svg",
  42003. extra: 1307/1248,
  42004. bottom: 93/1400
  42005. }
  42006. },
  42007. },
  42008. [
  42009. {
  42010. name: "Macro",
  42011. height: math.unit(50, "meters"),
  42012. default: true
  42013. },
  42014. ]
  42015. ))
  42016. characterMakers.push(() => makeCharacter(
  42017. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42018. {
  42019. front: {
  42020. height: math.unit(325, "feet"),
  42021. name: "Front",
  42022. image: {
  42023. source: "./media/characters/zorkaiju/front.svg",
  42024. extra: 1955/1814,
  42025. bottom: 40/1995
  42026. }
  42027. },
  42028. frontExtended: {
  42029. height: math.unit(325, "feet"),
  42030. name: "Front (Extended)",
  42031. image: {
  42032. source: "./media/characters/zorkaiju/front-extended.svg",
  42033. extra: 1955/1814,
  42034. bottom: 40/1995
  42035. }
  42036. },
  42037. side: {
  42038. height: math.unit(325, "feet"),
  42039. name: "Side",
  42040. image: {
  42041. source: "./media/characters/zorkaiju/side.svg",
  42042. extra: 1495/1396,
  42043. bottom: 17/1512
  42044. }
  42045. },
  42046. sideExtended: {
  42047. height: math.unit(325, "feet"),
  42048. name: "Side (Extended)",
  42049. image: {
  42050. source: "./media/characters/zorkaiju/side-extended.svg",
  42051. extra: 1495/1396,
  42052. bottom: 17/1512
  42053. }
  42054. },
  42055. back: {
  42056. height: math.unit(325, "feet"),
  42057. name: "Back",
  42058. image: {
  42059. source: "./media/characters/zorkaiju/back.svg",
  42060. extra: 1959/1821,
  42061. bottom: 31/1990
  42062. }
  42063. },
  42064. backExtended: {
  42065. height: math.unit(325, "feet"),
  42066. name: "Back (Extended)",
  42067. image: {
  42068. source: "./media/characters/zorkaiju/back-extended.svg",
  42069. extra: 1959/1821,
  42070. bottom: 31/1990
  42071. }
  42072. },
  42073. hand: {
  42074. height: math.unit(58.4, "feet"),
  42075. name: "Hand",
  42076. image: {
  42077. source: "./media/characters/zorkaiju/hand.svg"
  42078. }
  42079. },
  42080. handExtended: {
  42081. height: math.unit(61.4, "feet"),
  42082. name: "Hand (Extended)",
  42083. image: {
  42084. source: "./media/characters/zorkaiju/hand-extended.svg"
  42085. }
  42086. },
  42087. foot: {
  42088. height: math.unit(95, "feet"),
  42089. name: "Foot",
  42090. image: {
  42091. source: "./media/characters/zorkaiju/foot.svg"
  42092. }
  42093. },
  42094. leftArm: {
  42095. height: math.unit(59, "feet"),
  42096. name: "Left Arm",
  42097. image: {
  42098. source: "./media/characters/zorkaiju/left-arm.svg"
  42099. }
  42100. },
  42101. rightArm: {
  42102. height: math.unit(59, "feet"),
  42103. name: "Right Arm",
  42104. image: {
  42105. source: "./media/characters/zorkaiju/right-arm.svg"
  42106. }
  42107. },
  42108. leftArmExtended: {
  42109. height: math.unit(59 * 1.033546, "feet"),
  42110. name: "Left Arm (Extended)",
  42111. image: {
  42112. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42113. }
  42114. },
  42115. rightArmExtended: {
  42116. height: math.unit(59 * 1.0496, "feet"),
  42117. name: "Right Arm (Extended)",
  42118. image: {
  42119. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42120. }
  42121. },
  42122. tail: {
  42123. height: math.unit(104, "feet"),
  42124. name: "Tail",
  42125. image: {
  42126. source: "./media/characters/zorkaiju/tail.svg"
  42127. }
  42128. },
  42129. tailExtended: {
  42130. height: math.unit(104, "feet"),
  42131. name: "Tail (Extended)",
  42132. image: {
  42133. source: "./media/characters/zorkaiju/tail-extended.svg"
  42134. }
  42135. },
  42136. tailBottom: {
  42137. height: math.unit(104, "feet"),
  42138. name: "Tail Bottom",
  42139. image: {
  42140. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42141. }
  42142. },
  42143. crystal: {
  42144. height: math.unit(27.54, "feet"),
  42145. name: "Crystal",
  42146. image: {
  42147. source: "./media/characters/zorkaiju/crystal.svg"
  42148. }
  42149. },
  42150. },
  42151. [
  42152. {
  42153. name: "Kaiju",
  42154. height: math.unit(325, "feet"),
  42155. default: true
  42156. },
  42157. ]
  42158. ))
  42159. characterMakers.push(() => makeCharacter(
  42160. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42161. {
  42162. front: {
  42163. height: math.unit(6 + 1/12, "feet"),
  42164. weight: math.unit(115, "lb"),
  42165. name: "Front",
  42166. image: {
  42167. source: "./media/characters/bailey-belfry/front.svg",
  42168. extra: 1240/1121,
  42169. bottom: 101/1341
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Normal",
  42176. height: math.unit(6 + 1/12, "feet"),
  42177. default: true
  42178. },
  42179. ]
  42180. ))
  42181. characterMakers.push(() => makeCharacter(
  42182. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42183. {
  42184. side: {
  42185. height: math.unit(4, "meters"),
  42186. weight: math.unit(250, "kg"),
  42187. name: "Side",
  42188. image: {
  42189. source: "./media/characters/blacky/side.svg",
  42190. extra: 1027/919,
  42191. bottom: 43/1070
  42192. }
  42193. },
  42194. maw: {
  42195. height: math.unit(1, "meters"),
  42196. name: "Maw",
  42197. image: {
  42198. source: "./media/characters/blacky/maw.svg"
  42199. }
  42200. },
  42201. paw: {
  42202. height: math.unit(1, "meters"),
  42203. name: "Paw",
  42204. image: {
  42205. source: "./media/characters/blacky/paw.svg"
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Normal",
  42212. height: math.unit(4, "meters"),
  42213. default: true
  42214. },
  42215. ]
  42216. ))
  42217. characterMakers.push(() => makeCharacter(
  42218. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42219. {
  42220. front: {
  42221. height: math.unit(170, "cm"),
  42222. weight: math.unit(66, "kg"),
  42223. name: "Front",
  42224. image: {
  42225. source: "./media/characters/thux-ei/front.svg",
  42226. extra: 1109/1011,
  42227. bottom: 8/1117
  42228. }
  42229. },
  42230. },
  42231. [
  42232. {
  42233. name: "Normal",
  42234. height: math.unit(170, "cm"),
  42235. default: true
  42236. },
  42237. ]
  42238. ))
  42239. characterMakers.push(() => makeCharacter(
  42240. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42241. {
  42242. front: {
  42243. height: math.unit(5, "feet"),
  42244. weight: math.unit(120, "lb"),
  42245. name: "Front",
  42246. image: {
  42247. source: "./media/characters/roxanne-voltaire/front.svg",
  42248. extra: 1901/1779,
  42249. bottom: 53/1954
  42250. }
  42251. },
  42252. },
  42253. [
  42254. {
  42255. name: "Normal",
  42256. height: math.unit(5, "feet"),
  42257. default: true
  42258. },
  42259. {
  42260. name: "Giant",
  42261. height: math.unit(50, "feet")
  42262. },
  42263. {
  42264. name: "Titan",
  42265. height: math.unit(500, "feet")
  42266. },
  42267. {
  42268. name: "Macro",
  42269. height: math.unit(5000, "feet")
  42270. },
  42271. {
  42272. name: "Megamacro",
  42273. height: math.unit(50000, "feet")
  42274. },
  42275. {
  42276. name: "Gigamacro",
  42277. height: math.unit(500000, "feet")
  42278. },
  42279. {
  42280. name: "Teramacro",
  42281. height: math.unit(5e6, "feet")
  42282. },
  42283. ]
  42284. ))
  42285. characterMakers.push(() => makeCharacter(
  42286. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42287. {
  42288. front: {
  42289. height: math.unit(6 + 2/12, "feet"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/squeaks/front.svg",
  42293. extra: 1823/1768,
  42294. bottom: 138/1961
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Micro",
  42301. height: math.unit(0.5, "inches")
  42302. },
  42303. {
  42304. name: "Normal",
  42305. height: math.unit(6 + 2/12, "feet"),
  42306. default: true
  42307. },
  42308. {
  42309. name: "Macro",
  42310. height: math.unit(600, "feet")
  42311. },
  42312. ]
  42313. ))
  42314. characterMakers.push(() => makeCharacter(
  42315. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42316. {
  42317. front: {
  42318. height: math.unit(1.72, "meters"),
  42319. name: "Front",
  42320. image: {
  42321. source: "./media/characters/archinger/front.svg",
  42322. extra: 1861/1675,
  42323. bottom: 125/1986
  42324. }
  42325. },
  42326. back: {
  42327. height: math.unit(1.72, "meters"),
  42328. name: "Back",
  42329. image: {
  42330. source: "./media/characters/archinger/back.svg",
  42331. extra: 1844/1701,
  42332. bottom: 104/1948
  42333. }
  42334. },
  42335. cock: {
  42336. height: math.unit(0.59, "feet"),
  42337. name: "Cock",
  42338. image: {
  42339. source: "./media/characters/archinger/cock.svg"
  42340. }
  42341. },
  42342. },
  42343. [
  42344. {
  42345. name: "Normal",
  42346. height: math.unit(1.72, "meters"),
  42347. default: true
  42348. },
  42349. {
  42350. name: "Macro",
  42351. height: math.unit(84, "meters")
  42352. },
  42353. {
  42354. name: "Macro+",
  42355. height: math.unit(112, "meters")
  42356. },
  42357. {
  42358. name: "Macro++",
  42359. height: math.unit(960, "meters")
  42360. },
  42361. {
  42362. name: "Macro+++",
  42363. height: math.unit(4, "km")
  42364. },
  42365. {
  42366. name: "Macro++++",
  42367. height: math.unit(48, "km")
  42368. },
  42369. {
  42370. name: "Macro+++++",
  42371. height: math.unit(4500, "km")
  42372. },
  42373. ]
  42374. ))
  42375. characterMakers.push(() => makeCharacter(
  42376. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42377. {
  42378. front: {
  42379. height: math.unit(5 + 5/12, "feet"),
  42380. name: "Front",
  42381. image: {
  42382. source: "./media/characters/alsnapz/front.svg",
  42383. extra: 1157/1065,
  42384. bottom: 42/1199
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(5 + 5/12, "feet"),
  42392. default: true
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42398. {
  42399. side: {
  42400. height: math.unit(3.2, "earths"),
  42401. name: "Side",
  42402. image: {
  42403. source: "./media/characters/mag/side.svg",
  42404. extra: 1331/1008,
  42405. bottom: 52/1383
  42406. }
  42407. },
  42408. wing: {
  42409. height: math.unit(1.94, "earths"),
  42410. name: "Wing",
  42411. image: {
  42412. source: "./media/characters/mag/wing.svg"
  42413. }
  42414. },
  42415. dick: {
  42416. height: math.unit(1.8, "earths"),
  42417. name: "Dick",
  42418. image: {
  42419. source: "./media/characters/mag/dick.svg"
  42420. }
  42421. },
  42422. ass: {
  42423. height: math.unit(1.33, "earths"),
  42424. name: "Ass",
  42425. image: {
  42426. source: "./media/characters/mag/ass.svg"
  42427. }
  42428. },
  42429. head: {
  42430. height: math.unit(1.1, "earths"),
  42431. name: "Head",
  42432. image: {
  42433. source: "./media/characters/mag/head.svg"
  42434. }
  42435. },
  42436. maw: {
  42437. height: math.unit(1.62, "earths"),
  42438. name: "Maw",
  42439. image: {
  42440. source: "./media/characters/mag/maw.svg"
  42441. }
  42442. },
  42443. },
  42444. [
  42445. {
  42446. name: "Small",
  42447. height: math.unit(162, "feet")
  42448. },
  42449. {
  42450. name: "Normal",
  42451. height: math.unit(3.2, "earths"),
  42452. default: true
  42453. },
  42454. ]
  42455. ))
  42456. characterMakers.push(() => makeCharacter(
  42457. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42458. {
  42459. front: {
  42460. height: math.unit(512, "feet"),
  42461. weight: math.unit(63509, "tonnes"),
  42462. name: "Front",
  42463. image: {
  42464. source: "./media/characters/vorrel-harroc/front.svg",
  42465. extra: 1075/1063,
  42466. bottom: 62/1137
  42467. }
  42468. },
  42469. },
  42470. [
  42471. {
  42472. name: "Normal",
  42473. height: math.unit(10, "feet")
  42474. },
  42475. {
  42476. name: "Macro",
  42477. height: math.unit(512, "feet"),
  42478. default: true
  42479. },
  42480. {
  42481. name: "Megamacro",
  42482. height: math.unit(256, "miles")
  42483. },
  42484. {
  42485. name: "Gigamacro",
  42486. height: math.unit(4096, "miles")
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42492. {
  42493. side: {
  42494. height: math.unit(50, "feet"),
  42495. name: "Side",
  42496. image: {
  42497. source: "./media/characters/froimar/side.svg",
  42498. extra: 855/638,
  42499. bottom: 99/954
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Macro",
  42506. height: math.unit(50, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42513. {
  42514. front: {
  42515. height: math.unit(210, "miles"),
  42516. name: "Front",
  42517. image: {
  42518. source: "./media/characters/timothy/front.svg",
  42519. extra: 1007/943,
  42520. bottom: 62/1069
  42521. }
  42522. },
  42523. frontSkirt: {
  42524. height: math.unit(210, "miles"),
  42525. name: "Front (Skirt)",
  42526. image: {
  42527. source: "./media/characters/timothy/front-skirt.svg",
  42528. extra: 1007/943,
  42529. bottom: 62/1069
  42530. }
  42531. },
  42532. frontCoat: {
  42533. height: math.unit(210, "miles"),
  42534. name: "Front (Coat)",
  42535. image: {
  42536. source: "./media/characters/timothy/front-coat.svg",
  42537. extra: 1007/943,
  42538. bottom: 62/1069
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Macro",
  42545. height: math.unit(210, "miles"),
  42546. default: true
  42547. },
  42548. {
  42549. name: "Megamacro",
  42550. height: math.unit(210000, "miles")
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(188, "feet"),
  42559. name: "Front",
  42560. image: {
  42561. source: "./media/characters/pyotr/front.svg",
  42562. extra: 1912/1826,
  42563. bottom: 18/1930
  42564. }
  42565. },
  42566. },
  42567. [
  42568. {
  42569. name: "Macro",
  42570. height: math.unit(188, "feet"),
  42571. default: true
  42572. },
  42573. {
  42574. name: "Megamacro",
  42575. height: math.unit(8, "miles")
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42581. {
  42582. side: {
  42583. height: math.unit(10, "feet"),
  42584. weight: math.unit(4500, "lb"),
  42585. name: "Side",
  42586. image: {
  42587. source: "./media/characters/ackart/side.svg",
  42588. extra: 1776/1668,
  42589. bottom: 116/1892
  42590. }
  42591. },
  42592. },
  42593. [
  42594. {
  42595. name: "Normal",
  42596. height: math.unit(10, "feet"),
  42597. default: true
  42598. },
  42599. ]
  42600. ))
  42601. characterMakers.push(() => makeCharacter(
  42602. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42603. {
  42604. side: {
  42605. height: math.unit(21, "feet"),
  42606. name: "Side",
  42607. image: {
  42608. source: "./media/characters/nolow/side.svg",
  42609. extra: 1484/1434,
  42610. bottom: 85/1569
  42611. }
  42612. },
  42613. sideErect: {
  42614. height: math.unit(21, "feet"),
  42615. name: "Side-erect",
  42616. image: {
  42617. source: "./media/characters/nolow/side-erect.svg",
  42618. extra: 1484/1434,
  42619. bottom: 85/1569
  42620. }
  42621. },
  42622. },
  42623. [
  42624. {
  42625. name: "Regular",
  42626. height: math.unit(12, "feet")
  42627. },
  42628. {
  42629. name: "Big Chee",
  42630. height: math.unit(21, "feet"),
  42631. default: true
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(7, "feet"),
  42640. weight: math.unit(250, "lb"),
  42641. name: "Front",
  42642. image: {
  42643. source: "./media/characters/nines/front.svg",
  42644. extra: 1741/1607,
  42645. bottom: 41/1782
  42646. }
  42647. },
  42648. side: {
  42649. height: math.unit(7, "feet"),
  42650. weight: math.unit(250, "lb"),
  42651. name: "Side",
  42652. image: {
  42653. source: "./media/characters/nines/side.svg",
  42654. extra: 1854/1735,
  42655. bottom: 93/1947
  42656. }
  42657. },
  42658. back: {
  42659. height: math.unit(7, "feet"),
  42660. weight: math.unit(250, "lb"),
  42661. name: "Back",
  42662. image: {
  42663. source: "./media/characters/nines/back.svg",
  42664. extra: 1748/1615,
  42665. bottom: 20/1768
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Megamacro",
  42672. height: math.unit(99, "km"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5 + 10/12, "feet"),
  42682. weight: math.unit(210, "lb"),
  42683. name: "Front",
  42684. image: {
  42685. source: "./media/characters/zenith/front.svg",
  42686. extra: 1531/1452,
  42687. bottom: 198/1729
  42688. }
  42689. },
  42690. back: {
  42691. height: math.unit(5 + 10/12, "feet"),
  42692. weight: math.unit(210, "lb"),
  42693. name: "Back",
  42694. image: {
  42695. source: "./media/characters/zenith/back.svg",
  42696. extra: 1571/1487,
  42697. bottom: 75/1646
  42698. }
  42699. },
  42700. },
  42701. [
  42702. {
  42703. name: "Normal",
  42704. height: math.unit(5 + 10/12, "feet"),
  42705. default: true
  42706. }
  42707. ]
  42708. ))
  42709. characterMakers.push(() => makeCharacter(
  42710. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42711. {
  42712. front: {
  42713. height: math.unit(4, "feet"),
  42714. weight: math.unit(60, "lb"),
  42715. name: "Front",
  42716. image: {
  42717. source: "./media/characters/jasper/front.svg",
  42718. extra: 1450/1379,
  42719. bottom: 19/1469
  42720. }
  42721. },
  42722. },
  42723. [
  42724. {
  42725. name: "Normal",
  42726. height: math.unit(4, "feet"),
  42727. default: true
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42733. {
  42734. front: {
  42735. height: math.unit(6 + 5/12, "feet"),
  42736. weight: math.unit(290, "lb"),
  42737. name: "Front",
  42738. image: {
  42739. source: "./media/characters/tiberius-thyben/front.svg",
  42740. extra: 757/739,
  42741. bottom: 39/796
  42742. }
  42743. },
  42744. },
  42745. [
  42746. {
  42747. name: "Micro",
  42748. height: math.unit(1.5, "inches")
  42749. },
  42750. {
  42751. name: "Normal",
  42752. height: math.unit(6 + 5/12, "feet"),
  42753. default: true
  42754. },
  42755. {
  42756. name: "Macro",
  42757. height: math.unit(300, "feet")
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42763. {
  42764. front: {
  42765. height: math.unit(5 + 6/12, "feet"),
  42766. weight: math.unit(60, "kg"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/sabre/front.svg",
  42770. extra: 738/671,
  42771. bottom: 27/765
  42772. }
  42773. },
  42774. },
  42775. [
  42776. {
  42777. name: "Teeny",
  42778. height: math.unit(2, "inches")
  42779. },
  42780. {
  42781. name: "Smol",
  42782. height: math.unit(8, "inches")
  42783. },
  42784. {
  42785. name: "Normal",
  42786. height: math.unit(5 + 6/12, "feet"),
  42787. default: true
  42788. },
  42789. {
  42790. name: "Mini-Macro",
  42791. height: math.unit(15, "feet")
  42792. },
  42793. {
  42794. name: "Macro",
  42795. height: math.unit(50, "feet")
  42796. },
  42797. ]
  42798. ))
  42799. characterMakers.push(() => makeCharacter(
  42800. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42801. {
  42802. front: {
  42803. height: math.unit(6 + 4/12, "feet"),
  42804. weight: math.unit(170, "lb"),
  42805. name: "Front",
  42806. image: {
  42807. source: "./media/characters/charlie/front.svg",
  42808. extra: 1348/1228,
  42809. bottom: 15/1363
  42810. }
  42811. },
  42812. },
  42813. [
  42814. {
  42815. name: "Macro",
  42816. height: math.unit(1700, "meters"),
  42817. default: true
  42818. },
  42819. {
  42820. name: "MegaMacro",
  42821. height: math.unit(20400, "meters")
  42822. },
  42823. ]
  42824. ))
  42825. characterMakers.push(() => makeCharacter(
  42826. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42827. {
  42828. front: {
  42829. height: math.unit(6 + 3/12, "feet"),
  42830. weight: math.unit(185, "lb"),
  42831. name: "Front",
  42832. image: {
  42833. source: "./media/characters/susan-grant/front.svg",
  42834. extra: 1351/1327,
  42835. bottom: 26/1377
  42836. }
  42837. },
  42838. },
  42839. [
  42840. {
  42841. name: "Normal",
  42842. height: math.unit(6 + 3/12, "feet"),
  42843. default: true
  42844. },
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(225, "feet")
  42848. },
  42849. {
  42850. name: "Macro+",
  42851. height: math.unit(900, "feet")
  42852. },
  42853. {
  42854. name: "MegaMacro",
  42855. height: math.unit(14400, "feet")
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42861. {
  42862. front: {
  42863. height: math.unit(5 + 4/12, "feet"),
  42864. weight: math.unit(110, "lb"),
  42865. name: "Front",
  42866. image: {
  42867. source: "./media/characters/axel-isanov/front.svg",
  42868. extra: 1096/1065,
  42869. bottom: 13/1109
  42870. }
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Normal",
  42876. height: math.unit(5 + 4/12, "feet"),
  42877. default: true
  42878. },
  42879. ]
  42880. ))
  42881. characterMakers.push(() => makeCharacter(
  42882. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42883. {
  42884. front: {
  42885. height: math.unit(9, "feet"),
  42886. weight: math.unit(467, "lb"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/necahual/front.svg",
  42890. extra: 920/873,
  42891. bottom: 26/946
  42892. }
  42893. },
  42894. back: {
  42895. height: math.unit(9, "feet"),
  42896. weight: math.unit(467, "lb"),
  42897. name: "Back",
  42898. image: {
  42899. source: "./media/characters/necahual/back.svg",
  42900. extra: 930/884,
  42901. bottom: 16/946
  42902. }
  42903. },
  42904. frontUnderwear: {
  42905. height: math.unit(9, "feet"),
  42906. weight: math.unit(467, "lb"),
  42907. name: "Front (Underwear)",
  42908. image: {
  42909. source: "./media/characters/necahual/front-underwear.svg",
  42910. extra: 920/873,
  42911. bottom: 26/946
  42912. }
  42913. },
  42914. frontDressed: {
  42915. height: math.unit(9, "feet"),
  42916. weight: math.unit(467, "lb"),
  42917. name: "Front (Dressed)",
  42918. image: {
  42919. source: "./media/characters/necahual/front-dressed.svg",
  42920. extra: 920/873,
  42921. bottom: 26/946
  42922. }
  42923. },
  42924. },
  42925. [
  42926. {
  42927. name: "Comprsesed",
  42928. height: math.unit(9, "feet")
  42929. },
  42930. {
  42931. name: "Natural",
  42932. height: math.unit(15, "feet"),
  42933. default: true
  42934. },
  42935. {
  42936. name: "Boosted",
  42937. height: math.unit(50, "feet")
  42938. },
  42939. {
  42940. name: "Boosted+",
  42941. height: math.unit(150, "feet")
  42942. },
  42943. {
  42944. name: "Max",
  42945. height: math.unit(500, "feet")
  42946. },
  42947. ]
  42948. ))
  42949. characterMakers.push(() => makeCharacter(
  42950. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42951. {
  42952. front: {
  42953. height: math.unit(22 + 1/12, "feet"),
  42954. weight: math.unit(3200, "lb"),
  42955. name: "Front",
  42956. image: {
  42957. source: "./media/characters/theo-acacia/front.svg",
  42958. extra: 1796/1741,
  42959. bottom: 83/1879
  42960. }
  42961. },
  42962. frontUnderwear: {
  42963. height: math.unit(22 + 1/12, "feet"),
  42964. weight: math.unit(3200, "lb"),
  42965. name: "Front (Underwear)",
  42966. image: {
  42967. source: "./media/characters/theo-acacia/front-underwear.svg",
  42968. extra: 1796/1741,
  42969. bottom: 83/1879
  42970. }
  42971. },
  42972. frontNude: {
  42973. height: math.unit(22 + 1/12, "feet"),
  42974. weight: math.unit(3200, "lb"),
  42975. name: "Front (Nude)",
  42976. image: {
  42977. source: "./media/characters/theo-acacia/front-nude.svg",
  42978. extra: 1796/1741,
  42979. bottom: 83/1879
  42980. }
  42981. },
  42982. },
  42983. [
  42984. {
  42985. name: "Normal",
  42986. height: math.unit(22 + 1/12, "feet"),
  42987. default: true
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(20, "feet"),
  42996. name: "Front",
  42997. image: {
  42998. source: "./media/characters/astra/front.svg",
  42999. extra: 1850/1714,
  43000. bottom: 106/1956
  43001. }
  43002. },
  43003. frontUndressed: {
  43004. height: math.unit(20, "feet"),
  43005. name: "Front (Undressed)",
  43006. image: {
  43007. source: "./media/characters/astra/front-undressed.svg",
  43008. extra: 1926/1749,
  43009. bottom: 0/1926
  43010. }
  43011. },
  43012. hand: {
  43013. height: math.unit(1.53, "feet"),
  43014. name: "Hand",
  43015. image: {
  43016. source: "./media/characters/astra/hand.svg"
  43017. }
  43018. },
  43019. paw: {
  43020. height: math.unit(1.53, "feet"),
  43021. name: "Paw",
  43022. image: {
  43023. source: "./media/characters/astra/paw.svg"
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Smallest",
  43030. height: math.unit(20, "feet")
  43031. },
  43032. {
  43033. name: "Normal",
  43034. height: math.unit(1e9, "miles"),
  43035. default: true
  43036. },
  43037. {
  43038. name: "Larger",
  43039. height: math.unit(5, "multiverses")
  43040. },
  43041. {
  43042. name: "Largest",
  43043. height: math.unit(1e9, "multiverses")
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(8, "feet"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/breanna/front.svg",
  43055. extra: 1912/1632,
  43056. bottom: 33/1945
  43057. }
  43058. },
  43059. },
  43060. [
  43061. {
  43062. name: "Smallest",
  43063. height: math.unit(8, "feet")
  43064. },
  43065. {
  43066. name: "Normal",
  43067. height: math.unit(1, "mile"),
  43068. default: true
  43069. },
  43070. {
  43071. name: "Maximum",
  43072. height: math.unit(1500000000000, "lightyears")
  43073. },
  43074. ]
  43075. ))
  43076. characterMakers.push(() => makeCharacter(
  43077. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43078. {
  43079. front: {
  43080. height: math.unit(5 + 11/12, "feet"),
  43081. weight: math.unit(155, "lb"),
  43082. name: "Front",
  43083. image: {
  43084. source: "./media/characters/cai/front.svg",
  43085. extra: 1823/1702,
  43086. bottom: 32/1855
  43087. }
  43088. },
  43089. back: {
  43090. height: math.unit(5 + 11/12, "feet"),
  43091. weight: math.unit(155, "lb"),
  43092. name: "Back",
  43093. image: {
  43094. source: "./media/characters/cai/back.svg",
  43095. extra: 1809/1708,
  43096. bottom: 31/1840
  43097. }
  43098. },
  43099. },
  43100. [
  43101. {
  43102. name: "Normal",
  43103. height: math.unit(5 + 11/12, "feet"),
  43104. default: true
  43105. },
  43106. {
  43107. name: "Big",
  43108. height: math.unit(15, "feet")
  43109. },
  43110. {
  43111. name: "Macro",
  43112. height: math.unit(200, "feet")
  43113. },
  43114. ]
  43115. ))
  43116. characterMakers.push(() => makeCharacter(
  43117. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43118. {
  43119. front: {
  43120. height: math.unit(5 + 6/12, "feet"),
  43121. weight: math.unit(160, "lb"),
  43122. name: "Front",
  43123. image: {
  43124. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43125. extra: 1227/1174,
  43126. bottom: 37/1264
  43127. }
  43128. },
  43129. },
  43130. [
  43131. {
  43132. name: "Macro",
  43133. height: math.unit(444, "meters"),
  43134. default: true
  43135. },
  43136. ]
  43137. ))
  43138. characterMakers.push(() => makeCharacter(
  43139. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43140. {
  43141. front: {
  43142. height: math.unit(18 + 7/12, "feet"),
  43143. name: "Front",
  43144. image: {
  43145. source: "./media/characters/rex/front.svg",
  43146. extra: 1941/1807,
  43147. bottom: 66/2007
  43148. }
  43149. },
  43150. back: {
  43151. height: math.unit(18 + 7/12, "feet"),
  43152. name: "Back",
  43153. image: {
  43154. source: "./media/characters/rex/back.svg",
  43155. extra: 1937/1822,
  43156. bottom: 42/1979
  43157. }
  43158. },
  43159. boot: {
  43160. height: math.unit(3.45, "feet"),
  43161. name: "Boot",
  43162. image: {
  43163. source: "./media/characters/rex/boot.svg"
  43164. }
  43165. },
  43166. paw: {
  43167. height: math.unit(4.17, "feet"),
  43168. name: "Paw",
  43169. image: {
  43170. source: "./media/characters/rex/paw.svg"
  43171. }
  43172. },
  43173. head: {
  43174. height: math.unit(6.728, "feet"),
  43175. name: "Head",
  43176. image: {
  43177. source: "./media/characters/rex/head.svg"
  43178. }
  43179. },
  43180. },
  43181. [
  43182. {
  43183. name: "Nano",
  43184. height: math.unit(18 + 7/12, "feet")
  43185. },
  43186. {
  43187. name: "Micro",
  43188. height: math.unit(1.5, "megameters")
  43189. },
  43190. {
  43191. name: "Normal",
  43192. height: math.unit(440, "megameters"),
  43193. default: true
  43194. },
  43195. {
  43196. name: "Macro",
  43197. height: math.unit(2.5, "gigameters")
  43198. },
  43199. {
  43200. name: "Gigamacro",
  43201. height: math.unit(2, "galaxies")
  43202. },
  43203. ]
  43204. ))
  43205. characterMakers.push(() => makeCharacter(
  43206. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43207. {
  43208. side: {
  43209. height: math.unit(32, "feet"),
  43210. weight: math.unit(250000, "lb"),
  43211. name: "Side",
  43212. image: {
  43213. source: "./media/characters/silverwing/side.svg",
  43214. extra: 1100/1019,
  43215. bottom: 204/1304
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Normal",
  43222. height: math.unit(32, "feet"),
  43223. default: true
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(6 + 6/12, "feet"),
  43232. weight: math.unit(350, "lb"),
  43233. name: "Front",
  43234. image: {
  43235. source: "./media/characters/tristan-hawthorne/front.svg",
  43236. extra: 1159/1124,
  43237. bottom: 37/1196
  43238. },
  43239. form: "labrador",
  43240. default: true
  43241. },
  43242. skunkFront: {
  43243. height: math.unit(4 + 6/12, "feet"),
  43244. weight: math.unit(120, "lb"),
  43245. name: "Front",
  43246. image: {
  43247. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43248. extra: 1609/1551,
  43249. bottom: 169/1778
  43250. },
  43251. form: "skunk",
  43252. default: true
  43253. },
  43254. },
  43255. [
  43256. {
  43257. name: "Normal",
  43258. height: math.unit(6 + 6/12, "feet"),
  43259. form: "labrador",
  43260. default: true
  43261. },
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(4 + 6/12, "feet"),
  43265. form: "skunk",
  43266. default: true
  43267. },
  43268. ],
  43269. {
  43270. "labrador": {
  43271. name: "Labrador",
  43272. default: true
  43273. },
  43274. "skunk": {
  43275. name: "Skunk"
  43276. }
  43277. }
  43278. ))
  43279. characterMakers.push(() => makeCharacter(
  43280. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43281. {
  43282. front: {
  43283. height: math.unit(5 + 11/12, "feet"),
  43284. weight: math.unit(190, "lb"),
  43285. name: "Front",
  43286. image: {
  43287. source: "./media/characters/mizu/front.svg",
  43288. extra: 1988/1788,
  43289. bottom: 14/2002
  43290. }
  43291. },
  43292. },
  43293. [
  43294. {
  43295. name: "Normal",
  43296. height: math.unit(5 + 11/12, "feet"),
  43297. default: true
  43298. },
  43299. ]
  43300. ))
  43301. characterMakers.push(() => makeCharacter(
  43302. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43303. {
  43304. front: {
  43305. height: math.unit(1.7, "feet"),
  43306. weight: math.unit(50, "lb"),
  43307. name: "Front",
  43308. image: {
  43309. source: "./media/characters/dechroma/front.svg",
  43310. extra: 1095/859,
  43311. bottom: 64/1159
  43312. }
  43313. },
  43314. },
  43315. [
  43316. {
  43317. name: "Normal",
  43318. height: math.unit(1.7, "feet"),
  43319. default: true
  43320. },
  43321. ]
  43322. ))
  43323. characterMakers.push(() => makeCharacter(
  43324. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43325. {
  43326. side: {
  43327. height: math.unit(30, "feet"),
  43328. name: "Side",
  43329. image: {
  43330. source: "./media/characters/veluren-thanazel/side.svg",
  43331. extra: 1611/633,
  43332. bottom: 118/1729
  43333. }
  43334. },
  43335. front: {
  43336. height: math.unit(30, "feet"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/veluren-thanazel/front.svg",
  43340. extra: 1486/636,
  43341. bottom: 238/1724
  43342. }
  43343. },
  43344. head: {
  43345. height: math.unit(21.4, "feet"),
  43346. name: "Head",
  43347. image: {
  43348. source: "./media/characters/veluren-thanazel/head.svg"
  43349. }
  43350. },
  43351. genitals: {
  43352. height: math.unit(19.4, "feet"),
  43353. name: "Genitals",
  43354. image: {
  43355. source: "./media/characters/veluren-thanazel/genitals.svg"
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Social",
  43362. height: math.unit(6, "feet")
  43363. },
  43364. {
  43365. name: "Play",
  43366. height: math.unit(12, "feet")
  43367. },
  43368. {
  43369. name: "True",
  43370. height: math.unit(30, "feet"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(7 + 6/12, "feet"),
  43380. weight: math.unit(500, "kg"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/arcturas/front.svg",
  43384. extra: 1700/1500,
  43385. bottom: 145/1845
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(7 + 6/12, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43399. {
  43400. side: {
  43401. height: math.unit(6, "feet"),
  43402. weight: math.unit(2, "tons"),
  43403. name: "Side",
  43404. image: {
  43405. source: "./media/characters/vitaen/side.svg",
  43406. extra: 1157/617,
  43407. bottom: 122/1279
  43408. }
  43409. },
  43410. },
  43411. [
  43412. {
  43413. name: "Normal",
  43414. height: math.unit(6, "feet"),
  43415. default: true
  43416. },
  43417. ]
  43418. ))
  43419. characterMakers.push(() => makeCharacter(
  43420. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43421. {
  43422. front: {
  43423. height: math.unit(19, "feet"),
  43424. name: "Front",
  43425. image: {
  43426. source: "./media/characters/fia-dreamweaver/front.svg",
  43427. extra: 1630/1504,
  43428. bottom: 25/1655
  43429. }
  43430. },
  43431. },
  43432. [
  43433. {
  43434. name: "Normal",
  43435. height: math.unit(19, "feet"),
  43436. default: true
  43437. },
  43438. ]
  43439. ))
  43440. characterMakers.push(() => makeCharacter(
  43441. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43442. {
  43443. front: {
  43444. height: math.unit(5 + 4/12, "feet"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/artan/front.svg",
  43448. extra: 1618/1535,
  43449. bottom: 46/1664
  43450. }
  43451. },
  43452. back: {
  43453. height: math.unit(5 + 4/12, "feet"),
  43454. name: "Back",
  43455. image: {
  43456. source: "./media/characters/artan/back.svg",
  43457. extra: 1618/1543,
  43458. bottom: 31/1649
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Normal",
  43465. height: math.unit(5 + 4/12, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43472. {
  43473. side: {
  43474. height: math.unit(182, "cm"),
  43475. weight: math.unit(1000, "lb"),
  43476. name: "Side",
  43477. image: {
  43478. source: "./media/characters/silver-dragon/side.svg",
  43479. extra: 710/287,
  43480. bottom: 88/798
  43481. }
  43482. },
  43483. },
  43484. [
  43485. {
  43486. name: "Normal",
  43487. height: math.unit(182, "cm"),
  43488. default: true
  43489. },
  43490. ]
  43491. ))
  43492. characterMakers.push(() => makeCharacter(
  43493. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43494. {
  43495. side: {
  43496. height: math.unit(6 + 6/12, "feet"),
  43497. weight: math.unit(1.5, "tons"),
  43498. name: "Side",
  43499. image: {
  43500. source: "./media/characters/zephyr/side.svg",
  43501. extra: 1433/586,
  43502. bottom: 109/1542
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(6 + 6/12, "feet"),
  43510. default: true
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43516. {
  43517. side: {
  43518. height: math.unit(1, "feet"),
  43519. name: "Side",
  43520. image: {
  43521. source: "./media/characters/vixye/side.svg",
  43522. extra: 632/541,
  43523. bottom: 0/632
  43524. }
  43525. },
  43526. },
  43527. [
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(1, "feet"),
  43531. default: true
  43532. },
  43533. {
  43534. name: "True",
  43535. height: math.unit(1e15, "multiverses")
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(8 + 2/12, "feet"),
  43544. weight: math.unit(650, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43548. extra: 1174/1137,
  43549. bottom: 82/1256
  43550. }
  43551. },
  43552. back: {
  43553. height: math.unit(8 + 2/12, "feet"),
  43554. weight: math.unit(650, "lb"),
  43555. name: "Back",
  43556. image: {
  43557. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43558. extra: 1204/1157,
  43559. bottom: 46/1250
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Wildform",
  43566. height: math.unit(8 + 2/12, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(18, "feet"),
  43576. name: "Front",
  43577. image: {
  43578. source: "./media/characters/cyphin/front.svg",
  43579. extra: 970/886,
  43580. bottom: 42/1012
  43581. }
  43582. },
  43583. back: {
  43584. height: math.unit(18, "feet"),
  43585. name: "Back",
  43586. image: {
  43587. source: "./media/characters/cyphin/back.svg",
  43588. extra: 1009/894,
  43589. bottom: 24/1033
  43590. }
  43591. },
  43592. head: {
  43593. height: math.unit(5.05, "feet"),
  43594. name: "Head",
  43595. image: {
  43596. source: "./media/characters/cyphin/head.svg"
  43597. }
  43598. },
  43599. tailbud: {
  43600. height: math.unit(5, "feet"),
  43601. name: "Tailbud",
  43602. image: {
  43603. source: "./media/characters/cyphin/tailbud.svg"
  43604. }
  43605. },
  43606. },
  43607. [
  43608. ]
  43609. ))
  43610. characterMakers.push(() => makeCharacter(
  43611. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43612. {
  43613. side: {
  43614. height: math.unit(10, "feet"),
  43615. weight: math.unit(6, "tons"),
  43616. name: "Side",
  43617. image: {
  43618. source: "./media/characters/raijin/side.svg",
  43619. extra: 1529/613,
  43620. bottom: 337/1866
  43621. }
  43622. },
  43623. },
  43624. [
  43625. {
  43626. name: "Normal",
  43627. height: math.unit(10, "feet"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43634. {
  43635. side: {
  43636. height: math.unit(9, "feet"),
  43637. name: "Side",
  43638. image: {
  43639. source: "./media/characters/nilghais/side.svg",
  43640. extra: 1047/744,
  43641. bottom: 91/1138
  43642. }
  43643. },
  43644. head: {
  43645. height: math.unit(3.14, "feet"),
  43646. name: "Head",
  43647. image: {
  43648. source: "./media/characters/nilghais/head.svg"
  43649. }
  43650. },
  43651. mouth: {
  43652. height: math.unit(4.6, "feet"),
  43653. name: "Mouth",
  43654. image: {
  43655. source: "./media/characters/nilghais/mouth.svg"
  43656. }
  43657. },
  43658. wings: {
  43659. height: math.unit(24, "feet"),
  43660. name: "Wings",
  43661. image: {
  43662. source: "./media/characters/nilghais/wings.svg"
  43663. }
  43664. },
  43665. ass: {
  43666. height: math.unit(6.12, "feet"),
  43667. name: "Ass",
  43668. image: {
  43669. source: "./media/characters/nilghais/ass.svg"
  43670. }
  43671. },
  43672. },
  43673. [
  43674. {
  43675. name: "Normal",
  43676. height: math.unit(9, "feet"),
  43677. default: true
  43678. },
  43679. ]
  43680. ))
  43681. characterMakers.push(() => makeCharacter(
  43682. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43683. {
  43684. regular: {
  43685. height: math.unit(16 + 2/12, "feet"),
  43686. weight: math.unit(2300, "lb"),
  43687. name: "Regular",
  43688. image: {
  43689. source: "./media/characters/zolgar/regular.svg",
  43690. extra: 1246/1004,
  43691. bottom: 124/1370
  43692. }
  43693. },
  43694. boxers: {
  43695. height: math.unit(16 + 2/12, "feet"),
  43696. weight: math.unit(2300, "lb"),
  43697. name: "Boxers",
  43698. image: {
  43699. source: "./media/characters/zolgar/boxers.svg",
  43700. extra: 1246/1004,
  43701. bottom: 124/1370
  43702. }
  43703. },
  43704. armored: {
  43705. height: math.unit(16 + 2/12, "feet"),
  43706. weight: math.unit(2300, "lb"),
  43707. name: "Armored",
  43708. image: {
  43709. source: "./media/characters/zolgar/armored.svg",
  43710. extra: 1246/1004,
  43711. bottom: 124/1370
  43712. }
  43713. },
  43714. goth: {
  43715. height: math.unit(16 + 2/12, "feet"),
  43716. weight: math.unit(2300, "lb"),
  43717. name: "Goth",
  43718. image: {
  43719. source: "./media/characters/zolgar/goth.svg",
  43720. extra: 1246/1004,
  43721. bottom: 124/1370
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Shrunken Down",
  43728. height: math.unit(9 + 2/12, "feet")
  43729. },
  43730. {
  43731. name: "Normal",
  43732. height: math.unit(16 + 2/12, "feet"),
  43733. default: true
  43734. },
  43735. ]
  43736. ))
  43737. characterMakers.push(() => makeCharacter(
  43738. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43739. {
  43740. front: {
  43741. height: math.unit(6, "feet"),
  43742. weight: math.unit(168, "lb"),
  43743. name: "Front",
  43744. image: {
  43745. source: "./media/characters/luca/front.svg",
  43746. extra: 841/667,
  43747. bottom: 102/943
  43748. }
  43749. },
  43750. },
  43751. [
  43752. {
  43753. name: "Normal",
  43754. height: math.unit(6, "feet"),
  43755. default: true
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43761. {
  43762. side: {
  43763. height: math.unit(7 + 3/12, "feet"),
  43764. weight: math.unit(312, "lb"),
  43765. name: "Side",
  43766. image: {
  43767. source: "./media/characters/zezo/side.svg",
  43768. extra: 1192/1067,
  43769. bottom: 63/1255
  43770. }
  43771. },
  43772. },
  43773. [
  43774. {
  43775. name: "Normal",
  43776. height: math.unit(7 + 3/12, "feet"),
  43777. default: true
  43778. },
  43779. ]
  43780. ))
  43781. characterMakers.push(() => makeCharacter(
  43782. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43783. {
  43784. front: {
  43785. height: math.unit(5 + 5/12, "feet"),
  43786. weight: math.unit(170, "lb"),
  43787. name: "Front",
  43788. image: {
  43789. source: "./media/characters/mayso/front.svg",
  43790. extra: 1215/1108,
  43791. bottom: 16/1231
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Normal",
  43798. height: math.unit(5 + 5/12, "feet"),
  43799. default: true
  43800. },
  43801. ]
  43802. ))
  43803. characterMakers.push(() => makeCharacter(
  43804. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43805. {
  43806. front: {
  43807. height: math.unit(4 + 3/12, "feet"),
  43808. weight: math.unit(80, "lb"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/hess/front.svg",
  43812. extra: 1200/1123,
  43813. bottom: 16/1216
  43814. }
  43815. },
  43816. },
  43817. [
  43818. {
  43819. name: "Normal",
  43820. height: math.unit(4 + 3/12, "feet"),
  43821. default: true
  43822. },
  43823. ]
  43824. ))
  43825. characterMakers.push(() => makeCharacter(
  43826. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43827. {
  43828. front: {
  43829. height: math.unit(1.9, "meters"),
  43830. name: "Front",
  43831. image: {
  43832. source: "./media/characters/ashgar/front.svg",
  43833. extra: 1177/1146,
  43834. bottom: 99/1276
  43835. }
  43836. },
  43837. back: {
  43838. height: math.unit(1.9, "meters"),
  43839. name: "Back",
  43840. image: {
  43841. source: "./media/characters/ashgar/back.svg",
  43842. extra: 1201/1183,
  43843. bottom: 53/1254
  43844. }
  43845. },
  43846. feral: {
  43847. height: math.unit(1.4, "meters"),
  43848. name: "Feral",
  43849. image: {
  43850. source: "./media/characters/ashgar/feral.svg",
  43851. extra: 370/345,
  43852. bottom: 45/415
  43853. }
  43854. },
  43855. },
  43856. [
  43857. {
  43858. name: "Normal",
  43859. height: math.unit(1.9, "meters"),
  43860. default: true
  43861. },
  43862. ]
  43863. ))
  43864. characterMakers.push(() => makeCharacter(
  43865. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43866. {
  43867. regular: {
  43868. height: math.unit(6, "feet"),
  43869. weight: math.unit(220, "lb"),
  43870. name: "Regular",
  43871. image: {
  43872. source: "./media/characters/phillip/regular.svg",
  43873. extra: 1373/1277,
  43874. bottom: 75/1448
  43875. }
  43876. },
  43877. dressed: {
  43878. height: math.unit(6, "feet"),
  43879. weight: math.unit(220, "lb"),
  43880. name: "Dressed",
  43881. image: {
  43882. source: "./media/characters/phillip/dressed.svg",
  43883. extra: 1373/1277,
  43884. bottom: 75/1448
  43885. }
  43886. },
  43887. paw: {
  43888. height: math.unit(1.44, "feet"),
  43889. name: "Paw",
  43890. image: {
  43891. source: "./media/characters/phillip/paw.svg"
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(6, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43905. {
  43906. side: {
  43907. height: math.unit(42, "feet"),
  43908. name: "Side",
  43909. image: {
  43910. source: "./media/characters/uvula/side.svg",
  43911. extra: 683/586,
  43912. bottom: 60/743
  43913. }
  43914. },
  43915. front: {
  43916. height: math.unit(42, "feet"),
  43917. name: "Front",
  43918. image: {
  43919. source: "./media/characters/uvula/front.svg",
  43920. extra: 705/613,
  43921. bottom: 54/759
  43922. }
  43923. },
  43924. maw: {
  43925. height: math.unit(23.5, "feet"),
  43926. name: "Maw",
  43927. image: {
  43928. source: "./media/characters/uvula/maw.svg"
  43929. }
  43930. },
  43931. },
  43932. [
  43933. {
  43934. name: "Original Size",
  43935. height: math.unit(14, "inches")
  43936. },
  43937. {
  43938. name: "Human Size",
  43939. height: math.unit(6, "feet")
  43940. },
  43941. {
  43942. name: "Big",
  43943. height: math.unit(42, "feet"),
  43944. default: true
  43945. },
  43946. {
  43947. name: "Bigger",
  43948. height: math.unit(100, "feet")
  43949. },
  43950. ]
  43951. ))
  43952. characterMakers.push(() => makeCharacter(
  43953. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43954. {
  43955. front: {
  43956. height: math.unit(5 + 11/12, "feet"),
  43957. name: "Front",
  43958. image: {
  43959. source: "./media/characters/lannah/front.svg",
  43960. extra: 1208/1113,
  43961. bottom: 97/1305
  43962. }
  43963. },
  43964. },
  43965. [
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(5 + 11/12, "feet"),
  43969. default: true
  43970. },
  43971. ]
  43972. ))
  43973. characterMakers.push(() => makeCharacter(
  43974. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43975. {
  43976. front: {
  43977. height: math.unit(6 + 3/12, "feet"),
  43978. weight: math.unit(3.5, "tons"),
  43979. name: "Front",
  43980. image: {
  43981. source: "./media/characters/emberflame/front.svg",
  43982. extra: 1198/672,
  43983. bottom: 82/1280
  43984. }
  43985. },
  43986. side: {
  43987. height: math.unit(6 + 3/12, "feet"),
  43988. weight: math.unit(3.5, "tons"),
  43989. name: "Side",
  43990. image: {
  43991. source: "./media/characters/emberflame/side.svg",
  43992. extra: 938/527,
  43993. bottom: 56/994
  43994. }
  43995. },
  43996. },
  43997. [
  43998. {
  43999. name: "Normal",
  44000. height: math.unit(6 + 3/12, "feet"),
  44001. default: true
  44002. },
  44003. ]
  44004. ))
  44005. characterMakers.push(() => makeCharacter(
  44006. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44007. {
  44008. side: {
  44009. height: math.unit(17.5, "feet"),
  44010. weight: math.unit(35, "tons"),
  44011. name: "Side",
  44012. image: {
  44013. source: "./media/characters/sophie-ambrose/side.svg",
  44014. extra: 1573/1242,
  44015. bottom: 71/1644
  44016. }
  44017. },
  44018. maw: {
  44019. height: math.unit(7.4, "feet"),
  44020. name: "Maw",
  44021. image: {
  44022. source: "./media/characters/sophie-ambrose/maw.svg"
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Normal",
  44029. height: math.unit(17.5, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(280, "feet"),
  44039. weight: math.unit(550, "tons"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/king-mugi/front.svg",
  44043. extra: 1102/947,
  44044. bottom: 104/1206
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "King Mugi",
  44051. height: math.unit(280, "feet"),
  44052. default: true
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44058. {
  44059. front: {
  44060. height: math.unit(64, "meters"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/nova-fox/front.svg",
  44064. extra: 1310/1246,
  44065. bottom: 65/1375
  44066. }
  44067. },
  44068. },
  44069. [
  44070. {
  44071. name: "Macro",
  44072. height: math.unit(64, "meters"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44079. {
  44080. front: {
  44081. height: math.unit(6 + 3/12, "feet"),
  44082. weight: math.unit(170, "lb"),
  44083. name: "Front",
  44084. image: {
  44085. source: "./media/characters/sam-bat/front.svg",
  44086. extra: 1601/1411,
  44087. bottom: 125/1726
  44088. }
  44089. },
  44090. back: {
  44091. height: math.unit(6 + 3/12, "feet"),
  44092. weight: math.unit(170, "lb"),
  44093. name: "Back",
  44094. image: {
  44095. source: "./media/characters/sam-bat/back.svg",
  44096. extra: 1577/1405,
  44097. bottom: 58/1635
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(6 + 3/12, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44111. {
  44112. front: {
  44113. height: math.unit(59, "feet"),
  44114. weight: math.unit(40000, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/inari/front.svg",
  44118. extra: 1884/1350,
  44119. bottom: 95/1979
  44120. }
  44121. },
  44122. },
  44123. [
  44124. {
  44125. name: "Gigantamax",
  44126. height: math.unit(59, "feet"),
  44127. default: true
  44128. },
  44129. ]
  44130. ))
  44131. characterMakers.push(() => makeCharacter(
  44132. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44133. {
  44134. front: {
  44135. height: math.unit(5 + 8/12, "feet"),
  44136. name: "Front",
  44137. image: {
  44138. source: "./media/characters/elizabeth/front.svg",
  44139. extra: 1395/1298,
  44140. bottom: 54/1449
  44141. }
  44142. },
  44143. mouth: {
  44144. height: math.unit(1.97, "feet"),
  44145. name: "Mouth",
  44146. image: {
  44147. source: "./media/characters/elizabeth/mouth.svg"
  44148. }
  44149. },
  44150. foot: {
  44151. height: math.unit(1.17, "feet"),
  44152. name: "Foot",
  44153. image: {
  44154. source: "./media/characters/elizabeth/foot.svg"
  44155. }
  44156. },
  44157. },
  44158. [
  44159. {
  44160. name: "Normal",
  44161. height: math.unit(5 + 8/12, "feet"),
  44162. default: true
  44163. },
  44164. {
  44165. name: "Minimacro",
  44166. height: math.unit(18, "feet")
  44167. },
  44168. {
  44169. name: "Macro",
  44170. height: math.unit(180, "feet")
  44171. },
  44172. ]
  44173. ))
  44174. characterMakers.push(() => makeCharacter(
  44175. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44176. {
  44177. front: {
  44178. height: math.unit(5 + 2/12, "feet"),
  44179. name: "Front",
  44180. image: {
  44181. source: "./media/characters/october-gossamer/front.svg",
  44182. extra: 505/454,
  44183. bottom: 7/512
  44184. }
  44185. },
  44186. back: {
  44187. height: math.unit(5 + 2/12, "feet"),
  44188. name: "Back",
  44189. image: {
  44190. source: "./media/characters/october-gossamer/back.svg",
  44191. extra: 501/454,
  44192. bottom: 11/512
  44193. }
  44194. },
  44195. },
  44196. [
  44197. {
  44198. name: "Normal",
  44199. height: math.unit(5 + 2/12, "feet"),
  44200. default: true
  44201. },
  44202. ]
  44203. ))
  44204. characterMakers.push(() => makeCharacter(
  44205. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44206. {
  44207. front: {
  44208. height: math.unit(5, "feet"),
  44209. name: "Front",
  44210. image: {
  44211. source: "./media/characters/epiglottis/front.svg",
  44212. extra: 923/849,
  44213. bottom: 17/940
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Original Size",
  44220. height: math.unit(10, "inches")
  44221. },
  44222. {
  44223. name: "Human Size",
  44224. height: math.unit(5, "feet"),
  44225. default: true
  44226. },
  44227. {
  44228. name: "Big",
  44229. height: math.unit(25, "feet")
  44230. },
  44231. {
  44232. name: "Bigger",
  44233. height: math.unit(50, "feet")
  44234. },
  44235. {
  44236. name: "oh lawd",
  44237. height: math.unit(75, "feet")
  44238. },
  44239. ]
  44240. ))
  44241. characterMakers.push(() => makeCharacter(
  44242. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44243. {
  44244. front: {
  44245. height: math.unit(2 + 4/12, "feet"),
  44246. weight: math.unit(60, "lb"),
  44247. name: "Front",
  44248. image: {
  44249. source: "./media/characters/lerm/front.svg",
  44250. extra: 796/790,
  44251. bottom: 79/875
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Normal",
  44258. height: math.unit(2 + 4/12, "feet"),
  44259. default: true
  44260. },
  44261. ]
  44262. ))
  44263. characterMakers.push(() => makeCharacter(
  44264. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44265. {
  44266. front: {
  44267. height: math.unit(5.5, "feet"),
  44268. weight: math.unit(130, "lb"),
  44269. name: "Front",
  44270. image: {
  44271. source: "./media/characters/xena-nebadon/front.svg",
  44272. extra: 1828/1730,
  44273. bottom: 79/1907
  44274. }
  44275. },
  44276. },
  44277. [
  44278. {
  44279. name: "Tiny Puppy",
  44280. height: math.unit(3, "inches")
  44281. },
  44282. {
  44283. name: "Normal",
  44284. height: math.unit(5.5, "feet"),
  44285. default: true
  44286. },
  44287. {
  44288. name: "Lotta Lady",
  44289. height: math.unit(12, "feet")
  44290. },
  44291. {
  44292. name: "Pretty Big",
  44293. height: math.unit(100, "feet")
  44294. },
  44295. {
  44296. name: "Big",
  44297. height: math.unit(500, "feet")
  44298. },
  44299. {
  44300. name: "Skyscraper Toys",
  44301. height: math.unit(2500, "feet")
  44302. },
  44303. {
  44304. name: "Plane Catcher",
  44305. height: math.unit(8, "miles")
  44306. },
  44307. {
  44308. name: "Planet Toys",
  44309. height: math.unit(15, "earths")
  44310. },
  44311. {
  44312. name: "Stardust",
  44313. height: math.unit(0.25, "galaxies")
  44314. },
  44315. {
  44316. name: "Snacks",
  44317. height: math.unit(70, "universes")
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(1.6, "meters"),
  44326. weight: math.unit(60, "kg"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/bounty/front.svg",
  44330. extra: 1426/1308,
  44331. bottom: 15/1441
  44332. }
  44333. },
  44334. back: {
  44335. height: math.unit(1.6, "meters"),
  44336. weight: math.unit(60, "kg"),
  44337. name: "Back",
  44338. image: {
  44339. source: "./media/characters/bounty/back.svg",
  44340. extra: 1417/1307,
  44341. bottom: 8/1425
  44342. }
  44343. },
  44344. },
  44345. [
  44346. {
  44347. name: "Normal",
  44348. height: math.unit(1.6, "meters"),
  44349. default: true
  44350. },
  44351. {
  44352. name: "Macro",
  44353. height: math.unit(300, "meters")
  44354. },
  44355. ]
  44356. ))
  44357. characterMakers.push(() => makeCharacter(
  44358. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44359. {
  44360. front: {
  44361. height: math.unit(2 + 8/12, "feet"),
  44362. weight: math.unit(15, "lb"),
  44363. name: "Front",
  44364. image: {
  44365. source: "./media/characters/mochi/front.svg",
  44366. extra: 1022/852,
  44367. bottom: 435/1457
  44368. }
  44369. },
  44370. back: {
  44371. height: math.unit(2 + 8/12, "feet"),
  44372. weight: math.unit(15, "lb"),
  44373. name: "Back",
  44374. image: {
  44375. source: "./media/characters/mochi/back.svg",
  44376. extra: 1335/1119,
  44377. bottom: 39/1374
  44378. }
  44379. },
  44380. bird: {
  44381. height: math.unit(2 + 8/12, "feet"),
  44382. weight: math.unit(15, "lb"),
  44383. name: "Bird",
  44384. image: {
  44385. source: "./media/characters/mochi/bird.svg",
  44386. extra: 1251/1113,
  44387. bottom: 178/1429
  44388. }
  44389. },
  44390. kaiju: {
  44391. height: math.unit(154, "feet"),
  44392. weight: math.unit(1e7, "lb"),
  44393. name: "Kaiju",
  44394. image: {
  44395. source: "./media/characters/mochi/kaiju.svg",
  44396. extra: 460/324,
  44397. bottom: 40/500
  44398. }
  44399. },
  44400. head: {
  44401. height: math.unit(1.21, "feet"),
  44402. name: "Head",
  44403. image: {
  44404. source: "./media/characters/mochi/head.svg"
  44405. }
  44406. },
  44407. alternateTail: {
  44408. height: math.unit(2 + 8/12, "feet"),
  44409. weight: math.unit(45, "lb"),
  44410. name: "Alternate Tail",
  44411. image: {
  44412. source: "./media/characters/mochi/alternate-tail.svg",
  44413. extra: 139/76,
  44414. bottom: 45/184
  44415. }
  44416. },
  44417. },
  44418. [
  44419. {
  44420. name: "Micro",
  44421. height: math.unit(2, "inches")
  44422. },
  44423. {
  44424. name: "Normal",
  44425. height: math.unit(2 + 8/12, "feet"),
  44426. default: true
  44427. },
  44428. {
  44429. name: "Macro",
  44430. height: math.unit(106, "feet")
  44431. },
  44432. ]
  44433. ))
  44434. characterMakers.push(() => makeCharacter(
  44435. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44436. {
  44437. front: {
  44438. height: math.unit(5.67, "feet"),
  44439. weight: math.unit(135, "lb"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/sarel/front.svg",
  44443. extra: 865/788,
  44444. bottom: 97/962
  44445. }
  44446. },
  44447. back: {
  44448. height: math.unit(5.67, "feet"),
  44449. weight: math.unit(135, "lb"),
  44450. name: "Back",
  44451. image: {
  44452. source: "./media/characters/sarel/back.svg",
  44453. extra: 857/777,
  44454. bottom: 32/889
  44455. }
  44456. },
  44457. chozoan: {
  44458. height: math.unit(5.67, "feet"),
  44459. weight: math.unit(135, "lb"),
  44460. name: "Chozoan",
  44461. image: {
  44462. source: "./media/characters/sarel/chozoan.svg",
  44463. extra: 865/788,
  44464. bottom: 97/962
  44465. }
  44466. },
  44467. current: {
  44468. height: math.unit(5.67, "feet"),
  44469. weight: math.unit(135, "lb"),
  44470. name: "Current",
  44471. image: {
  44472. source: "./media/characters/sarel/current.svg",
  44473. extra: 865/788,
  44474. bottom: 97/962
  44475. }
  44476. },
  44477. head: {
  44478. height: math.unit(1.77, "feet"),
  44479. name: "Head",
  44480. image: {
  44481. source: "./media/characters/sarel/head.svg"
  44482. }
  44483. },
  44484. claws: {
  44485. height: math.unit(1.8, "feet"),
  44486. name: "Claws",
  44487. image: {
  44488. source: "./media/characters/sarel/claws.svg"
  44489. }
  44490. },
  44491. clawsAlt: {
  44492. height: math.unit(1.8, "feet"),
  44493. name: "Claws-alt",
  44494. image: {
  44495. source: "./media/characters/sarel/claws-alt.svg"
  44496. }
  44497. },
  44498. },
  44499. [
  44500. {
  44501. name: "Normal",
  44502. height: math.unit(5.67, "feet"),
  44503. default: true
  44504. },
  44505. ]
  44506. ))
  44507. characterMakers.push(() => makeCharacter(
  44508. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44509. {
  44510. front: {
  44511. height: math.unit(5500, "feet"),
  44512. name: "Front",
  44513. image: {
  44514. source: "./media/characters/alyonia/front.svg",
  44515. extra: 1200/1135,
  44516. bottom: 29/1229
  44517. }
  44518. },
  44519. back: {
  44520. height: math.unit(5500, "feet"),
  44521. name: "Back",
  44522. image: {
  44523. source: "./media/characters/alyonia/back.svg",
  44524. extra: 1205/1138,
  44525. bottom: 10/1215
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Small",
  44532. height: math.unit(10, "feet")
  44533. },
  44534. {
  44535. name: "Macro",
  44536. height: math.unit(500, "feet")
  44537. },
  44538. {
  44539. name: "Mega Macro",
  44540. height: math.unit(5500, "feet"),
  44541. default: true
  44542. },
  44543. {
  44544. name: "Mega Macro+",
  44545. height: math.unit(500000, "feet")
  44546. },
  44547. {
  44548. name: "Giga Macro",
  44549. height: math.unit(3000, "miles")
  44550. },
  44551. {
  44552. name: "Tera Macro",
  44553. height: math.unit(2.8e6, "miles")
  44554. },
  44555. {
  44556. name: "Galactic",
  44557. height: math.unit(120000, "lightyears")
  44558. },
  44559. ]
  44560. ))
  44561. characterMakers.push(() => makeCharacter(
  44562. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44563. {
  44564. werewolf: {
  44565. height: math.unit(8, "feet"),
  44566. weight: math.unit(425, "lb"),
  44567. name: "Werewolf",
  44568. image: {
  44569. source: "./media/characters/autumn/werewolf.svg",
  44570. extra: 2154/2031,
  44571. bottom: 160/2314
  44572. }
  44573. },
  44574. human: {
  44575. height: math.unit(5 + 8/12, "feet"),
  44576. weight: math.unit(150, "lb"),
  44577. name: "Human",
  44578. image: {
  44579. source: "./media/characters/autumn/human.svg",
  44580. extra: 1200/1149,
  44581. bottom: 30/1230
  44582. }
  44583. },
  44584. },
  44585. [
  44586. {
  44587. name: "Normal",
  44588. height: math.unit(8, "feet"),
  44589. default: true
  44590. },
  44591. ]
  44592. ))
  44593. characterMakers.push(() => makeCharacter(
  44594. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44595. {
  44596. front: {
  44597. height: math.unit(8 + 5/12, "feet"),
  44598. weight: math.unit(825, "lb"),
  44599. name: "Front",
  44600. image: {
  44601. source: "./media/characters/cobalt-charizard/front.svg",
  44602. extra: 1268/1155,
  44603. bottom: 122/1390
  44604. }
  44605. },
  44606. side: {
  44607. height: math.unit(8 + 5/12, "feet"),
  44608. weight: math.unit(825, "lb"),
  44609. name: "Side",
  44610. image: {
  44611. source: "./media/characters/cobalt-charizard/side.svg",
  44612. extra: 1348/1257,
  44613. bottom: 58/1406
  44614. }
  44615. },
  44616. gMax: {
  44617. height: math.unit(134 + 11/12, "feet"),
  44618. name: "G-Max",
  44619. image: {
  44620. source: "./media/characters/cobalt-charizard/g-max.svg",
  44621. extra: 1835/1541,
  44622. bottom: 151/1986
  44623. }
  44624. },
  44625. },
  44626. [
  44627. {
  44628. name: "Normal",
  44629. height: math.unit(8 + 5/12, "feet"),
  44630. default: true
  44631. },
  44632. ]
  44633. ))
  44634. characterMakers.push(() => makeCharacter(
  44635. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44636. {
  44637. front: {
  44638. height: math.unit(6 + 3/12, "feet"),
  44639. weight: math.unit(210, "lb"),
  44640. name: "Front",
  44641. image: {
  44642. source: "./media/characters/stella/front.svg",
  44643. extra: 3549/3335,
  44644. bottom: 51/3600
  44645. }
  44646. },
  44647. },
  44648. [
  44649. {
  44650. name: "Normal",
  44651. height: math.unit(6 + 3/12, "feet"),
  44652. default: true
  44653. },
  44654. ]
  44655. ))
  44656. characterMakers.push(() => makeCharacter(
  44657. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44658. {
  44659. front: {
  44660. height: math.unit(5, "feet"),
  44661. weight: math.unit(90, "lb"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/riley-bishop/front.svg",
  44665. extra: 1450/1428,
  44666. bottom: 152/1602
  44667. }
  44668. },
  44669. },
  44670. [
  44671. {
  44672. name: "Normal",
  44673. height: math.unit(5, "feet"),
  44674. default: true
  44675. },
  44676. ]
  44677. ))
  44678. characterMakers.push(() => makeCharacter(
  44679. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44680. {
  44681. side: {
  44682. height: math.unit(8 + 2/12, "feet"),
  44683. weight: math.unit(500, "kg"),
  44684. name: "Side",
  44685. image: {
  44686. source: "./media/characters/theo-arcanine/side.svg",
  44687. extra: 1342/1074,
  44688. bottom: 111/1453
  44689. }
  44690. },
  44691. },
  44692. [
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(8 + 2/12, "feet"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(4, "feet"),
  44705. name: "Front",
  44706. image: {
  44707. source: "./media/characters/kali/front.svg",
  44708. extra: 1921/1357,
  44709. bottom: 70/1991
  44710. }
  44711. },
  44712. },
  44713. [
  44714. {
  44715. name: "Normal",
  44716. height: math.unit(4, "feet"),
  44717. default: true
  44718. },
  44719. {
  44720. name: "Macro",
  44721. height: math.unit(32, "meters")
  44722. },
  44723. {
  44724. name: "Macro+",
  44725. height: math.unit(150, "meters")
  44726. },
  44727. {
  44728. name: "Megamacro",
  44729. height: math.unit(7500, "meters")
  44730. },
  44731. {
  44732. name: "Megamacro+",
  44733. height: math.unit(80, "kilometers")
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44739. {
  44740. side: {
  44741. height: math.unit(5 + 11/12, "feet"),
  44742. weight: math.unit(236, "lb"),
  44743. name: "Side",
  44744. image: {
  44745. source: "./media/characters/gapp/side.svg",
  44746. extra: 775/340,
  44747. bottom: 58/833
  44748. }
  44749. },
  44750. mouth: {
  44751. height: math.unit(2.98, "feet"),
  44752. name: "Mouth",
  44753. image: {
  44754. source: "./media/characters/gapp/mouth.svg"
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(5 + 1/12, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(6, "feet"),
  44771. name: "Front",
  44772. image: {
  44773. source: "./media/characters/persephone/front.svg",
  44774. extra: 1895/1717,
  44775. bottom: 96/1991
  44776. }
  44777. },
  44778. back: {
  44779. height: math.unit(6, "feet"),
  44780. name: "Back",
  44781. image: {
  44782. source: "./media/characters/persephone/back.svg",
  44783. extra: 1868/1679,
  44784. bottom: 26/1894
  44785. }
  44786. },
  44787. casual: {
  44788. height: math.unit(6, "feet"),
  44789. name: "Casual",
  44790. image: {
  44791. source: "./media/characters/persephone/casual.svg",
  44792. extra: 1713/1541,
  44793. bottom: 76/1789
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Human Size",
  44800. height: math.unit(6, "feet")
  44801. },
  44802. {
  44803. name: "Big Steppy",
  44804. height: math.unit(600, "meters"),
  44805. default: true
  44806. },
  44807. {
  44808. name: "Galaxy Brain",
  44809. height: math.unit(1, "zettameter")
  44810. },
  44811. ]
  44812. ))
  44813. characterMakers.push(() => makeCharacter(
  44814. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44815. {
  44816. front: {
  44817. height: math.unit(1.85, "meters"),
  44818. name: "Front",
  44819. image: {
  44820. source: "./media/characters/riley-foxthing/front.svg",
  44821. extra: 1495/1354,
  44822. bottom: 122/1617
  44823. }
  44824. },
  44825. frontAlt: {
  44826. height: math.unit(1.85, "meters"),
  44827. name: "Front (Alt)",
  44828. image: {
  44829. source: "./media/characters/riley-foxthing/front-alt.svg",
  44830. extra: 1572/1389,
  44831. bottom: 116/1688
  44832. }
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal Sized",
  44838. height: math.unit(1.85, "meters"),
  44839. default: true
  44840. },
  44841. {
  44842. name: "Quite Sizable",
  44843. height: math.unit(5, "meters")
  44844. },
  44845. {
  44846. name: "Rather Large",
  44847. height: math.unit(20, "meters")
  44848. },
  44849. {
  44850. name: "Macro",
  44851. height: math.unit(450, "meters")
  44852. },
  44853. {
  44854. name: "Giga",
  44855. height: math.unit(5, "km")
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(6, "feet"),
  44864. weight: math.unit(200, "lb"),
  44865. name: "Front",
  44866. image: {
  44867. source: "./media/characters/blizzard/front.svg",
  44868. extra: 1136/990,
  44869. bottom: 136/1272
  44870. }
  44871. },
  44872. back: {
  44873. height: math.unit(6, "feet"),
  44874. weight: math.unit(200, "lb"),
  44875. name: "Back",
  44876. image: {
  44877. source: "./media/characters/blizzard/back.svg",
  44878. extra: 1175/1034,
  44879. bottom: 97/1272
  44880. }
  44881. },
  44882. sitting: {
  44883. height: math.unit(3.725, "feet"),
  44884. weight: math.unit(200, "lb"),
  44885. name: "Sitting",
  44886. image: {
  44887. source: "./media/characters/blizzard/sitting.svg",
  44888. extra: 581/485,
  44889. bottom: 90/671
  44890. }
  44891. },
  44892. frontWizard: {
  44893. height: math.unit(7.9, "feet"),
  44894. weight: math.unit(200, "lb"),
  44895. name: "Front (Wizard)",
  44896. image: {
  44897. source: "./media/characters/blizzard/front-wizard.svg"
  44898. }
  44899. },
  44900. backWizard: {
  44901. height: math.unit(7.9, "feet"),
  44902. weight: math.unit(200, "lb"),
  44903. name: "Back (Wizard)",
  44904. image: {
  44905. source: "./media/characters/blizzard/back-wizard.svg"
  44906. }
  44907. },
  44908. frontNsfw: {
  44909. height: math.unit(6, "feet"),
  44910. weight: math.unit(200, "lb"),
  44911. name: "Front (NSFW)",
  44912. image: {
  44913. source: "./media/characters/blizzard/front-nsfw.svg",
  44914. extra: 1136/990,
  44915. bottom: 136/1272
  44916. }
  44917. },
  44918. backNsfw: {
  44919. height: math.unit(6, "feet"),
  44920. weight: math.unit(200, "lb"),
  44921. name: "Back (NSFW)",
  44922. image: {
  44923. source: "./media/characters/blizzard/back-nsfw.svg",
  44924. extra: 1175/1034,
  44925. bottom: 97/1272
  44926. }
  44927. },
  44928. sittingNsfw: {
  44929. height: math.unit(3.725, "feet"),
  44930. weight: math.unit(200, "lb"),
  44931. name: "Sitting (NSFW)",
  44932. image: {
  44933. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44934. extra: 581/485,
  44935. bottom: 90/671
  44936. }
  44937. },
  44938. wizardFrontNsfw: {
  44939. height: math.unit(7.9, "feet"),
  44940. weight: math.unit(200, "lb"),
  44941. name: "Wizard (Front, NSFW)",
  44942. image: {
  44943. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44944. }
  44945. },
  44946. },
  44947. [
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(6, "feet"),
  44951. default: true
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(5 + 2/12, "feet"),
  44960. name: "Front",
  44961. image: {
  44962. source: "./media/characters/lumi/front.svg",
  44963. extra: 1328/1268,
  44964. bottom: 103/1431
  44965. }
  44966. },
  44967. back: {
  44968. height: math.unit(5 + 2/12, "feet"),
  44969. name: "Back",
  44970. image: {
  44971. source: "./media/characters/lumi/back.svg",
  44972. extra: 1381/1327,
  44973. bottom: 43/1424
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(5 + 2/12, "feet"),
  44981. default: true
  44982. },
  44983. ]
  44984. ))
  44985. characterMakers.push(() => makeCharacter(
  44986. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44987. {
  44988. front: {
  44989. height: math.unit(5 + 9/12, "feet"),
  44990. name: "Front",
  44991. image: {
  44992. source: "./media/characters/aliya-cotton/front.svg",
  44993. extra: 577/564,
  44994. bottom: 29/606
  44995. }
  44996. },
  44997. },
  44998. [
  44999. {
  45000. name: "Normal",
  45001. height: math.unit(5 + 9/12, "feet"),
  45002. default: true
  45003. },
  45004. ]
  45005. ))
  45006. characterMakers.push(() => makeCharacter(
  45007. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45008. {
  45009. front: {
  45010. height: math.unit(2.7, "meters"),
  45011. weight: math.unit(25000, "lb"),
  45012. name: "Front",
  45013. image: {
  45014. source: "./media/characters/noah-luxray/front.svg",
  45015. extra: 1644/825,
  45016. bottom: 339/1983
  45017. }
  45018. },
  45019. side: {
  45020. height: math.unit(2.97, "meters"),
  45021. weight: math.unit(25000, "lb"),
  45022. name: "Side",
  45023. image: {
  45024. source: "./media/characters/noah-luxray/side.svg",
  45025. extra: 1319/650,
  45026. bottom: 163/1482
  45027. }
  45028. },
  45029. dick: {
  45030. height: math.unit(7.4, "feet"),
  45031. weight: math.unit(2500, "lb"),
  45032. name: "Dick",
  45033. image: {
  45034. source: "./media/characters/noah-luxray/dick.svg"
  45035. }
  45036. },
  45037. dickAlt: {
  45038. height: math.unit(10.83, "feet"),
  45039. weight: math.unit(2500, "lb"),
  45040. name: "Dick-alt",
  45041. image: {
  45042. source: "./media/characters/noah-luxray/dick-alt.svg"
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "BIG",
  45049. height: math.unit(2.7, "meters"),
  45050. default: true
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45056. {
  45057. standing: {
  45058. height: math.unit(183, "cm"),
  45059. weight: math.unit(68, "kg"),
  45060. name: "Standing",
  45061. image: {
  45062. source: "./media/characters/arion/standing.svg",
  45063. extra: 1869/1807,
  45064. bottom: 93/1962
  45065. }
  45066. },
  45067. reclining: {
  45068. height: math.unit(70.5, "cm"),
  45069. weight: math.unit(68, "lb"),
  45070. name: "Reclining",
  45071. image: {
  45072. source: "./media/characters/arion/reclining.svg",
  45073. extra: 937/870,
  45074. bottom: 63/1000
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Colossus Size, Low",
  45081. height: math.unit(33, "meters"),
  45082. default: true
  45083. },
  45084. {
  45085. name: "Colossus Size, Mid",
  45086. height: math.unit(52, "meters")
  45087. },
  45088. {
  45089. name: "Colossus Size, High",
  45090. height: math.unit(60, "meters")
  45091. },
  45092. {
  45093. name: "Titan Size, Low",
  45094. height: math.unit(91, "meters"),
  45095. },
  45096. {
  45097. name: "Titan Size, Mid",
  45098. height: math.unit(122, "meters")
  45099. },
  45100. {
  45101. name: "Titan Size, High",
  45102. height: math.unit(162, "meters")
  45103. },
  45104. ]
  45105. ))
  45106. characterMakers.push(() => makeCharacter(
  45107. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45108. {
  45109. front: {
  45110. height: math.unit(53, "meters"),
  45111. name: "Front",
  45112. image: {
  45113. source: "./media/characters/stellar-marbey/front.svg",
  45114. extra: 1913/1805,
  45115. bottom: 92/2005
  45116. }
  45117. },
  45118. back: {
  45119. height: math.unit(53, "meters"),
  45120. name: "Back",
  45121. image: {
  45122. source: "./media/characters/stellar-marbey/back.svg",
  45123. extra: 1960/1851,
  45124. bottom: 28/1988
  45125. }
  45126. },
  45127. mouth: {
  45128. height: math.unit(3.5, "meters"),
  45129. name: "Mouth",
  45130. image: {
  45131. source: "./media/characters/stellar-marbey/mouth.svg"
  45132. }
  45133. },
  45134. },
  45135. [
  45136. {
  45137. name: "Macro",
  45138. height: math.unit(53, "meters"),
  45139. default: true
  45140. },
  45141. ]
  45142. ))
  45143. characterMakers.push(() => makeCharacter(
  45144. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45145. {
  45146. front: {
  45147. height: math.unit(8 + 1/12, "feet"),
  45148. weight: math.unit(233, "lb"),
  45149. name: "Front",
  45150. image: {
  45151. source: "./media/characters/matsu/front.svg",
  45152. extra: 832/772,
  45153. bottom: 40/872
  45154. }
  45155. },
  45156. back: {
  45157. height: math.unit(8 + 1/12, "feet"),
  45158. weight: math.unit(233, "lb"),
  45159. name: "Back",
  45160. image: {
  45161. source: "./media/characters/matsu/back.svg",
  45162. extra: 839/780,
  45163. bottom: 47/886
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(8 + 1/12, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(4, "feet"),
  45180. weight: math.unit(148, "lb"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/thiz/front.svg",
  45184. extra: 1913/1748,
  45185. bottom: 62/1975
  45186. }
  45187. },
  45188. },
  45189. [
  45190. {
  45191. name: "Normal",
  45192. height: math.unit(4, "feet"),
  45193. default: true
  45194. },
  45195. ]
  45196. ))
  45197. characterMakers.push(() => makeCharacter(
  45198. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45199. {
  45200. front: {
  45201. height: math.unit(7 + 6/12, "feet"),
  45202. weight: math.unit(267, "lb"),
  45203. name: "Front",
  45204. image: {
  45205. source: "./media/characters/marcel/front.svg",
  45206. extra: 1221/1096,
  45207. bottom: 76/1297
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Normal",
  45214. height: math.unit(7 + 6/12, "feet"),
  45215. default: true
  45216. },
  45217. ]
  45218. ))
  45219. characterMakers.push(() => makeCharacter(
  45220. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45221. {
  45222. side: {
  45223. height: math.unit(42, "meters"),
  45224. name: "Side",
  45225. image: {
  45226. source: "./media/characters/flake/side.svg",
  45227. extra: 1525/1306,
  45228. bottom: 209/1734
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(42, "meters"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45242. {
  45243. dressed: {
  45244. height: math.unit(6 + 4/12, "feet"),
  45245. weight: math.unit(520, "lb"),
  45246. name: "Dressed",
  45247. image: {
  45248. source: "./media/characters/someonne/dressed.svg",
  45249. extra: 1020/1010,
  45250. bottom: 178/1198
  45251. }
  45252. },
  45253. undressed: {
  45254. height: math.unit(6 + 4/12, "feet"),
  45255. weight: math.unit(520, "lb"),
  45256. name: "Undressed",
  45257. image: {
  45258. source: "./media/characters/someonne/undressed.svg",
  45259. extra: 1019/1014,
  45260. bottom: 169/1188
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(6 + 4/12, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45274. {
  45275. front: {
  45276. height: math.unit(3, "feet"),
  45277. weight: math.unit(30, "lb"),
  45278. name: "Front",
  45279. image: {
  45280. source: "./media/characters/till/front.svg",
  45281. extra: 892/823,
  45282. bottom: 55/947
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(3, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(9 + 8/12, "feet"),
  45299. weight: math.unit(800, "lb"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/sydney-heki/front.svg",
  45303. extra: 1360/1300,
  45304. bottom: 22/1382
  45305. }
  45306. },
  45307. back: {
  45308. height: math.unit(9 + 8/12, "feet"),
  45309. weight: math.unit(800, "lb"),
  45310. name: "Back",
  45311. image: {
  45312. source: "./media/characters/sydney-heki/back.svg",
  45313. extra: 1356/1293,
  45314. bottom: 12/1368
  45315. }
  45316. },
  45317. frontDressed: {
  45318. height: math.unit(9 + 8/12, "feet"),
  45319. weight: math.unit(800, "lb"),
  45320. name: "Front-dressed",
  45321. image: {
  45322. source: "./media/characters/sydney-heki/front-dressed.svg",
  45323. extra: 1360/1300,
  45324. bottom: 22/1382
  45325. }
  45326. },
  45327. },
  45328. [
  45329. {
  45330. name: "Normal",
  45331. height: math.unit(9 + 8/12, "feet"),
  45332. default: true
  45333. },
  45334. {
  45335. name: "Macro",
  45336. height: math.unit(500, "feet")
  45337. },
  45338. {
  45339. name: "Megamacro",
  45340. height: math.unit(3.6, "miles")
  45341. },
  45342. ]
  45343. ))
  45344. characterMakers.push(() => makeCharacter(
  45345. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45346. {
  45347. front: {
  45348. height: math.unit(200, "cm"),
  45349. weight: math.unit(250, "lb"),
  45350. name: "Front",
  45351. image: {
  45352. source: "./media/characters/fowler-karlsson/front.svg",
  45353. extra: 897/845,
  45354. bottom: 123/1020
  45355. }
  45356. },
  45357. back: {
  45358. height: math.unit(200, "cm"),
  45359. weight: math.unit(250, "lb"),
  45360. name: "Back",
  45361. image: {
  45362. source: "./media/characters/fowler-karlsson/back.svg",
  45363. extra: 999/944,
  45364. bottom: 26/1025
  45365. }
  45366. },
  45367. dick: {
  45368. height: math.unit(1.92, "feet"),
  45369. weight: math.unit(150, "lb"),
  45370. name: "Dick",
  45371. image: {
  45372. source: "./media/characters/fowler-karlsson/dick.svg"
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Normal",
  45379. height: math.unit(200, "cm"),
  45380. default: true
  45381. },
  45382. {
  45383. name: "Smaller Macro",
  45384. height: math.unit(90, "m")
  45385. },
  45386. {
  45387. name: "Macro",
  45388. height: math.unit(150, "m")
  45389. },
  45390. {
  45391. name: "Bigger Macro",
  45392. height: math.unit(300, "m")
  45393. },
  45394. ]
  45395. ))
  45396. characterMakers.push(() => makeCharacter(
  45397. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45398. {
  45399. side: {
  45400. height: math.unit(8 + 2/12, "feet"),
  45401. weight: math.unit(1, "tonne"),
  45402. name: "Side",
  45403. image: {
  45404. source: "./media/characters/rylide/side.svg",
  45405. extra: 1318/1034,
  45406. bottom: 106/1424
  45407. }
  45408. },
  45409. sitting: {
  45410. height: math.unit(303, "cm"),
  45411. weight: math.unit(1, "tonne"),
  45412. name: "Sitting",
  45413. image: {
  45414. source: "./media/characters/rylide/sitting.svg",
  45415. extra: 1303/1103,
  45416. bottom: 36/1339
  45417. }
  45418. },
  45419. },
  45420. [
  45421. {
  45422. name: "Normal",
  45423. height: math.unit(8 + 2/12, "feet"),
  45424. default: true
  45425. },
  45426. ]
  45427. ))
  45428. characterMakers.push(() => makeCharacter(
  45429. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45430. {
  45431. front: {
  45432. height: math.unit(5 + 10/12, "feet"),
  45433. weight: math.unit(160, "lb"),
  45434. name: "Front",
  45435. image: {
  45436. source: "./media/characters/pudask/front.svg",
  45437. extra: 1616/1590,
  45438. bottom: 161/1777
  45439. }
  45440. },
  45441. },
  45442. [
  45443. {
  45444. name: "Ferret Height",
  45445. height: math.unit(2 + 5/12, "feet")
  45446. },
  45447. {
  45448. name: "Canon Height",
  45449. height: math.unit(5 + 10/12, "feet"),
  45450. default: true
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45456. {
  45457. front: {
  45458. height: math.unit(3 + 6/12, "feet"),
  45459. weight: math.unit(60, "lb"),
  45460. name: "Front",
  45461. image: {
  45462. source: "./media/characters/ramita/front.svg",
  45463. extra: 1402/1232,
  45464. bottom: 62/1464
  45465. }
  45466. },
  45467. dressed: {
  45468. height: math.unit(3 + 6/12, "feet"),
  45469. weight: math.unit(60, "lb"),
  45470. name: "Dressed",
  45471. image: {
  45472. source: "./media/characters/ramita/dressed.svg",
  45473. extra: 1534/1249,
  45474. bottom: 50/1584
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(3 + 6/12, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45488. {
  45489. front: {
  45490. height: math.unit(8, "feet"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/ark/front.svg",
  45494. extra: 772/693,
  45495. bottom: 45/817
  45496. }
  45497. },
  45498. },
  45499. [
  45500. {
  45501. name: "Normal",
  45502. height: math.unit(8, "feet"),
  45503. default: true
  45504. },
  45505. ]
  45506. ))
  45507. characterMakers.push(() => makeCharacter(
  45508. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45509. {
  45510. front: {
  45511. height: math.unit(6, "feet"),
  45512. weight: math.unit(250, "lb"),
  45513. volume: math.unit(5/8, "gallons"),
  45514. name: "Front",
  45515. image: {
  45516. source: "./media/characters/ludwig-horn/front.svg",
  45517. extra: 1782/1635,
  45518. bottom: 96/1878
  45519. }
  45520. },
  45521. back: {
  45522. height: math.unit(6, "feet"),
  45523. weight: math.unit(250, "lb"),
  45524. volume: math.unit(5/8, "gallons"),
  45525. name: "Back",
  45526. image: {
  45527. source: "./media/characters/ludwig-horn/back.svg",
  45528. extra: 1874/1729,
  45529. bottom: 27/1901
  45530. }
  45531. },
  45532. dick: {
  45533. height: math.unit(1.05, "feet"),
  45534. weight: math.unit(15, "lb"),
  45535. volume: math.unit(5/8, "gallons"),
  45536. name: "Dick",
  45537. image: {
  45538. source: "./media/characters/ludwig-horn/dick.svg"
  45539. }
  45540. },
  45541. },
  45542. [
  45543. {
  45544. name: "Small",
  45545. height: math.unit(6, "feet")
  45546. },
  45547. {
  45548. name: "Typical",
  45549. height: math.unit(12, "feet"),
  45550. default: true
  45551. },
  45552. {
  45553. name: "Building",
  45554. height: math.unit(80, "feet")
  45555. },
  45556. {
  45557. name: "Town",
  45558. height: math.unit(800, "feet")
  45559. },
  45560. {
  45561. name: "Kingdom",
  45562. height: math.unit(80000, "feet")
  45563. },
  45564. {
  45565. name: "Planet",
  45566. height: math.unit(8000000, "feet")
  45567. },
  45568. {
  45569. name: "Universe",
  45570. height: math.unit(8000000000, "feet")
  45571. },
  45572. {
  45573. name: "Transcended",
  45574. height: math.unit(8e27, "feet")
  45575. },
  45576. ]
  45577. ))
  45578. characterMakers.push(() => makeCharacter(
  45579. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45580. {
  45581. front: {
  45582. height: math.unit(5, "feet"),
  45583. weight: math.unit(50, "kg"),
  45584. name: "Front",
  45585. image: {
  45586. source: "./media/characters/biot-avery/front.svg",
  45587. extra: 1295/1232,
  45588. bottom: 86/1381
  45589. }
  45590. },
  45591. },
  45592. [
  45593. {
  45594. name: "Normal",
  45595. height: math.unit(5, "feet"),
  45596. default: true
  45597. },
  45598. ]
  45599. ))
  45600. characterMakers.push(() => makeCharacter(
  45601. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45602. {
  45603. front: {
  45604. height: math.unit(6, "feet"),
  45605. name: "Front",
  45606. image: {
  45607. source: "./media/characters/kitsune-kiro/front.svg",
  45608. extra: 1270/1158,
  45609. bottom: 42/1312
  45610. }
  45611. },
  45612. frontAlt: {
  45613. height: math.unit(6, "feet"),
  45614. name: "Front-alt",
  45615. image: {
  45616. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45617. extra: 1130/1081,
  45618. bottom: 36/1166
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "Smol",
  45625. height: math.unit(3, "feet")
  45626. },
  45627. {
  45628. name: "Normal",
  45629. height: math.unit(6, "feet"),
  45630. default: true
  45631. },
  45632. ]
  45633. ))
  45634. characterMakers.push(() => makeCharacter(
  45635. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45636. {
  45637. front: {
  45638. height: math.unit(6, "feet"),
  45639. weight: math.unit(125, "lb"),
  45640. name: "Front",
  45641. image: {
  45642. source: "./media/characters/jack-thatcher/front.svg",
  45643. extra: 1474/1370,
  45644. bottom: 26/1500
  45645. }
  45646. },
  45647. back: {
  45648. height: math.unit(6, "feet"),
  45649. weight: math.unit(125, "lb"),
  45650. name: "Back",
  45651. image: {
  45652. source: "./media/characters/jack-thatcher/back.svg",
  45653. extra: 1489/1384,
  45654. bottom: 18/1507
  45655. }
  45656. },
  45657. },
  45658. [
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(6, "feet"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(75, "feet")
  45667. },
  45668. {
  45669. name: "Macro-er",
  45670. height: math.unit(250, "feet")
  45671. },
  45672. ]
  45673. ))
  45674. characterMakers.push(() => makeCharacter(
  45675. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45676. {
  45677. front: {
  45678. height: math.unit(7, "feet"),
  45679. weight: math.unit(110, "kg"),
  45680. name: "Front",
  45681. image: {
  45682. source: "./media/characters/max-hyper/front.svg",
  45683. extra: 1969/1881,
  45684. bottom: 49/2018
  45685. }
  45686. },
  45687. },
  45688. [
  45689. {
  45690. name: "Normal",
  45691. height: math.unit(7, "feet"),
  45692. default: true
  45693. },
  45694. ]
  45695. ))
  45696. characterMakers.push(() => makeCharacter(
  45697. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45698. {
  45699. front: {
  45700. height: math.unit(5 + 5/12, "feet"),
  45701. weight: math.unit(160, "lb"),
  45702. name: "Front",
  45703. image: {
  45704. source: "./media/characters/spook/front.svg",
  45705. extra: 794/791,
  45706. bottom: 54/848
  45707. }
  45708. },
  45709. back: {
  45710. height: math.unit(5 + 5/12, "feet"),
  45711. weight: math.unit(160, "lb"),
  45712. name: "Back",
  45713. image: {
  45714. source: "./media/characters/spook/back.svg",
  45715. extra: 812/798,
  45716. bottom: 32/844
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Normal",
  45723. height: math.unit(5 + 5/12, "feet"),
  45724. default: true
  45725. },
  45726. ]
  45727. ))
  45728. characterMakers.push(() => makeCharacter(
  45729. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45730. {
  45731. front: {
  45732. height: math.unit(18, "feet"),
  45733. name: "Front",
  45734. image: {
  45735. source: "./media/characters/xeaduulix/front.svg",
  45736. extra: 1380/1166,
  45737. bottom: 110/1490
  45738. }
  45739. },
  45740. back: {
  45741. height: math.unit(18, "feet"),
  45742. name: "Back",
  45743. image: {
  45744. source: "./media/characters/xeaduulix/back.svg",
  45745. extra: 1592/1170,
  45746. bottom: 128/1720
  45747. }
  45748. },
  45749. frontNsfw: {
  45750. height: math.unit(18, "feet"),
  45751. name: "Front (NSFW)",
  45752. image: {
  45753. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45754. extra: 1380/1166,
  45755. bottom: 110/1490
  45756. }
  45757. },
  45758. backNsfw: {
  45759. height: math.unit(18, "feet"),
  45760. name: "Back (NSFW)",
  45761. image: {
  45762. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45763. extra: 1592/1170,
  45764. bottom: 128/1720
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Normal",
  45771. height: math.unit(18, "feet"),
  45772. default: true
  45773. },
  45774. ]
  45775. ))
  45776. characterMakers.push(() => makeCharacter(
  45777. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45778. {
  45779. spreadWings: {
  45780. height: math.unit(20, "feet"),
  45781. name: "Spread Wings",
  45782. image: {
  45783. source: "./media/characters/fledge/spread-wings.svg",
  45784. extra: 693/635,
  45785. bottom: 26/719
  45786. }
  45787. },
  45788. front: {
  45789. height: math.unit(20, "feet"),
  45790. name: "Front",
  45791. image: {
  45792. source: "./media/characters/fledge/front.svg",
  45793. extra: 684/637,
  45794. bottom: 18/702
  45795. }
  45796. },
  45797. frontAlt: {
  45798. height: math.unit(20, "feet"),
  45799. name: "Front (Alt)",
  45800. image: {
  45801. source: "./media/characters/fledge/front-alt.svg",
  45802. extra: 708/664,
  45803. bottom: 13/721
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(20, "feet"),
  45808. name: "Back",
  45809. image: {
  45810. source: "./media/characters/fledge/back.svg",
  45811. extra: 718/634,
  45812. bottom: 22/740
  45813. }
  45814. },
  45815. head: {
  45816. height: math.unit(5.55, "feet"),
  45817. name: "Head",
  45818. image: {
  45819. source: "./media/characters/fledge/head.svg"
  45820. }
  45821. },
  45822. headAlt: {
  45823. height: math.unit(5.1, "feet"),
  45824. name: "Head (Alt)",
  45825. image: {
  45826. source: "./media/characters/fledge/head-alt.svg"
  45827. }
  45828. },
  45829. },
  45830. [
  45831. {
  45832. name: "Small",
  45833. height: math.unit(6 + 2/12, "feet")
  45834. },
  45835. {
  45836. name: "Big",
  45837. height: math.unit(20, "feet"),
  45838. default: true
  45839. },
  45840. {
  45841. name: "Giant",
  45842. height: math.unit(100, "feet")
  45843. },
  45844. {
  45845. name: "Macro",
  45846. height: math.unit(200, "feet")
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45852. {
  45853. front: {
  45854. height: math.unit(1, "meter"),
  45855. name: "Front",
  45856. image: {
  45857. source: "./media/characters/atlas-morenai/front.svg",
  45858. extra: 1275/1043,
  45859. bottom: 19/1294
  45860. }
  45861. },
  45862. back: {
  45863. height: math.unit(1, "meter"),
  45864. name: "Back",
  45865. image: {
  45866. source: "./media/characters/atlas-morenai/back.svg",
  45867. extra: 1141/1001,
  45868. bottom: 25/1166
  45869. }
  45870. },
  45871. },
  45872. [
  45873. {
  45874. name: "Normal",
  45875. height: math.unit(1, "meter"),
  45876. default: true
  45877. },
  45878. {
  45879. name: "Magic-Infused",
  45880. height: math.unit(5, "meters")
  45881. },
  45882. ]
  45883. ))
  45884. characterMakers.push(() => makeCharacter(
  45885. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45886. {
  45887. front: {
  45888. height: math.unit(5, "meters"),
  45889. name: "Front",
  45890. image: {
  45891. source: "./media/characters/cintia/front.svg",
  45892. extra: 1312/1228,
  45893. bottom: 38/1350
  45894. }
  45895. },
  45896. back: {
  45897. height: math.unit(5, "meters"),
  45898. name: "Back",
  45899. image: {
  45900. source: "./media/characters/cintia/back.svg",
  45901. extra: 1260/1166,
  45902. bottom: 98/1358
  45903. }
  45904. },
  45905. frontDick: {
  45906. height: math.unit(5, "meters"),
  45907. name: "Front (Dick)",
  45908. image: {
  45909. source: "./media/characters/cintia/front-dick.svg",
  45910. extra: 1312/1228,
  45911. bottom: 38/1350
  45912. }
  45913. },
  45914. backDick: {
  45915. height: math.unit(5, "meters"),
  45916. name: "Back (Dick)",
  45917. image: {
  45918. source: "./media/characters/cintia/back-dick.svg",
  45919. extra: 1260/1166,
  45920. bottom: 98/1358
  45921. }
  45922. },
  45923. bust: {
  45924. height: math.unit(1.97, "meters"),
  45925. name: "Bust",
  45926. image: {
  45927. source: "./media/characters/cintia/bust.svg",
  45928. extra: 617/565,
  45929. bottom: 0/617
  45930. }
  45931. },
  45932. },
  45933. [
  45934. {
  45935. name: "Normal",
  45936. height: math.unit(5, "meters"),
  45937. default: true
  45938. },
  45939. ]
  45940. ))
  45941. characterMakers.push(() => makeCharacter(
  45942. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45943. {
  45944. side: {
  45945. height: math.unit(100, "feet"),
  45946. name: "Side",
  45947. image: {
  45948. source: "./media/characters/denora/side.svg",
  45949. extra: 875/803,
  45950. bottom: 9/884
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Standard",
  45957. height: math.unit(100, "feet"),
  45958. default: true
  45959. },
  45960. {
  45961. name: "Grand",
  45962. height: math.unit(1000, "feet")
  45963. },
  45964. {
  45965. name: "Conquering",
  45966. height: math.unit(10000, "feet")
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45972. {
  45973. dressed: {
  45974. height: math.unit(8 + 5/12, "feet"),
  45975. weight: math.unit(700, "lb"),
  45976. name: "Dressed",
  45977. image: {
  45978. source: "./media/characters/kiva/dressed.svg",
  45979. extra: 1102/1055,
  45980. bottom: 60/1162
  45981. }
  45982. },
  45983. nude: {
  45984. height: math.unit(8 + 5/12, "feet"),
  45985. weight: math.unit(700, "lb"),
  45986. name: "Nude",
  45987. image: {
  45988. source: "./media/characters/kiva/nude.svg",
  45989. extra: 1102/1055,
  45990. bottom: 60/1162
  45991. }
  45992. },
  45993. },
  45994. [
  45995. {
  45996. name: "Base Height",
  45997. height: math.unit(8 + 5/12, "feet"),
  45998. default: true
  45999. },
  46000. {
  46001. name: "Macro",
  46002. height: math.unit(100, "feet")
  46003. },
  46004. {
  46005. name: "Max",
  46006. height: math.unit(3280, "feet")
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46012. {
  46013. front: {
  46014. height: math.unit(6 + 8/12, "feet"),
  46015. weight: math.unit(250, "lb"),
  46016. name: "Front",
  46017. image: {
  46018. source: "./media/characters/ztragon/front.svg",
  46019. extra: 1825/1684,
  46020. bottom: 98/1923
  46021. }
  46022. },
  46023. },
  46024. [
  46025. {
  46026. name: "Normal",
  46027. height: math.unit(6 + 8/12, "feet"),
  46028. default: true
  46029. },
  46030. {
  46031. name: "Macro",
  46032. height: math.unit(80, "feet")
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46038. {
  46039. front: {
  46040. height: math.unit(10.4, "feet"),
  46041. weight: math.unit(2, "tons"),
  46042. name: "Front",
  46043. image: {
  46044. source: "./media/characters/yesenia/front.svg",
  46045. extra: 1479/1474,
  46046. bottom: 233/1712
  46047. }
  46048. },
  46049. },
  46050. [
  46051. {
  46052. name: "Normal",
  46053. height: math.unit(10.4, "feet"),
  46054. default: true
  46055. },
  46056. ]
  46057. ))
  46058. characterMakers.push(() => makeCharacter(
  46059. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46060. {
  46061. normal: {
  46062. height: math.unit(6 + 1/12, "feet"),
  46063. weight: math.unit(180, "lb"),
  46064. name: "Normal",
  46065. image: {
  46066. source: "./media/characters/leanne-lycheborne/normal.svg",
  46067. extra: 1748/1660,
  46068. bottom: 98/1846
  46069. }
  46070. },
  46071. were: {
  46072. height: math.unit(12, "feet"),
  46073. weight: math.unit(1600, "lb"),
  46074. name: "Were",
  46075. image: {
  46076. source: "./media/characters/leanne-lycheborne/were.svg",
  46077. extra: 1485/1432,
  46078. bottom: 66/1551
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Normal",
  46085. height: math.unit(6 + 1/12, "feet"),
  46086. default: true
  46087. },
  46088. ]
  46089. ))
  46090. characterMakers.push(() => makeCharacter(
  46091. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46092. {
  46093. side: {
  46094. height: math.unit(13, "feet"),
  46095. name: "Side",
  46096. image: {
  46097. source: "./media/characters/kira-tyler/side.svg",
  46098. extra: 693/393,
  46099. bottom: 58/751
  46100. }
  46101. },
  46102. },
  46103. [
  46104. {
  46105. name: "Normal",
  46106. height: math.unit(13, "feet"),
  46107. default: true
  46108. },
  46109. ]
  46110. ))
  46111. characterMakers.push(() => makeCharacter(
  46112. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46113. {
  46114. front: {
  46115. height: math.unit(10.3, "feet"),
  46116. weight: math.unit(150, "lb"),
  46117. name: "Front",
  46118. image: {
  46119. source: "./media/characters/blaze/front.svg",
  46120. extra: 1378/1286,
  46121. bottom: 172/1550
  46122. }
  46123. },
  46124. },
  46125. [
  46126. {
  46127. name: "Normal",
  46128. height: math.unit(10.3, "feet"),
  46129. default: true
  46130. },
  46131. ]
  46132. ))
  46133. characterMakers.push(() => makeCharacter(
  46134. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46135. {
  46136. side: {
  46137. height: math.unit(2, "meters"),
  46138. weight: math.unit(400, "kg"),
  46139. name: "Side",
  46140. image: {
  46141. source: "./media/characters/anu/side.svg",
  46142. extra: 506/394,
  46143. bottom: 18/524
  46144. }
  46145. },
  46146. },
  46147. [
  46148. {
  46149. name: "Humanoid",
  46150. height: math.unit(2, "meters")
  46151. },
  46152. {
  46153. name: "Normal",
  46154. height: math.unit(5, "meters"),
  46155. default: true
  46156. },
  46157. ]
  46158. ))
  46159. characterMakers.push(() => makeCharacter(
  46160. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46161. {
  46162. front: {
  46163. height: math.unit(5 + 5/12, "feet"),
  46164. weight: math.unit(170, "lb"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/synx-the-lynx/front.svg",
  46168. extra: 1893/1745,
  46169. bottom: 17/1910
  46170. }
  46171. },
  46172. side: {
  46173. height: math.unit(5 + 5/12, "feet"),
  46174. weight: math.unit(170, "lb"),
  46175. name: "Side",
  46176. image: {
  46177. source: "./media/characters/synx-the-lynx/side.svg",
  46178. extra: 1884/1740,
  46179. bottom: 39/1923
  46180. }
  46181. },
  46182. back: {
  46183. height: math.unit(5 + 5/12, "feet"),
  46184. weight: math.unit(170, "lb"),
  46185. name: "Back",
  46186. image: {
  46187. source: "./media/characters/synx-the-lynx/back.svg",
  46188. extra: 1903/1755,
  46189. bottom: 14/1917
  46190. }
  46191. },
  46192. },
  46193. [
  46194. {
  46195. name: "Normal",
  46196. height: math.unit(5 + 5/12, "feet"),
  46197. default: true
  46198. },
  46199. ]
  46200. ))
  46201. characterMakers.push(() => makeCharacter(
  46202. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46203. {
  46204. back: {
  46205. height: math.unit(15, "feet"),
  46206. name: "Back",
  46207. image: {
  46208. source: "./media/characters/nadezda-fex/back.svg",
  46209. extra: 1695/1481,
  46210. bottom: 25/1720
  46211. }
  46212. },
  46213. },
  46214. [
  46215. {
  46216. name: "Normal",
  46217. height: math.unit(15, "feet"),
  46218. default: true
  46219. },
  46220. {
  46221. name: "Macro",
  46222. height: math.unit(2.5, "miles")
  46223. },
  46224. {
  46225. name: "Goddess",
  46226. height: math.unit(2, "multiverses")
  46227. },
  46228. ]
  46229. ))
  46230. characterMakers.push(() => makeCharacter(
  46231. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46232. {
  46233. front: {
  46234. height: math.unit(216, "cm"),
  46235. name: "Front",
  46236. image: {
  46237. source: "./media/characters/lev/front.svg",
  46238. extra: 1728/1670,
  46239. bottom: 82/1810
  46240. }
  46241. },
  46242. back: {
  46243. height: math.unit(216, "cm"),
  46244. name: "Back",
  46245. image: {
  46246. source: "./media/characters/lev/back.svg",
  46247. extra: 1738/1675,
  46248. bottom: 24/1762
  46249. }
  46250. },
  46251. dressed: {
  46252. height: math.unit(216, "cm"),
  46253. name: "Dressed",
  46254. image: {
  46255. source: "./media/characters/lev/dressed.svg",
  46256. extra: 1397/1351,
  46257. bottom: 73/1470
  46258. }
  46259. },
  46260. head: {
  46261. height: math.unit(0.51, "meter"),
  46262. name: "Head",
  46263. image: {
  46264. source: "./media/characters/lev/head.svg"
  46265. }
  46266. },
  46267. },
  46268. [
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(216, "cm"),
  46272. default: true
  46273. },
  46274. {
  46275. name: "Relatively Macro",
  46276. height: math.unit(80, "meters")
  46277. },
  46278. {
  46279. name: "Megamacro",
  46280. height: math.unit(21600, "meters")
  46281. },
  46282. {
  46283. name: "Megamacro+",
  46284. height: math.unit(64800, "meters")
  46285. },
  46286. ]
  46287. ))
  46288. characterMakers.push(() => makeCharacter(
  46289. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46290. {
  46291. front: {
  46292. height: math.unit(2, "meters"),
  46293. weight: math.unit(80, "kg"),
  46294. name: "Front",
  46295. image: {
  46296. source: "./media/characters/moka/front.svg",
  46297. extra: 1337/1255,
  46298. bottom: 58/1395
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Micro",
  46305. height: math.unit(15, "cm")
  46306. },
  46307. {
  46308. name: "Normal",
  46309. height: math.unit(2, "meters"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Macro",
  46314. height: math.unit(20, "meters"),
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46320. {
  46321. front: {
  46322. height: math.unit(9, "feet"),
  46323. weight: math.unit(240, "lb"),
  46324. name: "Front",
  46325. image: {
  46326. source: "./media/characters/kuzco/front.svg",
  46327. extra: 1593/1487,
  46328. bottom: 32/1625
  46329. }
  46330. },
  46331. side: {
  46332. height: math.unit(9, "feet"),
  46333. weight: math.unit(240, "lb"),
  46334. name: "Side",
  46335. image: {
  46336. source: "./media/characters/kuzco/side.svg",
  46337. extra: 1575/1485,
  46338. bottom: 30/1605
  46339. }
  46340. },
  46341. back: {
  46342. height: math.unit(9, "feet"),
  46343. weight: math.unit(240, "lb"),
  46344. name: "Back",
  46345. image: {
  46346. source: "./media/characters/kuzco/back.svg",
  46347. extra: 1603/1514,
  46348. bottom: 14/1617
  46349. }
  46350. },
  46351. },
  46352. [
  46353. {
  46354. name: "Normal",
  46355. height: math.unit(9, "feet"),
  46356. default: true
  46357. },
  46358. ]
  46359. ))
  46360. characterMakers.push(() => makeCharacter(
  46361. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46362. {
  46363. side: {
  46364. height: math.unit(2, "meters"),
  46365. weight: math.unit(300, "kg"),
  46366. name: "Side",
  46367. image: {
  46368. source: "./media/characters/ceruleus/side.svg",
  46369. extra: 1068/974,
  46370. bottom: 126/1194
  46371. }
  46372. },
  46373. },
  46374. [
  46375. {
  46376. name: "Normal",
  46377. height: math.unit(16, "meters"),
  46378. default: true
  46379. },
  46380. ]
  46381. ))
  46382. characterMakers.push(() => makeCharacter(
  46383. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46384. {
  46385. front: {
  46386. height: math.unit(9, "feet"),
  46387. weight: math.unit(500, "kg"),
  46388. name: "Front",
  46389. image: {
  46390. source: "./media/characters/acouya/front.svg",
  46391. extra: 1660/1473,
  46392. bottom: 28/1688
  46393. }
  46394. },
  46395. },
  46396. [
  46397. {
  46398. name: "Normal",
  46399. height: math.unit(9, "feet"),
  46400. default: true
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46406. {
  46407. front: {
  46408. height: math.unit(5 + 6/12, "feet"),
  46409. weight: math.unit(195, "lb"),
  46410. name: "Front",
  46411. image: {
  46412. source: "./media/characters/vant/front.svg",
  46413. extra: 1396/1320,
  46414. bottom: 20/1416
  46415. }
  46416. },
  46417. back: {
  46418. height: math.unit(5 + 6/12, "feet"),
  46419. weight: math.unit(195, "lb"),
  46420. name: "Back",
  46421. image: {
  46422. source: "./media/characters/vant/back.svg",
  46423. extra: 1396/1320,
  46424. bottom: 20/1416
  46425. }
  46426. },
  46427. maw: {
  46428. height: math.unit(0.75, "feet"),
  46429. name: "Maw",
  46430. image: {
  46431. source: "./media/characters/vant/maw.svg"
  46432. }
  46433. },
  46434. paw: {
  46435. height: math.unit(1.07, "feet"),
  46436. name: "Paw",
  46437. image: {
  46438. source: "./media/characters/vant/paw.svg"
  46439. }
  46440. },
  46441. },
  46442. [
  46443. {
  46444. name: "Micro",
  46445. height: math.unit(0.25, "inches")
  46446. },
  46447. {
  46448. name: "Normal",
  46449. height: math.unit(5 + 6/12, "feet"),
  46450. default: true
  46451. },
  46452. {
  46453. name: "Macro",
  46454. height: math.unit(75, "feet")
  46455. },
  46456. ]
  46457. ))
  46458. characterMakers.push(() => makeCharacter(
  46459. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46460. {
  46461. front: {
  46462. height: math.unit(30, "meters"),
  46463. weight: math.unit(363, "tons"),
  46464. name: "Front",
  46465. image: {
  46466. source: "./media/characters/ahra/front.svg",
  46467. extra: 1914/1814,
  46468. bottom: 46/1960
  46469. }
  46470. },
  46471. },
  46472. [
  46473. {
  46474. name: "Macro",
  46475. height: math.unit(30, "meters"),
  46476. default: true
  46477. },
  46478. ]
  46479. ))
  46480. characterMakers.push(() => makeCharacter(
  46481. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46482. {
  46483. undressed: {
  46484. height: math.unit(2, "m"),
  46485. weight: math.unit(250, "kg"),
  46486. name: "Undressed",
  46487. image: {
  46488. source: "./media/characters/coriander/undressed.svg",
  46489. extra: 1757/1606,
  46490. bottom: 107/1864
  46491. }
  46492. },
  46493. dressed: {
  46494. height: math.unit(2, "m"),
  46495. weight: math.unit(250, "kg"),
  46496. name: "Dressed",
  46497. image: {
  46498. source: "./media/characters/coriander/dressed.svg",
  46499. extra: 1757/1606,
  46500. bottom: 107/1864
  46501. }
  46502. },
  46503. },
  46504. [
  46505. {
  46506. name: "Normal",
  46507. height: math.unit(4, "meters"),
  46508. default: true
  46509. },
  46510. {
  46511. name: "XL",
  46512. height: math.unit(6, "meters")
  46513. },
  46514. {
  46515. name: "XXL",
  46516. height: math.unit(8, "meters")
  46517. },
  46518. ]
  46519. ))
  46520. characterMakers.push(() => makeCharacter(
  46521. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46522. {
  46523. front: {
  46524. height: math.unit(6, "feet"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/syrinx/front.svg",
  46528. extra: 1557/1259,
  46529. bottom: 171/1728
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(6 + 3/12, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46543. {
  46544. front: {
  46545. height: math.unit(11 + 6/12, "feet"),
  46546. weight: math.unit(1.5, "tons"),
  46547. name: "Front",
  46548. image: {
  46549. source: "./media/characters/bor/front.svg",
  46550. extra: 1189/1109,
  46551. bottom: 170/1359
  46552. }
  46553. },
  46554. },
  46555. [
  46556. {
  46557. name: "Normal",
  46558. height: math.unit(11 + 6/12, "feet"),
  46559. default: true
  46560. },
  46561. {
  46562. name: "Macro",
  46563. height: math.unit(32 + 9/12, "feet")
  46564. },
  46565. ]
  46566. ))
  46567. characterMakers.push(() => makeCharacter(
  46568. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46569. {
  46570. anthro: {
  46571. height: math.unit(9, "feet"),
  46572. weight: math.unit(2076, "lb"),
  46573. name: "Anthro",
  46574. image: {
  46575. source: "./media/characters/abacus/anthro.svg",
  46576. extra: 1540/1494,
  46577. bottom: 233/1773
  46578. }
  46579. },
  46580. pigeon: {
  46581. height: math.unit(1, "feet"),
  46582. name: "Pigeon",
  46583. image: {
  46584. source: "./media/characters/abacus/pigeon.svg",
  46585. extra: 528/525,
  46586. bottom: 46/574
  46587. }
  46588. },
  46589. },
  46590. [
  46591. {
  46592. name: "Normal",
  46593. height: math.unit(9, "feet"),
  46594. default: true
  46595. },
  46596. ]
  46597. ))
  46598. characterMakers.push(() => makeCharacter(
  46599. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46600. {
  46601. side: {
  46602. height: math.unit(6, "feet"),
  46603. name: "Side",
  46604. image: {
  46605. source: "./media/characters/delkhan/side.svg",
  46606. extra: 1884/1786,
  46607. bottom: 308/2192
  46608. }
  46609. },
  46610. head: {
  46611. height: math.unit(3.38, "feet"),
  46612. name: "Head",
  46613. image: {
  46614. source: "./media/characters/delkhan/head.svg"
  46615. }
  46616. },
  46617. },
  46618. [
  46619. {
  46620. name: "Normal",
  46621. height: math.unit(72, "feet"),
  46622. default: true
  46623. },
  46624. {
  46625. name: "Giant",
  46626. height: math.unit(172, "feet")
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46632. {
  46633. standing: {
  46634. height: math.unit(6, "feet"),
  46635. name: "Standing",
  46636. image: {
  46637. source: "./media/characters/euchidat/standing.svg",
  46638. extra: 1612/1553,
  46639. bottom: 116/1728
  46640. }
  46641. },
  46642. leaning: {
  46643. height: math.unit(6, "feet"),
  46644. name: "Leaning",
  46645. image: {
  46646. source: "./media/characters/euchidat/leaning.svg",
  46647. extra: 1719/1674,
  46648. bottom: 27/1746
  46649. }
  46650. },
  46651. },
  46652. [
  46653. {
  46654. name: "Normal",
  46655. height: math.unit(175, "feet"),
  46656. default: true
  46657. },
  46658. {
  46659. name: "Megamacro",
  46660. height: math.unit(190, "miles")
  46661. },
  46662. {
  46663. name: "Gigamacro",
  46664. height: math.unit(190000, "miles")
  46665. },
  46666. ]
  46667. ))
  46668. characterMakers.push(() => makeCharacter(
  46669. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46670. {
  46671. front: {
  46672. height: math.unit(6, "feet"),
  46673. weight: math.unit(150, "lb"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/rebecca-stack/front.svg",
  46677. extra: 1256/1201,
  46678. bottom: 18/1274
  46679. }
  46680. },
  46681. },
  46682. [
  46683. {
  46684. name: "Normal",
  46685. height: math.unit(5 + 8/12, "feet"),
  46686. default: true
  46687. },
  46688. {
  46689. name: "Demolitionist",
  46690. height: math.unit(200, "feet")
  46691. },
  46692. {
  46693. name: "Out of Control",
  46694. height: math.unit(2, "miles")
  46695. },
  46696. {
  46697. name: "Giga",
  46698. height: math.unit(7200, "miles")
  46699. },
  46700. ]
  46701. ))
  46702. characterMakers.push(() => makeCharacter(
  46703. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46704. {
  46705. front: {
  46706. height: math.unit(6, "feet"),
  46707. weight: math.unit(150, "lb"),
  46708. name: "Front",
  46709. image: {
  46710. source: "./media/characters/jenny-cartwright/front.svg",
  46711. extra: 1384/1376,
  46712. bottom: 58/1442
  46713. }
  46714. },
  46715. },
  46716. [
  46717. {
  46718. name: "Normal",
  46719. height: math.unit(6 + 7/12, "feet"),
  46720. default: true
  46721. },
  46722. {
  46723. name: "Librarian",
  46724. height: math.unit(55, "feet")
  46725. },
  46726. {
  46727. name: "Sightseer",
  46728. height: math.unit(50, "miles")
  46729. },
  46730. {
  46731. name: "Giga",
  46732. height: math.unit(30000, "miles")
  46733. },
  46734. ]
  46735. ))
  46736. characterMakers.push(() => makeCharacter(
  46737. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46738. {
  46739. nude: {
  46740. height: math.unit(8, "feet"),
  46741. weight: math.unit(225, "lb"),
  46742. name: "Nude",
  46743. image: {
  46744. source: "./media/characters/marvy/nude.svg",
  46745. extra: 1900/1683,
  46746. bottom: 89/1989
  46747. }
  46748. },
  46749. dressed: {
  46750. height: math.unit(8, "feet"),
  46751. weight: math.unit(225, "lb"),
  46752. name: "Dressed",
  46753. image: {
  46754. source: "./media/characters/marvy/dressed.svg",
  46755. extra: 1900/1683,
  46756. bottom: 89/1989
  46757. }
  46758. },
  46759. head: {
  46760. height: math.unit(2.85, "feet"),
  46761. name: "Head",
  46762. image: {
  46763. source: "./media/characters/marvy/head.svg"
  46764. }
  46765. },
  46766. },
  46767. [
  46768. {
  46769. name: "Normal",
  46770. height: math.unit(8, "feet"),
  46771. default: true
  46772. },
  46773. ]
  46774. ))
  46775. characterMakers.push(() => makeCharacter(
  46776. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46777. {
  46778. front: {
  46779. height: math.unit(8, "feet"),
  46780. weight: math.unit(250, "lb"),
  46781. name: "Front",
  46782. image: {
  46783. source: "./media/characters/leah/front.svg",
  46784. extra: 1257/1149,
  46785. bottom: 109/1366
  46786. }
  46787. },
  46788. },
  46789. [
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(8, "feet"),
  46793. default: true
  46794. },
  46795. {
  46796. name: "Minimacro",
  46797. height: math.unit(40, "feet")
  46798. },
  46799. {
  46800. name: "Macro",
  46801. height: math.unit(124, "feet")
  46802. },
  46803. {
  46804. name: "Megamacro",
  46805. height: math.unit(850, "feet")
  46806. },
  46807. ]
  46808. ))
  46809. characterMakers.push(() => makeCharacter(
  46810. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46811. {
  46812. side: {
  46813. height: math.unit(13 + 6/12, "feet"),
  46814. weight: math.unit(3200, "lb"),
  46815. name: "Side",
  46816. image: {
  46817. source: "./media/characters/alvir/side.svg",
  46818. extra: 896/589,
  46819. bottom: 26/922
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(13 + 6/12, "feet"),
  46827. default: true
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46833. {
  46834. front: {
  46835. height: math.unit(5 + 4/12, "feet"),
  46836. weight: math.unit(236, "lb"),
  46837. name: "Front",
  46838. image: {
  46839. source: "./media/characters/zaina-khalil/front.svg",
  46840. extra: 1533/1485,
  46841. bottom: 94/1627
  46842. }
  46843. },
  46844. side: {
  46845. height: math.unit(5 + 4/12, "feet"),
  46846. weight: math.unit(236, "lb"),
  46847. name: "Side",
  46848. image: {
  46849. source: "./media/characters/zaina-khalil/side.svg",
  46850. extra: 1537/1498,
  46851. bottom: 66/1603
  46852. }
  46853. },
  46854. back: {
  46855. height: math.unit(5 + 4/12, "feet"),
  46856. weight: math.unit(236, "lb"),
  46857. name: "Back",
  46858. image: {
  46859. source: "./media/characters/zaina-khalil/back.svg",
  46860. extra: 1546/1494,
  46861. bottom: 89/1635
  46862. }
  46863. },
  46864. },
  46865. [
  46866. {
  46867. name: "Normal",
  46868. height: math.unit(5 + 4/12, "feet"),
  46869. default: true
  46870. },
  46871. ]
  46872. ))
  46873. characterMakers.push(() => makeCharacter(
  46874. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46875. {
  46876. side: {
  46877. height: math.unit(12, "feet"),
  46878. weight: math.unit(4000, "lb"),
  46879. name: "Side",
  46880. image: {
  46881. source: "./media/characters/terry/side.svg",
  46882. extra: 1518/1439,
  46883. bottom: 149/1667
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(12, "feet"),
  46891. default: true
  46892. },
  46893. ]
  46894. ))
  46895. characterMakers.push(() => makeCharacter(
  46896. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46897. {
  46898. front: {
  46899. height: math.unit(12, "feet"),
  46900. weight: math.unit(1500, "lb"),
  46901. name: "Front",
  46902. image: {
  46903. source: "./media/characters/kahea/front.svg",
  46904. extra: 1722/1617,
  46905. bottom: 179/1901
  46906. }
  46907. },
  46908. },
  46909. [
  46910. {
  46911. name: "Normal",
  46912. height: math.unit(12, "feet"),
  46913. default: true
  46914. },
  46915. ]
  46916. ))
  46917. characterMakers.push(() => makeCharacter(
  46918. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46919. {
  46920. demonFront: {
  46921. height: math.unit(36, "feet"),
  46922. name: "Front",
  46923. image: {
  46924. source: "./media/characters/alex-xuria/demon-front.svg",
  46925. extra: 1705/1673,
  46926. bottom: 198/1903
  46927. },
  46928. form: "demon",
  46929. default: true
  46930. },
  46931. demonBack: {
  46932. height: math.unit(36, "feet"),
  46933. name: "Back",
  46934. image: {
  46935. source: "./media/characters/alex-xuria/demon-back.svg",
  46936. extra: 1725/1693,
  46937. bottom: 70/1795
  46938. },
  46939. form: "demon"
  46940. },
  46941. demonHead: {
  46942. height: math.unit(2.14, "meters"),
  46943. name: "Head",
  46944. image: {
  46945. source: "./media/characters/alex-xuria/demon-head.svg"
  46946. },
  46947. form: "demon"
  46948. },
  46949. demonHand: {
  46950. height: math.unit(1.61, "meters"),
  46951. name: "Hand",
  46952. image: {
  46953. source: "./media/characters/alex-xuria/demon-hand.svg"
  46954. },
  46955. form: "demon"
  46956. },
  46957. demonPaw: {
  46958. height: math.unit(1.35, "meters"),
  46959. name: "Paw",
  46960. image: {
  46961. source: "./media/characters/alex-xuria/demon-paw.svg"
  46962. },
  46963. form: "demon"
  46964. },
  46965. demonFoot: {
  46966. height: math.unit(2.2, "meters"),
  46967. name: "Foot",
  46968. image: {
  46969. source: "./media/characters/alex-xuria/demon-foot.svg"
  46970. },
  46971. form: "demon"
  46972. },
  46973. demonCock: {
  46974. height: math.unit(1.74, "meters"),
  46975. name: "Cock",
  46976. image: {
  46977. source: "./media/characters/alex-xuria/demon-cock.svg"
  46978. },
  46979. form: "demon"
  46980. },
  46981. demonTailClosed: {
  46982. height: math.unit(1.47, "meters"),
  46983. name: "Tail (Closed)",
  46984. image: {
  46985. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46986. },
  46987. form: "demon"
  46988. },
  46989. demonTailOpen: {
  46990. height: math.unit(2.85, "meters"),
  46991. name: "Tail (Open)",
  46992. image: {
  46993. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46994. },
  46995. form: "demon"
  46996. },
  46997. incubusFront: {
  46998. height: math.unit(12, "feet"),
  46999. name: "Front",
  47000. image: {
  47001. source: "./media/characters/alex-xuria/incubus-front.svg",
  47002. extra: 1754/1677,
  47003. bottom: 125/1879
  47004. },
  47005. form: "incubus",
  47006. default: true
  47007. },
  47008. incubusBack: {
  47009. height: math.unit(12, "feet"),
  47010. name: "Back",
  47011. image: {
  47012. source: "./media/characters/alex-xuria/incubus-back.svg",
  47013. extra: 1702/1647,
  47014. bottom: 30/1732
  47015. },
  47016. form: "incubus"
  47017. },
  47018. incubusHead: {
  47019. height: math.unit(3.45, "feet"),
  47020. name: "Head",
  47021. image: {
  47022. source: "./media/characters/alex-xuria/incubus-head.svg"
  47023. },
  47024. form: "incubus"
  47025. },
  47026. rabbitFront: {
  47027. height: math.unit(6, "feet"),
  47028. name: "Front",
  47029. image: {
  47030. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47031. extra: 1369/1349,
  47032. bottom: 45/1414
  47033. },
  47034. form: "rabbit",
  47035. default: true
  47036. },
  47037. rabbitSide: {
  47038. height: math.unit(6, "feet"),
  47039. name: "Side",
  47040. image: {
  47041. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47042. extra: 1370/1356,
  47043. bottom: 37/1407
  47044. },
  47045. form: "rabbit"
  47046. },
  47047. rabbitBack: {
  47048. height: math.unit(6, "feet"),
  47049. name: "Back",
  47050. image: {
  47051. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47052. extra: 1375/1358,
  47053. bottom: 43/1418
  47054. },
  47055. form: "rabbit"
  47056. },
  47057. },
  47058. [
  47059. {
  47060. name: "Normal",
  47061. height: math.unit(6, "feet"),
  47062. default: true,
  47063. form: "rabbit"
  47064. },
  47065. {
  47066. name: "Incubus",
  47067. height: math.unit(12, "feet"),
  47068. default: true,
  47069. form: "incubus"
  47070. },
  47071. {
  47072. name: "Demon",
  47073. height: math.unit(36, "feet"),
  47074. default: true,
  47075. form: "demon"
  47076. }
  47077. ],
  47078. {
  47079. "demon": {
  47080. name: "Demon",
  47081. default: true
  47082. },
  47083. "incubus": {
  47084. name: "Incubus",
  47085. },
  47086. "rabbit": {
  47087. name: "Rabbit"
  47088. }
  47089. }
  47090. ))
  47091. characterMakers.push(() => makeCharacter(
  47092. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47093. {
  47094. front: {
  47095. height: math.unit(7 + 5/12, "feet"),
  47096. weight: math.unit(510, "lb"),
  47097. name: "Front",
  47098. image: {
  47099. source: "./media/characters/syrup/front.svg",
  47100. extra: 932/916,
  47101. bottom: 26/958
  47102. }
  47103. },
  47104. },
  47105. [
  47106. {
  47107. name: "Normal",
  47108. height: math.unit(7 + 5/12, "feet"),
  47109. default: true
  47110. },
  47111. {
  47112. name: "Big",
  47113. height: math.unit(50, "feet")
  47114. },
  47115. {
  47116. name: "Macro",
  47117. height: math.unit(300, "feet")
  47118. },
  47119. {
  47120. name: "Megamacro",
  47121. height: math.unit(1, "mile")
  47122. },
  47123. ]
  47124. ))
  47125. characterMakers.push(() => makeCharacter(
  47126. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47127. {
  47128. front: {
  47129. height: math.unit(6 + 9/12, "feet"),
  47130. name: "Front",
  47131. image: {
  47132. source: "./media/characters/zeimne/front.svg",
  47133. extra: 1969/1806,
  47134. bottom: 53/2022
  47135. }
  47136. },
  47137. },
  47138. [
  47139. {
  47140. name: "Normal",
  47141. height: math.unit(6 + 9/12, "feet"),
  47142. default: true
  47143. },
  47144. {
  47145. name: "Giant",
  47146. height: math.unit(550, "feet")
  47147. },
  47148. {
  47149. name: "Mega",
  47150. height: math.unit(3, "miles")
  47151. },
  47152. {
  47153. name: "Giga",
  47154. height: math.unit(250, "miles")
  47155. },
  47156. {
  47157. name: "Tera",
  47158. height: math.unit(1, "AU")
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47164. {
  47165. front: {
  47166. height: math.unit(5 + 2/12, "feet"),
  47167. name: "Front",
  47168. image: {
  47169. source: "./media/characters/grar/front.svg",
  47170. extra: 1331/1119,
  47171. bottom: 60/1391
  47172. }
  47173. },
  47174. back: {
  47175. height: math.unit(5 + 2/12, "feet"),
  47176. name: "Back",
  47177. image: {
  47178. source: "./media/characters/grar/back.svg",
  47179. extra: 1385/1169,
  47180. bottom: 23/1408
  47181. }
  47182. },
  47183. },
  47184. [
  47185. {
  47186. name: "Normal",
  47187. height: math.unit(5 + 2/12, "feet"),
  47188. default: true
  47189. },
  47190. ]
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47194. {
  47195. front: {
  47196. height: math.unit(13 + 7/12, "feet"),
  47197. weight: math.unit(2200, "lb"),
  47198. name: "Front",
  47199. image: {
  47200. source: "./media/characters/endraya/front.svg",
  47201. extra: 1289/1215,
  47202. bottom: 50/1339
  47203. }
  47204. },
  47205. nude: {
  47206. height: math.unit(13 + 7/12, "feet"),
  47207. weight: math.unit(2200, "lb"),
  47208. name: "Nude",
  47209. image: {
  47210. source: "./media/characters/endraya/nude.svg",
  47211. extra: 1247/1171,
  47212. bottom: 40/1287
  47213. }
  47214. },
  47215. head: {
  47216. height: math.unit(2.6, "feet"),
  47217. name: "Head",
  47218. image: {
  47219. source: "./media/characters/endraya/head.svg"
  47220. }
  47221. },
  47222. slit: {
  47223. height: math.unit(3.4, "feet"),
  47224. name: "Slit",
  47225. image: {
  47226. source: "./media/characters/endraya/slit.svg"
  47227. }
  47228. },
  47229. },
  47230. [
  47231. {
  47232. name: "Normal",
  47233. height: math.unit(13 + 7/12, "feet"),
  47234. default: true
  47235. },
  47236. {
  47237. name: "Macro",
  47238. height: math.unit(200, "feet")
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47244. {
  47245. front: {
  47246. height: math.unit(1.81, "meters"),
  47247. weight: math.unit(69, "kg"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/rodryana/front.svg",
  47251. extra: 2002/1921,
  47252. bottom: 53/2055
  47253. }
  47254. },
  47255. back: {
  47256. height: math.unit(1.81, "meters"),
  47257. weight: math.unit(69, "kg"),
  47258. name: "Back",
  47259. image: {
  47260. source: "./media/characters/rodryana/back.svg",
  47261. extra: 1993/1926,
  47262. bottom: 48/2041
  47263. }
  47264. },
  47265. maw: {
  47266. height: math.unit(0.19769417475, "meters"),
  47267. name: "Maw",
  47268. image: {
  47269. source: "./media/characters/rodryana/maw.svg"
  47270. }
  47271. },
  47272. slit: {
  47273. height: math.unit(0.31631067961, "meters"),
  47274. name: "Slit",
  47275. image: {
  47276. source: "./media/characters/rodryana/slit.svg"
  47277. }
  47278. },
  47279. },
  47280. [
  47281. {
  47282. name: "Normal",
  47283. height: math.unit(1.81, "meters")
  47284. },
  47285. {
  47286. name: "Mini Macro",
  47287. height: math.unit(181, "meters")
  47288. },
  47289. {
  47290. name: "Macro",
  47291. height: math.unit(452, "meters"),
  47292. default: true
  47293. },
  47294. {
  47295. name: "Mega Macro",
  47296. height: math.unit(1.375, "km")
  47297. },
  47298. {
  47299. name: "Giga Macro",
  47300. height: math.unit(13.575, "km")
  47301. },
  47302. ]
  47303. ))
  47304. characterMakers.push(() => makeCharacter(
  47305. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47306. {
  47307. front: {
  47308. height: math.unit(6, "feet"),
  47309. weight: math.unit(1000, "lb"),
  47310. name: "Front",
  47311. image: {
  47312. source: "./media/characters/asaya/front.svg",
  47313. extra: 1460/1200,
  47314. bottom: 71/1531
  47315. }
  47316. },
  47317. },
  47318. [
  47319. {
  47320. name: "Normal",
  47321. height: math.unit(8, "km"),
  47322. default: true
  47323. },
  47324. ]
  47325. ))
  47326. characterMakers.push(() => makeCharacter(
  47327. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47328. {
  47329. front: {
  47330. height: math.unit(3.5, "meters"),
  47331. name: "Front",
  47332. image: {
  47333. source: "./media/characters/sarzu-and-israz/front.svg",
  47334. extra: 1570/1558,
  47335. bottom: 150/1720
  47336. },
  47337. },
  47338. back: {
  47339. height: math.unit(3.5, "meters"),
  47340. name: "Back",
  47341. image: {
  47342. source: "./media/characters/sarzu-and-israz/back.svg",
  47343. extra: 1523/1509,
  47344. bottom: 132/1655
  47345. },
  47346. },
  47347. frontFemale: {
  47348. height: math.unit(3.5, "meters"),
  47349. name: "Front (Female)",
  47350. image: {
  47351. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47352. extra: 1570/1558,
  47353. bottom: 150/1720
  47354. },
  47355. },
  47356. frontHerm: {
  47357. height: math.unit(3.5, "meters"),
  47358. name: "Front (Herm)",
  47359. image: {
  47360. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47361. extra: 1570/1558,
  47362. bottom: 150/1720
  47363. },
  47364. },
  47365. },
  47366. [
  47367. {
  47368. name: "Normal",
  47369. height: math.unit(3.5, "meters"),
  47370. default: true,
  47371. },
  47372. {
  47373. name: "Macro",
  47374. height: math.unit(65.5, "meters"),
  47375. },
  47376. ],
  47377. ))
  47378. characterMakers.push(() => makeCharacter(
  47379. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47380. {
  47381. front: {
  47382. height: math.unit(6, "feet"),
  47383. weight: math.unit(250, "lb"),
  47384. name: "Front",
  47385. image: {
  47386. source: "./media/characters/zenimma/front.svg",
  47387. extra: 1346/1320,
  47388. bottom: 58/1404
  47389. }
  47390. },
  47391. back: {
  47392. height: math.unit(6, "feet"),
  47393. weight: math.unit(250, "lb"),
  47394. name: "Back",
  47395. image: {
  47396. source: "./media/characters/zenimma/back.svg",
  47397. extra: 1324/1308,
  47398. bottom: 44/1368
  47399. }
  47400. },
  47401. dick: {
  47402. height: math.unit(1.44, "feet"),
  47403. name: "Dick",
  47404. image: {
  47405. source: "./media/characters/zenimma/dick.svg"
  47406. }
  47407. },
  47408. },
  47409. [
  47410. {
  47411. name: "Canon Height",
  47412. height: math.unit(66, "miles"),
  47413. default: true
  47414. },
  47415. ]
  47416. ))
  47417. characterMakers.push(() => makeCharacter(
  47418. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47419. {
  47420. nude: {
  47421. height: math.unit(6, "feet"),
  47422. weight: math.unit(150, "lb"),
  47423. name: "Nude",
  47424. image: {
  47425. source: "./media/characters/shavon/nude.svg",
  47426. extra: 1242/1096,
  47427. bottom: 98/1340
  47428. }
  47429. },
  47430. dressed: {
  47431. height: math.unit(6, "feet"),
  47432. weight: math.unit(150, "lb"),
  47433. name: "Dressed",
  47434. image: {
  47435. source: "./media/characters/shavon/dressed.svg",
  47436. extra: 1242/1096,
  47437. bottom: 98/1340
  47438. }
  47439. },
  47440. },
  47441. [
  47442. {
  47443. name: "Macro",
  47444. height: math.unit(255, "feet"),
  47445. default: true
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(6, "feet"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/steph/front.svg",
  47457. extra: 1430/1330,
  47458. bottom: 54/1484
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(6, "feet"),
  47466. default: true
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(9, "feet"),
  47475. weight: math.unit(400, "lb"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/kil'aman/front.svg",
  47479. extra: 1210/1159,
  47480. bottom: 109/1319
  47481. }
  47482. },
  47483. head: {
  47484. height: math.unit(2.14, "feet"),
  47485. name: "Head",
  47486. image: {
  47487. source: "./media/characters/kil'aman/head.svg"
  47488. }
  47489. },
  47490. maw: {
  47491. height: math.unit(1.21, "feet"),
  47492. name: "Maw",
  47493. image: {
  47494. source: "./media/characters/kil'aman/maw.svg"
  47495. }
  47496. },
  47497. foot: {
  47498. height: math.unit(1.7, "feet"),
  47499. name: "Foot",
  47500. image: {
  47501. source: "./media/characters/kil'aman/foot.svg"
  47502. }
  47503. },
  47504. dick: {
  47505. height: math.unit(2.1, "feet"),
  47506. name: "Dick",
  47507. image: {
  47508. source: "./media/characters/kil'aman/dick.svg"
  47509. }
  47510. },
  47511. },
  47512. [
  47513. {
  47514. name: "Normal",
  47515. height: math.unit(9, "feet")
  47516. },
  47517. {
  47518. name: "Canon Height",
  47519. height: math.unit(10, "miles"),
  47520. default: true
  47521. },
  47522. {
  47523. name: "Maximum",
  47524. height: math.unit(6e9, "miles")
  47525. },
  47526. ]
  47527. ))
  47528. characterMakers.push(() => makeCharacter(
  47529. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47530. {
  47531. front: {
  47532. height: math.unit(90, "feet"),
  47533. weight: math.unit(675000, "lb"),
  47534. name: "Front",
  47535. image: {
  47536. source: "./media/characters/qadan/front.svg",
  47537. extra: 1012/1004,
  47538. bottom: 78/1090
  47539. }
  47540. },
  47541. back: {
  47542. height: math.unit(90, "feet"),
  47543. weight: math.unit(675000, "lb"),
  47544. name: "Back",
  47545. image: {
  47546. source: "./media/characters/qadan/back.svg",
  47547. extra: 1042/1031,
  47548. bottom: 55/1097
  47549. }
  47550. },
  47551. armored: {
  47552. height: math.unit(90, "feet"),
  47553. weight: math.unit(675000, "lb"),
  47554. name: "Armored",
  47555. image: {
  47556. source: "./media/characters/qadan/armored.svg",
  47557. extra: 1047/1037,
  47558. bottom: 48/1095
  47559. }
  47560. },
  47561. },
  47562. [
  47563. {
  47564. name: "Normal",
  47565. height: math.unit(90, "feet"),
  47566. default: true
  47567. },
  47568. ]
  47569. ))
  47570. characterMakers.push(() => makeCharacter(
  47571. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47572. {
  47573. front: {
  47574. height: math.unit(6, "feet"),
  47575. weight: math.unit(225, "lb"),
  47576. name: "Front",
  47577. image: {
  47578. source: "./media/characters/brooke/front.svg",
  47579. extra: 1050/1010,
  47580. bottom: 66/1116
  47581. }
  47582. },
  47583. back: {
  47584. height: math.unit(6, "feet"),
  47585. weight: math.unit(225, "lb"),
  47586. name: "Back",
  47587. image: {
  47588. source: "./media/characters/brooke/back.svg",
  47589. extra: 1053/1013,
  47590. bottom: 41/1094
  47591. }
  47592. },
  47593. dressed: {
  47594. height: math.unit(6, "feet"),
  47595. weight: math.unit(225, "lb"),
  47596. name: "Dressed",
  47597. image: {
  47598. source: "./media/characters/brooke/dressed.svg",
  47599. extra: 1050/1010,
  47600. bottom: 66/1116
  47601. }
  47602. },
  47603. },
  47604. [
  47605. {
  47606. name: "Canon Height",
  47607. height: math.unit(500, "miles"),
  47608. default: true
  47609. },
  47610. ]
  47611. ))
  47612. characterMakers.push(() => makeCharacter(
  47613. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47614. {
  47615. front: {
  47616. height: math.unit(6 + 2/12, "feet"),
  47617. weight: math.unit(210, "lb"),
  47618. name: "Front",
  47619. image: {
  47620. source: "./media/characters/wubs/front.svg",
  47621. extra: 1345/1325,
  47622. bottom: 70/1415
  47623. }
  47624. },
  47625. back: {
  47626. height: math.unit(6 + 2/12, "feet"),
  47627. weight: math.unit(210, "lb"),
  47628. name: "Back",
  47629. image: {
  47630. source: "./media/characters/wubs/back.svg",
  47631. extra: 1296/1275,
  47632. bottom: 58/1354
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(6 + 2/12, "feet"),
  47640. default: true
  47641. },
  47642. {
  47643. name: "Macro",
  47644. height: math.unit(1000, "feet")
  47645. },
  47646. {
  47647. name: "Megamacro",
  47648. height: math.unit(1, "mile")
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47654. {
  47655. front: {
  47656. height: math.unit(4, "feet"),
  47657. weight: math.unit(120, "lb"),
  47658. name: "Front",
  47659. image: {
  47660. source: "./media/characters/blue/front.svg",
  47661. extra: 1636/1525,
  47662. bottom: 43/1679
  47663. }
  47664. },
  47665. back: {
  47666. height: math.unit(4, "feet"),
  47667. weight: math.unit(120, "lb"),
  47668. name: "Back",
  47669. image: {
  47670. source: "./media/characters/blue/back.svg",
  47671. extra: 1660/1560,
  47672. bottom: 57/1717
  47673. }
  47674. },
  47675. paws: {
  47676. height: math.unit(0.826, "feet"),
  47677. name: "Paws",
  47678. image: {
  47679. source: "./media/characters/blue/paws.svg"
  47680. }
  47681. },
  47682. },
  47683. [
  47684. {
  47685. name: "Micro",
  47686. height: math.unit(3, "inches")
  47687. },
  47688. {
  47689. name: "Normal",
  47690. height: math.unit(4, "feet"),
  47691. default: true
  47692. },
  47693. {
  47694. name: "Femenine Form",
  47695. height: math.unit(14, "feet")
  47696. },
  47697. {
  47698. name: "Werebat Form",
  47699. height: math.unit(18, "feet")
  47700. },
  47701. ]
  47702. ))
  47703. characterMakers.push(() => makeCharacter(
  47704. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47705. {
  47706. female: {
  47707. height: math.unit(7 + 4/12, "feet"),
  47708. weight: math.unit(243, "lb"),
  47709. name: "Female",
  47710. image: {
  47711. source: "./media/characters/kaya/female.svg",
  47712. extra: 975/898,
  47713. bottom: 34/1009
  47714. }
  47715. },
  47716. herm: {
  47717. height: math.unit(7 + 4/12, "feet"),
  47718. weight: math.unit(243, "lb"),
  47719. name: "Herm",
  47720. image: {
  47721. source: "./media/characters/kaya/herm.svg",
  47722. extra: 975/898,
  47723. bottom: 34/1009
  47724. }
  47725. },
  47726. },
  47727. [
  47728. {
  47729. name: "Normal",
  47730. height: math.unit(7 + 4/12, "feet"),
  47731. default: true
  47732. },
  47733. ]
  47734. ))
  47735. characterMakers.push(() => makeCharacter(
  47736. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47737. {
  47738. female: {
  47739. height: math.unit(9 + 4/12, "feet"),
  47740. weight: math.unit(398, "lb"),
  47741. name: "Female",
  47742. image: {
  47743. source: "./media/characters/kassandra/female.svg",
  47744. extra: 908/839,
  47745. bottom: 61/969
  47746. }
  47747. },
  47748. intersex: {
  47749. height: math.unit(9 + 4/12, "feet"),
  47750. weight: math.unit(398, "lb"),
  47751. name: "Intersex",
  47752. image: {
  47753. source: "./media/characters/kassandra/intersex.svg",
  47754. extra: 908/839,
  47755. bottom: 61/969
  47756. }
  47757. },
  47758. },
  47759. [
  47760. {
  47761. name: "Normal",
  47762. height: math.unit(9 + 4/12, "feet"),
  47763. default: true
  47764. },
  47765. ]
  47766. ))
  47767. characterMakers.push(() => makeCharacter(
  47768. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47769. {
  47770. front: {
  47771. height: math.unit(3, "meters"),
  47772. name: "Front",
  47773. image: {
  47774. source: "./media/characters/amy/front.svg",
  47775. extra: 1380/1343,
  47776. bottom: 70/1450
  47777. }
  47778. },
  47779. back: {
  47780. height: math.unit(3, "meters"),
  47781. name: "Back",
  47782. image: {
  47783. source: "./media/characters/amy/back.svg",
  47784. extra: 1380/1347,
  47785. bottom: 66/1446
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(3, "meters"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47799. {
  47800. side: {
  47801. height: math.unit(47, "cm"),
  47802. weight: math.unit(10.8, "kg"),
  47803. name: "Side",
  47804. image: {
  47805. source: "./media/characters/alphaschakal/side.svg",
  47806. extra: 1058/568,
  47807. bottom: 62/1120
  47808. }
  47809. },
  47810. back: {
  47811. height: math.unit(78, "cm"),
  47812. weight: math.unit(10.8, "kg"),
  47813. name: "Back",
  47814. image: {
  47815. source: "./media/characters/alphaschakal/back.svg",
  47816. extra: 1102/942,
  47817. bottom: 185/1287
  47818. }
  47819. },
  47820. head: {
  47821. height: math.unit(28, "cm"),
  47822. name: "Head",
  47823. image: {
  47824. source: "./media/characters/alphaschakal/head.svg",
  47825. extra: 696/508,
  47826. bottom: 0/696
  47827. }
  47828. },
  47829. paw: {
  47830. height: math.unit(16, "cm"),
  47831. name: "Paw",
  47832. image: {
  47833. source: "./media/characters/alphaschakal/paw.svg"
  47834. }
  47835. },
  47836. },
  47837. [
  47838. {
  47839. name: "Normal",
  47840. height: math.unit(47, "cm"),
  47841. default: true
  47842. },
  47843. {
  47844. name: "Macro",
  47845. height: math.unit(340, "cm")
  47846. },
  47847. ]
  47848. ))
  47849. characterMakers.push(() => makeCharacter(
  47850. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47851. {
  47852. front: {
  47853. height: math.unit(36, "earths"),
  47854. name: "Front",
  47855. image: {
  47856. source: "./media/characters/ecobyss/front.svg",
  47857. extra: 1282/1215,
  47858. bottom: 11/1293
  47859. }
  47860. },
  47861. back: {
  47862. height: math.unit(36, "earths"),
  47863. name: "Back",
  47864. image: {
  47865. source: "./media/characters/ecobyss/back.svg",
  47866. extra: 1291/1222,
  47867. bottom: 8/1299
  47868. }
  47869. },
  47870. },
  47871. [
  47872. {
  47873. name: "Normal",
  47874. height: math.unit(36, "earths"),
  47875. default: true
  47876. },
  47877. ]
  47878. ))
  47879. characterMakers.push(() => makeCharacter(
  47880. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47881. {
  47882. front: {
  47883. height: math.unit(12, "feet"),
  47884. name: "Front",
  47885. image: {
  47886. source: "./media/characters/vasuk/front.svg",
  47887. extra: 1326/1207,
  47888. bottom: 64/1390
  47889. }
  47890. },
  47891. },
  47892. [
  47893. {
  47894. name: "Normal",
  47895. height: math.unit(12, "feet"),
  47896. default: true
  47897. },
  47898. ]
  47899. ))
  47900. characterMakers.push(() => makeCharacter(
  47901. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47902. {
  47903. side: {
  47904. height: math.unit(100, "feet"),
  47905. name: "Side",
  47906. image: {
  47907. source: "./media/characters/linneaus/side.svg",
  47908. extra: 987/807,
  47909. bottom: 47/1034
  47910. }
  47911. },
  47912. },
  47913. [
  47914. {
  47915. name: "Macro",
  47916. height: math.unit(100, "feet"),
  47917. default: true
  47918. },
  47919. ]
  47920. ))
  47921. characterMakers.push(() => makeCharacter(
  47922. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47923. {
  47924. front: {
  47925. height: math.unit(8, "feet"),
  47926. weight: math.unit(1200, "lb"),
  47927. name: "Front",
  47928. image: {
  47929. source: "./media/characters/nyterious-daligdig/front.svg",
  47930. extra: 1284/1094,
  47931. bottom: 84/1368
  47932. }
  47933. },
  47934. back: {
  47935. height: math.unit(8, "feet"),
  47936. weight: math.unit(1200, "lb"),
  47937. name: "Back",
  47938. image: {
  47939. source: "./media/characters/nyterious-daligdig/back.svg",
  47940. extra: 1301/1121,
  47941. bottom: 129/1430
  47942. }
  47943. },
  47944. mouth: {
  47945. height: math.unit(1.464, "feet"),
  47946. name: "Mouth",
  47947. image: {
  47948. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47949. }
  47950. },
  47951. },
  47952. [
  47953. {
  47954. name: "Small",
  47955. height: math.unit(8, "feet"),
  47956. default: true
  47957. },
  47958. {
  47959. name: "Normal",
  47960. height: math.unit(15, "feet")
  47961. },
  47962. {
  47963. name: "Macro",
  47964. height: math.unit(90, "feet")
  47965. },
  47966. ]
  47967. ))
  47968. characterMakers.push(() => makeCharacter(
  47969. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47970. {
  47971. front: {
  47972. height: math.unit(7 + 4/12, "feet"),
  47973. weight: math.unit(252, "lb"),
  47974. name: "Front",
  47975. image: {
  47976. source: "./media/characters/bandel/front.svg",
  47977. extra: 1946/1775,
  47978. bottom: 26/1972
  47979. }
  47980. },
  47981. back: {
  47982. height: math.unit(7 + 4/12, "feet"),
  47983. weight: math.unit(252, "lb"),
  47984. name: "Back",
  47985. image: {
  47986. source: "./media/characters/bandel/back.svg",
  47987. extra: 1940/1770,
  47988. bottom: 25/1965
  47989. }
  47990. },
  47991. maw: {
  47992. height: math.unit(2.15, "feet"),
  47993. name: "Maw",
  47994. image: {
  47995. source: "./media/characters/bandel/maw.svg"
  47996. }
  47997. },
  47998. stomach: {
  47999. height: math.unit(1.95, "feet"),
  48000. name: "Stomach",
  48001. image: {
  48002. source: "./media/characters/bandel/stomach.svg"
  48003. }
  48004. },
  48005. },
  48006. [
  48007. {
  48008. name: "Normal",
  48009. height: math.unit(7 + 4/12, "feet"),
  48010. default: true
  48011. },
  48012. ]
  48013. ))
  48014. characterMakers.push(() => makeCharacter(
  48015. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48016. {
  48017. front: {
  48018. height: math.unit(10 + 5/12, "feet"),
  48019. weight: math.unit(773.5, "kg"),
  48020. name: "Front",
  48021. image: {
  48022. source: "./media/characters/zed/front.svg",
  48023. extra: 987/941,
  48024. bottom: 52/1039
  48025. }
  48026. },
  48027. },
  48028. [
  48029. {
  48030. name: "Short",
  48031. height: math.unit(5 + 4/12, "feet")
  48032. },
  48033. {
  48034. name: "Average",
  48035. height: math.unit(10 + 5/12, "feet"),
  48036. default: true
  48037. },
  48038. {
  48039. name: "Mini-Macro",
  48040. height: math.unit(24 + 9/12, "feet")
  48041. },
  48042. {
  48043. name: "Macro",
  48044. height: math.unit(249, "feet")
  48045. },
  48046. {
  48047. name: "Mega-Macro",
  48048. height: math.unit(12490, "feet")
  48049. },
  48050. {
  48051. name: "Giga-Macro",
  48052. height: math.unit(24.9, "miles")
  48053. },
  48054. {
  48055. name: "Tera-Macro",
  48056. height: math.unit(24900, "miles")
  48057. },
  48058. {
  48059. name: "Cosmic Scale",
  48060. height: math.unit(38.9, "lightyears")
  48061. },
  48062. {
  48063. name: "Universal Scale",
  48064. height: math.unit(138e12, "lightyears")
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48070. {
  48071. front: {
  48072. height: math.unit(1561, "inches"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/ivan/front.svg",
  48076. extra: 1126/1071,
  48077. bottom: 26/1152
  48078. }
  48079. },
  48080. back: {
  48081. height: math.unit(1561, "inches"),
  48082. name: "Back",
  48083. image: {
  48084. source: "./media/characters/ivan/back.svg",
  48085. extra: 1134/1079,
  48086. bottom: 30/1164
  48087. }
  48088. },
  48089. },
  48090. [
  48091. {
  48092. name: "Normal",
  48093. height: math.unit(1561, "inches"),
  48094. default: true
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48100. {
  48101. front: {
  48102. height: math.unit(5 + 7/12, "feet"),
  48103. weight: math.unit(150, "lb"),
  48104. name: "Front",
  48105. image: {
  48106. source: "./media/characters/robin-arctic-hare/front.svg",
  48107. extra: 1148/974,
  48108. bottom: 20/1168
  48109. }
  48110. },
  48111. },
  48112. [
  48113. {
  48114. name: "Normal",
  48115. height: math.unit(5 + 7/12, "feet"),
  48116. default: true
  48117. },
  48118. ]
  48119. ))
  48120. characterMakers.push(() => makeCharacter(
  48121. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48122. {
  48123. side: {
  48124. height: math.unit(5, "feet"),
  48125. name: "Side",
  48126. image: {
  48127. source: "./media/characters/birch/side.svg",
  48128. extra: 985/796,
  48129. bottom: 111/1096
  48130. }
  48131. },
  48132. },
  48133. [
  48134. {
  48135. name: "Normal",
  48136. height: math.unit(5, "feet"),
  48137. default: true
  48138. },
  48139. ]
  48140. ))
  48141. characterMakers.push(() => makeCharacter(
  48142. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48143. {
  48144. front: {
  48145. height: math.unit(4, "feet"),
  48146. name: "Front",
  48147. image: {
  48148. source: "./media/characters/rasp/front.svg",
  48149. extra: 561/478,
  48150. bottom: 74/635
  48151. }
  48152. },
  48153. },
  48154. [
  48155. {
  48156. name: "Normal",
  48157. height: math.unit(4, "feet"),
  48158. default: true
  48159. },
  48160. ]
  48161. ))
  48162. characterMakers.push(() => makeCharacter(
  48163. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48164. {
  48165. front: {
  48166. height: math.unit(4 + 6/12, "feet"),
  48167. name: "Front",
  48168. image: {
  48169. source: "./media/characters/agatha/front.svg",
  48170. extra: 947/933,
  48171. bottom: 42/989
  48172. }
  48173. },
  48174. back: {
  48175. height: math.unit(4 + 6/12, "feet"),
  48176. name: "Back",
  48177. image: {
  48178. source: "./media/characters/agatha/back.svg",
  48179. extra: 935/922,
  48180. bottom: 48/983
  48181. }
  48182. },
  48183. },
  48184. [
  48185. {
  48186. name: "Normal",
  48187. height: math.unit(4 + 6 /12, "feet"),
  48188. default: true
  48189. },
  48190. {
  48191. name: "Max Size",
  48192. height: math.unit(500, "feet")
  48193. },
  48194. ]
  48195. ))
  48196. characterMakers.push(() => makeCharacter(
  48197. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48198. {
  48199. side: {
  48200. height: math.unit(30, "feet"),
  48201. name: "Side",
  48202. image: {
  48203. source: "./media/characters/roggy/side.svg",
  48204. extra: 909/643,
  48205. bottom: 63/972
  48206. }
  48207. },
  48208. lounging: {
  48209. height: math.unit(20, "feet"),
  48210. name: "Lounging",
  48211. image: {
  48212. source: "./media/characters/roggy/lounging.svg",
  48213. extra: 643/479,
  48214. bottom: 145/788
  48215. }
  48216. },
  48217. handpaw: {
  48218. height: math.unit(13.1, "feet"),
  48219. name: "Handpaw",
  48220. image: {
  48221. source: "./media/characters/roggy/handpaw.svg"
  48222. }
  48223. },
  48224. footpaw: {
  48225. height: math.unit(15.8, "feet"),
  48226. name: "Footpaw",
  48227. image: {
  48228. source: "./media/characters/roggy/footpaw.svg"
  48229. }
  48230. },
  48231. },
  48232. [
  48233. {
  48234. name: "Menacing",
  48235. height: math.unit(30, "feet"),
  48236. default: true
  48237. },
  48238. ]
  48239. ))
  48240. characterMakers.push(() => makeCharacter(
  48241. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48242. {
  48243. front: {
  48244. height: math.unit(5 + 7/12, "feet"),
  48245. weight: math.unit(135, "lb"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/naomi/front.svg",
  48249. extra: 1209/1154,
  48250. bottom: 129/1338
  48251. }
  48252. },
  48253. back: {
  48254. height: math.unit(5 + 7/12, "feet"),
  48255. weight: math.unit(135, "lb"),
  48256. name: "Back",
  48257. image: {
  48258. source: "./media/characters/naomi/back.svg",
  48259. extra: 1252/1190,
  48260. bottom: 23/1275
  48261. }
  48262. },
  48263. },
  48264. [
  48265. {
  48266. name: "Normal",
  48267. height: math.unit(5 + 7 /12, "feet"),
  48268. default: true
  48269. },
  48270. ]
  48271. ))
  48272. characterMakers.push(() => makeCharacter(
  48273. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48274. {
  48275. side: {
  48276. height: math.unit(35, "meters"),
  48277. name: "Side",
  48278. image: {
  48279. source: "./media/characters/kimpi/side.svg",
  48280. extra: 419/382,
  48281. bottom: 63/482
  48282. }
  48283. },
  48284. hand: {
  48285. height: math.unit(8.96, "meters"),
  48286. name: "Hand",
  48287. image: {
  48288. source: "./media/characters/kimpi/hand.svg"
  48289. }
  48290. },
  48291. },
  48292. [
  48293. {
  48294. name: "Normal",
  48295. height: math.unit(35, "meters"),
  48296. default: true
  48297. },
  48298. ]
  48299. ))
  48300. characterMakers.push(() => makeCharacter(
  48301. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48302. {
  48303. front: {
  48304. height: math.unit(4 + 4/12, "feet"),
  48305. name: "Front",
  48306. image: {
  48307. source: "./media/characters/pepper-purrloin/front.svg",
  48308. extra: 1141/1024,
  48309. bottom: 21/1162
  48310. }
  48311. },
  48312. },
  48313. [
  48314. {
  48315. name: "Normal",
  48316. height: math.unit(4 + 4/12, "feet"),
  48317. default: true
  48318. },
  48319. ]
  48320. ))
  48321. characterMakers.push(() => makeCharacter(
  48322. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48323. {
  48324. front: {
  48325. height: math.unit(6 + 2/12, "feet"),
  48326. name: "Front",
  48327. image: {
  48328. source: "./media/characters/raphael/front.svg",
  48329. extra: 1101/962,
  48330. bottom: 59/1160
  48331. }
  48332. },
  48333. },
  48334. [
  48335. {
  48336. name: "Normal",
  48337. height: math.unit(6 + 2/12, "feet"),
  48338. default: true
  48339. },
  48340. ]
  48341. ))
  48342. characterMakers.push(() => makeCharacter(
  48343. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48344. {
  48345. front: {
  48346. height: math.unit(6, "feet"),
  48347. weight: math.unit(150, "lb"),
  48348. name: "Front",
  48349. image: {
  48350. source: "./media/characters/victor-williams/front.svg",
  48351. extra: 1894/1825,
  48352. bottom: 67/1961
  48353. }
  48354. },
  48355. },
  48356. [
  48357. {
  48358. name: "Normal",
  48359. height: math.unit(6, "feet"),
  48360. default: true
  48361. },
  48362. ]
  48363. ))
  48364. characterMakers.push(() => makeCharacter(
  48365. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48366. {
  48367. front: {
  48368. height: math.unit(5 + 8/12, "feet"),
  48369. weight: math.unit(150, "lb"),
  48370. name: "Front",
  48371. image: {
  48372. source: "./media/characters/rachel/front.svg",
  48373. extra: 1902/1787,
  48374. bottom: 46/1948
  48375. }
  48376. },
  48377. },
  48378. [
  48379. {
  48380. name: "Base Height",
  48381. height: math.unit(5 + 8/12, "feet"),
  48382. default: true
  48383. },
  48384. {
  48385. name: "Macro",
  48386. height: math.unit(200, "feet")
  48387. },
  48388. {
  48389. name: "Mega Macro",
  48390. height: math.unit(1, "mile")
  48391. },
  48392. {
  48393. name: "Giga Macro",
  48394. height: math.unit(1500, "miles")
  48395. },
  48396. {
  48397. name: "Tera Macro",
  48398. height: math.unit(8000, "miles")
  48399. },
  48400. {
  48401. name: "Tera Macro+",
  48402. height: math.unit(2e5, "miles")
  48403. },
  48404. ]
  48405. ))
  48406. characterMakers.push(() => makeCharacter(
  48407. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48408. {
  48409. front: {
  48410. height: math.unit(6.5, "feet"),
  48411. name: "Front",
  48412. image: {
  48413. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48414. extra: 860/819,
  48415. bottom: 307/1167
  48416. }
  48417. },
  48418. back: {
  48419. height: math.unit(6.5, "feet"),
  48420. name: "Back",
  48421. image: {
  48422. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48423. extra: 880/837,
  48424. bottom: 395/1275
  48425. }
  48426. },
  48427. sleeping: {
  48428. height: math.unit(2.79, "feet"),
  48429. name: "Sleeping",
  48430. image: {
  48431. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48432. extra: 465/383,
  48433. bottom: 263/728
  48434. }
  48435. },
  48436. maw: {
  48437. height: math.unit(2.52, "feet"),
  48438. name: "Maw",
  48439. image: {
  48440. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48441. }
  48442. },
  48443. },
  48444. [
  48445. {
  48446. name: "Normal",
  48447. height: math.unit(6.5, "feet"),
  48448. default: true
  48449. },
  48450. ]
  48451. ))
  48452. characterMakers.push(() => makeCharacter(
  48453. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48454. {
  48455. front: {
  48456. height: math.unit(5, "feet"),
  48457. name: "Front",
  48458. image: {
  48459. source: "./media/characters/nova-nerium/front.svg",
  48460. extra: 1548/1392,
  48461. bottom: 374/1922
  48462. }
  48463. },
  48464. back: {
  48465. height: math.unit(5, "feet"),
  48466. name: "Back",
  48467. image: {
  48468. source: "./media/characters/nova-nerium/back.svg",
  48469. extra: 1658/1468,
  48470. bottom: 257/1915
  48471. }
  48472. },
  48473. },
  48474. [
  48475. {
  48476. name: "Normal",
  48477. height: math.unit(5, "feet"),
  48478. default: true
  48479. },
  48480. ]
  48481. ))
  48482. characterMakers.push(() => makeCharacter(
  48483. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48484. {
  48485. front: {
  48486. height: math.unit(5 + 4/12, "feet"),
  48487. name: "Front",
  48488. image: {
  48489. source: "./media/characters/ashe-pyriph/front.svg",
  48490. extra: 1935/1747,
  48491. bottom: 60/1995
  48492. }
  48493. },
  48494. },
  48495. [
  48496. {
  48497. name: "Normal",
  48498. height: math.unit(5 + 4/12, "feet"),
  48499. default: true
  48500. },
  48501. ]
  48502. ))
  48503. characterMakers.push(() => makeCharacter(
  48504. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48505. {
  48506. front: {
  48507. height: math.unit(8.7, "feet"),
  48508. name: "Front",
  48509. image: {
  48510. source: "./media/characters/flicker-wisp/front.svg",
  48511. extra: 1835/1613,
  48512. bottom: 449/2284
  48513. }
  48514. },
  48515. side: {
  48516. height: math.unit(8.7, "feet"),
  48517. name: "Side",
  48518. image: {
  48519. source: "./media/characters/flicker-wisp/side.svg",
  48520. extra: 1841/1642,
  48521. bottom: 336/2177
  48522. },
  48523. default: true
  48524. },
  48525. maw: {
  48526. height: math.unit(3.35, "feet"),
  48527. name: "Maw",
  48528. image: {
  48529. source: "./media/characters/flicker-wisp/maw.svg",
  48530. extra: 2338/1506,
  48531. bottom: 0/2338
  48532. }
  48533. },
  48534. ovipositor: {
  48535. height: math.unit(4.95, "feet"),
  48536. name: "Ovipositor",
  48537. image: {
  48538. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48539. }
  48540. },
  48541. egg: {
  48542. height: math.unit(0.385, "feet"),
  48543. weight: math.unit(2, "lb"),
  48544. name: "Egg",
  48545. image: {
  48546. source: "./media/characters/flicker-wisp/egg.svg"
  48547. }
  48548. },
  48549. },
  48550. [
  48551. {
  48552. name: "Normal",
  48553. height: math.unit(8.7, "feet"),
  48554. default: true
  48555. },
  48556. ]
  48557. ))
  48558. characterMakers.push(() => makeCharacter(
  48559. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48560. {
  48561. side: {
  48562. height: math.unit(11, "feet"),
  48563. name: "Side",
  48564. image: {
  48565. source: "./media/characters/faefnul/side.svg",
  48566. extra: 1100/1007,
  48567. bottom: 0/1100
  48568. }
  48569. },
  48570. },
  48571. [
  48572. {
  48573. name: "Normal",
  48574. height: math.unit(11, "feet"),
  48575. default: true
  48576. },
  48577. ]
  48578. ))
  48579. characterMakers.push(() => makeCharacter(
  48580. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48581. {
  48582. front: {
  48583. height: math.unit(6 + 2/12, "feet"),
  48584. name: "Front",
  48585. image: {
  48586. source: "./media/characters/shady/front.svg",
  48587. extra: 502/461,
  48588. bottom: 9/511
  48589. }
  48590. },
  48591. kneeling: {
  48592. height: math.unit(4.6, "feet"),
  48593. name: "Kneeling",
  48594. image: {
  48595. source: "./media/characters/shady/kneeling.svg",
  48596. extra: 1328/1219,
  48597. bottom: 117/1445
  48598. }
  48599. },
  48600. maw: {
  48601. height: math.unit(2, "feet"),
  48602. name: "Maw",
  48603. image: {
  48604. source: "./media/characters/shady/maw.svg"
  48605. }
  48606. },
  48607. },
  48608. [
  48609. {
  48610. name: "Nano",
  48611. height: math.unit(1, "mm")
  48612. },
  48613. {
  48614. name: "Micro",
  48615. height: math.unit(12, "mm")
  48616. },
  48617. {
  48618. name: "Tiny",
  48619. height: math.unit(3, "inches")
  48620. },
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(6 + 2/12, "feet"),
  48624. default: true
  48625. },
  48626. {
  48627. name: "Big",
  48628. height: math.unit(15, "feet")
  48629. },
  48630. {
  48631. name: "Macro",
  48632. height: math.unit(150, "feet")
  48633. },
  48634. {
  48635. name: "Titanic",
  48636. height: math.unit(500, "feet")
  48637. },
  48638. ]
  48639. ))
  48640. characterMakers.push(() => makeCharacter(
  48641. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48642. {
  48643. front: {
  48644. height: math.unit(12, "feet"),
  48645. name: "Front",
  48646. image: {
  48647. source: "./media/characters/fenrir/front.svg",
  48648. extra: 968/875,
  48649. bottom: 22/990
  48650. }
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Big",
  48656. height: math.unit(12, "feet"),
  48657. default: true
  48658. },
  48659. ]
  48660. ))
  48661. characterMakers.push(() => makeCharacter(
  48662. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48663. {
  48664. front: {
  48665. height: math.unit(5 + 4/12, "feet"),
  48666. name: "Front",
  48667. image: {
  48668. source: "./media/characters/makar/front.svg",
  48669. extra: 1181/1112,
  48670. bottom: 78/1259
  48671. }
  48672. },
  48673. },
  48674. [
  48675. {
  48676. name: "Normal",
  48677. height: math.unit(5 + 4/12, "feet"),
  48678. default: true
  48679. },
  48680. ]
  48681. ))
  48682. characterMakers.push(() => makeCharacter(
  48683. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48684. {
  48685. front: {
  48686. height: math.unit(5 + 7/12, "feet"),
  48687. name: "Front",
  48688. image: {
  48689. source: "./media/characters/callow/front.svg",
  48690. extra: 1482/1304,
  48691. bottom: 23/1505
  48692. }
  48693. },
  48694. back: {
  48695. height: math.unit(5 + 7/12, "feet"),
  48696. name: "Back",
  48697. image: {
  48698. source: "./media/characters/callow/back.svg",
  48699. extra: 1484/1296,
  48700. bottom: 25/1509
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Micro",
  48707. height: math.unit(3, "inches"),
  48708. default: true
  48709. },
  48710. {
  48711. name: "Normal",
  48712. height: math.unit(5 + 7/12, "feet")
  48713. },
  48714. ]
  48715. ))
  48716. characterMakers.push(() => makeCharacter(
  48717. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48718. {
  48719. front: {
  48720. height: math.unit(6 + 2/12, "feet"),
  48721. name: "Front",
  48722. image: {
  48723. source: "./media/characters/natel/front.svg",
  48724. extra: 1833/1692,
  48725. bottom: 166/1999
  48726. }
  48727. },
  48728. },
  48729. [
  48730. {
  48731. name: "Normal",
  48732. height: math.unit(6 + 2/12, "feet"),
  48733. default: true
  48734. },
  48735. ]
  48736. ))
  48737. characterMakers.push(() => makeCharacter(
  48738. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48739. {
  48740. front: {
  48741. height: math.unit(1.75, "meters"),
  48742. name: "Front",
  48743. image: {
  48744. source: "./media/characters/misu/front.svg",
  48745. extra: 1690/1558,
  48746. bottom: 234/1924
  48747. }
  48748. },
  48749. back: {
  48750. height: math.unit(1.75, "meters"),
  48751. name: "Back",
  48752. image: {
  48753. source: "./media/characters/misu/back.svg",
  48754. extra: 1762/1618,
  48755. bottom: 146/1908
  48756. }
  48757. },
  48758. frontNude: {
  48759. height: math.unit(1.75, "meters"),
  48760. name: "Front (Nude)",
  48761. image: {
  48762. source: "./media/characters/misu/front-nude.svg",
  48763. extra: 1690/1558,
  48764. bottom: 234/1924
  48765. }
  48766. },
  48767. backNude: {
  48768. height: math.unit(1.75, "meters"),
  48769. name: "Back (Nude)",
  48770. image: {
  48771. source: "./media/characters/misu/back-nude.svg",
  48772. extra: 1762/1618,
  48773. bottom: 146/1908
  48774. }
  48775. },
  48776. frontErect: {
  48777. height: math.unit(1.75, "meters"),
  48778. name: "Front (Erect)",
  48779. image: {
  48780. source: "./media/characters/misu/front-erect.svg",
  48781. extra: 1690/1558,
  48782. bottom: 234/1924
  48783. }
  48784. },
  48785. maw: {
  48786. height: math.unit(0.47, "meters"),
  48787. name: "Maw",
  48788. image: {
  48789. source: "./media/characters/misu/maw.svg"
  48790. }
  48791. },
  48792. head: {
  48793. height: math.unit(0.35, "meters"),
  48794. name: "Head",
  48795. image: {
  48796. source: "./media/characters/misu/head.svg"
  48797. }
  48798. },
  48799. rear: {
  48800. height: math.unit(0.47, "meters"),
  48801. name: "Rear",
  48802. image: {
  48803. source: "./media/characters/misu/rear.svg"
  48804. }
  48805. },
  48806. },
  48807. [
  48808. {
  48809. name: "Normal",
  48810. height: math.unit(1.75, "meters")
  48811. },
  48812. {
  48813. name: "Not good for the people",
  48814. height: math.unit(42, "meters")
  48815. },
  48816. {
  48817. name: "Not good for the neighborhood",
  48818. height: math.unit(135, "meters")
  48819. },
  48820. {
  48821. name: "Bit bigger problem",
  48822. height: math.unit(380, "meters"),
  48823. default: true
  48824. },
  48825. {
  48826. name: "Not good for the city",
  48827. height: math.unit(1.5, "km")
  48828. },
  48829. {
  48830. name: "Not good for the county",
  48831. height: math.unit(5.5, "km")
  48832. },
  48833. {
  48834. name: "Not good for the state",
  48835. height: math.unit(25, "km")
  48836. },
  48837. {
  48838. name: "Not good for the country",
  48839. height: math.unit(125, "km")
  48840. },
  48841. {
  48842. name: "Not good for the continent",
  48843. height: math.unit(2100, "km")
  48844. },
  48845. {
  48846. name: "Not good for the planet",
  48847. height: math.unit(35000, "km")
  48848. },
  48849. {
  48850. name: "Just no",
  48851. height: math.unit(8.5e18, "km")
  48852. },
  48853. ]
  48854. ))
  48855. characterMakers.push(() => makeCharacter(
  48856. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48857. {
  48858. front: {
  48859. height: math.unit(6.5, "feet"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/poppy/front.svg",
  48863. extra: 1878/1812,
  48864. bottom: 43/1921
  48865. }
  48866. },
  48867. feet: {
  48868. height: math.unit(1.06, "feet"),
  48869. name: "Feet",
  48870. image: {
  48871. source: "./media/characters/poppy/feet.svg",
  48872. extra: 1083/1083,
  48873. bottom: 87/1170
  48874. }
  48875. },
  48876. },
  48877. [
  48878. {
  48879. name: "Human",
  48880. height: math.unit(6.5, "feet")
  48881. },
  48882. {
  48883. name: "Default",
  48884. height: math.unit(300, "feet"),
  48885. default: true
  48886. },
  48887. {
  48888. name: "Huge",
  48889. height: math.unit(850, "feet")
  48890. },
  48891. {
  48892. name: "Mega",
  48893. height: math.unit(8000, "feet")
  48894. },
  48895. {
  48896. name: "Giga",
  48897. height: math.unit(300, "miles")
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48903. {
  48904. bipedal: {
  48905. height: math.unit(7, "feet"),
  48906. name: "Bipedal",
  48907. image: {
  48908. source: "./media/characters/zener/bipedal.svg",
  48909. extra: 874/805,
  48910. bottom: 109/983
  48911. }
  48912. },
  48913. quadrupedal: {
  48914. height: math.unit(4.64, "feet"),
  48915. name: "Quadrupedal",
  48916. image: {
  48917. source: "./media/characters/zener/quadrupedal.svg",
  48918. extra: 638/507,
  48919. bottom: 190/828
  48920. }
  48921. },
  48922. cock: {
  48923. height: math.unit(18, "inches"),
  48924. name: "Cock",
  48925. image: {
  48926. source: "./media/characters/zener/cock.svg"
  48927. }
  48928. },
  48929. },
  48930. [
  48931. {
  48932. name: "Normal",
  48933. height: math.unit(7, "feet"),
  48934. default: true
  48935. },
  48936. ]
  48937. ))
  48938. characterMakers.push(() => makeCharacter(
  48939. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48940. {
  48941. nude: {
  48942. height: math.unit(5 + 6/12, "feet"),
  48943. name: "Nude",
  48944. image: {
  48945. source: "./media/characters/charlie-dog/nude.svg",
  48946. extra: 768/734,
  48947. bottom: 26/794
  48948. }
  48949. },
  48950. dressed: {
  48951. height: math.unit(5 + 6/12, "feet"),
  48952. name: "Dressed",
  48953. image: {
  48954. source: "./media/characters/charlie-dog/dressed.svg",
  48955. extra: 768/734,
  48956. bottom: 26/794
  48957. }
  48958. },
  48959. },
  48960. [
  48961. {
  48962. name: "Normal",
  48963. height: math.unit(5 + 6/12, "feet"),
  48964. default: true
  48965. },
  48966. ]
  48967. ))
  48968. characterMakers.push(() => makeCharacter(
  48969. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48970. {
  48971. front: {
  48972. height: math.unit(6 + 4/12, "feet"),
  48973. name: "Front",
  48974. image: {
  48975. source: "./media/characters/ir'istrasz/front.svg",
  48976. extra: 1014/977,
  48977. bottom: 65/1079
  48978. }
  48979. },
  48980. back: {
  48981. height: math.unit(6 + 4/12, "feet"),
  48982. name: "Back",
  48983. image: {
  48984. source: "./media/characters/ir'istrasz/back.svg",
  48985. extra: 1024/992,
  48986. bottom: 34/1058
  48987. }
  48988. },
  48989. },
  48990. [
  48991. {
  48992. name: "Normal",
  48993. height: math.unit(6 + 4/12, "feet"),
  48994. default: true
  48995. },
  48996. ]
  48997. ))
  48998. characterMakers.push(() => makeCharacter(
  48999. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49000. {
  49001. front: {
  49002. height: math.unit(5 + 8/12, "feet"),
  49003. name: "Front",
  49004. image: {
  49005. source: "./media/characters/dee-ditto/front.svg",
  49006. extra: 1874/1785,
  49007. bottom: 68/1942
  49008. }
  49009. },
  49010. back: {
  49011. height: math.unit(5 + 8/12, "feet"),
  49012. name: "Back",
  49013. image: {
  49014. source: "./media/characters/dee-ditto/back.svg",
  49015. extra: 1870/1783,
  49016. bottom: 77/1947
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Normal",
  49023. height: math.unit(5 + 8/12, "feet"),
  49024. default: true
  49025. },
  49026. ]
  49027. ))
  49028. characterMakers.push(() => makeCharacter(
  49029. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49030. {
  49031. front: {
  49032. height: math.unit(7 + 6/12, "feet"),
  49033. name: "Front",
  49034. image: {
  49035. source: "./media/characters/fey/front.svg",
  49036. extra: 995/979,
  49037. bottom: 30/1025
  49038. }
  49039. },
  49040. back: {
  49041. height: math.unit(7 + 6/12, "feet"),
  49042. name: "Back",
  49043. image: {
  49044. source: "./media/characters/fey/back.svg",
  49045. extra: 1079/1008,
  49046. bottom: 5/1084
  49047. }
  49048. },
  49049. dressed: {
  49050. height: math.unit(7 + 6/12, "feet"),
  49051. name: "Dressed",
  49052. image: {
  49053. source: "./media/characters/fey/dressed.svg",
  49054. extra: 995/979,
  49055. bottom: 30/1025
  49056. }
  49057. },
  49058. },
  49059. [
  49060. {
  49061. name: "Normal",
  49062. height: math.unit(7 + 6/12, "feet"),
  49063. default: true
  49064. },
  49065. ]
  49066. ))
  49067. characterMakers.push(() => makeCharacter(
  49068. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49069. {
  49070. standing: {
  49071. height: math.unit(17, "feet"),
  49072. name: "Standing",
  49073. image: {
  49074. source: "./media/characters/aster/standing.svg",
  49075. extra: 1798/1598,
  49076. bottom: 117/1915
  49077. }
  49078. },
  49079. },
  49080. [
  49081. {
  49082. name: "Normal",
  49083. height: math.unit(17, "feet"),
  49084. default: true
  49085. },
  49086. {
  49087. name: "Homewrecker",
  49088. height: math.unit(95, "feet")
  49089. },
  49090. {
  49091. name: "Planet Devourer",
  49092. height: math.unit(1008000, "miles")
  49093. },
  49094. ]
  49095. ))
  49096. characterMakers.push(() => makeCharacter(
  49097. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49098. {
  49099. front: {
  49100. height: math.unit(6 + 5/12, "feet"),
  49101. weight: math.unit(265, "lb"),
  49102. name: "Front",
  49103. image: {
  49104. source: "./media/characters/devon-childs/front.svg",
  49105. extra: 1795/1721,
  49106. bottom: 41/1836
  49107. }
  49108. },
  49109. side: {
  49110. height: math.unit(6 + 5/12, "feet"),
  49111. weight: math.unit(265, "lb"),
  49112. name: "Side",
  49113. image: {
  49114. source: "./media/characters/devon-childs/side.svg",
  49115. extra: 1812/1738,
  49116. bottom: 30/1842
  49117. }
  49118. },
  49119. back: {
  49120. height: math.unit(6 + 5/12, "feet"),
  49121. weight: math.unit(265, "lb"),
  49122. name: "Back",
  49123. image: {
  49124. source: "./media/characters/devon-childs/back.svg",
  49125. extra: 1808/1735,
  49126. bottom: 23/1831
  49127. }
  49128. },
  49129. hand: {
  49130. height: math.unit(1.464, "feet"),
  49131. name: "Hand",
  49132. image: {
  49133. source: "./media/characters/devon-childs/hand.svg"
  49134. }
  49135. },
  49136. foot: {
  49137. height: math.unit(1.6, "feet"),
  49138. name: "Foot",
  49139. image: {
  49140. source: "./media/characters/devon-childs/foot.svg"
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Micro",
  49147. height: math.unit(7, "cm")
  49148. },
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(6 + 5/12, "feet"),
  49152. default: true
  49153. },
  49154. {
  49155. name: "Macro",
  49156. height: math.unit(154, "feet")
  49157. },
  49158. ]
  49159. ))
  49160. characterMakers.push(() => makeCharacter(
  49161. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49162. {
  49163. front: {
  49164. height: math.unit(6, "feet"),
  49165. weight: math.unit(180, "lb"),
  49166. name: "Front",
  49167. image: {
  49168. source: "./media/characters/lydemox-vir/front.svg",
  49169. extra: 1632/1435,
  49170. bottom: 58/1690
  49171. }
  49172. },
  49173. frontSFW: {
  49174. height: math.unit(6, "feet"),
  49175. weight: math.unit(180, "lb"),
  49176. name: "Front (SFW)",
  49177. image: {
  49178. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49179. extra: 1632/1435,
  49180. bottom: 58/1690
  49181. }
  49182. },
  49183. back: {
  49184. height: math.unit(6, "feet"),
  49185. weight: math.unit(180, "lb"),
  49186. name: "Back",
  49187. image: {
  49188. source: "./media/characters/lydemox-vir/back.svg",
  49189. extra: 1593/1408,
  49190. bottom: 31/1624
  49191. }
  49192. },
  49193. paw: {
  49194. height: math.unit(1.85, "feet"),
  49195. name: "Paw",
  49196. image: {
  49197. source: "./media/characters/lydemox-vir/paw.svg"
  49198. }
  49199. },
  49200. dick: {
  49201. height: math.unit(1.8, "feet"),
  49202. name: "Dick",
  49203. image: {
  49204. source: "./media/characters/lydemox-vir/dick.svg"
  49205. }
  49206. },
  49207. },
  49208. [
  49209. {
  49210. name: "Macro",
  49211. height: math.unit(100, "feet"),
  49212. default: true
  49213. },
  49214. {
  49215. name: "Teramacro",
  49216. height: math.unit(1, "earth")
  49217. },
  49218. {
  49219. name: "Planetary",
  49220. height: math.unit(20, "earths")
  49221. },
  49222. ]
  49223. ))
  49224. characterMakers.push(() => makeCharacter(
  49225. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49226. {
  49227. front: {
  49228. height: math.unit(15 + 8/12, "feet"),
  49229. weight: math.unit(1237, "kg"),
  49230. name: "Front",
  49231. image: {
  49232. source: "./media/characters/mia/front.svg",
  49233. extra: 1573/1446,
  49234. bottom: 58/1631
  49235. }
  49236. },
  49237. },
  49238. [
  49239. {
  49240. name: "Small",
  49241. height: math.unit(9 + 5/12, "feet")
  49242. },
  49243. {
  49244. name: "Normal",
  49245. height: math.unit(15 + 8/12, "feet"),
  49246. default: true
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49252. {
  49253. front: {
  49254. height: math.unit(10 + 6/12, "feet"),
  49255. weight: math.unit(1.3, "tons"),
  49256. name: "Front",
  49257. image: {
  49258. source: "./media/characters/mr-graves/front.svg",
  49259. extra: 1779/1695,
  49260. bottom: 198/1977
  49261. }
  49262. },
  49263. },
  49264. [
  49265. {
  49266. name: "Normal",
  49267. height: math.unit(10 + 6 /12, "feet"),
  49268. default: true
  49269. },
  49270. ]
  49271. ))
  49272. characterMakers.push(() => makeCharacter(
  49273. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49274. {
  49275. dressedFront: {
  49276. height: math.unit(5 + 8/12, "feet"),
  49277. weight: math.unit(125, "lb"),
  49278. name: "Dressed (Front)",
  49279. image: {
  49280. source: "./media/characters/jess/dressed-front.svg",
  49281. extra: 1176/1152,
  49282. bottom: 42/1218
  49283. }
  49284. },
  49285. dressedSide: {
  49286. height: math.unit(5 + 8/12, "feet"),
  49287. weight: math.unit(125, "lb"),
  49288. name: "Dressed (Side)",
  49289. image: {
  49290. source: "./media/characters/jess/dressed-side.svg",
  49291. extra: 1204/1190,
  49292. bottom: 6/1210
  49293. }
  49294. },
  49295. nudeFront: {
  49296. height: math.unit(5 + 8/12, "feet"),
  49297. weight: math.unit(125, "lb"),
  49298. name: "Nude (Front)",
  49299. image: {
  49300. source: "./media/characters/jess/nude-front.svg",
  49301. extra: 1176/1152,
  49302. bottom: 42/1218
  49303. }
  49304. },
  49305. nudeSide: {
  49306. height: math.unit(5 + 8/12, "feet"),
  49307. weight: math.unit(125, "lb"),
  49308. name: "Nude (Side)",
  49309. image: {
  49310. source: "./media/characters/jess/nude-side.svg",
  49311. extra: 1204/1190,
  49312. bottom: 6/1210
  49313. }
  49314. },
  49315. organsFront: {
  49316. height: math.unit(2.83799342105, "feet"),
  49317. name: "Organs (Front)",
  49318. image: {
  49319. source: "./media/characters/jess/organs-front.svg"
  49320. }
  49321. },
  49322. organsSide: {
  49323. height: math.unit(2.64225290474, "feet"),
  49324. name: "Organs (Side)",
  49325. image: {
  49326. source: "./media/characters/jess/organs-side.svg"
  49327. }
  49328. },
  49329. digestiveTractFront: {
  49330. height: math.unit(2.8106580871, "feet"),
  49331. name: "Digestive Tract (Front)",
  49332. image: {
  49333. source: "./media/characters/jess/digestive-tract-front.svg"
  49334. }
  49335. },
  49336. digestiveTractSide: {
  49337. height: math.unit(2.54365045014, "feet"),
  49338. name: "Digestive Tract (Side)",
  49339. image: {
  49340. source: "./media/characters/jess/digestive-tract-side.svg"
  49341. }
  49342. },
  49343. respiratorySystemFront: {
  49344. height: math.unit(1.11196233456, "feet"),
  49345. name: "Respiratory System (Front)",
  49346. image: {
  49347. source: "./media/characters/jess/respiratory-system-front.svg"
  49348. }
  49349. },
  49350. respiratorySystemSide: {
  49351. height: math.unit(0.89327966297, "feet"),
  49352. name: "Respiratory System (Side)",
  49353. image: {
  49354. source: "./media/characters/jess/respiratory-system-side.svg"
  49355. }
  49356. },
  49357. urinaryTractFront: {
  49358. height: math.unit(1.16126356186, "feet"),
  49359. name: "Urinary Tract (Front)",
  49360. image: {
  49361. source: "./media/characters/jess/urinary-tract-front.svg"
  49362. }
  49363. },
  49364. urinaryTractSide: {
  49365. height: math.unit(1.20910039627, "feet"),
  49366. name: "Urinary Tract (Side)",
  49367. image: {
  49368. source: "./media/characters/jess/urinary-tract-side.svg"
  49369. }
  49370. },
  49371. reproductiveOrgansFront: {
  49372. height: math.unit(0.48422591566, "feet"),
  49373. name: "Reproductive Organs (Front)",
  49374. image: {
  49375. source: "./media/characters/jess/reproductive-organs-front.svg"
  49376. }
  49377. },
  49378. reproductiveOrgansSide: {
  49379. height: math.unit(0.61553314481, "feet"),
  49380. name: "Reproductive Organs (Side)",
  49381. image: {
  49382. source: "./media/characters/jess/reproductive-organs-side.svg"
  49383. }
  49384. },
  49385. breastsFront: {
  49386. height: math.unit(0.47690395121, "feet"),
  49387. name: "Breasts (Front)",
  49388. image: {
  49389. source: "./media/characters/jess/breasts-front.svg"
  49390. }
  49391. },
  49392. breastsSide: {
  49393. height: math.unit(0.30556998307, "feet"),
  49394. name: "Breasts (Side)",
  49395. image: {
  49396. source: "./media/characters/jess/breasts-side.svg"
  49397. }
  49398. },
  49399. heartFront: {
  49400. height: math.unit(0.53011022622, "feet"),
  49401. name: "Heart (Front)",
  49402. image: {
  49403. source: "./media/characters/jess/heart-front.svg"
  49404. }
  49405. },
  49406. heartSide: {
  49407. height: math.unit(0.51790695213, "feet"),
  49408. name: "Heart (Side)",
  49409. image: {
  49410. source: "./media/characters/jess/heart-side.svg"
  49411. }
  49412. },
  49413. earsAndNoseFront: {
  49414. height: math.unit(0.29385483995, "feet"),
  49415. name: "Ears and Nose (Front)",
  49416. image: {
  49417. source: "./media/characters/jess/ears-and-nose-front.svg"
  49418. }
  49419. },
  49420. earsAndNoseSide: {
  49421. height: math.unit(0.18109658741, "feet"),
  49422. name: "Ears and Nose (Side)",
  49423. image: {
  49424. source: "./media/characters/jess/ears-and-nose-side.svg"
  49425. }
  49426. },
  49427. },
  49428. [
  49429. {
  49430. name: "Normal",
  49431. height: math.unit(5 + 8/12, "feet"),
  49432. default: true
  49433. },
  49434. ]
  49435. ))
  49436. characterMakers.push(() => makeCharacter(
  49437. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49438. {
  49439. front: {
  49440. height: math.unit(6, "feet"),
  49441. weight: math.unit(6.64467e-7, "grams"),
  49442. name: "Front",
  49443. image: {
  49444. source: "./media/characters/wimpering/front.svg",
  49445. extra: 597/587,
  49446. bottom: 34/631
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Micro",
  49453. height: math.unit(0.4, "mm"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(5 + 2/12, "feet"),
  49463. weight: math.unit(110, "lb"),
  49464. name: "Front",
  49465. image: {
  49466. source: "./media/characters/keltre/front.svg",
  49467. extra: 1099/1057,
  49468. bottom: 22/1121
  49469. }
  49470. },
  49471. back: {
  49472. height: math.unit(5 + 2/12, "feet"),
  49473. weight: math.unit(110, "lb"),
  49474. name: "Back",
  49475. image: {
  49476. source: "./media/characters/keltre/back.svg",
  49477. extra: 1095/1053,
  49478. bottom: 17/1112
  49479. }
  49480. },
  49481. dressed: {
  49482. height: math.unit(5 + 2/12, "feet"),
  49483. weight: math.unit(110, "lb"),
  49484. name: "Dressed",
  49485. image: {
  49486. source: "./media/characters/keltre/dressed.svg",
  49487. extra: 1099/1057,
  49488. bottom: 22/1121
  49489. }
  49490. },
  49491. winter: {
  49492. height: math.unit(5 + 2/12, "feet"),
  49493. weight: math.unit(110, "lb"),
  49494. name: "Winter",
  49495. image: {
  49496. source: "./media/characters/keltre/winter.svg",
  49497. extra: 1099/1057,
  49498. bottom: 22/1121
  49499. }
  49500. },
  49501. head: {
  49502. height: math.unit(1.61 * 0.86, "feet"),
  49503. name: "Head",
  49504. image: {
  49505. source: "./media/characters/keltre/head.svg",
  49506. extra: 534/421,
  49507. bottom: 0/534
  49508. }
  49509. },
  49510. hand: {
  49511. height: math.unit(1.3 * 0.86, "feet"),
  49512. name: "Hand",
  49513. image: {
  49514. source: "./media/characters/keltre/hand.svg"
  49515. }
  49516. },
  49517. foot: {
  49518. height: math.unit(1.8 * 0.86, "feet"),
  49519. name: "Foot",
  49520. image: {
  49521. source: "./media/characters/keltre/foot.svg"
  49522. }
  49523. },
  49524. },
  49525. [
  49526. {
  49527. name: "Fine",
  49528. height: math.unit(1, "inch")
  49529. },
  49530. {
  49531. name: "Dimnutive",
  49532. height: math.unit(4, "inches")
  49533. },
  49534. {
  49535. name: "Tiny",
  49536. height: math.unit(1, "foot")
  49537. },
  49538. {
  49539. name: "Small",
  49540. height: math.unit(3, "feet")
  49541. },
  49542. {
  49543. name: "Normal",
  49544. height: math.unit(5 + 2/12, "feet"),
  49545. default: true
  49546. },
  49547. ]
  49548. ))
  49549. characterMakers.push(() => makeCharacter(
  49550. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49551. {
  49552. front: {
  49553. height: math.unit(6 + 2/12, "feet"),
  49554. name: "Front",
  49555. image: {
  49556. source: "./media/characters/nox/front.svg",
  49557. extra: 1917/1830,
  49558. bottom: 74/1991
  49559. }
  49560. },
  49561. back: {
  49562. height: math.unit(6 + 2/12, "feet"),
  49563. name: "Back",
  49564. image: {
  49565. source: "./media/characters/nox/back.svg",
  49566. extra: 1896/1815,
  49567. bottom: 21/1917
  49568. }
  49569. },
  49570. head: {
  49571. height: math.unit(1.1, "feet"),
  49572. name: "Head",
  49573. image: {
  49574. source: "./media/characters/nox/head.svg",
  49575. extra: 874/704,
  49576. bottom: 0/874
  49577. }
  49578. },
  49579. tattoo: {
  49580. height: math.unit(0.729, "feet"),
  49581. name: "Tattoo",
  49582. image: {
  49583. source: "./media/characters/nox/tattoo.svg"
  49584. }
  49585. },
  49586. },
  49587. [
  49588. {
  49589. name: "Normal",
  49590. height: math.unit(6 + 2/12, "feet")
  49591. },
  49592. {
  49593. name: "Gigamacro",
  49594. height: math.unit(2, "earths"),
  49595. default: true
  49596. },
  49597. {
  49598. name: "Cosmic",
  49599. height: math.unit(867, "yottameters")
  49600. },
  49601. ]
  49602. ))
  49603. characterMakers.push(() => makeCharacter(
  49604. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49605. {
  49606. front: {
  49607. height: math.unit(6, "feet"),
  49608. weight: math.unit(150, "lb"),
  49609. name: "Front",
  49610. image: {
  49611. source: "./media/characters/caspian/front.svg",
  49612. extra: 1443/1359,
  49613. bottom: 0/1443
  49614. }
  49615. },
  49616. back: {
  49617. height: math.unit(6, "feet"),
  49618. weight: math.unit(150, "lb"),
  49619. name: "Back",
  49620. image: {
  49621. source: "./media/characters/caspian/back.svg",
  49622. extra: 1379/1309,
  49623. bottom: 0/1379
  49624. }
  49625. },
  49626. head: {
  49627. height: math.unit(0.9, "feet"),
  49628. name: "Head",
  49629. image: {
  49630. source: "./media/characters/caspian/head.svg",
  49631. extra: 692/492,
  49632. bottom: 0/692
  49633. }
  49634. },
  49635. headAlt: {
  49636. height: math.unit(0.95, "feet"),
  49637. name: "Head (Alt)",
  49638. image: {
  49639. source: "./media/characters/caspian/head-alt.svg",
  49640. extra: 668/508,
  49641. bottom: 0/668
  49642. }
  49643. },
  49644. hand: {
  49645. height: math.unit(0.8, "feet"),
  49646. name: "Hand",
  49647. image: {
  49648. source: "./media/characters/caspian/hand.svg"
  49649. }
  49650. },
  49651. paw: {
  49652. height: math.unit(0.95, "feet"),
  49653. name: "Paw",
  49654. image: {
  49655. source: "./media/characters/caspian/paw.svg"
  49656. }
  49657. },
  49658. },
  49659. [
  49660. {
  49661. name: "Normal",
  49662. height: math.unit(162, "feet"),
  49663. default: true
  49664. },
  49665. ]
  49666. ))
  49667. characterMakers.push(() => makeCharacter(
  49668. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49669. {
  49670. front: {
  49671. height: math.unit(6, "feet"),
  49672. name: "Front",
  49673. image: {
  49674. source: "./media/characters/myra-aisling/front.svg",
  49675. extra: 1268/1166,
  49676. bottom: 73/1341
  49677. }
  49678. },
  49679. back: {
  49680. height: math.unit(6, "feet"),
  49681. name: "Back",
  49682. image: {
  49683. source: "./media/characters/myra-aisling/back.svg",
  49684. extra: 1249/1149,
  49685. bottom: 79/1328
  49686. }
  49687. },
  49688. dressed: {
  49689. height: math.unit(6, "feet"),
  49690. name: "Dressed",
  49691. image: {
  49692. source: "./media/characters/myra-aisling/dressed.svg",
  49693. extra: 1290/1189,
  49694. bottom: 47/1337
  49695. }
  49696. },
  49697. hand: {
  49698. height: math.unit(1.1, "feet"),
  49699. name: "Hand",
  49700. image: {
  49701. source: "./media/characters/myra-aisling/hand.svg"
  49702. }
  49703. },
  49704. paw: {
  49705. height: math.unit(1.23, "feet"),
  49706. name: "Paw",
  49707. image: {
  49708. source: "./media/characters/myra-aisling/paw.svg"
  49709. }
  49710. },
  49711. },
  49712. [
  49713. {
  49714. name: "Normal",
  49715. height: math.unit(160, "feet"),
  49716. default: true
  49717. },
  49718. ]
  49719. ))
  49720. characterMakers.push(() => makeCharacter(
  49721. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49722. {
  49723. front: {
  49724. height: math.unit(6, "feet"),
  49725. name: "Front",
  49726. image: {
  49727. source: "./media/characters/tenley-sidero/front.svg",
  49728. extra: 1365/1276,
  49729. bottom: 47/1412
  49730. }
  49731. },
  49732. back: {
  49733. height: math.unit(6, "feet"),
  49734. name: "Back",
  49735. image: {
  49736. source: "./media/characters/tenley-sidero/back.svg",
  49737. extra: 1383/1283,
  49738. bottom: 35/1418
  49739. }
  49740. },
  49741. dressed: {
  49742. height: math.unit(6, "feet"),
  49743. name: "Dressed",
  49744. image: {
  49745. source: "./media/characters/tenley-sidero/dressed.svg",
  49746. extra: 1364/1275,
  49747. bottom: 42/1406
  49748. }
  49749. },
  49750. head: {
  49751. height: math.unit(1.47, "feet"),
  49752. name: "Head",
  49753. image: {
  49754. source: "./media/characters/tenley-sidero/head.svg",
  49755. extra: 610/490,
  49756. bottom: 0/610
  49757. }
  49758. },
  49759. },
  49760. [
  49761. {
  49762. name: "Normal",
  49763. height: math.unit(154, "feet"),
  49764. default: true
  49765. },
  49766. ]
  49767. ))
  49768. characterMakers.push(() => makeCharacter(
  49769. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49770. {
  49771. front: {
  49772. height: math.unit(5, "inches"),
  49773. name: "Front",
  49774. image: {
  49775. source: "./media/characters/mallory/front.svg",
  49776. extra: 1919/1678,
  49777. bottom: 29/1948
  49778. }
  49779. },
  49780. hand: {
  49781. height: math.unit(0.73, "inches"),
  49782. name: "Hand",
  49783. image: {
  49784. source: "./media/characters/mallory/hand.svg"
  49785. }
  49786. },
  49787. paw: {
  49788. height: math.unit(0.68, "inches"),
  49789. name: "Paw",
  49790. image: {
  49791. source: "./media/characters/mallory/paw.svg"
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Small",
  49798. height: math.unit(5, "inches"),
  49799. default: true
  49800. },
  49801. ]
  49802. ))
  49803. characterMakers.push(() => makeCharacter(
  49804. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49805. {
  49806. naked: {
  49807. height: math.unit(6, "feet"),
  49808. name: "Naked",
  49809. image: {
  49810. source: "./media/characters/mab/naked.svg",
  49811. extra: 1855/1757,
  49812. bottom: 208/2063
  49813. }
  49814. },
  49815. outside: {
  49816. height: math.unit(6, "feet"),
  49817. name: "Outside",
  49818. image: {
  49819. source: "./media/characters/mab/outside.svg",
  49820. extra: 1855/1757,
  49821. bottom: 208/2063
  49822. }
  49823. },
  49824. party: {
  49825. height: math.unit(6, "feet"),
  49826. name: "Party",
  49827. image: {
  49828. source: "./media/characters/mab/party.svg",
  49829. extra: 1855/1757,
  49830. bottom: 208/2063
  49831. }
  49832. },
  49833. },
  49834. [
  49835. {
  49836. name: "Normal",
  49837. height: math.unit(165, "feet"),
  49838. default: true
  49839. },
  49840. ]
  49841. ))
  49842. characterMakers.push(() => makeCharacter(
  49843. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49844. {
  49845. feral: {
  49846. height: math.unit(12, "feet"),
  49847. weight: math.unit(20000, "lb"),
  49848. name: "Side",
  49849. image: {
  49850. source: "./media/characters/winter/feral.svg",
  49851. extra: 1286/943,
  49852. bottom: 112/1398
  49853. },
  49854. form: "feral",
  49855. default: true
  49856. },
  49857. feralNsfw: {
  49858. height: math.unit(12, "feet"),
  49859. weight: math.unit(20000, "lb"),
  49860. name: "Side (NSFW)",
  49861. image: {
  49862. source: "./media/characters/winter/feral-nsfw.svg",
  49863. extra: 1286/943,
  49864. bottom: 112/1398
  49865. },
  49866. form: "feral"
  49867. },
  49868. dick: {
  49869. height: math.unit(3.79, "feet"),
  49870. name: "Dick",
  49871. image: {
  49872. source: "./media/characters/winter/dick.svg"
  49873. },
  49874. form: "feral"
  49875. },
  49876. anthro: {
  49877. height: math.unit(12, "feet"),
  49878. weight: math.unit(10, "tons"),
  49879. name: "Anthro",
  49880. image: {
  49881. source: "./media/characters/winter/anthro.svg",
  49882. extra: 1701/1553,
  49883. bottom: 64/1765
  49884. },
  49885. form: "anthro",
  49886. default: true
  49887. },
  49888. },
  49889. [
  49890. {
  49891. name: "Big",
  49892. height: math.unit(12, "feet"),
  49893. default: true,
  49894. form: "feral"
  49895. },
  49896. {
  49897. name: "Big",
  49898. height: math.unit(12, "feet"),
  49899. default: true,
  49900. form: "anthro"
  49901. },
  49902. ],
  49903. {
  49904. "feral": {
  49905. name: "Feral",
  49906. default: true
  49907. },
  49908. "anthro": {
  49909. name: "Anthro"
  49910. }
  49911. }
  49912. ))
  49913. characterMakers.push(() => makeCharacter(
  49914. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49915. {
  49916. front: {
  49917. height: math.unit(4.1, "inches"),
  49918. name: "Front",
  49919. image: {
  49920. source: "./media/characters/alto/front.svg",
  49921. extra: 736/627,
  49922. bottom: 90/826
  49923. }
  49924. },
  49925. },
  49926. [
  49927. {
  49928. name: "Normal",
  49929. height: math.unit(4.1, "inches"),
  49930. default: true
  49931. },
  49932. ]
  49933. ))
  49934. characterMakers.push(() => makeCharacter(
  49935. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49936. {
  49937. sitting: {
  49938. height: math.unit(3, "feet"),
  49939. name: "Sitting",
  49940. image: {
  49941. source: "./media/characters/ratstrid-v/sitting.svg",
  49942. extra: 355/310,
  49943. bottom: 136/491
  49944. }
  49945. },
  49946. },
  49947. [
  49948. {
  49949. name: "Normal",
  49950. height: math.unit(3, "feet"),
  49951. default: true
  49952. },
  49953. ]
  49954. ))
  49955. characterMakers.push(() => makeCharacter(
  49956. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49957. {
  49958. back: {
  49959. height: math.unit(6, "feet"),
  49960. weight: math.unit(350, "lb"),
  49961. name: "Back",
  49962. image: {
  49963. source: "./media/characters/siz/back.svg",
  49964. extra: 1449/1274,
  49965. bottom: 13/1462
  49966. }
  49967. },
  49968. },
  49969. [
  49970. {
  49971. name: "Over-Overcompressed",
  49972. height: math.unit(8, "feet")
  49973. },
  49974. {
  49975. name: "Overcompressed",
  49976. height: math.unit(32, "feet")
  49977. },
  49978. {
  49979. name: "Compressed",
  49980. height: math.unit(128, "feet"),
  49981. default: true
  49982. },
  49983. {
  49984. name: "Half-Compressed",
  49985. height: math.unit(512, "feet")
  49986. },
  49987. {
  49988. name: "Quarter-Compressed",
  49989. height: math.unit(2048, "feet")
  49990. },
  49991. {
  49992. name: "Uncompressed?",
  49993. height: math.unit(8192, "feet")
  49994. },
  49995. ]
  49996. ))
  49997. characterMakers.push(() => makeCharacter(
  49998. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49999. {
  50000. front: {
  50001. height: math.unit(5 + 9/12, "feet"),
  50002. weight: math.unit(150, "lb"),
  50003. name: "Front",
  50004. image: {
  50005. source: "./media/characters/ven/front.svg",
  50006. extra: 1372/1320,
  50007. bottom: 73/1445
  50008. }
  50009. },
  50010. side: {
  50011. height: math.unit(5 + 9/12, "feet"),
  50012. weight: math.unit(1150, "lb"),
  50013. name: "Side",
  50014. image: {
  50015. source: "./media/characters/ven/side.svg",
  50016. extra: 1119/1070,
  50017. bottom: 42/1161
  50018. },
  50019. default: true
  50020. },
  50021. },
  50022. [
  50023. {
  50024. name: "Normal",
  50025. height: math.unit(5 + 9/12, "feet"),
  50026. default: true
  50027. },
  50028. ]
  50029. ))
  50030. characterMakers.push(() => makeCharacter(
  50031. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50032. {
  50033. front: {
  50034. height: math.unit(12, "feet"),
  50035. weight: math.unit(1000, "kg"),
  50036. name: "Front",
  50037. image: {
  50038. source: "./media/characters/maple/front.svg",
  50039. extra: 1193/1081,
  50040. bottom: 22/1215
  50041. }
  50042. },
  50043. },
  50044. [
  50045. {
  50046. name: "Compressed",
  50047. height: math.unit(7, "feet")
  50048. },
  50049. {
  50050. name: "Normal",
  50051. height: math.unit(12, "feet"),
  50052. default: true
  50053. },
  50054. ]
  50055. ))
  50056. characterMakers.push(() => makeCharacter(
  50057. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50058. {
  50059. front: {
  50060. height: math.unit(9, "feet"),
  50061. weight: math.unit(1500, "lb"),
  50062. name: "Front",
  50063. image: {
  50064. source: "./media/characters/nora/front.svg",
  50065. extra: 1348/1286,
  50066. bottom: 218/1566
  50067. }
  50068. },
  50069. erect: {
  50070. height: math.unit(9, "feet"),
  50071. weight: math.unit(11500, "lb"),
  50072. name: "Erect",
  50073. image: {
  50074. source: "./media/characters/nora/erect.svg",
  50075. extra: 1488/1433,
  50076. bottom: 133/1621
  50077. }
  50078. },
  50079. },
  50080. [
  50081. {
  50082. name: "Normal",
  50083. height: math.unit(9, "feet"),
  50084. default: true
  50085. },
  50086. ]
  50087. ))
  50088. characterMakers.push(() => makeCharacter(
  50089. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50090. {
  50091. front: {
  50092. height: math.unit(25, "feet"),
  50093. weight: math.unit(27500, "lb"),
  50094. name: "Front",
  50095. image: {
  50096. source: "./media/characters/north-caudin/front.svg",
  50097. extra: 1184/1082,
  50098. bottom: 23/1207
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Compressed",
  50105. height: math.unit(10, "feet")
  50106. },
  50107. {
  50108. name: "Normal",
  50109. height: math.unit(25, "feet"),
  50110. default: true
  50111. },
  50112. ]
  50113. ))
  50114. characterMakers.push(() => makeCharacter(
  50115. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50116. {
  50117. front: {
  50118. height: math.unit(9, "feet"),
  50119. weight: math.unit(1250, "lb"),
  50120. name: "Front",
  50121. image: {
  50122. source: "./media/characters/merrian/front.svg",
  50123. extra: 2393/2304,
  50124. bottom: 40/2433
  50125. }
  50126. },
  50127. },
  50128. [
  50129. {
  50130. name: "Normal",
  50131. height: math.unit(9, "feet"),
  50132. default: true
  50133. },
  50134. ]
  50135. ))
  50136. characterMakers.push(() => makeCharacter(
  50137. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50138. {
  50139. front: {
  50140. height: math.unit(9, "feet"),
  50141. weight: math.unit(1000, "lb"),
  50142. name: "Front",
  50143. image: {
  50144. source: "./media/characters/hazel/front.svg",
  50145. extra: 2351/2298,
  50146. bottom: 38/2389
  50147. }
  50148. },
  50149. },
  50150. [
  50151. {
  50152. name: "Normal",
  50153. height: math.unit(9, "feet"),
  50154. default: true
  50155. },
  50156. ]
  50157. ))
  50158. characterMakers.push(() => makeCharacter(
  50159. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50160. {
  50161. front: {
  50162. height: math.unit(13, "feet"),
  50163. weight: math.unit(3200, "lb"),
  50164. name: "Front",
  50165. image: {
  50166. source: "./media/characters/emma/front.svg",
  50167. extra: 2263/2029,
  50168. bottom: 68/2331
  50169. }
  50170. },
  50171. },
  50172. [
  50173. {
  50174. name: "Normal",
  50175. height: math.unit(13, "feet"),
  50176. default: true
  50177. },
  50178. ]
  50179. ))
  50180. characterMakers.push(() => makeCharacter(
  50181. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50182. {
  50183. front: {
  50184. height: math.unit(11 + 9/12, "feet"),
  50185. weight: math.unit(2500, "lb"),
  50186. name: "Front",
  50187. image: {
  50188. source: "./media/characters/ilumina/front.svg",
  50189. extra: 2248/2209,
  50190. bottom: 164/2412
  50191. }
  50192. },
  50193. },
  50194. [
  50195. {
  50196. name: "Normal",
  50197. height: math.unit(11 + 9/12, "feet"),
  50198. default: true
  50199. },
  50200. ]
  50201. ))
  50202. characterMakers.push(() => makeCharacter(
  50203. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50204. {
  50205. front: {
  50206. height: math.unit(8 + 10/12, "feet"),
  50207. weight: math.unit(1350, "lb"),
  50208. name: "Front",
  50209. image: {
  50210. source: "./media/characters/moonshine/front.svg",
  50211. extra: 2395/2288,
  50212. bottom: 40/2435
  50213. }
  50214. },
  50215. },
  50216. [
  50217. {
  50218. name: "Normal",
  50219. height: math.unit(8 + 10/12, "feet"),
  50220. default: true
  50221. },
  50222. ]
  50223. ))
  50224. characterMakers.push(() => makeCharacter(
  50225. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50226. {
  50227. front: {
  50228. height: math.unit(14, "feet"),
  50229. weight: math.unit(3400, "lb"),
  50230. name: "Front",
  50231. image: {
  50232. source: "./media/characters/aletia/front.svg",
  50233. extra: 1185/1052,
  50234. bottom: 21/1206
  50235. }
  50236. },
  50237. },
  50238. [
  50239. {
  50240. name: "Compressed",
  50241. height: math.unit(8, "feet")
  50242. },
  50243. {
  50244. name: "Normal",
  50245. height: math.unit(14, "feet"),
  50246. default: true
  50247. },
  50248. ]
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(17, "feet"),
  50255. weight: math.unit(6500, "lb"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/deidra/front.svg",
  50259. extra: 1201/1081,
  50260. bottom: 16/1217
  50261. }
  50262. },
  50263. },
  50264. [
  50265. {
  50266. name: "Compressed",
  50267. height: math.unit(9 + 6/12, "feet")
  50268. },
  50269. {
  50270. name: "Normal",
  50271. height: math.unit(17, "feet"),
  50272. default: true
  50273. },
  50274. ]
  50275. ))
  50276. characterMakers.push(() => makeCharacter(
  50277. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50278. {
  50279. front: {
  50280. height: math.unit(7 + 4/12, "feet"),
  50281. weight: math.unit(280, "lb"),
  50282. name: "Front",
  50283. image: {
  50284. source: "./media/characters/freki-yrmori/front.svg",
  50285. extra: 1286/1182,
  50286. bottom: 29/1315
  50287. }
  50288. },
  50289. maw: {
  50290. height: math.unit(0.9, "feet"),
  50291. name: "Maw",
  50292. image: {
  50293. source: "./media/characters/freki-yrmori/maw.svg"
  50294. }
  50295. },
  50296. },
  50297. [
  50298. {
  50299. name: "Normal",
  50300. height: math.unit(7 + 4/12, "feet"),
  50301. default: true
  50302. },
  50303. {
  50304. name: "Macro",
  50305. height: math.unit(38.5, "meters")
  50306. },
  50307. ]
  50308. ))
  50309. characterMakers.push(() => makeCharacter(
  50310. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50311. {
  50312. side: {
  50313. height: math.unit(47.2, "meters"),
  50314. weight: math.unit(10000, "tons"),
  50315. name: "Side",
  50316. image: {
  50317. source: "./media/characters/aetherios/side.svg",
  50318. extra: 2363/642,
  50319. bottom: 221/2584
  50320. }
  50321. },
  50322. top: {
  50323. height: math.unit(240, "meters"),
  50324. weight: math.unit(10000, "tons"),
  50325. name: "Top",
  50326. image: {
  50327. source: "./media/characters/aetherios/top.svg"
  50328. }
  50329. },
  50330. bottom: {
  50331. height: math.unit(240, "meters"),
  50332. weight: math.unit(10000, "tons"),
  50333. name: "Bottom",
  50334. image: {
  50335. source: "./media/characters/aetherios/bottom.svg"
  50336. }
  50337. },
  50338. head: {
  50339. height: math.unit(38.6, "meters"),
  50340. name: "Head",
  50341. image: {
  50342. source: "./media/characters/aetherios/head.svg",
  50343. extra: 1335/1112,
  50344. bottom: 0/1335
  50345. }
  50346. },
  50347. front: {
  50348. height: math.unit(29, "meters"),
  50349. name: "Front",
  50350. image: {
  50351. source: "./media/characters/aetherios/front.svg",
  50352. extra: 1266/953,
  50353. bottom: 158/1424
  50354. }
  50355. },
  50356. maw: {
  50357. height: math.unit(16.37, "meters"),
  50358. name: "Maw",
  50359. image: {
  50360. source: "./media/characters/aetherios/maw.svg",
  50361. extra: 748/637,
  50362. bottom: 0/748
  50363. },
  50364. extraAttributes: {
  50365. preyCapacity: {
  50366. name: "Capacity",
  50367. power: 3,
  50368. type: "volume",
  50369. base: math.unit(1000, "people")
  50370. },
  50371. tongueSize: {
  50372. name: "Tongue Size",
  50373. power: 2,
  50374. type: "area",
  50375. base: math.unit(21, "m^2")
  50376. }
  50377. }
  50378. },
  50379. forepaw: {
  50380. height: math.unit(18, "meters"),
  50381. name: "Forepaw",
  50382. image: {
  50383. source: "./media/characters/aetherios/forepaw.svg"
  50384. }
  50385. },
  50386. hindpaw: {
  50387. height: math.unit(23, "meters"),
  50388. name: "Hindpaw",
  50389. image: {
  50390. source: "./media/characters/aetherios/hindpaw.svg"
  50391. }
  50392. },
  50393. genitals: {
  50394. height: math.unit(42, "meters"),
  50395. name: "Genitals",
  50396. image: {
  50397. source: "./media/characters/aetherios/genitals.svg"
  50398. }
  50399. },
  50400. },
  50401. [
  50402. {
  50403. name: "Normal",
  50404. height: math.unit(47.2, "meters"),
  50405. default: true
  50406. },
  50407. {
  50408. name: "Macro",
  50409. height: math.unit(160, "meters")
  50410. },
  50411. {
  50412. name: "Mega",
  50413. height: math.unit(1.87, "km")
  50414. },
  50415. {
  50416. name: "Giga",
  50417. height: math.unit(40000, "km")
  50418. },
  50419. {
  50420. name: "Stellar",
  50421. height: math.unit(158000000, "km")
  50422. },
  50423. {
  50424. name: "Cosmic",
  50425. height: math.unit(9.46e12, "km")
  50426. },
  50427. ]
  50428. ))
  50429. characterMakers.push(() => makeCharacter(
  50430. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50431. {
  50432. front: {
  50433. height: math.unit(5 + 4/12, "feet"),
  50434. weight: math.unit(80, "lb"),
  50435. name: "Front",
  50436. image: {
  50437. source: "./media/characters/mizu-gieeg/front.svg",
  50438. extra: 850/709,
  50439. bottom: 52/902
  50440. }
  50441. },
  50442. back: {
  50443. height: math.unit(5 + 4/12, "feet"),
  50444. weight: math.unit(80, "lb"),
  50445. name: "Back",
  50446. image: {
  50447. source: "./media/characters/mizu-gieeg/back.svg",
  50448. extra: 882/745,
  50449. bottom: 25/907
  50450. }
  50451. },
  50452. },
  50453. [
  50454. {
  50455. name: "Normal",
  50456. height: math.unit(5 + 4/12, "feet"),
  50457. default: true
  50458. },
  50459. ]
  50460. ))
  50461. characterMakers.push(() => makeCharacter(
  50462. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50463. {
  50464. front: {
  50465. height: math.unit(6, "feet"),
  50466. name: "Front",
  50467. image: {
  50468. source: "./media/characters/roselle-st-papier/front.svg",
  50469. extra: 1430/1280,
  50470. bottom: 37/1467
  50471. }
  50472. },
  50473. back: {
  50474. height: math.unit(6, "feet"),
  50475. name: "Back",
  50476. image: {
  50477. source: "./media/characters/roselle-st-papier/back.svg",
  50478. extra: 1491/1296,
  50479. bottom: 23/1514
  50480. }
  50481. },
  50482. ear: {
  50483. height: math.unit(1.26, "feet"),
  50484. name: "Ear",
  50485. image: {
  50486. source: "./media/characters/roselle-st-papier/ear.svg"
  50487. }
  50488. },
  50489. },
  50490. [
  50491. {
  50492. name: "Normal",
  50493. height: math.unit(150, "feet"),
  50494. default: true
  50495. },
  50496. ]
  50497. ))
  50498. characterMakers.push(() => makeCharacter(
  50499. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50500. {
  50501. front: {
  50502. height: math.unit(1, "inches"),
  50503. name: "Front",
  50504. image: {
  50505. source: "./media/characters/valargent/front.svg",
  50506. extra: 1825/1694,
  50507. bottom: 62/1887
  50508. }
  50509. },
  50510. back: {
  50511. height: math.unit(1, "inches"),
  50512. name: "Back",
  50513. image: {
  50514. source: "./media/characters/valargent/back.svg",
  50515. extra: 1775/1682,
  50516. bottom: 88/1863
  50517. }
  50518. },
  50519. },
  50520. [
  50521. {
  50522. name: "Micro",
  50523. height: math.unit(1, "inch"),
  50524. default: true
  50525. },
  50526. ]
  50527. ))
  50528. characterMakers.push(() => makeCharacter(
  50529. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50530. {
  50531. front: {
  50532. height: math.unit(3.4, "meters"),
  50533. name: "Front",
  50534. image: {
  50535. source: "./media/characters/zarina/front.svg",
  50536. extra: 1733/1425,
  50537. bottom: 93/1826
  50538. }
  50539. },
  50540. squatting: {
  50541. height: math.unit(2.14, "meters"),
  50542. name: "Squatting",
  50543. image: {
  50544. source: "./media/characters/zarina/squatting.svg",
  50545. extra: 1073/788,
  50546. bottom: 63/1136
  50547. }
  50548. },
  50549. back: {
  50550. height: math.unit(2.14, "meters"),
  50551. name: "Back",
  50552. image: {
  50553. source: "./media/characters/zarina/back.svg",
  50554. extra: 1128/885,
  50555. bottom: 0/1128
  50556. }
  50557. },
  50558. },
  50559. [
  50560. {
  50561. name: "Normal",
  50562. height: math.unit(3.4, "meters"),
  50563. default: true
  50564. },
  50565. {
  50566. name: "Big",
  50567. height: math.unit(5, "meters")
  50568. },
  50569. {
  50570. name: "Macro",
  50571. height: math.unit(110, "meters")
  50572. },
  50573. ]
  50574. ))
  50575. characterMakers.push(() => makeCharacter(
  50576. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50577. {
  50578. front: {
  50579. height: math.unit(7, "feet"),
  50580. name: "Front",
  50581. image: {
  50582. source: "./media/characters/ventus-astro-fox/front.svg",
  50583. extra: 1792/1623,
  50584. bottom: 28/1820
  50585. }
  50586. },
  50587. back: {
  50588. height: math.unit(7, "feet"),
  50589. name: "Back",
  50590. image: {
  50591. source: "./media/characters/ventus-astro-fox/back.svg",
  50592. extra: 1789/1620,
  50593. bottom: 31/1820
  50594. }
  50595. },
  50596. outfit: {
  50597. height: math.unit(7, "feet"),
  50598. name: "Outfit",
  50599. image: {
  50600. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50601. extra: 1054/925,
  50602. bottom: 15/1069
  50603. }
  50604. },
  50605. head: {
  50606. height: math.unit(1.12, "feet"),
  50607. name: "Head",
  50608. image: {
  50609. source: "./media/characters/ventus-astro-fox/head.svg",
  50610. extra: 866/504,
  50611. bottom: 0/866
  50612. }
  50613. },
  50614. hand: {
  50615. height: math.unit(1, "feet"),
  50616. name: "Hand",
  50617. image: {
  50618. source: "./media/characters/ventus-astro-fox/hand.svg"
  50619. }
  50620. },
  50621. paw: {
  50622. height: math.unit(1.5, "feet"),
  50623. name: "Paw",
  50624. image: {
  50625. source: "./media/characters/ventus-astro-fox/paw.svg"
  50626. }
  50627. },
  50628. },
  50629. [
  50630. {
  50631. name: "Normal",
  50632. height: math.unit(7, "feet"),
  50633. default: true
  50634. },
  50635. {
  50636. name: "Macro",
  50637. height: math.unit(200, "feet")
  50638. },
  50639. {
  50640. name: "Cosmic",
  50641. height: math.unit(3, "universes")
  50642. },
  50643. ]
  50644. ))
  50645. characterMakers.push(() => makeCharacter(
  50646. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50647. {
  50648. front: {
  50649. height: math.unit(3, "meters"),
  50650. weight: math.unit(7000, "lb"),
  50651. name: "Front",
  50652. image: {
  50653. source: "./media/characters/core-t/front.svg",
  50654. extra: 5729/4941,
  50655. bottom: 1129/6858
  50656. }
  50657. },
  50658. },
  50659. [
  50660. {
  50661. name: "Big",
  50662. height: math.unit(3, "meters"),
  50663. default: true
  50664. },
  50665. ]
  50666. ))
  50667. characterMakers.push(() => makeCharacter(
  50668. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50669. {
  50670. normal: {
  50671. height: math.unit(6 + 6/12, "feet"),
  50672. weight: math.unit(275, "lb"),
  50673. name: "Front",
  50674. image: {
  50675. source: "./media/characters/cadbunny/normal.svg",
  50676. extra: 1129/947,
  50677. bottom: 93/1222
  50678. },
  50679. default: true,
  50680. form: "normal"
  50681. },
  50682. gigantamax: {
  50683. height: math.unit(26, "feet"),
  50684. weight: math.unit(16000, "lb"),
  50685. name: "Front",
  50686. image: {
  50687. source: "./media/characters/cadbunny/gigantamax.svg",
  50688. extra: 1133/944,
  50689. bottom: 90/1223
  50690. },
  50691. default: true,
  50692. form: "gigantamax"
  50693. },
  50694. },
  50695. [
  50696. {
  50697. name: "Normal",
  50698. height: math.unit(6 + 6/12, "feet"),
  50699. default: true,
  50700. form: "normal"
  50701. },
  50702. {
  50703. name: "Small",
  50704. height: math.unit(26, "feet"),
  50705. default: true,
  50706. form: "gigantamax"
  50707. },
  50708. {
  50709. name: "Large",
  50710. height: math.unit(78, "feet"),
  50711. form: "gigantamax"
  50712. },
  50713. ],
  50714. {
  50715. "normal": {
  50716. name: "Normal",
  50717. default: true
  50718. },
  50719. "gigantamax": {
  50720. name: "Gigantamax"
  50721. }
  50722. }
  50723. ))
  50724. characterMakers.push(() => makeCharacter(
  50725. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50726. {
  50727. anthroFront: {
  50728. height: math.unit(8, "feet"),
  50729. weight: math.unit(300, "lb"),
  50730. name: "Front",
  50731. image: {
  50732. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50733. extra: 1272/1176,
  50734. bottom: 53/1325
  50735. },
  50736. form: "anthro",
  50737. default: true
  50738. },
  50739. feralSide: {
  50740. height: math.unit(4, "feet"),
  50741. weight: math.unit(250, "lb"),
  50742. name: "Side",
  50743. image: {
  50744. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50745. extra: 731/621,
  50746. bottom: 0/731
  50747. },
  50748. form: "feral",
  50749. default: true
  50750. },
  50751. },
  50752. [
  50753. {
  50754. name: "Regular",
  50755. height: math.unit(8, "feet"),
  50756. form: "anthro"
  50757. },
  50758. {
  50759. name: "Macro",
  50760. height: math.unit(250, "feet"),
  50761. form: "anthro",
  50762. default: true
  50763. },
  50764. {
  50765. name: "Regular",
  50766. height: math.unit(4, "feet"),
  50767. form: "feral"
  50768. },
  50769. {
  50770. name: "Macro",
  50771. height: math.unit(125, "feet"),
  50772. form: "feral",
  50773. default: true
  50774. },
  50775. ],
  50776. {
  50777. "anthro": {
  50778. name: "Anthro",
  50779. default: true
  50780. },
  50781. "feral": {
  50782. name: "Feral",
  50783. },
  50784. }
  50785. ))
  50786. characterMakers.push(() => makeCharacter(
  50787. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50788. {
  50789. front: {
  50790. height: math.unit(11 + 10/12, "feet"),
  50791. weight: math.unit(1587, "kg"),
  50792. name: "Front",
  50793. image: {
  50794. source: "./media/characters/maple-javira-dragon/front.svg",
  50795. extra: 1136/744,
  50796. bottom: 73/1209
  50797. }
  50798. },
  50799. side: {
  50800. height: math.unit(11 + 10/12, "feet"),
  50801. weight: math.unit(1587, "kg"),
  50802. name: "Side",
  50803. image: {
  50804. source: "./media/characters/maple-javira-dragon/side.svg",
  50805. extra: 712/505,
  50806. bottom: 17/729
  50807. }
  50808. },
  50809. head: {
  50810. height: math.unit(8.05, "feet"),
  50811. name: "Head",
  50812. image: {
  50813. source: "./media/characters/maple-javira-dragon/head.svg",
  50814. extra: 1420/1344,
  50815. bottom: 0/1420
  50816. }
  50817. },
  50818. },
  50819. [
  50820. {
  50821. name: "Normal",
  50822. height: math.unit(11 + 10/12, "feet"),
  50823. default: true
  50824. },
  50825. ]
  50826. ))
  50827. characterMakers.push(() => makeCharacter(
  50828. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50829. {
  50830. front: {
  50831. height: math.unit(117, "cm"),
  50832. weight: math.unit(50, "kg"),
  50833. name: "Front",
  50834. image: {
  50835. source: "./media/characters/sonia-wyverntail/front.svg",
  50836. extra: 708/592,
  50837. bottom: 25/733
  50838. }
  50839. },
  50840. },
  50841. [
  50842. {
  50843. name: "Normal",
  50844. height: math.unit(117, "cm"),
  50845. default: true
  50846. },
  50847. ]
  50848. ))
  50849. characterMakers.push(() => makeCharacter(
  50850. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50851. {
  50852. front: {
  50853. height: math.unit(6 + 5/12, "feet"),
  50854. name: "Front",
  50855. image: {
  50856. source: "./media/characters/micah/front.svg",
  50857. extra: 1758/1546,
  50858. bottom: 214/1972
  50859. }
  50860. },
  50861. },
  50862. [
  50863. {
  50864. name: "Normal",
  50865. height: math.unit(6 + 5/12, "feet"),
  50866. default: true
  50867. },
  50868. ]
  50869. ))
  50870. characterMakers.push(() => makeCharacter(
  50871. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50872. {
  50873. front: {
  50874. height: math.unit(5 + 10/12, "feet"),
  50875. weight: math.unit(220, "lb"),
  50876. name: "Front",
  50877. image: {
  50878. source: "./media/characters/zarya/front.svg",
  50879. extra: 593/572,
  50880. bottom: 50/643
  50881. }
  50882. },
  50883. back: {
  50884. height: math.unit(5 + 10/12, "feet"),
  50885. weight: math.unit(220, "lb"),
  50886. name: "Back",
  50887. image: {
  50888. source: "./media/characters/zarya/back.svg",
  50889. extra: 603/582,
  50890. bottom: 38/641
  50891. }
  50892. },
  50893. },
  50894. [
  50895. {
  50896. name: "Normal",
  50897. height: math.unit(5 + 10/12, "feet"),
  50898. default: true
  50899. },
  50900. ]
  50901. ))
  50902. characterMakers.push(() => makeCharacter(
  50903. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50904. {
  50905. front: {
  50906. height: math.unit(7.5, "feet"),
  50907. name: "Front",
  50908. image: {
  50909. source: "./media/characters/sven-hatisson/front.svg",
  50910. extra: 917/857,
  50911. bottom: 42/959
  50912. }
  50913. },
  50914. back: {
  50915. height: math.unit(7.5, "feet"),
  50916. name: "Back",
  50917. image: {
  50918. source: "./media/characters/sven-hatisson/back.svg",
  50919. extra: 903/856,
  50920. bottom: 15/918
  50921. }
  50922. },
  50923. },
  50924. [
  50925. {
  50926. name: "Base Height",
  50927. height: math.unit(7.5, "feet")
  50928. },
  50929. {
  50930. name: "Usual Height",
  50931. height: math.unit(13.5, "feet"),
  50932. default: true
  50933. },
  50934. {
  50935. name: "Smaller Macro",
  50936. height: math.unit(85, "feet")
  50937. },
  50938. {
  50939. name: "Moderate Macro",
  50940. height: math.unit(320, "feet")
  50941. },
  50942. {
  50943. name: "Large Macro",
  50944. height: math.unit(1000, "feet")
  50945. },
  50946. {
  50947. name: "Largest Size",
  50948. height: math.unit(2, "miles")
  50949. },
  50950. ]
  50951. ))
  50952. characterMakers.push(() => makeCharacter(
  50953. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50954. {
  50955. side: {
  50956. height: math.unit(1.8, "meters"),
  50957. weight: math.unit(275, "kg"),
  50958. name: "Side",
  50959. image: {
  50960. source: "./media/characters/terra/side.svg",
  50961. extra: 1273/1147,
  50962. bottom: 0/1273
  50963. }
  50964. },
  50965. },
  50966. [
  50967. {
  50968. name: "Normal",
  50969. height: math.unit(16.2, "meters"),
  50970. default: true
  50971. },
  50972. ]
  50973. ))
  50974. characterMakers.push(() => makeCharacter(
  50975. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50976. {
  50977. borzoiFront: {
  50978. height: math.unit(6 + 9/12, "feet"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/rae/borzoi-front.svg",
  50982. extra: 1161/1098,
  50983. bottom: 31/1192
  50984. },
  50985. form: "borzoi",
  50986. default: true
  50987. },
  50988. werewolfFront: {
  50989. height: math.unit(8 + 7/12, "feet"),
  50990. name: "Front",
  50991. image: {
  50992. source: "./media/characters/rae/werewolf-front.svg",
  50993. extra: 1411/1334,
  50994. bottom: 127/1538
  50995. },
  50996. form: "werewolf",
  50997. default: true
  50998. },
  50999. },
  51000. [
  51001. {
  51002. name: "Normal",
  51003. height: math.unit(6 + 9/12, "feet"),
  51004. default: true,
  51005. form: "borzoi"
  51006. },
  51007. {
  51008. name: "Normal",
  51009. height: math.unit(8 + 7/12, "feet"),
  51010. default: true,
  51011. form: "werewolf"
  51012. },
  51013. ],
  51014. {
  51015. "borzoi": {
  51016. name: "Borzoi",
  51017. default: true
  51018. },
  51019. "werewolf": {
  51020. name: "Werewolf",
  51021. },
  51022. }
  51023. ))
  51024. characterMakers.push(() => makeCharacter(
  51025. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51026. {
  51027. front: {
  51028. height: math.unit(8 + 7/12, "feet"),
  51029. weight: math.unit(482, "lb"),
  51030. name: "Front",
  51031. image: {
  51032. source: "./media/characters/kit/front.svg",
  51033. extra: 1247/1103,
  51034. bottom: 41/1288
  51035. }
  51036. },
  51037. back: {
  51038. height: math.unit(8 + 7/12, "feet"),
  51039. weight: math.unit(482, "lb"),
  51040. name: "Back",
  51041. image: {
  51042. source: "./media/characters/kit/back.svg",
  51043. extra: 1252/1123,
  51044. bottom: 21/1273
  51045. }
  51046. },
  51047. paw: {
  51048. height: math.unit(1.46, "feet"),
  51049. name: "Paw",
  51050. image: {
  51051. source: "./media/characters/kit/paw.svg"
  51052. }
  51053. },
  51054. },
  51055. [
  51056. {
  51057. name: "Normal",
  51058. height: math.unit(2.61, "meters"),
  51059. default: true
  51060. },
  51061. {
  51062. name: "\"Tall\"",
  51063. height: math.unit(8.21, "meters")
  51064. },
  51065. {
  51066. name: "Tall",
  51067. height: math.unit(19.6, "meters")
  51068. },
  51069. {
  51070. name: "Very Tall",
  51071. height: math.unit(57.91, "meters")
  51072. },
  51073. {
  51074. name: "Semi-Macro",
  51075. height: math.unit(138.64, "meters")
  51076. },
  51077. {
  51078. name: "Macro",
  51079. height: math.unit(831.99, "meters")
  51080. },
  51081. {
  51082. name: "EX-Macro",
  51083. height: math.unit(96451121, "meters")
  51084. },
  51085. {
  51086. name: "S1-Omnipotent",
  51087. height: math.unit(4.42074e+9, "meters")
  51088. },
  51089. {
  51090. name: "S2-Omnipotent",
  51091. height: math.unit(9.42074e+17, "meters")
  51092. },
  51093. {
  51094. name: "Omnipotent",
  51095. height: math.unit(4.23112e+24, "meters")
  51096. },
  51097. {
  51098. name: "Hypergod",
  51099. height: math.unit(5.05176e+27, "meters")
  51100. },
  51101. {
  51102. name: "Hypergod-EX",
  51103. height: math.unit(9.45532e+49, "meters")
  51104. },
  51105. {
  51106. name: "Hypergod-SP",
  51107. height: math.unit(9.45532e+195, "meters")
  51108. },
  51109. ]
  51110. ))
  51111. characterMakers.push(() => makeCharacter(
  51112. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51113. {
  51114. side: {
  51115. height: math.unit(0.6, "meters"),
  51116. weight: math.unit(24, "kg"),
  51117. name: "Side",
  51118. image: {
  51119. source: "./media/characters/celeste/side.svg",
  51120. extra: 810/517,
  51121. bottom: 53/863
  51122. }
  51123. },
  51124. },
  51125. [
  51126. {
  51127. name: "Velociraptor",
  51128. height: math.unit(0.6, "meters"),
  51129. default: true
  51130. },
  51131. {
  51132. name: "Utahraptor",
  51133. height: math.unit(1.8, "meters")
  51134. },
  51135. {
  51136. name: "Gallimimus",
  51137. height: math.unit(4.0, "meters")
  51138. },
  51139. {
  51140. name: "Large",
  51141. height: math.unit(20, "meters")
  51142. },
  51143. {
  51144. name: "Planetary",
  51145. height: math.unit(50, "megameters")
  51146. },
  51147. {
  51148. name: "Stellar",
  51149. height: math.unit(1.5, "gigameters")
  51150. },
  51151. {
  51152. name: "Galactic",
  51153. height: math.unit(100, "exameters")
  51154. },
  51155. ]
  51156. ))
  51157. characterMakers.push(() => makeCharacter(
  51158. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51159. {
  51160. front: {
  51161. height: math.unit(6, "feet"),
  51162. weight: math.unit(210, "lb"),
  51163. name: "Front",
  51164. image: {
  51165. source: "./media/characters/glacia/front.svg",
  51166. extra: 958/901,
  51167. bottom: 45/1003
  51168. }
  51169. },
  51170. },
  51171. [
  51172. {
  51173. name: "Macro",
  51174. height: math.unit(1000, "meters"),
  51175. default: true
  51176. },
  51177. ]
  51178. ))
  51179. characterMakers.push(() => makeCharacter(
  51180. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51181. {
  51182. front: {
  51183. height: math.unit(4, "meters"),
  51184. name: "Front",
  51185. image: {
  51186. source: "./media/characters/giri/front.svg",
  51187. extra: 966/894,
  51188. bottom: 21/987
  51189. }
  51190. },
  51191. },
  51192. [
  51193. {
  51194. name: "Normal",
  51195. height: math.unit(4, "meters"),
  51196. default: true
  51197. },
  51198. ]
  51199. ))
  51200. characterMakers.push(() => makeCharacter(
  51201. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51202. {
  51203. back: {
  51204. height: math.unit(4, "feet"),
  51205. weight: math.unit(37, "lb"),
  51206. name: "Back",
  51207. image: {
  51208. source: "./media/characters/tin/back.svg",
  51209. extra: 845/780,
  51210. bottom: 28/873
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Normal",
  51217. height: math.unit(4, "feet"),
  51218. default: true
  51219. },
  51220. ]
  51221. ))
  51222. characterMakers.push(() => makeCharacter(
  51223. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51224. {
  51225. front: {
  51226. height: math.unit(25, "feet"),
  51227. name: "Front",
  51228. image: {
  51229. source: "./media/characters/cadenza-vivace/front.svg",
  51230. extra: 1842/1578,
  51231. bottom: 30/1872
  51232. }
  51233. },
  51234. },
  51235. [
  51236. {
  51237. name: "Macro",
  51238. height: math.unit(25, "feet"),
  51239. default: true
  51240. },
  51241. ]
  51242. ))
  51243. characterMakers.push(() => makeCharacter(
  51244. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51245. {
  51246. front: {
  51247. height: math.unit(10, "feet"),
  51248. weight: math.unit(625, "kg"),
  51249. name: "Front",
  51250. image: {
  51251. source: "./media/characters/zain/front.svg",
  51252. extra: 1682/1498,
  51253. bottom: 223/1905
  51254. }
  51255. },
  51256. back: {
  51257. height: math.unit(10, "feet"),
  51258. weight: math.unit(625, "kg"),
  51259. name: "Back",
  51260. image: {
  51261. source: "./media/characters/zain/back.svg",
  51262. extra: 1814/1657,
  51263. bottom: 152/1966
  51264. }
  51265. },
  51266. head: {
  51267. height: math.unit(10, "feet"),
  51268. weight: math.unit(625, "kg"),
  51269. name: "Head",
  51270. image: {
  51271. source: "./media/characters/zain/head.svg",
  51272. extra: 1059/762,
  51273. bottom: 0/1059
  51274. }
  51275. },
  51276. },
  51277. [
  51278. {
  51279. name: "Normal",
  51280. height: math.unit(10, "feet"),
  51281. default: true
  51282. },
  51283. ]
  51284. ))
  51285. characterMakers.push(() => makeCharacter(
  51286. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51287. {
  51288. front: {
  51289. height: math.unit(6 + 5/12, "feet"),
  51290. weight: math.unit(750, "lb"),
  51291. name: "Front",
  51292. image: {
  51293. source: "./media/characters/ruchex/front.svg",
  51294. extra: 877/820,
  51295. bottom: 17/894
  51296. },
  51297. extraAttributes: {
  51298. "width": {
  51299. name: "Width",
  51300. power: 1,
  51301. type: "length",
  51302. base: math.unit(4.757, "feet")
  51303. },
  51304. }
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(6 + 5/12, "feet"),
  51311. default: true
  51312. },
  51313. ]
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51317. {
  51318. dressedFront: {
  51319. height: math.unit(191, "cm"),
  51320. weight: math.unit(80, "kg"),
  51321. name: "Front",
  51322. image: {
  51323. source: "./media/characters/buster/dressed-front.svg",
  51324. extra: 1022/973,
  51325. bottom: 69/1091
  51326. }
  51327. },
  51328. dressedBack: {
  51329. height: math.unit(191, "cm"),
  51330. weight: math.unit(80, "kg"),
  51331. name: "Back",
  51332. image: {
  51333. source: "./media/characters/buster/dressed-back.svg",
  51334. extra: 1018/970,
  51335. bottom: 55/1073
  51336. }
  51337. },
  51338. nudeFront: {
  51339. height: math.unit(191, "cm"),
  51340. weight: math.unit(80, "kg"),
  51341. name: "Front (Nude)",
  51342. image: {
  51343. source: "./media/characters/buster/nude-front.svg",
  51344. extra: 1022/973,
  51345. bottom: 69/1091
  51346. }
  51347. },
  51348. nudeBack: {
  51349. height: math.unit(191, "cm"),
  51350. weight: math.unit(80, "kg"),
  51351. name: "Back (Nude)",
  51352. image: {
  51353. source: "./media/characters/buster/nude-back.svg",
  51354. extra: 1018/970,
  51355. bottom: 55/1073
  51356. }
  51357. },
  51358. dick: {
  51359. height: math.unit(2.59, "feet"),
  51360. name: "Dick",
  51361. image: {
  51362. source: "./media/characters/buster/dick.svg"
  51363. }
  51364. },
  51365. ass: {
  51366. height: math.unit(1.2, "feet"),
  51367. name: "Ass",
  51368. image: {
  51369. source: "./media/characters/buster/ass.svg"
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(191, "cm"),
  51377. default: true
  51378. },
  51379. ]
  51380. ))
  51381. characterMakers.push(() => makeCharacter(
  51382. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51383. {
  51384. side: {
  51385. height: math.unit(8.1, "feet"),
  51386. weight: math.unit(3500, "lb"),
  51387. name: "Side",
  51388. image: {
  51389. source: "./media/characters/sonya/side.svg",
  51390. extra: 1730/1317,
  51391. bottom: 86/1816
  51392. }
  51393. },
  51394. },
  51395. [
  51396. {
  51397. name: "Normal",
  51398. height: math.unit(8.1, "feet"),
  51399. default: true
  51400. },
  51401. ]
  51402. ))
  51403. characterMakers.push(() => makeCharacter(
  51404. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51405. {
  51406. front: {
  51407. height: math.unit(6, "feet"),
  51408. weight: math.unit(150, "lb"),
  51409. name: "Front",
  51410. image: {
  51411. source: "./media/characters/cadence-andrysiak/front.svg",
  51412. extra: 1164/1121,
  51413. bottom: 60/1224
  51414. }
  51415. },
  51416. back: {
  51417. height: math.unit(6, "feet"),
  51418. weight: math.unit(150, "lb"),
  51419. name: "Back",
  51420. image: {
  51421. source: "./media/characters/cadence-andrysiak/back.svg",
  51422. extra: 1200/1165,
  51423. bottom: 9/1209
  51424. }
  51425. },
  51426. dressed: {
  51427. height: math.unit(6, "feet"),
  51428. weight: math.unit(150, "lb"),
  51429. name: "Dressed",
  51430. image: {
  51431. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51432. extra: 1164/1121,
  51433. bottom: 60/1224
  51434. }
  51435. },
  51436. },
  51437. [
  51438. {
  51439. name: "Micro",
  51440. height: math.unit(1, "mm")
  51441. },
  51442. {
  51443. name: "Normal",
  51444. height: math.unit(6, "feet"),
  51445. default: true
  51446. },
  51447. ]
  51448. ))
  51449. characterMakers.push(() => makeCharacter(
  51450. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51451. {
  51452. front: {
  51453. height: math.unit(60, "inches"),
  51454. weight: math.unit(16, "lb"),
  51455. preyCapacity: math.unit(80, "liters"),
  51456. name: "Front",
  51457. image: {
  51458. source: "./media/characters/penny-lynx/front.svg",
  51459. extra: 1959/1769,
  51460. bottom: 49/2008
  51461. }
  51462. },
  51463. },
  51464. [
  51465. {
  51466. name: "Nokia",
  51467. height: math.unit(2, "inches")
  51468. },
  51469. {
  51470. name: "Desktop",
  51471. height: math.unit(24, "inches")
  51472. },
  51473. {
  51474. name: "TV",
  51475. height: math.unit(60, "inches")
  51476. },
  51477. {
  51478. name: "Jumbotron",
  51479. height: math.unit(12, "feet")
  51480. },
  51481. {
  51482. name: "Billboard",
  51483. height: math.unit(48, "feet"),
  51484. default: true
  51485. },
  51486. {
  51487. name: "IMAX",
  51488. height: math.unit(96, "feet")
  51489. },
  51490. {
  51491. name: "SINGULARITY",
  51492. height: math.unit(864938, "miles")
  51493. },
  51494. ]
  51495. ))
  51496. characterMakers.push(() => makeCharacter(
  51497. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51498. {
  51499. front: {
  51500. height: math.unit(5 + 4/12, "feet"),
  51501. weight: math.unit(230, "lb"),
  51502. name: "Front",
  51503. image: {
  51504. source: "./media/characters/sukebe/front.svg",
  51505. extra: 2130/2038,
  51506. bottom: 90/2220
  51507. }
  51508. },
  51509. back: {
  51510. height: math.unit(3.48, "feet"),
  51511. weight: math.unit(230, "lb"),
  51512. name: "Back",
  51513. image: {
  51514. source: "./media/characters/sukebe/back.svg",
  51515. extra: 1670/1604,
  51516. bottom: 0/1670
  51517. }
  51518. },
  51519. },
  51520. [
  51521. {
  51522. name: "Normal",
  51523. height: math.unit(5 + 4/12, "feet"),
  51524. default: true
  51525. },
  51526. ]
  51527. ))
  51528. characterMakers.push(() => makeCharacter(
  51529. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51530. {
  51531. front: {
  51532. height: math.unit(6, "feet"),
  51533. name: "Front",
  51534. image: {
  51535. source: "./media/characters/nylla/front.svg",
  51536. extra: 1868/1699,
  51537. bottom: 97/1965
  51538. }
  51539. },
  51540. back: {
  51541. height: math.unit(6, "feet"),
  51542. name: "Back",
  51543. image: {
  51544. source: "./media/characters/nylla/back.svg",
  51545. extra: 1889/1712,
  51546. bottom: 93/1982
  51547. }
  51548. },
  51549. frontNsfw: {
  51550. height: math.unit(6, "feet"),
  51551. name: "Front (NSFW)",
  51552. image: {
  51553. source: "./media/characters/nylla/front-nsfw.svg",
  51554. extra: 1868/1699,
  51555. bottom: 97/1965
  51556. },
  51557. extraAttributes: {
  51558. "dickLength": {
  51559. name: "Dick Length",
  51560. power: 1,
  51561. type: "length",
  51562. base: math.unit(1.4, "feet")
  51563. },
  51564. "cumVolume": {
  51565. name: "Cum Volume",
  51566. power: 3,
  51567. type: "volume",
  51568. base: math.unit(100, "mL")
  51569. },
  51570. }
  51571. },
  51572. backNsfw: {
  51573. height: math.unit(6, "feet"),
  51574. name: "Back (NSFW)",
  51575. image: {
  51576. source: "./media/characters/nylla/back-nsfw.svg",
  51577. extra: 1889/1712,
  51578. bottom: 93/1982
  51579. }
  51580. },
  51581. maw: {
  51582. height: math.unit(2.10, "feet"),
  51583. name: "Maw",
  51584. image: {
  51585. source: "./media/characters/nylla/maw.svg"
  51586. }
  51587. },
  51588. paws: {
  51589. height: math.unit(2.06, "feet"),
  51590. name: "Paws",
  51591. image: {
  51592. source: "./media/characters/nylla/paws.svg"
  51593. }
  51594. },
  51595. muzzle: {
  51596. height: math.unit(0.61, "feet"),
  51597. name: "Muzzle",
  51598. image: {
  51599. source: "./media/characters/nylla/muzzle.svg"
  51600. }
  51601. },
  51602. sheath: {
  51603. height: math.unit(1.305, "feet"),
  51604. name: "Sheath",
  51605. image: {
  51606. source: "./media/characters/nylla/sheath.svg"
  51607. }
  51608. },
  51609. },
  51610. [
  51611. {
  51612. name: "Micro",
  51613. height: math.unit(7.5, "inches")
  51614. },
  51615. {
  51616. name: "Normal",
  51617. height: math.unit(7, "feet"),
  51618. default: true
  51619. },
  51620. {
  51621. name: "Macro",
  51622. height: math.unit(60, "feet")
  51623. },
  51624. {
  51625. name: "Mega",
  51626. height: math.unit(200, "feet")
  51627. },
  51628. ]
  51629. ))
  51630. characterMakers.push(() => makeCharacter(
  51631. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51632. {
  51633. front: {
  51634. height: math.unit(10, "feet"),
  51635. weight: math.unit(2300, "lb"),
  51636. name: "Front",
  51637. image: {
  51638. source: "./media/characters/hunt3r/front.svg",
  51639. extra: 1909/1742,
  51640. bottom: 46/1955
  51641. }
  51642. },
  51643. },
  51644. [
  51645. {
  51646. name: "Normal",
  51647. height: math.unit(10, "feet"),
  51648. default: true
  51649. },
  51650. ]
  51651. ))
  51652. characterMakers.push(() => makeCharacter(
  51653. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51654. {
  51655. dressed: {
  51656. height: math.unit(11, "feet"),
  51657. weight: math.unit(18500, "lb"),
  51658. preyCapacity: math.unit(9, "people"),
  51659. name: "Dressed",
  51660. image: {
  51661. source: "./media/characters/cylphis/dressed.svg",
  51662. extra: 1028/1003,
  51663. bottom: 75/1103
  51664. },
  51665. },
  51666. undressed: {
  51667. height: math.unit(11, "feet"),
  51668. weight: math.unit(18500, "lb"),
  51669. preyCapacity: math.unit(9, "people"),
  51670. name: "Undressed",
  51671. image: {
  51672. source: "./media/characters/cylphis/undressed.svg",
  51673. extra: 1028/1003,
  51674. bottom: 75/1103
  51675. }
  51676. },
  51677. full: {
  51678. height: math.unit(11, "feet"),
  51679. weight: math.unit(18500 + 150*9, "lb"),
  51680. preyCapacity: math.unit(9, "people"),
  51681. name: "Full",
  51682. image: {
  51683. source: "./media/characters/cylphis/full.svg",
  51684. extra: 1028/1003,
  51685. bottom: 75/1103
  51686. }
  51687. },
  51688. },
  51689. [
  51690. {
  51691. name: "Small",
  51692. height: math.unit(8, "feet")
  51693. },
  51694. {
  51695. name: "Normal",
  51696. height: math.unit(11, "feet"),
  51697. default: true
  51698. },
  51699. ]
  51700. ))
  51701. characterMakers.push(() => makeCharacter(
  51702. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51703. {
  51704. front: {
  51705. height: math.unit(2 + 7/12, "feet"),
  51706. name: "Front",
  51707. image: {
  51708. source: "./media/characters/orishan/front.svg",
  51709. extra: 1058/1023,
  51710. bottom: 23/1081
  51711. }
  51712. },
  51713. back: {
  51714. height: math.unit(2 + 7/12, "feet"),
  51715. name: "Back",
  51716. image: {
  51717. source: "./media/characters/orishan/back.svg",
  51718. extra: 1058/1023,
  51719. bottom: 23/1081
  51720. }
  51721. },
  51722. },
  51723. [
  51724. {
  51725. name: "Micro",
  51726. height: math.unit(2, "cm")
  51727. },
  51728. {
  51729. name: "Normal",
  51730. height: math.unit(2 + 7/12, "feet"),
  51731. default: true
  51732. },
  51733. ]
  51734. ))
  51735. characterMakers.push(() => makeCharacter(
  51736. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51737. {
  51738. front: {
  51739. height: math.unit(3, "meters"),
  51740. weight: math.unit(508, "kg"),
  51741. name: "Front",
  51742. image: {
  51743. source: "./media/characters/seranis/front.svg",
  51744. extra: 1478/1454,
  51745. bottom: 41/1519
  51746. }
  51747. },
  51748. },
  51749. [
  51750. {
  51751. name: "Normal",
  51752. height: math.unit(3, "meters"),
  51753. default: true
  51754. },
  51755. {
  51756. name: "Macro",
  51757. height: math.unit(108, "meters")
  51758. },
  51759. {
  51760. name: "Megamacro",
  51761. height: math.unit(1250, "meters")
  51762. },
  51763. ]
  51764. ))
  51765. characterMakers.push(() => makeCharacter(
  51766. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51767. {
  51768. undressed: {
  51769. height: math.unit(5 + 3/12, "feet"),
  51770. name: "Undressed",
  51771. image: {
  51772. source: "./media/characters/ankou/undressed.svg",
  51773. extra: 1301/1213,
  51774. bottom: 87/1388
  51775. }
  51776. },
  51777. dressed: {
  51778. height: math.unit(5 + 3/12, "feet"),
  51779. name: "Dressed",
  51780. image: {
  51781. source: "./media/characters/ankou/dressed.svg",
  51782. extra: 1301/1213,
  51783. bottom: 87/1388
  51784. }
  51785. },
  51786. head: {
  51787. height: math.unit(1.61, "feet"),
  51788. name: "Head",
  51789. image: {
  51790. source: "./media/characters/ankou/head.svg"
  51791. }
  51792. },
  51793. },
  51794. [
  51795. {
  51796. name: "Normal",
  51797. height: math.unit(5 + 3/12, "feet"),
  51798. default: true
  51799. },
  51800. ]
  51801. ))
  51802. characterMakers.push(() => makeCharacter(
  51803. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51804. {
  51805. side: {
  51806. height: math.unit(6 + 3/12, "feet"),
  51807. weight: math.unit(200, "kg"),
  51808. name: "Side",
  51809. image: {
  51810. source: "./media/characters/juniper-skunktaur/side.svg",
  51811. extra: 1574/1229,
  51812. bottom: 38/1612
  51813. }
  51814. },
  51815. front: {
  51816. height: math.unit(6 + 3/12, "feet"),
  51817. weight: math.unit(200, "kg"),
  51818. name: "Front",
  51819. image: {
  51820. source: "./media/characters/juniper-skunktaur/front.svg",
  51821. extra: 1337/1278,
  51822. bottom: 22/1359
  51823. }
  51824. },
  51825. back: {
  51826. height: math.unit(6 + 3/12, "feet"),
  51827. weight: math.unit(200, "kg"),
  51828. name: "Back",
  51829. image: {
  51830. source: "./media/characters/juniper-skunktaur/back.svg",
  51831. extra: 1618/1273,
  51832. bottom: 13/1631
  51833. }
  51834. },
  51835. top: {
  51836. height: math.unit(2.62, "feet"),
  51837. weight: math.unit(200, "kg"),
  51838. name: "Top",
  51839. image: {
  51840. source: "./media/characters/juniper-skunktaur/top.svg"
  51841. }
  51842. },
  51843. },
  51844. [
  51845. {
  51846. name: "Normal",
  51847. height: math.unit(6 + 3/12, "feet"),
  51848. default: true
  51849. },
  51850. ]
  51851. ))
  51852. characterMakers.push(() => makeCharacter(
  51853. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51854. {
  51855. front: {
  51856. height: math.unit(20.5, "feet"),
  51857. name: "Front",
  51858. image: {
  51859. source: "./media/characters/rei/front.svg",
  51860. extra: 1349/1195,
  51861. bottom: 31/1380
  51862. }
  51863. },
  51864. back: {
  51865. height: math.unit(20.5, "feet"),
  51866. name: "Back",
  51867. image: {
  51868. source: "./media/characters/rei/back.svg",
  51869. extra: 1358/1204,
  51870. bottom: 22/1380
  51871. }
  51872. },
  51873. pawsDigi: {
  51874. height: math.unit(3.45, "feet"),
  51875. name: "Paws (Digi)",
  51876. image: {
  51877. source: "./media/characters/rei/paws-digi.svg"
  51878. }
  51879. },
  51880. pawsPlanti: {
  51881. height: math.unit(3.45, "feet"),
  51882. name: "Paws (Planti)",
  51883. image: {
  51884. source: "./media/characters/rei/paws-planti.svg"
  51885. }
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(20.5, "feet"),
  51892. default: true
  51893. },
  51894. ]
  51895. ))
  51896. characterMakers.push(() => makeCharacter(
  51897. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51898. {
  51899. front: {
  51900. height: math.unit(5 + 11/12, "feet"),
  51901. name: "Front",
  51902. image: {
  51903. source: "./media/characters/carina/front.svg",
  51904. extra: 1720/1449,
  51905. bottom: 14/1734
  51906. }
  51907. },
  51908. back: {
  51909. height: math.unit(5 + 11/12, "feet"),
  51910. name: "Back",
  51911. image: {
  51912. source: "./media/characters/carina/back.svg",
  51913. extra: 1493/1445,
  51914. bottom: 17/1510
  51915. }
  51916. },
  51917. paw: {
  51918. height: math.unit(0.92, "feet"),
  51919. name: "Paw",
  51920. image: {
  51921. source: "./media/characters/carina/paw.svg"
  51922. }
  51923. },
  51924. },
  51925. [
  51926. {
  51927. name: "Normal",
  51928. height: math.unit(5 + 11/12, "feet"),
  51929. default: true
  51930. },
  51931. ]
  51932. ))
  51933. characterMakers.push(() => makeCharacter(
  51934. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51935. {
  51936. front: {
  51937. height: math.unit(4.88, "meters"),
  51938. name: "Front",
  51939. image: {
  51940. source: "./media/characters/maya/front.svg",
  51941. extra: 1222/1145,
  51942. bottom: 57/1279
  51943. }
  51944. },
  51945. },
  51946. [
  51947. {
  51948. name: "Normal",
  51949. height: math.unit(4.88, "meters"),
  51950. default: true
  51951. },
  51952. {
  51953. name: "Macro",
  51954. height: math.unit(38.1, "meters")
  51955. },
  51956. {
  51957. name: "Macro+",
  51958. height: math.unit(152.4, "meters")
  51959. },
  51960. {
  51961. name: "Macro++",
  51962. height: math.unit(16.09, "km")
  51963. },
  51964. {
  51965. name: "Mega-macro",
  51966. height: math.unit(700, "megameters")
  51967. },
  51968. ]
  51969. ))
  51970. characterMakers.push(() => makeCharacter(
  51971. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51972. {
  51973. front: {
  51974. height: math.unit(6 + 2/12, "feet"),
  51975. weight: math.unit(500, "lb"),
  51976. preyCapacity: math.unit(4, "people"),
  51977. name: "Front",
  51978. image: {
  51979. source: "./media/characters/yepir/front.svg"
  51980. }
  51981. },
  51982. side: {
  51983. height: math.unit(6 + 2/12, "feet"),
  51984. weight: math.unit(500, "lb"),
  51985. preyCapacity: math.unit(4, "people"),
  51986. name: "Side",
  51987. image: {
  51988. source: "./media/characters/yepir/side.svg"
  51989. }
  51990. },
  51991. paw: {
  51992. height: math.unit(1.05, "feet"),
  51993. name: "Paw",
  51994. image: {
  51995. source: "./media/characters/yepir/paw.svg"
  51996. }
  51997. },
  51998. },
  51999. [
  52000. {
  52001. name: "Normal",
  52002. height: math.unit(6 + 2/12, "feet"),
  52003. default: true
  52004. },
  52005. ]
  52006. ))
  52007. characterMakers.push(() => makeCharacter(
  52008. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52009. {
  52010. front: {
  52011. height: math.unit(5 + 4/12, "feet"),
  52012. name: "Front",
  52013. image: {
  52014. source: "./media/characters/russec/front.svg",
  52015. extra: 1926/1626,
  52016. bottom: 72/1998
  52017. }
  52018. },
  52019. back: {
  52020. height: math.unit(5 + 4/12, "feet"),
  52021. name: "Back",
  52022. image: {
  52023. source: "./media/characters/russec/back.svg",
  52024. extra: 1910/1591,
  52025. bottom: 48/1958
  52026. }
  52027. },
  52028. },
  52029. [
  52030. {
  52031. name: "Small",
  52032. height: math.unit(5 + 4/12, "feet")
  52033. },
  52034. {
  52035. name: "Normal",
  52036. height: math.unit(72, "feet"),
  52037. default: true
  52038. },
  52039. ]
  52040. ))
  52041. characterMakers.push(() => makeCharacter(
  52042. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52043. {
  52044. side: {
  52045. height: math.unit(12, "feet"),
  52046. name: "Side",
  52047. image: {
  52048. source: "./media/characters/cianus/side.svg",
  52049. extra: 808/526,
  52050. bottom: 61/869
  52051. }
  52052. },
  52053. },
  52054. [
  52055. {
  52056. name: "Normal",
  52057. height: math.unit(12, "feet"),
  52058. default: true
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52064. {
  52065. front: {
  52066. height: math.unit(9 + 6/12, "feet"),
  52067. weight: math.unit(300, "lb"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/ahab/front.svg",
  52071. extra: 1897/1868,
  52072. bottom: 121/2018
  52073. }
  52074. },
  52075. frontNsfw: {
  52076. height: math.unit(9 + 6/12, "feet"),
  52077. weight: math.unit(300, "lb"),
  52078. name: "Front-nsfw",
  52079. image: {
  52080. source: "./media/characters/ahab/front-nsfw.svg",
  52081. extra: 1897/1868,
  52082. bottom: 121/2018
  52083. }
  52084. },
  52085. },
  52086. [
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(9 + 6/12, "feet")
  52090. },
  52091. {
  52092. name: "Macro",
  52093. height: math.unit(657, "feet"),
  52094. default: true
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(2.69, "meters"),
  52103. weight: math.unit(132, "kg"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/aarkus/front.svg",
  52107. extra: 1400/1231,
  52108. bottom: 34/1434
  52109. }
  52110. },
  52111. back: {
  52112. height: math.unit(2.69, "meters"),
  52113. weight: math.unit(132, "kg"),
  52114. name: "Back",
  52115. image: {
  52116. source: "./media/characters/aarkus/back.svg",
  52117. extra: 1381/1218,
  52118. bottom: 30/1411
  52119. }
  52120. },
  52121. frontNsfw: {
  52122. height: math.unit(2.69, "meters"),
  52123. weight: math.unit(132, "kg"),
  52124. name: "Front (NSFW)",
  52125. image: {
  52126. source: "./media/characters/aarkus/front-nsfw.svg",
  52127. extra: 1400/1231,
  52128. bottom: 34/1434
  52129. }
  52130. },
  52131. foot: {
  52132. height: math.unit(1.45, "feet"),
  52133. name: "Foot",
  52134. image: {
  52135. source: "./media/characters/aarkus/foot.svg"
  52136. }
  52137. },
  52138. head: {
  52139. height: math.unit(2.85, "feet"),
  52140. name: "Head",
  52141. image: {
  52142. source: "./media/characters/aarkus/head.svg"
  52143. }
  52144. },
  52145. headAlt: {
  52146. height: math.unit(3.07, "feet"),
  52147. name: "Head (Alt)",
  52148. image: {
  52149. source: "./media/characters/aarkus/head-alt.svg"
  52150. }
  52151. },
  52152. mouth: {
  52153. height: math.unit(1.25, "feet"),
  52154. name: "Mouth",
  52155. image: {
  52156. source: "./media/characters/aarkus/mouth.svg"
  52157. }
  52158. },
  52159. dick: {
  52160. height: math.unit(1.77, "feet"),
  52161. name: "Dick",
  52162. image: {
  52163. source: "./media/characters/aarkus/dick.svg"
  52164. }
  52165. },
  52166. },
  52167. [
  52168. {
  52169. name: "Normal",
  52170. height: math.unit(2.69, "meters"),
  52171. default: true
  52172. },
  52173. {
  52174. name: "Macro",
  52175. height: math.unit(269, "meters")
  52176. },
  52177. {
  52178. name: "Macro+",
  52179. height: math.unit(672.5, "meters")
  52180. },
  52181. {
  52182. name: "Megamacro",
  52183. height: math.unit(2.017, "km")
  52184. },
  52185. ]
  52186. ))
  52187. characterMakers.push(() => makeCharacter(
  52188. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52189. {
  52190. front: {
  52191. height: math.unit(23.47, "cm"),
  52192. weight: math.unit(600, "grams"),
  52193. name: "Front",
  52194. image: {
  52195. source: "./media/characters/diode/front.svg",
  52196. extra: 1778/1396,
  52197. bottom: 95/1873
  52198. }
  52199. },
  52200. side: {
  52201. height: math.unit(23.47, "cm"),
  52202. weight: math.unit(600, "grams"),
  52203. name: "Side",
  52204. image: {
  52205. source: "./media/characters/diode/side.svg",
  52206. extra: 1831/1404,
  52207. bottom: 86/1917
  52208. }
  52209. },
  52210. wings: {
  52211. height: math.unit(0.683, "feet"),
  52212. name: "Wings",
  52213. image: {
  52214. source: "./media/characters/diode/wings.svg"
  52215. }
  52216. },
  52217. },
  52218. [
  52219. {
  52220. name: "Normal",
  52221. height: math.unit(23.47, "cm"),
  52222. default: true
  52223. },
  52224. ]
  52225. ))
  52226. characterMakers.push(() => makeCharacter(
  52227. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52228. {
  52229. front: {
  52230. height: math.unit(6 + 3/12, "feet"),
  52231. weight: math.unit(250, "lb"),
  52232. name: "Front",
  52233. image: {
  52234. source: "./media/characters/reika/front.svg",
  52235. extra: 1120/1078,
  52236. bottom: 86/1206
  52237. }
  52238. },
  52239. },
  52240. [
  52241. {
  52242. name: "Normal",
  52243. height: math.unit(6 + 3/12, "feet"),
  52244. default: true
  52245. },
  52246. ]
  52247. ))
  52248. characterMakers.push(() => makeCharacter(
  52249. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52250. {
  52251. front: {
  52252. height: math.unit(16 + 8/12, "feet"),
  52253. weight: math.unit(9000, "lb"),
  52254. name: "Front",
  52255. image: {
  52256. source: "./media/characters/lokuto-takama/front.svg",
  52257. extra: 1774/1632,
  52258. bottom: 147/1921
  52259. },
  52260. extraAttributes: {
  52261. "bustWidth": {
  52262. name: "Bust Width",
  52263. power: 1,
  52264. type: "length",
  52265. base: math.unit(2.4, "meters")
  52266. },
  52267. "breastWeight": {
  52268. name: "Breast Weight",
  52269. power: 3,
  52270. type: "mass",
  52271. base: math.unit(1000, "kg")
  52272. },
  52273. }
  52274. },
  52275. },
  52276. [
  52277. {
  52278. name: "Normal",
  52279. height: math.unit(16 + 8/12, "feet"),
  52280. default: true
  52281. },
  52282. ]
  52283. ))
  52284. characterMakers.push(() => makeCharacter(
  52285. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52286. {
  52287. front: {
  52288. height: math.unit(10, "cm"),
  52289. weight: math.unit(850, "grams"),
  52290. name: "Front",
  52291. image: {
  52292. source: "./media/characters/owak-bone/front.svg",
  52293. extra: 1965/1801,
  52294. bottom: 31/1996
  52295. }
  52296. },
  52297. },
  52298. [
  52299. {
  52300. name: "Normal",
  52301. height: math.unit(10, "cm"),
  52302. default: true
  52303. },
  52304. ]
  52305. ))
  52306. characterMakers.push(() => makeCharacter(
  52307. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52308. {
  52309. front: {
  52310. height: math.unit(2 + 6/12, "feet"),
  52311. weight: math.unit(9, "lb"),
  52312. name: "Front",
  52313. image: {
  52314. source: "./media/characters/muffin/front.svg",
  52315. extra: 1220/1195,
  52316. bottom: 84/1304
  52317. }
  52318. },
  52319. },
  52320. [
  52321. {
  52322. name: "Normal",
  52323. height: math.unit(2 + 6/12, "feet"),
  52324. default: true
  52325. },
  52326. ]
  52327. ))
  52328. characterMakers.push(() => makeCharacter(
  52329. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52330. {
  52331. front: {
  52332. height: math.unit(7, "feet"),
  52333. name: "Front",
  52334. image: {
  52335. source: "./media/characters/chimera/front.svg",
  52336. extra: 1752/1614,
  52337. bottom: 68/1820
  52338. }
  52339. },
  52340. },
  52341. [
  52342. {
  52343. name: "Normal",
  52344. height: math.unit(7, "feet")
  52345. },
  52346. {
  52347. name: "Gigamacro",
  52348. height: math.unit(2.9, "gigameters"),
  52349. default: true
  52350. },
  52351. {
  52352. name: "Universal",
  52353. height: math.unit(1.56e26, "yottameters")
  52354. },
  52355. ]
  52356. ))
  52357. characterMakers.push(() => makeCharacter(
  52358. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52359. {
  52360. front: {
  52361. height: math.unit(3, "feet"),
  52362. weight: math.unit(20, "lb"),
  52363. name: "Front",
  52364. image: {
  52365. source: "./media/characters/kit-fennec-fox/front.svg",
  52366. extra: 1027/932,
  52367. bottom: 16/1043
  52368. }
  52369. },
  52370. back: {
  52371. height: math.unit(3, "feet"),
  52372. weight: math.unit(20, "lb"),
  52373. name: "Back",
  52374. image: {
  52375. source: "./media/characters/kit-fennec-fox/back.svg",
  52376. extra: 1027/932,
  52377. bottom: 16/1043
  52378. }
  52379. },
  52380. },
  52381. [
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(3, "feet"),
  52385. default: true
  52386. },
  52387. ]
  52388. ))
  52389. characterMakers.push(() => makeCharacter(
  52390. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52391. {
  52392. front: {
  52393. height: math.unit(167, "cm"),
  52394. name: "Front",
  52395. image: {
  52396. source: "./media/characters/blue-otter/front.svg",
  52397. extra: 1951/1920,
  52398. bottom: 31/1982
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Otter-Sized",
  52405. height: math.unit(100, "cm")
  52406. },
  52407. {
  52408. name: "Normal",
  52409. height: math.unit(167, "cm"),
  52410. default: true
  52411. },
  52412. ]
  52413. ))
  52414. characterMakers.push(() => makeCharacter(
  52415. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52416. {
  52417. front: {
  52418. height: math.unit(4 + 4/12, "feet"),
  52419. name: "Front",
  52420. image: {
  52421. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52422. extra: 1072/1067,
  52423. bottom: 117/1189
  52424. }
  52425. },
  52426. back: {
  52427. height: math.unit(4 + 4/12, "feet"),
  52428. name: "Back",
  52429. image: {
  52430. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52431. extra: 1135/1129,
  52432. bottom: 57/1192
  52433. }
  52434. },
  52435. head: {
  52436. height: math.unit(1.77, "feet"),
  52437. name: "Head",
  52438. image: {
  52439. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52440. }
  52441. },
  52442. },
  52443. [
  52444. {
  52445. name: "Normal",
  52446. height: math.unit(4 + 4/12, "feet"),
  52447. default: true
  52448. },
  52449. ]
  52450. ))
  52451. characterMakers.push(() => makeCharacter(
  52452. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52453. {
  52454. front: {
  52455. height: math.unit(2, "inches"),
  52456. name: "Front",
  52457. image: {
  52458. source: "./media/characters/carley-hartford/front.svg",
  52459. extra: 1035/988,
  52460. bottom: 23/1058
  52461. }
  52462. },
  52463. back: {
  52464. height: math.unit(2, "inches"),
  52465. name: "Back",
  52466. image: {
  52467. source: "./media/characters/carley-hartford/back.svg",
  52468. extra: 1035/988,
  52469. bottom: 23/1058
  52470. }
  52471. },
  52472. dressed: {
  52473. height: math.unit(2, "inches"),
  52474. name: "Dressed",
  52475. image: {
  52476. source: "./media/characters/carley-hartford/dressed.svg",
  52477. extra: 651/620,
  52478. bottom: 0/651
  52479. }
  52480. },
  52481. },
  52482. [
  52483. {
  52484. name: "Micro",
  52485. height: math.unit(2, "inches"),
  52486. default: true
  52487. },
  52488. {
  52489. name: "Macro",
  52490. height: math.unit(6 + 3/12, "feet")
  52491. },
  52492. ]
  52493. ))
  52494. characterMakers.push(() => makeCharacter(
  52495. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52496. {
  52497. front: {
  52498. height: math.unit(2 + 3/12, "feet"),
  52499. weight: math.unit(15 + 7/16, "lb"),
  52500. name: "Front",
  52501. image: {
  52502. source: "./media/characters/duke/front.svg",
  52503. extra: 910/815,
  52504. bottom: 30/940
  52505. }
  52506. },
  52507. },
  52508. [
  52509. {
  52510. name: "Normal",
  52511. height: math.unit(2 + 3/12, "feet"),
  52512. default: true
  52513. },
  52514. ]
  52515. ))
  52516. characterMakers.push(() => makeCharacter(
  52517. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52518. {
  52519. front: {
  52520. height: math.unit(5 + 4/12, "feet"),
  52521. weight: math.unit(156, "lb"),
  52522. name: "Front",
  52523. image: {
  52524. source: "./media/characters/dein/front.svg",
  52525. extra: 855/815,
  52526. bottom: 48/903
  52527. }
  52528. },
  52529. side: {
  52530. height: math.unit(5 + 4/12, "feet"),
  52531. weight: math.unit(156, "lb"),
  52532. name: "side",
  52533. image: {
  52534. source: "./media/characters/dein/side.svg",
  52535. extra: 846/803,
  52536. bottom: 25/871
  52537. }
  52538. },
  52539. maw: {
  52540. height: math.unit(1.45, "feet"),
  52541. name: "Maw",
  52542. image: {
  52543. source: "./media/characters/dein/maw.svg"
  52544. }
  52545. },
  52546. },
  52547. [
  52548. {
  52549. name: "Ferret Sized",
  52550. height: math.unit(2 + 5/12, "feet")
  52551. },
  52552. {
  52553. name: "Normal",
  52554. height: math.unit(5 + 4/12, "feet"),
  52555. default: true
  52556. },
  52557. ]
  52558. ))
  52559. characterMakers.push(() => makeCharacter(
  52560. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52561. {
  52562. front: {
  52563. height: math.unit(84 + 8/12, "feet"),
  52564. weight: math.unit(942180, "lb"),
  52565. name: "Front",
  52566. image: {
  52567. source: "./media/characters/daurine-arima/front.svg",
  52568. extra: 1989/1782,
  52569. bottom: 37/2026
  52570. }
  52571. },
  52572. side: {
  52573. height: math.unit(84 + 8/12, "feet"),
  52574. weight: math.unit(942180, "lb"),
  52575. name: "Side",
  52576. image: {
  52577. source: "./media/characters/daurine-arima/side.svg",
  52578. extra: 1997/1790,
  52579. bottom: 21/2018
  52580. }
  52581. },
  52582. back: {
  52583. height: math.unit(84 + 8/12, "feet"),
  52584. weight: math.unit(942180, "lb"),
  52585. name: "Back",
  52586. image: {
  52587. source: "./media/characters/daurine-arima/back.svg",
  52588. extra: 1992/1800,
  52589. bottom: 12/2004
  52590. }
  52591. },
  52592. head: {
  52593. height: math.unit(15.5, "feet"),
  52594. name: "Head",
  52595. image: {
  52596. source: "./media/characters/daurine-arima/head.svg"
  52597. }
  52598. },
  52599. headAlt: {
  52600. height: math.unit(19.19, "feet"),
  52601. name: "Head (Alt)",
  52602. image: {
  52603. source: "./media/characters/daurine-arima/head-alt.svg"
  52604. }
  52605. },
  52606. },
  52607. [
  52608. {
  52609. name: "Minimum height",
  52610. height: math.unit(8 + 10/12, "feet")
  52611. },
  52612. {
  52613. name: "Comfort height",
  52614. height: math.unit(19 + 6 /12, "feet")
  52615. },
  52616. {
  52617. name: "\"Normal\" height",
  52618. height: math.unit(28 + 10/12, "feet")
  52619. },
  52620. {
  52621. name: "Base height",
  52622. height: math.unit(84 + 8/12, "feet"),
  52623. default: true
  52624. },
  52625. {
  52626. name: "Mini-macro",
  52627. height: math.unit(2360, "feet")
  52628. },
  52629. {
  52630. name: "Macro",
  52631. height: math.unit(10, "miles")
  52632. },
  52633. {
  52634. name: "Goddess",
  52635. height: math.unit(9.99e40, "yottameters")
  52636. },
  52637. ]
  52638. ))
  52639. characterMakers.push(() => makeCharacter(
  52640. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52641. {
  52642. front: {
  52643. height: math.unit(2.3, "meters"),
  52644. name: "Front",
  52645. image: {
  52646. source: "./media/characters/cilenomon/front.svg",
  52647. extra: 1963/1778,
  52648. bottom: 54/2017
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(2.3, "meters"),
  52656. default: true
  52657. },
  52658. {
  52659. name: "Big",
  52660. height: math.unit(5, "meters")
  52661. },
  52662. {
  52663. name: "Macro",
  52664. height: math.unit(30, "meters")
  52665. },
  52666. {
  52667. name: "True",
  52668. height: math.unit(1, "universe")
  52669. },
  52670. ]
  52671. ))
  52672. characterMakers.push(() => makeCharacter(
  52673. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52674. {
  52675. front: {
  52676. height: math.unit(5, "feet"),
  52677. name: "Front",
  52678. image: {
  52679. source: "./media/characters/sen-mink/front.svg",
  52680. extra: 1727/1675,
  52681. bottom: 35/1762
  52682. }
  52683. },
  52684. },
  52685. [
  52686. {
  52687. name: "Normal",
  52688. height: math.unit(5, "feet"),
  52689. default: true
  52690. },
  52691. ]
  52692. ))
  52693. characterMakers.push(() => makeCharacter(
  52694. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52695. {
  52696. front: {
  52697. height: math.unit(5.42999, "feet"),
  52698. weight: math.unit(100, "lb"),
  52699. name: "Front",
  52700. image: {
  52701. source: "./media/characters/ophois/front.svg",
  52702. extra: 1429/1286,
  52703. bottom: 60/1489
  52704. }
  52705. },
  52706. },
  52707. [
  52708. {
  52709. name: "Normal",
  52710. height: math.unit(5.42999, "feet"),
  52711. default: true
  52712. },
  52713. ]
  52714. ))
  52715. characterMakers.push(() => makeCharacter(
  52716. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52717. {
  52718. front: {
  52719. height: math.unit(2, "meters"),
  52720. name: "Front",
  52721. image: {
  52722. source: "./media/characters/riley/front.svg",
  52723. extra: 1779/1754,
  52724. bottom: 139/1918
  52725. }
  52726. },
  52727. },
  52728. [
  52729. {
  52730. name: "Normal",
  52731. height: math.unit(2, "meters"),
  52732. default: true
  52733. },
  52734. ]
  52735. ))
  52736. characterMakers.push(() => makeCharacter(
  52737. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52738. {
  52739. front: {
  52740. height: math.unit(6 + 2/12, "feet"),
  52741. weight: math.unit(195, "lb"),
  52742. preyCapacity: math.unit(6, "people"),
  52743. name: "Front",
  52744. image: {
  52745. source: "./media/characters/shuken-flash/front.svg",
  52746. extra: 1905/1739,
  52747. bottom: 65/1970
  52748. }
  52749. },
  52750. back: {
  52751. height: math.unit(6 + 2/12, "feet"),
  52752. weight: math.unit(195, "lb"),
  52753. preyCapacity: math.unit(6, "people"),
  52754. name: "Back",
  52755. image: {
  52756. source: "./media/characters/shuken-flash/back.svg",
  52757. extra: 1912/1751,
  52758. bottom: 13/1925
  52759. }
  52760. },
  52761. },
  52762. [
  52763. {
  52764. name: "Normal",
  52765. height: math.unit(6 + 2/12, "feet"),
  52766. default: true
  52767. },
  52768. ]
  52769. ))
  52770. characterMakers.push(() => makeCharacter(
  52771. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52772. {
  52773. front: {
  52774. height: math.unit(5 + 9/12, "feet"),
  52775. weight: math.unit(150, "lb"),
  52776. name: "Front",
  52777. image: {
  52778. source: "./media/characters/plat/front.svg",
  52779. extra: 1816/1703,
  52780. bottom: 43/1859
  52781. }
  52782. },
  52783. side: {
  52784. height: math.unit(5 + 9/12, "feet"),
  52785. weight: math.unit(300, "lb"),
  52786. name: "Side",
  52787. image: {
  52788. source: "./media/characters/plat/side.svg",
  52789. extra: 1824/1699,
  52790. bottom: 18/1842
  52791. }
  52792. },
  52793. },
  52794. [
  52795. {
  52796. name: "Normal",
  52797. height: math.unit(5 + 9/12, "feet"),
  52798. default: true
  52799. },
  52800. ]
  52801. ))
  52802. characterMakers.push(() => makeCharacter(
  52803. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52804. {
  52805. front: {
  52806. height: math.unit(9, "feet"),
  52807. weight: math.unit(1800, "lb"),
  52808. name: "Front",
  52809. image: {
  52810. source: "./media/characters/elaine/front.svg",
  52811. extra: 1833/1354,
  52812. bottom: 25/1858
  52813. }
  52814. },
  52815. back: {
  52816. height: math.unit(8.8, "feet"),
  52817. weight: math.unit(1800, "lb"),
  52818. name: "Back",
  52819. image: {
  52820. source: "./media/characters/elaine/back.svg",
  52821. extra: 1641/1233,
  52822. bottom: 53/1694
  52823. }
  52824. },
  52825. },
  52826. [
  52827. {
  52828. name: "Normal",
  52829. height: math.unit(9, "feet"),
  52830. default: true
  52831. },
  52832. ]
  52833. ))
  52834. characterMakers.push(() => makeCharacter(
  52835. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52836. {
  52837. front: {
  52838. height: math.unit(17 + 9/12, "feet"),
  52839. weight: math.unit(8000, "lb"),
  52840. name: "Front",
  52841. image: {
  52842. source: "./media/characters/vera-raven/front.svg",
  52843. extra: 1457/1412,
  52844. bottom: 121/1578
  52845. }
  52846. },
  52847. side: {
  52848. height: math.unit(17 + 9/12, "feet"),
  52849. weight: math.unit(8000, "lb"),
  52850. name: "Side",
  52851. image: {
  52852. source: "./media/characters/vera-raven/side.svg",
  52853. extra: 1510/1464,
  52854. bottom: 54/1564
  52855. }
  52856. },
  52857. },
  52858. [
  52859. {
  52860. name: "Normal",
  52861. height: math.unit(17 + 9/12, "feet"),
  52862. default: true
  52863. },
  52864. ]
  52865. ))
  52866. characterMakers.push(() => makeCharacter(
  52867. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52868. {
  52869. dressed: {
  52870. height: math.unit(6 + 9/12, "feet"),
  52871. name: "Dressed",
  52872. image: {
  52873. source: "./media/characters/nakisha/dressed.svg",
  52874. extra: 1909/1757,
  52875. bottom: 48/1957
  52876. }
  52877. },
  52878. nude: {
  52879. height: math.unit(6 + 9/12, "feet"),
  52880. name: "Nude",
  52881. image: {
  52882. source: "./media/characters/nakisha/nude.svg",
  52883. extra: 1917/1765,
  52884. bottom: 34/1951
  52885. }
  52886. },
  52887. },
  52888. [
  52889. {
  52890. name: "Normal",
  52891. height: math.unit(6 + 9/12, "feet"),
  52892. default: true
  52893. },
  52894. ]
  52895. ))
  52896. characterMakers.push(() => makeCharacter(
  52897. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52898. {
  52899. front: {
  52900. height: math.unit(87, "meters"),
  52901. name: "Front",
  52902. image: {
  52903. source: "./media/characters/serafin/front.svg",
  52904. extra: 1919/1776,
  52905. bottom: 65/1984
  52906. }
  52907. },
  52908. },
  52909. [
  52910. {
  52911. name: "Normal",
  52912. height: math.unit(87, "meters"),
  52913. default: true
  52914. },
  52915. ]
  52916. ))
  52917. characterMakers.push(() => makeCharacter(
  52918. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52919. {
  52920. front: {
  52921. height: math.unit(6, "feet"),
  52922. weight: math.unit(200, "lb"),
  52923. name: "Front",
  52924. image: {
  52925. source: "./media/characters/poptart/front.svg",
  52926. extra: 615/583,
  52927. bottom: 23/638
  52928. }
  52929. },
  52930. back: {
  52931. height: math.unit(6, "feet"),
  52932. weight: math.unit(200, "lb"),
  52933. name: "Back",
  52934. image: {
  52935. source: "./media/characters/poptart/back.svg",
  52936. extra: 617/584,
  52937. bottom: 22/639
  52938. }
  52939. },
  52940. frontNsfw: {
  52941. height: math.unit(6, "feet"),
  52942. weight: math.unit(200, "lb"),
  52943. name: "Front (NSFW)",
  52944. image: {
  52945. source: "./media/characters/poptart/front-nsfw.svg",
  52946. extra: 615/583,
  52947. bottom: 23/638
  52948. }
  52949. },
  52950. backNsfw: {
  52951. height: math.unit(6, "feet"),
  52952. weight: math.unit(200, "lb"),
  52953. name: "Back (NSFW)",
  52954. image: {
  52955. source: "./media/characters/poptart/back-nsfw.svg",
  52956. extra: 617/584,
  52957. bottom: 22/639
  52958. }
  52959. },
  52960. hand: {
  52961. height: math.unit(1.14, "feet"),
  52962. name: "Hand",
  52963. image: {
  52964. source: "./media/characters/poptart/hand.svg"
  52965. }
  52966. },
  52967. foot: {
  52968. height: math.unit(1.5, "feet"),
  52969. name: "Foot",
  52970. image: {
  52971. source: "./media/characters/poptart/foot.svg"
  52972. }
  52973. },
  52974. },
  52975. [
  52976. {
  52977. name: "Normal",
  52978. height: math.unit(6, "feet"),
  52979. default: true
  52980. },
  52981. {
  52982. name: "Grande",
  52983. height: math.unit(350, "feet")
  52984. },
  52985. {
  52986. name: "Massif",
  52987. height: math.unit(967, "feet")
  52988. },
  52989. ]
  52990. ))
  52991. characterMakers.push(() => makeCharacter(
  52992. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52993. {
  52994. hyenaSide: {
  52995. height: math.unit(120, "cm"),
  52996. weight: math.unit(120, "lb"),
  52997. name: "Side",
  52998. image: {
  52999. source: "./media/characters/trance/hyena-side.svg",
  53000. extra: 998/904,
  53001. bottom: 76/1074
  53002. }
  53003. },
  53004. },
  53005. [
  53006. {
  53007. name: "Normal",
  53008. height: math.unit(120, "cm"),
  53009. default: true
  53010. },
  53011. {
  53012. name: "Dire",
  53013. height: math.unit(230, "cm")
  53014. },
  53015. {
  53016. name: "Macro",
  53017. height: math.unit(37, "feet")
  53018. },
  53019. ]
  53020. ))
  53021. characterMakers.push(() => makeCharacter(
  53022. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53023. {
  53024. front: {
  53025. height: math.unit(6 + 3/12, "feet"),
  53026. name: "Front",
  53027. image: {
  53028. source: "./media/characters/michael-berretta/front.svg",
  53029. extra: 515/494,
  53030. bottom: 20/535
  53031. }
  53032. },
  53033. back: {
  53034. height: math.unit(6 + 3/12, "feet"),
  53035. name: "Back",
  53036. image: {
  53037. source: "./media/characters/michael-berretta/back.svg",
  53038. extra: 520/497,
  53039. bottom: 21/541
  53040. }
  53041. },
  53042. frontNsfw: {
  53043. height: math.unit(6 + 3/12, "feet"),
  53044. name: "Front (NSFW)",
  53045. image: {
  53046. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53047. extra: 515/494,
  53048. bottom: 20/535
  53049. }
  53050. },
  53051. dick: {
  53052. height: math.unit(1, "feet"),
  53053. name: "Dick",
  53054. image: {
  53055. source: "./media/characters/michael-berretta/dick.svg"
  53056. }
  53057. },
  53058. },
  53059. [
  53060. {
  53061. name: "Normal",
  53062. height: math.unit(6 + 3/12, "feet"),
  53063. default: true
  53064. },
  53065. {
  53066. name: "Big",
  53067. height: math.unit(12, "feet")
  53068. },
  53069. {
  53070. name: "Macro",
  53071. height: math.unit(187.5, "feet")
  53072. },
  53073. ]
  53074. ))
  53075. characterMakers.push(() => makeCharacter(
  53076. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53077. {
  53078. front: {
  53079. height: math.unit(9 + 9/12, "feet"),
  53080. weight: math.unit(1244, "lb"),
  53081. name: "Front",
  53082. image: {
  53083. source: "./media/characters/stella-edgecomb/front.svg",
  53084. extra: 1835/1706,
  53085. bottom: 49/1884
  53086. }
  53087. },
  53088. pen: {
  53089. height: math.unit(0.95, "feet"),
  53090. name: "Pen",
  53091. image: {
  53092. source: "./media/characters/stella-edgecomb/pen.svg"
  53093. }
  53094. },
  53095. },
  53096. [
  53097. {
  53098. name: "Cozy Bear",
  53099. height: math.unit(0.5, "inches")
  53100. },
  53101. {
  53102. name: "Normal",
  53103. height: math.unit(9 + 9/12, "feet"),
  53104. default: true
  53105. },
  53106. {
  53107. name: "Giga Bear",
  53108. height: math.unit(1, "mile")
  53109. },
  53110. {
  53111. name: "Great Bear",
  53112. height: math.unit(53, "miles")
  53113. },
  53114. {
  53115. name: "Goddess Bear",
  53116. height: math.unit(40000, "miles")
  53117. },
  53118. {
  53119. name: "Sun Bear",
  53120. height: math.unit(900000, "miles")
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53126. {
  53127. anthroFront: {
  53128. height: math.unit(556, "cm"),
  53129. weight: math.unit(2650, "kg"),
  53130. preyCapacity: math.unit(3, "people"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/ash´iika/front.svg",
  53134. extra: 710/673,
  53135. bottom: 15/725
  53136. },
  53137. form: "anthro",
  53138. default: true
  53139. },
  53140. anthroSide: {
  53141. height: math.unit(556, "cm"),
  53142. weight: math.unit(2650, "kg"),
  53143. preyCapacity: math.unit(3, "people"),
  53144. name: "Side",
  53145. image: {
  53146. source: "./media/characters/ash´iika/side.svg",
  53147. extra: 696/676,
  53148. bottom: 13/709
  53149. },
  53150. form: "anthro"
  53151. },
  53152. anthroDressed: {
  53153. height: math.unit(556, "cm"),
  53154. weight: math.unit(2650, "kg"),
  53155. preyCapacity: math.unit(3, "people"),
  53156. name: "Dressed",
  53157. image: {
  53158. source: "./media/characters/ash´iika/dressed.svg",
  53159. extra: 710/673,
  53160. bottom: 15/725
  53161. },
  53162. form: "anthro"
  53163. },
  53164. anthroHead: {
  53165. height: math.unit(3.5, "feet"),
  53166. name: "Head",
  53167. image: {
  53168. source: "./media/characters/ash´iika/head.svg",
  53169. extra: 348/291,
  53170. bottom: 45/393
  53171. },
  53172. form: "anthro"
  53173. },
  53174. feralSide: {
  53175. height: math.unit(870, "cm"),
  53176. weight: math.unit(17500, "kg"),
  53177. preyCapacity: math.unit(15, "people"),
  53178. name: "Side",
  53179. image: {
  53180. source: "./media/characters/ash´iika/feral.svg",
  53181. extra: 595/199,
  53182. bottom: 7/602
  53183. },
  53184. form: "feral",
  53185. default: true,
  53186. },
  53187. },
  53188. [
  53189. {
  53190. name: "Normal",
  53191. height: math.unit(556, "cm"),
  53192. default: true,
  53193. form: "anthro"
  53194. },
  53195. {
  53196. name: "Macro",
  53197. height: math.unit(88, "meters"),
  53198. form: "anthro"
  53199. },
  53200. {
  53201. name: "Normal",
  53202. height: math.unit(870, "cm"),
  53203. default: true,
  53204. form: "feral"
  53205. },
  53206. {
  53207. name: "Large",
  53208. height: math.unit(25, "meters"),
  53209. form: "feral"
  53210. },
  53211. ],
  53212. {
  53213. "anthro": {
  53214. name: "Anthro",
  53215. default: true
  53216. },
  53217. "feral": {
  53218. name: "Feral",
  53219. },
  53220. }
  53221. ))
  53222. characterMakers.push(() => makeCharacter(
  53223. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53224. {
  53225. front: {
  53226. height: math.unit(10, "feet"),
  53227. weight: math.unit(800, "lb"),
  53228. name: "Front",
  53229. image: {
  53230. source: "./media/characters/yen/front.svg",
  53231. extra: 443/411,
  53232. bottom: 6/449
  53233. }
  53234. },
  53235. sleeping: {
  53236. height: math.unit(10, "feet"),
  53237. weight: math.unit(800, "lb"),
  53238. name: "Sleeping",
  53239. image: {
  53240. source: "./media/characters/yen/sleeping.svg",
  53241. extra: 470/422,
  53242. bottom: 0/470
  53243. }
  53244. },
  53245. head: {
  53246. height: math.unit(2.2, "feet"),
  53247. name: "Head",
  53248. image: {
  53249. source: "./media/characters/yen/head.svg"
  53250. }
  53251. },
  53252. headAlt: {
  53253. height: math.unit(2.1, "feet"),
  53254. name: "Head (Alt)",
  53255. image: {
  53256. source: "./media/characters/yen/head-alt.svg"
  53257. }
  53258. },
  53259. },
  53260. [
  53261. {
  53262. name: "Normal",
  53263. height: math.unit(10, "feet"),
  53264. default: true
  53265. },
  53266. ]
  53267. ))
  53268. characterMakers.push(() => makeCharacter(
  53269. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53270. {
  53271. front: {
  53272. height: math.unit(12, "feet"),
  53273. name: "Front",
  53274. image: {
  53275. source: "./media/characters/citra/front.svg",
  53276. extra: 1950/1710,
  53277. bottom: 47/1997
  53278. }
  53279. },
  53280. },
  53281. [
  53282. {
  53283. name: "Normal",
  53284. height: math.unit(12, "feet"),
  53285. default: true
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53291. {
  53292. side: {
  53293. height: math.unit(7 + 10/12, "feet"),
  53294. name: "Side",
  53295. image: {
  53296. source: "./media/characters/sholstim/side.svg",
  53297. extra: 786/682,
  53298. bottom: 40/826
  53299. }
  53300. },
  53301. },
  53302. [
  53303. {
  53304. name: "Normal",
  53305. height: math.unit(7 + 10/12, "feet"),
  53306. default: true
  53307. },
  53308. ]
  53309. ))
  53310. characterMakers.push(() => makeCharacter(
  53311. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53312. {
  53313. front: {
  53314. height: math.unit(3.10, "meters"),
  53315. name: "Front",
  53316. image: {
  53317. source: "./media/characters/aggyn/front.svg",
  53318. extra: 1188/963,
  53319. bottom: 24/1212
  53320. }
  53321. },
  53322. },
  53323. [
  53324. {
  53325. name: "Normal",
  53326. height: math.unit(3.10, "meters"),
  53327. default: true
  53328. },
  53329. ]
  53330. ))
  53331. characterMakers.push(() => makeCharacter(
  53332. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53333. {
  53334. front: {
  53335. height: math.unit(7 + 5/12, "feet"),
  53336. weight: math.unit(687, "lb"),
  53337. name: "Front",
  53338. image: {
  53339. source: "./media/characters/alsandair-hergenroether/front.svg",
  53340. extra: 1251/1186,
  53341. bottom: 75/1326
  53342. }
  53343. },
  53344. back: {
  53345. height: math.unit(7 + 5/12, "feet"),
  53346. weight: math.unit(687, "lb"),
  53347. name: "Back",
  53348. image: {
  53349. source: "./media/characters/alsandair-hergenroether/back.svg",
  53350. extra: 1290/1229,
  53351. bottom: 17/1307
  53352. }
  53353. },
  53354. },
  53355. [
  53356. {
  53357. name: "Max Compression",
  53358. height: math.unit(7 + 5/12, "feet"),
  53359. default: true
  53360. },
  53361. {
  53362. name: "\"Normal\"",
  53363. height: math.unit(2, "universes")
  53364. },
  53365. ]
  53366. ))
  53367. characterMakers.push(() => makeCharacter(
  53368. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53369. {
  53370. front: {
  53371. height: math.unit(4 + 1/12, "feet"),
  53372. weight: math.unit(92, "lb"),
  53373. name: "Front",
  53374. image: {
  53375. source: "./media/characters/ie/front.svg",
  53376. extra: 1585/1352,
  53377. bottom: 91/1676
  53378. }
  53379. },
  53380. },
  53381. [
  53382. {
  53383. name: "Normal",
  53384. height: math.unit(4 + 1/12, "feet"),
  53385. default: true
  53386. },
  53387. ]
  53388. ))
  53389. characterMakers.push(() => makeCharacter(
  53390. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53391. {
  53392. anthro: {
  53393. height: math.unit(6, "feet"),
  53394. weight: math.unit(150, "lb"),
  53395. name: "Front",
  53396. image: {
  53397. source: "./media/characters/willow/anthro.svg",
  53398. extra: 1073/986,
  53399. bottom: 34/1107
  53400. },
  53401. form: "anthro",
  53402. default: true
  53403. },
  53404. taur: {
  53405. height: math.unit(6, "feet"),
  53406. weight: math.unit(150, "lb"),
  53407. name: "Side",
  53408. image: {
  53409. source: "./media/characters/willow/taur.svg",
  53410. extra: 647/512,
  53411. bottom: 136/783
  53412. },
  53413. form: "taur",
  53414. default: true
  53415. },
  53416. },
  53417. [
  53418. {
  53419. name: "Humanoid",
  53420. height: math.unit(2.7, "meters"),
  53421. form: "anthro"
  53422. },
  53423. {
  53424. name: "Normal",
  53425. height: math.unit(9, "meters"),
  53426. form: "anthro",
  53427. default: true
  53428. },
  53429. {
  53430. name: "Humanoid",
  53431. height: math.unit(2.1, "meters"),
  53432. form: "taur"
  53433. },
  53434. {
  53435. name: "Normal",
  53436. height: math.unit(7, "meters"),
  53437. form: "taur",
  53438. default: true
  53439. },
  53440. ],
  53441. {
  53442. "anthro": {
  53443. name: "Anthro",
  53444. default: true
  53445. },
  53446. "taur": {
  53447. name: "Taur",
  53448. },
  53449. }
  53450. ))
  53451. characterMakers.push(() => makeCharacter(
  53452. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53453. {
  53454. front: {
  53455. height: math.unit(2 + 5/12, "feet"),
  53456. name: "Front",
  53457. image: {
  53458. source: "./media/characters/kyan/front.svg",
  53459. extra: 460/334,
  53460. bottom: 23/483
  53461. },
  53462. extraAttributes: {
  53463. "toeLength": {
  53464. name: "Toe Length",
  53465. power: 1,
  53466. type: "length",
  53467. base: math.unit(7, "cm")
  53468. },
  53469. "toeclawLength": {
  53470. name: "Toeclaw Length",
  53471. power: 1,
  53472. type: "length",
  53473. base: math.unit(4.7, "cm")
  53474. },
  53475. "earHeight": {
  53476. name: "Ear Height",
  53477. power: 1,
  53478. type: "length",
  53479. base: math.unit(14.1, "cm")
  53480. },
  53481. }
  53482. },
  53483. paws: {
  53484. height: math.unit(0.45, "feet"),
  53485. name: "Paws",
  53486. image: {
  53487. source: "./media/characters/kyan/paws.svg",
  53488. extra: 581/581,
  53489. bottom: 114/695
  53490. }
  53491. },
  53492. },
  53493. [
  53494. {
  53495. name: "Normal",
  53496. height: math.unit(2 + 5/12, "feet"),
  53497. default: true
  53498. },
  53499. ]
  53500. ))
  53501. characterMakers.push(() => makeCharacter(
  53502. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53503. {
  53504. front: {
  53505. height: math.unit(2 + 2/3, "feet"),
  53506. name: "Front",
  53507. image: {
  53508. source: "./media/characters/xazzon/front.svg",
  53509. extra: 1109/984,
  53510. bottom: 42/1151
  53511. }
  53512. },
  53513. back: {
  53514. height: math.unit(2 + 2/3, "feet"),
  53515. name: "Back",
  53516. image: {
  53517. source: "./media/characters/xazzon/back.svg",
  53518. extra: 1095/971,
  53519. bottom: 23/1118
  53520. }
  53521. },
  53522. },
  53523. [
  53524. {
  53525. name: "Normal",
  53526. height: math.unit(2 + 2/3, "feet"),
  53527. default: true
  53528. },
  53529. ]
  53530. ))
  53531. characterMakers.push(() => makeCharacter(
  53532. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53533. {
  53534. dressed: {
  53535. height: math.unit(5 + 7/12, "feet"),
  53536. weight: math.unit(173, "lb"),
  53537. name: "Dressed",
  53538. image: {
  53539. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53540. extra: 3262/2862,
  53541. bottom: 188/3450
  53542. }
  53543. },
  53544. undressed: {
  53545. height: math.unit(5 + 7/12, "feet"),
  53546. weight: math.unit(173, "lb"),
  53547. name: "Undressed",
  53548. image: {
  53549. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53550. extra: 3262/2862,
  53551. bottom: 188/3450
  53552. }
  53553. },
  53554. },
  53555. [
  53556. {
  53557. name: "The void",
  53558. height: math.unit(7.29193e-34, "angstroms")
  53559. },
  53560. {
  53561. name: "Uh-Oh.",
  53562. height: math.unit(5.734e-7, "angstroms")
  53563. },
  53564. {
  53565. name: "Pico",
  53566. height: math.unit(0.876, "angstroms")
  53567. },
  53568. {
  53569. name: "Nano",
  53570. height: math.unit(0.000134200, "mm")
  53571. },
  53572. {
  53573. name: "Micro",
  53574. height: math.unit(0.0673020, "mm")
  53575. },
  53576. {
  53577. name: "Tiny",
  53578. height: math.unit(2.4, "mm")
  53579. },
  53580. {
  53581. name: "Actual Normal",
  53582. height: math.unit(3, "inches"),
  53583. default: true
  53584. },
  53585. {
  53586. name: "Normal",
  53587. height: math.unit(5 + 8/12, "feet")
  53588. },
  53589. {
  53590. name: "Giant",
  53591. height: math.unit(12, "feet")
  53592. },
  53593. {
  53594. name: "City Ruler",
  53595. height: math.unit(270, "meters")
  53596. },
  53597. {
  53598. name: "Giga",
  53599. height: math.unit(1117.6, "km")
  53600. },
  53601. {
  53602. name: "All-Powerful Queen",
  53603. height: math.unit(70.8, "gigameters")
  53604. },
  53605. {
  53606. name: "'Goddess'",
  53607. height: math.unit(600, "yottameters")
  53608. },
  53609. {
  53610. name: "Biggest!",
  53611. height: math.unit(4.23e5, "yottameters")
  53612. },
  53613. ]
  53614. ))
  53615. characterMakers.push(() => makeCharacter(
  53616. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53617. {
  53618. front: {
  53619. height: math.unit(8, "feet"),
  53620. weight: math.unit(300, "lb"),
  53621. name: "Front",
  53622. image: {
  53623. source: "./media/characters/khyla-shadowsong/front.svg",
  53624. extra: 861/798,
  53625. bottom: 32/893
  53626. }
  53627. },
  53628. side: {
  53629. height: math.unit(8, "feet"),
  53630. weight: math.unit(300, "lb"),
  53631. name: "Side",
  53632. image: {
  53633. source: "./media/characters/khyla-shadowsong/side.svg",
  53634. extra: 790/750,
  53635. bottom: 87/877
  53636. }
  53637. },
  53638. back: {
  53639. height: math.unit(8, "feet"),
  53640. weight: math.unit(300, "lb"),
  53641. name: "Back",
  53642. image: {
  53643. source: "./media/characters/khyla-shadowsong/back.svg",
  53644. extra: 855/808,
  53645. bottom: 14/869
  53646. }
  53647. },
  53648. head: {
  53649. height: math.unit(2.7, "feet"),
  53650. name: "Head",
  53651. image: {
  53652. source: "./media/characters/khyla-shadowsong/head.svg"
  53653. }
  53654. },
  53655. },
  53656. [
  53657. {
  53658. name: "Micro",
  53659. height: math.unit(6, "inches")
  53660. },
  53661. {
  53662. name: "Normal",
  53663. height: math.unit(8, "feet"),
  53664. default: true
  53665. },
  53666. ]
  53667. ))
  53668. characterMakers.push(() => makeCharacter(
  53669. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53670. {
  53671. hyperFront: {
  53672. height: math.unit(9 + 4/12, "feet"),
  53673. weight: math.unit(2000, "lb"),
  53674. name: "Front",
  53675. image: {
  53676. source: "./media/characters/tiden/hyper-front.svg",
  53677. extra: 400/382,
  53678. bottom: 6/406
  53679. },
  53680. form: "hyper",
  53681. },
  53682. regularFront: {
  53683. height: math.unit(7 + 10/12, "feet"),
  53684. weight: math.unit(470, "lb"),
  53685. name: "Front",
  53686. image: {
  53687. source: "./media/characters/tiden/regular-front.svg",
  53688. extra: 468/442,
  53689. bottom: 6/474
  53690. },
  53691. form: "regular",
  53692. },
  53693. },
  53694. [
  53695. {
  53696. name: "Normal",
  53697. height: math.unit(9 + 4/12, "feet"),
  53698. default: true,
  53699. form: "hyper"
  53700. },
  53701. {
  53702. name: "Normal",
  53703. height: math.unit(7 + 10/12, "feet"),
  53704. default: true,
  53705. form: "regular"
  53706. },
  53707. ],
  53708. {
  53709. "hyper": {
  53710. name: "Hyper",
  53711. default: true
  53712. },
  53713. "regular": {
  53714. name: "Regular",
  53715. },
  53716. }
  53717. ))
  53718. characterMakers.push(() => makeCharacter(
  53719. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  53720. {
  53721. side: {
  53722. height: math.unit(6, "feet"),
  53723. weight: math.unit(150, "lb"),
  53724. name: "Side",
  53725. image: {
  53726. source: "./media/characters/jason-crowe/side.svg",
  53727. extra: 1771/766,
  53728. bottom: 219/1990
  53729. }
  53730. },
  53731. },
  53732. [
  53733. {
  53734. name: "Pocket Gryphon",
  53735. height: math.unit(6, "cm")
  53736. },
  53737. {
  53738. name: "Raven",
  53739. height: math.unit(60, "cm")
  53740. },
  53741. {
  53742. name: "Normal",
  53743. height: math.unit(1, "meter"),
  53744. default: true
  53745. },
  53746. ]
  53747. ))
  53748. characterMakers.push(() => makeCharacter(
  53749. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  53750. {
  53751. front: {
  53752. height: math.unit(9 + 6/12, "feet"),
  53753. weight: math.unit(1100, "lb"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/django/front.svg",
  53757. extra: 1231/1136,
  53758. bottom: 34/1265
  53759. }
  53760. },
  53761. side: {
  53762. height: math.unit(9 + 6/12, "feet"),
  53763. weight: math.unit(1100, "lb"),
  53764. name: "Side",
  53765. image: {
  53766. source: "./media/characters/django/side.svg",
  53767. extra: 1267/1174,
  53768. bottom: 9/1276
  53769. }
  53770. },
  53771. },
  53772. [
  53773. {
  53774. name: "Normal",
  53775. height: math.unit(9 + 6/12, "feet"),
  53776. default: true
  53777. },
  53778. {
  53779. name: "Macro 1",
  53780. height: math.unit(50, "feet")
  53781. },
  53782. {
  53783. name: "Macro 2",
  53784. height: math.unit(500, "feet")
  53785. },
  53786. {
  53787. name: "Mega Macro",
  53788. height: math.unit(5300, "feet")
  53789. },
  53790. ]
  53791. ))
  53792. characterMakers.push(() => makeCharacter(
  53793. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  53794. {
  53795. frontSfw: {
  53796. height: math.unit(120, "cm"),
  53797. weight: math.unit(15, "kg"),
  53798. name: "Front (SFW)",
  53799. image: {
  53800. source: "./media/characters/eri/front-sfw.svg",
  53801. extra: 1014/939,
  53802. bottom: 37/1051
  53803. },
  53804. form: "moth",
  53805. },
  53806. frontNsfw: {
  53807. height: math.unit(120, "cm"),
  53808. weight: math.unit(15, "kg"),
  53809. name: "Front (NSFW)",
  53810. image: {
  53811. source: "./media/characters/eri/front-nsfw.svg",
  53812. extra: 1014/939,
  53813. bottom: 37/1051
  53814. },
  53815. form: "moth",
  53816. default: true
  53817. },
  53818. egg: {
  53819. height: math.unit(10, "cm"),
  53820. name: "Egg",
  53821. image: {
  53822. source: "./media/characters/eri/egg.svg"
  53823. },
  53824. form: "egg",
  53825. default: true
  53826. },
  53827. },
  53828. [
  53829. {
  53830. name: "Normal",
  53831. height: math.unit(120, "cm"),
  53832. default: true,
  53833. form: "moth"
  53834. },
  53835. {
  53836. name: "Normal",
  53837. height: math.unit(10, "cm"),
  53838. default: true,
  53839. form: "egg"
  53840. },
  53841. ],
  53842. {
  53843. "moth": {
  53844. name: "Moth",
  53845. default: true
  53846. },
  53847. "egg": {
  53848. name: "Egg",
  53849. },
  53850. }
  53851. ))
  53852. //characters
  53853. function makeCharacters() {
  53854. const results = [];
  53855. characterMakers.forEach(character => {
  53856. results.push(character());
  53857. });
  53858. return results;
  53859. }