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

54446 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3 * 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: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. "mink": {
  2047. name: "Mink",
  2048. parents: ["mustelid"]
  2049. },
  2050. "sandcat": {
  2051. name: "Sandcat",
  2052. parents: ["cat"]
  2053. },
  2054. "hrothgar": {
  2055. name: "Hrothgar",
  2056. parents: ["cat"]
  2057. },
  2058. }
  2059. //species
  2060. function getSpeciesInfo(speciesList) {
  2061. let result = new Set();
  2062. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2063. result.add(entry)
  2064. });
  2065. return Array.from(result);
  2066. };
  2067. function getSpeciesInfoHelper(species) {
  2068. if (!speciesData[species]) {
  2069. console.warn(species + " doesn't exist");
  2070. return [];
  2071. }
  2072. if (speciesData[species].parents) {
  2073. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2074. } else {
  2075. return [species];
  2076. }
  2077. }
  2078. characterMakers.push(() => makeCharacter(
  2079. {
  2080. name: "Fen",
  2081. species: ["crux"],
  2082. description: {
  2083. title: "Bio",
  2084. text: "Very furry. Sheds on everything."
  2085. },
  2086. tags: [
  2087. "anthro",
  2088. "goo"
  2089. ]
  2090. },
  2091. {
  2092. front: {
  2093. height: math.unit(12, "feet"),
  2094. weight: math.unit(2400, "lb"),
  2095. name: "Front",
  2096. image: {
  2097. source: "./media/characters/fen/front.svg",
  2098. extra: 1804/1562,
  2099. bottom: 205/2009
  2100. },
  2101. extraAttributes: {
  2102. pawSize: {
  2103. name: "Paw Size",
  2104. power: 2,
  2105. type: "area",
  2106. base: math.unit(0.35, "m^2")
  2107. }
  2108. }
  2109. },
  2110. diving: {
  2111. height: math.unit(4.9, "meters"),
  2112. weight: math.unit(2400, "lb"),
  2113. name: "Diving",
  2114. image: {
  2115. source: "./media/characters/fen/diving.svg"
  2116. }
  2117. },
  2118. goo: {
  2119. height: math.unit(12, "feet"),
  2120. weight: math.unit(3600, "lb"),
  2121. volume: math.unit(1000, "liters"),
  2122. preyCapacity: math.unit(6, "people"),
  2123. name: "Goo",
  2124. image: {
  2125. source: "./media/characters/fen/goo.svg",
  2126. extra: 1307/1071,
  2127. bottom: 134/1441
  2128. }
  2129. },
  2130. gooNsfw: {
  2131. height: math.unit(12, "feet"),
  2132. weight: math.unit(3750, "lb"),
  2133. volume: math.unit(1000, "liters"),
  2134. preyCapacity: math.unit(6, "people"),
  2135. name: "Goo (NSFW)",
  2136. image: {
  2137. source: "./media/characters/fen/goo-nsfw.svg",
  2138. extra: 1875/1734,
  2139. bottom: 122/1997
  2140. }
  2141. },
  2142. maw: {
  2143. height: math.unit(5.03, "feet"),
  2144. name: "Maw",
  2145. image: {
  2146. source: "./media/characters/fen/maw.svg"
  2147. }
  2148. },
  2149. gooCeiling: {
  2150. height: math.unit(6.6, "feet"),
  2151. weight: math.unit(3000, "lb"),
  2152. volume: math.unit(1000, "liters"),
  2153. preyCapacity: math.unit(6, "people"),
  2154. name: "Goo (Ceiling)",
  2155. image: {
  2156. source: "./media/characters/fen/goo-ceiling.svg"
  2157. }
  2158. },
  2159. paw: {
  2160. height: math.unit(3.77, "feet"),
  2161. name: "Paw",
  2162. image: {
  2163. source: "./media/characters/fen/paw.svg"
  2164. },
  2165. extraAttributes: {
  2166. "toeSize": {
  2167. name: "Toe Size",
  2168. power: 2,
  2169. type: "area",
  2170. base: math.unit(0.02875, "m^2")
  2171. },
  2172. "pawSize": {
  2173. name: "Paw Size",
  2174. power: 2,
  2175. type: "area",
  2176. base: math.unit(0.378, "m^2")
  2177. },
  2178. }
  2179. },
  2180. tail: {
  2181. height: math.unit(12.1, "feet"),
  2182. name: "Tail",
  2183. image: {
  2184. source: "./media/characters/fen/tail.svg"
  2185. }
  2186. },
  2187. tailFull: {
  2188. height: math.unit(12.1, "feet"),
  2189. name: "Full Tail",
  2190. image: {
  2191. source: "./media/characters/fen/tail-full.svg"
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(12, "feet"),
  2196. weight: math.unit(2400, "lb"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/fen/back.svg",
  2200. },
  2201. info: {
  2202. description: {
  2203. mode: "append",
  2204. text: "\n\nHe is not currently looking at you."
  2205. }
  2206. }
  2207. },
  2208. full: {
  2209. height: math.unit(1.85, "meter"),
  2210. weight: math.unit(3200, "lb"),
  2211. name: "Full",
  2212. image: {
  2213. source: "./media/characters/fen/full.svg",
  2214. extra: 1133/859,
  2215. bottom: 145/1278
  2216. },
  2217. info: {
  2218. description: {
  2219. mode: "append",
  2220. text: "\n\nMunch."
  2221. }
  2222. }
  2223. },
  2224. gooLounging: {
  2225. height: math.unit(4.53, "feet"),
  2226. weight: math.unit(3000, "lb"),
  2227. preyCapacity: math.unit(6, "people"),
  2228. name: "Goo (Lounging)",
  2229. image: {
  2230. source: "./media/characters/fen/goo-lounging.svg",
  2231. bottom: 116 / 613
  2232. }
  2233. },
  2234. lounging: {
  2235. height: math.unit(10.52, "feet"),
  2236. weight: math.unit(2400, "lb"),
  2237. name: "Lounging",
  2238. image: {
  2239. source: "./media/characters/fen/lounging.svg"
  2240. }
  2241. },
  2242. },
  2243. [
  2244. {
  2245. name: "Small",
  2246. height: math.unit(2.2428, "meter")
  2247. },
  2248. {
  2249. name: "Normal",
  2250. height: math.unit(12, "feet"),
  2251. default: true,
  2252. },
  2253. {
  2254. name: "Big",
  2255. height: math.unit(20, "feet")
  2256. },
  2257. {
  2258. name: "Minimacro",
  2259. height: math.unit(40, "feet"),
  2260. info: {
  2261. description: {
  2262. mode: "append",
  2263. text: "\n\nTOO DAMN BIG"
  2264. }
  2265. }
  2266. },
  2267. {
  2268. name: "Macro",
  2269. height: math.unit(100, "feet"),
  2270. info: {
  2271. description: {
  2272. mode: "append",
  2273. text: "\n\nTOO DAMN BIG"
  2274. }
  2275. }
  2276. },
  2277. {
  2278. name: "Megamacro",
  2279. height: math.unit(2, "miles")
  2280. },
  2281. {
  2282. name: "Gigamacro",
  2283. height: math.unit(10, "earths")
  2284. },
  2285. ]
  2286. ))
  2287. characterMakers.push(() => makeCharacter(
  2288. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2289. {
  2290. front: {
  2291. height: math.unit(183, "cm"),
  2292. weight: math.unit(80, "kg"),
  2293. name: "Front",
  2294. image: {
  2295. source: "./media/characters/sofia-fluttertail/front.svg",
  2296. bottom: 0.01,
  2297. extra: 2154 / 2081
  2298. }
  2299. },
  2300. frontAlt: {
  2301. height: math.unit(183, "cm"),
  2302. weight: math.unit(80, "kg"),
  2303. name: "Front (alt)",
  2304. image: {
  2305. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2306. }
  2307. },
  2308. back: {
  2309. height: math.unit(183, "cm"),
  2310. weight: math.unit(80, "kg"),
  2311. name: "Back",
  2312. image: {
  2313. source: "./media/characters/sofia-fluttertail/back.svg"
  2314. }
  2315. },
  2316. kneeling: {
  2317. height: math.unit(125, "cm"),
  2318. weight: math.unit(80, "kg"),
  2319. name: "Kneeling",
  2320. image: {
  2321. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2322. extra: 1033 / 977,
  2323. bottom: 23.7 / 1057
  2324. }
  2325. },
  2326. maw: {
  2327. height: math.unit(183 / 5, "cm"),
  2328. name: "Maw",
  2329. image: {
  2330. source: "./media/characters/sofia-fluttertail/maw.svg"
  2331. }
  2332. },
  2333. mawcloseup: {
  2334. height: math.unit(183 / 5 * 0.41, "cm"),
  2335. name: "Maw (Closeup)",
  2336. image: {
  2337. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2338. }
  2339. },
  2340. paws: {
  2341. height: math.unit(1.17, "feet"),
  2342. name: "Paws",
  2343. image: {
  2344. source: "./media/characters/sofia-fluttertail/paws.svg",
  2345. extra: 851 / 851,
  2346. bottom: 17 / 868
  2347. }
  2348. },
  2349. },
  2350. [
  2351. {
  2352. name: "Normal",
  2353. height: math.unit(1.83, "meter")
  2354. },
  2355. {
  2356. name: "Size Thief",
  2357. height: math.unit(18, "feet")
  2358. },
  2359. {
  2360. name: "50 Foot Collie",
  2361. height: math.unit(50, "feet")
  2362. },
  2363. {
  2364. name: "Macro",
  2365. height: math.unit(96, "feet"),
  2366. default: true
  2367. },
  2368. {
  2369. name: "Megamerger",
  2370. height: math.unit(650, "feet")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2376. {
  2377. front: {
  2378. height: math.unit(7, "feet"),
  2379. weight: math.unit(100, "kg"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/march/front.svg",
  2383. extra: 1992/1851,
  2384. bottom: 39/2031
  2385. }
  2386. },
  2387. foot: {
  2388. height: math.unit(0.9, "feet"),
  2389. name: "Foot",
  2390. image: {
  2391. source: "./media/characters/march/foot.svg"
  2392. }
  2393. },
  2394. },
  2395. [
  2396. {
  2397. name: "Normal",
  2398. height: math.unit(7.9, "feet")
  2399. },
  2400. {
  2401. name: "Macro",
  2402. height: math.unit(220, "meters")
  2403. },
  2404. {
  2405. name: "Megamacro",
  2406. height: math.unit(2.98, "km"),
  2407. default: true
  2408. },
  2409. {
  2410. name: "Gigamacro",
  2411. height: math.unit(15963, "km")
  2412. },
  2413. {
  2414. name: "Teramacro",
  2415. height: math.unit(2980000000, "km")
  2416. },
  2417. {
  2418. name: "Examacro",
  2419. height: math.unit(250, "parsecs")
  2420. },
  2421. ]
  2422. ))
  2423. characterMakers.push(() => makeCharacter(
  2424. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2425. {
  2426. front: {
  2427. height: math.unit(6, "feet"),
  2428. weight: math.unit(60, "kg"),
  2429. name: "Front",
  2430. image: {
  2431. source: "./media/characters/noir/front.svg",
  2432. extra: 1,
  2433. bottom: 0.032
  2434. }
  2435. },
  2436. },
  2437. [
  2438. {
  2439. name: "Normal",
  2440. height: math.unit(6.6, "feet")
  2441. },
  2442. {
  2443. name: "Macro",
  2444. height: math.unit(500, "feet")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(2.5, "km"),
  2449. default: true
  2450. },
  2451. {
  2452. name: "Gigamacro",
  2453. height: math.unit(22500, "km")
  2454. },
  2455. {
  2456. name: "Teramacro",
  2457. height: math.unit(2500000000, "km")
  2458. },
  2459. {
  2460. name: "Examacro",
  2461. height: math.unit(200, "parsecs")
  2462. },
  2463. ]
  2464. ))
  2465. characterMakers.push(() => makeCharacter(
  2466. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2467. {
  2468. front: {
  2469. height: math.unit(7, "feet"),
  2470. weight: math.unit(100, "kg"),
  2471. name: "Front",
  2472. image: {
  2473. source: "./media/characters/okuri/front.svg",
  2474. extra: 739/665,
  2475. bottom: 39/778
  2476. }
  2477. },
  2478. back: {
  2479. height: math.unit(7, "feet"),
  2480. weight: math.unit(100, "kg"),
  2481. name: "Back",
  2482. image: {
  2483. source: "./media/characters/okuri/back.svg",
  2484. extra: 734/653,
  2485. bottom: 13/747
  2486. }
  2487. },
  2488. sitting: {
  2489. height: math.unit(2.95, "feet"),
  2490. weight: math.unit(100, "kg"),
  2491. name: "Sitting",
  2492. image: {
  2493. source: "./media/characters/okuri/sitting.svg",
  2494. extra: 370/318,
  2495. bottom: 99/469
  2496. }
  2497. },
  2498. },
  2499. [
  2500. {
  2501. name: "Smallest",
  2502. height: math.unit(5 + 2/12, "feet")
  2503. },
  2504. {
  2505. name: "Smaller",
  2506. height: math.unit(300, "feet")
  2507. },
  2508. {
  2509. name: "Small",
  2510. height: math.unit(1000, "feet")
  2511. },
  2512. {
  2513. name: "Macro",
  2514. height: math.unit(1, "mile")
  2515. },
  2516. {
  2517. name: "Mega Macro (Small)",
  2518. height: math.unit(20, "km")
  2519. },
  2520. {
  2521. name: "Mega Macro (Large)",
  2522. height: math.unit(600, "km")
  2523. },
  2524. {
  2525. name: "Giga Macro",
  2526. height: math.unit(10000, "km")
  2527. },
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(577560, "km"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Large",
  2535. height: math.unit(4, "galaxies")
  2536. },
  2537. {
  2538. name: "Largest",
  2539. height: math.unit(15, "multiverses")
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2545. {
  2546. front: {
  2547. height: math.unit(7, "feet"),
  2548. weight: math.unit(100, "kg"),
  2549. name: "Front",
  2550. image: {
  2551. source: "./media/characters/manny/front.svg",
  2552. extra: 1,
  2553. bottom: 0.06
  2554. }
  2555. },
  2556. back: {
  2557. height: math.unit(7, "feet"),
  2558. weight: math.unit(100, "kg"),
  2559. name: "Back",
  2560. image: {
  2561. source: "./media/characters/manny/back.svg",
  2562. extra: 1,
  2563. bottom: 0.014
  2564. }
  2565. },
  2566. },
  2567. [
  2568. {
  2569. name: "Normal",
  2570. height: math.unit(7, "feet"),
  2571. },
  2572. {
  2573. name: "Macro",
  2574. height: math.unit(78, "feet"),
  2575. default: true
  2576. },
  2577. {
  2578. name: "Macro+",
  2579. height: math.unit(300, "meters")
  2580. },
  2581. {
  2582. name: "Macro++",
  2583. height: math.unit(2400, "meters")
  2584. },
  2585. {
  2586. name: "Megamacro",
  2587. height: math.unit(5167, "meters")
  2588. },
  2589. {
  2590. name: "Gigamacro",
  2591. height: math.unit(41769, "miles")
  2592. },
  2593. ]
  2594. ))
  2595. characterMakers.push(() => makeCharacter(
  2596. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2597. {
  2598. front: {
  2599. height: math.unit(7, "feet"),
  2600. weight: math.unit(100, "kg"),
  2601. name: "Front",
  2602. image: {
  2603. source: "./media/characters/adake/front-1.svg"
  2604. }
  2605. },
  2606. frontAlt: {
  2607. height: math.unit(7, "feet"),
  2608. weight: math.unit(100, "kg"),
  2609. name: "Front (Alt)",
  2610. image: {
  2611. source: "./media/characters/adake/front-2.svg",
  2612. extra: 1,
  2613. bottom: 0.01
  2614. }
  2615. },
  2616. back: {
  2617. height: math.unit(7, "feet"),
  2618. weight: math.unit(100, "kg"),
  2619. name: "Back",
  2620. image: {
  2621. source: "./media/characters/adake/back.svg",
  2622. }
  2623. },
  2624. kneel: {
  2625. height: math.unit(5.385, "feet"),
  2626. weight: math.unit(100, "kg"),
  2627. name: "Kneeling",
  2628. image: {
  2629. source: "./media/characters/adake/kneel.svg",
  2630. bottom: 0.052
  2631. }
  2632. },
  2633. },
  2634. [
  2635. {
  2636. name: "Normal",
  2637. height: math.unit(7, "feet"),
  2638. },
  2639. {
  2640. name: "Macro",
  2641. height: math.unit(78, "feet"),
  2642. default: true
  2643. },
  2644. {
  2645. name: "Macro+",
  2646. height: math.unit(300, "meters")
  2647. },
  2648. {
  2649. name: "Macro++",
  2650. height: math.unit(2400, "meters")
  2651. },
  2652. {
  2653. name: "Megamacro",
  2654. height: math.unit(5167, "meters")
  2655. },
  2656. {
  2657. name: "Gigamacro",
  2658. height: math.unit(41769, "miles")
  2659. },
  2660. ]
  2661. ))
  2662. characterMakers.push(() => makeCharacter(
  2663. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2664. {
  2665. front: {
  2666. height: math.unit(1.65, "meters"),
  2667. weight: math.unit(50, "kg"),
  2668. name: "Front",
  2669. image: {
  2670. source: "./media/characters/elijah/front.svg",
  2671. extra: 858 / 830,
  2672. bottom: 95.5 / 953.8559
  2673. }
  2674. },
  2675. back: {
  2676. height: math.unit(1.65, "meters"),
  2677. weight: math.unit(50, "kg"),
  2678. name: "Back",
  2679. image: {
  2680. source: "./media/characters/elijah/back.svg",
  2681. extra: 895 / 850,
  2682. bottom: 5.3 / 897.956
  2683. }
  2684. },
  2685. frontNsfw: {
  2686. height: math.unit(1.65, "meters"),
  2687. weight: math.unit(50, "kg"),
  2688. name: "Front (NSFW)",
  2689. image: {
  2690. source: "./media/characters/elijah/front-nsfw.svg",
  2691. extra: 858 / 830,
  2692. bottom: 95.5 / 953.8559
  2693. }
  2694. },
  2695. backNsfw: {
  2696. height: math.unit(1.65, "meters"),
  2697. weight: math.unit(50, "kg"),
  2698. name: "Back (NSFW)",
  2699. image: {
  2700. source: "./media/characters/elijah/back-nsfw.svg",
  2701. extra: 895 / 850,
  2702. bottom: 5.3 / 897.956
  2703. }
  2704. },
  2705. dick: {
  2706. height: math.unit(1, "feet"),
  2707. name: "Dick",
  2708. image: {
  2709. source: "./media/characters/elijah/dick.svg"
  2710. }
  2711. },
  2712. beakOpen: {
  2713. height: math.unit(1.25, "feet"),
  2714. name: "Beak (Open)",
  2715. image: {
  2716. source: "./media/characters/elijah/beak-open.svg"
  2717. }
  2718. },
  2719. beakShut: {
  2720. height: math.unit(1.25, "feet"),
  2721. name: "Beak (Shut)",
  2722. image: {
  2723. source: "./media/characters/elijah/beak-shut.svg"
  2724. }
  2725. },
  2726. footFlexing: {
  2727. height: math.unit(1.61, "feet"),
  2728. name: "Foot (Flexing)",
  2729. image: {
  2730. source: "./media/characters/elijah/foot-flexing.svg"
  2731. }
  2732. },
  2733. footStepping: {
  2734. height: math.unit(1.44, "feet"),
  2735. name: "Foot (Stepping)",
  2736. image: {
  2737. source: "./media/characters/elijah/foot-stepping.svg"
  2738. }
  2739. },
  2740. plantigradeLeg: {
  2741. height: math.unit(2.34, "feet"),
  2742. name: "Plantigrade Leg",
  2743. image: {
  2744. source: "./media/characters/elijah/plantigrade-leg.svg"
  2745. }
  2746. },
  2747. plantigradeFootLeft: {
  2748. height: math.unit(0.9, "feet"),
  2749. name: "Plantigrade Foot (Left)",
  2750. image: {
  2751. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2752. }
  2753. },
  2754. plantigradeFootRight: {
  2755. height: math.unit(0.9, "feet"),
  2756. name: "Plantigrade Foot (Right)",
  2757. image: {
  2758. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(1.65, "meters")
  2766. },
  2767. {
  2768. name: "Macro",
  2769. height: math.unit(55, "meters"),
  2770. default: true
  2771. },
  2772. {
  2773. name: "Macro+",
  2774. height: math.unit(105, "meters")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7 + 2/12, "feet"),
  2783. weight: math.unit(320, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/rai/front.svg",
  2787. extra: 1802/1696,
  2788. bottom: 68/1870
  2789. }
  2790. },
  2791. frontDressed: {
  2792. height: math.unit(7 + 2/12, "feet"),
  2793. weight: math.unit(320, "kg"),
  2794. name: "Front (Dressed)",
  2795. image: {
  2796. source: "./media/characters/rai/front-dressed.svg",
  2797. extra: 1802/1696,
  2798. bottom: 68/1870
  2799. }
  2800. },
  2801. side: {
  2802. height: math.unit(7 + 2/12, "feet"),
  2803. weight: math.unit(320, "kg"),
  2804. name: "Side",
  2805. image: {
  2806. source: "./media/characters/rai/side.svg",
  2807. extra: 1789/1710,
  2808. bottom: 115/1904
  2809. }
  2810. },
  2811. back: {
  2812. height: math.unit(7 + 2/12, "feet"),
  2813. weight: math.unit(320, "kg"),
  2814. name: "Back",
  2815. image: {
  2816. source: "./media/characters/rai/back.svg",
  2817. extra: 1770/1707,
  2818. bottom: 28/1798
  2819. }
  2820. },
  2821. feral: {
  2822. height: math.unit(9.5, "feet"),
  2823. weight: math.unit(640, "kg"),
  2824. name: "Feral",
  2825. image: {
  2826. source: "./media/characters/rai/feral.svg",
  2827. extra: 945/553,
  2828. bottom: 176/1121
  2829. }
  2830. },
  2831. dragon: {
  2832. height: math.unit(23, "feet"),
  2833. weight: math.unit(50000, "lb"),
  2834. name: "Dragon",
  2835. image: {
  2836. source: "./media/characters/rai/dragon.svg",
  2837. extra: 2498 / 2030,
  2838. bottom: 85.2 / 2584
  2839. }
  2840. },
  2841. maw: {
  2842. height: math.unit(1.69, "feet"),
  2843. name: "Maw",
  2844. image: {
  2845. source: "./media/characters/rai/maw.svg"
  2846. }
  2847. },
  2848. },
  2849. [
  2850. {
  2851. name: "Normal",
  2852. height: math.unit(7 + 2/12, "feet")
  2853. },
  2854. {
  2855. name: "Big",
  2856. height: math.unit(11, "feet")
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(302, "feet"),
  2861. default: true
  2862. },
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2867. {
  2868. frontDressed: {
  2869. height: math.unit(216, "feet"),
  2870. weight: math.unit(7000000, "lb"),
  2871. name: "Front (Dressed)",
  2872. image: {
  2873. source: "./media/characters/jazzy/front-dressed.svg",
  2874. extra: 2738 / 2651,
  2875. bottom: 41.8 / 2786
  2876. }
  2877. },
  2878. backDressed: {
  2879. height: math.unit(216, "feet"),
  2880. weight: math.unit(7000000, "lb"),
  2881. name: "Back (Dressed)",
  2882. image: {
  2883. source: "./media/characters/jazzy/back-dressed.svg",
  2884. extra: 2775 / 2673,
  2885. bottom: 36.8 / 2817
  2886. }
  2887. },
  2888. front: {
  2889. height: math.unit(216, "feet"),
  2890. weight: math.unit(7000000, "lb"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/jazzy/front.svg",
  2894. extra: 2738 / 2651,
  2895. bottom: 41.8 / 2786
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(216, "feet"),
  2900. weight: math.unit(7000000, "lb"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/jazzy/back.svg",
  2904. extra: 2775 / 2673,
  2905. bottom: 36.8 / 2817
  2906. }
  2907. },
  2908. maw: {
  2909. height: math.unit(20, "feet"),
  2910. name: "Maw",
  2911. image: {
  2912. source: "./media/characters/jazzy/maw.svg"
  2913. }
  2914. },
  2915. paws: {
  2916. height: math.unit(27.5, "feet"),
  2917. name: "Paws",
  2918. image: {
  2919. source: "./media/characters/jazzy/paws.svg"
  2920. }
  2921. },
  2922. eye: {
  2923. height: math.unit(4.4, "feet"),
  2924. name: "Eye",
  2925. image: {
  2926. source: "./media/characters/jazzy/eye.svg"
  2927. }
  2928. },
  2929. droneOffense: {
  2930. height: math.unit(9.5, "inches"),
  2931. name: "Drone (Offense)",
  2932. image: {
  2933. source: "./media/characters/jazzy/drone-offense.svg"
  2934. }
  2935. },
  2936. droneRecon: {
  2937. height: math.unit(9.5, "inches"),
  2938. name: "Drone (Recon)",
  2939. image: {
  2940. source: "./media/characters/jazzy/drone-recon.svg"
  2941. }
  2942. },
  2943. droneDefense: {
  2944. height: math.unit(9.5, "inches"),
  2945. name: "Drone (Defense)",
  2946. image: {
  2947. source: "./media/characters/jazzy/drone-defense.svg"
  2948. }
  2949. },
  2950. },
  2951. [
  2952. {
  2953. name: "Macro",
  2954. height: math.unit(216, "feet"),
  2955. default: true
  2956. },
  2957. ]
  2958. ))
  2959. characterMakers.push(() => makeCharacter(
  2960. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2961. {
  2962. front: {
  2963. height: math.unit(9 + 6/12, "feet"),
  2964. weight: math.unit(700, "lb"),
  2965. name: "Front",
  2966. image: {
  2967. source: "./media/characters/flamm/front.svg",
  2968. extra: 1751/1632,
  2969. bottom: 46/1797
  2970. }
  2971. },
  2972. buff: {
  2973. height: math.unit(9 + 6/12, "feet"),
  2974. weight: math.unit(950, "lb"),
  2975. name: "Buff",
  2976. image: {
  2977. source: "./media/characters/flamm/buff.svg",
  2978. extra: 3018/2874,
  2979. bottom: 221/3239
  2980. }
  2981. },
  2982. },
  2983. [
  2984. {
  2985. name: "Normal",
  2986. height: math.unit(9.5, "feet")
  2987. },
  2988. {
  2989. name: "Macro",
  2990. height: math.unit(200, "feet"),
  2991. default: true
  2992. },
  2993. ]
  2994. ))
  2995. characterMakers.push(() => makeCharacter(
  2996. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2997. {
  2998. front: {
  2999. height: math.unit(5 + 3/12, "feet"),
  3000. weight: math.unit(60, "kg"),
  3001. name: "Front",
  3002. image: {
  3003. source: "./media/characters/zephiro/front.svg",
  3004. extra: 1873/1761,
  3005. bottom: 147/2020
  3006. }
  3007. },
  3008. side: {
  3009. height: math.unit(5 + 3/12, "feet"),
  3010. weight: math.unit(60, "kg"),
  3011. name: "Side",
  3012. image: {
  3013. source: "./media/characters/zephiro/side.svg",
  3014. extra: 1929/1827,
  3015. bottom: 65/1994
  3016. }
  3017. },
  3018. back: {
  3019. height: math.unit(5 + 3/12, "feet"),
  3020. weight: math.unit(60, "kg"),
  3021. name: "Back",
  3022. image: {
  3023. source: "./media/characters/zephiro/back.svg",
  3024. extra: 1926/1816,
  3025. bottom: 41/1967
  3026. }
  3027. },
  3028. hand: {
  3029. height: math.unit(0.68, "feet"),
  3030. name: "Hand",
  3031. image: {
  3032. source: "./media/characters/zephiro/hand.svg"
  3033. }
  3034. },
  3035. paw: {
  3036. height: math.unit(1, "feet"),
  3037. name: "Paw",
  3038. image: {
  3039. source: "./media/characters/zephiro/paw.svg"
  3040. }
  3041. },
  3042. beans: {
  3043. height: math.unit(0.93, "feet"),
  3044. name: "Beans",
  3045. image: {
  3046. source: "./media/characters/zephiro/beans.svg"
  3047. }
  3048. },
  3049. },
  3050. [
  3051. {
  3052. name: "Micro",
  3053. height: math.unit(3, "inches")
  3054. },
  3055. {
  3056. name: "Normal",
  3057. height: math.unit(5 + 3 / 12, "feet"),
  3058. default: true
  3059. },
  3060. {
  3061. name: "Macro",
  3062. height: math.unit(118, "feet")
  3063. },
  3064. ]
  3065. ))
  3066. characterMakers.push(() => makeCharacter(
  3067. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3068. {
  3069. front: {
  3070. height: math.unit(5, "feet"),
  3071. weight: math.unit(90, "kg"),
  3072. name: "Front",
  3073. image: {
  3074. source: "./media/characters/fory/front.svg",
  3075. extra: 2862 / 2674,
  3076. bottom: 180 / 3043.8
  3077. }
  3078. },
  3079. back: {
  3080. height: math.unit(5, "feet"),
  3081. weight: math.unit(90, "kg"),
  3082. name: "Back",
  3083. image: {
  3084. source: "./media/characters/fory/back.svg",
  3085. extra: 2962 / 2791,
  3086. bottom: 106 / 3071.8
  3087. }
  3088. },
  3089. foot: {
  3090. height: math.unit(2.14, "feet"),
  3091. name: "Foot",
  3092. image: {
  3093. source: "./media/characters/fory/foot.svg"
  3094. }
  3095. },
  3096. },
  3097. [
  3098. {
  3099. name: "Normal",
  3100. height: math.unit(5, "feet")
  3101. },
  3102. {
  3103. name: "Macro",
  3104. height: math.unit(50, "feet"),
  3105. default: true
  3106. },
  3107. {
  3108. name: "Megamacro",
  3109. height: math.unit(10, "miles")
  3110. },
  3111. {
  3112. name: "Gigamacro",
  3113. height: math.unit(5, "earths")
  3114. },
  3115. ]
  3116. ))
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(7, "feet"),
  3122. weight: math.unit(90, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/kurrikage/front.svg",
  3126. extra: 1845/1733,
  3127. bottom: 119/1964
  3128. }
  3129. },
  3130. back: {
  3131. height: math.unit(7, "feet"),
  3132. weight: math.unit(90, "kg"),
  3133. name: "Back",
  3134. image: {
  3135. source: "./media/characters/kurrikage/back.svg",
  3136. extra: 1790/1677,
  3137. bottom: 61/1851
  3138. }
  3139. },
  3140. dressed: {
  3141. height: math.unit(7, "feet"),
  3142. weight: math.unit(90, "kg"),
  3143. name: "Dressed",
  3144. image: {
  3145. source: "./media/characters/kurrikage/dressed.svg",
  3146. extra: 1845/1733,
  3147. bottom: 119/1964
  3148. }
  3149. },
  3150. foot: {
  3151. height: math.unit(1.5, "feet"),
  3152. name: "Foot",
  3153. image: {
  3154. source: "./media/characters/kurrikage/foot.svg"
  3155. }
  3156. },
  3157. staff: {
  3158. height: math.unit(6.7, "feet"),
  3159. name: "Staff",
  3160. image: {
  3161. source: "./media/characters/kurrikage/staff.svg"
  3162. }
  3163. },
  3164. peek: {
  3165. height: math.unit(1.05, "feet"),
  3166. name: "Peeking",
  3167. image: {
  3168. source: "./media/characters/kurrikage/peek.svg",
  3169. bottom: 0.08
  3170. }
  3171. },
  3172. },
  3173. [
  3174. {
  3175. name: "Normal",
  3176. height: math.unit(12, "feet"),
  3177. default: true
  3178. },
  3179. {
  3180. name: "Big",
  3181. height: math.unit(20, "feet")
  3182. },
  3183. {
  3184. name: "Macro",
  3185. height: math.unit(500, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(20, "miles")
  3190. },
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(6, "feet"),
  3198. weight: math.unit(75, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/shingo/front.svg",
  3202. extra: 1900/1825,
  3203. bottom: 82/1982
  3204. }
  3205. },
  3206. side: {
  3207. height: math.unit(6, "feet"),
  3208. weight: math.unit(75, "kg"),
  3209. name: "Side",
  3210. image: {
  3211. source: "./media/characters/shingo/side.svg",
  3212. extra: 1930/1865,
  3213. bottom: 16/1946
  3214. }
  3215. },
  3216. back: {
  3217. height: math.unit(6, "feet"),
  3218. weight: math.unit(75, "kg"),
  3219. name: "Back",
  3220. image: {
  3221. source: "./media/characters/shingo/back.svg",
  3222. extra: 1922/1852,
  3223. bottom: 16/1938
  3224. }
  3225. },
  3226. frontDressed: {
  3227. height: math.unit(6, "feet"),
  3228. weight: math.unit(150, "lb"),
  3229. name: "Front-dressed",
  3230. image: {
  3231. source: "./media/characters/shingo/front-dressed.svg",
  3232. extra: 1900/1825,
  3233. bottom: 82/1982
  3234. }
  3235. },
  3236. paw: {
  3237. height: math.unit(1.29, "feet"),
  3238. name: "Paw",
  3239. image: {
  3240. source: "./media/characters/shingo/paw.svg"
  3241. }
  3242. },
  3243. hand: {
  3244. height: math.unit(1.07, "feet"),
  3245. name: "Hand",
  3246. image: {
  3247. source: "./media/characters/shingo/hand.svg"
  3248. }
  3249. },
  3250. frontAlt: {
  3251. height: math.unit(6, "feet"),
  3252. weight: math.unit(75, "kg"),
  3253. name: "Front (Alt)",
  3254. image: {
  3255. source: "./media/characters/shingo/front-alt.svg",
  3256. extra: 3511 / 3338,
  3257. bottom: 0.005
  3258. }
  3259. },
  3260. frontAlt2: {
  3261. height: math.unit(6, "feet"),
  3262. weight: math.unit(75, "kg"),
  3263. name: "Front (Alt 2)",
  3264. image: {
  3265. source: "./media/characters/shingo/front-alt-2.svg",
  3266. extra: 706/681,
  3267. bottom: 11/717
  3268. }
  3269. },
  3270. pawAlt: {
  3271. height: math.unit(1, "feet"),
  3272. name: "Paw (Alt)",
  3273. image: {
  3274. source: "./media/characters/shingo/paw-alt.svg"
  3275. }
  3276. },
  3277. },
  3278. [
  3279. {
  3280. name: "Micro",
  3281. height: math.unit(4, "inches")
  3282. },
  3283. {
  3284. name: "Normal",
  3285. height: math.unit(6, "feet"),
  3286. default: true
  3287. },
  3288. {
  3289. name: "Macro",
  3290. height: math.unit(108, "feet")
  3291. },
  3292. {
  3293. name: "Macro+",
  3294. height: math.unit(1500, "feet")
  3295. },
  3296. ]
  3297. ))
  3298. characterMakers.push(() => makeCharacter(
  3299. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3300. {
  3301. side: {
  3302. height: math.unit(6, "feet"),
  3303. weight: math.unit(75, "kg"),
  3304. name: "Side",
  3305. image: {
  3306. source: "./media/characters/aigey/side.svg"
  3307. }
  3308. },
  3309. },
  3310. [
  3311. {
  3312. name: "Macro",
  3313. height: math.unit(200, "feet"),
  3314. default: true
  3315. },
  3316. {
  3317. name: "Megamacro",
  3318. height: math.unit(100, "miles")
  3319. },
  3320. ]
  3321. )
  3322. )
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3325. {
  3326. front: {
  3327. height: math.unit(5 + 5 / 12, "feet"),
  3328. weight: math.unit(75, "kg"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/natasha/front.svg",
  3332. extra: 859 / 824,
  3333. bottom: 23 / 879.6
  3334. }
  3335. },
  3336. frontNsfw: {
  3337. height: math.unit(5 + 5 / 12, "feet"),
  3338. weight: math.unit(75, "kg"),
  3339. name: "Front (NSFW)",
  3340. image: {
  3341. source: "./media/characters/natasha/front-nsfw.svg",
  3342. extra: 859 / 824,
  3343. bottom: 23 / 879.6
  3344. }
  3345. },
  3346. frontErect: {
  3347. height: math.unit(5 + 5 / 12, "feet"),
  3348. weight: math.unit(75, "kg"),
  3349. name: "Front (Erect)",
  3350. image: {
  3351. source: "./media/characters/natasha/front-erect.svg",
  3352. extra: 859 / 824,
  3353. bottom: 23 / 879.6
  3354. }
  3355. },
  3356. back: {
  3357. height: math.unit(5 + 5 / 12, "feet"),
  3358. weight: math.unit(75, "kg"),
  3359. name: "Back",
  3360. image: {
  3361. source: "./media/characters/natasha/back.svg",
  3362. extra: 887.9 / 852.6,
  3363. bottom: 9.7 / 896.4
  3364. }
  3365. },
  3366. backAlt: {
  3367. height: math.unit(5 + 5 / 12, "feet"),
  3368. weight: math.unit(75, "kg"),
  3369. name: "Back (Alt)",
  3370. image: {
  3371. source: "./media/characters/natasha/back-alt.svg",
  3372. extra: 1236.7 / 1192,
  3373. bottom: 22.3 / 1258.2
  3374. }
  3375. },
  3376. dick: {
  3377. height: math.unit(1.772, "feet"),
  3378. name: "Dick",
  3379. image: {
  3380. source: "./media/characters/natasha/dick.svg"
  3381. }
  3382. },
  3383. paw: {
  3384. height: math.unit(0.250, "meters"),
  3385. name: "Paw",
  3386. image: {
  3387. source: "./media/characters/natasha/paw.svg"
  3388. },
  3389. extraAttributes: {
  3390. "toeSize": {
  3391. name: "Toe Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.0024, "m^2")
  3395. },
  3396. "padSize": {
  3397. name: "Pad Size",
  3398. power: 2,
  3399. type: "area",
  3400. base: math.unit(0.00889, "m^2")
  3401. },
  3402. "pawSize": {
  3403. name: "Paw Size",
  3404. power: 2,
  3405. type: "area",
  3406. base: math.unit(0.023667, "m^2")
  3407. },
  3408. }
  3409. },
  3410. },
  3411. [
  3412. {
  3413. name: "Shortstack",
  3414. height: math.unit(3, "feet"),
  3415. default: true
  3416. },
  3417. {
  3418. name: "Normal",
  3419. height: math.unit(5 + 5 / 12, "feet")
  3420. },
  3421. {
  3422. name: "Large",
  3423. height: math.unit(12, "feet")
  3424. },
  3425. {
  3426. name: "Macro",
  3427. height: math.unit(100, "feet")
  3428. },
  3429. {
  3430. name: "Macro+",
  3431. height: math.unit(260, "feet")
  3432. },
  3433. {
  3434. name: "Macro++",
  3435. height: math.unit(1, "mile")
  3436. },
  3437. ]
  3438. ))
  3439. characterMakers.push(() => makeCharacter(
  3440. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3441. {
  3442. front: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(75, "kg"),
  3445. name: "Front",
  3446. image: {
  3447. source: "./media/characters/malik/front.svg",
  3448. extra: 1750/1561,
  3449. bottom: 80/1830
  3450. },
  3451. extraAttributes: {
  3452. "toeSize": {
  3453. name: "Toe Size",
  3454. power: 2,
  3455. type: "area",
  3456. base: math.unit(0.0159, "m^2")
  3457. },
  3458. "pawSize": {
  3459. name: "Paw Size",
  3460. power: 2,
  3461. type: "area",
  3462. base: math.unit(0.09834, "m^2")
  3463. },
  3464. }
  3465. },
  3466. side: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Side",
  3470. image: {
  3471. source: "./media/characters/malik/side.svg",
  3472. extra: 1802/1685,
  3473. bottom: 42/1844
  3474. },
  3475. extraAttributes: {
  3476. "toeSize": {
  3477. name: "Toe Size",
  3478. power: 2,
  3479. type: "area",
  3480. base: math.unit(0.0159, "m^2")
  3481. },
  3482. "pawSize": {
  3483. name: "Paw Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.09834, "m^2")
  3487. },
  3488. }
  3489. },
  3490. back: {
  3491. height: math.unit(6, "feet"),
  3492. weight: math.unit(75, "kg"),
  3493. name: "Back",
  3494. image: {
  3495. source: "./media/characters/malik/back.svg",
  3496. extra: 1803/1607,
  3497. bottom: 33/1836
  3498. },
  3499. extraAttributes: {
  3500. "toeSize": {
  3501. name: "Toe Size",
  3502. power: 2,
  3503. type: "area",
  3504. base: math.unit(0.0159, "m^2")
  3505. },
  3506. "pawSize": {
  3507. name: "Paw Size",
  3508. power: 2,
  3509. type: "area",
  3510. base: math.unit(0.09834, "m^2")
  3511. },
  3512. }
  3513. },
  3514. },
  3515. [
  3516. {
  3517. name: "Macro",
  3518. height: math.unit(156, "feet"),
  3519. default: true
  3520. },
  3521. {
  3522. name: "Macro+",
  3523. height: math.unit(1188, "feet")
  3524. },
  3525. ]
  3526. ))
  3527. characterMakers.push(() => makeCharacter(
  3528. { name: "Sefer", species: ["carbuncle"], 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/sefer/front.svg",
  3536. extra: 848 / 659,
  3537. bottom: 28.3 / 876.442
  3538. }
  3539. },
  3540. back: {
  3541. height: math.unit(6, "feet"),
  3542. weight: math.unit(75, "kg"),
  3543. name: "Back",
  3544. image: {
  3545. source: "./media/characters/sefer/back.svg",
  3546. extra: 864 / 695,
  3547. bottom: 10 / 871
  3548. }
  3549. },
  3550. frontDressed: {
  3551. height: math.unit(6, "feet"),
  3552. weight: math.unit(75, "kg"),
  3553. name: "Dressed",
  3554. image: {
  3555. source: "./media/characters/sefer/dressed.svg",
  3556. extra: 839 / 653,
  3557. bottom: 37.6 / 878
  3558. }
  3559. },
  3560. },
  3561. [
  3562. {
  3563. name: "Normal",
  3564. height: math.unit(6, "feet"),
  3565. default: true
  3566. },
  3567. {
  3568. name: "Big",
  3569. height: math.unit(8, "meters")
  3570. },
  3571. ]
  3572. ))
  3573. characterMakers.push(() => makeCharacter(
  3574. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3575. {
  3576. body: {
  3577. height: math.unit(2.2428, "meter"),
  3578. weight: math.unit(124.738, "kg"),
  3579. name: "Body",
  3580. image: {
  3581. extra: 1225 / 1050,
  3582. source: "./media/characters/north/front.svg"
  3583. }
  3584. }
  3585. },
  3586. [
  3587. {
  3588. name: "Micro",
  3589. height: math.unit(4, "inches")
  3590. },
  3591. {
  3592. name: "Macro",
  3593. height: math.unit(63, "meters")
  3594. },
  3595. {
  3596. name: "Megamacro",
  3597. height: math.unit(101, "miles"),
  3598. default: true
  3599. }
  3600. ]
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3604. {
  3605. angled: {
  3606. height: math.unit(4, "meter"),
  3607. weight: math.unit(150, "kg"),
  3608. name: "Angled",
  3609. image: {
  3610. source: "./media/characters/talan/angled-sfw.svg",
  3611. bottom: 29 / 3734
  3612. }
  3613. },
  3614. angledNsfw: {
  3615. height: math.unit(4, "meter"),
  3616. weight: math.unit(150, "kg"),
  3617. name: "Angled (NSFW)",
  3618. image: {
  3619. source: "./media/characters/talan/angled-nsfw.svg",
  3620. bottom: 29 / 3734
  3621. }
  3622. },
  3623. frontNsfw: {
  3624. height: math.unit(4, "meter"),
  3625. weight: math.unit(150, "kg"),
  3626. name: "Front (NSFW)",
  3627. image: {
  3628. source: "./media/characters/talan/front-nsfw.svg",
  3629. bottom: 29 / 3734
  3630. }
  3631. },
  3632. sideNsfw: {
  3633. height: math.unit(4, "meter"),
  3634. weight: math.unit(150, "kg"),
  3635. name: "Side (NSFW)",
  3636. image: {
  3637. source: "./media/characters/talan/side-nsfw.svg",
  3638. bottom: 29 / 3734
  3639. }
  3640. },
  3641. back: {
  3642. height: math.unit(4, "meter"),
  3643. weight: math.unit(150, "kg"),
  3644. name: "Back",
  3645. image: {
  3646. source: "./media/characters/talan/back.svg"
  3647. }
  3648. },
  3649. dickBottom: {
  3650. height: math.unit(0.621, "meter"),
  3651. name: "Dick (Bottom)",
  3652. image: {
  3653. source: "./media/characters/talan/dick-bottom.svg"
  3654. }
  3655. },
  3656. dickTop: {
  3657. height: math.unit(0.621, "meter"),
  3658. name: "Dick (Top)",
  3659. image: {
  3660. source: "./media/characters/talan/dick-top.svg"
  3661. }
  3662. },
  3663. dickSide: {
  3664. height: math.unit(0.305, "meter"),
  3665. name: "Dick (Side)",
  3666. image: {
  3667. source: "./media/characters/talan/dick-side.svg"
  3668. }
  3669. },
  3670. dickFront: {
  3671. height: math.unit(0.305, "meter"),
  3672. name: "Dick (Front)",
  3673. image: {
  3674. source: "./media/characters/talan/dick-front.svg"
  3675. }
  3676. },
  3677. },
  3678. [
  3679. {
  3680. name: "Normal",
  3681. height: math.unit(4, "meters")
  3682. },
  3683. {
  3684. name: "Macro",
  3685. height: math.unit(100, "meters")
  3686. },
  3687. {
  3688. name: "Megamacro",
  3689. height: math.unit(2, "miles"),
  3690. default: true
  3691. },
  3692. {
  3693. name: "Gigamacro",
  3694. height: math.unit(5000, "miles")
  3695. },
  3696. {
  3697. name: "Teramacro",
  3698. height: math.unit(100, "parsecs")
  3699. }
  3700. ]
  3701. ))
  3702. characterMakers.push(() => makeCharacter(
  3703. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3704. {
  3705. front: {
  3706. height: math.unit(2, "meter"),
  3707. weight: math.unit(90, "kg"),
  3708. name: "Front",
  3709. image: {
  3710. source: "./media/characters/gael'rathus/front.svg"
  3711. }
  3712. },
  3713. frontAlt: {
  3714. height: math.unit(2, "meter"),
  3715. weight: math.unit(90, "kg"),
  3716. name: "Front (alt)",
  3717. image: {
  3718. source: "./media/characters/gael'rathus/front-alt.svg"
  3719. }
  3720. },
  3721. frontAlt2: {
  3722. height: math.unit(2, "meter"),
  3723. weight: math.unit(90, "kg"),
  3724. name: "Front (alt 2)",
  3725. image: {
  3726. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3727. }
  3728. }
  3729. },
  3730. [
  3731. {
  3732. name: "Normal",
  3733. height: math.unit(9, "feet"),
  3734. default: true
  3735. },
  3736. {
  3737. name: "Large",
  3738. height: math.unit(25, "feet")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(0.25, "miles")
  3743. },
  3744. {
  3745. name: "Megamacro",
  3746. height: math.unit(10, "miles")
  3747. }
  3748. ]
  3749. ))
  3750. characterMakers.push(() => makeCharacter(
  3751. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3752. {
  3753. side: {
  3754. height: math.unit(2, "meter"),
  3755. weight: math.unit(140, "kg"),
  3756. name: "Side",
  3757. image: {
  3758. source: "./media/characters/sosha/side.svg",
  3759. extra: 1170/1006,
  3760. bottom: 94/1264
  3761. }
  3762. },
  3763. maw: {
  3764. height: math.unit(2.87, "feet"),
  3765. name: "Maw",
  3766. image: {
  3767. source: "./media/characters/sosha/maw.svg",
  3768. extra: 966/865,
  3769. bottom: 0/966
  3770. }
  3771. },
  3772. cooch: {
  3773. height: math.unit(5.6, "feet"),
  3774. name: "Cooch",
  3775. image: {
  3776. source: "./media/characters/sosha/cooch.svg"
  3777. }
  3778. },
  3779. },
  3780. [
  3781. {
  3782. name: "Normal",
  3783. height: math.unit(12, "feet"),
  3784. default: true
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3790. {
  3791. side: {
  3792. height: math.unit(5 + 5 / 12, "feet"),
  3793. weight: math.unit(170, "kg"),
  3794. name: "Side",
  3795. image: {
  3796. source: "./media/characters/runnola/side.svg",
  3797. extra: 741 / 448,
  3798. bottom: 0.05
  3799. }
  3800. },
  3801. },
  3802. [
  3803. {
  3804. name: "Small",
  3805. height: math.unit(3, "feet")
  3806. },
  3807. {
  3808. name: "Normal",
  3809. height: math.unit(5 + 5 / 12, "feet"),
  3810. default: true
  3811. },
  3812. {
  3813. name: "Big",
  3814. height: math.unit(10, "feet")
  3815. },
  3816. ]
  3817. ))
  3818. characterMakers.push(() => makeCharacter(
  3819. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3820. {
  3821. front: {
  3822. height: math.unit(2, "meter"),
  3823. weight: math.unit(50, "kg"),
  3824. name: "Front",
  3825. image: {
  3826. source: "./media/characters/kurribird/front.svg",
  3827. bottom: 0.015
  3828. }
  3829. },
  3830. frontAlt: {
  3831. height: math.unit(1.5, "meter"),
  3832. weight: math.unit(50, "kg"),
  3833. name: "Front (Alt)",
  3834. image: {
  3835. source: "./media/characters/kurribird/front-alt.svg",
  3836. extra: 1.45
  3837. }
  3838. },
  3839. },
  3840. [
  3841. {
  3842. name: "Normal",
  3843. height: math.unit(7, "feet")
  3844. },
  3845. {
  3846. name: "Big",
  3847. height: math.unit(12, "feet"),
  3848. default: true
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(1500, "feet")
  3853. },
  3854. {
  3855. name: "Megamacro",
  3856. height: math.unit(2, "miles")
  3857. }
  3858. ]
  3859. ))
  3860. characterMakers.push(() => makeCharacter(
  3861. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3862. {
  3863. front: {
  3864. height: math.unit(2, "meter"),
  3865. weight: math.unit(80, "kg"),
  3866. name: "Front",
  3867. image: {
  3868. source: "./media/characters/elbial/front.svg",
  3869. extra: 1643 / 1556,
  3870. bottom: 60.2 / 1696
  3871. }
  3872. },
  3873. side: {
  3874. height: math.unit(2, "meter"),
  3875. weight: math.unit(80, "kg"),
  3876. name: "Side",
  3877. image: {
  3878. source: "./media/characters/elbial/side.svg",
  3879. extra: 1601/1528,
  3880. bottom: 97/1698
  3881. }
  3882. },
  3883. back: {
  3884. height: math.unit(2, "meter"),
  3885. weight: math.unit(80, "kg"),
  3886. name: "Back",
  3887. image: {
  3888. source: "./media/characters/elbial/back.svg",
  3889. extra: 1653/1569,
  3890. bottom: 20/1673
  3891. }
  3892. },
  3893. frontDressed: {
  3894. height: math.unit(2, "meter"),
  3895. weight: math.unit(80, "kg"),
  3896. name: "Front (Dressed)",
  3897. image: {
  3898. source: "./media/characters/elbial/front-dressed.svg",
  3899. extra: 1638/1569,
  3900. bottom: 70/1708
  3901. }
  3902. },
  3903. genitals: {
  3904. height: math.unit(2 / 3.367, "meter"),
  3905. name: "Genitals",
  3906. image: {
  3907. source: "./media/characters/elbial/genitals.svg"
  3908. }
  3909. },
  3910. },
  3911. [
  3912. {
  3913. name: "Large",
  3914. height: math.unit(100, "feet")
  3915. },
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(500, "feet"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Megamacro",
  3923. height: math.unit(10, "miles")
  3924. },
  3925. {
  3926. name: "Gigamacro",
  3927. height: math.unit(25000, "miles")
  3928. },
  3929. {
  3930. name: "Full-Size",
  3931. height: math.unit(8000000, "gigaparsecs")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3937. {
  3938. front: {
  3939. height: math.unit(2, "meter"),
  3940. weight: math.unit(60, "kg"),
  3941. name: "Front",
  3942. image: {
  3943. source: "./media/characters/noah/front.svg"
  3944. }
  3945. },
  3946. talons: {
  3947. height: math.unit(0.315, "meter"),
  3948. name: "Talons",
  3949. image: {
  3950. source: "./media/characters/noah/talons.svg"
  3951. }
  3952. }
  3953. },
  3954. [
  3955. {
  3956. name: "Large",
  3957. height: math.unit(50, "feet")
  3958. },
  3959. {
  3960. name: "Macro",
  3961. height: math.unit(750, "feet"),
  3962. default: true
  3963. },
  3964. {
  3965. name: "Megamacro",
  3966. height: math.unit(50, "miles")
  3967. },
  3968. {
  3969. name: "Gigamacro",
  3970. height: math.unit(100000, "miles")
  3971. },
  3972. {
  3973. name: "Full-Size",
  3974. height: math.unit(3000000000, "miles")
  3975. }
  3976. ]
  3977. ))
  3978. characterMakers.push(() => makeCharacter(
  3979. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3980. {
  3981. front: {
  3982. height: math.unit(2, "meter"),
  3983. weight: math.unit(80, "kg"),
  3984. name: "Front",
  3985. image: {
  3986. source: "./media/characters/natalya/front.svg"
  3987. }
  3988. },
  3989. back: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(80, "kg"),
  3992. name: "Back",
  3993. image: {
  3994. source: "./media/characters/natalya/back.svg"
  3995. }
  3996. }
  3997. },
  3998. [
  3999. {
  4000. name: "Normal",
  4001. height: math.unit(150, "feet"),
  4002. default: true
  4003. },
  4004. {
  4005. name: "Megamacro",
  4006. height: math.unit(5, "miles")
  4007. },
  4008. {
  4009. name: "Full-Size",
  4010. height: math.unit(600, "kiloparsecs")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(50, "kg"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/erestrebah/front.svg",
  4023. extra: 1262/1162,
  4024. bottom: 96/1358
  4025. }
  4026. },
  4027. back: {
  4028. height: math.unit(2, "meter"),
  4029. weight: math.unit(50, "kg"),
  4030. name: "Back",
  4031. image: {
  4032. source: "./media/characters/erestrebah/back.svg",
  4033. extra: 1257/1139,
  4034. bottom: 13/1270
  4035. }
  4036. },
  4037. wing: {
  4038. height: math.unit(2, "meter"),
  4039. weight: math.unit(50, "kg"),
  4040. name: "Wing",
  4041. image: {
  4042. source: "./media/characters/erestrebah/wing.svg",
  4043. extra: 1262/1162,
  4044. bottom: 96/1358
  4045. }
  4046. },
  4047. mouth: {
  4048. height: math.unit(0.39, "feet"),
  4049. name: "Mouth",
  4050. image: {
  4051. source: "./media/characters/erestrebah/mouth.svg"
  4052. }
  4053. }
  4054. },
  4055. [
  4056. {
  4057. name: "Normal",
  4058. height: math.unit(10, "feet")
  4059. },
  4060. {
  4061. name: "Large",
  4062. height: math.unit(50, "feet"),
  4063. default: true
  4064. },
  4065. {
  4066. name: "Macro",
  4067. height: math.unit(300, "feet")
  4068. },
  4069. {
  4070. name: "Macro+",
  4071. height: math.unit(750, "feet")
  4072. },
  4073. {
  4074. name: "Megamacro",
  4075. height: math.unit(3, "miles")
  4076. }
  4077. ]
  4078. ))
  4079. characterMakers.push(() => makeCharacter(
  4080. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4081. {
  4082. front: {
  4083. height: math.unit(2, "meter"),
  4084. weight: math.unit(80, "kg"),
  4085. name: "Front",
  4086. image: {
  4087. source: "./media/characters/jennifer/front.svg",
  4088. bottom: 0.11,
  4089. extra: 1.16
  4090. }
  4091. },
  4092. frontAlt: {
  4093. height: math.unit(2, "meter"),
  4094. weight: math.unit(80, "kg"),
  4095. name: "Front (Alt)",
  4096. image: {
  4097. source: "./media/characters/jennifer/front-alt.svg"
  4098. }
  4099. }
  4100. },
  4101. [
  4102. {
  4103. name: "Canon Height",
  4104. height: math.unit(120, "feet"),
  4105. default: true
  4106. },
  4107. {
  4108. name: "Macro+",
  4109. height: math.unit(300, "feet")
  4110. },
  4111. {
  4112. name: "Megamacro",
  4113. height: math.unit(20000, "feet")
  4114. }
  4115. ]
  4116. ))
  4117. characterMakers.push(() => makeCharacter(
  4118. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4119. {
  4120. front: {
  4121. height: math.unit(2, "meter"),
  4122. weight: math.unit(50, "kg"),
  4123. name: "Front",
  4124. image: {
  4125. source: "./media/characters/kalista/front.svg",
  4126. extra: 1314/1145,
  4127. bottom: 101/1415
  4128. }
  4129. },
  4130. back: {
  4131. height: math.unit(2, "meter"),
  4132. weight: math.unit(50, "kg"),
  4133. name: "Back",
  4134. image: {
  4135. source: "./media/characters/kalista/back.svg",
  4136. extra: 1366 / 1156,
  4137. bottom: 33.9 / 1362.78
  4138. }
  4139. }
  4140. },
  4141. [
  4142. {
  4143. name: "Uncomfortably Small",
  4144. height: math.unit(10, "feet")
  4145. },
  4146. {
  4147. name: "Small",
  4148. height: math.unit(30, "feet")
  4149. },
  4150. {
  4151. name: "Macro",
  4152. height: math.unit(100, "feet"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Macro+",
  4157. height: math.unit(2000, "feet")
  4158. },
  4159. {
  4160. name: "True Form",
  4161. height: math.unit(8924, "miles")
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(2, "meter"),
  4170. weight: math.unit(120, "kg"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/ggv/front.svg"
  4174. }
  4175. },
  4176. side: {
  4177. height: math.unit(2, "meter"),
  4178. weight: math.unit(120, "kg"),
  4179. name: "Side",
  4180. image: {
  4181. source: "./media/characters/ggv/side.svg"
  4182. }
  4183. }
  4184. },
  4185. [
  4186. {
  4187. name: "Extremely Puny",
  4188. height: math.unit(9 + 5 / 12, "feet")
  4189. },
  4190. {
  4191. name: "Horribly Small",
  4192. height: math.unit(47.7, "miles"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Reasonably Sized",
  4197. height: math.unit(25000, "parsecs")
  4198. },
  4199. {
  4200. name: "Slightly Uncompressed",
  4201. height: math.unit(7.77e31, "parsecs")
  4202. },
  4203. {
  4204. name: "Omniversal",
  4205. height: math.unit(1e300, "meters")
  4206. },
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(2, "meter"),
  4214. weight: math.unit(75, "lb"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/napalm/front.svg"
  4218. }
  4219. },
  4220. back: {
  4221. height: math.unit(2, "meter"),
  4222. weight: math.unit(75, "lb"),
  4223. name: "Back",
  4224. image: {
  4225. source: "./media/characters/napalm/back.svg"
  4226. }
  4227. }
  4228. },
  4229. [
  4230. {
  4231. name: "Standard",
  4232. height: math.unit(55, "feet"),
  4233. default: true
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(7 + 5 / 6, "feet"),
  4242. weight: math.unit(325, "lb"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/asana/front.svg",
  4246. extra: 1133 / 1060,
  4247. bottom: 15.2 / 1148.6
  4248. }
  4249. },
  4250. back: {
  4251. height: math.unit(7 + 5 / 6, "feet"),
  4252. weight: math.unit(325, "lb"),
  4253. name: "Back",
  4254. image: {
  4255. source: "./media/characters/asana/back.svg",
  4256. extra: 1114 / 1043,
  4257. bottom: 5 / 1120
  4258. }
  4259. },
  4260. dressedDark: {
  4261. height: math.unit(7 + 5 / 6, "feet"),
  4262. weight: math.unit(325, "lb"),
  4263. name: "Dressed (Dark)",
  4264. image: {
  4265. source: "./media/characters/asana/dressed-dark.svg",
  4266. extra: 1133 / 1060,
  4267. bottom: 15.2 / 1148.6
  4268. }
  4269. },
  4270. dressedLight: {
  4271. height: math.unit(7 + 5 / 6, "feet"),
  4272. weight: math.unit(325, "lb"),
  4273. name: "Dressed (Light)",
  4274. image: {
  4275. source: "./media/characters/asana/dressed-light.svg",
  4276. extra: 1133 / 1060,
  4277. bottom: 15.2 / 1148.6
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Standard",
  4284. height: math.unit(7 + 5 / 6, "feet"),
  4285. default: true
  4286. },
  4287. {
  4288. name: "Large",
  4289. height: math.unit(10, "meters")
  4290. },
  4291. {
  4292. name: "Macro",
  4293. height: math.unit(2500, "meters")
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(5e6, "meters")
  4298. },
  4299. {
  4300. name: "Examacro",
  4301. height: math.unit(5e12, "lightyears")
  4302. },
  4303. {
  4304. name: "Max Size",
  4305. height: math.unit(1e31, "lightyears")
  4306. }
  4307. ]
  4308. ))
  4309. characterMakers.push(() => makeCharacter(
  4310. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4311. {
  4312. front: {
  4313. height: math.unit(2, "meter"),
  4314. weight: math.unit(60, "kg"),
  4315. name: "Front",
  4316. image: {
  4317. source: "./media/characters/ebony/front.svg",
  4318. bottom: 0.03,
  4319. extra: 1045 / 810 + 0.03
  4320. }
  4321. },
  4322. side: {
  4323. height: math.unit(2, "meter"),
  4324. weight: math.unit(60, "kg"),
  4325. name: "Side",
  4326. image: {
  4327. source: "./media/characters/ebony/side.svg",
  4328. bottom: 0.03,
  4329. extra: 1045 / 810 + 0.03
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(60, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/ebony/back.svg",
  4338. bottom: 0.01,
  4339. extra: 1045 / 810 + 0.01
  4340. }
  4341. },
  4342. },
  4343. [
  4344. // TODO check why I did this lol
  4345. {
  4346. name: "Standard",
  4347. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(200, "feet")
  4353. },
  4354. {
  4355. name: "Gigamacro",
  4356. height: math.unit(13000, "km")
  4357. }
  4358. ]
  4359. ))
  4360. characterMakers.push(() => makeCharacter(
  4361. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4362. {
  4363. front: {
  4364. height: math.unit(6, "feet"),
  4365. weight: math.unit(175, "lb"),
  4366. name: "Front",
  4367. image: {
  4368. source: "./media/characters/mountain/front.svg",
  4369. extra: 972 / 955,
  4370. bottom: 64 / 1036.6
  4371. }
  4372. },
  4373. back: {
  4374. height: math.unit(6, "feet"),
  4375. weight: math.unit(175, "lb"),
  4376. name: "Back",
  4377. image: {
  4378. source: "./media/characters/mountain/back.svg",
  4379. extra: 970 / 950,
  4380. bottom: 28.25 / 999
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Large",
  4387. height: math.unit(20, "meters")
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(300, "meters")
  4392. },
  4393. {
  4394. name: "Gigamacro",
  4395. height: math.unit(10000, "km"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Examacro",
  4400. height: math.unit(10e9, "lightyears")
  4401. }
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4406. {
  4407. front: {
  4408. height: math.unit(8, "feet"),
  4409. weight: math.unit(500, "lb"),
  4410. name: "Front",
  4411. image: {
  4412. source: "./media/characters/rick/front.svg"
  4413. }
  4414. }
  4415. },
  4416. [
  4417. {
  4418. name: "Normal",
  4419. height: math.unit(8, "feet"),
  4420. default: true
  4421. },
  4422. {
  4423. name: "Macro",
  4424. height: math.unit(5, "km")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4430. {
  4431. front: {
  4432. height: math.unit(8, "feet"),
  4433. weight: math.unit(120, "lb"),
  4434. name: "Front",
  4435. image: {
  4436. source: "./media/characters/ona/front.svg"
  4437. }
  4438. },
  4439. frontAlt: {
  4440. height: math.unit(8, "feet"),
  4441. weight: math.unit(120, "lb"),
  4442. name: "Front (Alt)",
  4443. image: {
  4444. source: "./media/characters/ona/front-alt.svg"
  4445. }
  4446. },
  4447. back: {
  4448. height: math.unit(8, "feet"),
  4449. weight: math.unit(120, "lb"),
  4450. name: "Back",
  4451. image: {
  4452. source: "./media/characters/ona/back.svg"
  4453. }
  4454. },
  4455. foot: {
  4456. height: math.unit(1.1, "feet"),
  4457. name: "Foot",
  4458. image: {
  4459. source: "./media/characters/ona/foot.svg"
  4460. }
  4461. }
  4462. },
  4463. [
  4464. {
  4465. name: "Megamacro",
  4466. height: math.unit(70, "km"),
  4467. default: true
  4468. },
  4469. {
  4470. name: "Gigamacro",
  4471. height: math.unit(681818, "miles")
  4472. },
  4473. {
  4474. name: "Examacro",
  4475. height: math.unit(3800000, "lightyears")
  4476. },
  4477. ]
  4478. ))
  4479. characterMakers.push(() => makeCharacter(
  4480. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4481. {
  4482. front: {
  4483. height: math.unit(12, "feet"),
  4484. weight: math.unit(3000, "lb"),
  4485. name: "Front",
  4486. image: {
  4487. source: "./media/characters/mech/front.svg",
  4488. extra: 2900 / 2770,
  4489. bottom: 110 / 3010
  4490. }
  4491. },
  4492. back: {
  4493. height: math.unit(12, "feet"),
  4494. weight: math.unit(3000, "lb"),
  4495. name: "Back",
  4496. image: {
  4497. source: "./media/characters/mech/back.svg",
  4498. extra: 3011 / 2890,
  4499. bottom: 94 / 3105
  4500. }
  4501. },
  4502. maw: {
  4503. height: math.unit(3.07, "feet"),
  4504. name: "Maw",
  4505. image: {
  4506. source: "./media/characters/mech/maw.svg"
  4507. }
  4508. },
  4509. head: {
  4510. height: math.unit(3.07, "feet"),
  4511. name: "Head",
  4512. image: {
  4513. source: "./media/characters/mech/head.svg"
  4514. }
  4515. },
  4516. dick: {
  4517. height: math.unit(1.43, "feet"),
  4518. name: "Dick",
  4519. image: {
  4520. source: "./media/characters/mech/dick.svg"
  4521. }
  4522. },
  4523. },
  4524. [
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(12, "feet")
  4528. },
  4529. {
  4530. name: "Macro",
  4531. height: math.unit(300, "feet"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Macro+",
  4536. height: math.unit(1500, "feet")
  4537. },
  4538. ]
  4539. ))
  4540. characterMakers.push(() => makeCharacter(
  4541. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4542. {
  4543. front: {
  4544. height: math.unit(1.3, "meter"),
  4545. weight: math.unit(30, "kg"),
  4546. name: "Front",
  4547. image: {
  4548. source: "./media/characters/gregory/front.svg",
  4549. }
  4550. }
  4551. },
  4552. [
  4553. {
  4554. name: "Normal",
  4555. height: math.unit(1.3, "meter"),
  4556. default: true
  4557. },
  4558. {
  4559. name: "Macro",
  4560. height: math.unit(20, "meter")
  4561. }
  4562. ]
  4563. ))
  4564. characterMakers.push(() => makeCharacter(
  4565. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4566. {
  4567. front: {
  4568. height: math.unit(2.8, "meter"),
  4569. weight: math.unit(200, "kg"),
  4570. name: "Front",
  4571. image: {
  4572. source: "./media/characters/elory/front.svg",
  4573. }
  4574. }
  4575. },
  4576. [
  4577. {
  4578. name: "Normal",
  4579. height: math.unit(2.8, "meter"),
  4580. default: true
  4581. },
  4582. {
  4583. name: "Macro",
  4584. height: math.unit(38, "meter")
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4590. {
  4591. front: {
  4592. height: math.unit(470, "feet"),
  4593. weight: math.unit(924, "tons"),
  4594. name: "Front",
  4595. image: {
  4596. source: "./media/characters/angelpatamon/front.svg",
  4597. }
  4598. }
  4599. },
  4600. [
  4601. {
  4602. name: "Normal",
  4603. height: math.unit(470, "feet"),
  4604. default: true
  4605. },
  4606. {
  4607. name: "Deity Size I",
  4608. height: math.unit(28651.2, "km")
  4609. },
  4610. {
  4611. name: "Deity Size II",
  4612. height: math.unit(171907.2, "km")
  4613. }
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4618. {
  4619. side: {
  4620. height: math.unit(7.2, "meter"),
  4621. weight: math.unit(8.2, "tons"),
  4622. name: "Side",
  4623. image: {
  4624. source: "./media/characters/cryae/side.svg",
  4625. extra: 3500 / 1500
  4626. }
  4627. }
  4628. },
  4629. [
  4630. {
  4631. name: "Normal",
  4632. height: math.unit(7.2, "meter"),
  4633. default: true
  4634. }
  4635. ]
  4636. ))
  4637. characterMakers.push(() => makeCharacter(
  4638. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4639. {
  4640. front: {
  4641. height: math.unit(6, "feet"),
  4642. weight: math.unit(175, "lb"),
  4643. name: "Front",
  4644. image: {
  4645. source: "./media/characters/xera/front.svg",
  4646. extra: 2377 / 1972,
  4647. bottom: 75.5 / 2452
  4648. }
  4649. },
  4650. side: {
  4651. height: math.unit(6, "feet"),
  4652. weight: math.unit(175, "lb"),
  4653. name: "Side",
  4654. image: {
  4655. source: "./media/characters/xera/side.svg",
  4656. extra: 2345 / 2019,
  4657. bottom: 39.7 / 2384
  4658. }
  4659. },
  4660. back: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(175, "lb"),
  4663. name: "Back",
  4664. image: {
  4665. source: "./media/characters/xera/back.svg",
  4666. extra: 2095 / 1984,
  4667. bottom: 67 / 2166
  4668. }
  4669. },
  4670. },
  4671. [
  4672. {
  4673. name: "Small",
  4674. height: math.unit(10, "feet")
  4675. },
  4676. {
  4677. name: "Macro",
  4678. height: math.unit(500, "meters"),
  4679. default: true
  4680. },
  4681. {
  4682. name: "Macro+",
  4683. height: math.unit(10, "km")
  4684. },
  4685. {
  4686. name: "Gigamacro",
  4687. height: math.unit(25000, "km")
  4688. },
  4689. {
  4690. name: "Teramacro",
  4691. height: math.unit(3e6, "km")
  4692. }
  4693. ]
  4694. ))
  4695. characterMakers.push(() => makeCharacter(
  4696. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4697. {
  4698. front: {
  4699. height: math.unit(6, "feet"),
  4700. weight: math.unit(175, "lb"),
  4701. name: "Front",
  4702. image: {
  4703. source: "./media/characters/nebula/front.svg",
  4704. extra: 2566 / 2362,
  4705. bottom: 81 / 2644
  4706. }
  4707. }
  4708. },
  4709. [
  4710. {
  4711. name: "Small",
  4712. height: math.unit(4.5, "meters")
  4713. },
  4714. {
  4715. name: "Macro",
  4716. height: math.unit(1500, "meters"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Megamacro",
  4721. height: math.unit(150, "km")
  4722. },
  4723. {
  4724. name: "Gigamacro",
  4725. height: math.unit(27000, "km")
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(6, "feet"),
  4734. weight: math.unit(225, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/abysgar/front.svg",
  4738. extra: 1739/1614,
  4739. bottom: 71/1810
  4740. }
  4741. },
  4742. frontNsfw: {
  4743. height: math.unit(6, "feet"),
  4744. weight: math.unit(225, "lb"),
  4745. name: "Front (NSFW)",
  4746. image: {
  4747. source: "./media/characters/abysgar/front-nsfw.svg",
  4748. extra: 1739/1614,
  4749. bottom: 71/1810
  4750. }
  4751. },
  4752. back: {
  4753. height: math.unit(4.6, "feet"),
  4754. weight: math.unit(225, "lb"),
  4755. name: "Back",
  4756. image: {
  4757. source: "./media/characters/abysgar/back.svg",
  4758. extra: 1384/1327,
  4759. bottom: 0/1384
  4760. }
  4761. },
  4762. head: {
  4763. height: math.unit(1.25, "feet"),
  4764. name: "Head",
  4765. image: {
  4766. source: "./media/characters/abysgar/head.svg",
  4767. extra: 669/569,
  4768. bottom: 0/669
  4769. }
  4770. },
  4771. },
  4772. [
  4773. {
  4774. name: "Small",
  4775. height: math.unit(4.5, "meters")
  4776. },
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(1250, "meters"),
  4780. default: true
  4781. },
  4782. {
  4783. name: "Megamacro",
  4784. height: math.unit(125, "km")
  4785. },
  4786. {
  4787. name: "Gigamacro",
  4788. height: math.unit(26000, "km")
  4789. }
  4790. ]
  4791. ))
  4792. characterMakers.push(() => makeCharacter(
  4793. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4794. {
  4795. front: {
  4796. height: math.unit(6, "feet"),
  4797. weight: math.unit(180, "lb"),
  4798. name: "Front",
  4799. image: {
  4800. source: "./media/characters/yakuz/front.svg"
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Small",
  4807. height: math.unit(5, "meters")
  4808. },
  4809. {
  4810. name: "Macro",
  4811. height: math.unit(1500, "meters"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Megamacro",
  4816. height: math.unit(200, "km")
  4817. },
  4818. {
  4819. name: "Gigamacro",
  4820. height: math.unit(100000, "km")
  4821. }
  4822. ]
  4823. ))
  4824. characterMakers.push(() => makeCharacter(
  4825. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4826. {
  4827. front: {
  4828. height: math.unit(6, "feet"),
  4829. weight: math.unit(175, "lb"),
  4830. name: "Front",
  4831. image: {
  4832. source: "./media/characters/mirova/front.svg",
  4833. extra: 3334 / 3071,
  4834. bottom: 42 / 3375.6
  4835. }
  4836. }
  4837. },
  4838. [
  4839. {
  4840. name: "Small",
  4841. height: math.unit(5, "meters")
  4842. },
  4843. {
  4844. name: "Macro",
  4845. height: math.unit(900, "meters"),
  4846. default: true
  4847. },
  4848. {
  4849. name: "Megamacro",
  4850. height: math.unit(135, "km")
  4851. },
  4852. {
  4853. name: "Gigamacro",
  4854. height: math.unit(20000, "km")
  4855. }
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4860. {
  4861. side: {
  4862. height: math.unit(28.35, "feet"),
  4863. weight: math.unit(99.75, "tons"),
  4864. name: "Side",
  4865. image: {
  4866. source: "./media/characters/asana-mech/side.svg",
  4867. extra: 923 / 699,
  4868. bottom: 50 / 975
  4869. }
  4870. },
  4871. chaingun: {
  4872. height: math.unit(7, "feet"),
  4873. weight: math.unit(2400, "lb"),
  4874. name: "Chaingun",
  4875. image: {
  4876. source: "./media/characters/asana-mech/chaingun.svg"
  4877. }
  4878. },
  4879. laser: {
  4880. height: math.unit(7.12, "feet"),
  4881. weight: math.unit(2000, "lb"),
  4882. name: "Laser",
  4883. image: {
  4884. source: "./media/characters/asana-mech/laser.svg"
  4885. }
  4886. },
  4887. },
  4888. [
  4889. {
  4890. name: "Normal",
  4891. height: math.unit(28.35, "feet"),
  4892. default: true
  4893. },
  4894. {
  4895. name: "Macro",
  4896. height: math.unit(2500, "feet")
  4897. },
  4898. {
  4899. name: "Megamacro",
  4900. height: math.unit(25, "miles")
  4901. },
  4902. {
  4903. name: "Examacro",
  4904. height: math.unit(6e8, "lightyears")
  4905. },
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4910. {
  4911. front: {
  4912. height: math.unit(5, "meters"),
  4913. weight: math.unit(1000, "kg"),
  4914. name: "Front",
  4915. image: {
  4916. source: "./media/characters/asche/front.svg",
  4917. extra: 1258 / 1190,
  4918. bottom: 47 / 1305
  4919. }
  4920. },
  4921. frontUnderwear: {
  4922. height: math.unit(5, "meters"),
  4923. weight: math.unit(1000, "kg"),
  4924. name: "Front (Underwear)",
  4925. image: {
  4926. source: "./media/characters/asche/front-underwear.svg",
  4927. extra: 1258 / 1190,
  4928. bottom: 47 / 1305
  4929. }
  4930. },
  4931. frontDressed: {
  4932. height: math.unit(5, "meters"),
  4933. weight: math.unit(1000, "kg"),
  4934. name: "Front (Dressed)",
  4935. image: {
  4936. source: "./media/characters/asche/front-dressed.svg",
  4937. extra: 1258 / 1190,
  4938. bottom: 47 / 1305
  4939. }
  4940. },
  4941. frontArmor: {
  4942. height: math.unit(5, "meters"),
  4943. weight: math.unit(1000, "kg"),
  4944. name: "Front (Armored)",
  4945. image: {
  4946. source: "./media/characters/asche/front-armored.svg",
  4947. extra: 1374 / 1308,
  4948. bottom: 23 / 1397
  4949. }
  4950. },
  4951. mp724: {
  4952. height: math.unit(0.96, "meters"),
  4953. weight: math.unit(38, "kg"),
  4954. name: "H&K MP724",
  4955. image: {
  4956. source: "./media/characters/asche/h&k-mp724.svg"
  4957. }
  4958. },
  4959. side: {
  4960. height: math.unit(5, "meters"),
  4961. weight: math.unit(1000, "kg"),
  4962. name: "Side",
  4963. image: {
  4964. source: "./media/characters/asche/side.svg",
  4965. extra: 1717 / 1609,
  4966. bottom: 0.005
  4967. }
  4968. },
  4969. back: {
  4970. height: math.unit(5, "meters"),
  4971. weight: math.unit(1000, "kg"),
  4972. name: "Back",
  4973. image: {
  4974. source: "./media/characters/asche/back.svg",
  4975. extra: 1570 / 1501
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "DEFCON 5",
  4982. height: math.unit(5, "meters")
  4983. },
  4984. {
  4985. name: "DEFCON 4",
  4986. height: math.unit(500, "meters"),
  4987. default: true
  4988. },
  4989. {
  4990. name: "DEFCON 3",
  4991. height: math.unit(5, "km")
  4992. },
  4993. {
  4994. name: "DEFCON 2",
  4995. height: math.unit(500, "km")
  4996. },
  4997. {
  4998. name: "DEFCON 1",
  4999. height: math.unit(500000, "km")
  5000. },
  5001. {
  5002. name: "DEFCON 0",
  5003. height: math.unit(3, "gigaparsecs")
  5004. },
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(2, "meters"),
  5012. weight: math.unit(76, "kg"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/gale/front.svg"
  5016. }
  5017. },
  5018. frontAlt1: {
  5019. height: math.unit(2, "meters"),
  5020. weight: math.unit(76, "kg"),
  5021. name: "Front (Alt 1)",
  5022. image: {
  5023. source: "./media/characters/gale/front-alt-1.svg"
  5024. }
  5025. },
  5026. frontAlt2: {
  5027. height: math.unit(2, "meters"),
  5028. weight: math.unit(76, "kg"),
  5029. name: "Front (Alt 2)",
  5030. image: {
  5031. source: "./media/characters/gale/front-alt-2.svg"
  5032. }
  5033. },
  5034. },
  5035. [
  5036. {
  5037. name: "Normal",
  5038. height: math.unit(7, "feet")
  5039. },
  5040. {
  5041. name: "Macro",
  5042. height: math.unit(150, "feet"),
  5043. default: true
  5044. },
  5045. {
  5046. name: "Macro+",
  5047. height: math.unit(300, "feet")
  5048. },
  5049. ]
  5050. ))
  5051. characterMakers.push(() => makeCharacter(
  5052. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5053. {
  5054. front: {
  5055. height: math.unit(5 + 10/12, "feet"),
  5056. weight: math.unit(67, "kg"),
  5057. name: "Front",
  5058. image: {
  5059. source: "./media/characters/draylen/front.svg",
  5060. extra: 832/777,
  5061. bottom: 85/917
  5062. }
  5063. }
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(5 + 10/12, "feet")
  5069. },
  5070. {
  5071. name: "Macro",
  5072. height: math.unit(150, "feet"),
  5073. default: true
  5074. }
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5079. {
  5080. front: {
  5081. height: math.unit(7 + 9 / 12, "feet"),
  5082. weight: math.unit(379, "lbs"),
  5083. name: "Front",
  5084. image: {
  5085. source: "./media/characters/chez/front.svg"
  5086. }
  5087. },
  5088. side: {
  5089. height: math.unit(7 + 9 / 12, "feet"),
  5090. weight: math.unit(379, "lbs"),
  5091. name: "Side",
  5092. image: {
  5093. source: "./media/characters/chez/side.svg"
  5094. }
  5095. }
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(7 + 9 / 12, "feet"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "God King",
  5105. height: math.unit(9750000, "meters")
  5106. }
  5107. ]
  5108. ))
  5109. characterMakers.push(() => makeCharacter(
  5110. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5111. {
  5112. front: {
  5113. height: math.unit(6, "feet"),
  5114. weight: math.unit(275, "lbs"),
  5115. name: "Front",
  5116. image: {
  5117. source: "./media/characters/kaylum/front.svg",
  5118. bottom: 0.01,
  5119. extra: 1166 / 1031
  5120. }
  5121. },
  5122. frontWingless: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(275, "lbs"),
  5125. name: "Front (Wingless)",
  5126. image: {
  5127. source: "./media/characters/kaylum/front-wingless.svg",
  5128. bottom: 0.01,
  5129. extra: 1117 / 1031
  5130. }
  5131. }
  5132. },
  5133. [
  5134. {
  5135. name: "Normal",
  5136. height: math.unit(3.05, "meters")
  5137. },
  5138. {
  5139. name: "Master",
  5140. height: math.unit(5.5, "meters")
  5141. },
  5142. {
  5143. name: "Rampage",
  5144. height: math.unit(19, "meters")
  5145. },
  5146. {
  5147. name: "Macro Lite",
  5148. height: math.unit(37, "meters")
  5149. },
  5150. {
  5151. name: "Hyper Predator",
  5152. height: math.unit(61, "meters")
  5153. },
  5154. {
  5155. name: "Macro",
  5156. height: math.unit(138, "meters"),
  5157. default: true
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(5 + 5 / 12, "feet"),
  5166. weight: math.unit(120, "lbs"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/geta/front.svg",
  5170. extra: 1003/933,
  5171. bottom: 21/1024
  5172. }
  5173. },
  5174. paw: {
  5175. height: math.unit(0.35, "feet"),
  5176. name: "Paw",
  5177. image: {
  5178. source: "./media/characters/geta/paw.svg"
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Micro",
  5185. height: math.unit(3, "inches"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Normal",
  5190. height: math.unit(5 + 5 / 12, "feet")
  5191. }
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5196. {
  5197. front: {
  5198. height: math.unit(6, "feet"),
  5199. weight: math.unit(300, "lbs"),
  5200. name: "Front",
  5201. image: {
  5202. source: "./media/characters/tyrnn/front.svg"
  5203. }
  5204. }
  5205. },
  5206. [
  5207. {
  5208. name: "Main Height",
  5209. height: math.unit(355, "feet"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Fave. Height",
  5214. height: math.unit(2400, "feet")
  5215. }
  5216. ]
  5217. ))
  5218. characterMakers.push(() => makeCharacter(
  5219. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5220. {
  5221. front: {
  5222. height: math.unit(6, "feet"),
  5223. weight: math.unit(300, "lbs"),
  5224. name: "Front",
  5225. image: {
  5226. source: "./media/characters/appledectomy/front.svg"
  5227. }
  5228. }
  5229. },
  5230. [
  5231. {
  5232. name: "Macro",
  5233. height: math.unit(2500, "feet")
  5234. },
  5235. {
  5236. name: "Megamacro",
  5237. height: math.unit(50, "miles"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Gigamacro",
  5242. height: math.unit(5000, "miles")
  5243. },
  5244. {
  5245. name: "Teramacro",
  5246. height: math.unit(250000, "miles")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(200, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/vulpes/front.svg",
  5259. extra: 573 / 543,
  5260. bottom: 0.033
  5261. }
  5262. },
  5263. side: {
  5264. height: math.unit(6, "feet"),
  5265. weight: math.unit(200, "lbs"),
  5266. name: "Side",
  5267. image: {
  5268. source: "./media/characters/vulpes/side.svg",
  5269. extra: 577 / 549,
  5270. bottom: 11 / 588
  5271. }
  5272. },
  5273. back: {
  5274. height: math.unit(6, "feet"),
  5275. weight: math.unit(200, "lbs"),
  5276. name: "Back",
  5277. image: {
  5278. source: "./media/characters/vulpes/back.svg",
  5279. extra: 573 / 549,
  5280. bottom: 20 / 593
  5281. }
  5282. },
  5283. feet: {
  5284. height: math.unit(1.276, "feet"),
  5285. name: "Feet",
  5286. image: {
  5287. source: "./media/characters/vulpes/feet.svg"
  5288. }
  5289. },
  5290. maw: {
  5291. height: math.unit(1.18, "feet"),
  5292. name: "Maw",
  5293. image: {
  5294. source: "./media/characters/vulpes/maw.svg"
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Micro",
  5301. height: math.unit(2, "inches")
  5302. },
  5303. {
  5304. name: "Normal",
  5305. height: math.unit(6.3, "feet")
  5306. },
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(850, "feet")
  5310. },
  5311. {
  5312. name: "Megamacro",
  5313. height: math.unit(7500, "feet"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Gigamacro",
  5318. height: math.unit(570000, "miles")
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(210, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/rain-fallen/front.svg"
  5331. }
  5332. },
  5333. side: {
  5334. height: math.unit(6, "feet"),
  5335. weight: math.unit(210, "lbs"),
  5336. name: "Side",
  5337. image: {
  5338. source: "./media/characters/rain-fallen/side.svg"
  5339. }
  5340. },
  5341. back: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(210, "lbs"),
  5344. name: "Back",
  5345. image: {
  5346. source: "./media/characters/rain-fallen/back.svg"
  5347. }
  5348. },
  5349. feral: {
  5350. height: math.unit(9, "feet"),
  5351. weight: math.unit(700, "lbs"),
  5352. name: "Feral",
  5353. image: {
  5354. source: "./media/characters/rain-fallen/feral.svg"
  5355. }
  5356. },
  5357. },
  5358. [
  5359. {
  5360. name: "Meddling with Mortals",
  5361. height: math.unit(8 + 8/12, "feet")
  5362. },
  5363. {
  5364. name: "Normal",
  5365. height: math.unit(5, "meter")
  5366. },
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(150, "meter"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Megamacro",
  5374. height: math.unit(278e6, "meter")
  5375. },
  5376. {
  5377. name: "Gigamacro",
  5378. height: math.unit(2e9, "meter")
  5379. },
  5380. {
  5381. name: "Teramacro",
  5382. height: math.unit(8e12, "meter")
  5383. },
  5384. {
  5385. name: "Devourer",
  5386. height: math.unit(14, "zettameters")
  5387. },
  5388. {
  5389. name: "Scarlet King",
  5390. height: math.unit(18, "yottameters")
  5391. },
  5392. {
  5393. name: "Void",
  5394. height: math.unit(1e88, "yottameters")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5400. {
  5401. standing: {
  5402. height: math.unit(6, "feet"),
  5403. weight: math.unit(180, "lbs"),
  5404. name: "Standing",
  5405. image: {
  5406. source: "./media/characters/zaakira/standing.svg",
  5407. extra: 1599/1504,
  5408. bottom: 39/1638
  5409. }
  5410. },
  5411. laying: {
  5412. height: math.unit(3.3, "feet"),
  5413. weight: math.unit(180, "lbs"),
  5414. name: "Laying",
  5415. image: {
  5416. source: "./media/characters/zaakira/laying.svg"
  5417. }
  5418. },
  5419. },
  5420. [
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(12, "feet")
  5424. },
  5425. {
  5426. name: "Macro",
  5427. height: math.unit(279, "feet"),
  5428. default: true
  5429. }
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5434. {
  5435. femSfw: {
  5436. height: math.unit(8, "feet"),
  5437. weight: math.unit(350, "lb"),
  5438. name: "Fem",
  5439. image: {
  5440. source: "./media/characters/sigvald/fem-sfw.svg",
  5441. extra: 182 / 164,
  5442. bottom: 8.7 / 190.5
  5443. }
  5444. },
  5445. femNsfw: {
  5446. height: math.unit(8, "feet"),
  5447. weight: math.unit(350, "lb"),
  5448. name: "Fem (NSFW)",
  5449. image: {
  5450. source: "./media/characters/sigvald/fem-nsfw.svg",
  5451. extra: 182 / 164,
  5452. bottom: 8.7 / 190.5
  5453. }
  5454. },
  5455. maleNsfw: {
  5456. height: math.unit(8, "feet"),
  5457. weight: math.unit(350, "lb"),
  5458. name: "Male (NSFW)",
  5459. image: {
  5460. source: "./media/characters/sigvald/male-nsfw.svg",
  5461. extra: 182 / 164,
  5462. bottom: 8.7 / 190.5
  5463. }
  5464. },
  5465. hermNsfw: {
  5466. height: math.unit(8, "feet"),
  5467. weight: math.unit(350, "lb"),
  5468. name: "Herm (NSFW)",
  5469. image: {
  5470. source: "./media/characters/sigvald/herm-nsfw.svg",
  5471. extra: 182 / 164,
  5472. bottom: 8.7 / 190.5
  5473. }
  5474. },
  5475. dick: {
  5476. height: math.unit(2.36, "feet"),
  5477. name: "Dick",
  5478. image: {
  5479. source: "./media/characters/sigvald/dick.svg"
  5480. }
  5481. },
  5482. eye: {
  5483. height: math.unit(0.31, "feet"),
  5484. name: "Eye",
  5485. image: {
  5486. source: "./media/characters/sigvald/eye.svg"
  5487. }
  5488. },
  5489. mouth: {
  5490. height: math.unit(0.92, "feet"),
  5491. name: "Mouth",
  5492. image: {
  5493. source: "./media/characters/sigvald/mouth.svg"
  5494. }
  5495. },
  5496. paws: {
  5497. height: math.unit(2.2, "feet"),
  5498. name: "Paws",
  5499. image: {
  5500. source: "./media/characters/sigvald/paws.svg"
  5501. }
  5502. }
  5503. },
  5504. [
  5505. {
  5506. name: "Normal",
  5507. height: math.unit(8, "feet")
  5508. },
  5509. {
  5510. name: "Large",
  5511. height: math.unit(12, "feet")
  5512. },
  5513. {
  5514. name: "Larger",
  5515. height: math.unit(20, "feet")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(150, "feet")
  5520. },
  5521. {
  5522. name: "Macro+",
  5523. height: math.unit(200, "feet"),
  5524. default: true
  5525. },
  5526. ]
  5527. ))
  5528. characterMakers.push(() => makeCharacter(
  5529. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5530. {
  5531. side: {
  5532. height: math.unit(12, "feet"),
  5533. weight: math.unit(2000, "kg"),
  5534. name: "Side",
  5535. image: {
  5536. source: "./media/characters/scott/side.svg",
  5537. extra: 754 / 724,
  5538. bottom: 0.069
  5539. }
  5540. },
  5541. upright: {
  5542. height: math.unit(12, "feet"),
  5543. weight: math.unit(2000, "kg"),
  5544. name: "Upright",
  5545. image: {
  5546. source: "./media/characters/scott/upright.svg",
  5547. extra: 3881 / 3722,
  5548. bottom: 0.05
  5549. }
  5550. },
  5551. },
  5552. [
  5553. {
  5554. name: "Normal",
  5555. height: math.unit(12, "feet"),
  5556. default: true
  5557. },
  5558. ]
  5559. ))
  5560. characterMakers.push(() => makeCharacter(
  5561. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5562. {
  5563. side: {
  5564. height: math.unit(8, "meters"),
  5565. weight: math.unit(84755, "lbs"),
  5566. name: "Side",
  5567. image: {
  5568. source: "./media/characters/tobias/side.svg",
  5569. extra: 1474 / 1096,
  5570. bottom: 38.9 / 1513.1235
  5571. }
  5572. },
  5573. },
  5574. [
  5575. {
  5576. name: "Normal",
  5577. height: math.unit(8, "meters"),
  5578. default: true
  5579. },
  5580. ]
  5581. ))
  5582. characterMakers.push(() => makeCharacter(
  5583. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5584. {
  5585. front: {
  5586. height: math.unit(5.5, "feet"),
  5587. weight: math.unit(400, "lbs"),
  5588. name: "Front",
  5589. image: {
  5590. source: "./media/characters/kieran/front.svg",
  5591. extra: 2694 / 2364,
  5592. bottom: 217 / 2908
  5593. }
  5594. },
  5595. side: {
  5596. height: math.unit(5.5, "feet"),
  5597. weight: math.unit(400, "lbs"),
  5598. name: "Side",
  5599. image: {
  5600. source: "./media/characters/kieran/side.svg",
  5601. extra: 875 / 777,
  5602. bottom: 84.6 / 959
  5603. }
  5604. },
  5605. },
  5606. [
  5607. {
  5608. name: "Normal",
  5609. height: math.unit(5.5, "feet"),
  5610. default: true
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5616. {
  5617. side: {
  5618. height: math.unit(2, "meters"),
  5619. weight: math.unit(70, "kg"),
  5620. name: "Side",
  5621. image: {
  5622. source: "./media/characters/sanya/side.svg",
  5623. bottom: 0.02,
  5624. extra: 1.02
  5625. }
  5626. },
  5627. },
  5628. [
  5629. {
  5630. name: "Small",
  5631. height: math.unit(2, "meters")
  5632. },
  5633. {
  5634. name: "Normal",
  5635. height: math.unit(3, "meters")
  5636. },
  5637. {
  5638. name: "Macro",
  5639. height: math.unit(16, "meters"),
  5640. default: true
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5646. {
  5647. front: {
  5648. height: math.unit(2, "meters"),
  5649. weight: math.unit(120, "kg"),
  5650. name: "Front",
  5651. image: {
  5652. source: "./media/characters/miranda/front.svg",
  5653. extra: 195 / 185,
  5654. bottom: 10.9 / 206.5
  5655. }
  5656. },
  5657. back: {
  5658. height: math.unit(2, "meters"),
  5659. weight: math.unit(120, "kg"),
  5660. name: "Back",
  5661. image: {
  5662. source: "./media/characters/miranda/back.svg",
  5663. extra: 201 / 193,
  5664. bottom: 2.3 / 203.7
  5665. }
  5666. },
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(10, "feet"),
  5672. default: true
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "James", species: ["deer"], tags: ["anthro"] },
  5678. {
  5679. side: {
  5680. height: math.unit(2, "meters"),
  5681. weight: math.unit(100, "kg"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/james/front.svg",
  5685. extra: 10 / 8.5
  5686. }
  5687. },
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(8.5, "feet"),
  5693. default: true
  5694. }
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5699. {
  5700. side: {
  5701. height: math.unit(9.5, "feet"),
  5702. weight: math.unit(2500, "lbs"),
  5703. name: "Side",
  5704. image: {
  5705. source: "./media/characters/heather/side.svg"
  5706. }
  5707. },
  5708. },
  5709. [
  5710. {
  5711. name: "Normal",
  5712. height: math.unit(9.5, "feet"),
  5713. default: true
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5719. {
  5720. side: {
  5721. height: math.unit(6.5, "feet"),
  5722. weight: math.unit(400, "lbs"),
  5723. name: "Side",
  5724. image: {
  5725. source: "./media/characters/lukas/side.svg",
  5726. extra: 7.25 / 6.5
  5727. }
  5728. },
  5729. },
  5730. [
  5731. {
  5732. name: "Normal",
  5733. height: math.unit(6.5, "feet"),
  5734. default: true
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5740. {
  5741. side: {
  5742. height: math.unit(5, "feet"),
  5743. weight: math.unit(3000, "lbs"),
  5744. name: "Side",
  5745. image: {
  5746. source: "./media/characters/louise/side.svg"
  5747. }
  5748. },
  5749. },
  5750. [
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(5, "feet"),
  5754. default: true
  5755. }
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5760. {
  5761. side: {
  5762. height: math.unit(6, "feet"),
  5763. weight: math.unit(150, "lbs"),
  5764. name: "Side",
  5765. image: {
  5766. source: "./media/characters/ramona/side.svg",
  5767. extra: 871/854,
  5768. bottom: 41/912
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(6 + 4/12, "feet")
  5776. },
  5777. {
  5778. name: "Minimacro",
  5779. height: math.unit(5.3, "meters"),
  5780. default: true
  5781. },
  5782. {
  5783. name: "Macro",
  5784. height: math.unit(20, "stories")
  5785. },
  5786. {
  5787. name: "Macro+",
  5788. height: math.unit(50, "stories")
  5789. },
  5790. ]
  5791. ))
  5792. characterMakers.push(() => makeCharacter(
  5793. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5794. {
  5795. standing: {
  5796. height: math.unit(5.75, "feet"),
  5797. weight: math.unit(160, "lbs"),
  5798. name: "Standing",
  5799. image: {
  5800. source: "./media/characters/deerpuff/standing.svg",
  5801. extra: 682 / 624
  5802. }
  5803. },
  5804. sitting: {
  5805. height: math.unit(5.75 / 1.79, "feet"),
  5806. weight: math.unit(160, "lbs"),
  5807. name: "Sitting",
  5808. image: {
  5809. source: "./media/characters/deerpuff/sitting.svg",
  5810. bottom: 44 / 400,
  5811. extra: 1
  5812. }
  5813. },
  5814. taurLaying: {
  5815. height: math.unit(6, "feet"),
  5816. weight: math.unit(400, "lbs"),
  5817. name: "Taur (Laying)",
  5818. image: {
  5819. source: "./media/characters/deerpuff/taur-laying.svg"
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Puffball",
  5826. height: math.unit(6, "inches")
  5827. },
  5828. {
  5829. name: "Normalpuff",
  5830. height: math.unit(5.75, "feet")
  5831. },
  5832. {
  5833. name: "Macropuff",
  5834. height: math.unit(1500, "feet"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Megapuff",
  5839. height: math.unit(500, "miles")
  5840. },
  5841. {
  5842. name: "Gigapuff",
  5843. height: math.unit(250000, "miles")
  5844. },
  5845. {
  5846. name: "Omegapuff",
  5847. height: math.unit(1000, "lightyears")
  5848. },
  5849. ]
  5850. ))
  5851. characterMakers.push(() => makeCharacter(
  5852. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5853. {
  5854. stomping: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(170, "lbs"),
  5857. name: "Stomping",
  5858. image: {
  5859. source: "./media/characters/vivian/stomping.svg"
  5860. }
  5861. },
  5862. sitting: {
  5863. height: math.unit(6 / 1.75, "feet"),
  5864. weight: math.unit(170, "lbs"),
  5865. name: "Sitting",
  5866. image: {
  5867. source: "./media/characters/vivian/sitting.svg",
  5868. bottom: 1 / 6.4,
  5869. extra: 1,
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Normal",
  5876. height: math.unit(7, "feet"),
  5877. default: true
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(10, "stories")
  5882. },
  5883. {
  5884. name: "Macro+",
  5885. height: math.unit(30, "stories")
  5886. },
  5887. {
  5888. name: "Megamacro",
  5889. height: math.unit(10, "miles")
  5890. },
  5891. {
  5892. name: "Megamacro+",
  5893. height: math.unit(2750000, "meters")
  5894. },
  5895. ]
  5896. ))
  5897. characterMakers.push(() => makeCharacter(
  5898. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5899. {
  5900. front: {
  5901. height: math.unit(6, "feet"),
  5902. weight: math.unit(160, "lbs"),
  5903. name: "Front",
  5904. image: {
  5905. source: "./media/characters/prince/front.svg",
  5906. extra: 3400 / 3000
  5907. }
  5908. },
  5909. jumping: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(160, "lbs"),
  5912. name: "Jumping",
  5913. image: {
  5914. source: "./media/characters/prince/jump.svg",
  5915. extra: 2555 / 2134
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(7.75, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Not cute",
  5927. height: math.unit(17, "feet")
  5928. },
  5929. {
  5930. name: "I said NOT",
  5931. height: math.unit(91, "feet")
  5932. },
  5933. {
  5934. name: "Please stop",
  5935. height: math.unit(560, "feet")
  5936. },
  5937. {
  5938. name: "What have you done",
  5939. height: math.unit(2200, "feet")
  5940. },
  5941. {
  5942. name: "Deer God",
  5943. height: math.unit(3.6, "miles")
  5944. },
  5945. ]
  5946. ))
  5947. characterMakers.push(() => makeCharacter(
  5948. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5949. {
  5950. standing: {
  5951. height: math.unit(6, "feet"),
  5952. weight: math.unit(300, "lbs"),
  5953. name: "Standing",
  5954. image: {
  5955. source: "./media/characters/psymon/standing.svg",
  5956. extra: 1888 / 1810,
  5957. bottom: 0.05
  5958. }
  5959. },
  5960. slithering: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(300, "lbs"),
  5963. name: "Slithering",
  5964. image: {
  5965. source: "./media/characters/psymon/slithering.svg",
  5966. extra: 1330 / 1224
  5967. }
  5968. },
  5969. slitheringAlt: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(300, "lbs"),
  5972. name: "Slithering (Alt)",
  5973. image: {
  5974. source: "./media/characters/psymon/slithering-alt.svg",
  5975. extra: 1330 / 1224
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(11.25, "feet"),
  5983. default: true
  5984. },
  5985. {
  5986. name: "Large",
  5987. height: math.unit(27, "feet")
  5988. },
  5989. {
  5990. name: "Giant",
  5991. height: math.unit(87, "feet")
  5992. },
  5993. {
  5994. name: "Macro",
  5995. height: math.unit(365, "feet")
  5996. },
  5997. {
  5998. name: "Megamacro",
  5999. height: math.unit(3, "miles")
  6000. },
  6001. {
  6002. name: "World Serpent",
  6003. height: math.unit(8000, "miles")
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(6, "feet"),
  6012. weight: math.unit(180, "lbs"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/daimos/front.svg",
  6016. extra: 4160 / 3897,
  6017. bottom: 0.021
  6018. }
  6019. }
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(8, "feet"),
  6025. default: true
  6026. },
  6027. {
  6028. name: "Big Dog",
  6029. height: math.unit(22, "feet")
  6030. },
  6031. {
  6032. name: "Macro",
  6033. height: math.unit(127, "feet")
  6034. },
  6035. {
  6036. name: "Megamacro",
  6037. height: math.unit(3600, "feet")
  6038. },
  6039. ]
  6040. ))
  6041. characterMakers.push(() => makeCharacter(
  6042. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6043. {
  6044. side: {
  6045. height: math.unit(6, "feet"),
  6046. weight: math.unit(180, "lbs"),
  6047. name: "Side",
  6048. image: {
  6049. source: "./media/characters/blake/side.svg",
  6050. extra: 1212 / 1120,
  6051. bottom: 0.05
  6052. }
  6053. },
  6054. crouched: {
  6055. height: math.unit(6 * 0.57, "feet"),
  6056. weight: math.unit(180, "lbs"),
  6057. name: "Crouched",
  6058. image: {
  6059. source: "./media/characters/blake/crouched.svg",
  6060. extra: 840 / 587,
  6061. bottom: 0.04
  6062. }
  6063. },
  6064. bent: {
  6065. height: math.unit(6 * 0.75, "feet"),
  6066. weight: math.unit(180, "lbs"),
  6067. name: "Bent",
  6068. image: {
  6069. source: "./media/characters/blake/bent.svg",
  6070. extra: 592 / 544,
  6071. bottom: 0.035
  6072. }
  6073. },
  6074. },
  6075. [
  6076. {
  6077. name: "Normal",
  6078. height: math.unit(8 + 1 / 6, "feet"),
  6079. default: true
  6080. },
  6081. {
  6082. name: "Big Backside",
  6083. height: math.unit(37, "feet")
  6084. },
  6085. {
  6086. name: "Subway Shredder",
  6087. height: math.unit(72, "feet")
  6088. },
  6089. {
  6090. name: "City Carver",
  6091. height: math.unit(1675, "feet")
  6092. },
  6093. {
  6094. name: "Tectonic Tweaker",
  6095. height: math.unit(2300, "miles")
  6096. },
  6097. ]
  6098. ))
  6099. characterMakers.push(() => makeCharacter(
  6100. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6101. {
  6102. front: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(180, "lbs"),
  6105. name: "Front",
  6106. image: {
  6107. source: "./media/characters/guisetto/front.svg",
  6108. extra: 856 / 817,
  6109. bottom: 0.06
  6110. }
  6111. },
  6112. airborne: {
  6113. height: math.unit(6, "feet"),
  6114. weight: math.unit(180, "lbs"),
  6115. name: "Airborne",
  6116. image: {
  6117. source: "./media/characters/guisetto/airborne.svg",
  6118. extra: 584 / 525
  6119. }
  6120. },
  6121. },
  6122. [
  6123. {
  6124. name: "Normal",
  6125. height: math.unit(10 + 11 / 12, "feet"),
  6126. default: true
  6127. },
  6128. {
  6129. name: "Large",
  6130. height: math.unit(35, "feet")
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(475, "feet")
  6135. },
  6136. ]
  6137. ))
  6138. characterMakers.push(() => makeCharacter(
  6139. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6140. {
  6141. front: {
  6142. height: math.unit(6, "feet"),
  6143. weight: math.unit(180, "lbs"),
  6144. name: "Front",
  6145. image: {
  6146. source: "./media/characters/luxor/front.svg",
  6147. extra: 2940 / 2152
  6148. }
  6149. },
  6150. back: {
  6151. height: math.unit(6, "feet"),
  6152. weight: math.unit(180, "lbs"),
  6153. name: "Back",
  6154. image: {
  6155. source: "./media/characters/luxor/back.svg",
  6156. extra: 1083 / 960
  6157. }
  6158. },
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5 + 5 / 6, "feet"),
  6164. default: true
  6165. },
  6166. {
  6167. name: "Lamp",
  6168. height: math.unit(50, "feet")
  6169. },
  6170. {
  6171. name: "Lämp",
  6172. height: math.unit(300, "feet")
  6173. },
  6174. {
  6175. name: "The sun is a lamp",
  6176. height: math.unit(250000, "miles")
  6177. },
  6178. ]
  6179. ))
  6180. characterMakers.push(() => makeCharacter(
  6181. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6182. {
  6183. front: {
  6184. height: math.unit(6, "feet"),
  6185. weight: math.unit(50, "lbs"),
  6186. name: "Front",
  6187. image: {
  6188. source: "./media/characters/huoyan/front.svg"
  6189. }
  6190. },
  6191. side: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(180, "lbs"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/huoyan/side.svg"
  6197. }
  6198. },
  6199. },
  6200. [
  6201. {
  6202. name: "Chef",
  6203. height: math.unit(9, "feet")
  6204. },
  6205. {
  6206. name: "Normal",
  6207. height: math.unit(65, "feet"),
  6208. default: true
  6209. },
  6210. {
  6211. name: "Macro",
  6212. height: math.unit(780, "feet")
  6213. },
  6214. {
  6215. name: "Flaming Mountain",
  6216. height: math.unit(4.8, "miles")
  6217. },
  6218. {
  6219. name: "Celestial",
  6220. height: math.unit(765000, "miles")
  6221. },
  6222. ]
  6223. ))
  6224. characterMakers.push(() => makeCharacter(
  6225. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6226. {
  6227. front: {
  6228. height: math.unit(5 + 3 / 4, "feet"),
  6229. weight: math.unit(120, "lbs"),
  6230. name: "Front",
  6231. image: {
  6232. source: "./media/characters/tails/front.svg"
  6233. }
  6234. }
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(5 + 3 / 4, "feet"),
  6240. default: true
  6241. }
  6242. ]
  6243. ))
  6244. characterMakers.push(() => makeCharacter(
  6245. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6246. {
  6247. front: {
  6248. height: math.unit(4, "feet"),
  6249. weight: math.unit(50, "lbs"),
  6250. name: "Front",
  6251. image: {
  6252. source: "./media/characters/rainy/front.svg"
  6253. }
  6254. }
  6255. },
  6256. [
  6257. {
  6258. name: "Macro",
  6259. height: math.unit(800, "feet"),
  6260. default: true
  6261. }
  6262. ]
  6263. ))
  6264. characterMakers.push(() => makeCharacter(
  6265. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6266. {
  6267. front: {
  6268. height: math.unit(6, "feet"),
  6269. weight: math.unit(150, "lbs"),
  6270. name: "Front",
  6271. image: {
  6272. source: "./media/characters/rainier/front.svg"
  6273. }
  6274. }
  6275. },
  6276. [
  6277. {
  6278. name: "Micro",
  6279. height: math.unit(2, "mm"),
  6280. default: true
  6281. }
  6282. ]
  6283. ))
  6284. characterMakers.push(() => makeCharacter(
  6285. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6286. {
  6287. front: {
  6288. height: math.unit(8 + 4/12, "feet"),
  6289. weight: math.unit(450, "kilograms"),
  6290. volume: math.unit(5, "cups"),
  6291. name: "Front",
  6292. image: {
  6293. source: "./media/characters/andy-renard/front.svg",
  6294. extra: 1839/1726,
  6295. bottom: 134/1973
  6296. }
  6297. },
  6298. back: {
  6299. height: math.unit(8 + 4/12, "feet"),
  6300. weight: math.unit(450, "kilograms"),
  6301. volume: math.unit(5, "cups"),
  6302. name: "Back",
  6303. image: {
  6304. source: "./media/characters/andy-renard/back.svg",
  6305. extra: 1838/1710,
  6306. bottom: 105/1943
  6307. }
  6308. },
  6309. },
  6310. [
  6311. {
  6312. name: "Tall",
  6313. height: math.unit(8 + 4/12, "feet")
  6314. },
  6315. {
  6316. name: "Mini Macro",
  6317. height: math.unit(15, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(100, "feet")
  6323. },
  6324. {
  6325. name: "Mega Macro",
  6326. height: math.unit(1000, "feet")
  6327. },
  6328. {
  6329. name: "Giga Macro",
  6330. height: math.unit(10, "miles")
  6331. },
  6332. {
  6333. name: "God Macro",
  6334. height: math.unit(1, "multiverse")
  6335. },
  6336. ]
  6337. ))
  6338. characterMakers.push(() => makeCharacter(
  6339. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6340. {
  6341. front: {
  6342. height: math.unit(6, "feet"),
  6343. weight: math.unit(210, "lbs"),
  6344. name: "Front",
  6345. image: {
  6346. source: "./media/characters/cimmaron/front-sfw.svg",
  6347. extra: 701 / 676,
  6348. bottom: 0.046
  6349. }
  6350. },
  6351. back: {
  6352. height: math.unit(6, "feet"),
  6353. weight: math.unit(210, "lbs"),
  6354. name: "Back",
  6355. image: {
  6356. source: "./media/characters/cimmaron/back-sfw.svg",
  6357. extra: 701 / 676,
  6358. bottom: 0.046
  6359. }
  6360. },
  6361. frontNsfw: {
  6362. height: math.unit(6, "feet"),
  6363. weight: math.unit(210, "lbs"),
  6364. name: "Front (NSFW)",
  6365. image: {
  6366. source: "./media/characters/cimmaron/front-nsfw.svg",
  6367. extra: 701 / 676,
  6368. bottom: 0.046
  6369. }
  6370. },
  6371. backNsfw: {
  6372. height: math.unit(6, "feet"),
  6373. weight: math.unit(210, "lbs"),
  6374. name: "Back (NSFW)",
  6375. image: {
  6376. source: "./media/characters/cimmaron/back-nsfw.svg",
  6377. extra: 701 / 676,
  6378. bottom: 0.046
  6379. }
  6380. },
  6381. dick: {
  6382. height: math.unit(1.714, "feet"),
  6383. name: "Dick",
  6384. image: {
  6385. source: "./media/characters/cimmaron/dick.svg"
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(6, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro Mayor",
  6397. height: math.unit(350, "meters")
  6398. },
  6399. ]
  6400. ))
  6401. characterMakers.push(() => makeCharacter(
  6402. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6403. {
  6404. front: {
  6405. height: math.unit(6, "feet"),
  6406. weight: math.unit(200, "lbs"),
  6407. name: "Front",
  6408. image: {
  6409. source: "./media/characters/akari/front.svg",
  6410. extra: 962 / 901,
  6411. bottom: 0.04
  6412. }
  6413. }
  6414. },
  6415. [
  6416. {
  6417. name: "Micro",
  6418. height: math.unit(5, "inches"),
  6419. default: true
  6420. },
  6421. {
  6422. name: "Normal",
  6423. height: math.unit(7, "feet")
  6424. },
  6425. ]
  6426. ))
  6427. characterMakers.push(() => makeCharacter(
  6428. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6429. {
  6430. front: {
  6431. height: math.unit(6, "feet"),
  6432. weight: math.unit(140, "lbs"),
  6433. name: "Front",
  6434. image: {
  6435. source: "./media/characters/cynosura/front.svg",
  6436. extra: 896 / 847
  6437. }
  6438. },
  6439. back: {
  6440. height: math.unit(6, "feet"),
  6441. weight: math.unit(140, "lbs"),
  6442. name: "Back",
  6443. image: {
  6444. source: "./media/characters/cynosura/back.svg",
  6445. extra: 1365 / 1250
  6446. }
  6447. },
  6448. },
  6449. [
  6450. {
  6451. name: "Micro",
  6452. height: math.unit(4, "inches")
  6453. },
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(5.75, "feet"),
  6457. default: true
  6458. },
  6459. {
  6460. name: "Tall",
  6461. height: math.unit(10, "feet")
  6462. },
  6463. {
  6464. name: "Big",
  6465. height: math.unit(20, "feet")
  6466. },
  6467. {
  6468. name: "Macro",
  6469. height: math.unit(50, "feet")
  6470. },
  6471. ]
  6472. ))
  6473. characterMakers.push(() => makeCharacter(
  6474. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6475. {
  6476. front: {
  6477. height: math.unit(13 + 2/12, "feet"),
  6478. weight: math.unit(800, "kg"),
  6479. name: "Front",
  6480. image: {
  6481. source: "./media/characters/gin/front.svg",
  6482. extra: 1312/1191,
  6483. bottom: 45/1357
  6484. }
  6485. },
  6486. mouth: {
  6487. height: math.unit(2.39 * 1.8, "feet"),
  6488. name: "Mouth",
  6489. image: {
  6490. source: "./media/characters/gin/mouth.svg"
  6491. }
  6492. },
  6493. hand: {
  6494. height: math.unit(1.57 * 2.19, "feet"),
  6495. name: "Hand",
  6496. image: {
  6497. source: "./media/characters/gin/hand.svg"
  6498. }
  6499. },
  6500. foot: {
  6501. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6502. name: "Foot",
  6503. image: {
  6504. source: "./media/characters/gin/foot.svg"
  6505. }
  6506. },
  6507. sole: {
  6508. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6509. name: "Sole",
  6510. image: {
  6511. source: "./media/characters/gin/sole.svg"
  6512. }
  6513. },
  6514. },
  6515. [
  6516. {
  6517. name: "Very Small",
  6518. height: math.unit(13 + 2 / 12, "feet")
  6519. },
  6520. {
  6521. name: "Micro",
  6522. height: math.unit(600, "miles")
  6523. },
  6524. {
  6525. name: "Regular",
  6526. height: math.unit(20, "earths"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Macro",
  6531. height: math.unit(2.2, "solarradii")
  6532. },
  6533. {
  6534. name: "Teramacro",
  6535. height: math.unit(1.2, "galaxies")
  6536. },
  6537. {
  6538. name: "Omegamacro",
  6539. height: math.unit(200, "universes")
  6540. },
  6541. ]
  6542. ))
  6543. characterMakers.push(() => makeCharacter(
  6544. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6545. {
  6546. front: {
  6547. height: math.unit(6 + 1 / 6, "feet"),
  6548. weight: math.unit(178, "lbs"),
  6549. name: "Front",
  6550. image: {
  6551. source: "./media/characters/guy/front.svg"
  6552. }
  6553. }
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(6 + 1 / 6, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Large",
  6563. height: math.unit(25 + 7 / 12, "feet")
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(60 + 9 / 12, "feet")
  6568. },
  6569. {
  6570. name: "Macro+",
  6571. height: math.unit(246, "feet")
  6572. },
  6573. {
  6574. name: "Macro++",
  6575. height: math.unit(878, "feet")
  6576. }
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(9, "feet"),
  6584. weight: math.unit(800, "lbs"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/tiberius/front.svg",
  6588. extra: 2295 / 2071
  6589. }
  6590. },
  6591. back: {
  6592. height: math.unit(9, "feet"),
  6593. weight: math.unit(800, "lbs"),
  6594. name: "Back",
  6595. image: {
  6596. source: "./media/characters/tiberius/back.svg",
  6597. extra: 2373 / 2160
  6598. }
  6599. },
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(9, "feet"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6611. {
  6612. front: {
  6613. height: math.unit(6, "feet"),
  6614. weight: math.unit(600, "lbs"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/surgo/front.svg",
  6618. extra: 3591 / 2227
  6619. }
  6620. },
  6621. back: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(600, "lbs"),
  6624. name: "Back",
  6625. image: {
  6626. source: "./media/characters/surgo/back.svg",
  6627. extra: 3557 / 2228
  6628. }
  6629. },
  6630. laying: {
  6631. height: math.unit(6 * 0.85, "feet"),
  6632. weight: math.unit(600, "lbs"),
  6633. name: "Laying",
  6634. image: {
  6635. source: "./media/characters/surgo/laying.svg"
  6636. }
  6637. },
  6638. },
  6639. [
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(6, "feet"),
  6643. default: true
  6644. }
  6645. ]
  6646. ))
  6647. characterMakers.push(() => makeCharacter(
  6648. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6649. {
  6650. side: {
  6651. height: math.unit(6, "feet"),
  6652. weight: math.unit(150, "lbs"),
  6653. name: "Side",
  6654. image: {
  6655. source: "./media/characters/cibus/side.svg",
  6656. extra: 800 / 400
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(6, "feet"),
  6664. default: true
  6665. }
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6670. {
  6671. front: {
  6672. height: math.unit(6, "feet"),
  6673. weight: math.unit(240, "lbs"),
  6674. name: "Front",
  6675. image: {
  6676. source: "./media/characters/nibbles/front.svg"
  6677. }
  6678. },
  6679. side: {
  6680. height: math.unit(6, "feet"),
  6681. weight: math.unit(240, "lbs"),
  6682. name: "Side",
  6683. image: {
  6684. source: "./media/characters/nibbles/side.svg"
  6685. }
  6686. },
  6687. },
  6688. [
  6689. {
  6690. name: "Normal",
  6691. height: math.unit(9, "feet"),
  6692. default: true
  6693. }
  6694. ]
  6695. ))
  6696. characterMakers.push(() => makeCharacter(
  6697. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6698. {
  6699. side: {
  6700. height: math.unit(5 + 1 / 6, "feet"),
  6701. weight: math.unit(130, "lbs"),
  6702. name: "Side",
  6703. image: {
  6704. source: "./media/characters/rikky/side.svg",
  6705. extra: 851 / 801
  6706. }
  6707. },
  6708. },
  6709. [
  6710. {
  6711. name: "Normal",
  6712. height: math.unit(5 + 1 / 6, "feet")
  6713. },
  6714. {
  6715. name: "Macro",
  6716. height: math.unit(152, "feet"),
  6717. default: true
  6718. },
  6719. {
  6720. name: "Megamacro",
  6721. height: math.unit(7, "miles")
  6722. }
  6723. ]
  6724. ))
  6725. characterMakers.push(() => makeCharacter(
  6726. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6727. {
  6728. side: {
  6729. height: math.unit(370, "cm"),
  6730. weight: math.unit(350, "lbs"),
  6731. name: "Side",
  6732. image: {
  6733. source: "./media/characters/malfressa/side.svg"
  6734. }
  6735. },
  6736. walking: {
  6737. height: math.unit(370, "cm"),
  6738. weight: math.unit(350, "lbs"),
  6739. name: "Walking",
  6740. image: {
  6741. source: "./media/characters/malfressa/walking.svg"
  6742. }
  6743. },
  6744. feral: {
  6745. height: math.unit(2500, "cm"),
  6746. weight: math.unit(100000, "lbs"),
  6747. name: "Feral",
  6748. image: {
  6749. source: "./media/characters/malfressa/feral.svg",
  6750. extra: 2108 / 837,
  6751. bottom: 0.02
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(370, "cm")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(300, "meters"),
  6763. default: true
  6764. }
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(6, "feet"),
  6772. weight: math.unit(60, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/jaro/front.svg",
  6776. extra: 845/817,
  6777. bottom: 45/890
  6778. }
  6779. },
  6780. back: {
  6781. height: math.unit(6, "feet"),
  6782. weight: math.unit(60, "kg"),
  6783. name: "Back",
  6784. image: {
  6785. source: "./media/characters/jaro/back.svg",
  6786. extra: 847/817,
  6787. bottom: 34/881
  6788. }
  6789. },
  6790. },
  6791. [
  6792. {
  6793. name: "Micro",
  6794. height: math.unit(7, "inches")
  6795. },
  6796. {
  6797. name: "Normal",
  6798. height: math.unit(5.5, "feet"),
  6799. default: true
  6800. },
  6801. {
  6802. name: "Minimacro",
  6803. height: math.unit(20, "feet")
  6804. },
  6805. {
  6806. name: "Macro",
  6807. height: math.unit(200, "meters")
  6808. }
  6809. ]
  6810. ))
  6811. characterMakers.push(() => makeCharacter(
  6812. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6813. {
  6814. front: {
  6815. height: math.unit(6, "feet"),
  6816. weight: math.unit(195, "lb"),
  6817. name: "Front",
  6818. image: {
  6819. source: "./media/characters/rogue/front.svg"
  6820. }
  6821. },
  6822. },
  6823. [
  6824. {
  6825. name: "Macro",
  6826. height: math.unit(90, "feet"),
  6827. default: true
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6833. {
  6834. standing: {
  6835. height: math.unit(5 + 8 / 12, "feet"),
  6836. weight: math.unit(140, "lb"),
  6837. name: "Standing",
  6838. image: {
  6839. source: "./media/characters/piper/standing.svg",
  6840. extra: 1440/1284,
  6841. bottom: 66/1506
  6842. }
  6843. },
  6844. running: {
  6845. height: math.unit(5 + 8 / 12, "feet"),
  6846. weight: math.unit(140, "lb"),
  6847. name: "Running",
  6848. image: {
  6849. source: "./media/characters/piper/running.svg",
  6850. extra: 3948/3655,
  6851. bottom: 0/3948
  6852. }
  6853. },
  6854. sole: {
  6855. height: math.unit(0.81, "feet"),
  6856. weight: math.unit(2, "kg"),
  6857. name: "Sole",
  6858. image: {
  6859. source: "./media/characters/piper/sole.svg"
  6860. }
  6861. },
  6862. nipple: {
  6863. height: math.unit(0.25, "feet"),
  6864. weight: math.unit(1.5, "lb"),
  6865. name: "Nipple",
  6866. image: {
  6867. source: "./media/characters/piper/nipple.svg"
  6868. }
  6869. },
  6870. head: {
  6871. height: math.unit(1.1, "feet"),
  6872. name: "Head",
  6873. image: {
  6874. source: "./media/characters/piper/head.svg"
  6875. }
  6876. },
  6877. },
  6878. [
  6879. {
  6880. name: "Micro",
  6881. height: math.unit(2, "inches")
  6882. },
  6883. {
  6884. name: "Normal",
  6885. height: math.unit(5 + 8 / 12, "feet")
  6886. },
  6887. {
  6888. name: "Macro",
  6889. height: math.unit(250, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Megamacro",
  6894. height: math.unit(7, "miles")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(220, "lb"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/gemini/front.svg"
  6907. }
  6908. },
  6909. back: {
  6910. height: math.unit(6, "feet"),
  6911. weight: math.unit(220, "lb"),
  6912. name: "Back",
  6913. image: {
  6914. source: "./media/characters/gemini/back.svg"
  6915. }
  6916. },
  6917. kneeling: {
  6918. height: math.unit(6 / 1.5, "feet"),
  6919. weight: math.unit(220, "lb"),
  6920. name: "Kneeling",
  6921. image: {
  6922. source: "./media/characters/gemini/kneeling.svg",
  6923. bottom: 0.02
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Macro",
  6930. height: math.unit(300, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Megamacro",
  6935. height: math.unit(6900, "meters")
  6936. },
  6937. ]
  6938. ))
  6939. characterMakers.push(() => makeCharacter(
  6940. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6941. {
  6942. anthro: {
  6943. height: math.unit(2.35, "meters"),
  6944. weight: math.unit(73, "kg"),
  6945. name: "Anthro",
  6946. image: {
  6947. source: "./media/characters/alicia/anthro.svg",
  6948. extra: 2571 / 2385,
  6949. bottom: 75 / 2648
  6950. }
  6951. },
  6952. paw: {
  6953. height: math.unit(1.32, "feet"),
  6954. name: "Paw",
  6955. image: {
  6956. source: "./media/characters/alicia/paw.svg"
  6957. }
  6958. },
  6959. feral: {
  6960. height: math.unit(1.69, "meters"),
  6961. weight: math.unit(73, "kg"),
  6962. name: "Feral",
  6963. image: {
  6964. source: "./media/characters/alicia/feral.svg",
  6965. extra: 2123 / 1715,
  6966. bottom: 222 / 2349
  6967. }
  6968. },
  6969. },
  6970. [
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(2.35, "meters")
  6974. },
  6975. {
  6976. name: "Macro",
  6977. height: math.unit(60, "meters"),
  6978. default: true
  6979. },
  6980. {
  6981. name: "Megamacro",
  6982. height: math.unit(10000, "kilometers")
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(7, "feet"),
  6991. weight: math.unit(250, "lbs"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/archy/front.svg"
  6995. }
  6996. }
  6997. },
  6998. [
  6999. {
  7000. name: "Micro",
  7001. height: math.unit(1, "inch")
  7002. },
  7003. {
  7004. name: "Shorty",
  7005. height: math.unit(5, "feet")
  7006. },
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(7, "feet")
  7010. },
  7011. {
  7012. name: "Macro",
  7013. height: math.unit(600, "meters"),
  7014. default: true
  7015. },
  7016. {
  7017. name: "Megamacro",
  7018. height: math.unit(1, "mile")
  7019. },
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(1.65, "meters"),
  7027. weight: math.unit(74, "kg"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/berri/front.svg",
  7031. extra: 857 / 837,
  7032. bottom: 18 / 877
  7033. }
  7034. },
  7035. bum: {
  7036. height: math.unit(1.46, "feet"),
  7037. name: "Bum",
  7038. image: {
  7039. source: "./media/characters/berri/bum.svg"
  7040. }
  7041. },
  7042. mouth: {
  7043. height: math.unit(0.44, "feet"),
  7044. name: "Mouth",
  7045. image: {
  7046. source: "./media/characters/berri/mouth.svg"
  7047. }
  7048. },
  7049. paw: {
  7050. height: math.unit(0.826, "feet"),
  7051. name: "Paw",
  7052. image: {
  7053. source: "./media/characters/berri/paw.svg"
  7054. }
  7055. },
  7056. },
  7057. [
  7058. {
  7059. name: "Normal",
  7060. height: math.unit(1.65, "meters")
  7061. },
  7062. {
  7063. name: "Macro",
  7064. height: math.unit(60, "m"),
  7065. default: true
  7066. },
  7067. {
  7068. name: "Megamacro",
  7069. height: math.unit(9.213, "km")
  7070. },
  7071. {
  7072. name: "Planet Eater",
  7073. height: math.unit(489, "megameters")
  7074. },
  7075. {
  7076. name: "Teramacro",
  7077. height: math.unit(2471635000000, "meters")
  7078. },
  7079. {
  7080. name: "Examacro",
  7081. height: math.unit(8.0624e+26, "meters")
  7082. }
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(1.72, "meters"),
  7090. weight: math.unit(68, "kg"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/lexi/front.svg"
  7094. }
  7095. }
  7096. },
  7097. [
  7098. {
  7099. name: "Very Smol",
  7100. height: math.unit(10, "mm")
  7101. },
  7102. {
  7103. name: "Micro",
  7104. height: math.unit(6.8, "cm"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Normal",
  7109. height: math.unit(1.72, "m")
  7110. }
  7111. ]
  7112. ))
  7113. characterMakers.push(() => makeCharacter(
  7114. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7115. {
  7116. front: {
  7117. height: math.unit(1.69, "meters"),
  7118. weight: math.unit(68, "kg"),
  7119. name: "Front",
  7120. image: {
  7121. source: "./media/characters/martin/front.svg",
  7122. extra: 596 / 581
  7123. }
  7124. }
  7125. },
  7126. [
  7127. {
  7128. name: "Micro",
  7129. height: math.unit(6.85, "cm"),
  7130. default: true
  7131. },
  7132. {
  7133. name: "Normal",
  7134. height: math.unit(1.69, "m")
  7135. }
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(1.69, "meters"),
  7143. weight: math.unit(68, "kg"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/juno/front.svg"
  7147. }
  7148. }
  7149. },
  7150. [
  7151. {
  7152. name: "Micro",
  7153. height: math.unit(7, "cm")
  7154. },
  7155. {
  7156. name: "Normal",
  7157. height: math.unit(1.89, "m")
  7158. },
  7159. {
  7160. name: "Macro",
  7161. height: math.unit(353, "meters"),
  7162. default: true
  7163. }
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(1.93, "meters"),
  7171. weight: math.unit(83, "kg"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/samantha/front.svg"
  7175. }
  7176. },
  7177. frontClothed: {
  7178. height: math.unit(1.93, "meters"),
  7179. weight: math.unit(83, "kg"),
  7180. name: "Front (Clothed)",
  7181. image: {
  7182. source: "./media/characters/samantha/front-clothed.svg"
  7183. }
  7184. },
  7185. back: {
  7186. height: math.unit(1.93, "meters"),
  7187. weight: math.unit(83, "kg"),
  7188. name: "Back",
  7189. image: {
  7190. source: "./media/characters/samantha/back.svg"
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Normal",
  7197. height: math.unit(1.93, "m")
  7198. },
  7199. {
  7200. name: "Macro",
  7201. height: math.unit(74, "meters"),
  7202. default: true
  7203. },
  7204. {
  7205. name: "Macro+",
  7206. height: math.unit(223, "meters"),
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(8381, "meters"),
  7211. },
  7212. {
  7213. name: "Megamacro+",
  7214. height: math.unit(12000, "kilometers")
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7220. {
  7221. front: {
  7222. height: math.unit(1.92, "meters"),
  7223. weight: math.unit(80, "kg"),
  7224. name: "Front",
  7225. image: {
  7226. source: "./media/characters/dr-clay/front.svg"
  7227. }
  7228. },
  7229. frontClothed: {
  7230. height: math.unit(1.92, "meters"),
  7231. weight: math.unit(80, "kg"),
  7232. name: "Front (Clothed)",
  7233. image: {
  7234. source: "./media/characters/dr-clay/front-clothed.svg"
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(1.92, "m")
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(214, "meters"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Macro+",
  7250. height: math.unit(12.237, "meters"),
  7251. },
  7252. {
  7253. name: "Megamacro",
  7254. height: math.unit(557, "megameters"),
  7255. },
  7256. {
  7257. name: "Unimaginable",
  7258. height: math.unit(120e9, "lightyears")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(2, "meters"),
  7267. weight: math.unit(80, "kg"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7271. }
  7272. }
  7273. },
  7274. [
  7275. {
  7276. name: "Teramacro",
  7277. height: math.unit(500000, "lightyears"),
  7278. default: true
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7284. {
  7285. crux: {
  7286. height: math.unit(2, "meters"),
  7287. weight: math.unit(150, "kg"),
  7288. name: "Crux",
  7289. image: {
  7290. source: "./media/characters/vemus/crux.svg",
  7291. extra: 1074/936,
  7292. bottom: 23/1097
  7293. }
  7294. },
  7295. skunkTanuki: {
  7296. height: math.unit(2, "meters"),
  7297. weight: math.unit(150, "kg"),
  7298. name: "Skunk-Tanuki",
  7299. image: {
  7300. source: "./media/characters/vemus/skunk-tanuki.svg",
  7301. extra: 926/893,
  7302. bottom: 20/946
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(4, "meters"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Big",
  7314. height: math.unit(8, "meters")
  7315. },
  7316. {
  7317. name: "Macro",
  7318. height: math.unit(100, "meters")
  7319. },
  7320. {
  7321. name: "Macro+",
  7322. height: math.unit(1500, "meters")
  7323. },
  7324. {
  7325. name: "Stellar",
  7326. height: math.unit(14e8, "meters")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(2, "meters"),
  7335. weight: math.unit(70, "kg"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/beherit/front.svg",
  7339. extra: 1234/1109,
  7340. bottom: 55/1289
  7341. }
  7342. }
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(6, "feet")
  7348. },
  7349. {
  7350. name: "Lorg",
  7351. height: math.unit(25, "feet"),
  7352. default: true
  7353. },
  7354. {
  7355. name: "Lorger",
  7356. height: math.unit(75, "feet")
  7357. },
  7358. {
  7359. name: "Macro",
  7360. height: math.unit(200, "meters")
  7361. },
  7362. ]
  7363. ))
  7364. characterMakers.push(() => makeCharacter(
  7365. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7366. {
  7367. front: {
  7368. height: math.unit(2, "meters"),
  7369. weight: math.unit(150, "kg"),
  7370. name: "Front",
  7371. image: {
  7372. source: "./media/characters/everett/front.svg",
  7373. extra: 1017/866,
  7374. bottom: 86/1103
  7375. }
  7376. },
  7377. paw: {
  7378. height: math.unit(2 / 3.6, "meters"),
  7379. name: "Paw",
  7380. image: {
  7381. source: "./media/characters/everett/paw.svg"
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Normal",
  7388. height: math.unit(15, "feet"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Lorg",
  7393. height: math.unit(70, "feet"),
  7394. default: true
  7395. },
  7396. {
  7397. name: "Lorger",
  7398. height: math.unit(250, "feet")
  7399. },
  7400. {
  7401. name: "Macro",
  7402. height: math.unit(500, "meters")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(2, "meters"),
  7411. weight: math.unit(86, "kg"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/rose/front.svg",
  7415. extra: 1785/1636,
  7416. bottom: 30/1815
  7417. },
  7418. form: "liom",
  7419. default: true
  7420. },
  7421. frontSporty: {
  7422. height: math.unit(2, "meters"),
  7423. weight: math.unit(86, "kg"),
  7424. name: "Front (Sporty)",
  7425. image: {
  7426. source: "./media/characters/rose/front-sporty.svg",
  7427. extra: 350/335,
  7428. bottom: 10/360
  7429. },
  7430. form: "liom"
  7431. },
  7432. frontAlt: {
  7433. height: math.unit(1.6, "meters"),
  7434. weight: math.unit(86, "kg"),
  7435. name: "Front (Alt)",
  7436. image: {
  7437. source: "./media/characters/rose/front-alt.svg",
  7438. extra: 299/283,
  7439. bottom: 3/302
  7440. },
  7441. form: "liom"
  7442. },
  7443. plush: {
  7444. height: math.unit(2, "meters"),
  7445. weight: math.unit(86/3, "kg"),
  7446. name: "Plush",
  7447. image: {
  7448. source: "./media/characters/rose/plush.svg",
  7449. extra: 361/337,
  7450. bottom: 11/372
  7451. },
  7452. form: "plush",
  7453. default: true
  7454. },
  7455. faeStanding: {
  7456. height: math.unit(10, "cm"),
  7457. weight: math.unit(10, "grams"),
  7458. name: "Standing",
  7459. image: {
  7460. source: "./media/characters/rose/fae-standing.svg",
  7461. extra: 1189/1060,
  7462. bottom: 27/1216
  7463. },
  7464. form: "fae",
  7465. default: true
  7466. },
  7467. faeSitting: {
  7468. height: math.unit(5, "cm"),
  7469. weight: math.unit(10, "grams"),
  7470. name: "Sitting",
  7471. image: {
  7472. source: "./media/characters/rose/fae-sitting.svg",
  7473. extra: 737/577,
  7474. bottom: 356/1093
  7475. },
  7476. form: "fae"
  7477. },
  7478. faePaw: {
  7479. height: math.unit(1.35, "cm"),
  7480. name: "Paw",
  7481. image: {
  7482. source: "./media/characters/rose/fae-paw.svg"
  7483. },
  7484. form: "fae"
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "True Micro",
  7490. height: math.unit(9, "cm"),
  7491. form: "liom"
  7492. },
  7493. {
  7494. name: "Micro",
  7495. height: math.unit(16, "cm"),
  7496. form: "liom"
  7497. },
  7498. {
  7499. name: "Normal",
  7500. height: math.unit(1.85, "meters"),
  7501. default: true,
  7502. form: "liom"
  7503. },
  7504. {
  7505. name: "Mini-Macro",
  7506. height: math.unit(5, "meters"),
  7507. form: "liom"
  7508. },
  7509. {
  7510. name: "Macro",
  7511. height: math.unit(15, "meters"),
  7512. form: "liom"
  7513. },
  7514. {
  7515. name: "True Macro",
  7516. height: math.unit(40, "meters"),
  7517. form: "liom"
  7518. },
  7519. {
  7520. name: "City Scale",
  7521. height: math.unit(1, "km"),
  7522. form: "liom"
  7523. },
  7524. {
  7525. name: "Plushie",
  7526. height: math.unit(9, "cm"),
  7527. form: "plush",
  7528. default: true
  7529. },
  7530. {
  7531. name: "Fae",
  7532. height: math.unit(10, "cm"),
  7533. form: "fae",
  7534. default: true
  7535. },
  7536. ],
  7537. {
  7538. "liom": {
  7539. name: "Liom"
  7540. },
  7541. "plush": {
  7542. name: "Plush"
  7543. },
  7544. "fae": {
  7545. name: "Fae Fox",
  7546. default: true
  7547. }
  7548. }
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(2, "meters"),
  7555. weight: math.unit(350, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/regal/front.svg"
  7559. }
  7560. },
  7561. back: {
  7562. height: math.unit(2, "meters"),
  7563. weight: math.unit(350, "lbs"),
  7564. name: "Back",
  7565. image: {
  7566. source: "./media/characters/regal/back.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Macro",
  7573. height: math.unit(350, "feet"),
  7574. default: true
  7575. }
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(4 + 11 / 12, "feet"),
  7583. weight: math.unit(100, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/opal/front.svg"
  7587. }
  7588. },
  7589. frontAlt: {
  7590. height: math.unit(4 + 11 / 12, "feet"),
  7591. weight: math.unit(100, "lbs"),
  7592. name: "Front (Alt)",
  7593. image: {
  7594. source: "./media/characters/opal/front-alt.svg"
  7595. }
  7596. },
  7597. },
  7598. [
  7599. {
  7600. name: "Small",
  7601. height: math.unit(4 + 11 / 12, "feet")
  7602. },
  7603. {
  7604. name: "Normal",
  7605. height: math.unit(20, "feet"),
  7606. default: true
  7607. },
  7608. {
  7609. name: "Macro",
  7610. height: math.unit(120, "feet")
  7611. },
  7612. {
  7613. name: "Megamacro",
  7614. height: math.unit(80, "miles")
  7615. },
  7616. {
  7617. name: "True Size",
  7618. height: math.unit(100000, "lightyears")
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(200, "lbs"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/vector-wuff/front.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Normal",
  7637. height: math.unit(2.8, "meters")
  7638. },
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(450, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(15, "kilometers")
  7647. }
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7652. {
  7653. front: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(256, "lbs"),
  7656. name: "Front",
  7657. image: {
  7658. source: "./media/characters/dannik/front.svg"
  7659. }
  7660. }
  7661. },
  7662. [
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(69.57, "meters"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7672. {
  7673. front: {
  7674. height: math.unit(6, "feet"),
  7675. weight: math.unit(120, "lbs"),
  7676. name: "Front",
  7677. image: {
  7678. source: "./media/characters/azura-saharah/front.svg"
  7679. }
  7680. },
  7681. back: {
  7682. height: math.unit(6, "feet"),
  7683. weight: math.unit(120, "lbs"),
  7684. name: "Back",
  7685. image: {
  7686. source: "./media/characters/azura-saharah/back.svg"
  7687. }
  7688. },
  7689. },
  7690. [
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(100, "feet"),
  7694. default: true
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7700. {
  7701. side: {
  7702. height: math.unit(5 + 4 / 12, "feet"),
  7703. weight: math.unit(163, "lbs"),
  7704. name: "Side",
  7705. image: {
  7706. source: "./media/characters/kennedy/side.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Standard Doggo",
  7713. height: math.unit(5 + 4 / 12, "feet")
  7714. },
  7715. {
  7716. name: "Big Doggo",
  7717. height: math.unit(25 + 3 / 12, "feet"),
  7718. default: true
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(5 + 5/12, "feet"),
  7727. weight: math.unit(100, "lbs"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/odios-de-lunar/front.svg",
  7731. extra: 1468/1323,
  7732. bottom: 22/1490
  7733. }
  7734. }
  7735. },
  7736. [
  7737. {
  7738. name: "Micro",
  7739. height: math.unit(3, "inches")
  7740. },
  7741. {
  7742. name: "Normal",
  7743. height: math.unit(5.5, "feet"),
  7744. default: true
  7745. },
  7746. {
  7747. name: "Macro",
  7748. height: math.unit(100, "feet")
  7749. },
  7750. ]
  7751. ))
  7752. characterMakers.push(() => makeCharacter(
  7753. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7754. {
  7755. back: {
  7756. height: math.unit(6, "feet"),
  7757. weight: math.unit(220, "lbs"),
  7758. name: "Back",
  7759. image: {
  7760. source: "./media/characters/mandake/back.svg"
  7761. }
  7762. }
  7763. },
  7764. [
  7765. {
  7766. name: "Normal",
  7767. height: math.unit(7, "feet"),
  7768. default: true
  7769. },
  7770. {
  7771. name: "Macro",
  7772. height: math.unit(78, "feet")
  7773. },
  7774. {
  7775. name: "Macro+",
  7776. height: math.unit(300, "meters")
  7777. },
  7778. {
  7779. name: "Macro++",
  7780. height: math.unit(2400, "feet")
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(5167, "meters")
  7785. },
  7786. {
  7787. name: "Gigamacro",
  7788. height: math.unit(41769, "miles")
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(6, "feet"),
  7797. weight: math.unit(120, "lbs"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/yozey/front.svg"
  7801. }
  7802. },
  7803. frontAlt: {
  7804. height: math.unit(6, "feet"),
  7805. weight: math.unit(120, "lbs"),
  7806. name: "Front (Alt)",
  7807. image: {
  7808. source: "./media/characters/yozey/front-alt.svg"
  7809. }
  7810. },
  7811. side: {
  7812. height: math.unit(6, "feet"),
  7813. weight: math.unit(120, "lbs"),
  7814. name: "Side",
  7815. image: {
  7816. source: "./media/characters/yozey/side.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Micro",
  7823. height: math.unit(3, "inches"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(6, "feet")
  7829. }
  7830. ]
  7831. ))
  7832. characterMakers.push(() => makeCharacter(
  7833. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7834. {
  7835. front: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(103, "lbs"),
  7838. name: "Front",
  7839. image: {
  7840. source: "./media/characters/valeska-voss/front.svg"
  7841. }
  7842. }
  7843. },
  7844. [
  7845. {
  7846. name: "Mini-Sized Sub",
  7847. height: math.unit(3.1, "inches")
  7848. },
  7849. {
  7850. name: "Mid-Sized Sub",
  7851. height: math.unit(6.2, "inches")
  7852. },
  7853. {
  7854. name: "Full-Sized Sub",
  7855. height: math.unit(9.3, "inches")
  7856. },
  7857. {
  7858. name: "Normal",
  7859. height: math.unit(5 + 2 / 12, "foot"),
  7860. default: true
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(160, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/gene-zeta/front.svg",
  7873. extra: 3006 / 2826,
  7874. bottom: 182 / 3188
  7875. }
  7876. }
  7877. },
  7878. [
  7879. {
  7880. name: "Micro",
  7881. height: math.unit(6, "inches")
  7882. },
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(5 + 11 / 12, "foot"),
  7886. default: true
  7887. },
  7888. {
  7889. name: "Macro",
  7890. height: math.unit(140, "feet")
  7891. },
  7892. {
  7893. name: "Supercharged",
  7894. height: math.unit(2500, "feet")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(6, "feet"),
  7903. weight: math.unit(350, "lbs"),
  7904. name: "Front",
  7905. image: {
  7906. source: "./media/characters/razinox/front.svg",
  7907. extra: 1686 / 1548,
  7908. bottom: 28.2 / 1868
  7909. }
  7910. },
  7911. back: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(350, "lbs"),
  7914. name: "Back",
  7915. image: {
  7916. source: "./media/characters/razinox/back.svg",
  7917. extra: 1660 / 1590,
  7918. bottom: 15 / 1665
  7919. }
  7920. },
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(10 + 8 / 12, "foot")
  7926. },
  7927. {
  7928. name: "Minimacro",
  7929. height: math.unit(15, "foot")
  7930. },
  7931. {
  7932. name: "Macro",
  7933. height: math.unit(60, "foot"),
  7934. default: true
  7935. },
  7936. {
  7937. name: "Megamacro",
  7938. height: math.unit(5, "miles")
  7939. },
  7940. {
  7941. name: "Gigamacro",
  7942. height: math.unit(6000, "miles")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(6, "feet"),
  7951. weight: math.unit(150, "lbs"),
  7952. name: "Front",
  7953. image: {
  7954. source: "./media/characters/cobalt/front.svg"
  7955. }
  7956. }
  7957. },
  7958. [
  7959. {
  7960. name: "Normal",
  7961. height: math.unit(8 + 1 / 12, "foot")
  7962. },
  7963. {
  7964. name: "Macro",
  7965. height: math.unit(111, "foot"),
  7966. default: true
  7967. },
  7968. {
  7969. name: "Supracosmic",
  7970. height: math.unit(1e42, "feet")
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(5, "inches"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/amanda/front.svg",
  7982. extra: 926/791,
  7983. bottom: 38/964
  7984. }
  7985. },
  7986. back: {
  7987. height: math.unit(5, "inches"),
  7988. name: "Back",
  7989. image: {
  7990. source: "./media/characters/amanda/back.svg",
  7991. extra: 909/805,
  7992. bottom: 43/952
  7993. }
  7994. },
  7995. },
  7996. [
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(5, "inches"),
  8000. default: true
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8006. {
  8007. front: {
  8008. height: math.unit(2.75, "meters"),
  8009. weight: math.unit(1200, "lb"),
  8010. name: "Front",
  8011. image: {
  8012. source: "./media/characters/teal/front.svg",
  8013. extra: 2463 / 2320,
  8014. bottom: 166 / 2629
  8015. }
  8016. },
  8017. back: {
  8018. height: math.unit(2.75, "meters"),
  8019. weight: math.unit(1200, "lb"),
  8020. name: "Back",
  8021. image: {
  8022. source: "./media/characters/teal/back.svg",
  8023. extra: 2580 / 2489,
  8024. bottom: 151 / 2731
  8025. }
  8026. },
  8027. sitting: {
  8028. height: math.unit(1.9, "meters"),
  8029. weight: math.unit(1200, "lb"),
  8030. name: "Sitting",
  8031. image: {
  8032. source: "./media/characters/teal/sitting.svg",
  8033. extra: 623 / 590,
  8034. bottom: 121 / 744
  8035. }
  8036. },
  8037. standing: {
  8038. height: math.unit(2.75, "meters"),
  8039. weight: math.unit(1200, "lb"),
  8040. name: "Standing",
  8041. image: {
  8042. source: "./media/characters/teal/standing.svg",
  8043. extra: 923 / 893,
  8044. bottom: 60 / 983
  8045. }
  8046. },
  8047. stretching: {
  8048. height: math.unit(3.65, "meters"),
  8049. weight: math.unit(1200, "lb"),
  8050. name: "Stretching",
  8051. image: {
  8052. source: "./media/characters/teal/stretching.svg",
  8053. extra: 1276 / 1244,
  8054. bottom: 0 / 1276
  8055. }
  8056. },
  8057. legged: {
  8058. height: math.unit(1.3, "meters"),
  8059. weight: math.unit(100, "lb"),
  8060. name: "Legged",
  8061. image: {
  8062. source: "./media/characters/teal/legged.svg",
  8063. extra: 462 / 437,
  8064. bottom: 24 / 486
  8065. }
  8066. },
  8067. naga: {
  8068. height: math.unit(5.4, "meters"),
  8069. weight: math.unit(4000, "lb"),
  8070. name: "Naga",
  8071. image: {
  8072. source: "./media/characters/teal/naga.svg",
  8073. extra: 1902 / 1858,
  8074. bottom: 0 / 1902
  8075. }
  8076. },
  8077. hand: {
  8078. height: math.unit(0.52, "meters"),
  8079. name: "Hand",
  8080. image: {
  8081. source: "./media/characters/teal/hand.svg"
  8082. }
  8083. },
  8084. maw: {
  8085. height: math.unit(0.43, "meters"),
  8086. name: "Maw",
  8087. image: {
  8088. source: "./media/characters/teal/maw.svg"
  8089. }
  8090. },
  8091. slit: {
  8092. height: math.unit(0.25, "meters"),
  8093. name: "Slit",
  8094. image: {
  8095. source: "./media/characters/teal/slit.svg"
  8096. }
  8097. },
  8098. },
  8099. [
  8100. {
  8101. name: "Normal",
  8102. height: math.unit(2.75, "meters"),
  8103. default: true
  8104. },
  8105. {
  8106. name: "Macro",
  8107. height: math.unit(300, "feet")
  8108. },
  8109. {
  8110. name: "Macro+",
  8111. height: math.unit(2000, "feet")
  8112. },
  8113. ]
  8114. ))
  8115. characterMakers.push(() => makeCharacter(
  8116. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8117. {
  8118. frontCat: {
  8119. height: math.unit(6, "feet"),
  8120. weight: math.unit(180, "lbs"),
  8121. name: "Front (Cat)",
  8122. image: {
  8123. source: "./media/characters/ravin-amulet/front-cat.svg"
  8124. }
  8125. },
  8126. frontCatAlt: {
  8127. height: math.unit(6, "feet"),
  8128. weight: math.unit(180, "lbs"),
  8129. name: "Front (Alt, Cat)",
  8130. image: {
  8131. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8132. }
  8133. },
  8134. frontWerewolf: {
  8135. height: math.unit(6 * 1.2, "feet"),
  8136. weight: math.unit(225, "lbs"),
  8137. name: "Front (Werewolf)",
  8138. image: {
  8139. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8140. }
  8141. },
  8142. backWerewolf: {
  8143. height: math.unit(6 * 1.2, "feet"),
  8144. weight: math.unit(225, "lbs"),
  8145. name: "Back (Werewolf)",
  8146. image: {
  8147. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8148. }
  8149. },
  8150. },
  8151. [
  8152. {
  8153. name: "Nano",
  8154. height: math.unit(1, "micrometer")
  8155. },
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(1, "inch")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(6, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(60, "feet")
  8168. }
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(6, "feet"),
  8176. weight: math.unit(165, "lbs"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/fluoresce/front.svg"
  8180. }
  8181. }
  8182. },
  8183. [
  8184. {
  8185. name: "Micro",
  8186. height: math.unit(6, "cm")
  8187. },
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(5 + 7 / 12, "feet"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Macro",
  8195. height: math.unit(56, "feet")
  8196. },
  8197. {
  8198. name: "Megamacro",
  8199. height: math.unit(1.9, "miles")
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(9 + 6 / 12, "feet"),
  8208. weight: math.unit(523, "lbs"),
  8209. name: "Side",
  8210. image: {
  8211. source: "./media/characters/aurora/side.svg"
  8212. }
  8213. }
  8214. },
  8215. [
  8216. {
  8217. name: "Normal",
  8218. height: math.unit(9 + 6 / 12, "feet")
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(96, "feet"),
  8223. default: true
  8224. },
  8225. {
  8226. name: "Macro+",
  8227. height: math.unit(243, "feet")
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(194, "cm"),
  8236. weight: math.unit(90, "kg"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/ranek/front.svg",
  8240. extra: 1862/1791,
  8241. bottom: 80/1942
  8242. }
  8243. },
  8244. back: {
  8245. height: math.unit(194, "cm"),
  8246. weight: math.unit(90, "kg"),
  8247. name: "Back",
  8248. image: {
  8249. source: "./media/characters/ranek/back.svg",
  8250. extra: 1853/1787,
  8251. bottom: 74/1927
  8252. }
  8253. },
  8254. feral: {
  8255. height: math.unit(30, "cm"),
  8256. weight: math.unit(1.6, "lbs"),
  8257. name: "Feral",
  8258. image: {
  8259. source: "./media/characters/ranek/feral.svg",
  8260. extra: 990/631,
  8261. bottom: 29/1019
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Normal",
  8268. height: math.unit(194, "cm"),
  8269. default: true
  8270. },
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(100, "meters")
  8274. },
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(5 + 6 / 12, "feet"),
  8282. weight: math.unit(153, "lbs"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/andrew-cooper/front.svg"
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Nano",
  8292. height: math.unit(1, "mm")
  8293. },
  8294. {
  8295. name: "Micro",
  8296. height: math.unit(2, "inches")
  8297. },
  8298. {
  8299. name: "Normal",
  8300. height: math.unit(5 + 6 / 12, "feet"),
  8301. default: true
  8302. }
  8303. ]
  8304. ))
  8305. characterMakers.push(() => makeCharacter(
  8306. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8307. {
  8308. front: {
  8309. height: math.unit(6, "feet"),
  8310. weight: math.unit(180, "lbs"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/akane-sato/front.svg",
  8314. extra: 1219 / 1140
  8315. }
  8316. },
  8317. back: {
  8318. height: math.unit(6, "feet"),
  8319. weight: math.unit(180, "lbs"),
  8320. name: "Back",
  8321. image: {
  8322. source: "./media/characters/akane-sato/back.svg",
  8323. extra: 1219 / 1170
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Normal",
  8330. height: math.unit(2.5, "meters")
  8331. },
  8332. {
  8333. name: "Macro",
  8334. height: math.unit(250, "meters"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Megamacro",
  8339. height: math.unit(25, "km")
  8340. },
  8341. ]
  8342. ))
  8343. characterMakers.push(() => makeCharacter(
  8344. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8345. {
  8346. front: {
  8347. height: math.unit(6, "feet"),
  8348. weight: math.unit(65, "kg"),
  8349. name: "Front",
  8350. image: {
  8351. source: "./media/characters/rook/front.svg",
  8352. extra: 960 / 950
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(8.8, "feet")
  8360. },
  8361. {
  8362. name: "Macro",
  8363. height: math.unit(88, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(8, "miles")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(12 + 2 / 12, "feet"),
  8377. weight: math.unit(808, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/prodigy/front.svg"
  8381. }
  8382. }
  8383. },
  8384. [
  8385. {
  8386. name: "Normal",
  8387. height: math.unit(12 + 2 / 12, "feet"),
  8388. default: true
  8389. },
  8390. {
  8391. name: "Macro",
  8392. height: math.unit(143, "feet")
  8393. },
  8394. {
  8395. name: "Macro+",
  8396. height: math.unit(400, "feet")
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(225, "lbs"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/daniel/front.svg"
  8409. }
  8410. },
  8411. leaning: {
  8412. height: math.unit(6, "feet"),
  8413. weight: math.unit(225, "lbs"),
  8414. name: "Leaning",
  8415. image: {
  8416. source: "./media/characters/daniel/leaning.svg"
  8417. }
  8418. },
  8419. },
  8420. [
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(1000, "feet"),
  8424. default: true
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(88, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/chiros/front.svg",
  8437. extra: 306 / 226
  8438. }
  8439. },
  8440. side: {
  8441. height: math.unit(6, "feet"),
  8442. weight: math.unit(88, "lbs"),
  8443. name: "Side",
  8444. image: {
  8445. source: "./media/characters/chiros/side.svg",
  8446. extra: 306 / 226
  8447. }
  8448. },
  8449. },
  8450. [
  8451. {
  8452. name: "Normal",
  8453. height: math.unit(6, "cm"),
  8454. default: true
  8455. },
  8456. ]
  8457. ))
  8458. characterMakers.push(() => makeCharacter(
  8459. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8460. {
  8461. front: {
  8462. height: math.unit(6, "feet"),
  8463. weight: math.unit(100, "lbs"),
  8464. name: "Front",
  8465. image: {
  8466. source: "./media/characters/selka/front.svg",
  8467. extra: 947 / 887
  8468. }
  8469. }
  8470. },
  8471. [
  8472. {
  8473. name: "Normal",
  8474. height: math.unit(5, "cm"),
  8475. default: true
  8476. },
  8477. ]
  8478. ))
  8479. characterMakers.push(() => makeCharacter(
  8480. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8481. {
  8482. front: {
  8483. height: math.unit(8 + 3 / 12, "feet"),
  8484. weight: math.unit(424, "lbs"),
  8485. name: "Front",
  8486. image: {
  8487. source: "./media/characters/verin/front.svg",
  8488. extra: 1845 / 1550
  8489. }
  8490. },
  8491. frontArmored: {
  8492. height: math.unit(8 + 3 / 12, "feet"),
  8493. weight: math.unit(424, "lbs"),
  8494. name: "Front (Armored)",
  8495. image: {
  8496. source: "./media/characters/verin/front-armor.svg",
  8497. extra: 1845 / 1550,
  8498. bottom: 0.01
  8499. }
  8500. },
  8501. back: {
  8502. height: math.unit(8 + 3 / 12, "feet"),
  8503. weight: math.unit(424, "lbs"),
  8504. name: "Back",
  8505. image: {
  8506. source: "./media/characters/verin/back.svg",
  8507. bottom: 0.1,
  8508. extra: 1
  8509. }
  8510. },
  8511. foot: {
  8512. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8513. name: "Foot",
  8514. image: {
  8515. source: "./media/characters/verin/foot.svg"
  8516. }
  8517. },
  8518. },
  8519. [
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(8 + 3 / 12, "feet")
  8523. },
  8524. {
  8525. name: "Minimacro",
  8526. height: math.unit(21, "feet"),
  8527. default: true
  8528. },
  8529. {
  8530. name: "Macro",
  8531. height: math.unit(626, "feet")
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(2.718, "meters"),
  8540. weight: math.unit(150, "lbs"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/sovrim-terraquian/front.svg",
  8544. extra: 1752/1689,
  8545. bottom: 36/1788
  8546. }
  8547. },
  8548. back: {
  8549. height: math.unit(2.718, "meters"),
  8550. weight: math.unit(150, "lbs"),
  8551. name: "Back",
  8552. image: {
  8553. source: "./media/characters/sovrim-terraquian/back.svg",
  8554. extra: 1698/1657,
  8555. bottom: 58/1756
  8556. }
  8557. },
  8558. tongue: {
  8559. height: math.unit(2.865, "feet"),
  8560. name: "Tongue",
  8561. image: {
  8562. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8563. }
  8564. },
  8565. hand: {
  8566. height: math.unit(1.61, "feet"),
  8567. name: "Hand",
  8568. image: {
  8569. source: "./media/characters/sovrim-terraquian/hand.svg"
  8570. }
  8571. },
  8572. foot: {
  8573. height: math.unit(1.05, "feet"),
  8574. name: "Foot",
  8575. image: {
  8576. source: "./media/characters/sovrim-terraquian/foot.svg"
  8577. }
  8578. },
  8579. footAlt: {
  8580. height: math.unit(0.88, "feet"),
  8581. name: "Foot (Alt)",
  8582. image: {
  8583. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8584. }
  8585. },
  8586. },
  8587. [
  8588. {
  8589. name: "Micro",
  8590. height: math.unit(2, "inches")
  8591. },
  8592. {
  8593. name: "Small",
  8594. height: math.unit(1, "meter")
  8595. },
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(Math.E, "meters"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(20, "meters")
  8604. },
  8605. {
  8606. name: "Macro+",
  8607. height: math.unit(400, "meters")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(7, "feet"),
  8616. weight: math.unit(489, "lbs"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/reece-silvermane/front.svg",
  8620. bottom: 0.02,
  8621. extra: 1
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(1.5, "miles"),
  8629. default: true
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(6, "feet"),
  8638. weight: math.unit(78, "kg"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/kane/front.svg",
  8642. extra: 978 / 899
  8643. }
  8644. },
  8645. },
  8646. [
  8647. {
  8648. name: "Normal",
  8649. height: math.unit(2.1, "m"),
  8650. },
  8651. {
  8652. name: "Macro",
  8653. height: math.unit(1, "km"),
  8654. default: true
  8655. },
  8656. ]
  8657. ))
  8658. characterMakers.push(() => makeCharacter(
  8659. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8660. {
  8661. front: {
  8662. height: math.unit(6, "feet"),
  8663. weight: math.unit(200, "kg"),
  8664. name: "Front",
  8665. image: {
  8666. source: "./media/characters/tegon/front.svg",
  8667. bottom: 0.01,
  8668. extra: 1
  8669. }
  8670. },
  8671. },
  8672. [
  8673. {
  8674. name: "Micro",
  8675. height: math.unit(1, "inch")
  8676. },
  8677. {
  8678. name: "Normal",
  8679. height: math.unit(6 + 3 / 12, "feet"),
  8680. default: true
  8681. },
  8682. {
  8683. name: "Macro",
  8684. height: math.unit(300, "feet")
  8685. },
  8686. {
  8687. name: "Megamacro",
  8688. height: math.unit(69, "miles")
  8689. },
  8690. ]
  8691. ))
  8692. characterMakers.push(() => makeCharacter(
  8693. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8694. {
  8695. side: {
  8696. height: math.unit(6, "feet"),
  8697. weight: math.unit(2304, "lbs"),
  8698. name: "Side",
  8699. image: {
  8700. source: "./media/characters/arcturax/side.svg",
  8701. extra: 790 / 376,
  8702. bottom: 0.01
  8703. }
  8704. },
  8705. },
  8706. [
  8707. {
  8708. name: "Micro",
  8709. height: math.unit(2, "inch")
  8710. },
  8711. {
  8712. name: "Normal",
  8713. height: math.unit(6, "feet")
  8714. },
  8715. {
  8716. name: "Macro",
  8717. height: math.unit(39, "feet"),
  8718. default: true
  8719. },
  8720. {
  8721. name: "Megamacro",
  8722. height: math.unit(7, "miles")
  8723. },
  8724. ]
  8725. ))
  8726. characterMakers.push(() => makeCharacter(
  8727. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8728. {
  8729. front: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(50, "lbs"),
  8732. name: "Front",
  8733. image: {
  8734. source: "./media/characters/sentri/front.svg",
  8735. extra: 1750 / 1570,
  8736. bottom: 0.025
  8737. }
  8738. },
  8739. frontAlt: {
  8740. height: math.unit(6, "feet"),
  8741. weight: math.unit(50, "lbs"),
  8742. name: "Front (Alt)",
  8743. image: {
  8744. source: "./media/characters/sentri/front-alt.svg",
  8745. extra: 1750 / 1570,
  8746. bottom: 0.025
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(15, "feet"),
  8754. default: true
  8755. },
  8756. {
  8757. name: "Macro",
  8758. height: math.unit(2500, "feet")
  8759. }
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(5 + 8 / 12, "feet"),
  8767. weight: math.unit(130, "lbs"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/corvin/front.svg",
  8771. extra: 1803 / 1629
  8772. }
  8773. },
  8774. frontShirt: {
  8775. height: math.unit(5 + 8 / 12, "feet"),
  8776. weight: math.unit(130, "lbs"),
  8777. name: "Front (Shirt)",
  8778. image: {
  8779. source: "./media/characters/corvin/front-shirt.svg",
  8780. extra: 1803 / 1629
  8781. }
  8782. },
  8783. frontPoncho: {
  8784. height: math.unit(5 + 8 / 12, "feet"),
  8785. weight: math.unit(130, "lbs"),
  8786. name: "Front (Poncho)",
  8787. image: {
  8788. source: "./media/characters/corvin/front-poncho.svg",
  8789. extra: 1803 / 1629
  8790. }
  8791. },
  8792. side: {
  8793. height: math.unit(5 + 8 / 12, "feet"),
  8794. weight: math.unit(130, "lbs"),
  8795. name: "Side",
  8796. image: {
  8797. source: "./media/characters/corvin/side.svg",
  8798. extra: 1012 / 945
  8799. }
  8800. },
  8801. back: {
  8802. height: math.unit(5 + 8 / 12, "feet"),
  8803. weight: math.unit(130, "lbs"),
  8804. name: "Back",
  8805. image: {
  8806. source: "./media/characters/corvin/back.svg",
  8807. extra: 1803 / 1629
  8808. }
  8809. },
  8810. },
  8811. [
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(3, "inches")
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 8 / 12, "feet")
  8819. },
  8820. {
  8821. name: "Macro",
  8822. height: math.unit(300, "feet"),
  8823. default: true
  8824. },
  8825. {
  8826. name: "Megamacro",
  8827. height: math.unit(500, "miles")
  8828. }
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8833. {
  8834. front: {
  8835. height: math.unit(6, "feet"),
  8836. weight: math.unit(135, "lbs"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/q/front.svg",
  8840. extra: 854 / 752,
  8841. bottom: 0.005
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(6, "feet"),
  8846. weight: math.unit(130, "lbs"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/q/back.svg",
  8850. extra: 854 / 752
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Macro",
  8857. height: math.unit(90, "feet"),
  8858. default: true
  8859. },
  8860. {
  8861. name: "Extra Macro",
  8862. height: math.unit(300, "feet"),
  8863. },
  8864. {
  8865. name: "BIG WALF",
  8866. height: math.unit(750, "feet"),
  8867. },
  8868. ]
  8869. ))
  8870. characterMakers.push(() => makeCharacter(
  8871. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8872. {
  8873. front: {
  8874. height: math.unit(3, "feet"),
  8875. weight: math.unit(28, "lbs"),
  8876. name: "Front",
  8877. image: {
  8878. source: "./media/characters/citrine/front.svg"
  8879. }
  8880. }
  8881. },
  8882. [
  8883. {
  8884. name: "Normal",
  8885. height: math.unit(3, "feet"),
  8886. default: true
  8887. }
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8892. {
  8893. front: {
  8894. height: math.unit(14, "feet"),
  8895. weight: math.unit(1450, "kg"),
  8896. preyCapacity: math.unit(15, "people"),
  8897. name: "Front",
  8898. image: {
  8899. source: "./media/characters/aura-starwind/front.svg",
  8900. extra: 1440/1327,
  8901. bottom: 11/1451
  8902. }
  8903. },
  8904. side: {
  8905. height: math.unit(14, "feet"),
  8906. weight: math.unit(1450, "kg"),
  8907. preyCapacity: math.unit(15, "people"),
  8908. name: "Side",
  8909. image: {
  8910. source: "./media/characters/aura-starwind/side.svg",
  8911. extra: 1654 / 1497
  8912. }
  8913. },
  8914. taur: {
  8915. height: math.unit(18, "feet"),
  8916. weight: math.unit(5500, "kg"),
  8917. preyCapacity: math.unit(50, "people"),
  8918. name: "Taur",
  8919. image: {
  8920. source: "./media/characters/aura-starwind/taur.svg",
  8921. extra: 1760 / 1650
  8922. }
  8923. },
  8924. feral: {
  8925. height: math.unit(46, "feet"),
  8926. weight: math.unit(25000, "kg"),
  8927. preyCapacity: math.unit(120, "people"),
  8928. name: "Feral",
  8929. image: {
  8930. source: "./media/characters/aura-starwind/feral.svg"
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(14, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(50, "meters")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(5000, "meters")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(100000, "kilometers")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(2 + 7 / 12, "feet"),
  8959. weight: math.unit(32, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/rivet/front.svg",
  8963. extra: 1716 / 1658,
  8964. bottom: 0.03
  8965. }
  8966. },
  8967. foot: {
  8968. height: math.unit(0.551, "feet"),
  8969. name: "Rivet's Foot",
  8970. image: {
  8971. source: "./media/characters/rivet/foot.svg"
  8972. },
  8973. rename: true
  8974. }
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(1.5, "inches"),
  8980. },
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(2 + 7 / 12, "feet"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(85, "feet")
  8989. },
  8990. {
  8991. name: "Megamacro",
  8992. height: math.unit(2.2, "km")
  8993. }
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(5 + 9 / 12, "feet"),
  9001. weight: math.unit(150, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/coffee/front.svg",
  9005. extra: 946/880,
  9006. bottom: 66/1012
  9007. }
  9008. },
  9009. foot: {
  9010. height: math.unit(1.29, "feet"),
  9011. name: "Foot",
  9012. image: {
  9013. source: "./media/characters/coffee/foot.svg"
  9014. }
  9015. },
  9016. },
  9017. [
  9018. {
  9019. name: "Micro",
  9020. height: math.unit(2, "inches"),
  9021. },
  9022. {
  9023. name: "Normal",
  9024. height: math.unit(5 + 9 / 12, "feet"),
  9025. default: true
  9026. },
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(800, "feet")
  9030. },
  9031. {
  9032. name: "Megamacro",
  9033. height: math.unit(25, "miles")
  9034. }
  9035. ]
  9036. ))
  9037. characterMakers.push(() => makeCharacter(
  9038. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9039. {
  9040. front: {
  9041. height: math.unit(6, "feet"),
  9042. weight: math.unit(200, "lbs"),
  9043. name: "Front",
  9044. image: {
  9045. source: "./media/characters/chari-gal/front.svg",
  9046. extra: 1568 / 1385,
  9047. bottom: 0.047
  9048. }
  9049. },
  9050. gigantamax: {
  9051. height: math.unit(6 * 16, "feet"),
  9052. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9053. name: "Gigantamax",
  9054. image: {
  9055. source: "./media/characters/chari-gal/gigantamax.svg",
  9056. extra: 1124 / 888,
  9057. bottom: 0.03
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Normal",
  9064. height: math.unit(5 + 7 / 12, "feet")
  9065. },
  9066. {
  9067. name: "Macro",
  9068. height: math.unit(200, "feet"),
  9069. default: true
  9070. }
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(150, "lbs"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/nova/front.svg",
  9082. extra: 5000 / 4722,
  9083. bottom: 0.02
  9084. }
  9085. }
  9086. },
  9087. [
  9088. {
  9089. name: "Micro-",
  9090. height: math.unit(0.8, "inches")
  9091. },
  9092. {
  9093. name: "Micro",
  9094. height: math.unit(2, "inches"),
  9095. default: true
  9096. },
  9097. ]
  9098. ))
  9099. characterMakers.push(() => makeCharacter(
  9100. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9101. {
  9102. koboldFront: {
  9103. height: math.unit(3 + 1 / 12, "feet"),
  9104. weight: math.unit(21.7, "lbs"),
  9105. name: "Front",
  9106. image: {
  9107. source: "./media/characters/argent/kobold-front.svg",
  9108. extra: 1471 / 1331,
  9109. bottom: 100.8 / 1575.5
  9110. },
  9111. form: "kobold",
  9112. default: true
  9113. },
  9114. dragonFront: {
  9115. height: math.unit(75, "inches"),
  9116. name: "Front",
  9117. image: {
  9118. source: "./media/characters/argent/dragon-front.svg",
  9119. extra: 1389/1248,
  9120. bottom: 54/1443
  9121. },
  9122. form: "dragon",
  9123. },
  9124. dragonBack: {
  9125. height: math.unit(75, "inches"),
  9126. name: "Back",
  9127. image: {
  9128. source: "./media/characters/argent/dragon-back.svg",
  9129. extra: 1399/1271,
  9130. bottom: 23/1422
  9131. },
  9132. form: "dragon",
  9133. },
  9134. dragonDressed: {
  9135. height: math.unit(75, "inches"),
  9136. name: "Dressed",
  9137. image: {
  9138. source: "./media/characters/argent/dragon-dressed.svg",
  9139. extra: 1350/1215,
  9140. bottom: 26/1376
  9141. },
  9142. form: "dragon"
  9143. },
  9144. dragonHead: {
  9145. height: math.unit(23.5, "inches"),
  9146. name: "Head",
  9147. image: {
  9148. source: "./media/characters/argent/dragon-head.svg"
  9149. },
  9150. form: "dragon",
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(2, "inches"),
  9157. form: "kobold",
  9158. },
  9159. {
  9160. name: "Normal",
  9161. height: math.unit(3 + 1 / 12, "feet"),
  9162. form: "kobold",
  9163. default: true
  9164. },
  9165. {
  9166. name: "Macro",
  9167. height: math.unit(120, "feet"),
  9168. form: "kobold",
  9169. },
  9170. {
  9171. name: "Speck",
  9172. height: math.unit(1, "mm"),
  9173. form: "dragon",
  9174. },
  9175. {
  9176. name: "Tiny",
  9177. height: math.unit(1, "cm"),
  9178. form: "dragon",
  9179. },
  9180. {
  9181. name: "Micro",
  9182. height: math.unit(5, "cm"),
  9183. form: "dragon",
  9184. },
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(75, "inches"),
  9188. form: "dragon",
  9189. default: true
  9190. },
  9191. {
  9192. name: "Extra Tall",
  9193. height: math.unit(9, "feet"),
  9194. form: "dragon",
  9195. },
  9196. {
  9197. name: "Inconvenient",
  9198. height: math.unit(5, "meters"),
  9199. form: "dragon",
  9200. },
  9201. {
  9202. name: "Macro",
  9203. height: math.unit(70, "meters"),
  9204. form: "dragon",
  9205. },
  9206. {
  9207. name: "Macro+",
  9208. height: math.unit(250, "meters"),
  9209. form: "dragon",
  9210. },
  9211. {
  9212. name: "Megamacro",
  9213. height: math.unit(20, "km"),
  9214. form: "dragon",
  9215. },
  9216. {
  9217. name: "Mountainous",
  9218. height: math.unit(100, "km"),
  9219. form: "dragon",
  9220. },
  9221. {
  9222. name: "Continental",
  9223. height: math.unit(2, "megameters"),
  9224. form: "dragon",
  9225. },
  9226. {
  9227. name: "Too Big",
  9228. height: math.unit(900, "megameters"),
  9229. form: "dragon",
  9230. },
  9231. ],
  9232. {
  9233. "kobold": {
  9234. name: "Kobold",
  9235. default: true
  9236. },
  9237. "dragon": {
  9238. name: "Dragon",
  9239. },
  9240. }
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9244. {
  9245. lamp: {
  9246. height: math.unit(7 * 1559 / 989, "feet"),
  9247. name: "Magic Lamp",
  9248. image: {
  9249. source: "./media/characters/mira-al-cul/lamp.svg",
  9250. extra: 1617 / 1559
  9251. }
  9252. },
  9253. front: {
  9254. height: math.unit(7, "feet"),
  9255. name: "Front",
  9256. image: {
  9257. source: "./media/characters/mira-al-cul/front.svg",
  9258. extra: 1044 / 990
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Heavily Restricted",
  9265. height: math.unit(7 * 1559 / 989, "feet")
  9266. },
  9267. {
  9268. name: "Freshly Freed",
  9269. height: math.unit(50 * 1559 / 989, "feet")
  9270. },
  9271. {
  9272. name: "World Encompassing",
  9273. height: math.unit(10000 * 1559 / 989, "miles")
  9274. },
  9275. {
  9276. name: "Galactic",
  9277. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9278. },
  9279. {
  9280. name: "Palmed Universe",
  9281. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Multiversal Matriarch",
  9286. height: math.unit(8.87e10, "yottameters")
  9287. },
  9288. {
  9289. name: "Void Mother",
  9290. height: math.unit(3.14e110, "yottaparsecs")
  9291. },
  9292. {
  9293. name: "Toying with Transcendence",
  9294. height: math.unit(1e307, "meters")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9300. {
  9301. front: {
  9302. height: math.unit(17 + 1 / 12, "feet"),
  9303. weight: math.unit(476.2 * 5, "lbs"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/kuro-shi-uchū/front.svg",
  9307. extra: 2329 / 1835,
  9308. bottom: 0.02
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Micro",
  9315. height: math.unit(2, "inches")
  9316. },
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(12, "meters")
  9320. },
  9321. {
  9322. name: "Planetary",
  9323. height: math.unit(0.00929, "AU"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Universal",
  9328. height: math.unit(20, "gigaparsecs")
  9329. },
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(5 + 2 / 12, "feet"),
  9337. weight: math.unit(120, "lbs"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/katherine/front.svg",
  9341. extra: 2075 / 1969
  9342. }
  9343. },
  9344. dress: {
  9345. height: math.unit(5 + 2 / 12, "feet"),
  9346. weight: math.unit(120, "lbs"),
  9347. name: "Dress",
  9348. image: {
  9349. source: "./media/characters/katherine/dress.svg",
  9350. extra: 2258 / 2064
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Micro",
  9357. height: math.unit(1, "inches"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Normal",
  9362. height: math.unit(5 + 2 / 12, "feet")
  9363. },
  9364. {
  9365. name: "Macro",
  9366. height: math.unit(100, "meters")
  9367. },
  9368. {
  9369. name: "Megamacro",
  9370. height: math.unit(80, "miles")
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9376. {
  9377. front: {
  9378. height: math.unit(7 + 8 / 12, "feet"),
  9379. weight: math.unit(250, "lbs"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/yevis/front.svg",
  9383. extra: 1938 / 1755
  9384. }
  9385. }
  9386. },
  9387. [
  9388. {
  9389. name: "Mortal",
  9390. height: math.unit(7 + 8 / 12, "feet")
  9391. },
  9392. {
  9393. name: "Battle",
  9394. height: math.unit(25 + 11 / 12, "feet")
  9395. },
  9396. {
  9397. name: "Wrath",
  9398. height: math.unit(1654 + 11 / 12, "feet")
  9399. },
  9400. {
  9401. name: "Planet Destroyer",
  9402. height: math.unit(12000, "miles")
  9403. },
  9404. {
  9405. name: "Galaxy Conqueror",
  9406. height: math.unit(1.45, "zettameters"),
  9407. default: true
  9408. },
  9409. {
  9410. name: "Universal War",
  9411. height: math.unit(184, "gigaparsecs")
  9412. },
  9413. {
  9414. name: "Eternity War",
  9415. height: math.unit(1.98e55, "yottaparsecs")
  9416. },
  9417. ]
  9418. ))
  9419. characterMakers.push(() => makeCharacter(
  9420. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9421. {
  9422. front: {
  9423. height: math.unit(5 + 8 / 12, "feet"),
  9424. weight: math.unit(63, "kg"),
  9425. name: "Front",
  9426. image: {
  9427. source: "./media/characters/xavier/front.svg",
  9428. extra: 944 / 883
  9429. }
  9430. },
  9431. frontStretch: {
  9432. height: math.unit(5 + 8 / 12, "feet"),
  9433. weight: math.unit(63, "kg"),
  9434. name: "Stretching",
  9435. image: {
  9436. source: "./media/characters/xavier/front-stretch.svg",
  9437. extra: 962 / 820
  9438. }
  9439. },
  9440. },
  9441. [
  9442. {
  9443. name: "Normal",
  9444. height: math.unit(5 + 8 / 12, "feet")
  9445. },
  9446. {
  9447. name: "Macro",
  9448. height: math.unit(100, "meters"),
  9449. default: true
  9450. },
  9451. {
  9452. name: "McLargeHuge",
  9453. height: math.unit(10, "miles")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(5 + 5 / 12, "feet"),
  9462. weight: math.unit(150, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/joshii/front.svg",
  9466. extra: 765 / 653,
  9467. bottom: 51 / 816
  9468. }
  9469. },
  9470. foot: {
  9471. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9472. name: "Foot",
  9473. image: {
  9474. source: "./media/characters/joshii/foot.svg"
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Micro",
  9481. height: math.unit(2, "inches")
  9482. },
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(5 + 5 / 12, "feet")
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(785, "feet"),
  9490. default: true
  9491. },
  9492. {
  9493. name: "Megamacro",
  9494. height: math.unit(24.5, "miles")
  9495. },
  9496. ]
  9497. ))
  9498. characterMakers.push(() => makeCharacter(
  9499. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9500. {
  9501. front: {
  9502. height: math.unit(6, "feet"),
  9503. weight: math.unit(150, "lb"),
  9504. name: "Front",
  9505. image: {
  9506. source: "./media/characters/goddess-elizabeth/front.svg",
  9507. extra: 1800 / 1525,
  9508. bottom: 0.005
  9509. }
  9510. },
  9511. foot: {
  9512. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9513. name: "Foot",
  9514. image: {
  9515. source: "./media/characters/goddess-elizabeth/foot.svg"
  9516. }
  9517. },
  9518. mouth: {
  9519. height: math.unit(6, "feet"),
  9520. name: "Mouth",
  9521. image: {
  9522. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(12, "feet")
  9530. },
  9531. {
  9532. name: "Normal",
  9533. height: math.unit(80, "miles"),
  9534. default: true
  9535. },
  9536. {
  9537. name: "Macro",
  9538. height: math.unit(15000, "parsecs")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(5 + 9 / 12, "feet"),
  9547. weight: math.unit(144, "lb"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/kara/front.svg"
  9551. }
  9552. },
  9553. feet: {
  9554. height: math.unit(6 / 6.765, "feet"),
  9555. name: "Kara's Feet",
  9556. rename: true,
  9557. image: {
  9558. source: "./media/characters/kara/feet.svg"
  9559. }
  9560. },
  9561. },
  9562. [
  9563. {
  9564. name: "Normal",
  9565. height: math.unit(5 + 9 / 12, "feet")
  9566. },
  9567. {
  9568. name: "Macro",
  9569. height: math.unit(174, "feet"),
  9570. default: true
  9571. },
  9572. ]
  9573. ))
  9574. characterMakers.push(() => makeCharacter(
  9575. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9576. {
  9577. front: {
  9578. height: math.unit(18, "feet"),
  9579. weight: math.unit(4050, "lb"),
  9580. name: "Front",
  9581. image: {
  9582. source: "./media/characters/tyrone/front.svg",
  9583. extra: 2405 / 2270,
  9584. bottom: 182 / 2587
  9585. }
  9586. },
  9587. },
  9588. [
  9589. {
  9590. name: "Normal",
  9591. height: math.unit(18, "feet"),
  9592. default: true
  9593. },
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(300, "feet")
  9597. },
  9598. {
  9599. name: "Megamacro",
  9600. height: math.unit(15, "km")
  9601. },
  9602. {
  9603. name: "Gigamacro",
  9604. height: math.unit(500, "km")
  9605. },
  9606. {
  9607. name: "Teramacro",
  9608. height: math.unit(0.5, "gigameters")
  9609. },
  9610. {
  9611. name: "Omnimacro",
  9612. height: math.unit(1e252, "yottauniverse")
  9613. },
  9614. ]
  9615. ))
  9616. characterMakers.push(() => makeCharacter(
  9617. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9618. {
  9619. front: {
  9620. height: math.unit(7 + 8 / 12, "feet"),
  9621. weight: math.unit(120, "lb"),
  9622. name: "Front",
  9623. image: {
  9624. source: "./media/characters/danny/front.svg",
  9625. extra: 1490 / 1350
  9626. }
  9627. },
  9628. back: {
  9629. height: math.unit(7 + 8 / 12, "feet"),
  9630. weight: math.unit(120, "lb"),
  9631. name: "Back",
  9632. image: {
  9633. source: "./media/characters/danny/back.svg",
  9634. extra: 1490 / 1350
  9635. }
  9636. },
  9637. },
  9638. [
  9639. {
  9640. name: "Normal",
  9641. height: math.unit(7 + 8 / 12, "feet"),
  9642. default: true
  9643. },
  9644. ]
  9645. ))
  9646. characterMakers.push(() => makeCharacter(
  9647. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9648. {
  9649. front: {
  9650. height: math.unit(3.5, "inches"),
  9651. weight: math.unit(19, "grams"),
  9652. name: "Front",
  9653. image: {
  9654. source: "./media/characters/mallow/front.svg",
  9655. extra: 471 / 431
  9656. }
  9657. },
  9658. back: {
  9659. height: math.unit(3.5, "inches"),
  9660. weight: math.unit(19, "grams"),
  9661. name: "Back",
  9662. image: {
  9663. source: "./media/characters/mallow/back.svg",
  9664. extra: 471 / 431
  9665. }
  9666. },
  9667. },
  9668. [
  9669. {
  9670. name: "Normal",
  9671. height: math.unit(3.5, "inches"),
  9672. default: true
  9673. },
  9674. ]
  9675. ))
  9676. characterMakers.push(() => makeCharacter(
  9677. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9678. {
  9679. front: {
  9680. height: math.unit(9, "feet"),
  9681. weight: math.unit(230, "kg"),
  9682. name: "Front",
  9683. image: {
  9684. source: "./media/characters/starry-aqua/front.svg"
  9685. }
  9686. },
  9687. back: {
  9688. height: math.unit(9, "feet"),
  9689. weight: math.unit(230, "kg"),
  9690. name: "Back",
  9691. image: {
  9692. source: "./media/characters/starry-aqua/back.svg"
  9693. }
  9694. },
  9695. hand: {
  9696. height: math.unit(9 * 0.1168, "feet"),
  9697. name: "Hand",
  9698. image: {
  9699. source: "./media/characters/starry-aqua/hand.svg"
  9700. }
  9701. },
  9702. foot: {
  9703. height: math.unit(9 * 0.18, "feet"),
  9704. name: "Foot",
  9705. image: {
  9706. source: "./media/characters/starry-aqua/foot.svg"
  9707. }
  9708. }
  9709. },
  9710. [
  9711. {
  9712. name: "Micro",
  9713. height: math.unit(3, "inches")
  9714. },
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(9, "feet")
  9718. },
  9719. {
  9720. name: "Macro",
  9721. height: math.unit(300, "feet"),
  9722. default: true
  9723. },
  9724. {
  9725. name: "Megamacro",
  9726. height: math.unit(3200, "feet")
  9727. }
  9728. ]
  9729. ))
  9730. characterMakers.push(() => makeCharacter(
  9731. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9732. {
  9733. front: {
  9734. height: math.unit(15, "feet"),
  9735. weight: math.unit(5026, "lb"),
  9736. name: "Front",
  9737. image: {
  9738. source: "./media/characters/luka-towers/front.svg",
  9739. extra: 1269/1133,
  9740. bottom: 51/1320
  9741. }
  9742. },
  9743. },
  9744. [
  9745. {
  9746. name: "Normal",
  9747. height: math.unit(15, "feet"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Minimacro",
  9752. height: math.unit(25, "feet")
  9753. },
  9754. {
  9755. name: "Macro",
  9756. height: math.unit(320, "feet")
  9757. },
  9758. {
  9759. name: "Megamacro",
  9760. height: math.unit(35000, "feet")
  9761. },
  9762. {
  9763. name: "Gigamacro",
  9764. height: math.unit(4000, "miles")
  9765. },
  9766. {
  9767. name: "Teramacro",
  9768. height: math.unit(15000, "miles")
  9769. },
  9770. ]
  9771. ))
  9772. characterMakers.push(() => makeCharacter(
  9773. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9774. {
  9775. front: {
  9776. height: math.unit(6, "feet"),
  9777. weight: math.unit(150, "lb"),
  9778. name: "Front",
  9779. image: {
  9780. source: "./media/characters/natalie-nightring/front.svg",
  9781. extra: 1,
  9782. bottom: 0.06
  9783. }
  9784. },
  9785. },
  9786. [
  9787. {
  9788. name: "Uh Oh",
  9789. height: math.unit(0.1, "mm")
  9790. },
  9791. {
  9792. name: "Small",
  9793. height: math.unit(3, "inches")
  9794. },
  9795. {
  9796. name: "Human Scale",
  9797. height: math.unit(6, "feet")
  9798. },
  9799. {
  9800. name: "Librarian",
  9801. height: math.unit(50, "feet"),
  9802. default: true
  9803. },
  9804. {
  9805. name: "Immense",
  9806. height: math.unit(200, "miles")
  9807. },
  9808. ]
  9809. ))
  9810. characterMakers.push(() => makeCharacter(
  9811. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9812. {
  9813. front: {
  9814. height: math.unit(6, "feet"),
  9815. weight: math.unit(180, "lbs"),
  9816. name: "Front",
  9817. image: {
  9818. source: "./media/characters/danni-rosie/front.svg",
  9819. extra: 1260 / 1128,
  9820. bottom: 0.022
  9821. }
  9822. },
  9823. },
  9824. [
  9825. {
  9826. name: "Micro",
  9827. height: math.unit(2, "inches"),
  9828. default: true
  9829. },
  9830. ]
  9831. ))
  9832. characterMakers.push(() => makeCharacter(
  9833. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9834. {
  9835. front: {
  9836. height: math.unit(5 + 9 / 12, "feet"),
  9837. weight: math.unit(220, "lb"),
  9838. name: "Front",
  9839. image: {
  9840. source: "./media/characters/samantha-kruse/front.svg",
  9841. extra: (985 / 935),
  9842. bottom: 0.03
  9843. }
  9844. },
  9845. frontUndressed: {
  9846. height: math.unit(5 + 9 / 12, "feet"),
  9847. weight: math.unit(220, "lb"),
  9848. name: "Front (Undressed)",
  9849. image: {
  9850. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9851. extra: (973 / 923),
  9852. bottom: 0.025
  9853. }
  9854. },
  9855. fat: {
  9856. height: math.unit(5 + 9 / 12, "feet"),
  9857. weight: math.unit(900, "lb"),
  9858. name: "Front (Fat)",
  9859. image: {
  9860. source: "./media/characters/samantha-kruse/fat.svg",
  9861. extra: 2688 / 2561
  9862. }
  9863. },
  9864. },
  9865. [
  9866. {
  9867. name: "Normal",
  9868. height: math.unit(5 + 9 / 12, "feet"),
  9869. default: true
  9870. }
  9871. ]
  9872. ))
  9873. characterMakers.push(() => makeCharacter(
  9874. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9875. {
  9876. back: {
  9877. height: math.unit(5 + 4 / 12, "feet"),
  9878. weight: math.unit(4963, "lb"),
  9879. name: "Back",
  9880. image: {
  9881. source: "./media/characters/amelia-rosie/back.svg",
  9882. extra: 1113 / 963,
  9883. bottom: 0.01
  9884. }
  9885. },
  9886. },
  9887. [
  9888. {
  9889. name: "Level 0",
  9890. height: math.unit(5 + 4 / 12, "feet")
  9891. },
  9892. {
  9893. name: "Level 1",
  9894. height: math.unit(164597, "feet"),
  9895. default: true
  9896. },
  9897. {
  9898. name: "Level 2",
  9899. height: math.unit(956243, "miles")
  9900. },
  9901. {
  9902. name: "Level 3",
  9903. height: math.unit(29421709423, "miles")
  9904. },
  9905. {
  9906. name: "Level 4",
  9907. height: math.unit(154, "lightyears")
  9908. },
  9909. {
  9910. name: "Level 5",
  9911. height: math.unit(4738272, "lightyears")
  9912. },
  9913. {
  9914. name: "Level 6",
  9915. height: math.unit(145787152896, "lightyears")
  9916. },
  9917. ]
  9918. ))
  9919. characterMakers.push(() => makeCharacter(
  9920. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9921. {
  9922. front: {
  9923. height: math.unit(5 + 11 / 12, "feet"),
  9924. weight: math.unit(65, "kg"),
  9925. name: "Front",
  9926. image: {
  9927. source: "./media/characters/rook-kitara/front.svg",
  9928. extra: 1347 / 1274,
  9929. bottom: 0.005
  9930. }
  9931. },
  9932. },
  9933. [
  9934. {
  9935. name: "Totally Unfair",
  9936. height: math.unit(1.8, "mm")
  9937. },
  9938. {
  9939. name: "Lap Rookie",
  9940. height: math.unit(1.4, "feet")
  9941. },
  9942. {
  9943. name: "Normal",
  9944. height: math.unit(5 + 11 / 12, "feet"),
  9945. default: true
  9946. },
  9947. {
  9948. name: "How Did This Happen",
  9949. height: math.unit(80, "miles")
  9950. }
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(7, "feet"),
  9958. weight: math.unit(300, "lb"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/pisces/front.svg",
  9962. extra: 2255 / 2115,
  9963. bottom: 0.03
  9964. }
  9965. },
  9966. back: {
  9967. height: math.unit(7, "feet"),
  9968. weight: math.unit(300, "lb"),
  9969. name: "Back",
  9970. image: {
  9971. source: "./media/characters/pisces/back.svg",
  9972. extra: 2146 / 2055,
  9973. bottom: 0.04
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(7, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Swimming Pool",
  9985. height: math.unit(12.2, "meters")
  9986. },
  9987. {
  9988. name: "Olympic Swimming Pool",
  9989. height: math.unit(56.3, "meters")
  9990. },
  9991. {
  9992. name: "Lake Superior",
  9993. height: math.unit(93900, "meters")
  9994. },
  9995. {
  9996. name: "Mediterranean Sea",
  9997. height: math.unit(644457, "meters")
  9998. },
  9999. {
  10000. name: "World's Oceans",
  10001. height: math.unit(4567491, "meters")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(2.3, "meters"),
  10010. weight: math.unit(120, "kg"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/zelas/front.svg"
  10014. }
  10015. },
  10016. side: {
  10017. height: math.unit(2.3, "meters"),
  10018. weight: math.unit(120, "kg"),
  10019. name: "Side",
  10020. image: {
  10021. source: "./media/characters/zelas/side.svg"
  10022. }
  10023. },
  10024. back: {
  10025. height: math.unit(2.3, "meters"),
  10026. weight: math.unit(120, "kg"),
  10027. name: "Back",
  10028. image: {
  10029. source: "./media/characters/zelas/back.svg"
  10030. }
  10031. },
  10032. foot: {
  10033. height: math.unit(1.116, "feet"),
  10034. name: "Foot",
  10035. image: {
  10036. source: "./media/characters/zelas/foot.svg"
  10037. }
  10038. },
  10039. },
  10040. [
  10041. {
  10042. name: "Normal",
  10043. height: math.unit(2.3, "meters")
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(30, "meters"),
  10048. default: true
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(1, "inch"),
  10057. weight: math.unit(0.21, "grams"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/talbot/front.svg",
  10061. extra: 594 / 544
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(1, "inch"),
  10069. default: true
  10070. },
  10071. ]
  10072. ))
  10073. characterMakers.push(() => makeCharacter(
  10074. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10075. {
  10076. front: {
  10077. height: math.unit(3 + 3 / 12, "feet"),
  10078. weight: math.unit(51.8, "lb"),
  10079. name: "Front",
  10080. image: {
  10081. source: "./media/characters/fliss/front.svg",
  10082. extra: 840 / 640
  10083. }
  10084. },
  10085. },
  10086. [
  10087. {
  10088. name: "Teeny Tiny",
  10089. height: math.unit(1, "mm")
  10090. },
  10091. {
  10092. name: "Small",
  10093. height: math.unit(1, "inch"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Standard Sylveon",
  10098. height: math.unit(3 + 3 / 12, "feet")
  10099. },
  10100. {
  10101. name: "Large Nuisance",
  10102. height: math.unit(33, "feet")
  10103. },
  10104. {
  10105. name: "City Filler",
  10106. height: math.unit(3000, "feet")
  10107. },
  10108. {
  10109. name: "New Horizon",
  10110. height: math.unit(6000, "miles")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(5, "cm"),
  10119. weight: math.unit(1.94, "g"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/fleta/front.svg",
  10123. extra: 835 / 803
  10124. }
  10125. },
  10126. back: {
  10127. height: math.unit(5, "cm"),
  10128. weight: math.unit(1.94, "g"),
  10129. name: "Back",
  10130. image: {
  10131. source: "./media/characters/fleta/back.svg",
  10132. extra: 835 / 803
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Micro",
  10139. height: math.unit(5, "cm"),
  10140. default: true
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(6, "feet"),
  10149. weight: math.unit(225, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/dominic/front.svg",
  10153. extra: 1770 / 1620,
  10154. bottom: 0.025
  10155. }
  10156. },
  10157. back: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(225, "lb"),
  10160. name: "Back",
  10161. image: {
  10162. source: "./media/characters/dominic/back.svg",
  10163. extra: 1745 / 1620,
  10164. bottom: 0.065
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Nano",
  10171. height: math.unit(0.1, "mm")
  10172. },
  10173. {
  10174. name: "Micro-",
  10175. height: math.unit(1, "mm")
  10176. },
  10177. {
  10178. name: "Micro",
  10179. height: math.unit(4, "inches")
  10180. },
  10181. {
  10182. name: "Normal",
  10183. height: math.unit(6 + 4 / 12, "feet"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(115, "feet")
  10189. },
  10190. {
  10191. name: "Macro+",
  10192. height: math.unit(955, "feet")
  10193. },
  10194. {
  10195. name: "Megamacro",
  10196. height: math.unit(8990, "feet")
  10197. },
  10198. {
  10199. name: "Gigmacro",
  10200. height: math.unit(9310, "miles")
  10201. },
  10202. {
  10203. name: "Teramacro",
  10204. height: math.unit(1567005010, "miles")
  10205. },
  10206. {
  10207. name: "Examacro",
  10208. height: math.unit(1425, "parsecs")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(400, "feet"),
  10217. weight: math.unit(44444444, "lb"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/major-colonel/front.svg"
  10221. }
  10222. },
  10223. back: {
  10224. height: math.unit(400, "feet"),
  10225. weight: math.unit(44444444, "lb"),
  10226. name: "Back",
  10227. image: {
  10228. source: "./media/characters/major-colonel/back.svg"
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Macro",
  10235. height: math.unit(400, "feet"),
  10236. default: true
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10242. {
  10243. catFront: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(120, "lb"),
  10246. name: "Front (Cat Side)",
  10247. image: {
  10248. source: "./media/characters/axel-lycan/cat-front.svg",
  10249. extra: 430 / 402,
  10250. bottom: 43 / 472.35
  10251. }
  10252. },
  10253. catBack: {
  10254. height: math.unit(6, "feet"),
  10255. weight: math.unit(120, "lb"),
  10256. name: "Back (Cat Side)",
  10257. image: {
  10258. source: "./media/characters/axel-lycan/cat-back.svg",
  10259. extra: 447 / 419,
  10260. bottom: 23.3 / 469
  10261. }
  10262. },
  10263. wolfFront: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(120, "lb"),
  10266. name: "Front (Wolf Side)",
  10267. image: {
  10268. source: "./media/characters/axel-lycan/wolf-front.svg",
  10269. extra: 485 / 456,
  10270. bottom: 19 / 504
  10271. }
  10272. },
  10273. wolfBack: {
  10274. height: math.unit(6, "feet"),
  10275. weight: math.unit(120, "lb"),
  10276. name: "Back (Wolf Side)",
  10277. image: {
  10278. source: "./media/characters/axel-lycan/wolf-back.svg",
  10279. extra: 475 / 438,
  10280. bottom: 39.2 / 514
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Macro",
  10287. height: math.unit(1, "km"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(5 + 9 / 12, "feet"),
  10297. weight: math.unit(175, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/vanrel-hyena/front.svg",
  10301. extra: 1086 / 1010,
  10302. bottom: 0.04
  10303. }
  10304. },
  10305. },
  10306. [
  10307. {
  10308. name: "Normal",
  10309. height: math.unit(5 + 9 / 12, "feet"),
  10310. default: true
  10311. },
  10312. ]
  10313. ))
  10314. characterMakers.push(() => makeCharacter(
  10315. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10316. {
  10317. front: {
  10318. height: math.unit(6, "feet"),
  10319. weight: math.unit(103, "lb"),
  10320. name: "Front",
  10321. image: {
  10322. source: "./media/characters/abbott-absol/front.svg",
  10323. extra: 2010 / 1842
  10324. }
  10325. },
  10326. },
  10327. [
  10328. {
  10329. name: "Megamicro",
  10330. height: math.unit(0.1, "mm")
  10331. },
  10332. {
  10333. name: "Micro",
  10334. height: math.unit(1, "inch")
  10335. },
  10336. {
  10337. name: "Normal",
  10338. height: math.unit(6, "feet"),
  10339. default: true
  10340. },
  10341. ]
  10342. ))
  10343. characterMakers.push(() => makeCharacter(
  10344. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10345. {
  10346. front: {
  10347. height: math.unit(6, "feet"),
  10348. weight: math.unit(264, "lb"),
  10349. name: "Front",
  10350. image: {
  10351. source: "./media/characters/hector/front.svg",
  10352. extra: 2280 / 2130,
  10353. bottom: 0.07
  10354. }
  10355. },
  10356. },
  10357. [
  10358. {
  10359. name: "Normal",
  10360. height: math.unit(12.25, "foot"),
  10361. default: true
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(160, "feet")
  10366. },
  10367. ]
  10368. ))
  10369. characterMakers.push(() => makeCharacter(
  10370. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10371. {
  10372. front: {
  10373. height: math.unit(6, "feet"),
  10374. weight: math.unit(150, "lb"),
  10375. name: "Front",
  10376. image: {
  10377. source: "./media/characters/sal/front.svg",
  10378. extra: 1846 / 1699,
  10379. bottom: 0.04
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(10, "miles"),
  10387. default: true
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10393. {
  10394. front: {
  10395. height: math.unit(3, "meters"),
  10396. weight: math.unit(450, "kg"),
  10397. name: "front",
  10398. image: {
  10399. source: "./media/characters/ranger/front.svg",
  10400. extra: 2401 / 2243,
  10401. bottom: 0.05
  10402. }
  10403. },
  10404. },
  10405. [
  10406. {
  10407. name: "Normal",
  10408. height: math.unit(3, "meters"),
  10409. default: true
  10410. },
  10411. ]
  10412. ))
  10413. characterMakers.push(() => makeCharacter(
  10414. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10415. {
  10416. front: {
  10417. height: math.unit(14, "feet"),
  10418. weight: math.unit(800, "kg"),
  10419. name: "Front",
  10420. image: {
  10421. source: "./media/characters/theresa/front.svg",
  10422. extra: 3575 / 3346,
  10423. bottom: 0.03
  10424. }
  10425. },
  10426. },
  10427. [
  10428. {
  10429. name: "Normal",
  10430. height: math.unit(14, "feet"),
  10431. default: true
  10432. },
  10433. ]
  10434. ))
  10435. characterMakers.push(() => makeCharacter(
  10436. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10437. {
  10438. front: {
  10439. height: math.unit(6, "feet"),
  10440. weight: math.unit(3, "kg"),
  10441. name: "Front",
  10442. image: {
  10443. source: "./media/characters/ine/front.svg",
  10444. extra: 678 / 539,
  10445. bottom: 0.023
  10446. }
  10447. },
  10448. },
  10449. [
  10450. {
  10451. name: "Normal",
  10452. height: math.unit(2.265, "feet"),
  10453. default: true
  10454. },
  10455. ]
  10456. ))
  10457. characterMakers.push(() => makeCharacter(
  10458. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10459. {
  10460. front: {
  10461. height: math.unit(5, "feet"),
  10462. weight: math.unit(30, "kg"),
  10463. name: "Front",
  10464. image: {
  10465. source: "./media/characters/vial/front.svg",
  10466. extra: 1365 / 1277,
  10467. bottom: 0.04
  10468. }
  10469. },
  10470. },
  10471. [
  10472. {
  10473. name: "Normal",
  10474. height: math.unit(5, "feet"),
  10475. default: true
  10476. },
  10477. ]
  10478. ))
  10479. characterMakers.push(() => makeCharacter(
  10480. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10481. {
  10482. side: {
  10483. height: math.unit(3.4, "meters"),
  10484. weight: math.unit(1000, "lb"),
  10485. name: "Side",
  10486. image: {
  10487. source: "./media/characters/rovoska/side.svg",
  10488. extra: 4403 / 1515
  10489. }
  10490. },
  10491. },
  10492. [
  10493. {
  10494. name: "Normal",
  10495. height: math.unit(3.4, "meters"),
  10496. default: true
  10497. },
  10498. ]
  10499. ))
  10500. characterMakers.push(() => makeCharacter(
  10501. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10502. {
  10503. front: {
  10504. height: math.unit(8, "feet"),
  10505. weight: math.unit(315, "lb"),
  10506. name: "Front",
  10507. image: {
  10508. source: "./media/characters/gunner-rotthbauer/front.svg"
  10509. }
  10510. },
  10511. back: {
  10512. height: math.unit(8, "feet"),
  10513. weight: math.unit(315, "lb"),
  10514. name: "Back",
  10515. image: {
  10516. source: "./media/characters/gunner-rotthbauer/back.svg"
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Micro",
  10523. height: math.unit(3.5, "inches")
  10524. },
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(8, "feet"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(250, "feet")
  10533. },
  10534. {
  10535. name: "Megamacro",
  10536. height: math.unit(1, "AU")
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(5 + 5 / 12, "feet"),
  10545. weight: math.unit(140, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/allatia/front.svg",
  10549. extra: 1227 / 1180,
  10550. bottom: 0.027
  10551. }
  10552. },
  10553. },
  10554. [
  10555. {
  10556. name: "Normal",
  10557. height: math.unit(5 + 5 / 12, "feet")
  10558. },
  10559. {
  10560. name: "Macro",
  10561. height: math.unit(250, "feet"),
  10562. default: true
  10563. },
  10564. {
  10565. name: "Megamacro",
  10566. height: math.unit(8, "miles")
  10567. }
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(6, "feet"),
  10575. weight: math.unit(120, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/tene/front.svg",
  10579. extra: 814/750,
  10580. bottom: 36/850
  10581. }
  10582. },
  10583. stomping: {
  10584. height: math.unit(2.025, "meters"),
  10585. weight: math.unit(120, "lb"),
  10586. name: "Stomping",
  10587. image: {
  10588. source: "./media/characters/tene/stomping.svg",
  10589. extra: 885/821,
  10590. bottom: 15/900
  10591. }
  10592. },
  10593. sitting: {
  10594. height: math.unit(1, "meter"),
  10595. weight: math.unit(120, "lb"),
  10596. name: "Sitting",
  10597. image: {
  10598. source: "./media/characters/tene/sitting.svg",
  10599. extra: 396/366,
  10600. bottom: 79/475
  10601. }
  10602. },
  10603. smiling: {
  10604. height: math.unit(1.2, "feet"),
  10605. name: "Smiling",
  10606. image: {
  10607. source: "./media/characters/tene/smiling.svg",
  10608. extra: 1364/1071,
  10609. bottom: 0/1364
  10610. }
  10611. },
  10612. smug: {
  10613. height: math.unit(1.3, "feet"),
  10614. name: "Smug",
  10615. image: {
  10616. source: "./media/characters/tene/smug.svg",
  10617. extra: 1323/1082,
  10618. bottom: 0/1323
  10619. }
  10620. },
  10621. feral: {
  10622. height: math.unit(3.9, "feet"),
  10623. weight: math.unit(250, "lb"),
  10624. name: "Feral",
  10625. image: {
  10626. source: "./media/characters/tene/feral.svg",
  10627. extra: 717 / 458,
  10628. bottom: 0.179
  10629. }
  10630. },
  10631. },
  10632. [
  10633. {
  10634. name: "Normal",
  10635. height: math.unit(6, "feet")
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(300, "feet"),
  10640. default: true
  10641. },
  10642. {
  10643. name: "Megamacro",
  10644. height: math.unit(5, "miles")
  10645. },
  10646. ]
  10647. ))
  10648. characterMakers.push(() => makeCharacter(
  10649. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10650. {
  10651. side: {
  10652. height: math.unit(6, "feet"),
  10653. name: "Side",
  10654. image: {
  10655. source: "./media/characters/evander/side.svg",
  10656. extra: 877 / 477
  10657. }
  10658. },
  10659. },
  10660. [
  10661. {
  10662. name: "Normal",
  10663. height: math.unit(0.83, "meters"),
  10664. default: true
  10665. },
  10666. ]
  10667. ))
  10668. characterMakers.push(() => makeCharacter(
  10669. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10670. {
  10671. front: {
  10672. height: math.unit(12, "feet"),
  10673. weight: math.unit(1000, "lb"),
  10674. name: "Front",
  10675. image: {
  10676. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10677. extra: 1762 / 1611
  10678. }
  10679. },
  10680. back: {
  10681. height: math.unit(12, "feet"),
  10682. weight: math.unit(1000, "lb"),
  10683. name: "Back",
  10684. image: {
  10685. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10686. extra: 1762 / 1611
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Normal",
  10693. height: math.unit(12, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Kaiju",
  10698. height: math.unit(150, "feet")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10704. {
  10705. front: {
  10706. height: math.unit(6, "feet"),
  10707. weight: math.unit(150, "lb"),
  10708. name: "Front",
  10709. image: {
  10710. source: "./media/characters/zero-alurus/front.svg"
  10711. }
  10712. },
  10713. back: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Back",
  10717. image: {
  10718. source: "./media/characters/zero-alurus/back.svg"
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(5 + 10 / 12, "feet")
  10726. },
  10727. {
  10728. name: "Macro",
  10729. height: math.unit(60, "feet"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Macro+",
  10734. height: math.unit(450, "feet")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(200, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/mega-shi/front.svg",
  10747. extra: 1279 / 1250,
  10748. bottom: 0.02
  10749. }
  10750. },
  10751. back: {
  10752. height: math.unit(6, "feet"),
  10753. weight: math.unit(200, "lb"),
  10754. name: "Back",
  10755. image: {
  10756. source: "./media/characters/mega-shi/back.svg",
  10757. extra: 1279 / 1250,
  10758. bottom: 0.02
  10759. }
  10760. },
  10761. },
  10762. [
  10763. {
  10764. name: "Micro",
  10765. height: math.unit(16 + 6 / 12, "feet")
  10766. },
  10767. {
  10768. name: "Third Dimension",
  10769. height: math.unit(40, "meters")
  10770. },
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(660, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Megamacro",
  10778. height: math.unit(10, "miles")
  10779. },
  10780. {
  10781. name: "Planetary Launch",
  10782. height: math.unit(500, "miles")
  10783. },
  10784. {
  10785. name: "Interstellar",
  10786. height: math.unit(1e9, "miles")
  10787. },
  10788. {
  10789. name: "Leaving the Universe",
  10790. height: math.unit(1, "gigaparsec")
  10791. },
  10792. {
  10793. name: "Travelling Universes",
  10794. height: math.unit(30e15, "parsecs")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(5 + 4/12, "feet"),
  10803. weight: math.unit(120, "lb"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/odyssey/front.svg",
  10807. extra: 1747/1571,
  10808. bottom: 47/1794
  10809. }
  10810. },
  10811. side: {
  10812. height: math.unit(5.1, "feet"),
  10813. weight: math.unit(120, "lb"),
  10814. name: "Side",
  10815. image: {
  10816. source: "./media/characters/odyssey/side.svg",
  10817. extra: 1847/1619,
  10818. bottom: 47/1894
  10819. }
  10820. },
  10821. lounging: {
  10822. height: math.unit(1.464, "feet"),
  10823. weight: math.unit(120, "lb"),
  10824. name: "Lounging",
  10825. image: {
  10826. source: "./media/characters/odyssey/lounging.svg",
  10827. extra: 1235/837,
  10828. bottom: 551/1786
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(5 + 4 / 12, "feet")
  10836. },
  10837. {
  10838. name: "Macro",
  10839. height: math.unit(1, "km")
  10840. },
  10841. {
  10842. name: "Megamacro",
  10843. height: math.unit(3000, "km")
  10844. },
  10845. {
  10846. name: "Gigamacro",
  10847. height: math.unit(1, "AU"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Omniversal",
  10852. height: math.unit(100e14, "lightyears")
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(6, "feet"),
  10861. weight: math.unit(300, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/mekuto/front.svg",
  10865. extra: 921 / 832,
  10866. bottom: 0.03
  10867. }
  10868. },
  10869. hand: {
  10870. height: math.unit(6 / 10.24, "feet"),
  10871. name: "Hand",
  10872. image: {
  10873. source: "./media/characters/mekuto/hand.svg"
  10874. }
  10875. },
  10876. foot: {
  10877. height: math.unit(6 / 5.05, "feet"),
  10878. name: "Foot",
  10879. image: {
  10880. source: "./media/characters/mekuto/foot.svg"
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Minimicro",
  10887. height: math.unit(0.2, "inches")
  10888. },
  10889. {
  10890. name: "Micro",
  10891. height: math.unit(1.5, "inches")
  10892. },
  10893. {
  10894. name: "Normal",
  10895. height: math.unit(5 + 11 / 12, "feet"),
  10896. default: true
  10897. },
  10898. {
  10899. name: "Minimacro",
  10900. height: math.unit(17 + 9 / 12, "feet")
  10901. },
  10902. {
  10903. name: "Macro",
  10904. height: math.unit(177.5, "feet")
  10905. },
  10906. {
  10907. name: "Megamacro",
  10908. height: math.unit(152, "miles")
  10909. },
  10910. ]
  10911. ))
  10912. characterMakers.push(() => makeCharacter(
  10913. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10914. {
  10915. front: {
  10916. height: math.unit(6.5, "inches"),
  10917. weight: math.unit(13, "oz"),
  10918. name: "Front",
  10919. image: {
  10920. source: "./media/characters/dafydd-tomos/front.svg",
  10921. extra: 2990 / 2603,
  10922. bottom: 0.03
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Micro",
  10929. height: math.unit(6.5, "inches"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(6, "feet"),
  10939. weight: math.unit(150, "lb"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/splinter/front.svg",
  10943. extra: 2990 / 2882,
  10944. bottom: 0.04
  10945. }
  10946. },
  10947. back: {
  10948. height: math.unit(6, "feet"),
  10949. weight: math.unit(150, "lb"),
  10950. name: "Back",
  10951. image: {
  10952. source: "./media/characters/splinter/back.svg",
  10953. extra: 2990 / 2882,
  10954. bottom: 0.04
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(6, "feet")
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(230, "meters"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(4 + 10 / 12, "feet"),
  10975. weight: math.unit(480, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/snow-gabumon/front.svg",
  10979. extra: 1140 / 963,
  10980. bottom: 0.058
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(4 + 10 / 12, "feet"),
  10985. weight: math.unit(480, "lb"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/snow-gabumon/back.svg",
  10989. extra: 1115 / 962,
  10990. bottom: 0.041
  10991. }
  10992. },
  10993. frontUndresed: {
  10994. height: math.unit(4 + 10 / 12, "feet"),
  10995. weight: math.unit(480, "lb"),
  10996. name: "Front (Undressed)",
  10997. image: {
  10998. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10999. extra: 1061 / 960,
  11000. bottom: 0.045
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Micro",
  11007. height: math.unit(1, "inch")
  11008. },
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(4 + 10 / 12, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Macro",
  11016. height: math.unit(200, "feet")
  11017. },
  11018. {
  11019. name: "Megamacro",
  11020. height: math.unit(120, "miles")
  11021. },
  11022. {
  11023. name: "Gigamacro",
  11024. height: math.unit(9800, "miles")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11030. {
  11031. front: {
  11032. height: math.unit(1.7, "meters"),
  11033. weight: math.unit(140, "lb"),
  11034. name: "Front",
  11035. image: {
  11036. source: "./media/characters/moody/front.svg",
  11037. extra: 3226 / 3007,
  11038. bottom: 0.087
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Micro",
  11045. height: math.unit(1, "mm")
  11046. },
  11047. {
  11048. name: "Normal",
  11049. height: math.unit(1.7, "meters"),
  11050. default: true
  11051. },
  11052. {
  11053. name: "Macro",
  11054. height: math.unit(80, "meters")
  11055. },
  11056. {
  11057. name: "Macro+",
  11058. height: math.unit(500, "meters")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(150, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/zyas/front.svg",
  11071. extra: 1180 / 1120,
  11072. bottom: 0.045
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(10, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(500, "feet")
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(5, "miles")
  11089. },
  11090. {
  11091. name: "Teramacro",
  11092. height: math.unit(150000, "miles")
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(150, "lb"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/cuon/front.svg",
  11105. extra: 1390 / 1320,
  11106. bottom: 0.008
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Micro",
  11113. height: math.unit(3, "inches")
  11114. },
  11115. {
  11116. name: "Normal",
  11117. height: math.unit(18 + 9 / 12, "feet"),
  11118. default: true
  11119. },
  11120. {
  11121. name: "Macro",
  11122. height: math.unit(360, "feet")
  11123. },
  11124. {
  11125. name: "Megamacro",
  11126. height: math.unit(360, "miles")
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(2.4, "meters"),
  11135. weight: math.unit(70, "kg"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/nyanuxk/front.svg",
  11139. extra: 1172 / 1084,
  11140. bottom: 0.065
  11141. }
  11142. },
  11143. side: {
  11144. height: math.unit(2.4, "meters"),
  11145. weight: math.unit(70, "kg"),
  11146. name: "Side",
  11147. image: {
  11148. source: "./media/characters/nyanuxk/side.svg",
  11149. extra: 1190 / 1132,
  11150. bottom: 0.007
  11151. }
  11152. },
  11153. back: {
  11154. height: math.unit(2.4, "meters"),
  11155. weight: math.unit(70, "kg"),
  11156. name: "Back",
  11157. image: {
  11158. source: "./media/characters/nyanuxk/back.svg",
  11159. extra: 1200 / 1141,
  11160. bottom: 0.015
  11161. }
  11162. },
  11163. foot: {
  11164. height: math.unit(0.52, "meters"),
  11165. name: "Foot",
  11166. image: {
  11167. source: "./media/characters/nyanuxk/foot.svg"
  11168. }
  11169. },
  11170. },
  11171. [
  11172. {
  11173. name: "Micro",
  11174. height: math.unit(2, "cm")
  11175. },
  11176. {
  11177. name: "Normal",
  11178. height: math.unit(2.4, "meters"),
  11179. default: true
  11180. },
  11181. {
  11182. name: "Smaller Macro",
  11183. height: math.unit(120, "meters")
  11184. },
  11185. {
  11186. name: "Bigger Macro",
  11187. height: math.unit(1.2, "km")
  11188. },
  11189. {
  11190. name: "Megamacro",
  11191. height: math.unit(15, "kilometers")
  11192. },
  11193. {
  11194. name: "Gigamacro",
  11195. height: math.unit(2000, "km")
  11196. },
  11197. {
  11198. name: "Teramacro",
  11199. height: math.unit(500000, "km")
  11200. },
  11201. ]
  11202. ))
  11203. characterMakers.push(() => makeCharacter(
  11204. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11205. {
  11206. side: {
  11207. height: math.unit(6, "feet"),
  11208. name: "Side",
  11209. image: {
  11210. source: "./media/characters/ailbhe/side.svg",
  11211. extra: 757 / 464,
  11212. bottom: 0.041
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(1.07, "meters"),
  11220. default: true
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(120, "kg"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/zevulfius/front.svg",
  11233. extra: 965 / 903
  11234. }
  11235. },
  11236. side: {
  11237. height: math.unit(6, "feet"),
  11238. weight: math.unit(120, "kg"),
  11239. name: "Side",
  11240. image: {
  11241. source: "./media/characters/zevulfius/side.svg",
  11242. extra: 939 / 900
  11243. }
  11244. },
  11245. back: {
  11246. height: math.unit(6, "feet"),
  11247. weight: math.unit(120, "kg"),
  11248. name: "Back",
  11249. image: {
  11250. source: "./media/characters/zevulfius/back.svg",
  11251. extra: 918 / 854,
  11252. bottom: 0.005
  11253. }
  11254. },
  11255. foot: {
  11256. height: math.unit(6 / 3.72, "feet"),
  11257. name: "Foot",
  11258. image: {
  11259. source: "./media/characters/zevulfius/foot.svg"
  11260. }
  11261. },
  11262. },
  11263. [
  11264. {
  11265. name: "Macro",
  11266. height: math.unit(750, "meters")
  11267. },
  11268. {
  11269. name: "Megamacro",
  11270. height: math.unit(20, "km"),
  11271. default: true
  11272. },
  11273. {
  11274. name: "Gigamacro",
  11275. height: math.unit(2000, "km")
  11276. },
  11277. {
  11278. name: "Teramacro",
  11279. height: math.unit(250000, "km")
  11280. },
  11281. ]
  11282. ))
  11283. characterMakers.push(() => makeCharacter(
  11284. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11285. {
  11286. front: {
  11287. height: math.unit(100, "feet"),
  11288. weight: math.unit(350, "kg"),
  11289. name: "Front",
  11290. image: {
  11291. source: "./media/characters/rikes/front.svg",
  11292. extra: 1565 / 1483,
  11293. bottom: 0.017
  11294. }
  11295. },
  11296. },
  11297. [
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(100, "feet"),
  11301. default: true
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11307. {
  11308. front: {
  11309. height: math.unit(8, "feet"),
  11310. weight: math.unit(356, "lb"),
  11311. name: "Front",
  11312. image: {
  11313. source: "./media/characters/adam-silver-mane/front.svg",
  11314. extra: 1036/937,
  11315. bottom: 63/1099
  11316. }
  11317. },
  11318. side: {
  11319. height: math.unit(8, "feet"),
  11320. weight: math.unit(356, "lb"),
  11321. name: "Side",
  11322. image: {
  11323. source: "./media/characters/adam-silver-mane/side.svg",
  11324. extra: 997/901,
  11325. bottom: 59/1056
  11326. }
  11327. },
  11328. frontNsfw: {
  11329. height: math.unit(8, "feet"),
  11330. weight: math.unit(356, "lb"),
  11331. name: "Front (NSFW)",
  11332. image: {
  11333. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11334. extra: 1036/937,
  11335. bottom: 63/1099
  11336. }
  11337. },
  11338. sideNsfw: {
  11339. height: math.unit(8, "feet"),
  11340. weight: math.unit(356, "lb"),
  11341. name: "Side (NSFW)",
  11342. image: {
  11343. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11344. extra: 997/901,
  11345. bottom: 59/1056
  11346. }
  11347. },
  11348. dick: {
  11349. height: math.unit(2.1, "feet"),
  11350. name: "Dick",
  11351. image: {
  11352. source: "./media/characters/adam-silver-mane/dick.svg"
  11353. }
  11354. },
  11355. taur: {
  11356. height: math.unit(16, "feet"),
  11357. weight: math.unit(1500, "kg"),
  11358. name: "Taur",
  11359. image: {
  11360. source: "./media/characters/adam-silver-mane/taur.svg",
  11361. extra: 1713 / 1571,
  11362. bottom: 0.01
  11363. }
  11364. },
  11365. },
  11366. [
  11367. {
  11368. name: "Normal",
  11369. height: math.unit(8, "feet")
  11370. },
  11371. {
  11372. name: "Minimacro",
  11373. height: math.unit(80, "feet")
  11374. },
  11375. {
  11376. name: "MDA",
  11377. height: math.unit(80, "meters")
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(800, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(8000, "feet")
  11387. },
  11388. {
  11389. name: "Gigamacro",
  11390. height: math.unit(800, "miles")
  11391. },
  11392. {
  11393. name: "Teramacro",
  11394. height: math.unit(80000, "miles")
  11395. },
  11396. {
  11397. name: "Celestial",
  11398. height: math.unit(8e6, "miles")
  11399. },
  11400. {
  11401. name: "Star Dragon",
  11402. height: math.unit(800000, "parsecs")
  11403. },
  11404. {
  11405. name: "Godly",
  11406. height: math.unit(800, "teraparsecs")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(150, "lb"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/ky'owin/front.svg",
  11419. extra: 3888 / 3068,
  11420. bottom: 0.015
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(6 + 8 / 12, "feet")
  11428. },
  11429. {
  11430. name: "Large",
  11431. height: math.unit(68, "feet")
  11432. },
  11433. {
  11434. name: "Macro",
  11435. height: math.unit(132, "feet")
  11436. },
  11437. {
  11438. name: "Macro+",
  11439. height: math.unit(340, "feet")
  11440. },
  11441. {
  11442. name: "Macro++",
  11443. height: math.unit(680, "feet"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(1, "mile")
  11449. },
  11450. {
  11451. name: "Megamacro+",
  11452. height: math.unit(10, "miles")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(4, "feet"),
  11461. weight: math.unit(50, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/mal/front.svg",
  11465. extra: 785 / 724,
  11466. bottom: 0.07
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Micro",
  11473. height: math.unit(4, "inches")
  11474. },
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(4, "feet"),
  11478. default: true
  11479. },
  11480. {
  11481. name: "Macro",
  11482. height: math.unit(200, "feet")
  11483. },
  11484. ]
  11485. ))
  11486. characterMakers.push(() => makeCharacter(
  11487. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11488. {
  11489. front: {
  11490. height: math.unit(6, "feet"),
  11491. weight: math.unit(150, "lb"),
  11492. name: "Front",
  11493. image: {
  11494. source: "./media/characters/jordan-deware/front.svg",
  11495. extra: 1191 / 1012
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Nano",
  11502. height: math.unit(0.01, "mm")
  11503. },
  11504. {
  11505. name: "Minimicro",
  11506. height: math.unit(1, "mm")
  11507. },
  11508. {
  11509. name: "Micro",
  11510. height: math.unit(0.5, "inches")
  11511. },
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(4, "feet"),
  11515. default: true
  11516. },
  11517. {
  11518. name: "Minimacro",
  11519. height: math.unit(40, "meters")
  11520. },
  11521. {
  11522. name: "Small Macro",
  11523. height: math.unit(400, "meters")
  11524. },
  11525. {
  11526. name: "Macro",
  11527. height: math.unit(4, "miles")
  11528. },
  11529. {
  11530. name: "Megamacro",
  11531. height: math.unit(40, "miles")
  11532. },
  11533. {
  11534. name: "Megamacro+",
  11535. height: math.unit(400, "miles")
  11536. },
  11537. {
  11538. name: "Gigamacro",
  11539. height: math.unit(400000, "miles")
  11540. },
  11541. ]
  11542. ))
  11543. characterMakers.push(() => makeCharacter(
  11544. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11545. {
  11546. side: {
  11547. height: math.unit(6, "feet"),
  11548. weight: math.unit(150, "lb"),
  11549. name: "Side",
  11550. image: {
  11551. source: "./media/characters/kimiko/side.svg",
  11552. extra: 600 / 358
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Normal",
  11559. height: math.unit(15, "feet"),
  11560. default: true
  11561. },
  11562. {
  11563. name: "Macro",
  11564. height: math.unit(220, "feet")
  11565. },
  11566. {
  11567. name: "Macro+",
  11568. height: math.unit(1450, "feet")
  11569. },
  11570. {
  11571. name: "Megamacro",
  11572. height: math.unit(11500, "feet")
  11573. },
  11574. {
  11575. name: "Gigamacro",
  11576. height: math.unit(9500, "miles")
  11577. },
  11578. {
  11579. name: "Teramacro",
  11580. height: math.unit(2208005005, "miles")
  11581. },
  11582. {
  11583. name: "Examacro",
  11584. height: math.unit(2750, "parsecs")
  11585. },
  11586. {
  11587. name: "Zettamacro",
  11588. height: math.unit(101500, "parsecs")
  11589. },
  11590. ]
  11591. ))
  11592. characterMakers.push(() => makeCharacter(
  11593. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11594. {
  11595. front: {
  11596. height: math.unit(6, "feet"),
  11597. weight: math.unit(70, "kg"),
  11598. name: "Front",
  11599. image: {
  11600. source: "./media/characters/andrew-sleepy/front.svg"
  11601. }
  11602. },
  11603. side: {
  11604. height: math.unit(6, "feet"),
  11605. weight: math.unit(70, "kg"),
  11606. name: "Side",
  11607. image: {
  11608. source: "./media/characters/andrew-sleepy/side.svg"
  11609. }
  11610. },
  11611. },
  11612. [
  11613. {
  11614. name: "Micro",
  11615. height: math.unit(1, "mm"),
  11616. default: true
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(6, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/judio/front.svg",
  11629. extra: 1258 / 1110
  11630. }
  11631. },
  11632. },
  11633. [
  11634. {
  11635. name: "Normal",
  11636. height: math.unit(5 + 6 / 12, "feet")
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(1000, "feet"),
  11641. default: true
  11642. },
  11643. {
  11644. name: "Megamacro",
  11645. height: math.unit(10, "miles")
  11646. },
  11647. ]
  11648. ))
  11649. characterMakers.push(() => makeCharacter(
  11650. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11651. {
  11652. frontDressed: {
  11653. height: math.unit(6, "feet"),
  11654. weight: math.unit(68, "kg"),
  11655. name: "Front (Dressed)",
  11656. image: {
  11657. source: "./media/characters/nomaxice/front-dressed.svg",
  11658. extra: 1137/824,
  11659. bottom: 74/1211
  11660. }
  11661. },
  11662. frontShorts: {
  11663. height: math.unit(6, "feet"),
  11664. weight: math.unit(68, "kg"),
  11665. name: "Front (Shorts)",
  11666. image: {
  11667. source: "./media/characters/nomaxice/front-shorts.svg",
  11668. extra: 1137/824,
  11669. bottom: 74/1211
  11670. }
  11671. },
  11672. back: {
  11673. height: math.unit(6, "feet"),
  11674. weight: math.unit(68, "kg"),
  11675. name: "Back",
  11676. image: {
  11677. source: "./media/characters/nomaxice/back.svg",
  11678. extra: 822/786,
  11679. bottom: 39/861
  11680. }
  11681. },
  11682. hand: {
  11683. height: math.unit(0.565, "feet"),
  11684. name: "Hand",
  11685. image: {
  11686. source: "./media/characters/nomaxice/hand.svg"
  11687. }
  11688. },
  11689. foot: {
  11690. height: math.unit(1, "feet"),
  11691. name: "Foot",
  11692. image: {
  11693. source: "./media/characters/nomaxice/foot.svg"
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Micro",
  11700. height: math.unit(8, "cm")
  11701. },
  11702. {
  11703. name: "Norm",
  11704. height: math.unit(1.82, "m")
  11705. },
  11706. {
  11707. name: "Norm+",
  11708. height: math.unit(8.8, "feet"),
  11709. default: true
  11710. },
  11711. {
  11712. name: "Big",
  11713. height: math.unit(8, "meters")
  11714. },
  11715. {
  11716. name: "Macro",
  11717. height: math.unit(18, "meters")
  11718. },
  11719. {
  11720. name: "Macro+",
  11721. height: math.unit(88, "meters")
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(12, "feet"),
  11730. weight: math.unit(1.5, "tons"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/dydros/front.svg",
  11734. extra: 863 / 800,
  11735. bottom: 0.015
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(12, "feet"),
  11740. weight: math.unit(1.5, "tons"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/dydros/back.svg",
  11744. extra: 900 / 843,
  11745. bottom: 0.005
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(12, "feet"),
  11753. default: true
  11754. },
  11755. ]
  11756. ))
  11757. characterMakers.push(() => makeCharacter(
  11758. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11759. {
  11760. front: {
  11761. height: math.unit(6, "feet"),
  11762. weight: math.unit(100, "kg"),
  11763. name: "Front",
  11764. image: {
  11765. source: "./media/characters/riggi/front.svg",
  11766. extra: 5787 / 5303
  11767. }
  11768. },
  11769. hyper: {
  11770. height: math.unit(6 * 5 / 3, "feet"),
  11771. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11772. name: "Hyper",
  11773. image: {
  11774. source: "./media/characters/riggi/hyper.svg",
  11775. extra: 3595 / 3485
  11776. }
  11777. },
  11778. },
  11779. [
  11780. {
  11781. name: "Small Macro",
  11782. height: math.unit(50, "feet")
  11783. },
  11784. {
  11785. name: "Default",
  11786. height: math.unit(200, "feet"),
  11787. default: true
  11788. },
  11789. {
  11790. name: "Loom",
  11791. height: math.unit(10000, "feet")
  11792. },
  11793. {
  11794. name: "Cruising Altitude",
  11795. height: math.unit(30000, "feet")
  11796. },
  11797. {
  11798. name: "Megamacro",
  11799. height: math.unit(100, "miles")
  11800. },
  11801. {
  11802. name: "Continent Sized",
  11803. height: math.unit(2800, "miles")
  11804. },
  11805. {
  11806. name: "Earth Sized",
  11807. height: math.unit(8000, "miles")
  11808. },
  11809. ]
  11810. ))
  11811. characterMakers.push(() => makeCharacter(
  11812. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11813. {
  11814. front: {
  11815. height: math.unit(6, "feet"),
  11816. weight: math.unit(250, "lb"),
  11817. name: "Front",
  11818. image: {
  11819. source: "./media/characters/alexi/front.svg",
  11820. extra: 3483 / 3291,
  11821. bottom: 0.04
  11822. }
  11823. },
  11824. back: {
  11825. height: math.unit(6, "feet"),
  11826. weight: math.unit(250, "lb"),
  11827. name: "Back",
  11828. image: {
  11829. source: "./media/characters/alexi/back.svg",
  11830. extra: 3533 / 3356,
  11831. bottom: 0.021
  11832. }
  11833. },
  11834. frontTransforming: {
  11835. height: math.unit(8.58, "feet"),
  11836. weight: math.unit(1300, "lb"),
  11837. name: "Transforming",
  11838. image: {
  11839. source: "./media/characters/alexi/front-transforming.svg",
  11840. extra: 437 / 409,
  11841. bottom: 19 / 458.66
  11842. }
  11843. },
  11844. frontTransformed: {
  11845. height: math.unit(12.5, "feet"),
  11846. weight: math.unit(4000, "lb"),
  11847. name: "Transformed",
  11848. image: {
  11849. source: "./media/characters/alexi/front-transformed.svg",
  11850. extra: 639 / 614,
  11851. bottom: 30.55 / 671
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(14, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Minimacro",
  11863. height: math.unit(30, "meters")
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(500, "meters")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(9000, "km")
  11872. },
  11873. {
  11874. name: "Teramacro",
  11875. height: math.unit(384000, "km")
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11881. {
  11882. front: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(150, "lb"),
  11885. name: "Front",
  11886. image: {
  11887. source: "./media/characters/kayroo/front.svg",
  11888. extra: 1153 / 1038,
  11889. bottom: 0.06
  11890. }
  11891. },
  11892. foot: {
  11893. height: math.unit(6, "feet"),
  11894. weight: math.unit(150, "lb"),
  11895. name: "Foot",
  11896. image: {
  11897. source: "./media/characters/kayroo/foot.svg"
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(8, "feet"),
  11905. default: true
  11906. },
  11907. {
  11908. name: "Minimacro",
  11909. height: math.unit(250, "feet")
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(2800, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(5200, "feet")
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(27000, "feet")
  11922. },
  11923. {
  11924. name: "Omega",
  11925. height: math.unit(45000, "feet")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(18, "feet"),
  11934. weight: math.unit(5800, "lb"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/rhys/front.svg",
  11938. extra: 3386 / 3090,
  11939. bottom: 0.07
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(18, "feet"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Working Size",
  11951. height: math.unit(200, "feet")
  11952. },
  11953. {
  11954. name: "Demolition Size",
  11955. height: math.unit(2000, "feet")
  11956. },
  11957. {
  11958. name: "Maximum Licensed Size",
  11959. height: math.unit(5, "miles")
  11960. },
  11961. {
  11962. name: "Maximum Observed Size",
  11963. height: math.unit(10, "yottameters")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(250, "lb"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/toto/front.svg",
  11976. extra: 527 / 479,
  11977. bottom: 0.05
  11978. }
  11979. },
  11980. },
  11981. [
  11982. {
  11983. name: "Micro",
  11984. height: math.unit(3, "feet")
  11985. },
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(10, "feet")
  11989. },
  11990. {
  11991. name: "Macro",
  11992. height: math.unit(150, "feet"),
  11993. default: true
  11994. },
  11995. {
  11996. name: "Megamacro",
  11997. height: math.unit(1200, "feet")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "King", species: ["lion"], tags: ["anthro"] },
  12003. {
  12004. back: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Back",
  12008. image: {
  12009. source: "./media/characters/king/back.svg"
  12010. }
  12011. },
  12012. },
  12013. [
  12014. {
  12015. name: "Micro",
  12016. height: math.unit(2, "inches")
  12017. },
  12018. {
  12019. name: "Normal",
  12020. height: math.unit(8, "feet")
  12021. },
  12022. {
  12023. name: "Macro",
  12024. height: math.unit(200, "feet"),
  12025. default: true
  12026. },
  12027. {
  12028. name: "Megamacro",
  12029. height: math.unit(50, "miles")
  12030. },
  12031. ]
  12032. ))
  12033. characterMakers.push(() => makeCharacter(
  12034. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12035. {
  12036. front: {
  12037. height: math.unit(11, "feet"),
  12038. weight: math.unit(1400, "lb"),
  12039. name: "Front",
  12040. image: {
  12041. source: "./media/characters/cordite/front.svg",
  12042. extra: 1919/1827,
  12043. bottom: 40/1959
  12044. }
  12045. },
  12046. side: {
  12047. height: math.unit(11, "feet"),
  12048. weight: math.unit(1400, "lb"),
  12049. name: "Side",
  12050. image: {
  12051. source: "./media/characters/cordite/side.svg",
  12052. extra: 1908/1793,
  12053. bottom: 38/1946
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(11, "feet"),
  12058. weight: math.unit(1400, "lb"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/cordite/back.svg",
  12062. extra: 1938/1837,
  12063. bottom: 10/1948
  12064. }
  12065. },
  12066. feral: {
  12067. height: math.unit(2, "feet"),
  12068. weight: math.unit(90, "lb"),
  12069. name: "Feral",
  12070. image: {
  12071. source: "./media/characters/cordite/feral.svg",
  12072. extra: 1260 / 755,
  12073. bottom: 0.05
  12074. }
  12075. },
  12076. },
  12077. [
  12078. {
  12079. name: "Normal",
  12080. height: math.unit(11, "feet"),
  12081. default: true
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(6, "feet"),
  12090. weight: math.unit(150, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/pianostrong/front.svg",
  12094. extra: 6577 / 6254,
  12095. bottom: 0.02
  12096. }
  12097. },
  12098. side: {
  12099. height: math.unit(6, "feet"),
  12100. weight: math.unit(150, "lb"),
  12101. name: "Side",
  12102. image: {
  12103. source: "./media/characters/pianostrong/side.svg",
  12104. extra: 6106 / 5730
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(6, "feet"),
  12109. weight: math.unit(150, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/pianostrong/back.svg",
  12113. extra: 6085 / 5733,
  12114. bottom: 0.01
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Macro",
  12121. height: math.unit(100, "feet")
  12122. },
  12123. {
  12124. name: "Macro+",
  12125. height: math.unit(300, "feet"),
  12126. default: true
  12127. },
  12128. {
  12129. name: "Macro++",
  12130. height: math.unit(1000, "feet")
  12131. },
  12132. ]
  12133. ))
  12134. characterMakers.push(() => makeCharacter(
  12135. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12136. {
  12137. front: {
  12138. height: math.unit(6, "feet"),
  12139. weight: math.unit(150, "lb"),
  12140. name: "Front",
  12141. image: {
  12142. source: "./media/characters/kona/front.svg",
  12143. extra: 2960 / 2629,
  12144. bottom: 0.005
  12145. }
  12146. },
  12147. },
  12148. [
  12149. {
  12150. name: "Normal",
  12151. height: math.unit(11 + 8 / 12, "feet")
  12152. },
  12153. {
  12154. name: "Macro",
  12155. height: math.unit(850, "feet"),
  12156. default: true
  12157. },
  12158. {
  12159. name: "Macro+",
  12160. height: math.unit(1.5, "km"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(80, "miles")
  12166. },
  12167. {
  12168. name: "Gigamacro",
  12169. height: math.unit(3500, "miles")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12175. {
  12176. side: {
  12177. height: math.unit(1.9, "meters"),
  12178. weight: math.unit(326, "kg"),
  12179. name: "Side",
  12180. image: {
  12181. source: "./media/characters/levi/side.svg",
  12182. extra: 1704 / 1334,
  12183. bottom: 0.02
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Normal",
  12190. height: math.unit(1.9, "meters"),
  12191. default: true
  12192. },
  12193. {
  12194. name: "Macro",
  12195. height: math.unit(20, "meters")
  12196. },
  12197. {
  12198. name: "Macro+",
  12199. height: math.unit(200, "meters")
  12200. },
  12201. {
  12202. name: "Megamacro",
  12203. height: math.unit(2, "km")
  12204. },
  12205. {
  12206. name: "Megamacro+",
  12207. height: math.unit(20, "km")
  12208. },
  12209. {
  12210. name: "Gigamacro",
  12211. height: math.unit(2500, "km")
  12212. },
  12213. {
  12214. name: "Gigamacro+",
  12215. height: math.unit(120000, "km")
  12216. },
  12217. {
  12218. name: "Teramacro",
  12219. height: math.unit(7.77e6, "km")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(6 + 4/12, "feet"),
  12228. weight: math.unit(190, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/bmc/front.svg",
  12232. extra: 1626/1472,
  12233. bottom: 79/1705
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(6 + 4/12, "feet"),
  12238. weight: math.unit(190, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/bmc/back.svg",
  12242. extra: 1640/1479,
  12243. bottom: 45/1685
  12244. }
  12245. },
  12246. frontArmor: {
  12247. height: math.unit(6 + 4/12, "feet"),
  12248. weight: math.unit(190, "lb"),
  12249. name: "Front-armor",
  12250. image: {
  12251. source: "./media/characters/bmc/front-armor.svg",
  12252. extra: 1538/1468,
  12253. bottom: 79/1617
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Human-sized",
  12260. height: math.unit(6 + 4 / 12, "feet")
  12261. },
  12262. {
  12263. name: "Interactive Size",
  12264. height: math.unit(25, "feet")
  12265. },
  12266. {
  12267. name: "Small",
  12268. height: math.unit(250, "feet")
  12269. },
  12270. {
  12271. name: "Normal",
  12272. height: math.unit(1250, "feet"),
  12273. default: true
  12274. },
  12275. {
  12276. name: "Good Day",
  12277. height: math.unit(88, "miles")
  12278. },
  12279. {
  12280. name: "Largest Measured Size",
  12281. height: math.unit(105.960, "galaxies")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(20, "feet"),
  12290. weight: math.unit(2016, "kg"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/sven-the-kaiju/front.svg",
  12294. extra: 1277/1250,
  12295. bottom: 35/1312
  12296. }
  12297. },
  12298. mouth: {
  12299. height: math.unit(1.85, "feet"),
  12300. name: "Mouth",
  12301. image: {
  12302. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Fairy",
  12309. height: math.unit(6, "inches")
  12310. },
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(20, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Rampage",
  12318. height: math.unit(200, "feet")
  12319. },
  12320. {
  12321. name: "Archfey Forest Guardian",
  12322. height: math.unit(1, "mile")
  12323. },
  12324. ]
  12325. ))
  12326. characterMakers.push(() => makeCharacter(
  12327. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12328. {
  12329. front: {
  12330. height: math.unit(4, "meters"),
  12331. weight: math.unit(2, "tons"),
  12332. name: "Front",
  12333. image: {
  12334. source: "./media/characters/marik/front.svg",
  12335. extra: 1057 / 1003,
  12336. bottom: 0.08
  12337. }
  12338. },
  12339. },
  12340. [
  12341. {
  12342. name: "Normal",
  12343. height: math.unit(4, "meters"),
  12344. default: true
  12345. },
  12346. {
  12347. name: "Macro",
  12348. height: math.unit(20, "meters")
  12349. },
  12350. {
  12351. name: "Megamacro",
  12352. height: math.unit(50, "km")
  12353. },
  12354. {
  12355. name: "Gigamacro",
  12356. height: math.unit(100, "km")
  12357. },
  12358. {
  12359. name: "Alpha Macro",
  12360. height: math.unit(7.88e7, "yottameters")
  12361. },
  12362. ]
  12363. ))
  12364. characterMakers.push(() => makeCharacter(
  12365. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12366. {
  12367. front: {
  12368. height: math.unit(6, "feet"),
  12369. weight: math.unit(110, "lb"),
  12370. name: "Front",
  12371. image: {
  12372. source: "./media/characters/mel/front.svg",
  12373. extra: 736 / 617,
  12374. bottom: 0.017
  12375. }
  12376. },
  12377. },
  12378. [
  12379. {
  12380. name: "Pico",
  12381. height: math.unit(3, "pm")
  12382. },
  12383. {
  12384. name: "Nano",
  12385. height: math.unit(3, "nm")
  12386. },
  12387. {
  12388. name: "Micro",
  12389. height: math.unit(0.3, "mm"),
  12390. default: true
  12391. },
  12392. {
  12393. name: "Micro+",
  12394. height: math.unit(3, "mm")
  12395. },
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(5 + 10.5 / 12, "feet")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12404. {
  12405. kaiju: {
  12406. height: math.unit(1.75, "meters"),
  12407. weight: math.unit(55, "kg"),
  12408. name: "Kaiju",
  12409. image: {
  12410. source: "./media/characters/lykonous/kaiju.svg",
  12411. extra: 1055 / 946,
  12412. bottom: 0.135
  12413. }
  12414. },
  12415. },
  12416. [
  12417. {
  12418. name: "Normal",
  12419. height: math.unit(2.5, "meters"),
  12420. default: true
  12421. },
  12422. {
  12423. name: "Kaiju Dragon",
  12424. height: math.unit(60, "meters")
  12425. },
  12426. {
  12427. name: "Mega Kaiju",
  12428. height: math.unit(120, "km")
  12429. },
  12430. {
  12431. name: "Giga Kaiju",
  12432. height: math.unit(200, "megameters")
  12433. },
  12434. {
  12435. name: "Terra Kaiju",
  12436. height: math.unit(400, "gigameters")
  12437. },
  12438. {
  12439. name: "Kaiju Dragon God",
  12440. height: math.unit(13000, "exaparsecs")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/blü/front.svg",
  12453. extra: 1883 / 1564,
  12454. bottom: 0.031
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Normal",
  12461. height: math.unit(13, "feet"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Big Boi",
  12466. height: math.unit(150, "meters")
  12467. },
  12468. {
  12469. name: "Mini Stomper",
  12470. height: math.unit(300, "meters")
  12471. },
  12472. {
  12473. name: "Macro",
  12474. height: math.unit(1000, "meters")
  12475. },
  12476. {
  12477. name: "Megamacro",
  12478. height: math.unit(11000, "meters")
  12479. },
  12480. {
  12481. name: "Gigamacro",
  12482. height: math.unit(11000, "km")
  12483. },
  12484. {
  12485. name: "Teramacro",
  12486. height: math.unit(420000, "km")
  12487. },
  12488. {
  12489. name: "Examacro",
  12490. height: math.unit(120, "parsecs")
  12491. },
  12492. {
  12493. name: "God Tho",
  12494. height: math.unit(98000000000, "parsecs")
  12495. },
  12496. ]
  12497. ))
  12498. characterMakers.push(() => makeCharacter(
  12499. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12500. {
  12501. taurFront: {
  12502. height: math.unit(6, "feet"),
  12503. weight: math.unit(200, "lb"),
  12504. name: "Taur (Front)",
  12505. image: {
  12506. source: "./media/characters/scales/taur-front.svg",
  12507. extra: 1,
  12508. bottom: 0.05
  12509. }
  12510. },
  12511. taurBack: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(200, "lb"),
  12514. name: "Taur (Back)",
  12515. image: {
  12516. source: "./media/characters/scales/taur-back.svg",
  12517. extra: 1,
  12518. bottom: 0.08
  12519. }
  12520. },
  12521. anthro: {
  12522. height: math.unit(6 * 7 / 12, "feet"),
  12523. weight: math.unit(100, "lb"),
  12524. name: "Anthro",
  12525. image: {
  12526. source: "./media/characters/scales/anthro.svg",
  12527. extra: 1,
  12528. bottom: 0.06
  12529. }
  12530. },
  12531. },
  12532. [
  12533. {
  12534. name: "Normal",
  12535. height: math.unit(12, "feet"),
  12536. default: true
  12537. },
  12538. ]
  12539. ))
  12540. characterMakers.push(() => makeCharacter(
  12541. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12542. {
  12543. front: {
  12544. height: math.unit(6, "feet"),
  12545. weight: math.unit(150, "lb"),
  12546. name: "Front",
  12547. image: {
  12548. source: "./media/characters/koragos/front.svg",
  12549. extra: 841 / 794,
  12550. bottom: 0.035
  12551. }
  12552. },
  12553. back: {
  12554. height: math.unit(6, "feet"),
  12555. weight: math.unit(150, "lb"),
  12556. name: "Back",
  12557. image: {
  12558. source: "./media/characters/koragos/back.svg",
  12559. extra: 841 / 810,
  12560. bottom: 0.022
  12561. }
  12562. },
  12563. },
  12564. [
  12565. {
  12566. name: "Normal",
  12567. height: math.unit(6 + 11 / 12, "feet"),
  12568. default: true
  12569. },
  12570. {
  12571. name: "Macro",
  12572. height: math.unit(490, "feet")
  12573. },
  12574. {
  12575. name: "Megamacro",
  12576. height: math.unit(10, "miles")
  12577. },
  12578. {
  12579. name: "Gigamacro",
  12580. height: math.unit(50, "miles")
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(250, "lb"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/xylrem/front.svg",
  12593. extra: 3323 / 3050,
  12594. bottom: 0.065
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Micro",
  12601. height: math.unit(4, "feet")
  12602. },
  12603. {
  12604. name: "Normal",
  12605. height: math.unit(16, "feet"),
  12606. default: true
  12607. },
  12608. {
  12609. name: "Macro",
  12610. height: math.unit(2720, "feet")
  12611. },
  12612. {
  12613. name: "Megamacro",
  12614. height: math.unit(25000, "miles")
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(8, "feet"),
  12623. weight: math.unit(250, "kg"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/ikideru/front.svg",
  12627. extra: 930 / 870,
  12628. bottom: 0.087
  12629. }
  12630. },
  12631. back: {
  12632. height: math.unit(8, "feet"),
  12633. weight: math.unit(250, "kg"),
  12634. name: "Back",
  12635. image: {
  12636. source: "./media/characters/ikideru/back.svg",
  12637. extra: 919 / 852,
  12638. bottom: 0.055
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Rare",
  12645. height: math.unit(8, "feet"),
  12646. default: true
  12647. },
  12648. {
  12649. name: "Playful Loom",
  12650. height: math.unit(80, "feet")
  12651. },
  12652. {
  12653. name: "City Leaner",
  12654. height: math.unit(230, "feet")
  12655. },
  12656. {
  12657. name: "Megamacro",
  12658. height: math.unit(2500, "feet")
  12659. },
  12660. {
  12661. name: "Gigamacro",
  12662. height: math.unit(26400, "feet")
  12663. },
  12664. {
  12665. name: "Tectonic Shifter",
  12666. height: math.unit(1.7, "megameters")
  12667. },
  12668. {
  12669. name: "Planet Carer",
  12670. height: math.unit(21, "megameters")
  12671. },
  12672. {
  12673. name: "God",
  12674. height: math.unit(11157.22, "parsecs")
  12675. },
  12676. ]
  12677. ))
  12678. characterMakers.push(() => makeCharacter(
  12679. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12680. {
  12681. front: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(120, "lb"),
  12684. name: "Front",
  12685. image: {
  12686. source: "./media/characters/neo/front.svg"
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Micro",
  12693. height: math.unit(2, "inches"),
  12694. default: true
  12695. },
  12696. {
  12697. name: "Human Size",
  12698. height: math.unit(5 + 8 / 12, "feet")
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(13 + 10 / 12, "feet"),
  12707. weight: math.unit(5320, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/chauncey-chantz/front.svg",
  12711. extra: 1587 / 1435,
  12712. bottom: 0.02
  12713. }
  12714. },
  12715. },
  12716. [
  12717. {
  12718. name: "Normal",
  12719. height: math.unit(13 + 10 / 12, "feet"),
  12720. default: true
  12721. },
  12722. {
  12723. name: "Macro",
  12724. height: math.unit(45, "feet")
  12725. },
  12726. {
  12727. name: "Megamacro",
  12728. height: math.unit(250, "miles")
  12729. },
  12730. {
  12731. name: "Planetary",
  12732. height: math.unit(10000, "miles")
  12733. },
  12734. {
  12735. name: "Galactic",
  12736. height: math.unit(40000, "parsecs")
  12737. },
  12738. {
  12739. name: "Universal",
  12740. height: math.unit(1, "yottameter")
  12741. },
  12742. ]
  12743. ))
  12744. characterMakers.push(() => makeCharacter(
  12745. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12746. {
  12747. front: {
  12748. height: math.unit(6, "feet"),
  12749. weight: math.unit(150, "lb"),
  12750. name: "Front",
  12751. image: {
  12752. source: "./media/characters/epifox/front.svg",
  12753. extra: 1,
  12754. bottom: 0.075
  12755. }
  12756. },
  12757. },
  12758. [
  12759. {
  12760. name: "Micro",
  12761. height: math.unit(6, "inches")
  12762. },
  12763. {
  12764. name: "Normal",
  12765. height: math.unit(12, "feet"),
  12766. default: true
  12767. },
  12768. {
  12769. name: "Macro",
  12770. height: math.unit(3810, "feet")
  12771. },
  12772. {
  12773. name: "Megamacro",
  12774. height: math.unit(500, "miles")
  12775. },
  12776. ]
  12777. ))
  12778. characterMakers.push(() => makeCharacter(
  12779. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12780. {
  12781. front: {
  12782. height: math.unit(1.8796, "m"),
  12783. weight: math.unit(230, "lb"),
  12784. name: "Front",
  12785. image: {
  12786. source: "./media/characters/colin-t/front.svg",
  12787. extra: 1272 / 1193,
  12788. bottom: 0.07
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Micro",
  12795. height: math.unit(0.571, "meters")
  12796. },
  12797. {
  12798. name: "Normal",
  12799. height: math.unit(1.8796, "meters"),
  12800. default: true
  12801. },
  12802. {
  12803. name: "Tall",
  12804. height: math.unit(4, "meters")
  12805. },
  12806. {
  12807. name: "Macro",
  12808. height: math.unit(67.241, "meters")
  12809. },
  12810. {
  12811. name: "Megamacro",
  12812. height: math.unit(371.856, "meters")
  12813. },
  12814. {
  12815. name: "Planetary",
  12816. height: math.unit(12631.5689, "km")
  12817. },
  12818. ]
  12819. ))
  12820. characterMakers.push(() => makeCharacter(
  12821. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12822. {
  12823. front: {
  12824. height: math.unit(1.85, "meters"),
  12825. weight: math.unit(80, "kg"),
  12826. name: "Front",
  12827. image: {
  12828. source: "./media/characters/matvei/front.svg",
  12829. extra: 614 / 594,
  12830. bottom: 0.01
  12831. }
  12832. },
  12833. },
  12834. [
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(1.85, "meters"),
  12838. default: true
  12839. },
  12840. ]
  12841. ))
  12842. characterMakers.push(() => makeCharacter(
  12843. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12844. {
  12845. front: {
  12846. height: math.unit(5 + 9 / 12, "feet"),
  12847. weight: math.unit(70, "lb"),
  12848. name: "Front",
  12849. image: {
  12850. source: "./media/characters/quincy/front.svg",
  12851. extra: 3041 / 2751
  12852. }
  12853. },
  12854. back: {
  12855. height: math.unit(5 + 9 / 12, "feet"),
  12856. weight: math.unit(70, "lb"),
  12857. name: "Back",
  12858. image: {
  12859. source: "./media/characters/quincy/back.svg",
  12860. extra: 3041 / 2751
  12861. }
  12862. },
  12863. flying: {
  12864. height: math.unit(5 + 4 / 12, "feet"),
  12865. weight: math.unit(70, "lb"),
  12866. name: "Flying",
  12867. image: {
  12868. source: "./media/characters/quincy/flying.svg",
  12869. extra: 1044 / 930
  12870. }
  12871. },
  12872. },
  12873. [
  12874. {
  12875. name: "Micro",
  12876. height: math.unit(3, "cm")
  12877. },
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(5 + 9 / 12, "feet")
  12881. },
  12882. {
  12883. name: "Macro",
  12884. height: math.unit(200, "meters"),
  12885. default: true
  12886. },
  12887. {
  12888. name: "Megamacro",
  12889. height: math.unit(1000, "meters")
  12890. },
  12891. ]
  12892. ))
  12893. characterMakers.push(() => makeCharacter(
  12894. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12895. {
  12896. front: {
  12897. height: math.unit(3 + 11/12, "feet"),
  12898. weight: math.unit(50, "lb"),
  12899. name: "Front",
  12900. image: {
  12901. source: "./media/characters/vanrel/front.svg",
  12902. extra: 1104/949,
  12903. bottom: 52/1156
  12904. }
  12905. },
  12906. back: {
  12907. height: math.unit(3 + 11/12, "feet"),
  12908. weight: math.unit(50, "lb"),
  12909. name: "Back",
  12910. image: {
  12911. source: "./media/characters/vanrel/back.svg",
  12912. extra: 1119/976,
  12913. bottom: 37/1156
  12914. }
  12915. },
  12916. tome: {
  12917. height: math.unit(1.35, "feet"),
  12918. weight: math.unit(10, "lb"),
  12919. name: "Vanrel's Tome",
  12920. rename: true,
  12921. image: {
  12922. source: "./media/characters/vanrel/tome.svg"
  12923. }
  12924. },
  12925. beans: {
  12926. height: math.unit(0.89, "feet"),
  12927. name: "Beans",
  12928. image: {
  12929. source: "./media/characters/vanrel/beans.svg"
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(3 + 11/12, "feet"),
  12937. default: true
  12938. },
  12939. ]
  12940. ))
  12941. characterMakers.push(() => makeCharacter(
  12942. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12943. {
  12944. front: {
  12945. height: math.unit(7 + 5 / 12, "feet"),
  12946. name: "Front",
  12947. image: {
  12948. source: "./media/characters/kuiper-vanrel/front.svg",
  12949. extra: 1219/1169,
  12950. bottom: 69/1288
  12951. }
  12952. },
  12953. back: {
  12954. height: math.unit(7 + 5 / 12, "feet"),
  12955. name: "Back",
  12956. image: {
  12957. source: "./media/characters/kuiper-vanrel/back.svg",
  12958. extra: 1236/1193,
  12959. bottom: 27/1263
  12960. }
  12961. },
  12962. foot: {
  12963. height: math.unit(0.55, "meters"),
  12964. name: "Foot",
  12965. image: {
  12966. source: "./media/characters/kuiper-vanrel/foot.svg",
  12967. }
  12968. },
  12969. battle: {
  12970. height: math.unit(6.824, "feet"),
  12971. name: "Battle",
  12972. image: {
  12973. source: "./media/characters/kuiper-vanrel/battle.svg",
  12974. extra: 1466 / 1327,
  12975. bottom: 29 / 1492.5
  12976. }
  12977. },
  12978. meerkui: {
  12979. height: math.unit(18, "inches"),
  12980. name: "Meerkui",
  12981. image: {
  12982. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12983. extra: 1354/1289,
  12984. bottom: 69/1423
  12985. }
  12986. },
  12987. },
  12988. [
  12989. {
  12990. name: "Normal",
  12991. height: math.unit(7 + 5 / 12, "feet"),
  12992. default: true
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(8 + 5 / 12, "feet"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/keset-vanrel/front.svg",
  13004. extra: 1231/1148,
  13005. bottom: 82/1313
  13006. }
  13007. },
  13008. back: {
  13009. height: math.unit(8 + 5 / 12, "feet"),
  13010. name: "Back",
  13011. image: {
  13012. source: "./media/characters/keset-vanrel/back.svg",
  13013. extra: 1240/1174,
  13014. bottom: 33/1273
  13015. }
  13016. },
  13017. hand: {
  13018. height: math.unit(0.6, "meters"),
  13019. name: "Hand",
  13020. image: {
  13021. source: "./media/characters/keset-vanrel/hand.svg"
  13022. }
  13023. },
  13024. foot: {
  13025. height: math.unit(0.94978, "meters"),
  13026. name: "Foot",
  13027. image: {
  13028. source: "./media/characters/keset-vanrel/foot.svg"
  13029. }
  13030. },
  13031. battle: {
  13032. height: math.unit(7.408, "feet"),
  13033. name: "Battle",
  13034. image: {
  13035. source: "./media/characters/keset-vanrel/battle.svg",
  13036. extra: 1890 / 1386,
  13037. bottom: 73.28 / 1970
  13038. }
  13039. },
  13040. },
  13041. [
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(8 + 5 / 12, "feet"),
  13045. default: true
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(6, "feet"),
  13054. weight: math.unit(150, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/neos/front.svg",
  13058. extra: 1696 / 992,
  13059. bottom: 0.14
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(54, "cm"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Macro",
  13071. height: math.unit(100, "m")
  13072. },
  13073. {
  13074. name: "Megamacro",
  13075. height: math.unit(10, "km")
  13076. },
  13077. {
  13078. name: "Megamacro+",
  13079. height: math.unit(100, "km")
  13080. },
  13081. {
  13082. name: "Gigamacro",
  13083. height: math.unit(100, "Mm")
  13084. },
  13085. {
  13086. name: "Teramacro",
  13087. height: math.unit(100, "Gm")
  13088. },
  13089. {
  13090. name: "Examacro",
  13091. height: math.unit(100, "Em")
  13092. },
  13093. {
  13094. name: "Godly",
  13095. height: math.unit(10000, "Ym")
  13096. },
  13097. {
  13098. name: "Beyond Godly",
  13099. height: math.unit(25, "multiverses")
  13100. },
  13101. ]
  13102. ))
  13103. characterMakers.push(() => makeCharacter(
  13104. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13105. {
  13106. feminine: {
  13107. height: math.unit(5, "feet"),
  13108. weight: math.unit(100, "lb"),
  13109. name: "Feminine",
  13110. image: {
  13111. source: "./media/characters/sammy-mouse/feminine.svg",
  13112. extra: 2526 / 2425,
  13113. bottom: 0.123
  13114. }
  13115. },
  13116. masculine: {
  13117. height: math.unit(5, "feet"),
  13118. weight: math.unit(100, "lb"),
  13119. name: "Masculine",
  13120. image: {
  13121. source: "./media/characters/sammy-mouse/masculine.svg",
  13122. extra: 2526 / 2425,
  13123. bottom: 0.123
  13124. }
  13125. },
  13126. },
  13127. [
  13128. {
  13129. name: "Micro",
  13130. height: math.unit(5, "inches")
  13131. },
  13132. {
  13133. name: "Normal",
  13134. height: math.unit(5, "feet"),
  13135. default: true
  13136. },
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(60, "feet")
  13140. },
  13141. ]
  13142. ))
  13143. characterMakers.push(() => makeCharacter(
  13144. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13145. {
  13146. front: {
  13147. height: math.unit(4, "feet"),
  13148. weight: math.unit(50, "lb"),
  13149. name: "Front",
  13150. image: {
  13151. source: "./media/characters/kole/front.svg",
  13152. extra: 1423 / 1303,
  13153. bottom: 0.025
  13154. }
  13155. },
  13156. back: {
  13157. height: math.unit(4, "feet"),
  13158. weight: math.unit(50, "lb"),
  13159. name: "Back",
  13160. image: {
  13161. source: "./media/characters/kole/back.svg",
  13162. extra: 1426 / 1280,
  13163. bottom: 0.02
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(4, "feet"),
  13171. default: true
  13172. },
  13173. ]
  13174. ))
  13175. characterMakers.push(() => makeCharacter(
  13176. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13177. {
  13178. front: {
  13179. height: math.unit(2.5, "feet"),
  13180. weight: math.unit(32, "lb"),
  13181. name: "Front",
  13182. image: {
  13183. source: "./media/characters/rufran/front.svg",
  13184. extra: 1313/885,
  13185. bottom: 94/1407
  13186. }
  13187. },
  13188. side: {
  13189. height: math.unit(2.5, "feet"),
  13190. weight: math.unit(32, "lb"),
  13191. name: "Side",
  13192. image: {
  13193. source: "./media/characters/rufran/side.svg",
  13194. extra: 1109/852,
  13195. bottom: 118/1227
  13196. }
  13197. },
  13198. back: {
  13199. height: math.unit(2.5, "feet"),
  13200. weight: math.unit(32, "lb"),
  13201. name: "Back",
  13202. image: {
  13203. source: "./media/characters/rufran/back.svg",
  13204. extra: 1280/878,
  13205. bottom: 131/1411
  13206. }
  13207. },
  13208. mouth: {
  13209. height: math.unit(1.13, "feet"),
  13210. name: "Mouth",
  13211. image: {
  13212. source: "./media/characters/rufran/mouth.svg"
  13213. }
  13214. },
  13215. foot: {
  13216. height: math.unit(1.33, "feet"),
  13217. name: "Foot",
  13218. image: {
  13219. source: "./media/characters/rufran/foot.svg"
  13220. }
  13221. },
  13222. koboldFront: {
  13223. height: math.unit(2 + 6 / 12, "feet"),
  13224. weight: math.unit(20, "lb"),
  13225. name: "Front (Kobold)",
  13226. image: {
  13227. source: "./media/characters/rufran/kobold-front.svg",
  13228. extra: 2041 / 1839,
  13229. bottom: 0.055
  13230. }
  13231. },
  13232. koboldBack: {
  13233. height: math.unit(2 + 6 / 12, "feet"),
  13234. weight: math.unit(20, "lb"),
  13235. name: "Back (Kobold)",
  13236. image: {
  13237. source: "./media/characters/rufran/kobold-back.svg",
  13238. extra: 2054 / 1839,
  13239. bottom: 0.01
  13240. }
  13241. },
  13242. koboldHand: {
  13243. height: math.unit(0.2166, "meters"),
  13244. name: "Hand (Kobold)",
  13245. image: {
  13246. source: "./media/characters/rufran/kobold-hand.svg"
  13247. }
  13248. },
  13249. koboldFoot: {
  13250. height: math.unit(0.185, "meters"),
  13251. name: "Foot (Kobold)",
  13252. image: {
  13253. source: "./media/characters/rufran/kobold-foot.svg"
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Micro",
  13260. height: math.unit(1, "inch")
  13261. },
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(2 + 6 / 12, "feet"),
  13265. default: true
  13266. },
  13267. {
  13268. name: "Big",
  13269. height: math.unit(60, "feet")
  13270. },
  13271. {
  13272. name: "Macro",
  13273. height: math.unit(325, "feet")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(0.3, "meters"),
  13282. weight: math.unit(3.5, "kg"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/chip/front.svg",
  13286. extra: 748 / 674
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Micro",
  13293. height: math.unit(1, "inch"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13300. {
  13301. side: {
  13302. height: math.unit(2.3, "meters"),
  13303. weight: math.unit(3500, "lb"),
  13304. name: "Side",
  13305. image: {
  13306. source: "./media/characters/torvid/side.svg",
  13307. extra: 1972 / 722,
  13308. bottom: 0.035
  13309. }
  13310. },
  13311. },
  13312. [
  13313. {
  13314. name: "Normal",
  13315. height: math.unit(2.3, "meters"),
  13316. default: true
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(2, "meters"),
  13325. weight: math.unit(150.5, "kg"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/susan/front.svg",
  13329. extra: 693 / 635,
  13330. bottom: 0.05
  13331. }
  13332. },
  13333. },
  13334. [
  13335. {
  13336. name: "Megamacro",
  13337. height: math.unit(505, "miles"),
  13338. default: true
  13339. },
  13340. ]
  13341. ))
  13342. characterMakers.push(() => makeCharacter(
  13343. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13344. {
  13345. front: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(150, "lb"),
  13348. name: "Front",
  13349. image: {
  13350. source: "./media/characters/raindrops/front.svg",
  13351. extra: 2655 / 2461,
  13352. bottom: 49 / 2705
  13353. }
  13354. },
  13355. back: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Back",
  13359. image: {
  13360. source: "./media/characters/raindrops/back.svg",
  13361. extra: 2574 / 2400,
  13362. bottom: 65 / 2634
  13363. }
  13364. },
  13365. },
  13366. [
  13367. {
  13368. name: "Micro",
  13369. height: math.unit(6, "inches")
  13370. },
  13371. {
  13372. name: "Normal",
  13373. height: math.unit(6 + 2 / 12, "feet")
  13374. },
  13375. {
  13376. name: "Macro",
  13377. height: math.unit(131, "feet"),
  13378. default: true
  13379. },
  13380. {
  13381. name: "Megamacro",
  13382. height: math.unit(15, "miles")
  13383. },
  13384. {
  13385. name: "Gigamacro",
  13386. height: math.unit(4000, "miles")
  13387. },
  13388. {
  13389. name: "Teramacro",
  13390. height: math.unit(315000, "miles")
  13391. },
  13392. ]
  13393. ))
  13394. characterMakers.push(() => makeCharacter(
  13395. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13396. {
  13397. front: {
  13398. height: math.unit(2.794, "meters"),
  13399. weight: math.unit(325, "kg"),
  13400. name: "Front",
  13401. image: {
  13402. source: "./media/characters/tezwa/front.svg",
  13403. extra: 2083 / 1906,
  13404. bottom: 0.031
  13405. }
  13406. },
  13407. foot: {
  13408. height: math.unit(0.687, "meters"),
  13409. name: "Foot",
  13410. image: {
  13411. source: "./media/characters/tezwa/foot.svg"
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Normal",
  13418. height: math.unit(9 + 2 / 12, "feet"),
  13419. default: true
  13420. },
  13421. ]
  13422. ))
  13423. characterMakers.push(() => makeCharacter(
  13424. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13425. {
  13426. front: {
  13427. height: math.unit(58, "feet"),
  13428. weight: math.unit(89000, "lb"),
  13429. name: "Front",
  13430. image: {
  13431. source: "./media/characters/typhus/front.svg",
  13432. extra: 816 / 800,
  13433. bottom: 0.065
  13434. }
  13435. },
  13436. },
  13437. [
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(58, "feet"),
  13441. default: true
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(12, "feet"),
  13450. weight: math.unit(6, "tonnes"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/lyra-von-wulf/front.svg",
  13454. extra: 1,
  13455. bottom: 0.10
  13456. }
  13457. },
  13458. frontMecha: {
  13459. height: math.unit(12, "feet"),
  13460. weight: math.unit(12, "tonnes"),
  13461. name: "Front (Mecha)",
  13462. image: {
  13463. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13464. extra: 1,
  13465. bottom: 0.042
  13466. }
  13467. },
  13468. maw: {
  13469. height: math.unit(2.2, "feet"),
  13470. name: "Maw",
  13471. image: {
  13472. source: "./media/characters/lyra-von-wulf/maw.svg"
  13473. }
  13474. },
  13475. },
  13476. [
  13477. {
  13478. name: "Normal",
  13479. height: math.unit(12, "feet"),
  13480. default: true
  13481. },
  13482. {
  13483. name: "Classic",
  13484. height: math.unit(50, "feet")
  13485. },
  13486. {
  13487. name: "Macro",
  13488. height: math.unit(500, "feet")
  13489. },
  13490. {
  13491. name: "Megamacro",
  13492. height: math.unit(1, "mile")
  13493. },
  13494. {
  13495. name: "Gigamacro",
  13496. height: math.unit(400, "miles")
  13497. },
  13498. {
  13499. name: "Teramacro",
  13500. height: math.unit(22000, "miles")
  13501. },
  13502. {
  13503. name: "Solarmacro",
  13504. height: math.unit(8600000, "miles")
  13505. },
  13506. {
  13507. name: "Galactic",
  13508. height: math.unit(1057000, "lightyears")
  13509. },
  13510. ]
  13511. ))
  13512. characterMakers.push(() => makeCharacter(
  13513. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13514. {
  13515. front: {
  13516. height: math.unit(6 + 10 / 12, "feet"),
  13517. weight: math.unit(150, "lb"),
  13518. name: "Front",
  13519. image: {
  13520. source: "./media/characters/dixon/front.svg",
  13521. extra: 3361 / 3209,
  13522. bottom: 0.01
  13523. }
  13524. },
  13525. },
  13526. [
  13527. {
  13528. name: "Normal",
  13529. height: math.unit(6 + 10 / 12, "feet"),
  13530. default: true
  13531. },
  13532. {
  13533. name: "Big",
  13534. height: math.unit(12, "meters")
  13535. },
  13536. {
  13537. name: "Macro",
  13538. height: math.unit(500, "meters")
  13539. },
  13540. {
  13541. name: "Megamacro",
  13542. height: math.unit(2, "km")
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13548. {
  13549. front: {
  13550. height: math.unit(185, "cm"),
  13551. weight: math.unit(68, "kg"),
  13552. name: "Front",
  13553. image: {
  13554. source: "./media/characters/kauko/front.svg",
  13555. extra: 1455 / 1421,
  13556. bottom: 0.03
  13557. }
  13558. },
  13559. back: {
  13560. height: math.unit(185, "cm"),
  13561. weight: math.unit(68, "kg"),
  13562. name: "Back",
  13563. image: {
  13564. source: "./media/characters/kauko/back.svg",
  13565. extra: 1455 / 1421,
  13566. bottom: 0.004
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Normal",
  13573. height: math.unit(185, "cm"),
  13574. default: true
  13575. },
  13576. ]
  13577. ))
  13578. characterMakers.push(() => makeCharacter(
  13579. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13580. {
  13581. front: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "kg"),
  13584. name: "Front",
  13585. image: {
  13586. source: "./media/characters/varg/front.svg",
  13587. extra: 1108 / 1018,
  13588. bottom: 0.0375
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Normal",
  13595. height: math.unit(5, "meters")
  13596. },
  13597. {
  13598. name: "Macro",
  13599. height: math.unit(200, "meters")
  13600. },
  13601. {
  13602. name: "Megamacro",
  13603. height: math.unit(20, "kilometers")
  13604. },
  13605. {
  13606. name: "True Size",
  13607. height: math.unit(211, "km"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Gigamacro",
  13612. height: math.unit(1000, "km")
  13613. },
  13614. {
  13615. name: "Gigamacro+",
  13616. height: math.unit(8000, "km")
  13617. },
  13618. {
  13619. name: "Teramacro",
  13620. height: math.unit(1000000, "km")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(7 + 7 / 12, "feet"),
  13629. weight: math.unit(267, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/dayza/front.svg",
  13633. extra: 1262 / 1200,
  13634. bottom: 0.035
  13635. }
  13636. },
  13637. side: {
  13638. height: math.unit(7 + 7 / 12, "feet"),
  13639. weight: math.unit(267, "lb"),
  13640. name: "Side",
  13641. image: {
  13642. source: "./media/characters/dayza/side.svg",
  13643. extra: 1295 / 1245,
  13644. bottom: 0.05
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(7 + 7 / 12, "feet"),
  13649. weight: math.unit(267, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/dayza/back.svg",
  13653. extra: 1241 / 1170
  13654. }
  13655. },
  13656. },
  13657. [
  13658. {
  13659. name: "Normal",
  13660. height: math.unit(7 + 7 / 12, "feet"),
  13661. default: true
  13662. },
  13663. {
  13664. name: "Macro",
  13665. height: math.unit(155, "feet")
  13666. },
  13667. ]
  13668. ))
  13669. characterMakers.push(() => makeCharacter(
  13670. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13671. {
  13672. front: {
  13673. height: math.unit(6 + 5 / 12, "feet"),
  13674. weight: math.unit(160, "lb"),
  13675. name: "Front",
  13676. image: {
  13677. source: "./media/characters/xanthos/front.svg",
  13678. extra: 1,
  13679. bottom: 0.04
  13680. }
  13681. },
  13682. back: {
  13683. height: math.unit(6 + 5 / 12, "feet"),
  13684. weight: math.unit(160, "lb"),
  13685. name: "Back",
  13686. image: {
  13687. source: "./media/characters/xanthos/back.svg",
  13688. extra: 1,
  13689. bottom: 0.03
  13690. }
  13691. },
  13692. hand: {
  13693. height: math.unit(0.928, "feet"),
  13694. name: "Hand",
  13695. image: {
  13696. source: "./media/characters/xanthos/hand.svg"
  13697. }
  13698. },
  13699. foot: {
  13700. height: math.unit(1.286, "feet"),
  13701. name: "Foot",
  13702. image: {
  13703. source: "./media/characters/xanthos/foot.svg"
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(6 + 5 / 12, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Normal+",
  13715. height: math.unit(6, "meters")
  13716. },
  13717. {
  13718. name: "Macro",
  13719. height: math.unit(40, "feet")
  13720. },
  13721. {
  13722. name: "Macro+",
  13723. height: math.unit(200, "meters")
  13724. },
  13725. {
  13726. name: "Megamacro",
  13727. height: math.unit(20, "km")
  13728. },
  13729. {
  13730. name: "Megamacro+",
  13731. height: math.unit(100, "km")
  13732. },
  13733. {
  13734. name: "Gigamacro",
  13735. height: math.unit(200, "megameters")
  13736. },
  13737. {
  13738. name: "Gigamacro+",
  13739. height: math.unit(1.5, "gigameters")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(6 + 3 / 12, "feet"),
  13748. weight: math.unit(215, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/grynn/front.svg",
  13752. extra: 4627 / 4209,
  13753. bottom: 0.047
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Micro",
  13760. height: math.unit(6, "inches")
  13761. },
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(6 + 3 / 12, "feet"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Big",
  13769. height: math.unit(104, "feet")
  13770. },
  13771. {
  13772. name: "Macro",
  13773. height: math.unit(944, "feet")
  13774. },
  13775. {
  13776. name: "Macro+",
  13777. height: math.unit(9480, "feet")
  13778. },
  13779. {
  13780. name: "Megamacro",
  13781. height: math.unit(78752, "feet")
  13782. },
  13783. {
  13784. name: "Megamacro+",
  13785. height: math.unit(630128, "feet")
  13786. },
  13787. {
  13788. name: "Megamacro++",
  13789. height: math.unit(3150695, "feet")
  13790. },
  13791. ]
  13792. ))
  13793. characterMakers.push(() => makeCharacter(
  13794. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13795. {
  13796. front: {
  13797. height: math.unit(7 + 5 / 12, "feet"),
  13798. weight: math.unit(450, "lb"),
  13799. name: "Front",
  13800. image: {
  13801. source: "./media/characters/mocha-aura/front.svg",
  13802. extra: 1907 / 1817,
  13803. bottom: 0.04
  13804. }
  13805. },
  13806. back: {
  13807. height: math.unit(7 + 5 / 12, "feet"),
  13808. weight: math.unit(450, "lb"),
  13809. name: "Back",
  13810. image: {
  13811. source: "./media/characters/mocha-aura/back.svg",
  13812. extra: 1900 / 1825,
  13813. bottom: 0.045
  13814. }
  13815. },
  13816. },
  13817. [
  13818. {
  13819. name: "Nano",
  13820. height: math.unit(1, "nm")
  13821. },
  13822. {
  13823. name: "Megamicro",
  13824. height: math.unit(1, "mm")
  13825. },
  13826. {
  13827. name: "Micro",
  13828. height: math.unit(3, "inches")
  13829. },
  13830. {
  13831. name: "Normal",
  13832. height: math.unit(7 + 5 / 12, "feet"),
  13833. default: true
  13834. },
  13835. {
  13836. name: "Macro",
  13837. height: math.unit(30, "feet")
  13838. },
  13839. {
  13840. name: "Megamacro",
  13841. height: math.unit(3500, "feet")
  13842. },
  13843. {
  13844. name: "Teramacro",
  13845. height: math.unit(500000, "miles")
  13846. },
  13847. {
  13848. name: "Petamacro",
  13849. height: math.unit(50000000000000000, "parsecs")
  13850. },
  13851. ]
  13852. ))
  13853. characterMakers.push(() => makeCharacter(
  13854. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13855. {
  13856. front: {
  13857. height: math.unit(6, "feet"),
  13858. weight: math.unit(150, "lb"),
  13859. name: "Front",
  13860. image: {
  13861. source: "./media/characters/ilisha-devya/front.svg",
  13862. extra: 1053/1049,
  13863. bottom: 270/1323
  13864. }
  13865. },
  13866. back: {
  13867. height: math.unit(6, "feet"),
  13868. weight: math.unit(150, "lb"),
  13869. name: "Back",
  13870. image: {
  13871. source: "./media/characters/ilisha-devya/back.svg",
  13872. extra: 1131/1128,
  13873. bottom: 39/1170
  13874. }
  13875. },
  13876. },
  13877. [
  13878. {
  13879. name: "Macro",
  13880. height: math.unit(500, "feet"),
  13881. default: true
  13882. },
  13883. {
  13884. name: "Megamacro",
  13885. height: math.unit(10, "miles")
  13886. },
  13887. {
  13888. name: "Gigamacro",
  13889. height: math.unit(100000, "miles")
  13890. },
  13891. {
  13892. name: "Examacro",
  13893. height: math.unit(1e9, "lightyears")
  13894. },
  13895. {
  13896. name: "Omniversal",
  13897. height: math.unit(1e33, "lightyears")
  13898. },
  13899. {
  13900. name: "Beyond Infinite",
  13901. height: math.unit(1e100, "lightyears")
  13902. },
  13903. ]
  13904. ))
  13905. characterMakers.push(() => makeCharacter(
  13906. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13907. {
  13908. Side: {
  13909. height: math.unit(6, "feet"),
  13910. weight: math.unit(150, "lb"),
  13911. name: "Side",
  13912. image: {
  13913. source: "./media/characters/mira/side.svg",
  13914. extra: 900 / 799,
  13915. bottom: 0.02
  13916. }
  13917. },
  13918. },
  13919. [
  13920. {
  13921. name: "Human Size",
  13922. height: math.unit(6, "feet")
  13923. },
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(100, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Megamacro",
  13931. height: math.unit(10, "miles")
  13932. },
  13933. {
  13934. name: "Gigamacro",
  13935. height: math.unit(25000, "miles")
  13936. },
  13937. {
  13938. name: "Teramacro",
  13939. height: math.unit(300, "AU")
  13940. },
  13941. {
  13942. name: "Full Size",
  13943. height: math.unit(4.5e10, "lightyears")
  13944. },
  13945. ]
  13946. ))
  13947. characterMakers.push(() => makeCharacter(
  13948. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13949. {
  13950. front: {
  13951. height: math.unit(6, "feet"),
  13952. weight: math.unit(150, "lb"),
  13953. name: "Front",
  13954. image: {
  13955. source: "./media/characters/holly/front.svg",
  13956. extra: 639 / 606
  13957. }
  13958. },
  13959. back: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(150, "lb"),
  13962. name: "Back",
  13963. image: {
  13964. source: "./media/characters/holly/back.svg",
  13965. extra: 623 / 598
  13966. }
  13967. },
  13968. frontWorking: {
  13969. height: math.unit(6, "feet"),
  13970. weight: math.unit(150, "lb"),
  13971. name: "Front (Working)",
  13972. image: {
  13973. source: "./media/characters/holly/front-working.svg",
  13974. extra: 607 / 577,
  13975. bottom: 0.048
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Normal",
  13982. height: math.unit(12 + 3 / 12, "feet"),
  13983. default: true
  13984. },
  13985. ]
  13986. ))
  13987. characterMakers.push(() => makeCharacter(
  13988. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13989. {
  13990. front: {
  13991. height: math.unit(6, "feet"),
  13992. weight: math.unit(150, "lb"),
  13993. name: "Front",
  13994. image: {
  13995. source: "./media/characters/porter/front.svg",
  13996. extra: 1,
  13997. bottom: 0.01
  13998. }
  13999. },
  14000. frontRobes: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(150, "lb"),
  14003. name: "Front (Robes)",
  14004. image: {
  14005. source: "./media/characters/porter/front-robes.svg",
  14006. extra: 1.01,
  14007. bottom: 0.01
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(11 + 9 / 12, "feet"),
  14015. default: true
  14016. },
  14017. ]
  14018. ))
  14019. characterMakers.push(() => makeCharacter(
  14020. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14021. {
  14022. legendary: {
  14023. height: math.unit(6, "feet"),
  14024. weight: math.unit(150, "lb"),
  14025. name: "Legendary",
  14026. image: {
  14027. source: "./media/characters/lucy/legendary.svg",
  14028. extra: 1355 / 1100,
  14029. bottom: 0.045
  14030. }
  14031. },
  14032. },
  14033. [
  14034. {
  14035. name: "Legendary",
  14036. height: math.unit(86882 * 2, "miles"),
  14037. default: true
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/drusilla/front.svg",
  14050. extra: 678 / 635,
  14051. bottom: 0.03
  14052. }
  14053. },
  14054. back: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Back",
  14058. image: {
  14059. source: "./media/characters/drusilla/back.svg",
  14060. extra: 678 / 635,
  14061. bottom: 0.005
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Macro",
  14068. height: math.unit(100, "feet")
  14069. },
  14070. {
  14071. name: "Canon Height",
  14072. height: math.unit(2000, "feet"),
  14073. default: true
  14074. },
  14075. ]
  14076. ))
  14077. characterMakers.push(() => makeCharacter(
  14078. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14079. {
  14080. front: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(180, "lb"),
  14083. name: "Front",
  14084. image: {
  14085. source: "./media/characters/renard-thatch/front.svg",
  14086. extra: 2411 / 2275,
  14087. bottom: 0.01
  14088. }
  14089. },
  14090. frontPosing: {
  14091. height: math.unit(6, "feet"),
  14092. weight: math.unit(180, "lb"),
  14093. name: "Front (Posing)",
  14094. image: {
  14095. source: "./media/characters/renard-thatch/front-posing.svg",
  14096. extra: 2381 / 2261,
  14097. bottom: 0.01
  14098. }
  14099. },
  14100. back: {
  14101. height: math.unit(6, "feet"),
  14102. weight: math.unit(180, "lb"),
  14103. name: "Back",
  14104. image: {
  14105. source: "./media/characters/renard-thatch/back.svg",
  14106. extra: 2428 / 2288
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Micro",
  14113. height: math.unit(3, "inches")
  14114. },
  14115. {
  14116. name: "Default",
  14117. height: math.unit(6, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Macro",
  14122. height: math.unit(75, "feet")
  14123. },
  14124. ]
  14125. ))
  14126. characterMakers.push(() => makeCharacter(
  14127. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14128. {
  14129. front: {
  14130. height: math.unit(1450, "feet"),
  14131. weight: math.unit(1.21e6, "tons"),
  14132. name: "Front",
  14133. image: {
  14134. source: "./media/characters/sekvra/front.svg",
  14135. extra: 1193/1190,
  14136. bottom: 78/1271
  14137. }
  14138. },
  14139. side: {
  14140. height: math.unit(1450, "feet"),
  14141. weight: math.unit(1.21e6, "tons"),
  14142. name: "Side",
  14143. image: {
  14144. source: "./media/characters/sekvra/side.svg",
  14145. extra: 1193/1190,
  14146. bottom: 52/1245
  14147. }
  14148. },
  14149. back: {
  14150. height: math.unit(1450, "feet"),
  14151. weight: math.unit(1.21e6, "tons"),
  14152. name: "Back",
  14153. image: {
  14154. source: "./media/characters/sekvra/back.svg",
  14155. extra: 1219/1216,
  14156. bottom: 21/1240
  14157. }
  14158. },
  14159. frontClothed: {
  14160. height: math.unit(1450, "feet"),
  14161. weight: math.unit(1.21e6, "tons"),
  14162. name: "Front (Clothed)",
  14163. image: {
  14164. source: "./media/characters/sekvra/front-clothed.svg",
  14165. extra: 1192/1189,
  14166. bottom: 79/1271
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Macro",
  14173. height: math.unit(1450, "feet"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Megamacro",
  14178. height: math.unit(15000, "feet")
  14179. },
  14180. ]
  14181. ))
  14182. characterMakers.push(() => makeCharacter(
  14183. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14184. {
  14185. front: {
  14186. height: math.unit(6, "feet"),
  14187. weight: math.unit(150, "lb"),
  14188. name: "Front",
  14189. image: {
  14190. source: "./media/characters/carmine/front.svg",
  14191. extra: 1,
  14192. bottom: 0.035
  14193. }
  14194. },
  14195. frontArmor: {
  14196. height: math.unit(6, "feet"),
  14197. weight: math.unit(150, "lb"),
  14198. name: "Front (Armor)",
  14199. image: {
  14200. source: "./media/characters/carmine/front-armor.svg",
  14201. extra: 1,
  14202. bottom: 0.035
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Large",
  14209. height: math.unit(1, "mile")
  14210. },
  14211. {
  14212. name: "Huge",
  14213. height: math.unit(40, "miles"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Colossal",
  14218. height: math.unit(2500, "miles")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(150, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/elyssia/front.svg",
  14231. extra: 2201 / 2035,
  14232. bottom: 0.05
  14233. }
  14234. },
  14235. frontClothed: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(150, "lb"),
  14238. name: "Front (Clothed)",
  14239. image: {
  14240. source: "./media/characters/elyssia/front-clothed.svg",
  14241. extra: 2201 / 2035,
  14242. bottom: 0.05
  14243. }
  14244. },
  14245. back: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(150, "lb"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/elyssia/back.svg",
  14251. extra: 2201 / 2035,
  14252. bottom: 0.013
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Smaller",
  14259. height: math.unit(150, "feet")
  14260. },
  14261. {
  14262. name: "Standard",
  14263. height: math.unit(1400, "feet"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Distracted",
  14268. height: math.unit(15000, "feet")
  14269. },
  14270. ]
  14271. ))
  14272. characterMakers.push(() => makeCharacter(
  14273. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14274. {
  14275. front: {
  14276. height: math.unit(7 + 4/12, "feet"),
  14277. weight: math.unit(690, "lb"),
  14278. name: "Front",
  14279. image: {
  14280. source: "./media/characters/geno-maxwell/front.svg",
  14281. extra: 984/856,
  14282. bottom: 87/1071
  14283. }
  14284. },
  14285. back: {
  14286. height: math.unit(7 + 4/12, "feet"),
  14287. weight: math.unit(690, "lb"),
  14288. name: "Back",
  14289. image: {
  14290. source: "./media/characters/geno-maxwell/back.svg",
  14291. extra: 981/854,
  14292. bottom: 57/1038
  14293. }
  14294. },
  14295. frontCostume: {
  14296. height: math.unit(7 + 4/12, "feet"),
  14297. weight: math.unit(690, "lb"),
  14298. name: "Front (Costume)",
  14299. image: {
  14300. source: "./media/characters/geno-maxwell/front-costume.svg",
  14301. extra: 984/856,
  14302. bottom: 87/1071
  14303. }
  14304. },
  14305. backcostume: {
  14306. height: math.unit(7 + 4/12, "feet"),
  14307. weight: math.unit(690, "lb"),
  14308. name: "Back (Costume)",
  14309. image: {
  14310. source: "./media/characters/geno-maxwell/back-costume.svg",
  14311. extra: 981/854,
  14312. bottom: 57/1038
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Micro",
  14319. height: math.unit(3, "inches")
  14320. },
  14321. {
  14322. name: "Normal",
  14323. height: math.unit(7 + 4 / 12, "feet"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Macro",
  14328. height: math.unit(220, "feet")
  14329. },
  14330. {
  14331. name: "Megamacro",
  14332. height: math.unit(11, "miles")
  14333. },
  14334. ]
  14335. ))
  14336. characterMakers.push(() => makeCharacter(
  14337. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14338. {
  14339. front: {
  14340. height: math.unit(7 + 4/12, "feet"),
  14341. weight: math.unit(750, "lb"),
  14342. name: "Front",
  14343. image: {
  14344. source: "./media/characters/regena-maxwell/front.svg",
  14345. extra: 984/856,
  14346. bottom: 87/1071
  14347. }
  14348. },
  14349. back: {
  14350. height: math.unit(7 + 4/12, "feet"),
  14351. weight: math.unit(750, "lb"),
  14352. name: "Back",
  14353. image: {
  14354. source: "./media/characters/regena-maxwell/back.svg",
  14355. extra: 981/854,
  14356. bottom: 57/1038
  14357. }
  14358. },
  14359. frontCostume: {
  14360. height: math.unit(7 + 4/12, "feet"),
  14361. weight: math.unit(750, "lb"),
  14362. name: "Front (Costume)",
  14363. image: {
  14364. source: "./media/characters/regena-maxwell/front-costume.svg",
  14365. extra: 984/856,
  14366. bottom: 87/1071
  14367. }
  14368. },
  14369. backcostume: {
  14370. height: math.unit(7 + 4/12, "feet"),
  14371. weight: math.unit(750, "lb"),
  14372. name: "Back (Costume)",
  14373. image: {
  14374. source: "./media/characters/regena-maxwell/back-costume.svg",
  14375. extra: 981/854,
  14376. bottom: 57/1038
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(7 + 4 / 12, "feet"),
  14384. default: true
  14385. },
  14386. {
  14387. name: "Macro",
  14388. height: math.unit(220, "feet")
  14389. },
  14390. {
  14391. name: "Megamacro",
  14392. height: math.unit(11, "miles")
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14398. {
  14399. front: {
  14400. height: math.unit(6, "feet"),
  14401. weight: math.unit(150, "lb"),
  14402. name: "Front",
  14403. image: {
  14404. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14405. extra: 860 / 690,
  14406. bottom: 0.03
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(1.7, "meters"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14420. {
  14421. front: {
  14422. height: math.unit(6, "feet"),
  14423. weight: math.unit(150, "lb"),
  14424. name: "Front",
  14425. image: {
  14426. source: "./media/characters/quilly/front.svg",
  14427. extra: 890 / 776
  14428. }
  14429. },
  14430. },
  14431. [
  14432. {
  14433. name: "Gigamacro",
  14434. height: math.unit(404090, "miles"),
  14435. default: true
  14436. },
  14437. ]
  14438. ))
  14439. characterMakers.push(() => makeCharacter(
  14440. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14441. {
  14442. front: {
  14443. height: math.unit(7 + 8 / 12, "feet"),
  14444. weight: math.unit(350, "lb"),
  14445. name: "Front",
  14446. image: {
  14447. source: "./media/characters/tempest/front.svg",
  14448. extra: 1175 / 1086,
  14449. bottom: 0.02
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(7 + 8 / 12, "feet"),
  14457. default: true
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14463. {
  14464. side: {
  14465. height: math.unit(4 + 5 / 12, "feet"),
  14466. weight: math.unit(80, "lb"),
  14467. name: "Side",
  14468. image: {
  14469. source: "./media/characters/rodger/side.svg",
  14470. extra: 1235 / 1118
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Micro",
  14477. height: math.unit(1, "inch")
  14478. },
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(4 + 5 / 12, "feet"),
  14482. default: true
  14483. },
  14484. {
  14485. name: "Macro",
  14486. height: math.unit(120, "feet")
  14487. },
  14488. ]
  14489. ))
  14490. characterMakers.push(() => makeCharacter(
  14491. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14492. {
  14493. front: {
  14494. height: math.unit(6, "feet"),
  14495. weight: math.unit(150, "lb"),
  14496. name: "Front",
  14497. image: {
  14498. source: "./media/characters/danyel/front.svg",
  14499. extra: 1185 / 1123,
  14500. bottom: 0.05
  14501. }
  14502. },
  14503. },
  14504. [
  14505. {
  14506. name: "Shrunken",
  14507. height: math.unit(0.5, "mm")
  14508. },
  14509. {
  14510. name: "Micro",
  14511. height: math.unit(1, "mm"),
  14512. default: true
  14513. },
  14514. {
  14515. name: "Upsized",
  14516. height: math.unit(5 + 5 / 12, "feet")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(5 + 6 / 12, "feet"),
  14525. weight: math.unit(200, "lb"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/vivian-bijoux/front.svg",
  14529. extra: 1217/1209,
  14530. bottom: 76/1293
  14531. }
  14532. },
  14533. back: {
  14534. height: math.unit(5 + 6 / 12, "feet"),
  14535. weight: math.unit(200, "lb"),
  14536. name: "Back",
  14537. image: {
  14538. source: "./media/characters/vivian-bijoux/back.svg",
  14539. extra: 1214/1208,
  14540. bottom: 51/1265
  14541. }
  14542. },
  14543. dressed: {
  14544. height: math.unit(5 + 6 / 12, "feet"),
  14545. weight: math.unit(200, "lb"),
  14546. name: "Dressed",
  14547. image: {
  14548. source: "./media/characters/vivian-bijoux/dressed.svg",
  14549. extra: 1217/1209,
  14550. bottom: 76/1293
  14551. }
  14552. },
  14553. },
  14554. [
  14555. {
  14556. name: "Normal",
  14557. height: math.unit(5 + 6 / 12, "feet"),
  14558. default: true
  14559. },
  14560. {
  14561. name: "Bad Dream",
  14562. height: math.unit(500, "feet")
  14563. },
  14564. {
  14565. name: "Nightmare",
  14566. height: math.unit(500, "miles")
  14567. },
  14568. ]
  14569. ))
  14570. characterMakers.push(() => makeCharacter(
  14571. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14572. {
  14573. front: {
  14574. height: math.unit(6 + 1 / 12, "feet"),
  14575. weight: math.unit(260, "lb"),
  14576. name: "Front",
  14577. image: {
  14578. source: "./media/characters/zeta/front.svg",
  14579. extra: 1968 / 1889,
  14580. bottom: 0.06
  14581. }
  14582. },
  14583. back: {
  14584. height: math.unit(6 + 1 / 12, "feet"),
  14585. weight: math.unit(260, "lb"),
  14586. name: "Back",
  14587. image: {
  14588. source: "./media/characters/zeta/back.svg",
  14589. extra: 1944 / 1858,
  14590. bottom: 0.03
  14591. }
  14592. },
  14593. hand: {
  14594. height: math.unit(1.112, "feet"),
  14595. name: "Hand",
  14596. image: {
  14597. source: "./media/characters/zeta/hand.svg"
  14598. }
  14599. },
  14600. foot: {
  14601. height: math.unit(1.48, "feet"),
  14602. name: "Foot",
  14603. image: {
  14604. source: "./media/characters/zeta/foot.svg"
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Micro",
  14611. height: math.unit(6, "inches")
  14612. },
  14613. {
  14614. name: "Normal",
  14615. height: math.unit(6 + 1 / 12, "feet"),
  14616. default: true
  14617. },
  14618. {
  14619. name: "Macro",
  14620. height: math.unit(20, "feet")
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6, "feet"),
  14629. weight: math.unit(150, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/jamie-larsen/front.svg",
  14633. extra: 962 / 933,
  14634. bottom: 0.02
  14635. }
  14636. },
  14637. back: {
  14638. height: math.unit(6, "feet"),
  14639. weight: math.unit(150, "lb"),
  14640. name: "Back",
  14641. image: {
  14642. source: "./media/characters/jamie-larsen/back.svg",
  14643. extra: 997 / 946
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Macro",
  14650. height: math.unit(28 + 7 / 12, "feet"),
  14651. default: true
  14652. },
  14653. {
  14654. name: "Macro+",
  14655. height: math.unit(180, "feet")
  14656. },
  14657. {
  14658. name: "Megamacro",
  14659. height: math.unit(10, "miles")
  14660. },
  14661. {
  14662. name: "Gigamacro",
  14663. height: math.unit(200000, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(6, "feet"),
  14672. weight: math.unit(120, "lb"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/vance/front.svg",
  14676. extra: 1980 / 1890,
  14677. bottom: 0.09
  14678. }
  14679. },
  14680. back: {
  14681. height: math.unit(6, "feet"),
  14682. weight: math.unit(120, "lb"),
  14683. name: "Back",
  14684. image: {
  14685. source: "./media/characters/vance/back.svg",
  14686. extra: 2081 / 1994,
  14687. bottom: 0.014
  14688. }
  14689. },
  14690. hand: {
  14691. height: math.unit(0.88, "feet"),
  14692. name: "Hand",
  14693. image: {
  14694. source: "./media/characters/vance/hand.svg"
  14695. }
  14696. },
  14697. foot: {
  14698. height: math.unit(0.64, "feet"),
  14699. name: "Foot",
  14700. image: {
  14701. source: "./media/characters/vance/foot.svg"
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Small",
  14708. height: math.unit(90, "feet"),
  14709. default: true
  14710. },
  14711. {
  14712. name: "Macro",
  14713. height: math.unit(100, "meters")
  14714. },
  14715. {
  14716. name: "Megamacro",
  14717. height: math.unit(15, "miles")
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(180, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/xochitl/front.svg",
  14730. extra: 2297 / 2261,
  14731. bottom: 0.065
  14732. }
  14733. },
  14734. back: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(180, "lb"),
  14737. name: "Back",
  14738. image: {
  14739. source: "./media/characters/xochitl/back.svg",
  14740. extra: 2386 / 2354,
  14741. bottom: 0.01
  14742. }
  14743. },
  14744. foot: {
  14745. height: math.unit(6 / 5 * 1.15, "feet"),
  14746. weight: math.unit(150, "lb"),
  14747. name: "Foot",
  14748. image: {
  14749. source: "./media/characters/xochitl/foot.svg"
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Macro",
  14756. height: math.unit(80, "feet")
  14757. },
  14758. {
  14759. name: "Macro+",
  14760. height: math.unit(400, "feet"),
  14761. default: true
  14762. },
  14763. {
  14764. name: "Gigamacro",
  14765. height: math.unit(80000, "miles")
  14766. },
  14767. {
  14768. name: "Gigamacro+",
  14769. height: math.unit(400000, "miles")
  14770. },
  14771. {
  14772. name: "Teramacro",
  14773. height: math.unit(300, "AU")
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(6, "feet"),
  14782. weight: math.unit(150, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/vincent/front.svg",
  14786. extra: 1130 / 1080,
  14787. bottom: 0.055
  14788. }
  14789. },
  14790. beak: {
  14791. height: math.unit(6 * 0.1, "feet"),
  14792. name: "Beak",
  14793. image: {
  14794. source: "./media/characters/vincent/beak.svg"
  14795. }
  14796. },
  14797. hand: {
  14798. height: math.unit(6 * 0.85, "feet"),
  14799. weight: math.unit(150, "lb"),
  14800. name: "Hand",
  14801. image: {
  14802. source: "./media/characters/vincent/hand.svg"
  14803. }
  14804. },
  14805. foot: {
  14806. height: math.unit(6 * 0.19, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Foot",
  14809. image: {
  14810. source: "./media/characters/vincent/foot.svg"
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Base",
  14817. height: math.unit(6 + 5 / 12, "feet"),
  14818. default: true
  14819. },
  14820. {
  14821. name: "Macro",
  14822. height: math.unit(300, "feet")
  14823. },
  14824. {
  14825. name: "Megamacro",
  14826. height: math.unit(2, "miles")
  14827. },
  14828. {
  14829. name: "Gigamacro",
  14830. height: math.unit(1000, "miles")
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(2, "meters"),
  14839. weight: math.unit(500, "kg"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/coatl/front.svg",
  14843. extra: 3948 / 3500,
  14844. bottom: 0.082
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(4, "meters")
  14852. },
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(100, "meters"),
  14856. default: true
  14857. },
  14858. {
  14859. name: "Macro+",
  14860. height: math.unit(300, "meters")
  14861. },
  14862. {
  14863. name: "Megamacro",
  14864. height: math.unit(3, "gigameters")
  14865. },
  14866. {
  14867. name: "Megamacro+",
  14868. height: math.unit(300, "terameters")
  14869. },
  14870. {
  14871. name: "Megamacro++",
  14872. height: math.unit(3, "lightyears")
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6, "feet"),
  14881. weight: math.unit(50, "kg"),
  14882. name: "front",
  14883. image: {
  14884. source: "./media/characters/shiroryu/front.svg",
  14885. extra: 1990 / 1935
  14886. }
  14887. },
  14888. },
  14889. [
  14890. {
  14891. name: "Mortal Mingling",
  14892. height: math.unit(3, "meters")
  14893. },
  14894. {
  14895. name: "Kaiju-ish",
  14896. height: math.unit(250, "meters")
  14897. },
  14898. {
  14899. name: "Somewhat Godly",
  14900. height: math.unit(400, "km"),
  14901. default: true
  14902. },
  14903. {
  14904. name: "Planetary",
  14905. height: math.unit(300, "megameters")
  14906. },
  14907. {
  14908. name: "Galaxy-dwarfing",
  14909. height: math.unit(450, "kiloparsecs")
  14910. },
  14911. {
  14912. name: "Universe Eater",
  14913. height: math.unit(150, "gigaparsecs")
  14914. },
  14915. {
  14916. name: "Almost Immeasurable",
  14917. height: math.unit(1.3e266, "yottaparsecs")
  14918. },
  14919. ]
  14920. ))
  14921. characterMakers.push(() => makeCharacter(
  14922. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14923. {
  14924. front: {
  14925. height: math.unit(6, "feet"),
  14926. weight: math.unit(150, "lb"),
  14927. name: "Front",
  14928. image: {
  14929. source: "./media/characters/umeko/front.svg",
  14930. extra: 1,
  14931. bottom: 0.019
  14932. }
  14933. },
  14934. frontArmored: {
  14935. height: math.unit(6, "feet"),
  14936. weight: math.unit(150, "lb"),
  14937. name: "Front (Armored)",
  14938. image: {
  14939. source: "./media/characters/umeko/front-armored.svg",
  14940. extra: 1,
  14941. bottom: 0.021
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Macro",
  14948. height: math.unit(220, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Guardian Dragon",
  14953. height: math.unit(50, "miles")
  14954. },
  14955. {
  14956. name: "Cosmic",
  14957. height: math.unit(800000, "miles")
  14958. },
  14959. ]
  14960. ))
  14961. characterMakers.push(() => makeCharacter(
  14962. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14963. {
  14964. front: {
  14965. height: math.unit(6, "feet"),
  14966. weight: math.unit(150, "lb"),
  14967. name: "Front",
  14968. image: {
  14969. source: "./media/characters/cassidy/front.svg",
  14970. extra: 810/808,
  14971. bottom: 41/851
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Canon Height",
  14978. height: math.unit(120, "feet"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Macro+",
  14983. height: math.unit(400, "feet")
  14984. },
  14985. {
  14986. name: "Macro++",
  14987. height: math.unit(4000, "feet")
  14988. },
  14989. {
  14990. name: "Megamacro",
  14991. height: math.unit(3, "miles")
  14992. },
  14993. ]
  14994. ))
  14995. characterMakers.push(() => makeCharacter(
  14996. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14997. {
  14998. front: {
  14999. height: math.unit(6, "feet"),
  15000. weight: math.unit(150, "lb"),
  15001. name: "Front",
  15002. image: {
  15003. source: "./media/characters/isaac/front.svg",
  15004. extra: 896 / 815,
  15005. bottom: 0.11
  15006. }
  15007. },
  15008. },
  15009. [
  15010. {
  15011. name: "Human Size",
  15012. height: math.unit(8, "feet"),
  15013. default: true
  15014. },
  15015. {
  15016. name: "Macro",
  15017. height: math.unit(400, "feet")
  15018. },
  15019. {
  15020. name: "Megamacro",
  15021. height: math.unit(50, "miles")
  15022. },
  15023. {
  15024. name: "Canon Height",
  15025. height: math.unit(200, "AU")
  15026. },
  15027. ]
  15028. ))
  15029. characterMakers.push(() => makeCharacter(
  15030. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15031. {
  15032. front: {
  15033. height: math.unit(6, "feet"),
  15034. weight: math.unit(72, "kg"),
  15035. name: "Front",
  15036. image: {
  15037. source: "./media/characters/sleekit/front.svg",
  15038. extra: 4693 / 4487,
  15039. bottom: 0.012
  15040. }
  15041. },
  15042. },
  15043. [
  15044. {
  15045. name: "Minimum Height",
  15046. height: math.unit(10, "meters")
  15047. },
  15048. {
  15049. name: "Smaller",
  15050. height: math.unit(25, "meters")
  15051. },
  15052. {
  15053. name: "Larger",
  15054. height: math.unit(38, "meters"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Maximum height",
  15059. height: math.unit(100, "meters")
  15060. },
  15061. ]
  15062. ))
  15063. characterMakers.push(() => makeCharacter(
  15064. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15065. {
  15066. front: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(150, "lb"),
  15069. name: "Front",
  15070. image: {
  15071. source: "./media/characters/nillia/front.svg",
  15072. extra: 2195 / 2037,
  15073. bottom: 0.005
  15074. }
  15075. },
  15076. back: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Back",
  15080. image: {
  15081. source: "./media/characters/nillia/back.svg",
  15082. extra: 2195 / 2037,
  15083. bottom: 0.005
  15084. }
  15085. },
  15086. },
  15087. [
  15088. {
  15089. name: "Canon Height",
  15090. height: math.unit(489, "feet"),
  15091. default: true
  15092. }
  15093. ]
  15094. ))
  15095. characterMakers.push(() => makeCharacter(
  15096. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15097. {
  15098. front: {
  15099. height: math.unit(6, "feet"),
  15100. weight: math.unit(150, "lb"),
  15101. name: "Front",
  15102. image: {
  15103. source: "./media/characters/mesmyriza/front.svg",
  15104. extra: 2067 / 1784,
  15105. bottom: 0.035
  15106. }
  15107. },
  15108. foot: {
  15109. height: math.unit(6 / (250 / 35), "feet"),
  15110. name: "Foot",
  15111. image: {
  15112. source: "./media/characters/mesmyriza/foot.svg"
  15113. }
  15114. },
  15115. },
  15116. [
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(457, "meters"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Megamacro",
  15124. height: math.unit(8, "megameters")
  15125. },
  15126. ]
  15127. ))
  15128. characterMakers.push(() => makeCharacter(
  15129. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15130. {
  15131. front: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(250, "lb"),
  15134. name: "Front",
  15135. image: {
  15136. source: "./media/characters/saudade/front.svg",
  15137. extra: 1172 / 1139,
  15138. bottom: 0.035
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Micro",
  15145. height: math.unit(3, "inches")
  15146. },
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(6, "feet"),
  15150. default: true
  15151. },
  15152. {
  15153. name: "Macro",
  15154. height: math.unit(50, "feet")
  15155. },
  15156. {
  15157. name: "Megamacro",
  15158. height: math.unit(2800, "feet")
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15164. {
  15165. front: {
  15166. height: math.unit(5 + 4 / 12, "feet"),
  15167. weight: math.unit(100, "lb"),
  15168. name: "Front",
  15169. image: {
  15170. source: "./media/characters/keireer/front.svg",
  15171. extra: 716 / 666,
  15172. bottom: 0.05
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(5 + 4 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(5.5, "feet"),
  15189. weight: math.unit(90, "kg"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/mirja/front.svg",
  15193. extra: 1452/1262,
  15194. bottom: 67/1519
  15195. }
  15196. },
  15197. frontDressed: {
  15198. height: math.unit(5.5, "feet"),
  15199. weight: math.unit(90, "lb"),
  15200. name: "Front (Dressed)",
  15201. image: {
  15202. source: "./media/characters/mirja/dressed.svg",
  15203. extra: 1452/1262,
  15204. bottom: 67/1519
  15205. }
  15206. },
  15207. back: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(90, "lb"),
  15210. name: "Back",
  15211. image: {
  15212. source: "./media/characters/mirja/back.svg",
  15213. extra: 1892/1795,
  15214. bottom: 48/1940
  15215. }
  15216. },
  15217. maw: {
  15218. height: math.unit(1.312, "feet"),
  15219. name: "Maw",
  15220. image: {
  15221. source: "./media/characters/mirja/maw.svg"
  15222. }
  15223. },
  15224. paw: {
  15225. height: math.unit(1.15, "feet"),
  15226. name: "Paw",
  15227. image: {
  15228. source: "./media/characters/mirja/paw.svg"
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "\"Incognito\"",
  15235. height: math.unit(3, "meters")
  15236. },
  15237. {
  15238. name: "Strolling Size",
  15239. height: math.unit(15, "km")
  15240. },
  15241. {
  15242. name: "Larger Strolling Size",
  15243. height: math.unit(400, "km")
  15244. },
  15245. {
  15246. name: "Preferred Size",
  15247. height: math.unit(5000, "km"),
  15248. default: true
  15249. },
  15250. {
  15251. name: "True Size",
  15252. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15253. },
  15254. ]
  15255. ))
  15256. characterMakers.push(() => makeCharacter(
  15257. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15258. {
  15259. front: {
  15260. height: math.unit(15, "feet"),
  15261. weight: math.unit(880, "kg"),
  15262. name: "Front",
  15263. image: {
  15264. source: "./media/characters/nightraver/front.svg",
  15265. extra: 2444 / 2160,
  15266. bottom: 0.027
  15267. }
  15268. },
  15269. back: {
  15270. height: math.unit(15, "feet"),
  15271. weight: math.unit(880, "kg"),
  15272. name: "Back",
  15273. image: {
  15274. source: "./media/characters/nightraver/back.svg",
  15275. extra: 2309 / 2180,
  15276. bottom: 0.005
  15277. }
  15278. },
  15279. sole: {
  15280. height: math.unit(2.878, "feet"),
  15281. name: "Sole",
  15282. image: {
  15283. source: "./media/characters/nightraver/sole.svg"
  15284. }
  15285. },
  15286. foot: {
  15287. height: math.unit(2.285, "feet"),
  15288. name: "Foot",
  15289. image: {
  15290. source: "./media/characters/nightraver/foot.svg"
  15291. }
  15292. },
  15293. maw: {
  15294. height: math.unit(2.67, "feet"),
  15295. name: "Maw",
  15296. image: {
  15297. source: "./media/characters/nightraver/maw.svg"
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Micro",
  15304. height: math.unit(1, "cm")
  15305. },
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(15, "feet"),
  15309. default: true
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(300, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(300, "miles")
  15318. },
  15319. {
  15320. name: "Gigamacro",
  15321. height: math.unit(10000, "miles")
  15322. },
  15323. ]
  15324. ))
  15325. characterMakers.push(() => makeCharacter(
  15326. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15327. {
  15328. side: {
  15329. height: math.unit(2, "inches"),
  15330. weight: math.unit(5, "grams"),
  15331. name: "Side",
  15332. image: {
  15333. source: "./media/characters/arc/side.svg"
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Micro",
  15340. height: math.unit(2, "inches"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(1.1938, "meters"),
  15350. weight: math.unit(54, "kg"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/nebula-shahar/front.svg",
  15354. extra: 1642 / 1436,
  15355. bottom: 0.06
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Megamicro",
  15362. height: math.unit(0.3, "mm")
  15363. },
  15364. {
  15365. name: "Micro",
  15366. height: math.unit(3, "cm")
  15367. },
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(138, "cm"),
  15371. default: true
  15372. },
  15373. {
  15374. name: "Macro",
  15375. height: math.unit(30, "m")
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(5.24, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/shayla/front.svg",
  15388. extra: 1512 / 1414,
  15389. bottom: 0.01
  15390. }
  15391. },
  15392. back: {
  15393. height: math.unit(5.24, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Back",
  15396. image: {
  15397. source: "./media/characters/shayla/back.svg",
  15398. extra: 1512 / 1414
  15399. }
  15400. },
  15401. hand: {
  15402. height: math.unit(0.7781496062992126, "feet"),
  15403. name: "Hand",
  15404. image: {
  15405. source: "./media/characters/shayla/hand.svg"
  15406. }
  15407. },
  15408. foot: {
  15409. height: math.unit(1.4206036745406823, "feet"),
  15410. name: "Foot",
  15411. image: {
  15412. source: "./media/characters/shayla/foot.svg"
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Micro",
  15419. height: math.unit(0.32, "feet")
  15420. },
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(5.24, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Macro",
  15428. height: math.unit(492.12, "feet")
  15429. },
  15430. {
  15431. name: "Megamacro",
  15432. height: math.unit(186.41, "miles")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(2.2, "m"),
  15441. weight: math.unit(120, "kg"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/pia-jr/front.svg",
  15445. extra: 1000 / 970,
  15446. bottom: 0.035
  15447. }
  15448. },
  15449. hand: {
  15450. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15451. name: "Hand",
  15452. image: {
  15453. source: "./media/characters/pia-jr/hand.svg"
  15454. }
  15455. },
  15456. paw: {
  15457. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15458. name: "Paw",
  15459. image: {
  15460. source: "./media/characters/pia-jr/paw.svg"
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Micro",
  15467. height: math.unit(1.2, "cm")
  15468. },
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(2.2, "m"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Macro",
  15476. height: math.unit(180, "m")
  15477. },
  15478. {
  15479. name: "Megamacro",
  15480. height: math.unit(420, "km")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(2, "m"),
  15489. weight: math.unit(115, "kg"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/pia-sr/front.svg",
  15493. extra: 760 / 730,
  15494. bottom: 0.015
  15495. }
  15496. },
  15497. back: {
  15498. height: math.unit(2, "m"),
  15499. weight: math.unit(115, "kg"),
  15500. name: "Back",
  15501. image: {
  15502. source: "./media/characters/pia-sr/back.svg",
  15503. extra: 760 / 730,
  15504. bottom: 0.01
  15505. }
  15506. },
  15507. hand: {
  15508. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15509. name: "Hand",
  15510. image: {
  15511. source: "./media/characters/pia-sr/hand.svg"
  15512. }
  15513. },
  15514. foot: {
  15515. height: math.unit(1.83, "feet"),
  15516. name: "Foot",
  15517. image: {
  15518. source: "./media/characters/pia-sr/foot.svg"
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(88, "mm")
  15526. },
  15527. {
  15528. name: "Normal",
  15529. height: math.unit(2, "m"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro",
  15534. height: math.unit(200, "m")
  15535. },
  15536. {
  15537. name: "Megamacro",
  15538. height: math.unit(420, "km")
  15539. },
  15540. ]
  15541. ))
  15542. characterMakers.push(() => makeCharacter(
  15543. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15544. {
  15545. front: {
  15546. height: math.unit(8 + 2 / 12, "feet"),
  15547. weight: math.unit(300, "lb"),
  15548. name: "Front",
  15549. image: {
  15550. source: "./media/characters/kibibyte/front.svg",
  15551. extra: 2221 / 2098,
  15552. bottom: 0.04
  15553. }
  15554. },
  15555. },
  15556. [
  15557. {
  15558. name: "Normal",
  15559. height: math.unit(8 + 2 / 12, "feet"),
  15560. default: true
  15561. },
  15562. {
  15563. name: "Socialable Macro",
  15564. height: math.unit(50, "feet")
  15565. },
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(300, "feet")
  15569. },
  15570. {
  15571. name: "Megamacro",
  15572. height: math.unit(500, "miles")
  15573. },
  15574. ]
  15575. ))
  15576. characterMakers.push(() => makeCharacter(
  15577. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15578. {
  15579. front: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Front",
  15583. image: {
  15584. source: "./media/characters/felix/front.svg",
  15585. extra: 762 / 722,
  15586. bottom: 0.02
  15587. }
  15588. },
  15589. frontClothed: {
  15590. height: math.unit(6, "feet"),
  15591. weight: math.unit(150, "lb"),
  15592. name: "Front (Clothed)",
  15593. image: {
  15594. source: "./media/characters/felix/front-clothed.svg",
  15595. extra: 762 / 722,
  15596. bottom: 0.02
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Normal",
  15603. height: math.unit(6 + 8 / 12, "feet"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Macro",
  15608. height: math.unit(2600, "feet")
  15609. },
  15610. {
  15611. name: "Megamacro",
  15612. height: math.unit(450, "miles")
  15613. },
  15614. ]
  15615. ))
  15616. characterMakers.push(() => makeCharacter(
  15617. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15618. {
  15619. front: {
  15620. height: math.unit(6 + 1 / 12, "feet"),
  15621. weight: math.unit(250, "lb"),
  15622. name: "Front",
  15623. image: {
  15624. source: "./media/characters/tobo/front.svg",
  15625. extra: 608 / 586,
  15626. bottom: 0.023
  15627. }
  15628. },
  15629. back: {
  15630. height: math.unit(6 + 1 / 12, "feet"),
  15631. weight: math.unit(250, "lb"),
  15632. name: "Back",
  15633. image: {
  15634. source: "./media/characters/tobo/back.svg",
  15635. extra: 608 / 586
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Nano",
  15642. height: math.unit(2, "nm")
  15643. },
  15644. {
  15645. name: "Megamicro",
  15646. height: math.unit(0.1, "mm")
  15647. },
  15648. {
  15649. name: "Micro",
  15650. height: math.unit(1, "inch"),
  15651. default: true
  15652. },
  15653. {
  15654. name: "Human-sized",
  15655. height: math.unit(6 + 1 / 12, "feet")
  15656. },
  15657. {
  15658. name: "Macro",
  15659. height: math.unit(250, "feet")
  15660. },
  15661. {
  15662. name: "Megamacro",
  15663. height: math.unit(75, "miles")
  15664. },
  15665. {
  15666. name: "Texas-sized",
  15667. height: math.unit(750, "miles")
  15668. },
  15669. {
  15670. name: "Teramacro",
  15671. height: math.unit(50000, "miles")
  15672. },
  15673. ]
  15674. ))
  15675. characterMakers.push(() => makeCharacter(
  15676. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15677. {
  15678. front: {
  15679. height: math.unit(6, "feet"),
  15680. weight: math.unit(269, "lb"),
  15681. name: "Front",
  15682. image: {
  15683. source: "./media/characters/danny-kapowsky/front.svg",
  15684. extra: 766 / 736,
  15685. bottom: 0.044
  15686. }
  15687. },
  15688. back: {
  15689. height: math.unit(6, "feet"),
  15690. weight: math.unit(269, "lb"),
  15691. name: "Back",
  15692. image: {
  15693. source: "./media/characters/danny-kapowsky/back.svg",
  15694. extra: 797 / 760,
  15695. bottom: 0.025
  15696. }
  15697. },
  15698. },
  15699. [
  15700. {
  15701. name: "Macro",
  15702. height: math.unit(150, "feet"),
  15703. default: true
  15704. },
  15705. {
  15706. name: "Macro+",
  15707. height: math.unit(200, "feet")
  15708. },
  15709. {
  15710. name: "Macro++",
  15711. height: math.unit(300, "feet")
  15712. },
  15713. {
  15714. name: "Macro+++",
  15715. height: math.unit(400, "feet")
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15721. {
  15722. side: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(170, "lb"),
  15725. name: "Side",
  15726. image: {
  15727. source: "./media/characters/finn/side.svg",
  15728. extra: 1953 / 1807,
  15729. bottom: 0.057
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Megamacro",
  15736. height: math.unit(14445, "feet"),
  15737. default: true
  15738. },
  15739. ]
  15740. ))
  15741. characterMakers.push(() => makeCharacter(
  15742. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15743. {
  15744. front: {
  15745. height: math.unit(5 + 6 / 12, "feet"),
  15746. weight: math.unit(125, "lb"),
  15747. name: "Front",
  15748. image: {
  15749. source: "./media/characters/roy/front.svg",
  15750. extra: 1,
  15751. bottom: 0.11
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(3, "inches"),
  15759. default: true
  15760. },
  15761. {
  15762. name: "Normal",
  15763. height: math.unit(5 + 6 / 12, "feet")
  15764. },
  15765. {
  15766. name: "Lesser Macro",
  15767. height: math.unit(60, "feet")
  15768. },
  15769. {
  15770. name: "Greater Macro",
  15771. height: math.unit(120, "feet")
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(6, "feet"),
  15780. weight: math.unit(100, "lb"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/aevsivs/front.svg",
  15784. extra: 1,
  15785. bottom: 0.03
  15786. }
  15787. },
  15788. back: {
  15789. height: math.unit(6, "feet"),
  15790. weight: math.unit(100, "lb"),
  15791. name: "Back",
  15792. image: {
  15793. source: "./media/characters/aevsivs/back.svg"
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Micro",
  15800. height: math.unit(2, "inches"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Normal",
  15805. height: math.unit(5, "feet")
  15806. },
  15807. ]
  15808. ))
  15809. characterMakers.push(() => makeCharacter(
  15810. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15811. {
  15812. front: {
  15813. height: math.unit(5 + 7 / 12, "feet"),
  15814. weight: math.unit(159, "lb"),
  15815. name: "Front",
  15816. image: {
  15817. source: "./media/characters/hildegard/front.svg",
  15818. extra: 289 / 269,
  15819. bottom: 7.63 / 297.8
  15820. }
  15821. },
  15822. back: {
  15823. height: math.unit(5 + 7 / 12, "feet"),
  15824. weight: math.unit(159, "lb"),
  15825. name: "Back",
  15826. image: {
  15827. source: "./media/characters/hildegard/back.svg",
  15828. extra: 280 / 260,
  15829. bottom: 2.3 / 282
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(5 + 7 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15843. {
  15844. bernard: {
  15845. height: math.unit(2 + 7 / 12, "feet"),
  15846. weight: math.unit(66, "lb"),
  15847. name: "Bernard",
  15848. rename: true,
  15849. image: {
  15850. source: "./media/characters/bernard-wilder/bernard.svg",
  15851. extra: 192 / 128,
  15852. bottom: 0.05
  15853. }
  15854. },
  15855. wilder: {
  15856. height: math.unit(5 + 8 / 12, "feet"),
  15857. weight: math.unit(143, "lb"),
  15858. name: "Wilder",
  15859. rename: true,
  15860. image: {
  15861. source: "./media/characters/bernard-wilder/wilder.svg",
  15862. extra: 361 / 312,
  15863. bottom: 0.02
  15864. }
  15865. },
  15866. },
  15867. [
  15868. {
  15869. name: "Normal",
  15870. height: math.unit(2 + 7 / 12, "feet"),
  15871. default: true
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15877. {
  15878. anthro: {
  15879. height: math.unit(6 + 1 / 12, "feet"),
  15880. weight: math.unit(155, "lb"),
  15881. name: "Anthro",
  15882. image: {
  15883. source: "./media/characters/hearth/anthro.svg",
  15884. extra: 1178/1136,
  15885. bottom: 28/1206
  15886. }
  15887. },
  15888. feral: {
  15889. height: math.unit(3.78, "feet"),
  15890. weight: math.unit(35, "kg"),
  15891. name: "Feral",
  15892. image: {
  15893. source: "./media/characters/hearth/feral.svg",
  15894. extra: 153 / 135,
  15895. bottom: 0.03
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(6 + 1 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(182, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/ingrid/front.svg",
  15916. extra: 294 / 268,
  15917. bottom: 0.027
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(6, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15931. {
  15932. eevee: {
  15933. height: math.unit(2 + 10 / 12, "feet"),
  15934. weight: math.unit(86, "lb"),
  15935. name: "Malgam",
  15936. image: {
  15937. source: "./media/characters/malgam/eevee.svg",
  15938. extra: 952/784,
  15939. bottom: 38/990
  15940. }
  15941. },
  15942. sylveon: {
  15943. height: math.unit(4, "feet"),
  15944. weight: math.unit(101, "lb"),
  15945. name: "Future Malgam",
  15946. rename: true,
  15947. image: {
  15948. source: "./media/characters/malgam/sylveon.svg",
  15949. extra: 371 / 325,
  15950. bottom: 0.015
  15951. }
  15952. },
  15953. gigantamax: {
  15954. height: math.unit(50, "feet"),
  15955. name: "Gigantamax Malgam",
  15956. rename: true,
  15957. image: {
  15958. source: "./media/characters/malgam/gigantamax.svg"
  15959. }
  15960. },
  15961. },
  15962. [
  15963. {
  15964. name: "Normal",
  15965. height: math.unit(2 + 10 / 12, "feet"),
  15966. default: true
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(5 + 11 / 12, "feet"),
  15975. weight: math.unit(188, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/fleur/front.svg",
  15979. extra: 309 / 283,
  15980. bottom: 0.007
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(5 + 11 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5 + 4 / 12, "feet"),
  15997. weight: math.unit(122, "lb"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/jude/front.svg",
  16001. extra: 288 / 273,
  16002. bottom: 0.03
  16003. }
  16004. },
  16005. },
  16006. [
  16007. {
  16008. name: "Normal",
  16009. height: math.unit(5 + 4 / 12, "feet"),
  16010. default: true
  16011. },
  16012. ]
  16013. ))
  16014. characterMakers.push(() => makeCharacter(
  16015. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16016. {
  16017. front: {
  16018. height: math.unit(5 + 11 / 12, "feet"),
  16019. weight: math.unit(190, "lb"),
  16020. name: "Front",
  16021. image: {
  16022. source: "./media/characters/seara/front.svg",
  16023. extra: 1,
  16024. bottom: 0.05
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Normal",
  16031. height: math.unit(5 + 11 / 12, "feet"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(16 + 5 / 12, "feet"),
  16041. weight: math.unit(524, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/caspian-lugia/front.svg",
  16045. extra: 1,
  16046. bottom: 0.04
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Normal",
  16053. height: math.unit(16 + 5 / 12, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(5 + 7 / 12, "feet"),
  16063. weight: math.unit(170, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/mika/front.svg",
  16067. extra: 1,
  16068. bottom: 0.016
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(5 + 7 / 12, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(6 + 2 / 12, "feet"),
  16085. weight: math.unit(268, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/sol/front.svg",
  16089. extra: 247 / 231,
  16090. bottom: 0.05
  16091. }
  16092. },
  16093. },
  16094. [
  16095. {
  16096. name: "Normal",
  16097. height: math.unit(6 + 2 / 12, "feet"),
  16098. default: true
  16099. },
  16100. ]
  16101. ))
  16102. characterMakers.push(() => makeCharacter(
  16103. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16104. {
  16105. buizel: {
  16106. height: math.unit(2 + 5 / 12, "feet"),
  16107. weight: math.unit(87, "lb"),
  16108. name: "Front",
  16109. image: {
  16110. source: "./media/characters/umiko/buizel.svg",
  16111. extra: 172 / 157,
  16112. bottom: 0.01
  16113. },
  16114. form: "buizel",
  16115. default: true
  16116. },
  16117. floatzel: {
  16118. height: math.unit(5 + 9 / 12, "feet"),
  16119. weight: math.unit(250, "lb"),
  16120. name: "Front",
  16121. image: {
  16122. source: "./media/characters/umiko/floatzel.svg",
  16123. extra: 1076/1006,
  16124. bottom: 15/1091
  16125. },
  16126. form: "floatzel",
  16127. default: true
  16128. },
  16129. },
  16130. [
  16131. {
  16132. name: "Normal",
  16133. height: math.unit(2 + 5 / 12, "feet"),
  16134. form: "buizel",
  16135. default: true
  16136. },
  16137. {
  16138. name: "Normal",
  16139. height: math.unit(5 + 9 / 12, "feet"),
  16140. form: "floatzel",
  16141. default: true
  16142. },
  16143. ],
  16144. {
  16145. "buizel": {
  16146. name: "Buizel"
  16147. },
  16148. "floatzel": {
  16149. name: "Floatzel",
  16150. default: true
  16151. }
  16152. }
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(6 + 2 / 12, "feet"),
  16159. weight: math.unit(146, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/iliac/front.svg",
  16163. extra: 389 / 365,
  16164. bottom: 0.035
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(6 + 2 / 12, "feet"),
  16172. default: true
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(170, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/topaz/front.svg",
  16185. extra: 317 / 303,
  16186. bottom: 0.055
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Normal",
  16193. height: math.unit(6, "feet"),
  16194. default: true
  16195. },
  16196. ]
  16197. ))
  16198. characterMakers.push(() => makeCharacter(
  16199. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16200. {
  16201. front: {
  16202. height: math.unit(5 + 11 / 12, "feet"),
  16203. weight: math.unit(144, "lb"),
  16204. name: "Front",
  16205. image: {
  16206. source: "./media/characters/gabriel/front.svg",
  16207. extra: 285 / 262,
  16208. bottom: 0.004
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(5 + 11 / 12, "feet"),
  16216. default: true
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16222. {
  16223. side: {
  16224. height: math.unit(6 + 5 / 12, "feet"),
  16225. weight: math.unit(300, "lb"),
  16226. name: "Side",
  16227. image: {
  16228. source: "./media/characters/tempest-suicune/side.svg",
  16229. extra: 195 / 154,
  16230. bottom: 0.04
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Normal",
  16237. height: math.unit(6 + 5 / 12, "feet"),
  16238. default: true
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(7 + 2 / 12, "feet"),
  16247. weight: math.unit(322, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/vulcan/front.svg",
  16251. extra: 154 / 147,
  16252. bottom: 0.04
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Normal",
  16259. height: math.unit(7 + 2 / 12, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(5 + 10 / 12, "feet"),
  16269. weight: math.unit(264, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/gault/front.svg",
  16273. extra: 161 / 140,
  16274. bottom: 0.028
  16275. }
  16276. },
  16277. },
  16278. [
  16279. {
  16280. name: "Normal",
  16281. height: math.unit(5 + 10 / 12, "feet"),
  16282. default: true
  16283. },
  16284. ]
  16285. ))
  16286. characterMakers.push(() => makeCharacter(
  16287. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16288. {
  16289. front: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Front",
  16293. image: {
  16294. source: "./media/characters/shard/front.svg",
  16295. extra: 273 / 238,
  16296. bottom: 0.02
  16297. }
  16298. },
  16299. },
  16300. [
  16301. {
  16302. name: "Normal",
  16303. height: math.unit(3 + 6 / 12, "feet"),
  16304. default: true
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(5 + 11 / 12, "feet"),
  16313. weight: math.unit(146, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/ashe/front.svg",
  16317. extra: 400 / 373,
  16318. bottom: 0.01
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(5 + 11 / 12, "feet"),
  16326. default: true
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(5 + 5 / 12, "feet"),
  16335. weight: math.unit(135, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/beatrix/front.svg",
  16339. extra: 392 / 379,
  16340. bottom: 0.01
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(6, "feet"),
  16348. default: true
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16354. {
  16355. front: {
  16356. height: math.unit(6 + 2/12, "feet"),
  16357. weight: math.unit(135, "lb"),
  16358. name: "Front",
  16359. image: {
  16360. source: "./media/characters/ignatius/front.svg",
  16361. extra: 1380/1259,
  16362. bottom: 27/1407
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(6 + 2/12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16376. {
  16377. front: {
  16378. height: math.unit(6 + 2 / 12, "feet"),
  16379. weight: math.unit(138, "lb"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/mei-li/front.svg",
  16383. extra: 237 / 229,
  16384. bottom: 0.03
  16385. }
  16386. },
  16387. },
  16388. [
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(6 + 2 / 12, "feet"),
  16392. default: true
  16393. },
  16394. ]
  16395. ))
  16396. characterMakers.push(() => makeCharacter(
  16397. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16398. {
  16399. front: {
  16400. height: math.unit(2 + 4 / 12, "feet"),
  16401. weight: math.unit(62, "lb"),
  16402. name: "Front",
  16403. image: {
  16404. source: "./media/characters/puru/front.svg",
  16405. extra: 206 / 149,
  16406. bottom: 0.06
  16407. }
  16408. },
  16409. },
  16410. [
  16411. {
  16412. name: "Normal",
  16413. height: math.unit(2 + 4 / 12, "feet"),
  16414. default: true
  16415. },
  16416. ]
  16417. ))
  16418. characterMakers.push(() => makeCharacter(
  16419. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16420. {
  16421. anthro: {
  16422. height: math.unit(5 + 8/12, "feet"),
  16423. weight: math.unit(200, "lb"),
  16424. energyNeed: math.unit(2000, "kcal"),
  16425. name: "Anthro",
  16426. image: {
  16427. source: "./media/characters/kee/anthro.svg",
  16428. extra: 3251/3184,
  16429. bottom: 250/3501
  16430. }
  16431. },
  16432. taur: {
  16433. height: math.unit(11, "feet"),
  16434. weight: math.unit(500, "lb"),
  16435. energyNeed: math.unit(5000, "kcal"),
  16436. name: "Taur",
  16437. image: {
  16438. source: "./media/characters/kee/taur.svg",
  16439. extra: 1362/1320,
  16440. bottom: 83/1445
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(5 + 8/12, "feet"),
  16448. default: true
  16449. },
  16450. {
  16451. name: "Macro",
  16452. height: math.unit(35, "feet")
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16458. {
  16459. anthro: {
  16460. height: math.unit(7, "feet"),
  16461. weight: math.unit(190, "lb"),
  16462. name: "Anthro",
  16463. image: {
  16464. source: "./media/characters/cobalt-dracha/anthro.svg",
  16465. extra: 231 / 225,
  16466. bottom: 0.04
  16467. }
  16468. },
  16469. feral: {
  16470. height: math.unit(9 + 7 / 12, "feet"),
  16471. weight: math.unit(294, "lb"),
  16472. name: "Feral",
  16473. image: {
  16474. source: "./media/characters/cobalt-dracha/feral.svg",
  16475. extra: 692 / 633,
  16476. bottom: 0.05
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(7, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16490. {
  16491. fallen: {
  16492. height: math.unit(11 + 8 / 12, "feet"),
  16493. weight: math.unit(485, "lb"),
  16494. name: "Java (Fallen)",
  16495. rename: true,
  16496. image: {
  16497. source: "./media/characters/java/fallen.svg",
  16498. extra: 226 / 208,
  16499. bottom: 0.005
  16500. }
  16501. },
  16502. godkin: {
  16503. height: math.unit(10 + 6 / 12, "feet"),
  16504. weight: math.unit(328, "lb"),
  16505. name: "Java (Godkin)",
  16506. rename: true,
  16507. image: {
  16508. source: "./media/characters/java/godkin.svg",
  16509. extra: 1104/1068,
  16510. bottom: 36/1140
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(11 + 8 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16524. {
  16525. front: {
  16526. height: math.unit(5 + 9 / 12, "feet"),
  16527. weight: math.unit(170, "lb"),
  16528. name: "Front",
  16529. image: {
  16530. source: "./media/characters/purna/front.svg",
  16531. extra: 239 / 229,
  16532. bottom: 0.01
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(5 + 9 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16546. {
  16547. front: {
  16548. height: math.unit(5 + 9 / 12, "feet"),
  16549. weight: math.unit(142, "lb"),
  16550. name: "Front",
  16551. image: {
  16552. source: "./media/characters/kuva/front.svg",
  16553. extra: 281 / 271,
  16554. bottom: 0.006
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(5 + 9 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16568. {
  16569. anthro: {
  16570. height: math.unit(9 + 2 / 12, "feet"),
  16571. weight: math.unit(270, "lb"),
  16572. name: "Anthro",
  16573. image: {
  16574. source: "./media/characters/embra/anthro.svg",
  16575. extra: 200 / 187,
  16576. bottom: 0.02
  16577. }
  16578. },
  16579. feral: {
  16580. height: math.unit(18 + 8 / 12, "feet"),
  16581. weight: math.unit(576, "lb"),
  16582. name: "Feral",
  16583. image: {
  16584. source: "./media/characters/embra/feral.svg",
  16585. extra: 152 / 137,
  16586. bottom: 0.037
  16587. }
  16588. },
  16589. },
  16590. [
  16591. {
  16592. name: "Normal",
  16593. height: math.unit(9 + 2 / 12, "feet"),
  16594. default: true
  16595. },
  16596. ]
  16597. ))
  16598. characterMakers.push(() => makeCharacter(
  16599. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16600. {
  16601. anthro: {
  16602. height: math.unit(10 + 9 / 12, "feet"),
  16603. weight: math.unit(224, "lb"),
  16604. name: "Anthro",
  16605. image: {
  16606. source: "./media/characters/grottos/anthro.svg",
  16607. extra: 350 / 332,
  16608. bottom: 0.045
  16609. }
  16610. },
  16611. feral: {
  16612. height: math.unit(20 + 7 / 12, "feet"),
  16613. weight: math.unit(629, "lb"),
  16614. name: "Feral",
  16615. image: {
  16616. source: "./media/characters/grottos/feral.svg",
  16617. extra: 207 / 190,
  16618. bottom: 0.05
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(10 + 9 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16632. {
  16633. anthro: {
  16634. height: math.unit(9 + 6 / 12, "feet"),
  16635. weight: math.unit(298, "lb"),
  16636. name: "Anthro",
  16637. image: {
  16638. source: "./media/characters/frifna/anthro.svg",
  16639. extra: 282 / 269,
  16640. bottom: 0.015
  16641. }
  16642. },
  16643. feral: {
  16644. height: math.unit(16 + 2 / 12, "feet"),
  16645. weight: math.unit(624, "lb"),
  16646. name: "Feral",
  16647. image: {
  16648. source: "./media/characters/frifna/feral.svg"
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(9 + 6 / 12, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16662. {
  16663. front: {
  16664. height: math.unit(6 + 2 / 12, "feet"),
  16665. weight: math.unit(168, "lb"),
  16666. name: "Front",
  16667. image: {
  16668. source: "./media/characters/elise/front.svg",
  16669. extra: 276 / 271
  16670. }
  16671. },
  16672. },
  16673. [
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(6 + 2 / 12, "feet"),
  16677. default: true
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(5 + 10 / 12, "feet"),
  16686. weight: math.unit(210, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/glade/front.svg",
  16690. extra: 258 / 247,
  16691. bottom: 0.008
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(5 + 10 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(5 + 10 / 12, "feet"),
  16708. weight: math.unit(129, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/rina/front.svg",
  16712. extra: 266 / 255,
  16713. bottom: 0.005
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(5 + 10 / 12, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16727. {
  16728. front: {
  16729. height: math.unit(6 + 1 / 12, "feet"),
  16730. weight: math.unit(192, "lb"),
  16731. name: "Front",
  16732. image: {
  16733. source: "./media/characters/veronica/front.svg",
  16734. extra: 319 / 309,
  16735. bottom: 0.005
  16736. }
  16737. },
  16738. },
  16739. [
  16740. {
  16741. name: "Normal",
  16742. height: math.unit(6 + 1 / 12, "feet"),
  16743. default: true
  16744. },
  16745. ]
  16746. ))
  16747. characterMakers.push(() => makeCharacter(
  16748. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16749. {
  16750. front: {
  16751. height: math.unit(9 + 3 / 12, "feet"),
  16752. weight: math.unit(1100, "lb"),
  16753. name: "Front",
  16754. image: {
  16755. source: "./media/characters/braxton/front.svg",
  16756. extra: 1057 / 984,
  16757. bottom: 0.05
  16758. }
  16759. },
  16760. },
  16761. [
  16762. {
  16763. name: "Normal",
  16764. height: math.unit(9 + 3 / 12, "feet")
  16765. },
  16766. {
  16767. name: "Giant",
  16768. height: math.unit(300, "feet"),
  16769. default: true
  16770. },
  16771. {
  16772. name: "Macro",
  16773. height: math.unit(700, "feet")
  16774. },
  16775. {
  16776. name: "Megamacro",
  16777. height: math.unit(6000, "feet")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6 + 7 / 12, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/blue-feyonics/front.svg",
  16790. extra: 1403 / 1306,
  16791. bottom: 0.047
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(6 + 7 / 12, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(1.8, "meters"),
  16808. weight: math.unit(60, "kg"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/maxwell/front.svg",
  16812. extra: 2060 / 1873
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Micro",
  16819. height: math.unit(1, "mm")
  16820. },
  16821. {
  16822. name: "Normal",
  16823. height: math.unit(1.8, "meter"),
  16824. default: true
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(30, "meters")
  16829. },
  16830. {
  16831. name: "Megamacro",
  16832. height: math.unit(10, "km")
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(6, "feet"),
  16841. weight: math.unit(150, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/jack/front.svg",
  16845. extra: 1754 / 1640,
  16846. bottom: 0.01
  16847. }
  16848. },
  16849. },
  16850. [
  16851. {
  16852. name: "Normal",
  16853. height: math.unit(80000, "feet"),
  16854. default: true
  16855. },
  16856. {
  16857. name: "Max size",
  16858. height: math.unit(10, "lightyears")
  16859. },
  16860. ]
  16861. ))
  16862. characterMakers.push(() => makeCharacter(
  16863. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16864. {
  16865. urban: {
  16866. height: math.unit(5, "feet"),
  16867. weight: math.unit(240, "lb"),
  16868. name: "Urban",
  16869. image: {
  16870. source: "./media/characters/cafat/urban.svg",
  16871. extra: 1223/1126,
  16872. bottom: 205/1428
  16873. }
  16874. },
  16875. summer: {
  16876. height: math.unit(5, "feet"),
  16877. weight: math.unit(240, "lb"),
  16878. name: "Summer",
  16879. image: {
  16880. source: "./media/characters/cafat/summer.svg",
  16881. extra: 1223/1126,
  16882. bottom: 205/1428
  16883. }
  16884. },
  16885. winter: {
  16886. height: math.unit(5, "feet"),
  16887. weight: math.unit(240, "lb"),
  16888. name: "Winter",
  16889. image: {
  16890. source: "./media/characters/cafat/winter.svg",
  16891. extra: 1223/1126,
  16892. bottom: 205/1428
  16893. }
  16894. },
  16895. lingerie: {
  16896. height: math.unit(5, "feet"),
  16897. weight: math.unit(240, "lb"),
  16898. name: "Lingerie",
  16899. image: {
  16900. source: "./media/characters/cafat/lingerie.svg",
  16901. extra: 1223/1126,
  16902. bottom: 205/1428
  16903. }
  16904. },
  16905. upright: {
  16906. height: math.unit(6.3, "feet"),
  16907. weight: math.unit(240, "lb"),
  16908. name: "Upright",
  16909. image: {
  16910. source: "./media/characters/cafat/upright.svg",
  16911. bottom: 0.01
  16912. }
  16913. },
  16914. uprightFull: {
  16915. height: math.unit(6.3, "feet"),
  16916. weight: math.unit(240, "lb"),
  16917. name: "Upright (Full)",
  16918. image: {
  16919. source: "./media/characters/cafat/upright-full.svg",
  16920. bottom: 0.01
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Small",
  16927. height: math.unit(5, "feet"),
  16928. default: true
  16929. },
  16930. {
  16931. name: "Large",
  16932. height: math.unit(13, "feet")
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(150, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/verin-raharra/front.svg",
  16945. extra: 5019 / 4835,
  16946. bottom: 0.023
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(7 + 5 / 12, "feet"),
  16954. default: true
  16955. },
  16956. {
  16957. name: "Upsized",
  16958. height: math.unit(20, "feet")
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(7, "feet"),
  16967. weight: math.unit(230, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/nakata/front.svg",
  16971. extra: 1.005,
  16972. bottom: 0.01
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(7, "feet"),
  16980. default: true
  16981. },
  16982. {
  16983. name: "Big",
  16984. height: math.unit(14, "feet")
  16985. },
  16986. {
  16987. name: "Macro",
  16988. height: math.unit(400, "feet")
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(4.91, "feet"),
  16997. weight: math.unit(100, "lb"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/lily/front.svg",
  17001. extra: 1585 / 1415,
  17002. bottom: 0.02
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(4.91, "feet"),
  17010. default: true
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17016. {
  17017. laying: {
  17018. height: math.unit(4 + 4 / 12, "feet"),
  17019. weight: math.unit(600, "lb"),
  17020. name: "Laying",
  17021. image: {
  17022. source: "./media/characters/sheila/laying.svg",
  17023. extra: 1333 / 1265,
  17024. bottom: 0.16
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(4 + 4 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(6, "feet"),
  17041. weight: math.unit(190, "lb"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/sax/front.svg",
  17045. extra: 1187 / 973,
  17046. bottom: 0.042
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Micro",
  17053. height: math.unit(4, "inches"),
  17054. default: true
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17060. {
  17061. front: {
  17062. height: math.unit(6, "feet"),
  17063. weight: math.unit(150, "lb"),
  17064. name: "Front",
  17065. image: {
  17066. source: "./media/characters/pandora/front.svg",
  17067. extra: 2720 / 2556,
  17068. bottom: 0.015
  17069. }
  17070. },
  17071. back: {
  17072. height: math.unit(6, "feet"),
  17073. weight: math.unit(150, "lb"),
  17074. name: "Back",
  17075. image: {
  17076. source: "./media/characters/pandora/back.svg",
  17077. extra: 2720 / 2556,
  17078. bottom: 0.01
  17079. }
  17080. },
  17081. beans: {
  17082. height: math.unit(6 / 8, "feet"),
  17083. name: "Beans",
  17084. image: {
  17085. source: "./media/characters/pandora/beans.svg"
  17086. }
  17087. },
  17088. collar: {
  17089. height: math.unit(0.31, "feet"),
  17090. name: "Collar",
  17091. image: {
  17092. source: "./media/characters/pandora/collar.svg"
  17093. }
  17094. },
  17095. skirt: {
  17096. height: math.unit(6, "feet"),
  17097. weight: math.unit(150, "lb"),
  17098. name: "Skirt",
  17099. image: {
  17100. source: "./media/characters/pandora/skirt.svg",
  17101. extra: 1622 / 1525,
  17102. bottom: 0.015
  17103. }
  17104. },
  17105. hoodie: {
  17106. height: math.unit(6, "feet"),
  17107. weight: math.unit(150, "lb"),
  17108. name: "Hoodie",
  17109. image: {
  17110. source: "./media/characters/pandora/hoodie.svg",
  17111. extra: 1622 / 1525,
  17112. bottom: 0.015
  17113. }
  17114. },
  17115. casual: {
  17116. height: math.unit(6, "feet"),
  17117. weight: math.unit(150, "lb"),
  17118. name: "Casual",
  17119. image: {
  17120. source: "./media/characters/pandora/casual.svg",
  17121. extra: 1622 / 1525,
  17122. bottom: 0.015
  17123. }
  17124. },
  17125. },
  17126. [
  17127. {
  17128. name: "Normal",
  17129. height: math.unit(6, "feet")
  17130. },
  17131. {
  17132. name: "Big Steppy",
  17133. height: math.unit(1, "km"),
  17134. default: true
  17135. },
  17136. {
  17137. name: "Galactic Steppy",
  17138. height: math.unit(2, "gigameters")
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17144. {
  17145. side: {
  17146. height: math.unit(10, "feet"),
  17147. weight: math.unit(800, "kg"),
  17148. name: "Side",
  17149. image: {
  17150. source: "./media/characters/venio-darcony/side.svg",
  17151. extra: 1373 / 1003,
  17152. bottom: 0.037
  17153. }
  17154. },
  17155. front: {
  17156. height: math.unit(19, "feet"),
  17157. weight: math.unit(800, "kg"),
  17158. name: "Front",
  17159. image: {
  17160. source: "./media/characters/venio-darcony/front.svg"
  17161. }
  17162. },
  17163. back: {
  17164. height: math.unit(19, "feet"),
  17165. weight: math.unit(800, "kg"),
  17166. name: "Back",
  17167. image: {
  17168. source: "./media/characters/venio-darcony/back.svg"
  17169. }
  17170. },
  17171. sideNsfw: {
  17172. height: math.unit(10, "feet"),
  17173. weight: math.unit(800, "kg"),
  17174. name: "Side (NSFW)",
  17175. image: {
  17176. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17177. extra: 1373 / 1003,
  17178. bottom: 0.037
  17179. }
  17180. },
  17181. frontNsfw: {
  17182. height: math.unit(19, "feet"),
  17183. weight: math.unit(800, "kg"),
  17184. name: "Front (NSFW)",
  17185. image: {
  17186. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17187. }
  17188. },
  17189. backNsfw: {
  17190. height: math.unit(19, "feet"),
  17191. weight: math.unit(800, "kg"),
  17192. name: "Back (NSFW)",
  17193. image: {
  17194. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17195. }
  17196. },
  17197. sideArmored: {
  17198. height: math.unit(10, "feet"),
  17199. weight: math.unit(800, "kg"),
  17200. name: "Side (Armored)",
  17201. image: {
  17202. source: "./media/characters/venio-darcony/side-armored.svg",
  17203. extra: 1373 / 1003,
  17204. bottom: 0.037
  17205. }
  17206. },
  17207. frontArmored: {
  17208. height: math.unit(19, "feet"),
  17209. weight: math.unit(900, "kg"),
  17210. name: "Front (Armored)",
  17211. image: {
  17212. source: "./media/characters/venio-darcony/front-armored.svg"
  17213. }
  17214. },
  17215. backArmored: {
  17216. height: math.unit(19, "feet"),
  17217. weight: math.unit(900, "kg"),
  17218. name: "Back (Armored)",
  17219. image: {
  17220. source: "./media/characters/venio-darcony/back-armored.svg"
  17221. }
  17222. },
  17223. sword: {
  17224. height: math.unit(10, "feet"),
  17225. weight: math.unit(50, "lb"),
  17226. name: "Sword",
  17227. image: {
  17228. source: "./media/characters/venio-darcony/sword.svg"
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Normal",
  17235. height: math.unit(10, "feet")
  17236. },
  17237. {
  17238. name: "Macro",
  17239. height: math.unit(130, "feet"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Macro+",
  17244. height: math.unit(240, "feet")
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17250. {
  17251. front: {
  17252. height: math.unit(6, "feet"),
  17253. weight: math.unit(150, "lb"),
  17254. name: "Front",
  17255. image: {
  17256. source: "./media/characters/veski/front.svg",
  17257. extra: 1299 / 1225,
  17258. bottom: 0.04
  17259. }
  17260. },
  17261. back: {
  17262. height: math.unit(6, "feet"),
  17263. weight: math.unit(150, "lb"),
  17264. name: "Back",
  17265. image: {
  17266. source: "./media/characters/veski/back.svg",
  17267. extra: 1299 / 1225,
  17268. bottom: 0.008
  17269. }
  17270. },
  17271. maw: {
  17272. height: math.unit(1.5 * 1.21, "feet"),
  17273. name: "Maw",
  17274. image: {
  17275. source: "./media/characters/veski/maw.svg"
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Macro",
  17282. height: math.unit(2, "km"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(5 + 7 / 12, "feet"),
  17292. name: "Front",
  17293. image: {
  17294. source: "./media/characters/isabelle/front.svg",
  17295. extra: 2130 / 1976,
  17296. bottom: 0.05
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Supermicro",
  17303. height: math.unit(10, "micrometers")
  17304. },
  17305. {
  17306. name: "Micro",
  17307. height: math.unit(1, "inch")
  17308. },
  17309. {
  17310. name: "Tiny",
  17311. height: math.unit(5, "inches")
  17312. },
  17313. {
  17314. name: "Standard",
  17315. height: math.unit(5 + 7 / 12, "inches")
  17316. },
  17317. {
  17318. name: "Macro",
  17319. height: math.unit(80, "meters"),
  17320. default: true
  17321. },
  17322. {
  17323. name: "Megamacro",
  17324. height: math.unit(250, "meters")
  17325. },
  17326. {
  17327. name: "Gigamacro",
  17328. height: math.unit(5, "km")
  17329. },
  17330. {
  17331. name: "Cosmic",
  17332. height: math.unit(2.5e6, "miles")
  17333. },
  17334. ]
  17335. ))
  17336. characterMakers.push(() => makeCharacter(
  17337. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17338. {
  17339. front: {
  17340. height: math.unit(6, "feet"),
  17341. weight: math.unit(150, "lb"),
  17342. name: "Front",
  17343. image: {
  17344. source: "./media/characters/hanzo/front.svg",
  17345. extra: 374 / 344,
  17346. bottom: 0.02
  17347. }
  17348. },
  17349. },
  17350. [
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(8, "feet"),
  17354. default: true
  17355. },
  17356. ]
  17357. ))
  17358. characterMakers.push(() => makeCharacter(
  17359. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17360. {
  17361. front: {
  17362. height: math.unit(7, "feet"),
  17363. weight: math.unit(130, "lb"),
  17364. name: "Front",
  17365. image: {
  17366. source: "./media/characters/anna/front.svg",
  17367. extra: 169 / 145,
  17368. bottom: 0.06
  17369. }
  17370. },
  17371. full: {
  17372. height: math.unit(4.96, "feet"),
  17373. weight: math.unit(220, "lb"),
  17374. name: "Full",
  17375. image: {
  17376. source: "./media/characters/anna/full.svg",
  17377. extra: 138 / 114,
  17378. bottom: 0.15
  17379. }
  17380. },
  17381. tongue: {
  17382. height: math.unit(2.53, "feet"),
  17383. name: "Tongue",
  17384. image: {
  17385. source: "./media/characters/anna/tongue.svg"
  17386. }
  17387. },
  17388. },
  17389. [
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(7, "feet"),
  17393. default: true
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(7, "feet"),
  17402. weight: math.unit(150, "lb"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/ian-corvid/front.svg",
  17406. extra: 150 / 142,
  17407. bottom: 0.02
  17408. }
  17409. },
  17410. back: {
  17411. height: math.unit(7, "feet"),
  17412. weight: math.unit(150, "lb"),
  17413. name: "Back",
  17414. image: {
  17415. source: "./media/characters/ian-corvid/back.svg",
  17416. extra: 150 / 143,
  17417. bottom: 0.01
  17418. }
  17419. },
  17420. stomping: {
  17421. height: math.unit(7, "feet"),
  17422. weight: math.unit(150, "lb"),
  17423. name: "Stomping",
  17424. image: {
  17425. source: "./media/characters/ian-corvid/stomping.svg",
  17426. extra: 76 / 72
  17427. }
  17428. },
  17429. sitting: {
  17430. height: math.unit(7 / 1.8, "feet"),
  17431. weight: math.unit(150, "lb"),
  17432. name: "Sitting",
  17433. image: {
  17434. source: "./media/characters/ian-corvid/sitting.svg",
  17435. extra: 1400 / 1269,
  17436. bottom: 0.15
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Tiny Microw",
  17443. height: math.unit(1, "inch")
  17444. },
  17445. {
  17446. name: "Microw",
  17447. height: math.unit(6, "inches")
  17448. },
  17449. {
  17450. name: "Crow",
  17451. height: math.unit(7 + 1 / 12, "feet"),
  17452. default: true
  17453. },
  17454. {
  17455. name: "Macrow",
  17456. height: math.unit(176, "feet")
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(5 + 7 / 12, "feet"),
  17465. weight: math.unit(147, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/natalie-kellon/front.svg",
  17469. extra: 1214 / 1141,
  17470. bottom: 0.02
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Micro",
  17477. height: math.unit(1 / 16, "inch")
  17478. },
  17479. {
  17480. name: "Tiny",
  17481. height: math.unit(4, "inches")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(5 + 7 / 12, "feet"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Amazon",
  17490. height: math.unit(12, "feet")
  17491. },
  17492. {
  17493. name: "Giantess",
  17494. height: math.unit(160, "meters")
  17495. },
  17496. {
  17497. name: "Titaness",
  17498. height: math.unit(800, "meters")
  17499. },
  17500. ]
  17501. ))
  17502. characterMakers.push(() => makeCharacter(
  17503. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17504. {
  17505. front: {
  17506. height: math.unit(6, "feet"),
  17507. weight: math.unit(150, "lb"),
  17508. name: "Front",
  17509. image: {
  17510. source: "./media/characters/alluria/front.svg",
  17511. extra: 806 / 738,
  17512. bottom: 0.01
  17513. }
  17514. },
  17515. side: {
  17516. height: math.unit(6, "feet"),
  17517. weight: math.unit(150, "lb"),
  17518. name: "Side",
  17519. image: {
  17520. source: "./media/characters/alluria/side.svg",
  17521. extra: 800 / 750,
  17522. }
  17523. },
  17524. back: {
  17525. height: math.unit(6, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Back",
  17528. image: {
  17529. source: "./media/characters/alluria/back.svg",
  17530. extra: 806 / 738,
  17531. }
  17532. },
  17533. frontMaid: {
  17534. height: math.unit(6, "feet"),
  17535. weight: math.unit(150, "lb"),
  17536. name: "Front (Maid)",
  17537. image: {
  17538. source: "./media/characters/alluria/front-maid.svg",
  17539. extra: 806 / 738,
  17540. bottom: 0.01
  17541. }
  17542. },
  17543. sideMaid: {
  17544. height: math.unit(6, "feet"),
  17545. weight: math.unit(150, "lb"),
  17546. name: "Side (Maid)",
  17547. image: {
  17548. source: "./media/characters/alluria/side-maid.svg",
  17549. extra: 800 / 750,
  17550. bottom: 0.005
  17551. }
  17552. },
  17553. backMaid: {
  17554. height: math.unit(6, "feet"),
  17555. weight: math.unit(150, "lb"),
  17556. name: "Back (Maid)",
  17557. image: {
  17558. source: "./media/characters/alluria/back-maid.svg",
  17559. extra: 806 / 738,
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Micro",
  17566. height: math.unit(6, "inches"),
  17567. default: true
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17573. {
  17574. front: {
  17575. height: math.unit(6, "feet"),
  17576. weight: math.unit(150, "lb"),
  17577. name: "Front",
  17578. image: {
  17579. source: "./media/characters/kyle/front.svg",
  17580. extra: 1069 / 962,
  17581. bottom: 77.228 / 1727.45
  17582. }
  17583. },
  17584. },
  17585. [
  17586. {
  17587. name: "Macro",
  17588. height: math.unit(150, "feet"),
  17589. default: true
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17595. {
  17596. front: {
  17597. height: math.unit(6, "feet"),
  17598. weight: math.unit(300, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/duncan/front.svg",
  17602. extra: 1650 / 1482,
  17603. bottom: 0.05
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Macro",
  17610. height: math.unit(100, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17617. {
  17618. front: {
  17619. height: math.unit(5 + 4 / 12, "feet"),
  17620. weight: math.unit(220, "lb"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/memory/front.svg",
  17624. extra: 3641 / 3545,
  17625. bottom: 0.03
  17626. }
  17627. },
  17628. back: {
  17629. height: math.unit(5 + 4 / 12, "feet"),
  17630. weight: math.unit(220, "lb"),
  17631. name: "Back",
  17632. image: {
  17633. source: "./media/characters/memory/back.svg",
  17634. extra: 3641 / 3545,
  17635. bottom: 0.025
  17636. }
  17637. },
  17638. frontSkirt: {
  17639. height: math.unit(5 + 4 / 12, "feet"),
  17640. weight: math.unit(220, "lb"),
  17641. name: "Front (Skirt)",
  17642. image: {
  17643. source: "./media/characters/memory/front-skirt.svg",
  17644. extra: 3641 / 3545,
  17645. bottom: 0.03
  17646. }
  17647. },
  17648. frontDress: {
  17649. height: math.unit(5 + 4 / 12, "feet"),
  17650. weight: math.unit(220, "lb"),
  17651. name: "Front (Dress)",
  17652. image: {
  17653. source: "./media/characters/memory/front-dress.svg",
  17654. extra: 3641 / 3545,
  17655. bottom: 0.03
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Micro",
  17662. height: math.unit(6, "inches"),
  17663. default: true
  17664. },
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(5 + 4 / 12, "feet")
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17673. {
  17674. front: {
  17675. height: math.unit(4 + 11 / 12, "feet"),
  17676. weight: math.unit(100, "lb"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/luno/front.svg",
  17680. extra: 1535 / 1487,
  17681. bottom: 0.03
  17682. }
  17683. },
  17684. },
  17685. [
  17686. {
  17687. name: "Micro",
  17688. height: math.unit(3, "inches")
  17689. },
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(4 + 11 / 12, "feet"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Macro",
  17697. height: math.unit(300, "feet")
  17698. },
  17699. {
  17700. name: "Megamacro",
  17701. height: math.unit(700, "miles")
  17702. },
  17703. ]
  17704. ))
  17705. characterMakers.push(() => makeCharacter(
  17706. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17707. {
  17708. front: {
  17709. height: math.unit(6 + 2 / 12, "feet"),
  17710. weight: math.unit(170, "lb"),
  17711. name: "Front",
  17712. image: {
  17713. source: "./media/characters/jamesy/front.svg",
  17714. extra: 440 / 382,
  17715. bottom: 0.005
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Micro",
  17722. height: math.unit(3, "inches")
  17723. },
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(6 + 2 / 12, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Macro",
  17731. height: math.unit(300, "feet")
  17732. },
  17733. {
  17734. name: "Megamacro",
  17735. height: math.unit(700, "miles")
  17736. },
  17737. ]
  17738. ))
  17739. characterMakers.push(() => makeCharacter(
  17740. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17741. {
  17742. front: {
  17743. height: math.unit(6, "feet"),
  17744. weight: math.unit(160, "lb"),
  17745. name: "Front",
  17746. image: {
  17747. source: "./media/characters/mark/front.svg",
  17748. extra: 3300 / 3100,
  17749. bottom: 136.42 / 3440.47
  17750. }
  17751. },
  17752. },
  17753. [
  17754. {
  17755. name: "Macro",
  17756. height: math.unit(120, "meters")
  17757. },
  17758. {
  17759. name: "Bigger Macro",
  17760. height: math.unit(350, "meters")
  17761. },
  17762. {
  17763. name: "Megamacro",
  17764. height: math.unit(8, "km"),
  17765. default: true
  17766. },
  17767. {
  17768. name: "Continental",
  17769. height: math.unit(4550, "km")
  17770. },
  17771. {
  17772. name: "Planetary",
  17773. height: math.unit(65000, "km")
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(400, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/mac/front.svg",
  17786. extra: 1048 / 987.7,
  17787. bottom: 60 / 1107.6,
  17788. }
  17789. },
  17790. },
  17791. [
  17792. {
  17793. name: "Macro",
  17794. height: math.unit(500, "feet"),
  17795. default: true
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(5 + 2 / 12, "feet"),
  17804. weight: math.unit(190, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/bari/front.svg",
  17808. extra: 3156 / 2880,
  17809. bottom: 0.03
  17810. }
  17811. },
  17812. back: {
  17813. height: math.unit(5 + 2 / 12, "feet"),
  17814. weight: math.unit(190, "lb"),
  17815. name: "Back",
  17816. image: {
  17817. source: "./media/characters/bari/back.svg",
  17818. extra: 3260 / 2834,
  17819. bottom: 0.025
  17820. }
  17821. },
  17822. frontPlush: {
  17823. height: math.unit(5 + 2 / 12, "feet"),
  17824. weight: math.unit(190, "lb"),
  17825. name: "Front (Plush)",
  17826. image: {
  17827. source: "./media/characters/bari/front-plush.svg",
  17828. extra: 1112 / 1061,
  17829. bottom: 0.002
  17830. }
  17831. },
  17832. },
  17833. [
  17834. {
  17835. name: "Micro",
  17836. height: math.unit(3, "inches")
  17837. },
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(5 + 2 / 12, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "Macro",
  17845. height: math.unit(20, "feet")
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(6 + 1 / 12, "feet"),
  17854. weight: math.unit(275, "lb"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/hunter-misha-raven/front.svg"
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Mortal",
  17864. height: math.unit(6 + 1 / 12, "feet")
  17865. },
  17866. {
  17867. name: "Divine",
  17868. height: math.unit(1.12134e34, "parsecs"),
  17869. default: true
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17875. {
  17876. front: {
  17877. height: math.unit(6 + 3 / 12, "feet"),
  17878. weight: math.unit(220, "lb"),
  17879. name: "Front",
  17880. image: {
  17881. source: "./media/characters/max-calore/front.svg",
  17882. extra: 1700 / 1648,
  17883. bottom: 0.01
  17884. }
  17885. },
  17886. back: {
  17887. height: math.unit(6 + 3 / 12, "feet"),
  17888. weight: math.unit(220, "lb"),
  17889. name: "Back",
  17890. image: {
  17891. source: "./media/characters/max-calore/back.svg",
  17892. extra: 1700 / 1648,
  17893. bottom: 0.01
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(6 + 3 / 12, "feet"),
  17901. default: true
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17907. {
  17908. side: {
  17909. height: math.unit(2 + 8 / 12, "feet"),
  17910. weight: math.unit(99, "lb"),
  17911. name: "Side",
  17912. image: {
  17913. source: "./media/characters/aspen/side.svg",
  17914. extra: 152 / 138,
  17915. bottom: 0.032
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Normal",
  17922. height: math.unit(2 + 8 / 12, "feet"),
  17923. default: true
  17924. },
  17925. ]
  17926. ))
  17927. characterMakers.push(() => makeCharacter(
  17928. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17929. {
  17930. side: {
  17931. height: math.unit(3 + 2 / 12, "feet"),
  17932. weight: math.unit(224, "lb"),
  17933. name: "Side",
  17934. image: {
  17935. source: "./media/characters/sheila-feral-wolf/side.svg",
  17936. extra: 179 / 166,
  17937. bottom: 0.03
  17938. }
  17939. },
  17940. },
  17941. [
  17942. {
  17943. name: "Normal",
  17944. height: math.unit(3 + 2 / 12, "feet"),
  17945. default: true
  17946. },
  17947. ]
  17948. ))
  17949. characterMakers.push(() => makeCharacter(
  17950. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17951. {
  17952. side: {
  17953. height: math.unit(1 + 9 / 12, "feet"),
  17954. weight: math.unit(38, "lb"),
  17955. name: "Side",
  17956. image: {
  17957. source: "./media/characters/michelle/side.svg",
  17958. extra: 147 / 136.7,
  17959. bottom: 0.03
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(1 + 9 / 12, "feet"),
  17967. default: true
  17968. },
  17969. ]
  17970. ))
  17971. characterMakers.push(() => makeCharacter(
  17972. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17973. {
  17974. front: {
  17975. height: math.unit(1.54, "feet"),
  17976. weight: math.unit(50, "lb"),
  17977. name: "Front",
  17978. image: {
  17979. source: "./media/characters/nino/front.svg"
  17980. }
  17981. },
  17982. },
  17983. [
  17984. {
  17985. name: "Normal",
  17986. height: math.unit(1.54, "feet"),
  17987. default: true
  17988. },
  17989. ]
  17990. ))
  17991. characterMakers.push(() => makeCharacter(
  17992. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17993. {
  17994. front: {
  17995. height: math.unit(1.49, "feet"),
  17996. weight: math.unit(45, "lb"),
  17997. name: "Front",
  17998. image: {
  17999. source: "./media/characters/viola/front.svg"
  18000. }
  18001. },
  18002. },
  18003. [
  18004. {
  18005. name: "Normal",
  18006. height: math.unit(1.49, "feet"),
  18007. default: true
  18008. },
  18009. ]
  18010. ))
  18011. characterMakers.push(() => makeCharacter(
  18012. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18013. {
  18014. front: {
  18015. height: math.unit(6 + 5 / 12, "feet"),
  18016. weight: math.unit(580, "lb"),
  18017. name: "Front",
  18018. image: {
  18019. source: "./media/characters/atlas/front.svg",
  18020. extra: 298.5 / 290,
  18021. bottom: 0.015
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(6 + 5 / 12, "feet"),
  18029. default: true
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18035. {
  18036. side: {
  18037. height: math.unit(15.6, "inches"),
  18038. weight: math.unit(10, "lb"),
  18039. name: "Side",
  18040. image: {
  18041. source: "./media/characters/davy/side.svg",
  18042. extra: 200 / 170,
  18043. bottom: 0.01
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(15.6, "inches"),
  18051. default: true
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18057. {
  18058. side: {
  18059. height: math.unit(4 + 8 / 12, "feet"),
  18060. weight: math.unit(166, "lb"),
  18061. name: "Side",
  18062. image: {
  18063. source: "./media/characters/fiona/side.svg",
  18064. extra: 232 / 220,
  18065. bottom: 0.03
  18066. }
  18067. },
  18068. },
  18069. [
  18070. {
  18071. name: "Normal",
  18072. height: math.unit(4 + 8 / 12, "feet"),
  18073. default: true
  18074. },
  18075. ]
  18076. ))
  18077. characterMakers.push(() => makeCharacter(
  18078. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18079. {
  18080. front: {
  18081. height: math.unit(26, "inches"),
  18082. weight: math.unit(35, "lb"),
  18083. name: "Front",
  18084. image: {
  18085. source: "./media/characters/lyla/front.svg",
  18086. bottom: 0.1
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(3, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18100. {
  18101. side: {
  18102. height: math.unit(1.8, "feet"),
  18103. weight: math.unit(44, "lb"),
  18104. name: "Side",
  18105. image: {
  18106. source: "./media/characters/perseus/side.svg",
  18107. bottom: 0.21
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(1.8, "feet"),
  18115. default: true
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18121. {
  18122. side: {
  18123. height: math.unit(4 + 2 / 12, "feet"),
  18124. weight: math.unit(20, "lb"),
  18125. name: "Side",
  18126. image: {
  18127. source: "./media/characters/remus/side.svg"
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Normal",
  18134. height: math.unit(4 + 2 / 12, "feet"),
  18135. default: true
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(4 + 11 / 12, "feet"),
  18144. weight: math.unit(114, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/raf/front.svg",
  18148. extra: 1504/1339,
  18149. bottom: 26/1530
  18150. }
  18151. },
  18152. side: {
  18153. height: math.unit(4 + 11 / 12, "feet"),
  18154. weight: math.unit(114, "lb"),
  18155. name: "Side",
  18156. image: {
  18157. source: "./media/characters/raf/side.svg",
  18158. extra: 1466/1316,
  18159. bottom: 29/1495
  18160. }
  18161. },
  18162. paw: {
  18163. height: math.unit(1.45, "feet"),
  18164. name: "Paw",
  18165. image: {
  18166. source: "./media/characters/raf/paw.svg"
  18167. },
  18168. extraAttributes: {
  18169. "toeSize": {
  18170. name: "Toe Size",
  18171. power: 2,
  18172. type: "area",
  18173. base: math.unit(0.004, "m^2")
  18174. },
  18175. "padSize": {
  18176. name: "Pad Size",
  18177. power: 2,
  18178. type: "area",
  18179. base: math.unit(0.04, "m^2")
  18180. },
  18181. "footSize": {
  18182. name: "Foot Size",
  18183. power: 2,
  18184. type: "area",
  18185. base: math.unit(0.08, "m^2")
  18186. },
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Micro",
  18193. height: math.unit(2, "inches")
  18194. },
  18195. {
  18196. name: "Normal",
  18197. height: math.unit(4 + 11 / 12, "feet"),
  18198. default: true
  18199. },
  18200. {
  18201. name: "Macro",
  18202. height: math.unit(70, "feet")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(1.5, "meters"),
  18211. weight: math.unit(68, "kg"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/liam-einarr/front.svg",
  18215. extra: 2822 / 2666
  18216. }
  18217. },
  18218. back: {
  18219. height: math.unit(1.5, "meters"),
  18220. weight: math.unit(68, "kg"),
  18221. name: "Back",
  18222. image: {
  18223. source: "./media/characters/liam-einarr/back.svg",
  18224. extra: 2822 / 2666,
  18225. bottom: 0.015
  18226. }
  18227. },
  18228. },
  18229. [
  18230. {
  18231. name: "Normal",
  18232. height: math.unit(1.5, "meters"),
  18233. default: true
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(150, "meters")
  18238. },
  18239. {
  18240. name: "Megamacro",
  18241. height: math.unit(35, "km")
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18247. {
  18248. front: {
  18249. height: math.unit(6, "feet"),
  18250. weight: math.unit(75, "kg"),
  18251. name: "Front",
  18252. image: {
  18253. source: "./media/characters/linda/front.svg",
  18254. extra: 930 / 874,
  18255. bottom: 0.004
  18256. }
  18257. },
  18258. },
  18259. [
  18260. {
  18261. name: "Normal",
  18262. height: math.unit(6, "feet"),
  18263. default: true
  18264. },
  18265. ]
  18266. ))
  18267. characterMakers.push(() => makeCharacter(
  18268. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18269. {
  18270. front: {
  18271. height: math.unit(6 + 8 / 12, "feet"),
  18272. weight: math.unit(220, "lb"),
  18273. name: "Front",
  18274. image: {
  18275. source: "./media/characters/caylex/front.svg",
  18276. extra: 821 / 772,
  18277. bottom: 0.07
  18278. }
  18279. },
  18280. back: {
  18281. height: math.unit(6 + 8 / 12, "feet"),
  18282. weight: math.unit(220, "lb"),
  18283. name: "Back",
  18284. image: {
  18285. source: "./media/characters/caylex/back.svg",
  18286. extra: 821 / 772,
  18287. bottom: 0.022
  18288. }
  18289. },
  18290. hand: {
  18291. height: math.unit(1.25, "feet"),
  18292. name: "Hand",
  18293. image: {
  18294. source: "./media/characters/caylex/hand.svg"
  18295. }
  18296. },
  18297. foot: {
  18298. height: math.unit(1.6, "feet"),
  18299. name: "Foot",
  18300. image: {
  18301. source: "./media/characters/caylex/foot.svg"
  18302. }
  18303. },
  18304. armored: {
  18305. height: math.unit(6 + 8 / 12, "feet"),
  18306. weight: math.unit(250, "lb"),
  18307. name: "Armored",
  18308. image: {
  18309. source: "./media/characters/caylex/armored.svg",
  18310. extra: 1420 / 1310,
  18311. bottom: 0.045
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(6 + 8 / 12, "feet"),
  18319. default: true
  18320. },
  18321. {
  18322. name: "Normal+",
  18323. height: math.unit(12, "feet")
  18324. },
  18325. ]
  18326. ))
  18327. characterMakers.push(() => makeCharacter(
  18328. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18329. {
  18330. front: {
  18331. height: math.unit(7 + 6 / 12, "feet"),
  18332. weight: math.unit(288, "lb"),
  18333. name: "Front",
  18334. image: {
  18335. source: "./media/characters/alana/front.svg",
  18336. extra: 679 / 653,
  18337. bottom: 22.5 / 701
  18338. }
  18339. },
  18340. },
  18341. [
  18342. {
  18343. name: "Normal",
  18344. height: math.unit(7 + 6 / 12, "feet")
  18345. },
  18346. {
  18347. name: "Large",
  18348. height: math.unit(50, "feet")
  18349. },
  18350. {
  18351. name: "Macro",
  18352. height: math.unit(100, "feet"),
  18353. default: true
  18354. },
  18355. {
  18356. name: "Macro+",
  18357. height: math.unit(200, "feet")
  18358. },
  18359. ]
  18360. ))
  18361. characterMakers.push(() => makeCharacter(
  18362. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18363. {
  18364. front: {
  18365. height: math.unit(6 + 1 / 12, "feet"),
  18366. weight: math.unit(210, "lb"),
  18367. name: "Front",
  18368. image: {
  18369. source: "./media/characters/hasani/front.svg",
  18370. extra: 244 / 232,
  18371. bottom: 0.01
  18372. }
  18373. },
  18374. back: {
  18375. height: math.unit(6 + 1 / 12, "feet"),
  18376. weight: math.unit(210, "lb"),
  18377. name: "Back",
  18378. image: {
  18379. source: "./media/characters/hasani/back.svg",
  18380. extra: 244 / 232,
  18381. bottom: 0.01
  18382. }
  18383. },
  18384. },
  18385. [
  18386. {
  18387. name: "Normal",
  18388. height: math.unit(6 + 1 / 12, "feet")
  18389. },
  18390. {
  18391. name: "Macro",
  18392. height: math.unit(175, "feet"),
  18393. default: true
  18394. },
  18395. ]
  18396. ))
  18397. characterMakers.push(() => makeCharacter(
  18398. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18399. {
  18400. front: {
  18401. height: math.unit(1.82, "meters"),
  18402. weight: math.unit(140, "lb"),
  18403. name: "Front",
  18404. image: {
  18405. source: "./media/characters/nita/front.svg",
  18406. extra: 2473 / 2363,
  18407. bottom: 0.01
  18408. }
  18409. },
  18410. },
  18411. [
  18412. {
  18413. name: "Normal",
  18414. height: math.unit(1.82, "m")
  18415. },
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(300, "m")
  18419. },
  18420. {
  18421. name: "Mistake Canon",
  18422. height: math.unit(0.5, "miles"),
  18423. default: true
  18424. },
  18425. {
  18426. name: "Big Mistake",
  18427. height: math.unit(13, "miles")
  18428. },
  18429. {
  18430. name: "Playing God",
  18431. height: math.unit(2450, "miles")
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(4, "feet"),
  18440. weight: math.unit(120, "lb"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/shiriko/front.svg",
  18444. extra: 970/934,
  18445. bottom: 5/975
  18446. }
  18447. },
  18448. },
  18449. [
  18450. {
  18451. name: "Normal",
  18452. height: math.unit(4, "feet"),
  18453. default: true
  18454. },
  18455. ]
  18456. ))
  18457. characterMakers.push(() => makeCharacter(
  18458. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18459. {
  18460. front: {
  18461. height: math.unit(6, "feet"),
  18462. name: "front",
  18463. image: {
  18464. source: "./media/characters/deja/front.svg",
  18465. extra: 926 / 840,
  18466. bottom: 0.07
  18467. }
  18468. },
  18469. },
  18470. [
  18471. {
  18472. name: "Planck Length",
  18473. height: math.unit(1.6e-35, "meters")
  18474. },
  18475. {
  18476. name: "Normal",
  18477. height: math.unit(30.48, "meters"),
  18478. default: true
  18479. },
  18480. {
  18481. name: "Universal",
  18482. height: math.unit(8.8e26, "meters")
  18483. },
  18484. ]
  18485. ))
  18486. characterMakers.push(() => makeCharacter(
  18487. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18488. {
  18489. side: {
  18490. height: math.unit(8, "feet"),
  18491. weight: math.unit(6300, "lb"),
  18492. name: "Side",
  18493. image: {
  18494. source: "./media/characters/anima/side.svg",
  18495. bottom: 0.035
  18496. }
  18497. },
  18498. },
  18499. [
  18500. {
  18501. name: "Normal",
  18502. height: math.unit(8, "feet"),
  18503. default: true
  18504. },
  18505. ]
  18506. ))
  18507. characterMakers.push(() => makeCharacter(
  18508. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18509. {
  18510. front: {
  18511. height: math.unit(8, "feet"),
  18512. weight: math.unit(350, "lb"),
  18513. name: "Front",
  18514. image: {
  18515. source: "./media/characters/bianca/front.svg",
  18516. extra: 234 / 225,
  18517. bottom: 0.03
  18518. }
  18519. },
  18520. },
  18521. [
  18522. {
  18523. name: "Normal",
  18524. height: math.unit(8, "feet"),
  18525. default: true
  18526. },
  18527. ]
  18528. ))
  18529. characterMakers.push(() => makeCharacter(
  18530. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18531. {
  18532. front: {
  18533. height: math.unit(11 + 5/12, "feet"),
  18534. weight: math.unit(1200, "lb"),
  18535. name: "Front",
  18536. image: {
  18537. source: "./media/characters/adinia/front.svg",
  18538. extra: 1767/1641,
  18539. bottom: 44/1811
  18540. },
  18541. extraAttributes: {
  18542. "energyIntake": {
  18543. name: "Energy Intake",
  18544. power: 3,
  18545. type: "energy",
  18546. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18547. },
  18548. }
  18549. },
  18550. back: {
  18551. height: math.unit(11 + 5/12, "feet"),
  18552. weight: math.unit(1200, "lb"),
  18553. name: "Back",
  18554. image: {
  18555. source: "./media/characters/adinia/back.svg",
  18556. extra: 1834/1684,
  18557. bottom: 14/1848
  18558. },
  18559. extraAttributes: {
  18560. "energyIntake": {
  18561. name: "Energy Intake",
  18562. power: 3,
  18563. type: "energy",
  18564. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18565. },
  18566. }
  18567. },
  18568. maw: {
  18569. height: math.unit(3.79, "feet"),
  18570. name: "Maw",
  18571. image: {
  18572. source: "./media/characters/adinia/maw.svg"
  18573. }
  18574. },
  18575. rump: {
  18576. height: math.unit(4.6, "feet"),
  18577. name: "Rump",
  18578. image: {
  18579. source: "./media/characters/adinia/rump.svg"
  18580. }
  18581. },
  18582. },
  18583. [
  18584. {
  18585. name: "Normal",
  18586. height: math.unit(11 + 5 / 12, "feet"),
  18587. default: true
  18588. },
  18589. ]
  18590. ))
  18591. characterMakers.push(() => makeCharacter(
  18592. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18593. {
  18594. front: {
  18595. height: math.unit(3, "meters"),
  18596. weight: math.unit(200, "kg"),
  18597. name: "Front",
  18598. image: {
  18599. source: "./media/characters/lykasa/front.svg",
  18600. extra: 1076 / 976,
  18601. bottom: 0.06
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(3, "meters")
  18609. },
  18610. {
  18611. name: "Kaiju",
  18612. height: math.unit(120, "meters"),
  18613. default: true
  18614. },
  18615. {
  18616. name: "Mega Kaiju",
  18617. height: math.unit(240, "km")
  18618. },
  18619. {
  18620. name: "Giga Kaiju",
  18621. height: math.unit(400, "megameters")
  18622. },
  18623. {
  18624. name: "Tera Kaiju",
  18625. height: math.unit(800, "gigameters")
  18626. },
  18627. {
  18628. name: "Kaiju Dragon Goddess",
  18629. height: math.unit(26, "zettaparsecs")
  18630. },
  18631. ]
  18632. ))
  18633. characterMakers.push(() => makeCharacter(
  18634. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18635. {
  18636. side: {
  18637. height: math.unit(283 / 124 * 6, "feet"),
  18638. weight: math.unit(35000, "lb"),
  18639. name: "Side",
  18640. image: {
  18641. source: "./media/characters/malfaren/side.svg",
  18642. extra: 1310/529,
  18643. bottom: 24/1334
  18644. }
  18645. },
  18646. front: {
  18647. height: math.unit(22.36, "feet"),
  18648. weight: math.unit(35000, "lb"),
  18649. name: "Front",
  18650. image: {
  18651. source: "./media/characters/malfaren/front.svg",
  18652. extra: 1237/1115,
  18653. bottom: 32/1269
  18654. }
  18655. },
  18656. maw: {
  18657. height: math.unit(6.9, "feet"),
  18658. name: "Maw",
  18659. image: {
  18660. source: "./media/characters/malfaren/maw.svg"
  18661. }
  18662. },
  18663. dick: {
  18664. height: math.unit(6.19, "feet"),
  18665. name: "Dick",
  18666. image: {
  18667. source: "./media/characters/malfaren/dick.svg"
  18668. }
  18669. },
  18670. eye: {
  18671. height: math.unit(0.69, "feet"),
  18672. name: "Eye",
  18673. image: {
  18674. source: "./media/characters/malfaren/eye.svg"
  18675. }
  18676. },
  18677. },
  18678. [
  18679. {
  18680. name: "Big",
  18681. height: math.unit(283 / 162 * 6, "feet"),
  18682. },
  18683. {
  18684. name: "Bigger",
  18685. height: math.unit(283 / 124 * 6, "feet")
  18686. },
  18687. {
  18688. name: "Massive",
  18689. height: math.unit(283 / 92 * 6, "feet"),
  18690. default: true
  18691. },
  18692. {
  18693. name: "👀💦",
  18694. height: math.unit(283 / 73 * 6, "feet"),
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(1.7, "m"),
  18703. weight: math.unit(70, "kg"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/kernel/front.svg",
  18707. extra: 222 / 210,
  18708. bottom: 0.007
  18709. }
  18710. },
  18711. },
  18712. [
  18713. {
  18714. name: "Nano",
  18715. height: math.unit(17, "micrometers")
  18716. },
  18717. {
  18718. name: "Micro",
  18719. height: math.unit(1.7, "mm")
  18720. },
  18721. {
  18722. name: "Small",
  18723. height: math.unit(1.7, "cm")
  18724. },
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(1.7, "m"),
  18728. default: true
  18729. },
  18730. ]
  18731. ))
  18732. characterMakers.push(() => makeCharacter(
  18733. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18734. {
  18735. front: {
  18736. height: math.unit(1.75, "meters"),
  18737. weight: math.unit(65, "kg"),
  18738. name: "Front",
  18739. image: {
  18740. source: "./media/characters/jayne-folest/front.svg",
  18741. extra: 2115 / 2007,
  18742. bottom: 0.02
  18743. }
  18744. },
  18745. back: {
  18746. height: math.unit(1.75, "meters"),
  18747. weight: math.unit(65, "kg"),
  18748. name: "Back",
  18749. image: {
  18750. source: "./media/characters/jayne-folest/back.svg",
  18751. extra: 2115 / 2007,
  18752. bottom: 0.005
  18753. }
  18754. },
  18755. frontClothed: {
  18756. height: math.unit(1.75, "meters"),
  18757. weight: math.unit(65, "kg"),
  18758. name: "Front (Clothed)",
  18759. image: {
  18760. source: "./media/characters/jayne-folest/front-clothed.svg",
  18761. extra: 2115 / 2007,
  18762. bottom: 0.035
  18763. }
  18764. },
  18765. hand: {
  18766. height: math.unit(1 / 1.260, "feet"),
  18767. name: "Hand",
  18768. image: {
  18769. source: "./media/characters/jayne-folest/hand.svg"
  18770. }
  18771. },
  18772. foot: {
  18773. height: math.unit(1 / 0.918, "feet"),
  18774. name: "Foot",
  18775. image: {
  18776. source: "./media/characters/jayne-folest/foot.svg"
  18777. }
  18778. },
  18779. },
  18780. [
  18781. {
  18782. name: "Micro",
  18783. height: math.unit(4, "cm")
  18784. },
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(1.75, "meters")
  18788. },
  18789. {
  18790. name: "Macro",
  18791. height: math.unit(47.5, "meters"),
  18792. default: true
  18793. },
  18794. ]
  18795. ))
  18796. characterMakers.push(() => makeCharacter(
  18797. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18798. {
  18799. front: {
  18800. height: math.unit(180, "cm"),
  18801. weight: math.unit(70, "kg"),
  18802. name: "Front",
  18803. image: {
  18804. source: "./media/characters/algier/front.svg",
  18805. extra: 596 / 572,
  18806. bottom: 0.04
  18807. }
  18808. },
  18809. back: {
  18810. height: math.unit(180, "cm"),
  18811. weight: math.unit(70, "kg"),
  18812. name: "Back",
  18813. image: {
  18814. source: "./media/characters/algier/back.svg",
  18815. extra: 596 / 572,
  18816. bottom: 0.025
  18817. }
  18818. },
  18819. frontdressed: {
  18820. height: math.unit(180, "cm"),
  18821. weight: math.unit(150, "kg"),
  18822. name: "Front-dressed",
  18823. image: {
  18824. source: "./media/characters/algier/front-dressed.svg",
  18825. extra: 596 / 572,
  18826. bottom: 0.038
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Micro",
  18833. height: math.unit(5, "cm")
  18834. },
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(180, "cm"),
  18838. default: true
  18839. },
  18840. {
  18841. name: "Macro",
  18842. height: math.unit(64, "m")
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18848. {
  18849. upright: {
  18850. height: math.unit(7, "feet"),
  18851. weight: math.unit(300, "lb"),
  18852. name: "Upright",
  18853. image: {
  18854. source: "./media/characters/pretzel/upright.svg",
  18855. extra: 534 / 522,
  18856. bottom: 0.065
  18857. }
  18858. },
  18859. sprawling: {
  18860. height: math.unit(3.75, "feet"),
  18861. weight: math.unit(300, "lb"),
  18862. name: "Sprawling",
  18863. image: {
  18864. source: "./media/characters/pretzel/sprawling.svg",
  18865. extra: 314 / 281,
  18866. bottom: 0.1
  18867. }
  18868. },
  18869. tongue: {
  18870. height: math.unit(2, "feet"),
  18871. name: "Tongue",
  18872. image: {
  18873. source: "./media/characters/pretzel/tongue.svg"
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(7, "feet"),
  18881. default: true
  18882. },
  18883. {
  18884. name: "Oversized",
  18885. height: math.unit(15, "feet")
  18886. },
  18887. {
  18888. name: "Huge",
  18889. height: math.unit(30, "feet")
  18890. },
  18891. {
  18892. name: "Macro",
  18893. height: math.unit(250, "feet")
  18894. },
  18895. ]
  18896. ))
  18897. characterMakers.push(() => makeCharacter(
  18898. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18899. {
  18900. sideFront: {
  18901. height: math.unit(5 + 2 / 12, "feet"),
  18902. weight: math.unit(120, "lb"),
  18903. name: "Front Side",
  18904. image: {
  18905. source: "./media/characters/roxi/side-front.svg",
  18906. extra: 2924 / 2717,
  18907. bottom: 0.08
  18908. }
  18909. },
  18910. sideBack: {
  18911. height: math.unit(5 + 2 / 12, "feet"),
  18912. weight: math.unit(120, "lb"),
  18913. name: "Back Side",
  18914. image: {
  18915. source: "./media/characters/roxi/side-back.svg",
  18916. extra: 2904 / 2693,
  18917. bottom: 0.06
  18918. }
  18919. },
  18920. front: {
  18921. height: math.unit(5 + 2 / 12, "feet"),
  18922. weight: math.unit(120, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/roxi/front.svg",
  18926. extra: 2028 / 1907,
  18927. bottom: 0.01
  18928. }
  18929. },
  18930. frontAlt: {
  18931. height: math.unit(5 + 2 / 12, "feet"),
  18932. weight: math.unit(120, "lb"),
  18933. name: "Front (Alt)",
  18934. image: {
  18935. source: "./media/characters/roxi/front-alt.svg",
  18936. extra: 1828 / 1798,
  18937. bottom: 0.01
  18938. }
  18939. },
  18940. sitting: {
  18941. height: math.unit(2.8, "feet"),
  18942. weight: math.unit(120, "lb"),
  18943. name: "Sitting",
  18944. image: {
  18945. source: "./media/characters/roxi/sitting.svg",
  18946. extra: 2660 / 2462,
  18947. bottom: 0.1
  18948. }
  18949. },
  18950. },
  18951. [
  18952. {
  18953. name: "Normal",
  18954. height: math.unit(5 + 2 / 12, "feet"),
  18955. default: true
  18956. },
  18957. ]
  18958. ))
  18959. characterMakers.push(() => makeCharacter(
  18960. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18961. {
  18962. side: {
  18963. height: math.unit(55, "feet"),
  18964. weight: math.unit(153, "tons"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/shadow/side.svg",
  18968. extra: 701 / 628,
  18969. bottom: 0.02
  18970. }
  18971. },
  18972. flying: {
  18973. height: math.unit(145, "feet"),
  18974. weight: math.unit(153, "tons"),
  18975. name: "Flying",
  18976. image: {
  18977. source: "./media/characters/shadow/flying.svg"
  18978. }
  18979. },
  18980. },
  18981. [
  18982. {
  18983. name: "Normal",
  18984. height: math.unit(55, "feet"),
  18985. default: true
  18986. },
  18987. ]
  18988. ))
  18989. characterMakers.push(() => makeCharacter(
  18990. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18991. {
  18992. front: {
  18993. height: math.unit(6, "feet"),
  18994. weight: math.unit(200, "lb"),
  18995. name: "Front",
  18996. image: {
  18997. source: "./media/characters/marcie/front.svg",
  18998. extra: 960 / 876,
  18999. bottom: 58 / 1017.87
  19000. }
  19001. },
  19002. },
  19003. [
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(1, "mile"),
  19007. default: true
  19008. },
  19009. ]
  19010. ))
  19011. characterMakers.push(() => makeCharacter(
  19012. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19013. {
  19014. front: {
  19015. height: math.unit(7, "feet"),
  19016. weight: math.unit(200, "lb"),
  19017. name: "Front",
  19018. image: {
  19019. source: "./media/characters/kachina/front.svg",
  19020. extra: 1290.68 / 1119,
  19021. bottom: 36.5 / 1327.18
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(7, "feet"),
  19029. default: true
  19030. },
  19031. ]
  19032. ))
  19033. characterMakers.push(() => makeCharacter(
  19034. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19035. {
  19036. looking: {
  19037. height: math.unit(2, "meters"),
  19038. weight: math.unit(300, "kg"),
  19039. name: "Looking",
  19040. image: {
  19041. source: "./media/characters/kash/looking.svg",
  19042. extra: 474 / 344,
  19043. bottom: 0.03
  19044. }
  19045. },
  19046. side: {
  19047. height: math.unit(2, "meters"),
  19048. weight: math.unit(300, "kg"),
  19049. name: "Side",
  19050. image: {
  19051. source: "./media/characters/kash/side.svg",
  19052. extra: 302 / 251,
  19053. bottom: 0.03
  19054. }
  19055. },
  19056. front: {
  19057. height: math.unit(2, "meters"),
  19058. weight: math.unit(300, "kg"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/kash/front.svg",
  19062. extra: 495 / 360,
  19063. bottom: 0.015
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(2, "meters"),
  19071. default: true
  19072. },
  19073. {
  19074. name: "Big",
  19075. height: math.unit(3, "meters")
  19076. },
  19077. {
  19078. name: "Large",
  19079. height: math.unit(5, "meters")
  19080. },
  19081. ]
  19082. ))
  19083. characterMakers.push(() => makeCharacter(
  19084. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19085. {
  19086. feeding: {
  19087. height: math.unit(6.7, "feet"),
  19088. weight: math.unit(350, "lb"),
  19089. name: "Feeding",
  19090. image: {
  19091. source: "./media/characters/lalim/feeding.svg",
  19092. }
  19093. },
  19094. },
  19095. [
  19096. {
  19097. name: "Normal",
  19098. height: math.unit(6.7, "feet"),
  19099. default: true
  19100. },
  19101. ]
  19102. ))
  19103. characterMakers.push(() => makeCharacter(
  19104. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19105. {
  19106. front: {
  19107. height: math.unit(9.5, "feet"),
  19108. weight: math.unit(600, "lb"),
  19109. name: "Front",
  19110. image: {
  19111. source: "./media/characters/de'vout/front.svg",
  19112. extra: 1443 / 1328,
  19113. bottom: 0.025
  19114. }
  19115. },
  19116. back: {
  19117. height: math.unit(9.5, "feet"),
  19118. weight: math.unit(600, "lb"),
  19119. name: "Back",
  19120. image: {
  19121. source: "./media/characters/de'vout/back.svg",
  19122. extra: 1443 / 1328
  19123. }
  19124. },
  19125. frontDressed: {
  19126. height: math.unit(9.5, "feet"),
  19127. weight: math.unit(600, "lb"),
  19128. name: "Front (Dressed",
  19129. image: {
  19130. source: "./media/characters/de'vout/front-dressed.svg",
  19131. extra: 1443 / 1328,
  19132. bottom: 0.025
  19133. }
  19134. },
  19135. backDressed: {
  19136. height: math.unit(9.5, "feet"),
  19137. weight: math.unit(600, "lb"),
  19138. name: "Back (Dressed",
  19139. image: {
  19140. source: "./media/characters/de'vout/back-dressed.svg",
  19141. extra: 1443 / 1328
  19142. }
  19143. },
  19144. },
  19145. [
  19146. {
  19147. name: "Normal",
  19148. height: math.unit(9.5, "feet"),
  19149. default: true
  19150. },
  19151. ]
  19152. ))
  19153. characterMakers.push(() => makeCharacter(
  19154. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19155. {
  19156. front: {
  19157. height: math.unit(8, "feet"),
  19158. weight: math.unit(225, "lb"),
  19159. name: "Front",
  19160. image: {
  19161. source: "./media/characters/talana/front.svg",
  19162. extra: 1410 / 1300,
  19163. bottom: 0.015
  19164. }
  19165. },
  19166. frontDressed: {
  19167. height: math.unit(8, "feet"),
  19168. weight: math.unit(225, "lb"),
  19169. name: "Front (Dressed",
  19170. image: {
  19171. source: "./media/characters/talana/front-dressed.svg",
  19172. extra: 1410 / 1300,
  19173. bottom: 0.015
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Normal",
  19180. height: math.unit(8, "feet"),
  19181. default: true
  19182. },
  19183. ]
  19184. ))
  19185. characterMakers.push(() => makeCharacter(
  19186. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19187. {
  19188. side: {
  19189. height: math.unit(7.2, "feet"),
  19190. weight: math.unit(150, "lb"),
  19191. name: "Side",
  19192. image: {
  19193. source: "./media/characters/xeauvok/side.svg",
  19194. extra: 1975 / 1523,
  19195. bottom: 0.07
  19196. }
  19197. },
  19198. },
  19199. [
  19200. {
  19201. name: "Normal",
  19202. height: math.unit(7.2, "feet"),
  19203. default: true
  19204. },
  19205. ]
  19206. ))
  19207. characterMakers.push(() => makeCharacter(
  19208. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19209. {
  19210. side: {
  19211. height: math.unit(4, "meters"),
  19212. weight: math.unit(2200, "kg"),
  19213. name: "Side",
  19214. image: {
  19215. source: "./media/characters/zara/side.svg",
  19216. extra: 765/744,
  19217. bottom: 156/921
  19218. }
  19219. },
  19220. },
  19221. [
  19222. {
  19223. name: "Normal",
  19224. height: math.unit(4, "meters"),
  19225. default: true
  19226. },
  19227. ]
  19228. ))
  19229. characterMakers.push(() => makeCharacter(
  19230. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19231. {
  19232. side: {
  19233. height: math.unit(6, "feet"),
  19234. weight: math.unit(150, "lb"),
  19235. name: "Side",
  19236. image: {
  19237. source: "./media/characters/richard-dragon/side.svg",
  19238. extra: 845 / 340,
  19239. bottom: 0.017
  19240. }
  19241. },
  19242. maw: {
  19243. height: math.unit(2.97, "feet"),
  19244. name: "Maw",
  19245. image: {
  19246. source: "./media/characters/richard-dragon/maw.svg"
  19247. }
  19248. },
  19249. },
  19250. [
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(4, "feet"),
  19258. weight: math.unit(100, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/richard-smeargle/front.svg",
  19262. extra: 2952 / 2820,
  19263. bottom: 0.028
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(4, "feet"),
  19271. default: true
  19272. },
  19273. {
  19274. name: "Dynamax",
  19275. height: math.unit(20, "meters")
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19281. {
  19282. front: {
  19283. height: math.unit(6, "feet"),
  19284. weight: math.unit(110, "lb"),
  19285. name: "Front",
  19286. image: {
  19287. source: "./media/characters/klay/front.svg",
  19288. extra: 962 / 883,
  19289. bottom: 0.04
  19290. }
  19291. },
  19292. back: {
  19293. height: math.unit(6, "feet"),
  19294. weight: math.unit(110, "lb"),
  19295. name: "Back",
  19296. image: {
  19297. source: "./media/characters/klay/back.svg",
  19298. extra: 962 / 883
  19299. }
  19300. },
  19301. beans: {
  19302. height: math.unit(1.15, "feet"),
  19303. name: "Beans",
  19304. image: {
  19305. source: "./media/characters/klay/beans.svg"
  19306. }
  19307. },
  19308. },
  19309. [
  19310. {
  19311. name: "Micro",
  19312. height: math.unit(6, "inches")
  19313. },
  19314. {
  19315. name: "Mini",
  19316. height: math.unit(3, "feet")
  19317. },
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(6, "feet"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Big",
  19325. height: math.unit(25, "feet")
  19326. },
  19327. {
  19328. name: "Macro",
  19329. height: math.unit(100, "feet")
  19330. },
  19331. {
  19332. name: "Megamacro",
  19333. height: math.unit(400, "feet")
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(6, "feet"),
  19342. weight: math.unit(160, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/marcus/front.svg",
  19346. extra: 734 / 676,
  19347. bottom: 0.03
  19348. }
  19349. },
  19350. },
  19351. [
  19352. {
  19353. name: "Little",
  19354. height: math.unit(6, "feet")
  19355. },
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(110, "feet"),
  19359. default: true
  19360. },
  19361. {
  19362. name: "Macro",
  19363. height: math.unit(250, "feet")
  19364. },
  19365. {
  19366. name: "Megamacro",
  19367. height: math.unit(1000, "feet")
  19368. },
  19369. ]
  19370. ))
  19371. characterMakers.push(() => makeCharacter(
  19372. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19373. {
  19374. front: {
  19375. height: math.unit(7, "feet"),
  19376. weight: math.unit(275, "lb"),
  19377. name: "Front",
  19378. image: {
  19379. source: "./media/characters/claude-delroute/front.svg",
  19380. extra: 902/827,
  19381. bottom: 26/928
  19382. }
  19383. },
  19384. side: {
  19385. height: math.unit(7, "feet"),
  19386. weight: math.unit(275, "lb"),
  19387. name: "Side",
  19388. image: {
  19389. source: "./media/characters/claude-delroute/side.svg",
  19390. extra: 908/853,
  19391. bottom: 16/924
  19392. }
  19393. },
  19394. back: {
  19395. height: math.unit(7, "feet"),
  19396. weight: math.unit(275, "lb"),
  19397. name: "Back",
  19398. image: {
  19399. source: "./media/characters/claude-delroute/back.svg",
  19400. extra: 911/829,
  19401. bottom: 18/929
  19402. }
  19403. },
  19404. maw: {
  19405. height: math.unit(0.6407, "meters"),
  19406. name: "Maw",
  19407. image: {
  19408. source: "./media/characters/claude-delroute/maw.svg"
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(7, "feet"),
  19416. default: true
  19417. },
  19418. {
  19419. name: "Lorge",
  19420. height: math.unit(20, "feet")
  19421. },
  19422. ]
  19423. ))
  19424. characterMakers.push(() => makeCharacter(
  19425. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19426. {
  19427. front: {
  19428. height: math.unit(8 + 4 / 12, "feet"),
  19429. weight: math.unit(600, "lb"),
  19430. name: "Front",
  19431. image: {
  19432. source: "./media/characters/dragonien/front.svg",
  19433. extra: 100 / 94,
  19434. bottom: 3.3 / 103.3445
  19435. }
  19436. },
  19437. back: {
  19438. height: math.unit(8 + 4 / 12, "feet"),
  19439. weight: math.unit(600, "lb"),
  19440. name: "Back",
  19441. image: {
  19442. source: "./media/characters/dragonien/back.svg",
  19443. extra: 776 / 746,
  19444. bottom: 6.4 / 782.0616
  19445. }
  19446. },
  19447. foot: {
  19448. height: math.unit(1.54, "feet"),
  19449. name: "Foot",
  19450. image: {
  19451. source: "./media/characters/dragonien/foot.svg",
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(8 + 4 / 12, "feet"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Macro",
  19463. height: math.unit(200, "feet")
  19464. },
  19465. {
  19466. name: "Megamacro",
  19467. height: math.unit(1, "mile")
  19468. },
  19469. {
  19470. name: "Gigamacro",
  19471. height: math.unit(1000, "miles")
  19472. },
  19473. ]
  19474. ))
  19475. characterMakers.push(() => makeCharacter(
  19476. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19477. {
  19478. front: {
  19479. height: math.unit(5 + 2 / 12, "feet"),
  19480. weight: math.unit(110, "lb"),
  19481. name: "Front",
  19482. image: {
  19483. source: "./media/characters/desta/front.svg",
  19484. extra: 767 / 726,
  19485. bottom: 11.7 / 779
  19486. }
  19487. },
  19488. back: {
  19489. height: math.unit(5 + 2 / 12, "feet"),
  19490. weight: math.unit(110, "lb"),
  19491. name: "Back",
  19492. image: {
  19493. source: "./media/characters/desta/back.svg",
  19494. extra: 777 / 728,
  19495. bottom: 6 / 784
  19496. }
  19497. },
  19498. frontAlt: {
  19499. height: math.unit(5 + 2 / 12, "feet"),
  19500. weight: math.unit(110, "lb"),
  19501. name: "Front",
  19502. image: {
  19503. source: "./media/characters/desta/front-alt.svg",
  19504. extra: 1482 / 1417
  19505. }
  19506. },
  19507. side: {
  19508. height: math.unit(5 + 2 / 12, "feet"),
  19509. weight: math.unit(110, "lb"),
  19510. name: "Side",
  19511. image: {
  19512. source: "./media/characters/desta/side.svg",
  19513. extra: 2579 / 2491,
  19514. bottom: 0.053
  19515. }
  19516. },
  19517. },
  19518. [
  19519. {
  19520. name: "Micro",
  19521. height: math.unit(6, "inches")
  19522. },
  19523. {
  19524. name: "Normal",
  19525. height: math.unit(5 + 2 / 12, "feet"),
  19526. default: true
  19527. },
  19528. {
  19529. name: "Macro",
  19530. height: math.unit(62, "feet")
  19531. },
  19532. {
  19533. name: "Megamacro",
  19534. height: math.unit(1800, "feet")
  19535. },
  19536. ]
  19537. ))
  19538. characterMakers.push(() => makeCharacter(
  19539. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19540. {
  19541. front: {
  19542. height: math.unit(10, "feet"),
  19543. weight: math.unit(700, "lb"),
  19544. name: "Front",
  19545. image: {
  19546. source: "./media/characters/storm-alystar/front.svg",
  19547. extra: 2112 / 1898,
  19548. bottom: 0.034
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Micro",
  19555. height: math.unit(3.5, "inches")
  19556. },
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(10, "feet"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(400, "feet")
  19565. },
  19566. {
  19567. name: "Deific",
  19568. height: math.unit(60, "miles")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(2.35, "meters"),
  19577. weight: math.unit(119, "kg"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/ilia/front.svg",
  19581. extra: 1285 / 1255,
  19582. bottom: 0.06
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(2.35, "meters")
  19590. },
  19591. {
  19592. name: "Macro",
  19593. height: math.unit(140, "meters"),
  19594. default: true
  19595. },
  19596. {
  19597. name: "Megamacro",
  19598. height: math.unit(100, "miles")
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(6 + 5 / 12, "feet"),
  19607. weight: math.unit(190, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/kingdead/front.svg",
  19611. extra: 1228 / 1177
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(7, "inches")
  19619. },
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6 + 5 / 12, "feet")
  19623. },
  19624. {
  19625. name: "Macro",
  19626. height: math.unit(150, "feet"),
  19627. default: true
  19628. },
  19629. {
  19630. name: "Megamacro",
  19631. height: math.unit(200, "miles")
  19632. },
  19633. ]
  19634. ))
  19635. characterMakers.push(() => makeCharacter(
  19636. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19637. {
  19638. front: {
  19639. height: math.unit(8, "feet"),
  19640. weight: math.unit(600, "lb"),
  19641. name: "Front",
  19642. image: {
  19643. source: "./media/characters/kyrehx/front.svg",
  19644. extra: 1195 / 1095,
  19645. bottom: 0.034
  19646. }
  19647. },
  19648. },
  19649. [
  19650. {
  19651. name: "Micro",
  19652. height: math.unit(2, "inches")
  19653. },
  19654. {
  19655. name: "Normal",
  19656. height: math.unit(8, "feet"),
  19657. default: true
  19658. },
  19659. {
  19660. name: "Macro",
  19661. height: math.unit(255, "feet")
  19662. },
  19663. ]
  19664. ))
  19665. characterMakers.push(() => makeCharacter(
  19666. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19667. {
  19668. front: {
  19669. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19670. weight: math.unit(184, "lb"),
  19671. name: "Front",
  19672. image: {
  19673. source: "./media/characters/xang/front.svg",
  19674. extra: 845 / 755
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Normal",
  19681. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19682. default: true
  19683. },
  19684. {
  19685. name: "Macro",
  19686. height: math.unit(0.935 * 146, "feet")
  19687. },
  19688. {
  19689. name: "Megamacro",
  19690. height: math.unit(0.935 * 3, "miles")
  19691. },
  19692. ]
  19693. ))
  19694. characterMakers.push(() => makeCharacter(
  19695. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19696. {
  19697. frontDressed: {
  19698. height: math.unit(5 + 7 / 12, "feet"),
  19699. weight: math.unit(140, "lb"),
  19700. name: "Front (Dressed)",
  19701. image: {
  19702. source: "./media/characters/doc-weardno/front-dressed.svg",
  19703. extra: 263 / 234
  19704. }
  19705. },
  19706. backDressed: {
  19707. height: math.unit(5 + 7 / 12, "feet"),
  19708. weight: math.unit(140, "lb"),
  19709. name: "Back (Dressed)",
  19710. image: {
  19711. source: "./media/characters/doc-weardno/back-dressed.svg",
  19712. extra: 266 / 238
  19713. }
  19714. },
  19715. front: {
  19716. height: math.unit(5 + 7 / 12, "feet"),
  19717. weight: math.unit(140, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/doc-weardno/front.svg",
  19721. extra: 254 / 233
  19722. }
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Micro",
  19728. height: math.unit(3, "inches")
  19729. },
  19730. {
  19731. name: "Normal",
  19732. height: math.unit(5 + 7 / 12, "feet"),
  19733. default: true
  19734. },
  19735. {
  19736. name: "Macro",
  19737. height: math.unit(25, "feet")
  19738. },
  19739. {
  19740. name: "Megamacro",
  19741. height: math.unit(2, "miles")
  19742. },
  19743. ]
  19744. ))
  19745. characterMakers.push(() => makeCharacter(
  19746. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19747. {
  19748. front: {
  19749. height: math.unit(6 + 2 / 12, "feet"),
  19750. weight: math.unit(153, "lb"),
  19751. name: "Front",
  19752. image: {
  19753. source: "./media/characters/seth-whilst/front.svg",
  19754. bottom: 0.07
  19755. }
  19756. },
  19757. },
  19758. [
  19759. {
  19760. name: "Micro",
  19761. height: math.unit(5, "inches")
  19762. },
  19763. {
  19764. name: "Normal",
  19765. height: math.unit(6 + 2 / 12, "feet"),
  19766. default: true
  19767. },
  19768. ]
  19769. ))
  19770. characterMakers.push(() => makeCharacter(
  19771. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19772. {
  19773. front: {
  19774. height: math.unit(3, "inches"),
  19775. weight: math.unit(8, "grams"),
  19776. name: "Front",
  19777. image: {
  19778. source: "./media/characters/pocket-jabari/front.svg",
  19779. extra: 1024 / 974,
  19780. bottom: 0.039
  19781. }
  19782. },
  19783. },
  19784. [
  19785. {
  19786. name: "Minimicro",
  19787. height: math.unit(8, "mm")
  19788. },
  19789. {
  19790. name: "Micro",
  19791. height: math.unit(3, "inches"),
  19792. default: true
  19793. },
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(3, "feet")
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19802. {
  19803. frontDressed: {
  19804. height: math.unit(15, "feet"),
  19805. weight: math.unit(3280, "lb"),
  19806. name: "Front (Dressed)",
  19807. image: {
  19808. source: "./media/characters/sapphy/front-dressed.svg",
  19809. extra: 1951/1654,
  19810. bottom: 194/2145
  19811. },
  19812. form: "anthro",
  19813. default: true
  19814. },
  19815. backDressed: {
  19816. height: math.unit(15, "feet"),
  19817. weight: math.unit(3280, "lb"),
  19818. name: "Back (Dressed)",
  19819. image: {
  19820. source: "./media/characters/sapphy/back-dressed.svg",
  19821. extra: 2058/1918,
  19822. bottom: 125/2183
  19823. },
  19824. form: "anthro"
  19825. },
  19826. frontNude: {
  19827. height: math.unit(15, "feet"),
  19828. weight: math.unit(3280, "lb"),
  19829. name: "Front (Nude)",
  19830. image: {
  19831. source: "./media/characters/sapphy/front-nude.svg",
  19832. extra: 1951/1654,
  19833. bottom: 194/2145
  19834. },
  19835. form: "anthro"
  19836. },
  19837. backNude: {
  19838. height: math.unit(15, "feet"),
  19839. weight: math.unit(3280, "lb"),
  19840. name: "Back (Nude)",
  19841. image: {
  19842. source: "./media/characters/sapphy/back-nude.svg",
  19843. extra: 2058/1918,
  19844. bottom: 125/2183
  19845. },
  19846. form: "anthro"
  19847. },
  19848. full: {
  19849. height: math.unit(15, "feet"),
  19850. weight: math.unit(3280, "lb"),
  19851. name: "Full",
  19852. image: {
  19853. source: "./media/characters/sapphy/full.svg",
  19854. extra: 1396/1317,
  19855. bottom: 44/1440
  19856. },
  19857. form: "anthro"
  19858. },
  19859. dick: {
  19860. height: math.unit(3.8, "feet"),
  19861. name: "Dick",
  19862. image: {
  19863. source: "./media/characters/sapphy/dick.svg"
  19864. },
  19865. form: "anthro"
  19866. },
  19867. feral: {
  19868. height: math.unit(35, "feet"),
  19869. weight: math.unit(160, "tons"),
  19870. name: "Feral",
  19871. image: {
  19872. source: "./media/characters/sapphy/feral.svg",
  19873. extra: 1050/573,
  19874. bottom: 60/1110
  19875. },
  19876. form: "feral",
  19877. default: true
  19878. },
  19879. },
  19880. [
  19881. {
  19882. name: "Normal",
  19883. height: math.unit(15, "feet"),
  19884. form: "anthro"
  19885. },
  19886. {
  19887. name: "Casual Macro",
  19888. height: math.unit(120, "feet"),
  19889. form: "anthro"
  19890. },
  19891. {
  19892. name: "Macro",
  19893. height: math.unit(2150, "feet"),
  19894. default: true,
  19895. form: "anthro"
  19896. },
  19897. {
  19898. name: "Megamacro",
  19899. height: math.unit(8, "miles"),
  19900. form: "anthro"
  19901. },
  19902. {
  19903. name: "Galaxy Mom",
  19904. height: math.unit(6, "megalightyears"),
  19905. form: "anthro"
  19906. },
  19907. {
  19908. name: "Normal",
  19909. height: math.unit(35, "feet"),
  19910. form: "feral",
  19911. default: true
  19912. },
  19913. {
  19914. name: "Macro",
  19915. height: math.unit(300, "feet"),
  19916. form: "feral"
  19917. },
  19918. {
  19919. name: "Galaxy Mom",
  19920. height: math.unit(10, "megalightyears"),
  19921. form: "feral"
  19922. },
  19923. ],
  19924. {
  19925. "anthro": {
  19926. name: "Anthro",
  19927. default: true
  19928. },
  19929. "feral": {
  19930. name: "Feral"
  19931. }
  19932. }
  19933. ))
  19934. characterMakers.push(() => makeCharacter(
  19935. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19936. {
  19937. front: {
  19938. height: math.unit(6, "feet"),
  19939. weight: math.unit(170, "lb"),
  19940. name: "Front",
  19941. image: {
  19942. source: "./media/characters/kiro/front.svg",
  19943. extra: 1064 / 1012,
  19944. bottom: 0.052
  19945. }
  19946. },
  19947. },
  19948. [
  19949. {
  19950. name: "Micro",
  19951. height: math.unit(6, "inches")
  19952. },
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(6, "feet"),
  19956. default: true
  19957. },
  19958. {
  19959. name: "Macro",
  19960. height: math.unit(72, "feet")
  19961. },
  19962. ]
  19963. ))
  19964. characterMakers.push(() => makeCharacter(
  19965. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19966. {
  19967. front: {
  19968. height: math.unit(5 + 9 / 12, "feet"),
  19969. weight: math.unit(175, "lb"),
  19970. name: "Front",
  19971. image: {
  19972. source: "./media/characters/irishfox/front.svg",
  19973. extra: 1912 / 1680,
  19974. bottom: 0.02
  19975. }
  19976. },
  19977. },
  19978. [
  19979. {
  19980. name: "Nano",
  19981. height: math.unit(1, "mm")
  19982. },
  19983. {
  19984. name: "Micro",
  19985. height: math.unit(2, "inches")
  19986. },
  19987. {
  19988. name: "Normal",
  19989. height: math.unit(5 + 9 / 12, "feet"),
  19990. default: true
  19991. },
  19992. {
  19993. name: "Macro",
  19994. height: math.unit(45, "feet")
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 1 / 12, "feet"),
  20003. weight: math.unit(75, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/aronai-sieyes/front.svg",
  20007. extra: 1532/1450,
  20008. bottom: 42/1574
  20009. }
  20010. },
  20011. side: {
  20012. height: math.unit(6 + 1 / 12, "feet"),
  20013. weight: math.unit(75, "lb"),
  20014. name: "Side",
  20015. image: {
  20016. source: "./media/characters/aronai-sieyes/side.svg",
  20017. extra: 1422/1365,
  20018. bottom: 148/1570
  20019. }
  20020. },
  20021. back: {
  20022. height: math.unit(6 + 1 / 12, "feet"),
  20023. weight: math.unit(75, "lb"),
  20024. name: "Back",
  20025. image: {
  20026. source: "./media/characters/aronai-sieyes/back.svg",
  20027. extra: 1526/1464,
  20028. bottom: 51/1577
  20029. }
  20030. },
  20031. dressed: {
  20032. height: math.unit(6 + 1 / 12, "feet"),
  20033. weight: math.unit(75, "lb"),
  20034. name: "Dressed",
  20035. image: {
  20036. source: "./media/characters/aronai-sieyes/dressed.svg",
  20037. extra: 1559/1483,
  20038. bottom: 39/1598
  20039. }
  20040. },
  20041. slit: {
  20042. height: math.unit(1.3, "feet"),
  20043. name: "Slit",
  20044. image: {
  20045. source: "./media/characters/aronai-sieyes/slit.svg"
  20046. }
  20047. },
  20048. slitSpread: {
  20049. height: math.unit(0.9, "feet"),
  20050. name: "Slit (Spread)",
  20051. image: {
  20052. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20053. }
  20054. },
  20055. rump: {
  20056. height: math.unit(1.3, "feet"),
  20057. name: "Rump",
  20058. image: {
  20059. source: "./media/characters/aronai-sieyes/rump.svg"
  20060. }
  20061. },
  20062. maw: {
  20063. height: math.unit(1.25, "feet"),
  20064. name: "Maw",
  20065. image: {
  20066. source: "./media/characters/aronai-sieyes/maw.svg"
  20067. }
  20068. },
  20069. feral: {
  20070. height: math.unit(18, "feet"),
  20071. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20072. name: "Feral",
  20073. image: {
  20074. source: "./media/characters/aronai-sieyes/feral.svg",
  20075. extra: 1530 / 1240,
  20076. bottom: 0.035
  20077. }
  20078. },
  20079. },
  20080. [
  20081. {
  20082. name: "Micro",
  20083. height: math.unit(2, "inches")
  20084. },
  20085. {
  20086. name: "Normal",
  20087. height: math.unit(6 + 1 / 12, "feet"),
  20088. default: true
  20089. }
  20090. ]
  20091. ))
  20092. characterMakers.push(() => makeCharacter(
  20093. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20094. {
  20095. front: {
  20096. height: math.unit(12, "feet"),
  20097. weight: math.unit(410, "kg"),
  20098. name: "Front",
  20099. image: {
  20100. source: "./media/characters/xuna/front.svg",
  20101. extra: 2184 / 1980
  20102. }
  20103. },
  20104. side: {
  20105. height: math.unit(12, "feet"),
  20106. weight: math.unit(410, "kg"),
  20107. name: "Side",
  20108. image: {
  20109. source: "./media/characters/xuna/side.svg",
  20110. extra: 2184 / 1980
  20111. }
  20112. },
  20113. back: {
  20114. height: math.unit(12, "feet"),
  20115. weight: math.unit(410, "kg"),
  20116. name: "Back",
  20117. image: {
  20118. source: "./media/characters/xuna/back.svg",
  20119. extra: 2184 / 1980
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Nano glow",
  20126. height: math.unit(10, "nm")
  20127. },
  20128. {
  20129. name: "Micro floof",
  20130. height: math.unit(0.3, "m")
  20131. },
  20132. {
  20133. name: "Huggable softy boi",
  20134. height: math.unit(3.6576, "m"),
  20135. default: true
  20136. },
  20137. {
  20138. name: "Admirable floof",
  20139. height: math.unit(80, "meters")
  20140. },
  20141. {
  20142. name: "Gentle macro",
  20143. height: math.unit(300, "meters")
  20144. },
  20145. {
  20146. name: "Very careful floof",
  20147. height: math.unit(3200, "meters")
  20148. },
  20149. {
  20150. name: "The mega floof",
  20151. height: math.unit(36000, "meters")
  20152. },
  20153. {
  20154. name: "Giga-fur-Wicker",
  20155. height: math.unit(4800000, "meters")
  20156. },
  20157. {
  20158. name: "Licky world",
  20159. height: math.unit(20000000, "meters")
  20160. },
  20161. {
  20162. name: "Floofy cyan sun",
  20163. height: math.unit(1500000000, "meters")
  20164. },
  20165. {
  20166. name: "Milky Wicker",
  20167. height: math.unit(1000000000000000000000, "meters")
  20168. },
  20169. {
  20170. name: "The observing Wicker",
  20171. height: math.unit(999999999999999999999999999, "meters")
  20172. },
  20173. ]
  20174. ))
  20175. characterMakers.push(() => makeCharacter(
  20176. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20177. {
  20178. front: {
  20179. height: math.unit(5 + 9 / 12, "feet"),
  20180. weight: math.unit(150, "lb"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/arokha-sieyes/front.svg",
  20184. extra: 1425 / 1284,
  20185. bottom: 0.05
  20186. }
  20187. },
  20188. },
  20189. [
  20190. {
  20191. name: "Normal",
  20192. height: math.unit(5 + 9 / 12, "feet")
  20193. },
  20194. {
  20195. name: "Macro",
  20196. height: math.unit(30, "meters"),
  20197. default: true
  20198. },
  20199. ]
  20200. ))
  20201. characterMakers.push(() => makeCharacter(
  20202. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20203. {
  20204. front: {
  20205. height: math.unit(6, "feet"),
  20206. weight: math.unit(180, "lb"),
  20207. name: "Front",
  20208. image: {
  20209. source: "./media/characters/arokh-sieyes/front.svg",
  20210. extra: 1830 / 1769,
  20211. bottom: 0.01
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6, "feet")
  20219. },
  20220. {
  20221. name: "Macro",
  20222. height: math.unit(30, "meters"),
  20223. default: true
  20224. },
  20225. ]
  20226. ))
  20227. characterMakers.push(() => makeCharacter(
  20228. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20229. {
  20230. side: {
  20231. height: math.unit(13 + 1 / 12, "feet"),
  20232. weight: math.unit(8.5, "tonnes"),
  20233. name: "Side",
  20234. image: {
  20235. source: "./media/characters/goldeneye/side.svg",
  20236. extra: 1182 / 778,
  20237. bottom: 0.067
  20238. }
  20239. },
  20240. paw: {
  20241. height: math.unit(3.4, "feet"),
  20242. name: "Paw",
  20243. image: {
  20244. source: "./media/characters/goldeneye/paw.svg"
  20245. }
  20246. },
  20247. },
  20248. [
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(13 + 1 / 12, "feet"),
  20252. default: true
  20253. },
  20254. ]
  20255. ))
  20256. characterMakers.push(() => makeCharacter(
  20257. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20258. {
  20259. front: {
  20260. height: math.unit(6 + 1 / 12, "feet"),
  20261. weight: math.unit(210, "lb"),
  20262. name: "Front",
  20263. image: {
  20264. source: "./media/characters/leonardo-lycheborne/front.svg",
  20265. extra: 776/723,
  20266. bottom: 34/810
  20267. }
  20268. },
  20269. side: {
  20270. height: math.unit(6 + 1 / 12, "feet"),
  20271. weight: math.unit(210, "lb"),
  20272. name: "Side",
  20273. image: {
  20274. source: "./media/characters/leonardo-lycheborne/side.svg",
  20275. extra: 780/728,
  20276. bottom: 12/792
  20277. }
  20278. },
  20279. back: {
  20280. height: math.unit(6 + 1 / 12, "feet"),
  20281. weight: math.unit(210, "lb"),
  20282. name: "Back",
  20283. image: {
  20284. source: "./media/characters/leonardo-lycheborne/back.svg",
  20285. extra: 775/721,
  20286. bottom: 17/792
  20287. }
  20288. },
  20289. hand: {
  20290. height: math.unit(1.08, "feet"),
  20291. name: "Hand",
  20292. image: {
  20293. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20294. }
  20295. },
  20296. foot: {
  20297. height: math.unit(1.32, "feet"),
  20298. name: "Foot",
  20299. image: {
  20300. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20301. }
  20302. },
  20303. maw: {
  20304. height: math.unit(1, "feet"),
  20305. name: "Maw",
  20306. image: {
  20307. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20308. }
  20309. },
  20310. were: {
  20311. height: math.unit(20, "feet"),
  20312. weight: math.unit(7800, "lb"),
  20313. name: "Were",
  20314. image: {
  20315. source: "./media/characters/leonardo-lycheborne/were.svg",
  20316. extra: 1224/1165,
  20317. bottom: 72/1296
  20318. }
  20319. },
  20320. feral: {
  20321. height: math.unit(7.5, "feet"),
  20322. weight: math.unit(600, "lb"),
  20323. name: "Feral",
  20324. image: {
  20325. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20326. extra: 797/702,
  20327. bottom: 139/936
  20328. }
  20329. },
  20330. taur: {
  20331. height: math.unit(11, "feet"),
  20332. weight: math.unit(3300, "lb"),
  20333. name: "Taur",
  20334. image: {
  20335. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20336. extra: 1271/1197,
  20337. bottom: 47/1318
  20338. }
  20339. },
  20340. barghest: {
  20341. height: math.unit(11, "feet"),
  20342. weight: math.unit(1300, "lb"),
  20343. name: "Barghest",
  20344. image: {
  20345. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20346. extra: 1291/1204,
  20347. bottom: 37/1328
  20348. }
  20349. },
  20350. dick: {
  20351. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20352. name: "Dick",
  20353. image: {
  20354. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20355. }
  20356. },
  20357. dickWere: {
  20358. height: math.unit((20) / 3.8, "feet"),
  20359. name: "Dick (Were)",
  20360. image: {
  20361. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(6 + 1 / 12, "feet"),
  20369. default: true
  20370. },
  20371. ]
  20372. ))
  20373. characterMakers.push(() => makeCharacter(
  20374. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20375. {
  20376. front: {
  20377. height: math.unit(10, "feet"),
  20378. weight: math.unit(350, "lb"),
  20379. name: "Front",
  20380. image: {
  20381. source: "./media/characters/jet/front.svg",
  20382. extra: 2050 / 1980,
  20383. bottom: 0.013
  20384. }
  20385. },
  20386. back: {
  20387. height: math.unit(10, "feet"),
  20388. weight: math.unit(350, "lb"),
  20389. name: "Back",
  20390. image: {
  20391. source: "./media/characters/jet/back.svg",
  20392. extra: 2050 / 1980,
  20393. bottom: 0.013
  20394. }
  20395. },
  20396. },
  20397. [
  20398. {
  20399. name: "Micro",
  20400. height: math.unit(6, "inches")
  20401. },
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(10, "feet"),
  20405. default: true
  20406. },
  20407. {
  20408. name: "Macro",
  20409. height: math.unit(100, "feet")
  20410. },
  20411. ]
  20412. ))
  20413. characterMakers.push(() => makeCharacter(
  20414. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20415. {
  20416. front: {
  20417. height: math.unit(15, "feet"),
  20418. weight: math.unit(2800, "lb"),
  20419. name: "Front",
  20420. image: {
  20421. source: "./media/characters/tanarath/front.svg",
  20422. extra: 2392 / 2220,
  20423. bottom: 0.03
  20424. }
  20425. },
  20426. back: {
  20427. height: math.unit(15, "feet"),
  20428. weight: math.unit(2800, "lb"),
  20429. name: "Back",
  20430. image: {
  20431. source: "./media/characters/tanarath/back.svg",
  20432. extra: 2392 / 2220,
  20433. bottom: 0.03
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(15, "feet"),
  20441. default: true
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(7 + 1 / 12, "feet"),
  20450. weight: math.unit(175, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/patty-cattybatty/front.svg",
  20454. extra: 908 / 874,
  20455. bottom: 0.025
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Micro",
  20462. height: math.unit(1, "inch")
  20463. },
  20464. {
  20465. name: "Normal",
  20466. height: math.unit(7 + 1 / 12, "feet")
  20467. },
  20468. {
  20469. name: "Mini Macro",
  20470. height: math.unit(155, "feet")
  20471. },
  20472. {
  20473. name: "Macro",
  20474. height: math.unit(1077, "feet")
  20475. },
  20476. {
  20477. name: "Mega Macro",
  20478. height: math.unit(47650, "feet"),
  20479. default: true
  20480. },
  20481. {
  20482. name: "Giga Macro",
  20483. height: math.unit(440, "miles")
  20484. },
  20485. {
  20486. name: "Tera Macro",
  20487. height: math.unit(8700, "miles")
  20488. },
  20489. {
  20490. name: "Planetary Macro",
  20491. height: math.unit(32700, "miles")
  20492. },
  20493. {
  20494. name: "Solar Macro",
  20495. height: math.unit(550000, "miles")
  20496. },
  20497. {
  20498. name: "Celestial Macro",
  20499. height: math.unit(2.5, "AU")
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(4 + 5 / 12, "feet"),
  20508. weight: math.unit(90, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/cappu/front.svg",
  20512. extra: 1247 / 1152,
  20513. bottom: 0.012
  20514. }
  20515. },
  20516. },
  20517. [
  20518. {
  20519. name: "Normal",
  20520. height: math.unit(4 + 5 / 12, "feet"),
  20521. default: true
  20522. },
  20523. ]
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20527. {
  20528. frontDressed: {
  20529. height: math.unit(70, "cm"),
  20530. weight: math.unit(6, "kg"),
  20531. name: "Front (Dressed)",
  20532. image: {
  20533. source: "./media/characters/sebi/front-dressed.svg",
  20534. extra: 713.5 / 686.5,
  20535. bottom: 0.003
  20536. }
  20537. },
  20538. front: {
  20539. height: math.unit(70, "cm"),
  20540. weight: math.unit(5, "kg"),
  20541. name: "Front",
  20542. image: {
  20543. source: "./media/characters/sebi/front.svg",
  20544. extra: 713.5 / 686.5,
  20545. bottom: 0.003
  20546. }
  20547. }
  20548. },
  20549. [
  20550. {
  20551. name: "Normal",
  20552. height: math.unit(70, "cm"),
  20553. default: true
  20554. },
  20555. {
  20556. name: "Macro",
  20557. height: math.unit(8, "meters")
  20558. },
  20559. ]
  20560. ))
  20561. characterMakers.push(() => makeCharacter(
  20562. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20563. {
  20564. front: {
  20565. height: math.unit(6, "feet"),
  20566. weight: math.unit(150, "lb"),
  20567. name: "Front",
  20568. image: {
  20569. source: "./media/characters/typhek/front.svg",
  20570. extra: 1948 / 1929,
  20571. bottom: 0.025
  20572. }
  20573. },
  20574. side: {
  20575. height: math.unit(6, "feet"),
  20576. weight: math.unit(150, "lb"),
  20577. name: "Side",
  20578. image: {
  20579. source: "./media/characters/typhek/side.svg",
  20580. extra: 2034 / 2010,
  20581. bottom: 0.003
  20582. }
  20583. },
  20584. back: {
  20585. height: math.unit(6, "feet"),
  20586. weight: math.unit(150, "lb"),
  20587. name: "Back",
  20588. image: {
  20589. source: "./media/characters/typhek/back.svg",
  20590. extra: 2005 / 1978,
  20591. bottom: 0.004
  20592. }
  20593. },
  20594. palm: {
  20595. height: math.unit(1.2, "feet"),
  20596. name: "Palm",
  20597. image: {
  20598. source: "./media/characters/typhek/palm.svg"
  20599. }
  20600. },
  20601. fist: {
  20602. height: math.unit(1.1, "feet"),
  20603. name: "Fist",
  20604. image: {
  20605. source: "./media/characters/typhek/fist.svg"
  20606. }
  20607. },
  20608. foot: {
  20609. height: math.unit(1.57, "feet"),
  20610. name: "Foot",
  20611. image: {
  20612. source: "./media/characters/typhek/foot.svg"
  20613. }
  20614. },
  20615. sole: {
  20616. height: math.unit(2.05, "feet"),
  20617. name: "Sole",
  20618. image: {
  20619. source: "./media/characters/typhek/sole.svg"
  20620. }
  20621. },
  20622. },
  20623. [
  20624. {
  20625. name: "Macro",
  20626. height: math.unit(40, "stories"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Megamacro",
  20631. height: math.unit(1, "mile")
  20632. },
  20633. {
  20634. name: "Gigamacro",
  20635. height: math.unit(4000, "solarradii")
  20636. },
  20637. {
  20638. name: "Universal",
  20639. height: math.unit(1.1, "universes")
  20640. }
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20645. {
  20646. side: {
  20647. height: math.unit(5 + 7 / 12, "feet"),
  20648. weight: math.unit(150, "lb"),
  20649. name: "Side",
  20650. image: {
  20651. source: "./media/characters/kassy/side.svg",
  20652. extra: 1280 / 1225,
  20653. bottom: 0.002
  20654. }
  20655. },
  20656. front: {
  20657. height: math.unit(5 + 7 / 12, "feet"),
  20658. weight: math.unit(150, "lb"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/kassy/front.svg",
  20662. extra: 1280 / 1225,
  20663. bottom: 0.025
  20664. }
  20665. },
  20666. back: {
  20667. height: math.unit(5 + 7 / 12, "feet"),
  20668. weight: math.unit(150, "lb"),
  20669. name: "Back",
  20670. image: {
  20671. source: "./media/characters/kassy/back.svg",
  20672. extra: 1280 / 1225,
  20673. bottom: 0.002
  20674. }
  20675. },
  20676. foot: {
  20677. height: math.unit(1.266, "feet"),
  20678. name: "Foot",
  20679. image: {
  20680. source: "./media/characters/kassy/foot.svg"
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(5 + 7 / 12, "feet")
  20688. },
  20689. {
  20690. name: "Macro",
  20691. height: math.unit(137, "feet"),
  20692. default: true
  20693. },
  20694. {
  20695. name: "Megamacro",
  20696. height: math.unit(1, "mile")
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(6 + 1 / 12, "feet"),
  20705. weight: math.unit(200, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/neil/front.svg",
  20709. extra: 1326 / 1250,
  20710. bottom: 0.023
  20711. }
  20712. },
  20713. },
  20714. [
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(6 + 1 / 12, "feet"),
  20718. default: true
  20719. },
  20720. {
  20721. name: "Macro",
  20722. height: math.unit(200, "feet")
  20723. },
  20724. ]
  20725. ))
  20726. characterMakers.push(() => makeCharacter(
  20727. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20728. {
  20729. front: {
  20730. height: math.unit(5 + 9 / 12, "feet"),
  20731. weight: math.unit(190, "lb"),
  20732. name: "Front",
  20733. image: {
  20734. source: "./media/characters/atticus/front.svg",
  20735. extra: 2934 / 2785,
  20736. bottom: 0.025
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Normal",
  20743. height: math.unit(5 + 9 / 12, "feet"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Macro",
  20748. height: math.unit(180, "feet")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20754. {
  20755. side: {
  20756. height: math.unit(9, "feet"),
  20757. weight: math.unit(650, "lb"),
  20758. name: "Side",
  20759. image: {
  20760. source: "./media/characters/milo/side.svg",
  20761. extra: 2644 / 2310,
  20762. bottom: 0.032
  20763. }
  20764. },
  20765. },
  20766. [
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(9, "feet"),
  20770. default: true
  20771. },
  20772. {
  20773. name: "Macro",
  20774. height: math.unit(300, "feet")
  20775. },
  20776. ]
  20777. ))
  20778. characterMakers.push(() => makeCharacter(
  20779. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20780. {
  20781. side: {
  20782. height: math.unit(8, "meters"),
  20783. weight: math.unit(90000, "kg"),
  20784. name: "Side",
  20785. image: {
  20786. source: "./media/characters/ijzer/side.svg",
  20787. extra: 2756 / 1600,
  20788. bottom: 0.01
  20789. }
  20790. },
  20791. },
  20792. [
  20793. {
  20794. name: "Small",
  20795. height: math.unit(3, "meters")
  20796. },
  20797. {
  20798. name: "Normal",
  20799. height: math.unit(8, "meters"),
  20800. default: true
  20801. },
  20802. {
  20803. name: "Normal+",
  20804. height: math.unit(10, "meters")
  20805. },
  20806. {
  20807. name: "Bigger",
  20808. height: math.unit(24, "meters")
  20809. },
  20810. {
  20811. name: "Huge",
  20812. height: math.unit(80, "meters")
  20813. },
  20814. ]
  20815. ))
  20816. characterMakers.push(() => makeCharacter(
  20817. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20818. {
  20819. front: {
  20820. height: math.unit(6 + 2 / 12, "feet"),
  20821. weight: math.unit(153, "lb"),
  20822. name: "Front",
  20823. image: {
  20824. source: "./media/characters/luca-cervicum/front.svg",
  20825. extra: 370 / 327,
  20826. bottom: 0.015
  20827. }
  20828. },
  20829. back: {
  20830. height: math.unit(6 + 2 / 12, "feet"),
  20831. weight: math.unit(153, "lb"),
  20832. name: "Back",
  20833. image: {
  20834. source: "./media/characters/luca-cervicum/back.svg",
  20835. extra: 367 / 333,
  20836. bottom: 0.005
  20837. }
  20838. },
  20839. frontGear: {
  20840. height: math.unit(6 + 2 / 12, "feet"),
  20841. weight: math.unit(173, "lb"),
  20842. name: "Front (Gear)",
  20843. image: {
  20844. source: "./media/characters/luca-cervicum/front-gear.svg",
  20845. extra: 377 / 333,
  20846. bottom: 0.006
  20847. }
  20848. },
  20849. },
  20850. [
  20851. {
  20852. name: "Normal",
  20853. height: math.unit(6 + 2 / 12, "feet"),
  20854. default: true
  20855. },
  20856. ]
  20857. ))
  20858. characterMakers.push(() => makeCharacter(
  20859. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20860. {
  20861. front: {
  20862. height: math.unit(6 + 1 / 12, "feet"),
  20863. weight: math.unit(304, "lb"),
  20864. name: "Front",
  20865. image: {
  20866. source: "./media/characters/oliver/front.svg",
  20867. extra: 157 / 143,
  20868. bottom: 0.08
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Normal",
  20875. height: math.unit(6 + 1 / 12, "feet"),
  20876. default: true
  20877. },
  20878. ]
  20879. ))
  20880. characterMakers.push(() => makeCharacter(
  20881. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20882. {
  20883. front: {
  20884. height: math.unit(5 + 7 / 12, "feet"),
  20885. weight: math.unit(140, "lb"),
  20886. name: "Front",
  20887. image: {
  20888. source: "./media/characters/shane/front.svg",
  20889. extra: 304 / 289,
  20890. bottom: 0.005
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(5 + 7 / 12, "feet"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20904. {
  20905. front: {
  20906. height: math.unit(5 + 9 / 12, "feet"),
  20907. weight: math.unit(178, "lb"),
  20908. name: "Front",
  20909. image: {
  20910. source: "./media/characters/shin/front.svg",
  20911. extra: 159 / 151,
  20912. bottom: 0.015
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Normal",
  20919. height: math.unit(5 + 9 / 12, "feet"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20926. {
  20927. front: {
  20928. height: math.unit(5 + 10 / 12, "feet"),
  20929. weight: math.unit(168, "lb"),
  20930. name: "Front",
  20931. image: {
  20932. source: "./media/characters/xerxes/front.svg",
  20933. extra: 282 / 260,
  20934. bottom: 0.045
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5 + 10 / 12, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(6 + 7 / 12, "feet"),
  20951. weight: math.unit(208, "lb"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/chaska/front.svg",
  20955. extra: 332 / 319,
  20956. bottom: 0.015
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6 + 7 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(5 + 8 / 12, "feet"),
  20973. weight: math.unit(208, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/enuk/front.svg",
  20977. extra: 437 / 406,
  20978. bottom: 0.02
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(5 + 8 / 12, "feet"),
  20986. default: true
  20987. },
  20988. ]
  20989. ))
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(5 + 10 / 12, "feet"),
  20995. weight: math.unit(252, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/bruun/front.svg",
  20999. extra: 197 / 187,
  21000. bottom: 0.012
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(5 + 10 / 12, "feet"),
  21008. default: true
  21009. },
  21010. ]
  21011. ))
  21012. characterMakers.push(() => makeCharacter(
  21013. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21014. {
  21015. front: {
  21016. height: math.unit(6 + 10 / 12, "feet"),
  21017. weight: math.unit(255, "lb"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/alexeev/front.svg",
  21021. extra: 213 / 200,
  21022. bottom: 0.05
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Normal",
  21029. height: math.unit(6 + 10 / 12, "feet"),
  21030. default: true
  21031. },
  21032. ]
  21033. ))
  21034. characterMakers.push(() => makeCharacter(
  21035. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21036. {
  21037. front: {
  21038. height: math.unit(2 + 8 / 12, "feet"),
  21039. weight: math.unit(22, "lb"),
  21040. name: "Front",
  21041. image: {
  21042. source: "./media/characters/evelyn/front.svg",
  21043. extra: 208 / 180
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(2 + 8 / 12, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21057. {
  21058. front: {
  21059. height: math.unit(5 + 9 / 12, "feet"),
  21060. weight: math.unit(139, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/inca/front.svg",
  21064. extra: 294 / 291,
  21065. bottom: 0.03
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(5 + 9 / 12, "feet"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21079. {
  21080. front: {
  21081. height: math.unit(6 + 3 / 12, "feet"),
  21082. weight: math.unit(185, "lb"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/mera/front.svg",
  21086. extra: 291 / 277,
  21087. bottom: 0.03
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(6 + 3 / 12, "feet"),
  21095. default: true
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(6 + 7 / 12, "feet"),
  21104. weight: math.unit(160, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/ceres/front.svg",
  21108. extra: 1023 / 950,
  21109. bottom: 0.027
  21110. }
  21111. },
  21112. back: {
  21113. height: math.unit(6 + 7 / 12, "feet"),
  21114. weight: math.unit(160, "lb"),
  21115. name: "Back",
  21116. image: {
  21117. source: "./media/characters/ceres/back.svg",
  21118. extra: 1023 / 950
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Normal",
  21125. height: math.unit(6 + 7 / 12, "feet"),
  21126. default: true
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(5 + 10 / 12, "feet"),
  21135. weight: math.unit(150, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/kris/front.svg",
  21139. extra: 885 / 803,
  21140. bottom: 0.03
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(5 + 10 / 12, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21154. {
  21155. front: {
  21156. height: math.unit(7, "feet"),
  21157. weight: math.unit(120, "kg"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/taluthus/front.svg",
  21161. extra: 903 / 833,
  21162. bottom: 0.015
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(7, "feet"),
  21170. default: true
  21171. },
  21172. {
  21173. name: "Macro",
  21174. height: math.unit(300, "feet")
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21180. {
  21181. front: {
  21182. height: math.unit(5 + 9 / 12, "feet"),
  21183. weight: math.unit(145, "lb"),
  21184. name: "Front",
  21185. image: {
  21186. source: "./media/characters/dawn/front.svg",
  21187. extra: 2094 / 2016,
  21188. bottom: 0.025
  21189. }
  21190. },
  21191. back: {
  21192. height: math.unit(5 + 9 / 12, "feet"),
  21193. weight: math.unit(160, "lb"),
  21194. name: "Back",
  21195. image: {
  21196. source: "./media/characters/dawn/back.svg",
  21197. extra: 2112 / 2080,
  21198. bottom: 0.005
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(6 + 7 / 12, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21212. {
  21213. anthro: {
  21214. height: math.unit(8 + 3 / 12, "feet"),
  21215. weight: math.unit(450, "lb"),
  21216. name: "Anthro",
  21217. image: {
  21218. source: "./media/characters/arador/anthro.svg",
  21219. extra: 1835 / 1718,
  21220. bottom: 0.025
  21221. }
  21222. },
  21223. feral: {
  21224. height: math.unit(4, "feet"),
  21225. weight: math.unit(200, "lb"),
  21226. name: "Feral",
  21227. image: {
  21228. source: "./media/characters/arador/feral.svg",
  21229. extra: 1683 / 1514,
  21230. bottom: 0.07
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(8 + 3 / 12, "feet")
  21238. },
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(82.5, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21248. {
  21249. front: {
  21250. height: math.unit(5 + 10 / 12, "feet"),
  21251. weight: math.unit(125, "lb"),
  21252. name: "Front",
  21253. image: {
  21254. source: "./media/characters/dharsi/front.svg",
  21255. extra: 716 / 630,
  21256. bottom: 0.035
  21257. }
  21258. },
  21259. },
  21260. [
  21261. {
  21262. name: "Nano",
  21263. height: math.unit(100, "nm")
  21264. },
  21265. {
  21266. name: "Micro",
  21267. height: math.unit(2, "inches")
  21268. },
  21269. {
  21270. name: "Normal",
  21271. height: math.unit(5 + 10 / 12, "feet"),
  21272. default: true
  21273. },
  21274. {
  21275. name: "Macro",
  21276. height: math.unit(1000, "feet")
  21277. },
  21278. {
  21279. name: "Megamacro",
  21280. height: math.unit(10, "miles")
  21281. },
  21282. {
  21283. name: "Gigamacro",
  21284. height: math.unit(3000, "miles")
  21285. },
  21286. {
  21287. name: "Teramacro",
  21288. height: math.unit(500000, "miles")
  21289. },
  21290. {
  21291. name: "Teramacro+",
  21292. height: math.unit(30, "galaxies")
  21293. },
  21294. ]
  21295. ))
  21296. characterMakers.push(() => makeCharacter(
  21297. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21298. {
  21299. front: {
  21300. height: math.unit(6, "feet"),
  21301. weight: math.unit(150, "lb"),
  21302. name: "Front",
  21303. image: {
  21304. source: "./media/characters/deathy/front.svg",
  21305. extra: 1552 / 1463,
  21306. bottom: 0.025
  21307. }
  21308. },
  21309. side: {
  21310. height: math.unit(6, "feet"),
  21311. weight: math.unit(150, "lb"),
  21312. name: "Side",
  21313. image: {
  21314. source: "./media/characters/deathy/side.svg",
  21315. extra: 1604 / 1455,
  21316. bottom: 0.025
  21317. }
  21318. },
  21319. back: {
  21320. height: math.unit(6, "feet"),
  21321. weight: math.unit(150, "lb"),
  21322. name: "Back",
  21323. image: {
  21324. source: "./media/characters/deathy/back.svg",
  21325. extra: 1580 / 1463,
  21326. bottom: 0.005
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Micro",
  21333. height: math.unit(5, "millimeters")
  21334. },
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(6 + 5 / 12, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21344. {
  21345. front: {
  21346. height: math.unit(16, "feet"),
  21347. weight: math.unit(4000, "lb"),
  21348. name: "Front",
  21349. image: {
  21350. source: "./media/characters/juniper/front.svg",
  21351. bottom: 0.04
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(16, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(6, "feet"),
  21368. weight: math.unit(150, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/hipster/front.svg",
  21372. extra: 1312 / 1209,
  21373. bottom: 0.025
  21374. }
  21375. },
  21376. back: {
  21377. height: math.unit(6, "feet"),
  21378. weight: math.unit(150, "lb"),
  21379. name: "Back",
  21380. image: {
  21381. source: "./media/characters/hipster/back.svg",
  21382. extra: 1281 / 1196,
  21383. bottom: 0.01
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Micro",
  21390. height: math.unit(1, "mm")
  21391. },
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(4, "inches"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(500, "feet")
  21400. },
  21401. {
  21402. name: "Megamacro",
  21403. height: math.unit(1000, "miles")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(6, "feet"),
  21412. weight: math.unit(150, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/tendirmuldr/front.svg",
  21416. extra: 1878 / 1772,
  21417. bottom: 0.015
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Megamacro",
  21424. height: math.unit(1500, "miles"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21431. {
  21432. front: {
  21433. height: math.unit(14, "feet"),
  21434. weight: math.unit(12000, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/mort/front.svg",
  21438. extra: 365 / 318,
  21439. bottom: 0.01
  21440. }
  21441. },
  21442. side: {
  21443. height: math.unit(14, "feet"),
  21444. weight: math.unit(12000, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/mort/side.svg",
  21448. extra: 365 / 318,
  21449. bottom: 0.052
  21450. },
  21451. default: true
  21452. },
  21453. back: {
  21454. height: math.unit(14, "feet"),
  21455. weight: math.unit(12000, "lb"),
  21456. name: "Back",
  21457. image: {
  21458. source: "./media/characters/mort/back.svg",
  21459. extra: 371 / 332,
  21460. bottom: 0.18
  21461. }
  21462. },
  21463. },
  21464. [
  21465. {
  21466. name: "Normal",
  21467. height: math.unit(14, "feet"),
  21468. default: true
  21469. },
  21470. ]
  21471. ))
  21472. characterMakers.push(() => makeCharacter(
  21473. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21474. {
  21475. front: {
  21476. height: math.unit(8, "feet"),
  21477. weight: math.unit(1, "ton"),
  21478. name: "Front",
  21479. image: {
  21480. source: "./media/characters/lycoa/front.svg",
  21481. extra: 1836/1728,
  21482. bottom: 81/1917
  21483. }
  21484. },
  21485. back: {
  21486. height: math.unit(8, "feet"),
  21487. weight: math.unit(1, "ton"),
  21488. name: "Back",
  21489. image: {
  21490. source: "./media/characters/lycoa/back.svg",
  21491. extra: 1785/1720,
  21492. bottom: 91/1876
  21493. }
  21494. },
  21495. head: {
  21496. height: math.unit(1.6243, "feet"),
  21497. name: "Head",
  21498. image: {
  21499. source: "./media/characters/lycoa/head.svg",
  21500. extra: 1011/782,
  21501. bottom: 0/1011
  21502. }
  21503. },
  21504. tailmaw: {
  21505. height: math.unit(1.9, "feet"),
  21506. name: "Tailmaw",
  21507. image: {
  21508. source: "./media/characters/lycoa/tailmaw.svg"
  21509. }
  21510. },
  21511. tentacles: {
  21512. height: math.unit(2.1, "feet"),
  21513. name: "Tentacles",
  21514. image: {
  21515. source: "./media/characters/lycoa/tentacles.svg"
  21516. }
  21517. },
  21518. dick: {
  21519. height: math.unit(1.73, "feet"),
  21520. name: "Dick",
  21521. image: {
  21522. source: "./media/characters/lycoa/dick.svg"
  21523. }
  21524. },
  21525. },
  21526. [
  21527. {
  21528. name: "Normal",
  21529. height: math.unit(8, "feet"),
  21530. default: true
  21531. },
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(30, "feet")
  21535. },
  21536. ]
  21537. ))
  21538. characterMakers.push(() => makeCharacter(
  21539. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21540. {
  21541. front: {
  21542. height: math.unit(4 + 2 / 12, "feet"),
  21543. weight: math.unit(70, "lb"),
  21544. name: "Front",
  21545. image: {
  21546. source: "./media/characters/naldara/front.svg",
  21547. extra: 1664/1387,
  21548. bottom: 81/1745
  21549. },
  21550. form: "anthro",
  21551. default: true
  21552. },
  21553. naga: {
  21554. height: math.unit(20, "feet"),
  21555. weight: math.unit(15000, "kg"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/naldara/naga.svg",
  21559. extra: 1590/1396,
  21560. bottom: 285/1875
  21561. },
  21562. form: "naga",
  21563. default: true
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Normal",
  21569. height: math.unit(4 + 2 / 12, "feet"),
  21570. form: "anthro",
  21571. default: true
  21572. },
  21573. {
  21574. name: "Normal",
  21575. height: math.unit(20, "feet"),
  21576. form: "naga",
  21577. default: true
  21578. },
  21579. ],
  21580. {
  21581. "anthro": {
  21582. name: "Anthro",
  21583. default: true
  21584. },
  21585. "naga": {
  21586. name: "Naga"
  21587. }
  21588. }
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(13 + 7 / 12, "feet"),
  21595. weight: math.unit(1500, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/briar/front.svg",
  21599. extra: 1223/1157,
  21600. bottom: 123/1346
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(13 + 7 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21614. {
  21615. side: {
  21616. height: math.unit(16, "feet"),
  21617. weight: math.unit(500, "lb"),
  21618. name: "Side",
  21619. image: {
  21620. source: "./media/characters/vanguard/side.svg",
  21621. extra: 1022/914,
  21622. bottom: 30/1052
  21623. }
  21624. },
  21625. sideAlt: {
  21626. height: math.unit(10, "feet"),
  21627. weight: math.unit(500, "lb"),
  21628. name: "Side (Alt)",
  21629. image: {
  21630. source: "./media/characters/vanguard/side-alt.svg",
  21631. extra: 502 / 425,
  21632. bottom: 0.087
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(17.71, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(7.5, "feet"),
  21649. weight: math.unit(2, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/artemis/work-safe-front.svg",
  21653. extra: 1192 / 1075,
  21654. bottom: 0.07
  21655. },
  21656. form: "work-safe",
  21657. default: true
  21658. },
  21659. frontNsfw: {
  21660. height: math.unit(7.5, "feet"),
  21661. weight: math.unit(2, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/artemis/calibrating-front.svg",
  21665. extra: 1192 / 1075,
  21666. bottom: 0.07
  21667. },
  21668. form: "calibrating",
  21669. default: true
  21670. },
  21671. frontNsfwer: {
  21672. height: math.unit(7.5, "feet"),
  21673. weight: math.unit(2, "lb"),
  21674. name: "Front",
  21675. image: {
  21676. source: "./media/characters/artemis/oversize-load-front.svg",
  21677. extra: 1192 / 1075,
  21678. bottom: 0.07
  21679. },
  21680. form: "oversize-load",
  21681. default: true
  21682. },
  21683. side: {
  21684. height: math.unit(7.5, "feet"),
  21685. weight: math.unit(2, "lb"),
  21686. name: "Side",
  21687. image: {
  21688. source: "./media/characters/artemis/work-safe-side.svg",
  21689. extra: 1192 / 1075,
  21690. bottom: 0.07
  21691. },
  21692. form: "work-safe"
  21693. },
  21694. sideNsfw: {
  21695. height: math.unit(7.5, "feet"),
  21696. weight: math.unit(2, "lb"),
  21697. name: "Side",
  21698. image: {
  21699. source: "./media/characters/artemis/calibrating-side.svg",
  21700. extra: 1192 / 1075,
  21701. bottom: 0.07
  21702. },
  21703. form: "calibrating"
  21704. },
  21705. sideNsfwer: {
  21706. height: math.unit(7.5, "feet"),
  21707. weight: math.unit(2, "lb"),
  21708. name: "Side",
  21709. image: {
  21710. source: "./media/characters/artemis/oversize-load-side.svg",
  21711. extra: 1192 / 1075,
  21712. bottom: 0.07
  21713. },
  21714. form: "oversize-load"
  21715. },
  21716. maw: {
  21717. height: math.unit(1.1, "feet"),
  21718. name: "Maw",
  21719. image: {
  21720. source: "./media/characters/artemis/maw.svg"
  21721. },
  21722. form: "work-safe"
  21723. },
  21724. stomach: {
  21725. height: math.unit(0.95, "feet"),
  21726. name: "Stomach",
  21727. image: {
  21728. source: "./media/characters/artemis/stomach.svg"
  21729. },
  21730. form: "work-safe"
  21731. },
  21732. dickCanine: {
  21733. height: math.unit(1, "feet"),
  21734. name: "Dick (Canine)",
  21735. image: {
  21736. source: "./media/characters/artemis/dick-canine.svg"
  21737. },
  21738. form: "calibrating"
  21739. },
  21740. dickEquine: {
  21741. height: math.unit(0.85, "feet"),
  21742. name: "Dick (Equine)",
  21743. image: {
  21744. source: "./media/characters/artemis/dick-equine.svg"
  21745. },
  21746. form: "calibrating"
  21747. },
  21748. dickExotic: {
  21749. height: math.unit(0.85, "feet"),
  21750. name: "Dick (Exotic)",
  21751. image: {
  21752. source: "./media/characters/artemis/dick-exotic.svg"
  21753. },
  21754. form: "calibrating"
  21755. },
  21756. dickCanineBigger: {
  21757. height: math.unit(1 * 1.33, "feet"),
  21758. name: "Dick (Canine)",
  21759. image: {
  21760. source: "./media/characters/artemis/dick-canine.svg"
  21761. },
  21762. form: "oversize-load"
  21763. },
  21764. dickEquineBigger: {
  21765. height: math.unit(0.85 * 1.33, "feet"),
  21766. name: "Dick (Equine)",
  21767. image: {
  21768. source: "./media/characters/artemis/dick-equine.svg"
  21769. },
  21770. form: "oversize-load"
  21771. },
  21772. dickExoticBigger: {
  21773. height: math.unit(0.85 * 1.33, "feet"),
  21774. name: "Dick (Exotic)",
  21775. image: {
  21776. source: "./media/characters/artemis/dick-exotic.svg"
  21777. },
  21778. form: "oversize-load"
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(7.5, "feet"),
  21785. form: "work-safe",
  21786. default: true
  21787. },
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(7.5, "feet"),
  21791. form: "calibrating",
  21792. default: true
  21793. },
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(7.5, "feet"),
  21797. form: "oversize-load",
  21798. default: true
  21799. },
  21800. {
  21801. name: "Enlarged",
  21802. height: math.unit(12, "feet"),
  21803. form: "work-safe",
  21804. },
  21805. {
  21806. name: "Enlarged",
  21807. height: math.unit(12, "feet"),
  21808. form: "calibrating",
  21809. },
  21810. {
  21811. name: "Enlarged",
  21812. height: math.unit(12, "feet"),
  21813. form: "oversize-load",
  21814. },
  21815. ],
  21816. {
  21817. "work-safe": {
  21818. name: "Work-Safe",
  21819. default: true
  21820. },
  21821. "calibrating": {
  21822. name: "Calibrating"
  21823. },
  21824. "oversize-load": {
  21825. name: "Oversize Load"
  21826. }
  21827. }
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(5 + 3 / 12, "feet"),
  21834. weight: math.unit(160, "lb"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/kira/front.svg",
  21838. extra: 906 / 786,
  21839. bottom: 0.01
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(5 + 3 / 12, "feet"),
  21844. weight: math.unit(160, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/kira/back.svg",
  21848. extra: 882 / 757,
  21849. bottom: 0.005
  21850. }
  21851. },
  21852. frontDressed: {
  21853. height: math.unit(5 + 3 / 12, "feet"),
  21854. weight: math.unit(160, "lb"),
  21855. name: "Front (Dressed)",
  21856. image: {
  21857. source: "./media/characters/kira/front-dressed.svg",
  21858. extra: 906 / 786,
  21859. bottom: 0.01
  21860. }
  21861. },
  21862. beans: {
  21863. height: math.unit(0.92, "feet"),
  21864. name: "Beans",
  21865. image: {
  21866. source: "./media/characters/kira/beans.svg"
  21867. }
  21868. },
  21869. },
  21870. [
  21871. {
  21872. name: "Normal",
  21873. height: math.unit(5 + 3 / 12, "feet"),
  21874. default: true
  21875. },
  21876. ]
  21877. ))
  21878. characterMakers.push(() => makeCharacter(
  21879. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21880. {
  21881. front: {
  21882. height: math.unit(5 + 4 / 12, "feet"),
  21883. weight: math.unit(145, "lb"),
  21884. name: "Front",
  21885. image: {
  21886. source: "./media/characters/scramble/front.svg",
  21887. extra: 763 / 727,
  21888. bottom: 0.05
  21889. }
  21890. },
  21891. back: {
  21892. height: math.unit(5 + 4 / 12, "feet"),
  21893. weight: math.unit(145, "lb"),
  21894. name: "Back",
  21895. image: {
  21896. source: "./media/characters/scramble/back.svg",
  21897. extra: 826 / 737,
  21898. bottom: 0.002
  21899. }
  21900. },
  21901. },
  21902. [
  21903. {
  21904. name: "Normal",
  21905. height: math.unit(5 + 4 / 12, "feet"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21912. {
  21913. side: {
  21914. height: math.unit(6 + 2 / 12, "feet"),
  21915. weight: math.unit(190, "lb"),
  21916. name: "Side",
  21917. image: {
  21918. source: "./media/characters/biscuit/side.svg",
  21919. extra: 858 / 791,
  21920. bottom: 0.044
  21921. }
  21922. },
  21923. },
  21924. [
  21925. {
  21926. name: "Normal",
  21927. height: math.unit(6 + 2 / 12, "feet"),
  21928. default: true
  21929. },
  21930. ]
  21931. ))
  21932. characterMakers.push(() => makeCharacter(
  21933. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21934. {
  21935. front: {
  21936. height: math.unit(5 + 2 / 12, "feet"),
  21937. weight: math.unit(120, "lb"),
  21938. name: "Front",
  21939. image: {
  21940. source: "./media/characters/poffin/front.svg",
  21941. extra: 786 / 680,
  21942. bottom: 0.005
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Normal",
  21949. height: math.unit(5 + 2 / 12, "feet"),
  21950. default: true
  21951. },
  21952. ]
  21953. ))
  21954. characterMakers.push(() => makeCharacter(
  21955. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21956. {
  21957. front: {
  21958. height: math.unit(6 + 3 / 12, "feet"),
  21959. weight: math.unit(519, "lb"),
  21960. name: "Front",
  21961. image: {
  21962. source: "./media/characters/dhari/front.svg",
  21963. extra: 1048 / 946,
  21964. bottom: 0.015
  21965. }
  21966. },
  21967. back: {
  21968. height: math.unit(6 + 3 / 12, "feet"),
  21969. weight: math.unit(519, "lb"),
  21970. name: "Back",
  21971. image: {
  21972. source: "./media/characters/dhari/back.svg",
  21973. extra: 1048 / 931,
  21974. bottom: 0.005
  21975. }
  21976. },
  21977. frontDressed: {
  21978. height: math.unit(6 + 3 / 12, "feet"),
  21979. weight: math.unit(519, "lb"),
  21980. name: "Front (Dressed)",
  21981. image: {
  21982. source: "./media/characters/dhari/front-dressed.svg",
  21983. extra: 1713 / 1546,
  21984. bottom: 0.02
  21985. }
  21986. },
  21987. backDressed: {
  21988. height: math.unit(6 + 3 / 12, "feet"),
  21989. weight: math.unit(519, "lb"),
  21990. name: "Back (Dressed)",
  21991. image: {
  21992. source: "./media/characters/dhari/back-dressed.svg",
  21993. extra: 1699 / 1537,
  21994. bottom: 0.01
  21995. }
  21996. },
  21997. maw: {
  21998. height: math.unit(0.95, "feet"),
  21999. name: "Maw",
  22000. image: {
  22001. source: "./media/characters/dhari/maw.svg"
  22002. }
  22003. },
  22004. wereFront: {
  22005. height: math.unit(12 + 8 / 12, "feet"),
  22006. weight: math.unit(4000, "lb"),
  22007. name: "Front (Were)",
  22008. image: {
  22009. source: "./media/characters/dhari/were-front.svg",
  22010. extra: 1065 / 969,
  22011. bottom: 0.015
  22012. }
  22013. },
  22014. wereBack: {
  22015. height: math.unit(12 + 8 / 12, "feet"),
  22016. weight: math.unit(4000, "lb"),
  22017. name: "Back (Were)",
  22018. image: {
  22019. source: "./media/characters/dhari/were-back.svg",
  22020. extra: 1065 / 969,
  22021. bottom: 0.012
  22022. }
  22023. },
  22024. wereMaw: {
  22025. height: math.unit(0.625, "meters"),
  22026. name: "Maw (Were)",
  22027. image: {
  22028. source: "./media/characters/dhari/were-maw.svg"
  22029. }
  22030. },
  22031. },
  22032. [
  22033. {
  22034. name: "Normal",
  22035. height: math.unit(6 + 3 / 12, "feet"),
  22036. default: true
  22037. },
  22038. ]
  22039. ))
  22040. characterMakers.push(() => makeCharacter(
  22041. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22042. {
  22043. anthro: {
  22044. height: math.unit(5 + 7 / 12, "feet"),
  22045. weight: math.unit(175, "lb"),
  22046. name: "Anthro",
  22047. image: {
  22048. source: "./media/characters/rena-dyne/anthro.svg",
  22049. extra: 1849 / 1785,
  22050. bottom: 0.005
  22051. }
  22052. },
  22053. taur: {
  22054. height: math.unit(15 + 6 / 12, "feet"),
  22055. weight: math.unit(8000, "lb"),
  22056. name: "Taur",
  22057. image: {
  22058. source: "./media/characters/rena-dyne/taur.svg",
  22059. extra: 2315 / 2234,
  22060. bottom: 0.033
  22061. }
  22062. },
  22063. },
  22064. [
  22065. {
  22066. name: "Normal",
  22067. height: math.unit(5 + 7 / 12, "feet"),
  22068. default: true
  22069. },
  22070. ]
  22071. ))
  22072. characterMakers.push(() => makeCharacter(
  22073. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22074. {
  22075. front: {
  22076. height: math.unit(8, "feet"),
  22077. weight: math.unit(600, "lb"),
  22078. name: "Front",
  22079. image: {
  22080. source: "./media/characters/weremeep/front.svg",
  22081. extra: 970/849,
  22082. bottom: 7/977
  22083. }
  22084. },
  22085. },
  22086. [
  22087. {
  22088. name: "Normal",
  22089. height: math.unit(8, "feet"),
  22090. default: true
  22091. },
  22092. {
  22093. name: "Lorg",
  22094. height: math.unit(12, "feet")
  22095. },
  22096. {
  22097. name: "Oh Lawd She Comin'",
  22098. height: math.unit(20, "feet")
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22104. {
  22105. front: {
  22106. height: math.unit(4, "feet"),
  22107. weight: math.unit(90, "lb"),
  22108. name: "Front",
  22109. image: {
  22110. source: "./media/characters/reza/front.svg",
  22111. extra: 1183 / 1111,
  22112. bottom: 0.017
  22113. }
  22114. },
  22115. back: {
  22116. height: math.unit(4, "feet"),
  22117. weight: math.unit(90, "lb"),
  22118. name: "Back",
  22119. image: {
  22120. source: "./media/characters/reza/back.svg",
  22121. extra: 1183 / 1111,
  22122. bottom: 0.01
  22123. }
  22124. },
  22125. drake: {
  22126. height: math.unit(30, "feet"),
  22127. weight: math.unit(246960, "lb"),
  22128. name: "Drake",
  22129. image: {
  22130. source: "./media/characters/reza/drake.svg",
  22131. extra: 2350 / 2024,
  22132. bottom: 60.7 / 2403
  22133. }
  22134. },
  22135. },
  22136. [
  22137. {
  22138. name: "Normal",
  22139. height: math.unit(4, "feet"),
  22140. default: true
  22141. },
  22142. ]
  22143. ))
  22144. characterMakers.push(() => makeCharacter(
  22145. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22146. {
  22147. side: {
  22148. height: math.unit(15, "feet"),
  22149. weight: math.unit(14, "tons"),
  22150. name: "Side",
  22151. image: {
  22152. source: "./media/characters/athea/side.svg",
  22153. extra: 960 / 540,
  22154. bottom: 0.003
  22155. }
  22156. },
  22157. sitting: {
  22158. height: math.unit(6 * 2.85, "feet"),
  22159. weight: math.unit(14, "tons"),
  22160. name: "Sitting",
  22161. image: {
  22162. source: "./media/characters/athea/sitting.svg",
  22163. extra: 621 / 581,
  22164. bottom: 0.075
  22165. }
  22166. },
  22167. maw: {
  22168. height: math.unit(7.59498031496063, "feet"),
  22169. name: "Maw",
  22170. image: {
  22171. source: "./media/characters/athea/maw.svg"
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Lap Cat",
  22178. height: math.unit(2.5, "feet")
  22179. },
  22180. {
  22181. name: "Minimacro",
  22182. height: math.unit(15, "feet"),
  22183. default: true
  22184. },
  22185. {
  22186. name: "Macro",
  22187. height: math.unit(120, "feet")
  22188. },
  22189. {
  22190. name: "Macro+",
  22191. height: math.unit(640, "feet")
  22192. },
  22193. {
  22194. name: "Colossus",
  22195. height: math.unit(2.2, "miles")
  22196. },
  22197. ]
  22198. ))
  22199. characterMakers.push(() => makeCharacter(
  22200. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22201. {
  22202. front: {
  22203. height: math.unit(8 + 8 / 12, "feet"),
  22204. weight: math.unit(130, "kg"),
  22205. name: "Front",
  22206. image: {
  22207. source: "./media/characters/seroko/front.svg",
  22208. extra: 1385 / 1280,
  22209. bottom: 0.025
  22210. }
  22211. },
  22212. back: {
  22213. height: math.unit(8 + 8 / 12, "feet"),
  22214. weight: math.unit(130, "kg"),
  22215. name: "Back",
  22216. image: {
  22217. source: "./media/characters/seroko/back.svg",
  22218. extra: 1369 / 1238,
  22219. bottom: 0.018
  22220. }
  22221. },
  22222. frontDressed: {
  22223. height: math.unit(8 + 8 / 12, "feet"),
  22224. weight: math.unit(130, "kg"),
  22225. name: "Front (Dressed)",
  22226. image: {
  22227. source: "./media/characters/seroko/front-dressed.svg",
  22228. extra: 1366 / 1275,
  22229. bottom: 0.03
  22230. }
  22231. },
  22232. },
  22233. [
  22234. {
  22235. name: "Normal",
  22236. height: math.unit(8 + 8 / 12, "feet"),
  22237. default: true
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(5.5, "feet"),
  22246. weight: math.unit(160, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/quatzi/front.svg",
  22250. extra: 2346 / 2242,
  22251. bottom: 0.015
  22252. }
  22253. },
  22254. },
  22255. [
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(5.5, "feet"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Big",
  22263. height: math.unit(7.7, "feet")
  22264. },
  22265. ]
  22266. ))
  22267. characterMakers.push(() => makeCharacter(
  22268. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22269. {
  22270. front: {
  22271. height: math.unit(5 + 11 / 12, "feet"),
  22272. weight: math.unit(180, "lb"),
  22273. name: "Front",
  22274. image: {
  22275. source: "./media/characters/sen/front.svg",
  22276. extra: 1321 / 1254,
  22277. bottom: 0.015
  22278. }
  22279. },
  22280. side: {
  22281. height: math.unit(5 + 11 / 12, "feet"),
  22282. weight: math.unit(180, "lb"),
  22283. name: "Side",
  22284. image: {
  22285. source: "./media/characters/sen/side.svg",
  22286. extra: 1321 / 1254,
  22287. bottom: 0.007
  22288. }
  22289. },
  22290. back: {
  22291. height: math.unit(5 + 11 / 12, "feet"),
  22292. weight: math.unit(180, "lb"),
  22293. name: "Back",
  22294. image: {
  22295. source: "./media/characters/sen/back.svg",
  22296. extra: 1321 / 1254
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(5 + 11 / 12, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(166.6, "cm"),
  22313. weight: math.unit(66.6, "kg"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/fruity/front.svg",
  22317. extra: 1510 / 1386,
  22318. bottom: 0.04
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(166.6, "cm"),
  22323. weight: math.unit(66.6, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/fruity/back.svg",
  22327. extra: 1563 / 1435,
  22328. bottom: 0.005
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(166.6, "cm"),
  22336. default: true
  22337. },
  22338. {
  22339. name: "Demonic",
  22340. height: math.unit(166.6, "feet")
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22346. {
  22347. side: {
  22348. height: math.unit(10, "feet"),
  22349. weight: math.unit(500, "lb"),
  22350. name: "Side",
  22351. image: {
  22352. source: "./media/characters/zost/side.svg",
  22353. extra: 2870/2533,
  22354. bottom: 252/3122
  22355. }
  22356. },
  22357. mawFront: {
  22358. height: math.unit(1.08, "meters"),
  22359. name: "Maw (Front)",
  22360. image: {
  22361. source: "./media/characters/zost/maw-front.svg"
  22362. }
  22363. },
  22364. mawSide: {
  22365. height: math.unit(2.66, "feet"),
  22366. name: "Maw (Side)",
  22367. image: {
  22368. source: "./media/characters/zost/maw-side.svg"
  22369. }
  22370. },
  22371. wingspan: {
  22372. height: math.unit(7.4, "feet"),
  22373. name: "Wingspan",
  22374. image: {
  22375. source: "./media/characters/zost/wingspan.svg"
  22376. }
  22377. },
  22378. },
  22379. [
  22380. {
  22381. name: "Normal",
  22382. height: math.unit(10, "feet"),
  22383. default: true
  22384. },
  22385. ]
  22386. ))
  22387. characterMakers.push(() => makeCharacter(
  22388. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22389. {
  22390. front: {
  22391. height: math.unit(5 + 4 / 12, "feet"),
  22392. weight: math.unit(120, "lb"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/luci/front.svg",
  22396. extra: 1985 / 1884,
  22397. bottom: 0.04
  22398. }
  22399. },
  22400. back: {
  22401. height: math.unit(5 + 4 / 12, "feet"),
  22402. weight: math.unit(120, "lb"),
  22403. name: "Back",
  22404. image: {
  22405. source: "./media/characters/luci/back.svg",
  22406. extra: 1892 / 1791,
  22407. bottom: 0.002
  22408. }
  22409. },
  22410. },
  22411. [
  22412. {
  22413. name: "Normal",
  22414. height: math.unit(5 + 4 / 12, "feet"),
  22415. default: true
  22416. },
  22417. ]
  22418. ))
  22419. characterMakers.push(() => makeCharacter(
  22420. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22421. {
  22422. front: {
  22423. height: math.unit(1500, "feet"),
  22424. weight: math.unit(3.8e6, "tons"),
  22425. name: "Front",
  22426. image: {
  22427. source: "./media/characters/2th/front.svg",
  22428. extra: 3489 / 3350,
  22429. bottom: 0.1
  22430. }
  22431. },
  22432. foot: {
  22433. height: math.unit(461, "feet"),
  22434. name: "Foot",
  22435. image: {
  22436. source: "./media/characters/2th/foot.svg"
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "\"Micro\"",
  22443. height: math.unit(15 + 7 / 12, "feet")
  22444. },
  22445. {
  22446. name: "Normal",
  22447. height: math.unit(1500, "feet"),
  22448. default: true
  22449. },
  22450. {
  22451. name: "Macro",
  22452. height: math.unit(5000, "feet")
  22453. },
  22454. {
  22455. name: "Megamacro",
  22456. height: math.unit(15, "miles")
  22457. },
  22458. {
  22459. name: "Gigamacro",
  22460. height: math.unit(4000, "miles")
  22461. },
  22462. {
  22463. name: "Galactic",
  22464. height: math.unit(50, "AU")
  22465. },
  22466. ]
  22467. ))
  22468. characterMakers.push(() => makeCharacter(
  22469. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22470. {
  22471. front: {
  22472. height: math.unit(5 + 6 / 12, "feet"),
  22473. weight: math.unit(220, "lb"),
  22474. name: "Front",
  22475. image: {
  22476. source: "./media/characters/amethyst/front.svg",
  22477. extra: 2078 / 2040,
  22478. bottom: 0.045
  22479. }
  22480. },
  22481. back: {
  22482. height: math.unit(5 + 6 / 12, "feet"),
  22483. weight: math.unit(220, "lb"),
  22484. name: "Back",
  22485. image: {
  22486. source: "./media/characters/amethyst/back.svg",
  22487. extra: 2021 / 1989,
  22488. bottom: 0.02
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(5 + 6 / 12, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(4 + 11 / 12, "feet"),
  22505. weight: math.unit(120, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/yumi-akiyama/front.svg",
  22509. extra: 1327 / 1235,
  22510. bottom: 0.02
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(4 + 11 / 12, "feet"),
  22515. weight: math.unit(120, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/yumi-akiyama/back.svg",
  22519. extra: 1287 / 1245,
  22520. bottom: 0.002
  22521. }
  22522. },
  22523. },
  22524. [
  22525. {
  22526. name: "Galactic",
  22527. height: math.unit(50, "galaxies"),
  22528. default: true
  22529. },
  22530. {
  22531. name: "Universal",
  22532. height: math.unit(100, "universes")
  22533. },
  22534. ]
  22535. ))
  22536. characterMakers.push(() => makeCharacter(
  22537. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22538. {
  22539. front: {
  22540. height: math.unit(8, "feet"),
  22541. weight: math.unit(500, "lb"),
  22542. name: "Front",
  22543. image: {
  22544. source: "./media/characters/rifter-yrmori/front.svg",
  22545. extra: 1180 / 1125,
  22546. bottom: 0.02
  22547. }
  22548. },
  22549. back: {
  22550. height: math.unit(8, "feet"),
  22551. weight: math.unit(500, "lb"),
  22552. name: "Back",
  22553. image: {
  22554. source: "./media/characters/rifter-yrmori/back.svg",
  22555. extra: 1190 / 1145,
  22556. bottom: 0.001
  22557. }
  22558. },
  22559. wings: {
  22560. height: math.unit(7.75, "feet"),
  22561. weight: math.unit(500, "lb"),
  22562. name: "Wings",
  22563. image: {
  22564. source: "./media/characters/rifter-yrmori/wings.svg",
  22565. extra: 1357 / 1285
  22566. }
  22567. },
  22568. maw: {
  22569. height: math.unit(0.8, "feet"),
  22570. name: "Maw",
  22571. image: {
  22572. source: "./media/characters/rifter-yrmori/maw.svg"
  22573. }
  22574. },
  22575. mawfront: {
  22576. height: math.unit(1.45, "feet"),
  22577. name: "Maw (Front)",
  22578. image: {
  22579. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(8, "feet"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Macro",
  22591. height: math.unit(42, "meters")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22597. {
  22598. were: {
  22599. height: math.unit(25 + 6 / 12, "feet"),
  22600. weight: math.unit(10000, "lb"),
  22601. name: "Were",
  22602. image: {
  22603. source: "./media/characters/tahajin/were.svg",
  22604. extra: 801 / 770,
  22605. bottom: 0.042
  22606. }
  22607. },
  22608. aquatic: {
  22609. height: math.unit(6 + 4 / 12, "feet"),
  22610. weight: math.unit(160, "lb"),
  22611. name: "Aquatic",
  22612. image: {
  22613. source: "./media/characters/tahajin/aquatic.svg",
  22614. extra: 572 / 542,
  22615. bottom: 0.04
  22616. }
  22617. },
  22618. chow: {
  22619. height: math.unit(8 + 11 / 12, "feet"),
  22620. weight: math.unit(450, "lb"),
  22621. name: "Chow",
  22622. image: {
  22623. source: "./media/characters/tahajin/chow.svg",
  22624. extra: 660 / 640,
  22625. bottom: 0.015
  22626. }
  22627. },
  22628. demiNaga: {
  22629. height: math.unit(6 + 8 / 12, "feet"),
  22630. weight: math.unit(300, "lb"),
  22631. name: "Demi Naga",
  22632. image: {
  22633. source: "./media/characters/tahajin/demi-naga.svg",
  22634. extra: 643 / 615,
  22635. bottom: 0.1
  22636. }
  22637. },
  22638. data: {
  22639. height: math.unit(5, "inches"),
  22640. weight: math.unit(0.1, "lb"),
  22641. name: "Data",
  22642. image: {
  22643. source: "./media/characters/tahajin/data.svg"
  22644. }
  22645. },
  22646. fluu: {
  22647. height: math.unit(5 + 7 / 12, "feet"),
  22648. weight: math.unit(140, "lb"),
  22649. name: "Fluu",
  22650. image: {
  22651. source: "./media/characters/tahajin/fluu.svg",
  22652. extra: 628 / 592,
  22653. bottom: 0.02
  22654. }
  22655. },
  22656. starWarrior: {
  22657. height: math.unit(4 + 5 / 12, "feet"),
  22658. weight: math.unit(50, "lb"),
  22659. name: "Star Warrior",
  22660. image: {
  22661. source: "./media/characters/tahajin/star-warrior.svg"
  22662. }
  22663. },
  22664. },
  22665. [
  22666. {
  22667. name: "Normal",
  22668. height: math.unit(25 + 6 / 12, "feet"),
  22669. default: true
  22670. },
  22671. ]
  22672. ))
  22673. characterMakers.push(() => makeCharacter(
  22674. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22675. {
  22676. front: {
  22677. height: math.unit(8, "feet"),
  22678. weight: math.unit(350, "lb"),
  22679. name: "Front",
  22680. image: {
  22681. source: "./media/characters/gabira/front.svg",
  22682. extra: 1261/1154,
  22683. bottom: 51/1312
  22684. }
  22685. },
  22686. back: {
  22687. height: math.unit(8, "feet"),
  22688. weight: math.unit(350, "lb"),
  22689. name: "Back",
  22690. image: {
  22691. source: "./media/characters/gabira/back.svg",
  22692. extra: 1265/1163,
  22693. bottom: 46/1311
  22694. }
  22695. },
  22696. head: {
  22697. height: math.unit(2.85, "feet"),
  22698. name: "Head",
  22699. image: {
  22700. source: "./media/characters/gabira/head.svg"
  22701. }
  22702. },
  22703. },
  22704. [
  22705. {
  22706. name: "Normal",
  22707. height: math.unit(8, "feet"),
  22708. default: true
  22709. },
  22710. ]
  22711. ))
  22712. characterMakers.push(() => makeCharacter(
  22713. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22714. {
  22715. front: {
  22716. height: math.unit(5 + 3 / 12, "feet"),
  22717. weight: math.unit(137, "lb"),
  22718. name: "Front",
  22719. image: {
  22720. source: "./media/characters/sasha-katraine/front.svg",
  22721. extra: 1745/1694,
  22722. bottom: 37/1782
  22723. }
  22724. },
  22725. back: {
  22726. height: math.unit(5 + 3 / 12, "feet"),
  22727. weight: math.unit(137, "lb"),
  22728. name: "Back",
  22729. image: {
  22730. source: "./media/characters/sasha-katraine/back.svg",
  22731. extra: 1776/1699,
  22732. bottom: 26/1802
  22733. }
  22734. },
  22735. },
  22736. [
  22737. {
  22738. name: "Micro",
  22739. height: math.unit(5, "inches")
  22740. },
  22741. {
  22742. name: "Normal",
  22743. height: math.unit(5 + 3 / 12, "feet"),
  22744. default: true
  22745. },
  22746. ]
  22747. ))
  22748. characterMakers.push(() => makeCharacter(
  22749. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22750. {
  22751. side: {
  22752. height: math.unit(4, "inches"),
  22753. weight: math.unit(200, "grams"),
  22754. name: "Side",
  22755. image: {
  22756. source: "./media/characters/der/side.svg",
  22757. extra: 719 / 400,
  22758. bottom: 30.6 / 749.9187
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Micro",
  22765. height: math.unit(4, "inches"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22772. {
  22773. side: {
  22774. height: math.unit(30, "meters"),
  22775. weight: math.unit(700, "tonnes"),
  22776. name: "Side",
  22777. image: {
  22778. source: "./media/characters/fixerdragon/side.svg",
  22779. extra: (1293.0514 - 116.03) / 1106.86,
  22780. bottom: 116.03 / 1293.0514
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Planck",
  22787. height: math.unit(1.6e-35, "meters")
  22788. },
  22789. {
  22790. name: "Micro",
  22791. height: math.unit(0.4, "meters")
  22792. },
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(30, "meters"),
  22796. default: true
  22797. },
  22798. {
  22799. name: "Megamacro",
  22800. height: math.unit(1.2, "megameters")
  22801. },
  22802. {
  22803. name: "Teramacro",
  22804. height: math.unit(130, "terameters")
  22805. },
  22806. {
  22807. name: "Yottamacro",
  22808. height: math.unit(6200, "yottameters")
  22809. },
  22810. ]
  22811. ));
  22812. characterMakers.push(() => makeCharacter(
  22813. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22814. {
  22815. front: {
  22816. height: math.unit(8, "feet"),
  22817. weight: math.unit(250, "lb"),
  22818. name: "Front",
  22819. image: {
  22820. source: "./media/characters/kite/front.svg",
  22821. extra: 2796 / 2659,
  22822. bottom: 0.002
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(8, "feet"),
  22830. default: true
  22831. },
  22832. {
  22833. name: "Macro",
  22834. height: math.unit(360, "feet")
  22835. },
  22836. {
  22837. name: "Megamacro",
  22838. height: math.unit(1500, "feet")
  22839. },
  22840. ]
  22841. ))
  22842. characterMakers.push(() => makeCharacter(
  22843. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22844. {
  22845. front: {
  22846. height: math.unit(5 + 11/12, "feet"),
  22847. weight: math.unit(170, "lb"),
  22848. name: "Front",
  22849. image: {
  22850. source: "./media/characters/poojawa-vynar/front.svg",
  22851. extra: 1735/1585,
  22852. bottom: 96/1831
  22853. }
  22854. },
  22855. back: {
  22856. height: math.unit(5 + 11/12, "feet"),
  22857. weight: math.unit(170, "lb"),
  22858. name: "Back",
  22859. image: {
  22860. source: "./media/characters/poojawa-vynar/back.svg",
  22861. extra: 1749/1607,
  22862. bottom: 28/1777
  22863. }
  22864. },
  22865. male: {
  22866. height: math.unit(5 + 11/12, "feet"),
  22867. weight: math.unit(170, "lb"),
  22868. name: "Male",
  22869. image: {
  22870. source: "./media/characters/poojawa-vynar/male.svg",
  22871. extra: 1855/1713,
  22872. bottom: 63/1918
  22873. }
  22874. },
  22875. taur: {
  22876. height: math.unit(5 + 11/12, "feet"),
  22877. weight: math.unit(170, "lb"),
  22878. name: "Taur",
  22879. image: {
  22880. source: "./media/characters/poojawa-vynar/taur.svg",
  22881. extra: 1151/1059,
  22882. bottom: 356/1507
  22883. }
  22884. },
  22885. frontDressed: {
  22886. height: math.unit(5 + 11/12, "feet"),
  22887. weight: math.unit(170, "lb"),
  22888. name: "Front (Dressed)",
  22889. image: {
  22890. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22891. extra: 1735/1585,
  22892. bottom: 96/1831
  22893. }
  22894. },
  22895. backDressed: {
  22896. height: math.unit(5 + 11/12, "feet"),
  22897. weight: math.unit(170, "lb"),
  22898. name: "Back (Dressed)",
  22899. image: {
  22900. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22901. extra: 1749/1607,
  22902. bottom: 28/1777
  22903. }
  22904. },
  22905. maleDressed: {
  22906. height: math.unit(5 + 11/12, "feet"),
  22907. weight: math.unit(170, "lb"),
  22908. name: "Male (Dressed)",
  22909. image: {
  22910. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22911. extra: 1855/1713,
  22912. bottom: 63/1918
  22913. }
  22914. },
  22915. taurDressed: {
  22916. height: math.unit(5 + 11/12, "feet"),
  22917. weight: math.unit(170, "lb"),
  22918. name: "Taur (Dressed)",
  22919. image: {
  22920. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22921. extra: 1151/1059,
  22922. bottom: 356/1507
  22923. }
  22924. },
  22925. maw: {
  22926. height: math.unit(1.46, "feet"),
  22927. name: "Maw",
  22928. image: {
  22929. source: "./media/characters/poojawa-vynar/maw.svg"
  22930. }
  22931. },
  22932. head: {
  22933. height: math.unit(2.34, "feet"),
  22934. name: "Head",
  22935. image: {
  22936. source: "./media/characters/poojawa-vynar/head.svg"
  22937. }
  22938. },
  22939. paw: {
  22940. height: math.unit(1.61, "feet"),
  22941. name: "Paw",
  22942. image: {
  22943. source: "./media/characters/poojawa-vynar/paw.svg"
  22944. }
  22945. },
  22946. pawToering: {
  22947. height: math.unit(1.72, "feet"),
  22948. name: "Paw (Toering)",
  22949. image: {
  22950. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22951. }
  22952. },
  22953. toering: {
  22954. height: math.unit(2.9, "inches"),
  22955. name: "Toering",
  22956. image: {
  22957. source: "./media/characters/poojawa-vynar/toering.svg"
  22958. }
  22959. },
  22960. shaft: {
  22961. height: math.unit(0.625, "feet"),
  22962. name: "Shaft",
  22963. image: {
  22964. source: "./media/characters/poojawa-vynar/shaft.svg"
  22965. }
  22966. },
  22967. spade: {
  22968. height: math.unit(0.42, "feet"),
  22969. name: "Spade",
  22970. image: {
  22971. source: "./media/characters/poojawa-vynar/spade.svg"
  22972. }
  22973. },
  22974. },
  22975. [
  22976. {
  22977. name: "Shortstack",
  22978. height: math.unit(4, "feet")
  22979. },
  22980. {
  22981. name: "Normal",
  22982. height: math.unit(5 + 11 / 12, "feet"),
  22983. default: true
  22984. },
  22985. {
  22986. name: "Tauric",
  22987. height: math.unit(4, "meters")
  22988. },
  22989. ]
  22990. ))
  22991. characterMakers.push(() => makeCharacter(
  22992. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22993. {
  22994. front: {
  22995. height: math.unit(293, "meters"),
  22996. weight: math.unit(70400, "tons"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/violette/front.svg",
  23000. extra: 1227 / 1180,
  23001. bottom: 0.005
  23002. }
  23003. },
  23004. back: {
  23005. height: math.unit(293, "meters"),
  23006. weight: math.unit(70400, "tons"),
  23007. name: "Back",
  23008. image: {
  23009. source: "./media/characters/violette/back.svg",
  23010. extra: 1227 / 1180,
  23011. bottom: 0.005
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Macro",
  23018. height: math.unit(293, "meters"),
  23019. default: true
  23020. },
  23021. ]
  23022. ))
  23023. characterMakers.push(() => makeCharacter(
  23024. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23025. {
  23026. front: {
  23027. height: math.unit(1050, "feet"),
  23028. weight: math.unit(200000, "tons"),
  23029. name: "Front",
  23030. image: {
  23031. source: "./media/characters/alessandra/front.svg",
  23032. extra: 960 / 912,
  23033. bottom: 0.06
  23034. }
  23035. },
  23036. },
  23037. [
  23038. {
  23039. name: "Macro",
  23040. height: math.unit(1050, "feet")
  23041. },
  23042. {
  23043. name: "Macro+",
  23044. height: math.unit(900, "meters"),
  23045. default: true
  23046. },
  23047. ]
  23048. ))
  23049. characterMakers.push(() => makeCharacter(
  23050. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23051. {
  23052. front: {
  23053. height: math.unit(5, "feet"),
  23054. weight: math.unit(187, "lb"),
  23055. name: "Front",
  23056. image: {
  23057. source: "./media/characters/person/front.svg",
  23058. extra: 3087 / 2945,
  23059. bottom: 91 / 3181
  23060. }
  23061. },
  23062. },
  23063. [
  23064. {
  23065. name: "Micro",
  23066. height: math.unit(3, "inches")
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(5, "feet"),
  23071. default: true
  23072. },
  23073. {
  23074. name: "Macro",
  23075. height: math.unit(90, "feet")
  23076. },
  23077. {
  23078. name: "Max Size",
  23079. height: math.unit(280, "feet")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(4.5, "meters"),
  23088. weight: math.unit(3200, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/ty/front.svg",
  23092. extra: 1038 / 960,
  23093. bottom: 31.156 / 1068
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(4.5, "meters"),
  23098. weight: math.unit(3200, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/ty/back.svg",
  23102. extra: 1044 / 966,
  23103. bottom: 7.48 / 1049
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(4.5, "meters"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(5 + 4 / 12, "feet"),
  23120. weight: math.unit(115, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/rocky/front.svg",
  23124. extra: 1012 / 975,
  23125. bottom: 54 / 1066
  23126. }
  23127. },
  23128. },
  23129. [
  23130. {
  23131. name: "Normal",
  23132. height: math.unit(5 + 4 / 12, "feet"),
  23133. default: true
  23134. },
  23135. ]
  23136. ))
  23137. characterMakers.push(() => makeCharacter(
  23138. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23139. {
  23140. upright: {
  23141. height: math.unit(6, "meters"),
  23142. weight: math.unit(4000, "kg"),
  23143. name: "Upright",
  23144. image: {
  23145. source: "./media/characters/ruin/upright.svg",
  23146. extra: 668 / 661,
  23147. bottom: 42 / 799.8396
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(6, "meters"),
  23155. default: true
  23156. },
  23157. ]
  23158. ))
  23159. characterMakers.push(() => makeCharacter(
  23160. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23161. {
  23162. front: {
  23163. height: math.unit(5, "feet"),
  23164. weight: math.unit(106, "lb"),
  23165. name: "Front",
  23166. image: {
  23167. source: "./media/characters/robin/front.svg",
  23168. extra: 862 / 799,
  23169. bottom: 42.4 / 914.8856
  23170. }
  23171. },
  23172. },
  23173. [
  23174. {
  23175. name: "Normal",
  23176. height: math.unit(5, "feet"),
  23177. default: true
  23178. },
  23179. ]
  23180. ))
  23181. characterMakers.push(() => makeCharacter(
  23182. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23183. {
  23184. side: {
  23185. height: math.unit(3, "feet"),
  23186. weight: math.unit(225, "lb"),
  23187. name: "Side",
  23188. image: {
  23189. source: "./media/characters/saian/side.svg",
  23190. extra: 566 / 356,
  23191. bottom: 79.7 / 643
  23192. }
  23193. },
  23194. maw: {
  23195. height: math.unit(2.85, "feet"),
  23196. name: "Maw",
  23197. image: {
  23198. source: "./media/characters/saian/maw.svg"
  23199. }
  23200. },
  23201. },
  23202. [
  23203. {
  23204. name: "Normal",
  23205. height: math.unit(3, "feet"),
  23206. default: true
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23212. {
  23213. side: {
  23214. height: math.unit(8, "feet"),
  23215. weight: math.unit(300, "lb"),
  23216. name: "Side",
  23217. image: {
  23218. source: "./media/characters/equus-silvermane/side.svg",
  23219. extra: 2176 / 2050,
  23220. bottom: 65.7 / 2245
  23221. }
  23222. },
  23223. front: {
  23224. height: math.unit(8, "feet"),
  23225. weight: math.unit(300, "lb"),
  23226. name: "Front",
  23227. image: {
  23228. source: "./media/characters/equus-silvermane/front.svg",
  23229. extra: 4633 / 4400,
  23230. bottom: 71.3 / 4706.915
  23231. }
  23232. },
  23233. sideStepping: {
  23234. height: math.unit(8, "feet"),
  23235. weight: math.unit(300, "lb"),
  23236. name: "Side (Stepping)",
  23237. image: {
  23238. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23239. extra: 1968 / 1860,
  23240. bottom: 16.4 / 1989
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Normal",
  23247. height: math.unit(8, "feet")
  23248. },
  23249. {
  23250. name: "Minimacro",
  23251. height: math.unit(75, "feet"),
  23252. default: true
  23253. },
  23254. {
  23255. name: "Macro",
  23256. height: math.unit(150, "feet")
  23257. },
  23258. {
  23259. name: "Macro+",
  23260. height: math.unit(1000, "feet")
  23261. },
  23262. {
  23263. name: "Megamacro",
  23264. height: math.unit(1, "mile")
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23270. {
  23271. side: {
  23272. height: math.unit(20, "feet"),
  23273. weight: math.unit(30000, "kg"),
  23274. name: "Side",
  23275. image: {
  23276. source: "./media/characters/windar/side.svg",
  23277. extra: 1491 / 1248,
  23278. bottom: 82.56 / 1568
  23279. }
  23280. },
  23281. },
  23282. [
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(20, "feet"),
  23286. default: true
  23287. },
  23288. ]
  23289. ))
  23290. characterMakers.push(() => makeCharacter(
  23291. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23292. {
  23293. side: {
  23294. height: math.unit(15.66, "feet"),
  23295. weight: math.unit(150, "lb"),
  23296. name: "Side",
  23297. image: {
  23298. source: "./media/characters/melody/side.svg",
  23299. extra: 1097 / 944,
  23300. bottom: 11.8 / 1109
  23301. }
  23302. },
  23303. sideOutfit: {
  23304. height: math.unit(15.66, "feet"),
  23305. weight: math.unit(150, "lb"),
  23306. name: "Side (Outfit)",
  23307. image: {
  23308. source: "./media/characters/melody/side-outfit.svg",
  23309. extra: 1097 / 944,
  23310. bottom: 11.8 / 1109
  23311. }
  23312. },
  23313. },
  23314. [
  23315. {
  23316. name: "Normal",
  23317. height: math.unit(15.66, "feet"),
  23318. default: true
  23319. },
  23320. ]
  23321. ))
  23322. characterMakers.push(() => makeCharacter(
  23323. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23324. {
  23325. armoredFront: {
  23326. height: math.unit(8, "feet"),
  23327. weight: math.unit(325, "lb"),
  23328. name: "Front",
  23329. image: {
  23330. source: "./media/characters/windera/armored-front.svg",
  23331. extra: 1830/1598,
  23332. bottom: 151/1981
  23333. },
  23334. form: "armored",
  23335. default: true
  23336. },
  23337. macroFront: {
  23338. height: math.unit(70, "feet"),
  23339. weight: math.unit(315453, "lb"),
  23340. name: "Front",
  23341. image: {
  23342. source: "./media/characters/windera/macro-front.svg",
  23343. extra: 963/883,
  23344. bottom: 23/986
  23345. },
  23346. form: "macro",
  23347. default: true
  23348. },
  23349. },
  23350. [
  23351. {
  23352. name: "Normal",
  23353. height: math.unit(8, "feet"),
  23354. default: true,
  23355. form: "armored"
  23356. },
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(70, "feet"),
  23360. default: true,
  23361. form: "macro"
  23362. },
  23363. ],
  23364. {
  23365. "armored": {
  23366. name: "Armored",
  23367. default: true
  23368. },
  23369. "macro": {
  23370. name: "Macro",
  23371. },
  23372. }
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23376. {
  23377. front: {
  23378. height: math.unit(28.75, "feet"),
  23379. weight: math.unit(2000, "kg"),
  23380. name: "Front",
  23381. image: {
  23382. source: "./media/characters/sonear/front.svg",
  23383. extra: 1041.1 / 964.9,
  23384. bottom: 53.7 / 1096.6
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Normal",
  23391. height: math.unit(28.75, "feet"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23398. {
  23399. side: {
  23400. height: math.unit(25.5, "feet"),
  23401. weight: math.unit(23000, "kg"),
  23402. name: "Side",
  23403. image: {
  23404. source: "./media/characters/kanara/side.svg"
  23405. }
  23406. },
  23407. },
  23408. [
  23409. {
  23410. name: "Normal",
  23411. height: math.unit(25.5, "feet"),
  23412. default: true
  23413. },
  23414. ]
  23415. ))
  23416. characterMakers.push(() => makeCharacter(
  23417. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23418. {
  23419. side: {
  23420. height: math.unit(10, "feet"),
  23421. weight: math.unit(1000, "kg"),
  23422. name: "Side",
  23423. image: {
  23424. source: "./media/characters/ereus/side.svg",
  23425. extra: 1157 / 959,
  23426. bottom: 153 / 1312.5
  23427. }
  23428. },
  23429. },
  23430. [
  23431. {
  23432. name: "Normal",
  23433. height: math.unit(10, "feet"),
  23434. default: true
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23440. {
  23441. side: {
  23442. height: math.unit(4.5, "feet"),
  23443. weight: math.unit(500, "lb"),
  23444. name: "Side",
  23445. image: {
  23446. source: "./media/characters/e-ter/side.svg",
  23447. extra: 1550 / 1248,
  23448. bottom: 146 / 1694
  23449. }
  23450. },
  23451. },
  23452. [
  23453. {
  23454. name: "Normal",
  23455. height: math.unit(4.5, "feet"),
  23456. default: true
  23457. },
  23458. ]
  23459. ))
  23460. characterMakers.push(() => makeCharacter(
  23461. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23462. {
  23463. side: {
  23464. height: math.unit(9.7, "feet"),
  23465. weight: math.unit(4000, "kg"),
  23466. name: "Side",
  23467. image: {
  23468. source: "./media/characters/yamie/side.svg"
  23469. }
  23470. },
  23471. },
  23472. [
  23473. {
  23474. name: "Normal",
  23475. height: math.unit(9.7, "feet"),
  23476. default: true
  23477. },
  23478. ]
  23479. ))
  23480. characterMakers.push(() => makeCharacter(
  23481. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23482. {
  23483. front: {
  23484. height: math.unit(50, "feet"),
  23485. weight: math.unit(50000, "kg"),
  23486. name: "Front",
  23487. image: {
  23488. source: "./media/characters/anders/front.svg",
  23489. extra: 570 / 539,
  23490. bottom: 14.7 / 586.7
  23491. }
  23492. },
  23493. },
  23494. [
  23495. {
  23496. name: "Large",
  23497. height: math.unit(50, "feet")
  23498. },
  23499. {
  23500. name: "Macro",
  23501. height: math.unit(2000, "feet"),
  23502. default: true
  23503. },
  23504. {
  23505. name: "Megamacro",
  23506. height: math.unit(12, "miles")
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23512. {
  23513. front: {
  23514. height: math.unit(7 + 2 / 12, "feet"),
  23515. weight: math.unit(300, "lb"),
  23516. name: "Front",
  23517. image: {
  23518. source: "./media/characters/reban/front.svg",
  23519. extra: 1287/1212,
  23520. bottom: 148/1435
  23521. }
  23522. },
  23523. head: {
  23524. height: math.unit(1.95, "feet"),
  23525. name: "Head",
  23526. image: {
  23527. source: "./media/characters/reban/head.svg"
  23528. }
  23529. },
  23530. maw: {
  23531. height: math.unit(0.95, "feet"),
  23532. name: "Maw",
  23533. image: {
  23534. source: "./media/characters/reban/maw.svg"
  23535. }
  23536. },
  23537. foot: {
  23538. height: math.unit(1.65, "feet"),
  23539. name: "Foot",
  23540. image: {
  23541. source: "./media/characters/reban/foot.svg"
  23542. }
  23543. },
  23544. dick: {
  23545. height: math.unit(7 / 5, "feet"),
  23546. name: "Dick",
  23547. image: {
  23548. source: "./media/characters/reban/dick.svg"
  23549. }
  23550. },
  23551. },
  23552. [
  23553. {
  23554. name: "Natural Height",
  23555. height: math.unit(7 + 2 / 12, "feet")
  23556. },
  23557. {
  23558. name: "Macro",
  23559. height: math.unit(500, "feet"),
  23560. default: true
  23561. },
  23562. {
  23563. name: "Canon Height",
  23564. height: math.unit(50, "AU")
  23565. },
  23566. ]
  23567. ))
  23568. characterMakers.push(() => makeCharacter(
  23569. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23570. {
  23571. front: {
  23572. height: math.unit(6, "feet"),
  23573. weight: math.unit(150, "lb"),
  23574. name: "Front",
  23575. image: {
  23576. source: "./media/characters/terrance-keayes/front.svg",
  23577. extra: 1.005,
  23578. bottom: 151 / 1615
  23579. }
  23580. },
  23581. side: {
  23582. height: math.unit(6, "feet"),
  23583. weight: math.unit(150, "lb"),
  23584. name: "Side",
  23585. image: {
  23586. source: "./media/characters/terrance-keayes/side.svg",
  23587. extra: 1.005,
  23588. bottom: 129.4 / 1544
  23589. }
  23590. },
  23591. back: {
  23592. height: math.unit(6, "feet"),
  23593. weight: math.unit(150, "lb"),
  23594. name: "Back",
  23595. image: {
  23596. source: "./media/characters/terrance-keayes/back.svg",
  23597. extra: 1.005,
  23598. bottom: 58.4 / 1557.3
  23599. }
  23600. },
  23601. dick: {
  23602. height: math.unit(6 * 0.208, "feet"),
  23603. name: "Dick",
  23604. image: {
  23605. source: "./media/characters/terrance-keayes/dick.svg"
  23606. }
  23607. },
  23608. },
  23609. [
  23610. {
  23611. name: "Canon Height",
  23612. height: math.unit(35, "miles"),
  23613. default: true
  23614. },
  23615. ]
  23616. ))
  23617. characterMakers.push(() => makeCharacter(
  23618. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23619. {
  23620. front: {
  23621. height: math.unit(6, "feet"),
  23622. weight: math.unit(150, "lb"),
  23623. name: "Front",
  23624. image: {
  23625. source: "./media/characters/ofelia/front.svg",
  23626. extra: 1130/1117,
  23627. bottom: 91/1221
  23628. }
  23629. },
  23630. back: {
  23631. height: math.unit(6, "feet"),
  23632. weight: math.unit(150, "lb"),
  23633. name: "Back",
  23634. image: {
  23635. source: "./media/characters/ofelia/back.svg",
  23636. extra: 1172/1159,
  23637. bottom: 28/1200
  23638. }
  23639. },
  23640. maw: {
  23641. height: math.unit(1, "feet"),
  23642. name: "Maw",
  23643. image: {
  23644. source: "./media/characters/ofelia/maw.svg"
  23645. }
  23646. },
  23647. foot: {
  23648. height: math.unit(1.949, "feet"),
  23649. name: "Foot",
  23650. image: {
  23651. source: "./media/characters/ofelia/foot.svg"
  23652. }
  23653. },
  23654. },
  23655. [
  23656. {
  23657. name: "Canon Height",
  23658. height: math.unit(2000, "miles"),
  23659. default: true
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(6, "feet"),
  23668. weight: math.unit(150, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/samuel/front.svg",
  23672. extra: 265 / 258,
  23673. bottom: 2 / 266.1566
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Macro",
  23680. height: math.unit(100, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Full Size",
  23685. height: math.unit(1000, "miles")
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23691. {
  23692. front: {
  23693. height: math.unit(6, "feet"),
  23694. weight: math.unit(300, "lb"),
  23695. name: "Front",
  23696. image: {
  23697. source: "./media/characters/beishir-kiel/front.svg",
  23698. extra: 569 / 547,
  23699. bottom: 41.9 / 609
  23700. }
  23701. },
  23702. maw: {
  23703. height: math.unit(6 * 0.202, "feet"),
  23704. name: "Maw",
  23705. image: {
  23706. source: "./media/characters/beishir-kiel/maw.svg"
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(300, "feet"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(5 + 7/12, "feet"),
  23723. weight: math.unit(120, "lb"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/logan-grey/front.svg",
  23727. extra: 1836/1738,
  23728. bottom: 108/1944
  23729. }
  23730. },
  23731. back: {
  23732. height: math.unit(5 + 7/12, "feet"),
  23733. weight: math.unit(120, "lb"),
  23734. name: "Back",
  23735. image: {
  23736. source: "./media/characters/logan-grey/back.svg",
  23737. extra: 1880/1794,
  23738. bottom: 24/1904
  23739. }
  23740. },
  23741. frontSfw: {
  23742. height: math.unit(5 + 7/12, "feet"),
  23743. weight: math.unit(120, "lb"),
  23744. name: "Front (SFW)",
  23745. image: {
  23746. source: "./media/characters/logan-grey/front-sfw.svg",
  23747. extra: 1836/1738,
  23748. bottom: 108/1944
  23749. }
  23750. },
  23751. backSfw: {
  23752. height: math.unit(5 + 7/12, "feet"),
  23753. weight: math.unit(120, "lb"),
  23754. name: "Back (SFW)",
  23755. image: {
  23756. source: "./media/characters/logan-grey/back-sfw.svg",
  23757. extra: 1880/1794,
  23758. bottom: 24/1904
  23759. }
  23760. },
  23761. hands: {
  23762. height: math.unit(0.84, "feet"),
  23763. name: "Hands",
  23764. image: {
  23765. source: "./media/characters/logan-grey/hands.svg"
  23766. }
  23767. },
  23768. paws: {
  23769. height: math.unit(0.72, "feet"),
  23770. name: "Paws",
  23771. image: {
  23772. source: "./media/characters/logan-grey/paws.svg"
  23773. }
  23774. },
  23775. cock: {
  23776. height: math.unit(1.45, "feet"),
  23777. name: "Cock",
  23778. image: {
  23779. source: "./media/characters/logan-grey/cock.svg"
  23780. }
  23781. },
  23782. cockAlt: {
  23783. height: math.unit(1.437, "feet"),
  23784. name: "Cock (alt)",
  23785. image: {
  23786. source: "./media/characters/logan-grey/cock-alt.svg"
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Normal",
  23793. height: math.unit(5 + 8 / 12, "feet")
  23794. },
  23795. {
  23796. name: "The 500 Foot Femboy",
  23797. height: math.unit(500, "feet"),
  23798. default: true
  23799. },
  23800. {
  23801. name: "Megmacro",
  23802. height: math.unit(20, "miles")
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23808. {
  23809. front: {
  23810. height: math.unit(8 + 2 / 12, "feet"),
  23811. weight: math.unit(275, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/draganta/front.svg",
  23815. extra: 1177 / 1135,
  23816. bottom: 33.46 / 1212.1
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Normal",
  23823. height: math.unit(8 + 6 / 12, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Macro",
  23828. height: math.unit(150, "feet")
  23829. },
  23830. {
  23831. name: "Megamacro",
  23832. height: math.unit(1000, "miles")
  23833. },
  23834. ]
  23835. ))
  23836. characterMakers.push(() => makeCharacter(
  23837. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23838. {
  23839. front: {
  23840. height: math.unit(1.72, "m"),
  23841. weight: math.unit(80, "lb"),
  23842. name: "Front",
  23843. image: {
  23844. source: "./media/characters/voski/front.svg",
  23845. extra: 2076.22 / 2022.4,
  23846. bottom: 102.7 / 2177.3866
  23847. }
  23848. },
  23849. frontFlaccid: {
  23850. height: math.unit(1.72, "m"),
  23851. weight: math.unit(80, "lb"),
  23852. name: "Front (Flaccid)",
  23853. image: {
  23854. source: "./media/characters/voski/front-flaccid.svg",
  23855. extra: 2076.22 / 2022.4,
  23856. bottom: 102.7 / 2177.3866
  23857. }
  23858. },
  23859. frontErect: {
  23860. height: math.unit(1.72, "m"),
  23861. weight: math.unit(80, "lb"),
  23862. name: "Front (Erect)",
  23863. image: {
  23864. source: "./media/characters/voski/front-erect.svg",
  23865. extra: 2076.22 / 2022.4,
  23866. bottom: 102.7 / 2177.3866
  23867. }
  23868. },
  23869. back: {
  23870. height: math.unit(1.72, "m"),
  23871. weight: math.unit(80, "lb"),
  23872. name: "Back",
  23873. image: {
  23874. source: "./media/characters/voski/back.svg",
  23875. extra: 2104 / 2051,
  23876. bottom: 10.45 / 2113.63
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Normal",
  23883. height: math.unit(1.72, "m")
  23884. },
  23885. {
  23886. name: "Macro",
  23887. height: math.unit(55, "m"),
  23888. default: true
  23889. },
  23890. {
  23891. name: "Macro+",
  23892. height: math.unit(300, "m")
  23893. },
  23894. {
  23895. name: "Macro++",
  23896. height: math.unit(700, "m")
  23897. },
  23898. {
  23899. name: "Macro+++",
  23900. height: math.unit(4500, "m")
  23901. },
  23902. {
  23903. name: "Macro++++",
  23904. height: math.unit(45, "km")
  23905. },
  23906. {
  23907. name: "Macro+++++",
  23908. height: math.unit(1220, "km")
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23914. {
  23915. front: {
  23916. height: math.unit(2.3, "m"),
  23917. weight: math.unit(304, "kg"),
  23918. name: "Front",
  23919. image: {
  23920. source: "./media/characters/icowom-lee/front.svg",
  23921. extra: 985 / 955,
  23922. bottom: 25.4 / 1012
  23923. }
  23924. },
  23925. fronttentacles: {
  23926. height: math.unit(2.3, "m"),
  23927. weight: math.unit(304, "kg"),
  23928. name: "Front-tentacles",
  23929. image: {
  23930. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23931. extra: 985 / 955,
  23932. bottom: 25.4 / 1012
  23933. }
  23934. },
  23935. back: {
  23936. height: math.unit(2.3, "m"),
  23937. weight: math.unit(304, "kg"),
  23938. name: "Back",
  23939. image: {
  23940. source: "./media/characters/icowom-lee/back.svg",
  23941. extra: 975 / 954,
  23942. bottom: 9.5 / 985
  23943. }
  23944. },
  23945. backtentacles: {
  23946. height: math.unit(2.3, "m"),
  23947. weight: math.unit(304, "kg"),
  23948. name: "Back-tentacles",
  23949. image: {
  23950. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23951. extra: 975 / 954,
  23952. bottom: 9.5 / 985
  23953. }
  23954. },
  23955. frontDressed: {
  23956. height: math.unit(2.3, "m"),
  23957. weight: math.unit(304, "kg"),
  23958. name: "Front (Dressed)",
  23959. image: {
  23960. source: "./media/characters/icowom-lee/front-dressed.svg",
  23961. extra: 3076 / 2933,
  23962. bottom: 51.4 / 3125.1889
  23963. }
  23964. },
  23965. rump: {
  23966. height: math.unit(0.776, "meters"),
  23967. name: "Rump",
  23968. image: {
  23969. source: "./media/characters/icowom-lee/rump.svg"
  23970. }
  23971. },
  23972. genitals: {
  23973. height: math.unit(0.78, "meters"),
  23974. name: "Genitals",
  23975. image: {
  23976. source: "./media/characters/icowom-lee/genitals.svg"
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Normal",
  23983. height: math.unit(2.3, "meters"),
  23984. default: true
  23985. },
  23986. {
  23987. name: "Macro",
  23988. height: math.unit(94, "meters"),
  23989. default: true
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23995. {
  23996. front: {
  23997. height: math.unit(22, "meters"),
  23998. weight: math.unit(21000, "kg"),
  23999. name: "Front",
  24000. image: {
  24001. source: "./media/characters/shock-diamond/front.svg",
  24002. extra: 2204 / 2053,
  24003. bottom: 65 / 2239.47
  24004. }
  24005. },
  24006. frontNude: {
  24007. height: math.unit(22, "meters"),
  24008. weight: math.unit(21000, "kg"),
  24009. name: "Front (Nude)",
  24010. image: {
  24011. source: "./media/characters/shock-diamond/front-nude.svg",
  24012. extra: 2514 / 2285,
  24013. bottom: 13 / 2527.56
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Normal",
  24020. height: math.unit(3, "meters")
  24021. },
  24022. {
  24023. name: "Macro",
  24024. height: math.unit(22, "meters"),
  24025. default: true
  24026. },
  24027. ]
  24028. ))
  24029. characterMakers.push(() => makeCharacter(
  24030. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24031. {
  24032. front: {
  24033. height: math.unit(5 + 4/12, "feet"),
  24034. weight: math.unit(125, "lb"),
  24035. name: "Front",
  24036. image: {
  24037. source: "./media/characters/rory/front.svg",
  24038. extra: 1790/1681,
  24039. bottom: 66/1856
  24040. }
  24041. },
  24042. back: {
  24043. height: math.unit(5 + 4/12, "feet"),
  24044. weight: math.unit(125, "lb"),
  24045. name: "Back",
  24046. image: {
  24047. source: "./media/characters/rory/back.svg",
  24048. extra: 1805/1690,
  24049. bottom: 56/1861
  24050. }
  24051. },
  24052. frontDressed: {
  24053. height: math.unit(5 + 4/12, "feet"),
  24054. weight: math.unit(125, "lb"),
  24055. name: "Front (Dressed)",
  24056. image: {
  24057. source: "./media/characters/rory/front-dressed.svg",
  24058. extra: 1790/1681,
  24059. bottom: 66/1856
  24060. }
  24061. },
  24062. backDressed: {
  24063. height: math.unit(5 + 4/12, "feet"),
  24064. weight: math.unit(125, "lb"),
  24065. name: "Back (Dressed)",
  24066. image: {
  24067. source: "./media/characters/rory/back-dressed.svg",
  24068. extra: 1805/1690,
  24069. bottom: 56/1861
  24070. }
  24071. },
  24072. frontNsfw: {
  24073. height: math.unit(5 + 4/12, "feet"),
  24074. weight: math.unit(125, "lb"),
  24075. name: "Front (NSFW)",
  24076. image: {
  24077. source: "./media/characters/rory/front-nsfw.svg",
  24078. extra: 1790/1681,
  24079. bottom: 66/1856
  24080. }
  24081. },
  24082. backNsfw: {
  24083. height: math.unit(5 + 4/12, "feet"),
  24084. weight: math.unit(125, "lb"),
  24085. name: "Back (NSFW)",
  24086. image: {
  24087. source: "./media/characters/rory/back-nsfw.svg",
  24088. extra: 1805/1690,
  24089. bottom: 56/1861
  24090. }
  24091. },
  24092. dick: {
  24093. height: math.unit(0.8, "feet"),
  24094. name: "Dick",
  24095. image: {
  24096. source: "./media/characters/rory/dick.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Micro",
  24103. height: math.unit(3, "inches")
  24104. },
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(5 + 4/12, "feet"),
  24108. default: true
  24109. },
  24110. {
  24111. name: "Macro",
  24112. height: math.unit(90, "feet")
  24113. },
  24114. {
  24115. name: "Supercharged",
  24116. height: math.unit(270, "feet")
  24117. },
  24118. ]
  24119. ))
  24120. characterMakers.push(() => makeCharacter(
  24121. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24122. {
  24123. front: {
  24124. height: math.unit(5 + 9 / 12, "feet"),
  24125. weight: math.unit(190, "lb"),
  24126. name: "Front",
  24127. image: {
  24128. source: "./media/characters/sprisk/front.svg",
  24129. extra: 1225 / 1180,
  24130. bottom: 42.7 / 1266.4
  24131. }
  24132. },
  24133. frontNsfw: {
  24134. height: math.unit(5 + 9 / 12, "feet"),
  24135. weight: math.unit(190, "lb"),
  24136. name: "Front (NSFW)",
  24137. image: {
  24138. source: "./media/characters/sprisk/front-nsfw.svg",
  24139. extra: 1225 / 1180,
  24140. bottom: 42.7 / 1266.4
  24141. }
  24142. },
  24143. back: {
  24144. height: math.unit(5 + 9 / 12, "feet"),
  24145. weight: math.unit(190, "lb"),
  24146. name: "Back",
  24147. image: {
  24148. source: "./media/characters/sprisk/back.svg",
  24149. extra: 1247 / 1200,
  24150. bottom: 5.6 / 1253.04
  24151. }
  24152. },
  24153. },
  24154. [
  24155. {
  24156. name: "Tiny",
  24157. height: math.unit(2, "inches")
  24158. },
  24159. {
  24160. name: "Normal",
  24161. height: math.unit(5 + 9 / 12, "feet"),
  24162. default: true
  24163. },
  24164. {
  24165. name: "Mini Macro",
  24166. height: math.unit(18, "feet")
  24167. },
  24168. {
  24169. name: "Macro",
  24170. height: math.unit(100, "feet")
  24171. },
  24172. {
  24173. name: "MACRO",
  24174. height: math.unit(50, "miles")
  24175. },
  24176. {
  24177. name: "M A C R O",
  24178. height: math.unit(300, "miles")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24184. {
  24185. side: {
  24186. height: math.unit(15.6, "meters"),
  24187. weight: math.unit(700000, "kg"),
  24188. name: "Side",
  24189. image: {
  24190. source: "./media/characters/bunsen/side.svg",
  24191. extra: 1644 / 358
  24192. }
  24193. },
  24194. foot: {
  24195. height: math.unit(1.611 * 1644 / 358, "meter"),
  24196. name: "Foot",
  24197. image: {
  24198. source: "./media/characters/bunsen/foot.svg"
  24199. }
  24200. },
  24201. },
  24202. [
  24203. {
  24204. name: "Small",
  24205. height: math.unit(10, "feet")
  24206. },
  24207. {
  24208. name: "Normal",
  24209. height: math.unit(15.6, "meters"),
  24210. default: true
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24216. {
  24217. front: {
  24218. height: math.unit(4 + 11 / 12, "feet"),
  24219. weight: math.unit(140, "lb"),
  24220. name: "Front",
  24221. image: {
  24222. source: "./media/characters/sesh/front.svg",
  24223. extra: 3420 / 3231,
  24224. bottom: 72 / 3949.5
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(4 + 11 / 12, "feet")
  24232. },
  24233. {
  24234. name: "Grown",
  24235. height: math.unit(15, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(1500, "feet")
  24241. },
  24242. {
  24243. name: "Megamacro",
  24244. height: math.unit(30, "miles")
  24245. },
  24246. {
  24247. name: "Continental",
  24248. height: math.unit(3000, "miles")
  24249. },
  24250. {
  24251. name: "Gravity Mass",
  24252. height: math.unit(300000, "miles")
  24253. },
  24254. {
  24255. name: "Planet Buster",
  24256. height: math.unit(30000000, "miles")
  24257. },
  24258. {
  24259. name: "Big",
  24260. height: math.unit(3000000000, "miles")
  24261. },
  24262. ]
  24263. ))
  24264. characterMakers.push(() => makeCharacter(
  24265. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24266. {
  24267. front: {
  24268. height: math.unit(9, "feet"),
  24269. weight: math.unit(350, "lb"),
  24270. name: "Front",
  24271. image: {
  24272. source: "./media/characters/pepper/front.svg",
  24273. extra: 1448 / 1312,
  24274. bottom: 9.4 / 1457.88
  24275. }
  24276. },
  24277. back: {
  24278. height: math.unit(9, "feet"),
  24279. weight: math.unit(350, "lb"),
  24280. name: "Back",
  24281. image: {
  24282. source: "./media/characters/pepper/back.svg",
  24283. extra: 1423 / 1300,
  24284. bottom: 4.6 / 1429
  24285. }
  24286. },
  24287. maw: {
  24288. height: math.unit(0.932, "feet"),
  24289. name: "Maw",
  24290. image: {
  24291. source: "./media/characters/pepper/maw.svg"
  24292. }
  24293. },
  24294. },
  24295. [
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(9, "feet"),
  24299. default: true
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(6, "feet"),
  24308. weight: math.unit(150, "lb"),
  24309. name: "Front",
  24310. image: {
  24311. source: "./media/characters/maelstrom/front.svg",
  24312. extra: 2100 / 1883,
  24313. bottom: 94 / 2196.7
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Less Kaiju",
  24320. height: math.unit(200, "feet")
  24321. },
  24322. {
  24323. name: "Kaiju",
  24324. height: math.unit(400, "feet"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Kaiju-er",
  24329. height: math.unit(600, "feet")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(6 + 5 / 12, "feet"),
  24338. weight: math.unit(180, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/lexir/front.svg",
  24342. extra: 180 / 172,
  24343. bottom: 12 / 192
  24344. }
  24345. },
  24346. back: {
  24347. height: math.unit(6 + 5 / 12, "feet"),
  24348. weight: math.unit(180, "lb"),
  24349. name: "Back",
  24350. image: {
  24351. source: "./media/characters/lexir/back.svg",
  24352. extra: 1273/1201,
  24353. bottom: 39/1312
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Very Smal",
  24360. height: math.unit(1, "nm")
  24361. },
  24362. {
  24363. name: "Normal",
  24364. height: math.unit(6 + 5 / 12, "feet"),
  24365. default: true
  24366. },
  24367. {
  24368. name: "Macro",
  24369. height: math.unit(1, "mile")
  24370. },
  24371. {
  24372. name: "Megamacro",
  24373. height: math.unit(50, "miles")
  24374. },
  24375. ]
  24376. ))
  24377. characterMakers.push(() => makeCharacter(
  24378. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24379. {
  24380. front: {
  24381. height: math.unit(1.5, "meters"),
  24382. weight: math.unit(100, "lb"),
  24383. name: "Front",
  24384. image: {
  24385. source: "./media/characters/maksio/front.svg",
  24386. extra: 1549 / 1531,
  24387. bottom: 123.7 / 1674.5429
  24388. }
  24389. },
  24390. back: {
  24391. height: math.unit(1.5, "meters"),
  24392. weight: math.unit(100, "lb"),
  24393. name: "Back",
  24394. image: {
  24395. source: "./media/characters/maksio/back.svg",
  24396. extra: 1541 / 1509,
  24397. bottom: 97 / 1639
  24398. }
  24399. },
  24400. hand: {
  24401. height: math.unit(0.621, "feet"),
  24402. name: "Hand",
  24403. image: {
  24404. source: "./media/characters/maksio/hand.svg"
  24405. }
  24406. },
  24407. foot: {
  24408. height: math.unit(1.611, "feet"),
  24409. name: "Foot",
  24410. image: {
  24411. source: "./media/characters/maksio/foot.svg"
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Shrunken",
  24418. height: math.unit(10, "cm")
  24419. },
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(150, "cm"),
  24423. default: true
  24424. },
  24425. ]
  24426. ))
  24427. characterMakers.push(() => makeCharacter(
  24428. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24429. {
  24430. front: {
  24431. height: math.unit(100, "feet"),
  24432. name: "Front",
  24433. image: {
  24434. source: "./media/characters/erza-bear/front.svg",
  24435. extra: 2449 / 2390,
  24436. bottom: 46 / 2494
  24437. }
  24438. },
  24439. back: {
  24440. height: math.unit(100, "feet"),
  24441. name: "Back",
  24442. image: {
  24443. source: "./media/characters/erza-bear/back.svg",
  24444. extra: 2489 / 2430,
  24445. bottom: 85.4 / 2480
  24446. }
  24447. },
  24448. tail: {
  24449. height: math.unit(42, "feet"),
  24450. name: "Tail",
  24451. image: {
  24452. source: "./media/characters/erza-bear/tail.svg"
  24453. }
  24454. },
  24455. tongue: {
  24456. height: math.unit(8, "feet"),
  24457. name: "Tongue",
  24458. image: {
  24459. source: "./media/characters/erza-bear/tongue.svg"
  24460. }
  24461. },
  24462. dick: {
  24463. height: math.unit(10.5, "feet"),
  24464. name: "Dick",
  24465. image: {
  24466. source: "./media/characters/erza-bear/dick.svg"
  24467. }
  24468. },
  24469. dickVertical: {
  24470. height: math.unit(16.9, "feet"),
  24471. name: "Dick (Vertical)",
  24472. image: {
  24473. source: "./media/characters/erza-bear/dick-vertical.svg"
  24474. }
  24475. },
  24476. },
  24477. [
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(100, "feet"),
  24481. default: true
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(172, "cm"),
  24490. weight: math.unit(73, "kg"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/violet-flor/front.svg",
  24494. extra: 1530 / 1442,
  24495. bottom: 61.9 / 1588.8
  24496. }
  24497. },
  24498. back: {
  24499. height: math.unit(180, "cm"),
  24500. weight: math.unit(73, "kg"),
  24501. name: "Back",
  24502. image: {
  24503. source: "./media/characters/violet-flor/back.svg",
  24504. extra: 1692 / 1630,
  24505. bottom: 20 / 1712
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Normal",
  24512. height: math.unit(172, "cm"),
  24513. default: true
  24514. },
  24515. ]
  24516. ))
  24517. characterMakers.push(() => makeCharacter(
  24518. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24519. {
  24520. front: {
  24521. height: math.unit(6, "feet"),
  24522. weight: math.unit(220, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/lynn-rhea/front.svg",
  24526. extra: 310 / 273
  24527. }
  24528. },
  24529. back: {
  24530. height: math.unit(6, "feet"),
  24531. weight: math.unit(220, "lb"),
  24532. name: "Back",
  24533. image: {
  24534. source: "./media/characters/lynn-rhea/back.svg",
  24535. extra: 310 / 273
  24536. }
  24537. },
  24538. dicks: {
  24539. height: math.unit(0.9, "feet"),
  24540. name: "Dicks",
  24541. image: {
  24542. source: "./media/characters/lynn-rhea/dicks.svg"
  24543. }
  24544. },
  24545. slit: {
  24546. height: math.unit(0.4, "feet"),
  24547. name: "Slit",
  24548. image: {
  24549. source: "./media/characters/lynn-rhea/slit.svg"
  24550. }
  24551. },
  24552. },
  24553. [
  24554. {
  24555. name: "Micro",
  24556. height: math.unit(1, "inch")
  24557. },
  24558. {
  24559. name: "Macro",
  24560. height: math.unit(60, "feet"),
  24561. default: true
  24562. },
  24563. {
  24564. name: "Megamacro",
  24565. height: math.unit(2, "miles")
  24566. },
  24567. {
  24568. name: "Gigamacro",
  24569. height: math.unit(3, "earths")
  24570. },
  24571. {
  24572. name: "Galactic",
  24573. height: math.unit(0.8, "galaxies")
  24574. },
  24575. ]
  24576. ))
  24577. characterMakers.push(() => makeCharacter(
  24578. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24579. {
  24580. front: {
  24581. height: math.unit(1600, "feet"),
  24582. weight: math.unit(85758785169, "kg"),
  24583. name: "Front",
  24584. image: {
  24585. source: "./media/characters/valathos/front.svg",
  24586. extra: 1451 / 1339
  24587. }
  24588. },
  24589. },
  24590. [
  24591. {
  24592. name: "Macro",
  24593. height: math.unit(1600, "feet"),
  24594. default: true
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(7 + 5 / 12, "feet"),
  24603. weight: math.unit(300, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/azula/front.svg",
  24607. extra: 3208 / 2880,
  24608. bottom: 80.2 / 3277
  24609. }
  24610. },
  24611. back: {
  24612. height: math.unit(7 + 5 / 12, "feet"),
  24613. weight: math.unit(300, "lb"),
  24614. name: "Back",
  24615. image: {
  24616. source: "./media/characters/azula/back.svg",
  24617. extra: 3169 / 2822,
  24618. bottom: 150.6 / 3321
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(7 + 5 / 12, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Big",
  24630. height: math.unit(20, "feet")
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24636. {
  24637. front: {
  24638. height: math.unit(5 + 1 / 12, "feet"),
  24639. weight: math.unit(110, "lb"),
  24640. name: "Front",
  24641. image: {
  24642. source: "./media/characters/rupert/front.svg",
  24643. extra: 1549 / 1495,
  24644. bottom: 54.2 / 1604.4
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Normal",
  24651. height: math.unit(5 + 1 / 12, "feet"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24658. {
  24659. front: {
  24660. height: math.unit(8 + 4 / 12, "feet"),
  24661. weight: math.unit(350, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/sheera-castellar/front.svg",
  24665. extra: 1957 / 1894,
  24666. bottom: 26.97 / 1975.017
  24667. }
  24668. },
  24669. side: {
  24670. height: math.unit(8 + 4 / 12, "feet"),
  24671. weight: math.unit(350, "lb"),
  24672. name: "Side",
  24673. image: {
  24674. source: "./media/characters/sheera-castellar/side.svg",
  24675. extra: 1957 / 1894
  24676. }
  24677. },
  24678. back: {
  24679. height: math.unit(8 + 4 / 12, "feet"),
  24680. weight: math.unit(350, "lb"),
  24681. name: "Back",
  24682. image: {
  24683. source: "./media/characters/sheera-castellar/back.svg",
  24684. extra: 1957 / 1894
  24685. }
  24686. },
  24687. angled: {
  24688. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24689. weight: math.unit(350, "lb"),
  24690. name: "Angled",
  24691. image: {
  24692. source: "./media/characters/sheera-castellar/angled.svg",
  24693. extra: 1807 / 1707,
  24694. bottom: 68 / 1875
  24695. }
  24696. },
  24697. genitals: {
  24698. height: math.unit(2.2, "feet"),
  24699. name: "Genitals",
  24700. image: {
  24701. source: "./media/characters/sheera-castellar/genitals.svg"
  24702. }
  24703. },
  24704. taur: {
  24705. height: math.unit(10 + 6/12, "feet"),
  24706. name: "Taur",
  24707. image: {
  24708. source: "./media/characters/sheera-castellar/taur.svg",
  24709. extra: 2017/1909,
  24710. bottom: 185/2202
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Normal",
  24717. height: math.unit(8 + 4 / 12, "feet")
  24718. },
  24719. {
  24720. name: "Macro",
  24721. height: math.unit(150, "feet"),
  24722. default: true
  24723. },
  24724. {
  24725. name: "Macro+",
  24726. height: math.unit(800, "feet")
  24727. },
  24728. ]
  24729. ))
  24730. characterMakers.push(() => makeCharacter(
  24731. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24732. {
  24733. front: {
  24734. height: math.unit(6, "feet"),
  24735. weight: math.unit(150, "lb"),
  24736. name: "Front",
  24737. image: {
  24738. source: "./media/characters/jaipur/front.svg",
  24739. extra: 3860 / 3731,
  24740. bottom: 287 / 4140
  24741. }
  24742. },
  24743. back: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Back",
  24747. image: {
  24748. source: "./media/characters/jaipur/back.svg",
  24749. extra: 1637/1561,
  24750. bottom: 154/1791
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Normal",
  24757. height: math.unit(1.85, "meters"),
  24758. default: true
  24759. },
  24760. {
  24761. name: "Macro",
  24762. height: math.unit(150, "meters")
  24763. },
  24764. {
  24765. name: "Macro+",
  24766. height: math.unit(0.5, "miles")
  24767. },
  24768. {
  24769. name: "Macro++",
  24770. height: math.unit(2.5, "miles")
  24771. },
  24772. {
  24773. name: "Macro+++",
  24774. height: math.unit(12, "miles")
  24775. },
  24776. {
  24777. name: "Macro++++",
  24778. height: math.unit(120, "miles")
  24779. },
  24780. {
  24781. name: "Macro+++++",
  24782. height: math.unit(1200, "miles")
  24783. },
  24784. ]
  24785. ))
  24786. characterMakers.push(() => makeCharacter(
  24787. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24788. {
  24789. front: {
  24790. height: math.unit(6, "feet"),
  24791. weight: math.unit(150, "lb"),
  24792. name: "Front",
  24793. image: {
  24794. source: "./media/characters/sheila-wolf/front.svg",
  24795. extra: 1931 / 1808,
  24796. bottom: 29.5 / 1960
  24797. }
  24798. },
  24799. dick: {
  24800. height: math.unit(1.464, "feet"),
  24801. name: "Dick",
  24802. image: {
  24803. source: "./media/characters/sheila-wolf/dick.svg"
  24804. }
  24805. },
  24806. muzzle: {
  24807. height: math.unit(0.513, "feet"),
  24808. name: "Muzzle",
  24809. image: {
  24810. source: "./media/characters/sheila-wolf/muzzle.svg"
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Macro",
  24817. height: math.unit(70, "feet"),
  24818. default: true
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(32, "meters"),
  24827. weight: math.unit(300000, "kg"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/almor/front.svg",
  24831. extra: 1408 / 1322,
  24832. bottom: 94.6 / 1506.5
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Macro",
  24839. height: math.unit(32, "meters"),
  24840. default: true
  24841. },
  24842. ]
  24843. ))
  24844. characterMakers.push(() => makeCharacter(
  24845. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24846. {
  24847. front: {
  24848. height: math.unit(7, "feet"),
  24849. weight: math.unit(200, "lb"),
  24850. name: "Front",
  24851. image: {
  24852. source: "./media/characters/silver/front.svg",
  24853. extra: 472.1 / 450.5,
  24854. bottom: 26.5 / 499.424
  24855. }
  24856. },
  24857. },
  24858. [
  24859. {
  24860. name: "Normal",
  24861. height: math.unit(7, "feet"),
  24862. default: true
  24863. },
  24864. {
  24865. name: "Macro",
  24866. height: math.unit(800, "feet")
  24867. },
  24868. {
  24869. name: "Megamacro",
  24870. height: math.unit(250, "miles")
  24871. },
  24872. ]
  24873. ))
  24874. characterMakers.push(() => makeCharacter(
  24875. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24876. {
  24877. front: {
  24878. height: math.unit(6, "feet"),
  24879. weight: math.unit(150, "lb"),
  24880. name: "Front",
  24881. image: {
  24882. source: "./media/characters/pliskin/front.svg",
  24883. extra: 1469 / 1359,
  24884. bottom: 70 / 1540
  24885. }
  24886. },
  24887. },
  24888. [
  24889. {
  24890. name: "Micro",
  24891. height: math.unit(3, "inches")
  24892. },
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(5 + 11 / 12, "feet"),
  24896. default: true
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(120, "feet")
  24901. },
  24902. ]
  24903. ))
  24904. characterMakers.push(() => makeCharacter(
  24905. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24906. {
  24907. front: {
  24908. height: math.unit(6, "feet"),
  24909. weight: math.unit(150, "lb"),
  24910. name: "Front",
  24911. image: {
  24912. source: "./media/characters/sammy/front.svg",
  24913. extra: 1193 / 1089,
  24914. bottom: 30.5 / 1226
  24915. }
  24916. },
  24917. },
  24918. [
  24919. {
  24920. name: "Macro",
  24921. height: math.unit(1700, "feet"),
  24922. default: true
  24923. },
  24924. {
  24925. name: "Examacro",
  24926. height: math.unit(2.5e9, "lightyears")
  24927. },
  24928. ]
  24929. ))
  24930. characterMakers.push(() => makeCharacter(
  24931. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24932. {
  24933. front: {
  24934. height: math.unit(21, "meters"),
  24935. weight: math.unit(12, "tonnes"),
  24936. name: "Front",
  24937. image: {
  24938. source: "./media/characters/kuru/front.svg",
  24939. extra: 4301 / 3785,
  24940. bottom: 371.3 / 4691
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Macro",
  24947. height: math.unit(21, "meters"),
  24948. default: true
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24954. {
  24955. front: {
  24956. height: math.unit(23, "meters"),
  24957. weight: math.unit(12.2, "tonnes"),
  24958. name: "Front",
  24959. image: {
  24960. source: "./media/characters/rakka/front.svg",
  24961. extra: 4670 / 4169,
  24962. bottom: 301 / 4968.7
  24963. }
  24964. },
  24965. },
  24966. [
  24967. {
  24968. name: "Macro",
  24969. height: math.unit(23, "meters"),
  24970. default: true
  24971. },
  24972. ]
  24973. ))
  24974. characterMakers.push(() => makeCharacter(
  24975. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24976. {
  24977. front: {
  24978. height: math.unit(6, "feet"),
  24979. weight: math.unit(150, "lb"),
  24980. name: "Front",
  24981. image: {
  24982. source: "./media/characters/rhys-feline/front.svg",
  24983. extra: 2488 / 2308,
  24984. bottom: 35.67 / 2519.19
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Really Small",
  24991. height: math.unit(1, "nm")
  24992. },
  24993. {
  24994. name: "Micro",
  24995. height: math.unit(4, "inches")
  24996. },
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(4 + 10 / 12, "feet"),
  25000. default: true
  25001. },
  25002. {
  25003. name: "Macro",
  25004. height: math.unit(100, "feet")
  25005. },
  25006. {
  25007. name: "Megamacto",
  25008. height: math.unit(50, "miles")
  25009. },
  25010. ]
  25011. ))
  25012. characterMakers.push(() => makeCharacter(
  25013. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25014. {
  25015. side: {
  25016. height: math.unit(30, "feet"),
  25017. weight: math.unit(35000, "kg"),
  25018. name: "Side",
  25019. image: {
  25020. source: "./media/characters/alydar/side.svg",
  25021. extra: 234 / 222,
  25022. bottom: 6.5 / 241
  25023. }
  25024. },
  25025. front: {
  25026. height: math.unit(30, "feet"),
  25027. weight: math.unit(35000, "kg"),
  25028. name: "Front",
  25029. image: {
  25030. source: "./media/characters/alydar/front.svg",
  25031. extra: 223.37 / 210.2,
  25032. bottom: 22.3 / 246.76
  25033. }
  25034. },
  25035. top: {
  25036. height: math.unit(64.54, "feet"),
  25037. weight: math.unit(35000, "kg"),
  25038. name: "Top",
  25039. image: {
  25040. source: "./media/characters/alydar/top.svg"
  25041. }
  25042. },
  25043. anthro: {
  25044. height: math.unit(30, "feet"),
  25045. weight: math.unit(9000, "kg"),
  25046. name: "Anthro",
  25047. image: {
  25048. source: "./media/characters/alydar/anthro.svg",
  25049. extra: 432 / 421,
  25050. bottom: 7.18 / 440
  25051. }
  25052. },
  25053. maw: {
  25054. height: math.unit(11.693, "feet"),
  25055. name: "Maw",
  25056. image: {
  25057. source: "./media/characters/alydar/maw.svg"
  25058. }
  25059. },
  25060. head: {
  25061. height: math.unit(11.693, "feet"),
  25062. name: "Head",
  25063. image: {
  25064. source: "./media/characters/alydar/head.svg"
  25065. }
  25066. },
  25067. headAlt: {
  25068. height: math.unit(12.861, "feet"),
  25069. name: "Head (Alt)",
  25070. image: {
  25071. source: "./media/characters/alydar/head-alt.svg"
  25072. }
  25073. },
  25074. wing: {
  25075. height: math.unit(20.712, "feet"),
  25076. name: "Wing",
  25077. image: {
  25078. source: "./media/characters/alydar/wing.svg"
  25079. }
  25080. },
  25081. wingFeather: {
  25082. height: math.unit(9.662, "feet"),
  25083. name: "Wing Feather",
  25084. image: {
  25085. source: "./media/characters/alydar/wing-feather.svg"
  25086. }
  25087. },
  25088. countourFeather: {
  25089. height: math.unit(4.154, "feet"),
  25090. name: "Contour Feather",
  25091. image: {
  25092. source: "./media/characters/alydar/contour-feather.svg"
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Diplomatic",
  25099. height: math.unit(13, "feet"),
  25100. default: true
  25101. },
  25102. {
  25103. name: "Small",
  25104. height: math.unit(30, "feet")
  25105. },
  25106. {
  25107. name: "Normal",
  25108. height: math.unit(95, "feet"),
  25109. default: true
  25110. },
  25111. {
  25112. name: "Large",
  25113. height: math.unit(285, "feet")
  25114. },
  25115. {
  25116. name: "Incomprehensible",
  25117. height: math.unit(450, "megameters")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25123. {
  25124. side: {
  25125. height: math.unit(11, "feet"),
  25126. weight: math.unit(1750, "kg"),
  25127. name: "Side",
  25128. image: {
  25129. source: "./media/characters/selicia/side.svg",
  25130. extra: 440 / 396,
  25131. bottom: 24.8 / 465.979
  25132. }
  25133. },
  25134. maw: {
  25135. height: math.unit(4.665, "feet"),
  25136. name: "Maw",
  25137. image: {
  25138. source: "./media/characters/selicia/maw.svg"
  25139. }
  25140. },
  25141. },
  25142. [
  25143. {
  25144. name: "Normal",
  25145. height: math.unit(11, "feet"),
  25146. default: true
  25147. },
  25148. ]
  25149. ))
  25150. characterMakers.push(() => makeCharacter(
  25151. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25152. {
  25153. side: {
  25154. height: math.unit(2 + 6 / 12, "feet"),
  25155. weight: math.unit(30, "lb"),
  25156. name: "Side",
  25157. image: {
  25158. source: "./media/characters/layla/side.svg",
  25159. extra: 244 / 188,
  25160. bottom: 18.2 / 262.1
  25161. }
  25162. },
  25163. back: {
  25164. height: math.unit(2 + 6 / 12, "feet"),
  25165. weight: math.unit(30, "lb"),
  25166. name: "Back",
  25167. image: {
  25168. source: "./media/characters/layla/back.svg",
  25169. extra: 308 / 241.5,
  25170. bottom: 8.9 / 316.8
  25171. }
  25172. },
  25173. cumming: {
  25174. height: math.unit(2 + 6 / 12, "feet"),
  25175. weight: math.unit(30, "lb"),
  25176. name: "Cumming",
  25177. image: {
  25178. source: "./media/characters/layla/cumming.svg",
  25179. extra: 342 / 279,
  25180. bottom: 595 / 938
  25181. }
  25182. },
  25183. dickFlaccid: {
  25184. height: math.unit(2.595, "feet"),
  25185. name: "Flaccid Genitals",
  25186. image: {
  25187. source: "./media/characters/layla/dick-flaccid.svg"
  25188. }
  25189. },
  25190. dickErect: {
  25191. height: math.unit(2.359, "feet"),
  25192. name: "Erect Genitals",
  25193. image: {
  25194. source: "./media/characters/layla/dick-erect.svg"
  25195. }
  25196. },
  25197. dragon: {
  25198. height: math.unit(40, "feet"),
  25199. name: "Dragon",
  25200. image: {
  25201. source: "./media/characters/layla/dragon.svg",
  25202. extra: 610/535,
  25203. bottom: 367/977
  25204. }
  25205. },
  25206. taur: {
  25207. height: math.unit(30, "feet"),
  25208. name: "Taur",
  25209. image: {
  25210. source: "./media/characters/layla/taur.svg",
  25211. extra: 1268/1199,
  25212. bottom: 112/1380
  25213. }
  25214. },
  25215. },
  25216. [
  25217. {
  25218. name: "Micro",
  25219. height: math.unit(1, "inch")
  25220. },
  25221. {
  25222. name: "Small",
  25223. height: math.unit(1, "foot")
  25224. },
  25225. {
  25226. name: "Normal",
  25227. height: math.unit(2 + 6 / 12, "feet"),
  25228. default: true
  25229. },
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(200, "feet")
  25233. },
  25234. {
  25235. name: "Megamacro",
  25236. height: math.unit(1000, "miles")
  25237. },
  25238. {
  25239. name: "Planetary",
  25240. height: math.unit(8000, "miles")
  25241. },
  25242. {
  25243. name: "True Layla",
  25244. height: math.unit(200000 * 7, "multiverses")
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25250. {
  25251. back: {
  25252. height: math.unit(10.5, "feet"),
  25253. weight: math.unit(800, "lb"),
  25254. name: "Back",
  25255. image: {
  25256. source: "./media/characters/knox/back.svg",
  25257. extra: 1486 / 1089,
  25258. bottom: 107 / 1601.4
  25259. }
  25260. },
  25261. side: {
  25262. height: math.unit(10.5, "feet"),
  25263. weight: math.unit(800, "lb"),
  25264. name: "Side",
  25265. image: {
  25266. source: "./media/characters/knox/side.svg",
  25267. extra: 244 / 218,
  25268. bottom: 14 / 260
  25269. }
  25270. },
  25271. },
  25272. [
  25273. {
  25274. name: "Compact",
  25275. height: math.unit(10.5, "feet"),
  25276. default: true
  25277. },
  25278. {
  25279. name: "Dynamax",
  25280. height: math.unit(210, "feet")
  25281. },
  25282. {
  25283. name: "Full Macro",
  25284. height: math.unit(850, "feet")
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(28, "feet"),
  25293. weight: math.unit(10500, "lb"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/kayda/front.svg",
  25297. extra: 1536 / 1428,
  25298. bottom: 68.7 / 1603
  25299. }
  25300. },
  25301. back: {
  25302. height: math.unit(28, "feet"),
  25303. weight: math.unit(10500, "lb"),
  25304. name: "Back",
  25305. image: {
  25306. source: "./media/characters/kayda/back.svg",
  25307. extra: 1557 / 1464,
  25308. bottom: 39.5 / 1597.49
  25309. }
  25310. },
  25311. dick: {
  25312. height: math.unit(3.858, "feet"),
  25313. name: "Dick",
  25314. image: {
  25315. source: "./media/characters/kayda/dick.svg"
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Macro",
  25322. height: math.unit(28, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(10 + 11 / 12, "feet"),
  25332. weight: math.unit(1400, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/brian/front.svg",
  25336. extra: 737 / 692,
  25337. bottom: 55.4 / 785
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(10 + 11 / 12, "feet"),
  25345. default: true
  25346. },
  25347. ]
  25348. ))
  25349. characterMakers.push(() => makeCharacter(
  25350. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25351. {
  25352. front: {
  25353. height: math.unit(5 + 8 / 12, "feet"),
  25354. weight: math.unit(140, "lb"),
  25355. name: "Front",
  25356. image: {
  25357. source: "./media/characters/khemri/front.svg",
  25358. extra: 4780 / 4059,
  25359. bottom: 80.1 / 4859.25
  25360. }
  25361. },
  25362. },
  25363. [
  25364. {
  25365. name: "Micro",
  25366. height: math.unit(6, "inches")
  25367. },
  25368. {
  25369. name: "Normal",
  25370. height: math.unit(5 + 8 / 12, "feet"),
  25371. default: true
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25377. {
  25378. front: {
  25379. height: math.unit(13, "feet"),
  25380. weight: math.unit(1700, "lb"),
  25381. name: "Front",
  25382. image: {
  25383. source: "./media/characters/felix-braveheart/front.svg",
  25384. extra: 1222 / 1157,
  25385. bottom: 53.2 / 1280
  25386. }
  25387. },
  25388. back: {
  25389. height: math.unit(13, "feet"),
  25390. weight: math.unit(1700, "lb"),
  25391. name: "Back",
  25392. image: {
  25393. source: "./media/characters/felix-braveheart/back.svg",
  25394. extra: 1277 / 1203,
  25395. bottom: 50.2 / 1327
  25396. }
  25397. },
  25398. feral: {
  25399. height: math.unit(6, "feet"),
  25400. weight: math.unit(400, "lb"),
  25401. name: "Feral",
  25402. image: {
  25403. source: "./media/characters/felix-braveheart/feral.svg",
  25404. extra: 682 / 625,
  25405. bottom: 6.9 / 688
  25406. }
  25407. },
  25408. },
  25409. [
  25410. {
  25411. name: "Normal",
  25412. height: math.unit(13, "feet"),
  25413. default: true
  25414. },
  25415. ]
  25416. ))
  25417. characterMakers.push(() => makeCharacter(
  25418. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25419. {
  25420. side: {
  25421. height: math.unit(5 + 11 / 12, "feet"),
  25422. weight: math.unit(1400, "lb"),
  25423. name: "Side",
  25424. image: {
  25425. source: "./media/characters/shadow-blade/side.svg",
  25426. extra: 1726 / 1267,
  25427. bottom: 58.4 / 1785
  25428. }
  25429. },
  25430. },
  25431. [
  25432. {
  25433. name: "Normal",
  25434. height: math.unit(5 + 11 / 12, "feet"),
  25435. default: true
  25436. },
  25437. ]
  25438. ))
  25439. characterMakers.push(() => makeCharacter(
  25440. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25441. {
  25442. front: {
  25443. height: math.unit(1 + 6 / 12, "feet"),
  25444. weight: math.unit(25, "lb"),
  25445. name: "Front",
  25446. image: {
  25447. source: "./media/characters/karla-halldor/front.svg",
  25448. extra: 1459 / 1383,
  25449. bottom: 12 / 1472
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Normal",
  25456. height: math.unit(1 + 6 / 12, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(6 + 2 / 12, "feet"),
  25466. weight: math.unit(160, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/ariam/front.svg",
  25470. extra: 1073/976,
  25471. bottom: 52/1125
  25472. }
  25473. },
  25474. back: {
  25475. height: math.unit(6 + 2/12, "feet"),
  25476. weight: math.unit(160, "lb"),
  25477. name: "Back",
  25478. image: {
  25479. source: "./media/characters/ariam/back.svg",
  25480. extra: 1103/1023,
  25481. bottom: 9/1112
  25482. }
  25483. },
  25484. dressed: {
  25485. height: math.unit(6 + 2/12, "feet"),
  25486. weight: math.unit(160, "lb"),
  25487. name: "Dressed",
  25488. image: {
  25489. source: "./media/characters/ariam/dressed.svg",
  25490. extra: 1099/1009,
  25491. bottom: 25/1124
  25492. }
  25493. },
  25494. squatting: {
  25495. height: math.unit(4.1, "feet"),
  25496. weight: math.unit(160, "lb"),
  25497. name: "Squatting",
  25498. image: {
  25499. source: "./media/characters/ariam/squatting.svg",
  25500. extra: 2617 / 2112,
  25501. bottom: 61.2 / 2681,
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(6 + 2 / 12, "feet"),
  25509. default: true
  25510. },
  25511. {
  25512. name: "Normal+",
  25513. height: math.unit(4, "meters")
  25514. },
  25515. {
  25516. name: "Macro",
  25517. height: math.unit(50, "meters")
  25518. },
  25519. {
  25520. name: "Macro+",
  25521. height: math.unit(100, "meters")
  25522. },
  25523. {
  25524. name: "Megamacro",
  25525. height: math.unit(20, "km")
  25526. },
  25527. {
  25528. name: "Caretaker",
  25529. height: math.unit(444, "megameters")
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(1.67, "meters"),
  25538. weight: math.unit(140, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25542. extra: 438 / 410,
  25543. bottom: 0.75 / 439
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Shrunken",
  25550. height: math.unit(7.6, "cm")
  25551. },
  25552. {
  25553. name: "Human Scale",
  25554. height: math.unit(1.67, "meters")
  25555. },
  25556. {
  25557. name: "Wolxi Scale",
  25558. height: math.unit(36.7, "meters"),
  25559. default: true
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(1.73, "meters"),
  25568. weight: math.unit(240, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/izue-two-mothers/front.svg",
  25572. extra: 469 / 437,
  25573. bottom: 1.24 / 470.6
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Shrunken",
  25580. height: math.unit(7.86, "cm")
  25581. },
  25582. {
  25583. name: "Human Scale",
  25584. height: math.unit(1.73, "meters")
  25585. },
  25586. {
  25587. name: "Wolxi Scale",
  25588. height: math.unit(38, "meters"),
  25589. default: true
  25590. },
  25591. ]
  25592. ))
  25593. characterMakers.push(() => makeCharacter(
  25594. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25595. {
  25596. front: {
  25597. height: math.unit(1.55, "meters"),
  25598. weight: math.unit(120, "lb"),
  25599. name: "Front",
  25600. image: {
  25601. source: "./media/characters/teeku-love-shack/front.svg",
  25602. extra: 387 / 362,
  25603. bottom: 1.51 / 388
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Shrunken",
  25610. height: math.unit(7, "cm")
  25611. },
  25612. {
  25613. name: "Human Scale",
  25614. height: math.unit(1.55, "meters")
  25615. },
  25616. {
  25617. name: "Wolxi Scale",
  25618. height: math.unit(34.1, "meters"),
  25619. default: true
  25620. },
  25621. ]
  25622. ))
  25623. characterMakers.push(() => makeCharacter(
  25624. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25625. {
  25626. front: {
  25627. height: math.unit(1.83, "meters"),
  25628. weight: math.unit(135, "lb"),
  25629. name: "Front",
  25630. image: {
  25631. source: "./media/characters/dejma-the-red/front.svg",
  25632. extra: 480 / 458,
  25633. bottom: 1.8 / 482
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Shrunken",
  25640. height: math.unit(8.3, "cm")
  25641. },
  25642. {
  25643. name: "Human Scale",
  25644. height: math.unit(1.83, "meters")
  25645. },
  25646. {
  25647. name: "Wolxi Scale",
  25648. height: math.unit(40, "meters"),
  25649. default: true
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(1.78, "meters"),
  25658. weight: math.unit(65, "kg"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/aki/front.svg",
  25662. extra: 452 / 415
  25663. }
  25664. },
  25665. frontNsfw: {
  25666. height: math.unit(1.78, "meters"),
  25667. weight: math.unit(65, "kg"),
  25668. name: "Front (NSFW)",
  25669. image: {
  25670. source: "./media/characters/aki/front-nsfw.svg",
  25671. extra: 452 / 415
  25672. }
  25673. },
  25674. back: {
  25675. height: math.unit(1.78, "meters"),
  25676. weight: math.unit(65, "kg"),
  25677. name: "Back",
  25678. image: {
  25679. source: "./media/characters/aki/back.svg",
  25680. extra: 452 / 415
  25681. }
  25682. },
  25683. rump: {
  25684. height: math.unit(2.05, "feet"),
  25685. name: "Rump",
  25686. image: {
  25687. source: "./media/characters/aki/rump.svg"
  25688. }
  25689. },
  25690. dick: {
  25691. height: math.unit(0.95, "feet"),
  25692. name: "Dick",
  25693. image: {
  25694. source: "./media/characters/aki/dick.svg"
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Micro",
  25701. height: math.unit(15, "cm")
  25702. },
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(178, "cm"),
  25706. default: true
  25707. },
  25708. {
  25709. name: "Macro",
  25710. height: math.unit(214, "m")
  25711. },
  25712. {
  25713. name: "Macro+",
  25714. height: math.unit(534, "m")
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(5 + 5 / 12, "feet"),
  25723. weight: math.unit(120, "lb"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/ari/front.svg",
  25727. extra: 1550/1471,
  25728. bottom: 39/1589
  25729. }
  25730. },
  25731. },
  25732. [
  25733. {
  25734. name: "Normal",
  25735. height: math.unit(5 + 5 / 12, "feet")
  25736. },
  25737. {
  25738. name: "Macro",
  25739. height: math.unit(100, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Megamacro",
  25744. height: math.unit(100, "miles")
  25745. },
  25746. {
  25747. name: "Gigamacro",
  25748. height: math.unit(80000, "miles")
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25754. {
  25755. side: {
  25756. height: math.unit(9, "feet"),
  25757. weight: math.unit(400, "kg"),
  25758. name: "Side",
  25759. image: {
  25760. source: "./media/characters/bolt/side.svg",
  25761. extra: 1126 / 896,
  25762. bottom: 60 / 1187.3,
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Micro",
  25769. height: math.unit(5, "inches")
  25770. },
  25771. {
  25772. name: "Normal",
  25773. height: math.unit(9, "feet"),
  25774. default: true
  25775. },
  25776. {
  25777. name: "Macro",
  25778. height: math.unit(700, "feet")
  25779. },
  25780. {
  25781. name: "Max Size",
  25782. height: math.unit(1.52e22, "yottameters")
  25783. },
  25784. ]
  25785. ))
  25786. characterMakers.push(() => makeCharacter(
  25787. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25788. {
  25789. front: {
  25790. height: math.unit(4.3, "meters"),
  25791. weight: math.unit(3, "tons"),
  25792. name: "Front",
  25793. image: {
  25794. source: "./media/characters/draekon-sylviar/front.svg",
  25795. extra: 2072/1512,
  25796. bottom: 74/2146
  25797. }
  25798. },
  25799. back: {
  25800. height: math.unit(4.3, "meters"),
  25801. weight: math.unit(3, "tons"),
  25802. name: "Back",
  25803. image: {
  25804. source: "./media/characters/draekon-sylviar/back.svg",
  25805. extra: 1639/1483,
  25806. bottom: 41/1680
  25807. }
  25808. },
  25809. feral: {
  25810. height: math.unit(1.15, "meters"),
  25811. weight: math.unit(3, "tons"),
  25812. name: "Feral",
  25813. image: {
  25814. source: "./media/characters/draekon-sylviar/feral.svg",
  25815. extra: 1033/395,
  25816. bottom: 130/1163
  25817. }
  25818. },
  25819. maw: {
  25820. height: math.unit(1.3, "meters"),
  25821. name: "Maw",
  25822. image: {
  25823. source: "./media/characters/draekon-sylviar/maw.svg"
  25824. }
  25825. },
  25826. mawSeparated: {
  25827. height: math.unit(1.53, "meters"),
  25828. name: "Separated Maw",
  25829. image: {
  25830. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25831. }
  25832. },
  25833. tail: {
  25834. height: math.unit(1.15, "meters"),
  25835. name: "Tail",
  25836. image: {
  25837. source: "./media/characters/draekon-sylviar/tail.svg"
  25838. }
  25839. },
  25840. tailDick: {
  25841. height: math.unit(1.15, "meters"),
  25842. name: "Tail (Dick)",
  25843. image: {
  25844. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25845. }
  25846. },
  25847. tailDickSeparated: {
  25848. height: math.unit(1.19, "meters"),
  25849. name: "Tail (Separated Dick)",
  25850. image: {
  25851. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25852. }
  25853. },
  25854. slit: {
  25855. height: math.unit(1, "meters"),
  25856. name: "Slit",
  25857. image: {
  25858. source: "./media/characters/draekon-sylviar/slit.svg"
  25859. }
  25860. },
  25861. dick: {
  25862. height: math.unit(1.15, "meters"),
  25863. name: "Dick",
  25864. image: {
  25865. source: "./media/characters/draekon-sylviar/dick.svg"
  25866. }
  25867. },
  25868. dickSeparated: {
  25869. height: math.unit(1.1, "meters"),
  25870. name: "Separated Dick",
  25871. image: {
  25872. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25873. }
  25874. },
  25875. sheath: {
  25876. height: math.unit(1.15, "meters"),
  25877. name: "Sheath",
  25878. image: {
  25879. source: "./media/characters/draekon-sylviar/sheath.svg"
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Small",
  25886. height: math.unit(4.53 / 2, "meters"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Normal",
  25891. height: math.unit(4.53, "meters"),
  25892. default: true
  25893. },
  25894. {
  25895. name: "Large",
  25896. height: math.unit(4.53 * 2, "meters"),
  25897. },
  25898. ]
  25899. ))
  25900. characterMakers.push(() => makeCharacter(
  25901. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25902. {
  25903. front: {
  25904. height: math.unit(6 + 2 / 12, "feet"),
  25905. weight: math.unit(180, "lb"),
  25906. name: "Front",
  25907. image: {
  25908. source: "./media/characters/brawler/front.svg",
  25909. extra: 3301 / 3027,
  25910. bottom: 138 / 3439
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(6 + 2 / 12, "feet"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(11, "feet"),
  25927. weight: math.unit(1000, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/alex/front.svg",
  25931. bottom: 44.5 / 620
  25932. }
  25933. },
  25934. },
  25935. [
  25936. {
  25937. name: "Micro",
  25938. height: math.unit(5, "inches")
  25939. },
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(11, "feet"),
  25943. default: true
  25944. },
  25945. {
  25946. name: "Macro",
  25947. height: math.unit(9.5e9, "feet")
  25948. },
  25949. {
  25950. name: "Max Size",
  25951. height: math.unit(1.4e283, "yottameters")
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25957. {
  25958. female: {
  25959. height: math.unit(29.9, "m"),
  25960. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25961. name: "Female",
  25962. image: {
  25963. source: "./media/characters/zenari/female.svg",
  25964. extra: 3281.6 / 3217,
  25965. bottom: 72.2 / 3353
  25966. }
  25967. },
  25968. male: {
  25969. height: math.unit(27.7, "m"),
  25970. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25971. name: "Male",
  25972. image: {
  25973. source: "./media/characters/zenari/male.svg",
  25974. extra: 3008 / 2991,
  25975. bottom: 54.6 / 3069
  25976. }
  25977. },
  25978. },
  25979. [
  25980. {
  25981. name: "Macro",
  25982. height: math.unit(29.7, "meters"),
  25983. default: true
  25984. },
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25989. {
  25990. female: {
  25991. height: math.unit(23.8, "m"),
  25992. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25993. name: "Female",
  25994. image: {
  25995. source: "./media/characters/mactarian/female.svg",
  25996. extra: 2662 / 2569,
  25997. bottom: 73 / 2736
  25998. }
  25999. },
  26000. male: {
  26001. height: math.unit(23.8, "m"),
  26002. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26003. name: "Male",
  26004. image: {
  26005. source: "./media/characters/mactarian/male.svg",
  26006. extra: 2673 / 2600,
  26007. bottom: 76 / 2750
  26008. }
  26009. },
  26010. },
  26011. [
  26012. {
  26013. name: "Macro",
  26014. height: math.unit(23.8, "meters"),
  26015. default: true
  26016. },
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26021. {
  26022. female: {
  26023. height: math.unit(19.3, "m"),
  26024. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26025. name: "Female",
  26026. image: {
  26027. source: "./media/characters/umok/female.svg",
  26028. extra: 2186 / 2078,
  26029. bottom: 87 / 2277
  26030. }
  26031. },
  26032. male: {
  26033. height: math.unit(19.5, "m"),
  26034. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26035. name: "Male",
  26036. image: {
  26037. source: "./media/characters/umok/male.svg",
  26038. extra: 2233 / 2140,
  26039. bottom: 24.4 / 2258
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Macro",
  26046. height: math.unit(19.3, "meters"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26053. {
  26054. female: {
  26055. height: math.unit(26.15, "m"),
  26056. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26057. name: "Female",
  26058. image: {
  26059. source: "./media/characters/joraxian/female.svg",
  26060. extra: 2912 / 2824,
  26061. bottom: 36 / 2956
  26062. }
  26063. },
  26064. male: {
  26065. height: math.unit(25.4, "m"),
  26066. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26067. name: "Male",
  26068. image: {
  26069. source: "./media/characters/joraxian/male.svg",
  26070. extra: 2877 / 2721,
  26071. bottom: 82 / 2967
  26072. }
  26073. },
  26074. },
  26075. [
  26076. {
  26077. name: "Macro",
  26078. height: math.unit(26.15, "meters"),
  26079. default: true
  26080. },
  26081. ]
  26082. ))
  26083. characterMakers.push(() => makeCharacter(
  26084. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26085. {
  26086. female: {
  26087. height: math.unit(21.6, "m"),
  26088. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26089. name: "Female",
  26090. image: {
  26091. source: "./media/characters/sthara/female.svg",
  26092. extra: 2516 / 2347,
  26093. bottom: 21.5 / 2537
  26094. }
  26095. },
  26096. male: {
  26097. height: math.unit(24, "m"),
  26098. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26099. name: "Male",
  26100. image: {
  26101. source: "./media/characters/sthara/male.svg",
  26102. extra: 2732 / 2607,
  26103. bottom: 23 / 2732
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Macro",
  26110. height: math.unit(21.6, "meters"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26117. {
  26118. front: {
  26119. height: math.unit(6 + 4 / 12, "feet"),
  26120. weight: math.unit(175, "lb"),
  26121. name: "Front",
  26122. image: {
  26123. source: "./media/characters/luka-bryzant/front.svg",
  26124. extra: 311 / 289,
  26125. bottom: 4 / 315
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(6 + 4 / 12, "feet"),
  26130. weight: math.unit(175, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/luka-bryzant/back.svg",
  26134. extra: 311 / 289,
  26135. bottom: 3.8 / 313.7
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Micro",
  26142. height: math.unit(10, "inches")
  26143. },
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(6 + 4 / 12, "feet"),
  26147. default: true
  26148. },
  26149. {
  26150. name: "Large",
  26151. height: math.unit(12, "feet")
  26152. },
  26153. ]
  26154. ))
  26155. characterMakers.push(() => makeCharacter(
  26156. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26157. {
  26158. front: {
  26159. height: math.unit(5 + 7 / 12, "feet"),
  26160. weight: math.unit(185, "lb"),
  26161. name: "Front",
  26162. image: {
  26163. source: "./media/characters/aman-aquila/front.svg",
  26164. extra: 1013 / 976,
  26165. bottom: 45.6 / 1057
  26166. }
  26167. },
  26168. side: {
  26169. height: math.unit(5 + 7 / 12, "feet"),
  26170. weight: math.unit(185, "lb"),
  26171. name: "Side",
  26172. image: {
  26173. source: "./media/characters/aman-aquila/side.svg",
  26174. extra: 1054 / 1011,
  26175. bottom: 15 / 1070
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(5 + 7 / 12, "feet"),
  26180. weight: math.unit(185, "lb"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/aman-aquila/back.svg",
  26184. extra: 1026 / 970,
  26185. bottom: 12 / 1039
  26186. }
  26187. },
  26188. head: {
  26189. height: math.unit(1.211, "feet"),
  26190. name: "Head",
  26191. image: {
  26192. source: "./media/characters/aman-aquila/head.svg",
  26193. }
  26194. },
  26195. },
  26196. [
  26197. {
  26198. name: "Minimicro",
  26199. height: math.unit(0.057, "inches")
  26200. },
  26201. {
  26202. name: "Micro",
  26203. height: math.unit(7, "inches")
  26204. },
  26205. {
  26206. name: "Mini",
  26207. height: math.unit(3 + 7 / 12, "feet")
  26208. },
  26209. {
  26210. name: "Normal",
  26211. height: math.unit(5 + 7 / 12, "feet"),
  26212. default: true
  26213. },
  26214. {
  26215. name: "Macro",
  26216. height: math.unit(157 + 7 / 12, "feet")
  26217. },
  26218. {
  26219. name: "Megamacro",
  26220. height: math.unit(1557 + 7 / 12, "feet")
  26221. },
  26222. {
  26223. name: "Gigamacro",
  26224. height: math.unit(15557 + 7 / 12, "feet")
  26225. },
  26226. ]
  26227. ))
  26228. characterMakers.push(() => makeCharacter(
  26229. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26230. {
  26231. front: {
  26232. height: math.unit(3 + 2 / 12, "inches"),
  26233. weight: math.unit(0.3, "ounces"),
  26234. name: "Front",
  26235. image: {
  26236. source: "./media/characters/hiphae/front.svg",
  26237. extra: 1931 / 1683,
  26238. bottom: 24 / 1955
  26239. }
  26240. },
  26241. },
  26242. [
  26243. {
  26244. name: "Normal",
  26245. height: math.unit(3 + 1 / 2, "inches"),
  26246. default: true
  26247. },
  26248. ]
  26249. ))
  26250. characterMakers.push(() => makeCharacter(
  26251. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26252. {
  26253. front: {
  26254. height: math.unit(5 + 10 / 12, "feet"),
  26255. weight: math.unit(165, "lb"),
  26256. name: "Front",
  26257. image: {
  26258. source: "./media/characters/nicky/front.svg",
  26259. extra: 3144 / 2886,
  26260. bottom: 45.6 / 3192
  26261. }
  26262. },
  26263. back: {
  26264. height: math.unit(5 + 10 / 12, "feet"),
  26265. weight: math.unit(165, "lb"),
  26266. name: "Back",
  26267. image: {
  26268. source: "./media/characters/nicky/back.svg",
  26269. extra: 3055 / 2804,
  26270. bottom: 28.4 / 3087
  26271. }
  26272. },
  26273. frontclothed: {
  26274. height: math.unit(5 + 10 / 12, "feet"),
  26275. weight: math.unit(165, "lb"),
  26276. name: "Front-clothed",
  26277. image: {
  26278. source: "./media/characters/nicky/front-clothed.svg",
  26279. extra: 3184.9 / 2926.9,
  26280. bottom: 86.5 / 3239.9
  26281. }
  26282. },
  26283. foot: {
  26284. height: math.unit(1.16, "feet"),
  26285. name: "Foot",
  26286. image: {
  26287. source: "./media/characters/nicky/foot.svg"
  26288. }
  26289. },
  26290. feet: {
  26291. height: math.unit(1.34, "feet"),
  26292. name: "Feet",
  26293. image: {
  26294. source: "./media/characters/nicky/feet.svg"
  26295. }
  26296. },
  26297. maw: {
  26298. height: math.unit(0.9, "feet"),
  26299. name: "Maw",
  26300. image: {
  26301. source: "./media/characters/nicky/maw.svg"
  26302. }
  26303. },
  26304. },
  26305. [
  26306. {
  26307. name: "Normal",
  26308. height: math.unit(5 + 10 / 12, "feet"),
  26309. default: true
  26310. },
  26311. {
  26312. name: "Macro",
  26313. height: math.unit(60, "feet")
  26314. },
  26315. {
  26316. name: "Megamacro",
  26317. height: math.unit(1, "mile")
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26323. {
  26324. side: {
  26325. height: math.unit(10, "feet"),
  26326. weight: math.unit(600, "lb"),
  26327. name: "Side",
  26328. image: {
  26329. source: "./media/characters/blair/side.svg",
  26330. bottom: 16.6 / 475,
  26331. extra: 458 / 431
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Micro",
  26338. height: math.unit(8, "inches")
  26339. },
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(10, "feet"),
  26343. default: true
  26344. },
  26345. {
  26346. name: "Macro",
  26347. height: math.unit(180, "feet")
  26348. },
  26349. ]
  26350. ))
  26351. characterMakers.push(() => makeCharacter(
  26352. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26353. {
  26354. front: {
  26355. height: math.unit(5 + 4 / 12, "feet"),
  26356. weight: math.unit(125, "lb"),
  26357. name: "Front",
  26358. image: {
  26359. source: "./media/characters/fisher/front.svg",
  26360. extra: 444 / 390,
  26361. bottom: 2 / 444.8
  26362. }
  26363. },
  26364. },
  26365. [
  26366. {
  26367. name: "Micro",
  26368. height: math.unit(4, "inches")
  26369. },
  26370. {
  26371. name: "Normal",
  26372. height: math.unit(5 + 4 / 12, "feet"),
  26373. default: true
  26374. },
  26375. {
  26376. name: "Macro",
  26377. height: math.unit(100, "feet")
  26378. },
  26379. ]
  26380. ))
  26381. characterMakers.push(() => makeCharacter(
  26382. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26383. {
  26384. front: {
  26385. height: math.unit(6.71, "feet"),
  26386. weight: math.unit(200, "lb"),
  26387. preyCapacity: math.unit(1000000, "people"),
  26388. name: "Front",
  26389. image: {
  26390. source: "./media/characters/gliss/front.svg",
  26391. extra: 2347 / 2231,
  26392. bottom: 113 / 2462
  26393. }
  26394. },
  26395. hammerspaceSize: {
  26396. height: math.unit(6.71 * 717, "feet"),
  26397. weight: math.unit(200, "lb"),
  26398. preyCapacity: math.unit(1000000, "people"),
  26399. name: "Hammerspace Size",
  26400. image: {
  26401. source: "./media/characters/gliss/front.svg",
  26402. extra: 2347 / 2231,
  26403. bottom: 113 / 2462
  26404. }
  26405. },
  26406. },
  26407. [
  26408. {
  26409. name: "Normal",
  26410. height: math.unit(6.71, "feet"),
  26411. default: true
  26412. },
  26413. ]
  26414. ))
  26415. characterMakers.push(() => makeCharacter(
  26416. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26417. {
  26418. side: {
  26419. height: math.unit(1.44, "m"),
  26420. weight: math.unit(80, "kg"),
  26421. name: "Side",
  26422. image: {
  26423. source: "./media/characters/dune-anderson/side.svg",
  26424. bottom: 49 / 1426
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Wolf-sized",
  26431. height: math.unit(1.44, "meters")
  26432. },
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(5.05, "meters"),
  26436. default: true
  26437. },
  26438. {
  26439. name: "Big",
  26440. height: math.unit(14.4, "meters")
  26441. },
  26442. {
  26443. name: "Huge",
  26444. height: math.unit(144, "meters")
  26445. },
  26446. ]
  26447. ))
  26448. characterMakers.push(() => makeCharacter(
  26449. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26450. {
  26451. front: {
  26452. height: math.unit(7, "feet"),
  26453. weight: math.unit(425, "lb"),
  26454. name: "Front",
  26455. image: {
  26456. source: "./media/characters/hind/front.svg",
  26457. extra: 2091 / 1860,
  26458. bottom: 129 / 2220
  26459. }
  26460. },
  26461. back: {
  26462. height: math.unit(7, "feet"),
  26463. weight: math.unit(425, "lb"),
  26464. name: "Back",
  26465. image: {
  26466. source: "./media/characters/hind/back.svg",
  26467. extra: 2091 / 1860,
  26468. bottom: 24.6 / 2309
  26469. }
  26470. },
  26471. tail: {
  26472. height: math.unit(2.8, "feet"),
  26473. name: "Tail",
  26474. image: {
  26475. source: "./media/characters/hind/tail.svg"
  26476. }
  26477. },
  26478. head: {
  26479. height: math.unit(2.55, "feet"),
  26480. name: "Head",
  26481. image: {
  26482. source: "./media/characters/hind/head.svg"
  26483. }
  26484. },
  26485. },
  26486. [
  26487. {
  26488. name: "XS",
  26489. height: math.unit(0.7, "feet")
  26490. },
  26491. {
  26492. name: "Normal",
  26493. height: math.unit(7, "feet"),
  26494. default: true
  26495. },
  26496. {
  26497. name: "XL",
  26498. height: math.unit(70, "feet")
  26499. },
  26500. ]
  26501. ))
  26502. characterMakers.push(() => makeCharacter(
  26503. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26504. {
  26505. front: {
  26506. height: math.unit(2.1, "meters"),
  26507. weight: math.unit(150, "lb"),
  26508. name: "Front",
  26509. image: {
  26510. source: "./media/characters/tharquench-sizestealer/front.svg",
  26511. extra: 1605/1470,
  26512. bottom: 36/1641
  26513. }
  26514. },
  26515. frontAlt: {
  26516. height: math.unit(2.1, "meters"),
  26517. weight: math.unit(150, "lb"),
  26518. name: "Front (Alt)",
  26519. image: {
  26520. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26521. extra: 2318 / 2063,
  26522. bottom: 93.4 / 2410
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Nano",
  26529. height: math.unit(1, "mm")
  26530. },
  26531. {
  26532. name: "Micro",
  26533. height: math.unit(1, "cm")
  26534. },
  26535. {
  26536. name: "Normal",
  26537. height: math.unit(2.1, "meters"),
  26538. default: true
  26539. },
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26544. {
  26545. front: {
  26546. height: math.unit(7 + 5 / 12, "feet"),
  26547. weight: math.unit(357, "lb"),
  26548. name: "Front",
  26549. image: {
  26550. source: "./media/characters/solex-draconov/front.svg",
  26551. extra: 1993 / 1865,
  26552. bottom: 117 / 2111
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Natural Height",
  26559. height: math.unit(7 + 5 / 12, "feet"),
  26560. default: true
  26561. },
  26562. {
  26563. name: "Macro",
  26564. height: math.unit(350, "feet")
  26565. },
  26566. {
  26567. name: "Macro+",
  26568. height: math.unit(1000, "feet")
  26569. },
  26570. {
  26571. name: "Megamacro",
  26572. height: math.unit(20, "km")
  26573. },
  26574. {
  26575. name: "Megamacro+",
  26576. height: math.unit(1000, "km")
  26577. },
  26578. {
  26579. name: "Gigamacro",
  26580. height: math.unit(2.5, "Gm")
  26581. },
  26582. {
  26583. name: "Teramacro",
  26584. height: math.unit(15, "Tm")
  26585. },
  26586. {
  26587. name: "Galactic",
  26588. height: math.unit(30, "Zm")
  26589. },
  26590. {
  26591. name: "Universal",
  26592. height: math.unit(21000, "Ym")
  26593. },
  26594. {
  26595. name: "Omniversal",
  26596. height: math.unit(9.861e50, "Ym")
  26597. },
  26598. {
  26599. name: "Existential",
  26600. height: math.unit(1e300, "meters")
  26601. },
  26602. ]
  26603. ))
  26604. characterMakers.push(() => makeCharacter(
  26605. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26606. {
  26607. side: {
  26608. height: math.unit(25, "feet"),
  26609. weight: math.unit(90000, "lb"),
  26610. name: "Side",
  26611. image: {
  26612. source: "./media/characters/mandarax/side.svg",
  26613. extra: 614 / 332,
  26614. bottom: 55 / 630
  26615. }
  26616. },
  26617. lounging: {
  26618. height: math.unit(15.4, "feet"),
  26619. weight: math.unit(90000, "lb"),
  26620. name: "Lounging",
  26621. image: {
  26622. source: "./media/characters/mandarax/lounging.svg",
  26623. extra: 817/609,
  26624. bottom: 685/1502
  26625. }
  26626. },
  26627. head: {
  26628. height: math.unit(11.4, "feet"),
  26629. name: "Head",
  26630. image: {
  26631. source: "./media/characters/mandarax/head.svg"
  26632. }
  26633. },
  26634. belly: {
  26635. height: math.unit(33, "feet"),
  26636. name: "Belly",
  26637. preyCapacity: math.unit(500, "people"),
  26638. image: {
  26639. source: "./media/characters/mandarax/belly.svg"
  26640. }
  26641. },
  26642. dick: {
  26643. height: math.unit(8.46, "feet"),
  26644. name: "Dick",
  26645. image: {
  26646. source: "./media/characters/mandarax/dick.svg"
  26647. }
  26648. },
  26649. top: {
  26650. height: math.unit(28, "meters"),
  26651. name: "Top",
  26652. image: {
  26653. source: "./media/characters/mandarax/top.svg"
  26654. }
  26655. },
  26656. },
  26657. [
  26658. {
  26659. name: "Normal",
  26660. height: math.unit(25, "feet"),
  26661. default: true
  26662. },
  26663. ]
  26664. ))
  26665. characterMakers.push(() => makeCharacter(
  26666. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26667. {
  26668. front: {
  26669. height: math.unit(5, "feet"),
  26670. weight: math.unit(90, "lb"),
  26671. name: "Front",
  26672. image: {
  26673. source: "./media/characters/pixil/front.svg",
  26674. extra: 2000 / 1618,
  26675. bottom: 12.3 / 2011
  26676. }
  26677. },
  26678. },
  26679. [
  26680. {
  26681. name: "Normal",
  26682. height: math.unit(5, "feet"),
  26683. default: true
  26684. },
  26685. {
  26686. name: "Megamacro",
  26687. height: math.unit(10, "miles"),
  26688. },
  26689. ]
  26690. ))
  26691. characterMakers.push(() => makeCharacter(
  26692. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26693. {
  26694. front: {
  26695. height: math.unit(7 + 2 / 12, "feet"),
  26696. weight: math.unit(200, "lb"),
  26697. name: "Front",
  26698. image: {
  26699. source: "./media/characters/angel/front.svg",
  26700. extra: 1830 / 1737,
  26701. bottom: 22.6 / 1854,
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(7 + 2 / 12, "feet"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(1000, "feet")
  26714. },
  26715. {
  26716. name: "Megamacro",
  26717. height: math.unit(2, "miles")
  26718. },
  26719. {
  26720. name: "Gigamacro",
  26721. height: math.unit(20, "earths")
  26722. },
  26723. ]
  26724. ))
  26725. characterMakers.push(() => makeCharacter(
  26726. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26727. {
  26728. front: {
  26729. height: math.unit(5, "feet"),
  26730. weight: math.unit(180, "lb"),
  26731. name: "Front",
  26732. image: {
  26733. source: "./media/characters/mekana/front.svg",
  26734. extra: 1671 / 1605,
  26735. bottom: 3.5 / 1691
  26736. }
  26737. },
  26738. side: {
  26739. height: math.unit(5, "feet"),
  26740. weight: math.unit(180, "lb"),
  26741. name: "Side",
  26742. image: {
  26743. source: "./media/characters/mekana/side.svg",
  26744. extra: 1671 / 1605,
  26745. bottom: 3.5 / 1691
  26746. }
  26747. },
  26748. back: {
  26749. height: math.unit(5, "feet"),
  26750. weight: math.unit(180, "lb"),
  26751. name: "Back",
  26752. image: {
  26753. source: "./media/characters/mekana/back.svg",
  26754. extra: 1671 / 1605,
  26755. bottom: 3.5 / 1691
  26756. }
  26757. },
  26758. },
  26759. [
  26760. {
  26761. name: "Normal",
  26762. height: math.unit(5, "feet"),
  26763. default: true
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26769. {
  26770. front: {
  26771. height: math.unit(4 + 6 / 12, "feet"),
  26772. weight: math.unit(80, "lb"),
  26773. name: "Front",
  26774. image: {
  26775. source: "./media/characters/pixie/front.svg",
  26776. extra: 1924 / 1825,
  26777. bottom: 22.4 / 1946
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(4 + 6 / 12, "feet"),
  26785. default: true
  26786. },
  26787. {
  26788. name: "Macro",
  26789. height: math.unit(40, "feet")
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(2.1, "meters"),
  26798. weight: math.unit(200, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/the-lascivious/front.svg",
  26802. extra: 1 / 0.893,
  26803. bottom: 3.5 / 573.7
  26804. }
  26805. },
  26806. },
  26807. [
  26808. {
  26809. name: "Human Scale",
  26810. height: math.unit(2.1, "meters")
  26811. },
  26812. {
  26813. name: "Wolxi Scale",
  26814. height: math.unit(46.2, "m"),
  26815. default: true
  26816. },
  26817. {
  26818. name: "Boinker of Buildings",
  26819. height: math.unit(10, "km")
  26820. },
  26821. {
  26822. name: "Shagger of Skyscrapers",
  26823. height: math.unit(40, "km")
  26824. },
  26825. {
  26826. name: "Banger of Boroughs",
  26827. height: math.unit(4000, "km")
  26828. },
  26829. {
  26830. name: "Screwer of States",
  26831. height: math.unit(100000, "km")
  26832. },
  26833. {
  26834. name: "Pounder of Planets",
  26835. height: math.unit(2000000, "km")
  26836. },
  26837. ]
  26838. ))
  26839. characterMakers.push(() => makeCharacter(
  26840. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26841. {
  26842. front: {
  26843. height: math.unit(6, "feet"),
  26844. weight: math.unit(150, "lb"),
  26845. name: "Front",
  26846. image: {
  26847. source: "./media/characters/aj/front.svg",
  26848. extra: 2039 / 1562,
  26849. bottom: 40 / 2079
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Normal",
  26856. height: math.unit(11 + 6 / 12, "feet"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Megamacro",
  26861. height: math.unit(60, "megameters")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26867. {
  26868. side: {
  26869. height: math.unit(31 + 8 / 12, "feet"),
  26870. weight: math.unit(75000, "kg"),
  26871. name: "Side",
  26872. image: {
  26873. source: "./media/characters/koros/side.svg",
  26874. extra: 1442 / 1297,
  26875. bottom: 122.7 / 1562
  26876. }
  26877. },
  26878. dicksKingsCrown: {
  26879. height: math.unit(6, "feet"),
  26880. name: "Dicks (King's Crown)",
  26881. image: {
  26882. source: "./media/characters/koros/dicks-kings-crown.svg"
  26883. }
  26884. },
  26885. dicksTailSet: {
  26886. height: math.unit(3, "feet"),
  26887. name: "Dicks (Tail Set)",
  26888. image: {
  26889. source: "./media/characters/koros/dicks-tail-set.svg"
  26890. }
  26891. },
  26892. dickCumming: {
  26893. height: math.unit(7.98, "feet"),
  26894. name: "Dick (Cumming)",
  26895. image: {
  26896. source: "./media/characters/koros/dick-cumming.svg"
  26897. }
  26898. },
  26899. dicksBack: {
  26900. height: math.unit(5.9, "feet"),
  26901. name: "Dicks (Back)",
  26902. image: {
  26903. source: "./media/characters/koros/dicks-back.svg"
  26904. }
  26905. },
  26906. dicksFront: {
  26907. height: math.unit(3.72, "feet"),
  26908. name: "Dicks (Front)",
  26909. image: {
  26910. source: "./media/characters/koros/dicks-front.svg"
  26911. }
  26912. },
  26913. dicksPeeking: {
  26914. height: math.unit(3.0, "feet"),
  26915. name: "Dicks (Peeking)",
  26916. image: {
  26917. source: "./media/characters/koros/dicks-peeking.svg"
  26918. }
  26919. },
  26920. eye: {
  26921. height: math.unit(1.7, "feet"),
  26922. name: "Eye",
  26923. image: {
  26924. source: "./media/characters/koros/eye.svg"
  26925. }
  26926. },
  26927. headFront: {
  26928. height: math.unit(11.69, "feet"),
  26929. name: "Head (Front)",
  26930. image: {
  26931. source: "./media/characters/koros/head-front.svg"
  26932. }
  26933. },
  26934. headSide: {
  26935. height: math.unit(14, "feet"),
  26936. name: "Head (Side)",
  26937. image: {
  26938. source: "./media/characters/koros/head-side.svg"
  26939. }
  26940. },
  26941. leg: {
  26942. height: math.unit(17, "feet"),
  26943. name: "Leg",
  26944. image: {
  26945. source: "./media/characters/koros/leg.svg"
  26946. }
  26947. },
  26948. mawSide: {
  26949. height: math.unit(12.8, "feet"),
  26950. name: "Maw (Side)",
  26951. image: {
  26952. source: "./media/characters/koros/maw-side.svg"
  26953. }
  26954. },
  26955. mawSpitting: {
  26956. height: math.unit(17, "feet"),
  26957. name: "Maw (Spitting)",
  26958. image: {
  26959. source: "./media/characters/koros/maw-spitting.svg"
  26960. }
  26961. },
  26962. slit: {
  26963. height: math.unit(2.8, "feet"),
  26964. name: "Slit",
  26965. image: {
  26966. source: "./media/characters/koros/slit.svg"
  26967. }
  26968. },
  26969. stomach: {
  26970. height: math.unit(6.8, "feet"),
  26971. preyCapacity: math.unit(20, "people"),
  26972. name: "Stomach",
  26973. image: {
  26974. source: "./media/characters/koros/stomach.svg"
  26975. }
  26976. },
  26977. wingspanBottom: {
  26978. height: math.unit(114, "feet"),
  26979. name: "Wingspan (Bottom)",
  26980. image: {
  26981. source: "./media/characters/koros/wingspan-bottom.svg"
  26982. }
  26983. },
  26984. wingspanTop: {
  26985. height: math.unit(104, "feet"),
  26986. name: "Wingspan (Top)",
  26987. image: {
  26988. source: "./media/characters/koros/wingspan-top.svg"
  26989. }
  26990. },
  26991. },
  26992. [
  26993. {
  26994. name: "Normal",
  26995. height: math.unit(31 + 8 / 12, "feet"),
  26996. default: true
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27002. {
  27003. front: {
  27004. height: math.unit(18 + 5 / 12, "feet"),
  27005. weight: math.unit(3750, "kg"),
  27006. name: "Front",
  27007. image: {
  27008. source: "./media/characters/vexx/front.svg",
  27009. extra: 426 / 396,
  27010. bottom: 31.5 / 458
  27011. }
  27012. },
  27013. maw: {
  27014. height: math.unit(6, "feet"),
  27015. name: "Maw",
  27016. image: {
  27017. source: "./media/characters/vexx/maw.svg"
  27018. }
  27019. },
  27020. },
  27021. [
  27022. {
  27023. name: "Normal",
  27024. height: math.unit(18 + 5 / 12, "feet"),
  27025. default: true
  27026. },
  27027. ]
  27028. ))
  27029. characterMakers.push(() => makeCharacter(
  27030. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27031. {
  27032. front: {
  27033. height: math.unit(17 + 6 / 12, "feet"),
  27034. weight: math.unit(150, "lb"),
  27035. name: "Front",
  27036. image: {
  27037. source: "./media/characters/baadra/front.svg",
  27038. extra: 1694/1553,
  27039. bottom: 179/1873
  27040. }
  27041. },
  27042. frontAlt: {
  27043. height: math.unit(17 + 6 / 12, "feet"),
  27044. weight: math.unit(150, "lb"),
  27045. name: "Front (Alt)",
  27046. image: {
  27047. source: "./media/characters/baadra/front-alt.svg",
  27048. extra: 3137 / 2890,
  27049. bottom: 168.4 / 3305
  27050. }
  27051. },
  27052. back: {
  27053. height: math.unit(17 + 6 / 12, "feet"),
  27054. weight: math.unit(150, "lb"),
  27055. name: "Back",
  27056. image: {
  27057. source: "./media/characters/baadra/back.svg",
  27058. extra: 3142 / 2890,
  27059. bottom: 220 / 3371
  27060. }
  27061. },
  27062. head: {
  27063. height: math.unit(5.45, "feet"),
  27064. name: "Head",
  27065. image: {
  27066. source: "./media/characters/baadra/head.svg"
  27067. }
  27068. },
  27069. headAngry: {
  27070. height: math.unit(4.95, "feet"),
  27071. name: "Head (Angry)",
  27072. image: {
  27073. source: "./media/characters/baadra/head-angry.svg"
  27074. }
  27075. },
  27076. headOpen: {
  27077. height: math.unit(6, "feet"),
  27078. name: "Head (Open)",
  27079. image: {
  27080. source: "./media/characters/baadra/head-open.svg"
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(17 + 6 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(7 + 3 / 12, "feet"),
  27097. weight: math.unit(180, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/juri/front.svg",
  27101. extra: 1401 / 1237,
  27102. bottom: 18.5 / 1418
  27103. }
  27104. },
  27105. side: {
  27106. height: math.unit(7 + 3 / 12, "feet"),
  27107. weight: math.unit(180, "lb"),
  27108. name: "Side",
  27109. image: {
  27110. source: "./media/characters/juri/side.svg",
  27111. extra: 1424 / 1242,
  27112. bottom: 18.5 / 1447
  27113. }
  27114. },
  27115. sitting: {
  27116. height: math.unit(6, "feet"),
  27117. weight: math.unit(180, "lb"),
  27118. name: "Sitting",
  27119. image: {
  27120. source: "./media/characters/juri/sitting.svg",
  27121. extra: 1270 / 1143,
  27122. bottom: 100 / 1343
  27123. }
  27124. },
  27125. back: {
  27126. height: math.unit(7 + 3 / 12, "feet"),
  27127. weight: math.unit(180, "lb"),
  27128. name: "Back",
  27129. image: {
  27130. source: "./media/characters/juri/back.svg",
  27131. extra: 1377 / 1240,
  27132. bottom: 23.7 / 1405
  27133. }
  27134. },
  27135. maw: {
  27136. height: math.unit(2.8, "feet"),
  27137. name: "Maw",
  27138. image: {
  27139. source: "./media/characters/juri/maw.svg"
  27140. }
  27141. },
  27142. stomach: {
  27143. height: math.unit(0.89, "feet"),
  27144. preyCapacity: math.unit(4, "liters"),
  27145. name: "Stomach",
  27146. image: {
  27147. source: "./media/characters/juri/stomach.svg"
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Normal",
  27154. height: math.unit(7 + 3 / 12, "feet"),
  27155. default: true
  27156. },
  27157. ]
  27158. ))
  27159. characterMakers.push(() => makeCharacter(
  27160. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27161. {
  27162. fox: {
  27163. height: math.unit(5 + 6 / 12, "feet"),
  27164. weight: math.unit(140, "lb"),
  27165. name: "Fox",
  27166. image: {
  27167. source: "./media/characters/maxene-sita/fox.svg",
  27168. extra: 146 / 138,
  27169. bottom: 2.1 / 148.19
  27170. }
  27171. },
  27172. foxLaying: {
  27173. height: math.unit(1.70, "feet"),
  27174. weight: math.unit(140, "lb"),
  27175. name: "Fox (Laying)",
  27176. image: {
  27177. source: "./media/characters/maxene-sita/fox-laying.svg",
  27178. extra: 910 / 572,
  27179. bottom: 71 / 981
  27180. }
  27181. },
  27182. kitsune: {
  27183. height: math.unit(10, "feet"),
  27184. weight: math.unit(800, "lb"),
  27185. name: "Kitsune",
  27186. image: {
  27187. source: "./media/characters/maxene-sita/kitsune.svg",
  27188. extra: 185 / 176,
  27189. bottom: 4.7 / 189.9
  27190. }
  27191. },
  27192. hellhound: {
  27193. height: math.unit(10, "feet"),
  27194. weight: math.unit(700, "lb"),
  27195. name: "Hellhound",
  27196. image: {
  27197. source: "./media/characters/maxene-sita/hellhound.svg",
  27198. extra: 1600 / 1545,
  27199. bottom: 81 / 1681
  27200. }
  27201. },
  27202. },
  27203. [
  27204. {
  27205. name: "Normal",
  27206. height: math.unit(5 + 6 / 12, "feet"),
  27207. default: true
  27208. },
  27209. ]
  27210. ))
  27211. characterMakers.push(() => makeCharacter(
  27212. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27213. {
  27214. front: {
  27215. height: math.unit(3 + 4 / 12, "feet"),
  27216. weight: math.unit(70, "lb"),
  27217. name: "Front",
  27218. image: {
  27219. source: "./media/characters/maia/front.svg",
  27220. extra: 227 / 219.5,
  27221. bottom: 40 / 267
  27222. }
  27223. },
  27224. back: {
  27225. height: math.unit(3 + 4 / 12, "feet"),
  27226. weight: math.unit(70, "lb"),
  27227. name: "Back",
  27228. image: {
  27229. source: "./media/characters/maia/back.svg",
  27230. extra: 237 / 225
  27231. }
  27232. },
  27233. },
  27234. [
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(3 + 4 / 12, "feet"),
  27238. default: true
  27239. },
  27240. ]
  27241. ))
  27242. characterMakers.push(() => makeCharacter(
  27243. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27244. {
  27245. front: {
  27246. height: math.unit(5 + 10 / 12, "feet"),
  27247. weight: math.unit(197, "lb"),
  27248. name: "Front",
  27249. image: {
  27250. source: "./media/characters/jabaro/front.svg",
  27251. extra: 225 / 216,
  27252. bottom: 5.06 / 230
  27253. }
  27254. },
  27255. back: {
  27256. height: math.unit(5 + 10 / 12, "feet"),
  27257. weight: math.unit(197, "lb"),
  27258. name: "Back",
  27259. image: {
  27260. source: "./media/characters/jabaro/back.svg",
  27261. extra: 225 / 219,
  27262. bottom: 1.9 / 227
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(5 + 10 / 12, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(5 + 8 / 12, "feet"),
  27279. weight: math.unit(139, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/risa/front.svg",
  27283. extra: 270 / 260,
  27284. bottom: 11.2 / 282
  27285. }
  27286. },
  27287. back: {
  27288. height: math.unit(5 + 8 / 12, "feet"),
  27289. weight: math.unit(139, "lb"),
  27290. name: "Back",
  27291. image: {
  27292. source: "./media/characters/risa/back.svg",
  27293. extra: 264 / 255,
  27294. bottom: 4 / 268
  27295. }
  27296. },
  27297. },
  27298. [
  27299. {
  27300. name: "Normal",
  27301. height: math.unit(5 + 8 / 12, "feet"),
  27302. default: true
  27303. },
  27304. ]
  27305. ))
  27306. characterMakers.push(() => makeCharacter(
  27307. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27308. {
  27309. front: {
  27310. height: math.unit(2 + 11 / 12, "feet"),
  27311. weight: math.unit(30, "lb"),
  27312. name: "Front",
  27313. image: {
  27314. source: "./media/characters/weatley/front.svg",
  27315. bottom: 10.7 / 414,
  27316. extra: 403.5 / 362
  27317. }
  27318. },
  27319. back: {
  27320. height: math.unit(2 + 11 / 12, "feet"),
  27321. weight: math.unit(30, "lb"),
  27322. name: "Back",
  27323. image: {
  27324. source: "./media/characters/weatley/back.svg",
  27325. bottom: 10.7 / 414,
  27326. extra: 403.5 / 362
  27327. }
  27328. },
  27329. },
  27330. [
  27331. {
  27332. name: "Normal",
  27333. height: math.unit(2 + 11 / 12, "feet"),
  27334. default: true
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(5 + 2 / 12, "feet"),
  27343. weight: math.unit(50, "kg"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/mercury-crescent/front.svg",
  27347. extra: 1088 / 1033,
  27348. bottom: 18.9 / 1109
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(5 + 2 / 12, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(2, "feet"),
  27365. weight: math.unit(15, "kg"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/diamond-jones/front.svg",
  27369. extra: 727/723,
  27370. bottom: 46/773
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(2, "feet"),
  27378. default: true
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(3, "feet"),
  27387. weight: math.unit(30, "kg"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/sweet-bit/front.svg",
  27391. extra: 675 / 567,
  27392. bottom: 27.7 / 703
  27393. }
  27394. },
  27395. },
  27396. [
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(3, "feet"),
  27400. default: true
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27406. {
  27407. side: {
  27408. height: math.unit(9.178, "feet"),
  27409. weight: math.unit(500, "lb"),
  27410. name: "Side",
  27411. image: {
  27412. source: "./media/characters/umbrazen/side.svg",
  27413. extra: 1730 / 1473,
  27414. bottom: 34.6 / 1765
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(9.178, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(10, "feet"),
  27431. weight: math.unit(750, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/arlist/front.svg",
  27435. extra: 961 / 778,
  27436. bottom: 6.2 / 986
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(10, "feet"),
  27444. default: true
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(5 + 1 / 12, "feet"),
  27453. weight: math.unit(110, "lb"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/aradel/front.svg",
  27457. extra: 324 / 303,
  27458. bottom: 3.6 / 329.4
  27459. }
  27460. },
  27461. },
  27462. [
  27463. {
  27464. name: "Normal",
  27465. height: math.unit(5 + 1 / 12, "feet"),
  27466. default: true
  27467. },
  27468. ]
  27469. ))
  27470. characterMakers.push(() => makeCharacter(
  27471. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27472. {
  27473. dressed: {
  27474. height: math.unit(3 + 8 / 12, "feet"),
  27475. weight: math.unit(50, "lb"),
  27476. name: "Dressed",
  27477. image: {
  27478. source: "./media/characters/serryn/dressed.svg",
  27479. extra: 1792 / 1656,
  27480. bottom: 43.5 / 1840
  27481. }
  27482. },
  27483. nude: {
  27484. height: math.unit(3 + 8 / 12, "feet"),
  27485. weight: math.unit(50, "lb"),
  27486. name: "Nude",
  27487. image: {
  27488. source: "./media/characters/serryn/nude.svg",
  27489. extra: 1792 / 1656,
  27490. bottom: 43.5 / 1840
  27491. }
  27492. },
  27493. },
  27494. [
  27495. {
  27496. name: "Normal",
  27497. height: math.unit(3 + 8 / 12, "feet"),
  27498. default: true
  27499. },
  27500. ]
  27501. ))
  27502. characterMakers.push(() => makeCharacter(
  27503. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27504. {
  27505. front: {
  27506. height: math.unit(7 + 10 / 12, "feet"),
  27507. weight: math.unit(255, "lb"),
  27508. name: "Front",
  27509. image: {
  27510. source: "./media/characters/xavier-thyme/front.svg",
  27511. extra: 3733 / 3642,
  27512. bottom: 131 / 3869
  27513. }
  27514. },
  27515. frontRaven: {
  27516. height: math.unit(7 + 10 / 12, "feet"),
  27517. weight: math.unit(255, "lb"),
  27518. name: "Front (Raven)",
  27519. image: {
  27520. source: "./media/characters/xavier-thyme/front-raven.svg",
  27521. extra: 4385 / 3642,
  27522. bottom: 131 / 4517
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(7 + 10 / 12, "feet"),
  27530. default: true
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(1.6, "m"),
  27539. weight: math.unit(50, "kg"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/kiki/front.svg",
  27543. extra: 4682 / 3610,
  27544. bottom: 115 / 4777
  27545. }
  27546. },
  27547. },
  27548. [
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(1.6, "meters"),
  27552. default: true
  27553. },
  27554. ]
  27555. ))
  27556. characterMakers.push(() => makeCharacter(
  27557. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27558. {
  27559. front: {
  27560. height: math.unit(50, "m"),
  27561. weight: math.unit(500, "tonnes"),
  27562. name: "Front",
  27563. image: {
  27564. source: "./media/characters/ryoko/front.svg",
  27565. extra: 4632 / 3926,
  27566. bottom: 193 / 4823
  27567. }
  27568. },
  27569. },
  27570. [
  27571. {
  27572. name: "Normal",
  27573. height: math.unit(50, "meters"),
  27574. default: true
  27575. },
  27576. ]
  27577. ))
  27578. characterMakers.push(() => makeCharacter(
  27579. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27580. {
  27581. front: {
  27582. height: math.unit(30, "m"),
  27583. weight: math.unit(22, "tonnes"),
  27584. name: "Front",
  27585. image: {
  27586. source: "./media/characters/elio/front.svg",
  27587. extra: 4582 / 3720,
  27588. bottom: 236 / 4828
  27589. }
  27590. },
  27591. },
  27592. [
  27593. {
  27594. name: "Normal",
  27595. height: math.unit(30, "meters"),
  27596. default: true
  27597. },
  27598. ]
  27599. ))
  27600. characterMakers.push(() => makeCharacter(
  27601. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27602. {
  27603. front: {
  27604. height: math.unit(6 + 3 / 12, "feet"),
  27605. weight: math.unit(120, "lb"),
  27606. name: "Front",
  27607. image: {
  27608. source: "./media/characters/azura/front.svg",
  27609. extra: 1149 / 1135,
  27610. bottom: 45 / 1194
  27611. }
  27612. },
  27613. frontClothed: {
  27614. height: math.unit(6 + 3 / 12, "feet"),
  27615. weight: math.unit(120, "lb"),
  27616. name: "Front (Clothed)",
  27617. image: {
  27618. source: "./media/characters/azura/front-clothed.svg",
  27619. extra: 1149 / 1135,
  27620. bottom: 45 / 1194
  27621. }
  27622. },
  27623. },
  27624. [
  27625. {
  27626. name: "Normal",
  27627. height: math.unit(6 + 3 / 12, "feet"),
  27628. default: true
  27629. },
  27630. {
  27631. name: "Macro",
  27632. height: math.unit(20 + 6 / 12, "feet")
  27633. },
  27634. {
  27635. name: "Megamacro",
  27636. height: math.unit(12, "miles")
  27637. },
  27638. {
  27639. name: "Gigamacro",
  27640. height: math.unit(10000, "miles")
  27641. },
  27642. {
  27643. name: "Teramacro",
  27644. height: math.unit(900000, "miles")
  27645. },
  27646. ]
  27647. ))
  27648. characterMakers.push(() => makeCharacter(
  27649. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27650. {
  27651. front: {
  27652. height: math.unit(12, "feet"),
  27653. weight: math.unit(1, "ton"),
  27654. capacity: math.unit(660000, "gallons"),
  27655. name: "Front",
  27656. image: {
  27657. source: "./media/characters/zeus/front.svg",
  27658. extra: 5005 / 4717,
  27659. bottom: 363 / 5388
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(12, "feet")
  27667. },
  27668. {
  27669. name: "Preferred Size",
  27670. height: math.unit(0.5, "miles"),
  27671. default: true
  27672. },
  27673. {
  27674. name: "Giga Horse",
  27675. height: math.unit(300, "miles")
  27676. },
  27677. {
  27678. name: "Riding Planets",
  27679. height: math.unit(30, "megameters")
  27680. },
  27681. {
  27682. name: "Cosmic Giant",
  27683. height: math.unit(3, "zettameters")
  27684. },
  27685. {
  27686. name: "Breeding God",
  27687. height: math.unit(9.92e22, "yottameters")
  27688. },
  27689. ]
  27690. ))
  27691. characterMakers.push(() => makeCharacter(
  27692. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27693. {
  27694. side: {
  27695. height: math.unit(9, "feet"),
  27696. weight: math.unit(1500, "kg"),
  27697. name: "Side",
  27698. image: {
  27699. source: "./media/characters/fang/side.svg",
  27700. extra: 924 / 866,
  27701. bottom: 47.5 / 972.3
  27702. }
  27703. },
  27704. },
  27705. [
  27706. {
  27707. name: "Normal",
  27708. height: math.unit(9, "feet"),
  27709. default: true
  27710. },
  27711. {
  27712. name: "Macro",
  27713. height: math.unit(75 + 6 / 12, "feet")
  27714. },
  27715. {
  27716. name: "Teramacro",
  27717. height: math.unit(50000, "miles")
  27718. },
  27719. ]
  27720. ))
  27721. characterMakers.push(() => makeCharacter(
  27722. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27723. {
  27724. front: {
  27725. height: math.unit(10, "feet"),
  27726. weight: math.unit(2, "tons"),
  27727. name: "Front",
  27728. image: {
  27729. source: "./media/characters/rekhit/front.svg",
  27730. extra: 2796 / 2590,
  27731. bottom: 225 / 3022
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(10, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(500, "feet")
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(7 + 6.451 / 12, "feet"),
  27752. weight: math.unit(310, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/dahlia-verrick/front.svg",
  27756. extra: 1488 / 1365,
  27757. bottom: 6.2 / 1495
  27758. }
  27759. },
  27760. back: {
  27761. height: math.unit(7 + 6.451 / 12, "feet"),
  27762. weight: math.unit(310, "lb"),
  27763. name: "Back",
  27764. image: {
  27765. source: "./media/characters/dahlia-verrick/back.svg",
  27766. extra: 1472 / 1351,
  27767. bottom: 5.28 / 1477
  27768. }
  27769. },
  27770. frontBusiness: {
  27771. height: math.unit(7 + 6.451 / 12, "feet"),
  27772. weight: math.unit(200, "lb"),
  27773. name: "Front (Business)",
  27774. image: {
  27775. source: "./media/characters/dahlia-verrick/front-business.svg",
  27776. extra: 1478 / 1381,
  27777. bottom: 5.5 / 1484
  27778. }
  27779. },
  27780. frontCasual: {
  27781. height: math.unit(7 + 6.451 / 12, "feet"),
  27782. weight: math.unit(200, "lb"),
  27783. name: "Front (Casual)",
  27784. image: {
  27785. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27786. extra: 1478 / 1381,
  27787. bottom: 5.5 / 1484
  27788. }
  27789. },
  27790. },
  27791. [
  27792. {
  27793. name: "Travel-Sized",
  27794. height: math.unit(7.45, "inches")
  27795. },
  27796. {
  27797. name: "Normal",
  27798. height: math.unit(7 + 6.451 / 12, "feet"),
  27799. default: true
  27800. },
  27801. {
  27802. name: "Hitting the Town",
  27803. height: math.unit(37 + 8 / 12, "feet")
  27804. },
  27805. {
  27806. name: "Stomp in the Suburbs",
  27807. height: math.unit(964 + 9.728 / 12, "feet")
  27808. },
  27809. {
  27810. name: "Sit on the City",
  27811. height: math.unit(61747 + 10.592 / 12, "feet")
  27812. },
  27813. {
  27814. name: "Glomp the Globe",
  27815. height: math.unit(252919327 + 4.832 / 12, "feet")
  27816. },
  27817. ]
  27818. ))
  27819. characterMakers.push(() => makeCharacter(
  27820. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27821. {
  27822. front: {
  27823. height: math.unit(6 + 4 / 12, "feet"),
  27824. weight: math.unit(320, "lb"),
  27825. name: "Front",
  27826. image: {
  27827. source: "./media/characters/balina-mahigan/front.svg",
  27828. extra: 447 / 428,
  27829. bottom: 18 / 466
  27830. }
  27831. },
  27832. back: {
  27833. height: math.unit(6 + 4 / 12, "feet"),
  27834. weight: math.unit(320, "lb"),
  27835. name: "Back",
  27836. image: {
  27837. source: "./media/characters/balina-mahigan/back.svg",
  27838. extra: 445 / 428,
  27839. bottom: 4.07 / 448
  27840. }
  27841. },
  27842. arm: {
  27843. height: math.unit(1.88, "feet"),
  27844. name: "Arm",
  27845. image: {
  27846. source: "./media/characters/balina-mahigan/arm.svg"
  27847. }
  27848. },
  27849. backPort: {
  27850. height: math.unit(0.685, "feet"),
  27851. name: "Back Port",
  27852. image: {
  27853. source: "./media/characters/balina-mahigan/back-port.svg"
  27854. }
  27855. },
  27856. hoofpaw: {
  27857. height: math.unit(1.41, "feet"),
  27858. name: "Hoofpaw",
  27859. image: {
  27860. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27861. }
  27862. },
  27863. leftHandBack: {
  27864. height: math.unit(0.938, "feet"),
  27865. name: "Left Hand (Back)",
  27866. image: {
  27867. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27868. }
  27869. },
  27870. leftHandFront: {
  27871. height: math.unit(0.938, "feet"),
  27872. name: "Left Hand (Front)",
  27873. image: {
  27874. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27875. }
  27876. },
  27877. rightHandBack: {
  27878. height: math.unit(0.95, "feet"),
  27879. name: "Right Hand (Back)",
  27880. image: {
  27881. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27882. }
  27883. },
  27884. rightHandFront: {
  27885. height: math.unit(0.95, "feet"),
  27886. name: "Right Hand (Front)",
  27887. image: {
  27888. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Normal",
  27895. height: math.unit(6 + 4 / 12, "feet"),
  27896. default: true
  27897. },
  27898. ]
  27899. ))
  27900. characterMakers.push(() => makeCharacter(
  27901. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27902. {
  27903. front: {
  27904. height: math.unit(6, "feet"),
  27905. weight: math.unit(320, "lb"),
  27906. name: "Front",
  27907. image: {
  27908. source: "./media/characters/balina-mejeri/front.svg",
  27909. extra: 517 / 488,
  27910. bottom: 44.2 / 561
  27911. }
  27912. },
  27913. },
  27914. [
  27915. {
  27916. name: "Normal",
  27917. height: math.unit(6 + 4 / 12, "feet")
  27918. },
  27919. {
  27920. name: "Business",
  27921. height: math.unit(155, "feet"),
  27922. default: true
  27923. },
  27924. ]
  27925. ))
  27926. characterMakers.push(() => makeCharacter(
  27927. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27928. {
  27929. kneeling: {
  27930. height: math.unit(6 + 4 / 12, "feet"),
  27931. weight: math.unit(300 * 20, "lb"),
  27932. name: "Kneeling",
  27933. image: {
  27934. source: "./media/characters/balbarian/kneeling.svg",
  27935. extra: 922 / 862,
  27936. bottom: 42.4 / 965
  27937. }
  27938. },
  27939. },
  27940. [
  27941. {
  27942. name: "Normal",
  27943. height: math.unit(6 + 4 / 12, "feet")
  27944. },
  27945. {
  27946. name: "Treasured",
  27947. height: math.unit(18 + 9 / 12, "feet"),
  27948. default: true
  27949. },
  27950. {
  27951. name: "Macro",
  27952. height: math.unit(900, "feet")
  27953. },
  27954. ]
  27955. ))
  27956. characterMakers.push(() => makeCharacter(
  27957. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27958. {
  27959. front: {
  27960. height: math.unit(6 + 4 / 12, "feet"),
  27961. weight: math.unit(325, "lb"),
  27962. name: "Front",
  27963. image: {
  27964. source: "./media/characters/balina-amarini/front.svg",
  27965. extra: 415 / 403,
  27966. bottom: 19 / 433.4
  27967. }
  27968. },
  27969. back: {
  27970. height: math.unit(6 + 4 / 12, "feet"),
  27971. weight: math.unit(325, "lb"),
  27972. name: "Back",
  27973. image: {
  27974. source: "./media/characters/balina-amarini/back.svg",
  27975. extra: 415 / 403,
  27976. bottom: 13.5 / 432
  27977. }
  27978. },
  27979. overdrive: {
  27980. height: math.unit(6 + 4 / 12, "feet"),
  27981. weight: math.unit(400, "lb"),
  27982. name: "Overdrive",
  27983. image: {
  27984. source: "./media/characters/balina-amarini/overdrive.svg",
  27985. extra: 269 / 259,
  27986. bottom: 12 / 282
  27987. }
  27988. },
  27989. },
  27990. [
  27991. {
  27992. name: "Boom",
  27993. height: math.unit(9 + 10 / 12, "feet"),
  27994. default: true
  27995. },
  27996. {
  27997. name: "Macro",
  27998. height: math.unit(280, "feet")
  27999. },
  28000. ]
  28001. ))
  28002. characterMakers.push(() => makeCharacter(
  28003. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28004. {
  28005. goddess: {
  28006. height: math.unit(600, "feet"),
  28007. weight: math.unit(2000000, "tons"),
  28008. name: "Goddess",
  28009. image: {
  28010. source: "./media/characters/lady-kubwa/goddess.svg",
  28011. extra: 1240.5 / 1223,
  28012. bottom: 22 / 1263
  28013. }
  28014. },
  28015. goddesser: {
  28016. height: math.unit(900, "feet"),
  28017. weight: math.unit(20000000, "lb"),
  28018. name: "Goddess-er",
  28019. image: {
  28020. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28021. extra: 899 / 888,
  28022. bottom: 12.6 / 912
  28023. }
  28024. },
  28025. },
  28026. [
  28027. {
  28028. name: "Macro",
  28029. height: math.unit(600, "feet"),
  28030. default: true
  28031. },
  28032. {
  28033. name: "Megamacro",
  28034. height: math.unit(250, "miles")
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(7 + 7 / 12, "feet"),
  28043. weight: math.unit(250, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/tala-grovehorn/front.svg",
  28047. extra: 2636 / 2525,
  28048. bottom: 147 / 2781
  28049. }
  28050. },
  28051. back: {
  28052. height: math.unit(7 + 7 / 12, "feet"),
  28053. weight: math.unit(250, "lb"),
  28054. name: "Back",
  28055. image: {
  28056. source: "./media/characters/tala-grovehorn/back.svg",
  28057. extra: 2635 / 2539,
  28058. bottom: 100 / 2732.8
  28059. }
  28060. },
  28061. mouth: {
  28062. height: math.unit(1.15, "feet"),
  28063. name: "Mouth",
  28064. image: {
  28065. source: "./media/characters/tala-grovehorn/mouth.svg"
  28066. }
  28067. },
  28068. dick: {
  28069. height: math.unit(2.36, "feet"),
  28070. name: "Dick",
  28071. image: {
  28072. source: "./media/characters/tala-grovehorn/dick.svg"
  28073. }
  28074. },
  28075. slit: {
  28076. height: math.unit(0.61, "feet"),
  28077. name: "Slit",
  28078. image: {
  28079. source: "./media/characters/tala-grovehorn/slit.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(7 + 7 / 12, "feet"),
  28091. weight: math.unit(225, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/epona/front.svg",
  28095. extra: 2445 / 2290,
  28096. bottom: 251 / 2696
  28097. }
  28098. },
  28099. back: {
  28100. height: math.unit(7 + 7 / 12, "feet"),
  28101. weight: math.unit(225, "lb"),
  28102. name: "Back",
  28103. image: {
  28104. source: "./media/characters/epona/back.svg",
  28105. extra: 2546 / 2408,
  28106. bottom: 44 / 2589
  28107. }
  28108. },
  28109. genitals: {
  28110. height: math.unit(1.5, "feet"),
  28111. name: "Genitals",
  28112. image: {
  28113. source: "./media/characters/epona/genitals.svg"
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Normal",
  28120. height: math.unit(7 + 7 / 12, "feet"),
  28121. default: true
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(7, "feet"),
  28130. weight: math.unit(518, "lb"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/avia-bloodbourn/front.svg",
  28134. extra: 1466 / 1350,
  28135. bottom: 65 / 1527
  28136. }
  28137. },
  28138. },
  28139. [
  28140. ]
  28141. ))
  28142. characterMakers.push(() => makeCharacter(
  28143. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28144. {
  28145. front: {
  28146. height: math.unit(9.35, "feet"),
  28147. weight: math.unit(600, "lb"),
  28148. name: "Front",
  28149. image: {
  28150. source: "./media/characters/amera/front.svg",
  28151. extra: 891 / 818,
  28152. bottom: 30 / 922.7
  28153. }
  28154. },
  28155. back: {
  28156. height: math.unit(9.35, "feet"),
  28157. weight: math.unit(600, "lb"),
  28158. name: "Back",
  28159. image: {
  28160. source: "./media/characters/amera/back.svg",
  28161. extra: 876 / 824,
  28162. bottom: 6.8 / 884
  28163. }
  28164. },
  28165. dick: {
  28166. height: math.unit(2.14, "feet"),
  28167. name: "Dick",
  28168. image: {
  28169. source: "./media/characters/amera/dick.svg"
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(9.35, "feet"),
  28177. default: true
  28178. },
  28179. ]
  28180. ))
  28181. characterMakers.push(() => makeCharacter(
  28182. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28183. {
  28184. kneeling: {
  28185. height: math.unit(3 + 4 / 12, "feet"),
  28186. weight: math.unit(90, "lb"),
  28187. name: "Kneeling",
  28188. image: {
  28189. source: "./media/characters/rosewen/kneeling.svg",
  28190. extra: 1835 / 1571,
  28191. bottom: 27.7 / 1862
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Normal",
  28198. height: math.unit(3 + 4 / 12, "feet"),
  28199. default: true
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28205. {
  28206. front: {
  28207. height: math.unit(5 + 10 / 12, "feet"),
  28208. weight: math.unit(200, "lb"),
  28209. name: "Front",
  28210. image: {
  28211. source: "./media/characters/sabah/front.svg",
  28212. extra: 849 / 763,
  28213. bottom: 33.9 / 881
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(5 + 10 / 12, "feet"),
  28221. default: true
  28222. },
  28223. ]
  28224. ))
  28225. characterMakers.push(() => makeCharacter(
  28226. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28227. {
  28228. front: {
  28229. height: math.unit(3 + 5 / 12, "feet"),
  28230. weight: math.unit(40, "kg"),
  28231. name: "Front",
  28232. image: {
  28233. source: "./media/characters/purple-flame/front.svg",
  28234. extra: 1577 / 1412,
  28235. bottom: 97 / 1694
  28236. }
  28237. },
  28238. frontDressed: {
  28239. height: math.unit(3 + 5 / 12, "feet"),
  28240. weight: math.unit(40, "kg"),
  28241. name: "Front (Dressed)",
  28242. image: {
  28243. source: "./media/characters/purple-flame/front-dressed.svg",
  28244. extra: 1577 / 1412,
  28245. bottom: 97 / 1694
  28246. }
  28247. },
  28248. headphones: {
  28249. height: math.unit(0.85, "feet"),
  28250. name: "Headphones",
  28251. image: {
  28252. source: "./media/characters/purple-flame/headphones.svg"
  28253. }
  28254. },
  28255. },
  28256. [
  28257. {
  28258. name: "Really Small",
  28259. height: math.unit(5, "cm")
  28260. },
  28261. {
  28262. name: "Micro",
  28263. height: math.unit(1 + 5 / 12, "feet")
  28264. },
  28265. {
  28266. name: "Normal",
  28267. height: math.unit(3 + 5 / 12, "feet"),
  28268. default: true
  28269. },
  28270. {
  28271. name: "Minimacro",
  28272. height: math.unit(125, "feet")
  28273. },
  28274. {
  28275. name: "Macro",
  28276. height: math.unit(0.5, "miles")
  28277. },
  28278. {
  28279. name: "Megamacro",
  28280. height: math.unit(50, "miles")
  28281. },
  28282. {
  28283. name: "Gigantic",
  28284. height: math.unit(750, "miles")
  28285. },
  28286. {
  28287. name: "Planetary",
  28288. height: math.unit(15000, "miles")
  28289. },
  28290. ]
  28291. ))
  28292. characterMakers.push(() => makeCharacter(
  28293. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28294. {
  28295. front: {
  28296. height: math.unit(14, "feet"),
  28297. weight: math.unit(959, "lb"),
  28298. name: "Front",
  28299. image: {
  28300. source: "./media/characters/arsenal/front.svg",
  28301. extra: 2357 / 2157,
  28302. bottom: 93 / 2458
  28303. }
  28304. },
  28305. },
  28306. [
  28307. {
  28308. name: "Normal",
  28309. height: math.unit(14, "feet"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(6, "feet"),
  28319. weight: math.unit(150, "lb"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/adira/front.svg",
  28323. extra: 1078 / 1029,
  28324. bottom: 87 / 1166
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Micro",
  28331. height: math.unit(4, "inches"),
  28332. default: true
  28333. },
  28334. {
  28335. name: "Macro",
  28336. height: math.unit(50, "feet")
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28342. {
  28343. front: {
  28344. height: math.unit(16, "feet"),
  28345. weight: math.unit(1000, "lb"),
  28346. name: "Front",
  28347. image: {
  28348. source: "./media/characters/grim/front.svg",
  28349. extra: 622 / 614,
  28350. bottom: 18.1 / 642
  28351. }
  28352. },
  28353. back: {
  28354. height: math.unit(16, "feet"),
  28355. weight: math.unit(1000, "lb"),
  28356. name: "Back",
  28357. image: {
  28358. source: "./media/characters/grim/back.svg",
  28359. extra: 610.6 / 602,
  28360. bottom: 40.8 / 652
  28361. }
  28362. },
  28363. hunched: {
  28364. height: math.unit(9.75, "feet"),
  28365. weight: math.unit(1000, "lb"),
  28366. name: "Hunched",
  28367. image: {
  28368. source: "./media/characters/grim/hunched.svg",
  28369. extra: 304 / 297,
  28370. bottom: 35.4 / 394
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(16, "feet"),
  28378. default: true
  28379. },
  28380. ]
  28381. ))
  28382. characterMakers.push(() => makeCharacter(
  28383. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28384. {
  28385. front: {
  28386. height: math.unit(2.3, "meters"),
  28387. weight: math.unit(300, "lb"),
  28388. name: "Front",
  28389. image: {
  28390. source: "./media/characters/sinja/front-sfw.svg",
  28391. extra: 1393 / 1294,
  28392. bottom: 70 / 1463
  28393. }
  28394. },
  28395. frontNsfw: {
  28396. height: math.unit(2.3, "meters"),
  28397. weight: math.unit(300, "lb"),
  28398. name: "Front (NSFW)",
  28399. image: {
  28400. source: "./media/characters/sinja/front-nsfw.svg",
  28401. extra: 1393 / 1294,
  28402. bottom: 70 / 1463
  28403. }
  28404. },
  28405. back: {
  28406. height: math.unit(2.3, "meters"),
  28407. weight: math.unit(300, "lb"),
  28408. name: "Back",
  28409. image: {
  28410. source: "./media/characters/sinja/back.svg",
  28411. extra: 1393 / 1294,
  28412. bottom: 70 / 1463
  28413. }
  28414. },
  28415. head: {
  28416. height: math.unit(1.771, "feet"),
  28417. name: "Head",
  28418. image: {
  28419. source: "./media/characters/sinja/head.svg"
  28420. }
  28421. },
  28422. slit: {
  28423. height: math.unit(0.8, "feet"),
  28424. name: "Slit",
  28425. image: {
  28426. source: "./media/characters/sinja/slit.svg"
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Normal",
  28433. height: math.unit(2.3, "meters")
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(91, "meters"),
  28438. default: true
  28439. },
  28440. {
  28441. name: "Megamacro",
  28442. height: math.unit(91440, "meters")
  28443. },
  28444. {
  28445. name: "Gigamacro",
  28446. height: math.unit(60960000, "meters")
  28447. },
  28448. {
  28449. name: "Teramacro",
  28450. height: math.unit(9144000000, "meters")
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(1.7, "meters"),
  28459. weight: math.unit(130, "lb"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/kyu/front.svg",
  28463. extra: 415 / 395,
  28464. bottom: 5 / 420
  28465. }
  28466. },
  28467. head: {
  28468. height: math.unit(1.75, "feet"),
  28469. name: "Head",
  28470. image: {
  28471. source: "./media/characters/kyu/head.svg"
  28472. }
  28473. },
  28474. foot: {
  28475. height: math.unit(0.81, "feet"),
  28476. name: "Foot",
  28477. image: {
  28478. source: "./media/characters/kyu/foot.svg"
  28479. }
  28480. },
  28481. },
  28482. [
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(1.7, "meters")
  28486. },
  28487. {
  28488. name: "Macro",
  28489. height: math.unit(131, "feet"),
  28490. default: true
  28491. },
  28492. {
  28493. name: "Megamacro",
  28494. height: math.unit(91440, "meters")
  28495. },
  28496. {
  28497. name: "Gigamacro",
  28498. height: math.unit(60960000, "meters")
  28499. },
  28500. {
  28501. name: "Teramacro",
  28502. height: math.unit(9144000000, "meters")
  28503. },
  28504. ]
  28505. ))
  28506. characterMakers.push(() => makeCharacter(
  28507. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28508. {
  28509. front: {
  28510. height: math.unit(7 + 1 / 12, "feet"),
  28511. weight: math.unit(250, "lb"),
  28512. name: "Front",
  28513. image: {
  28514. source: "./media/characters/joey/front.svg",
  28515. extra: 1791 / 1537,
  28516. bottom: 28 / 1816
  28517. }
  28518. },
  28519. },
  28520. [
  28521. {
  28522. name: "Micro",
  28523. height: math.unit(3, "inches")
  28524. },
  28525. {
  28526. name: "Normal",
  28527. height: math.unit(7 + 1 / 12, "feet"),
  28528. default: true
  28529. },
  28530. ]
  28531. ))
  28532. characterMakers.push(() => makeCharacter(
  28533. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28534. {
  28535. front: {
  28536. height: math.unit(165, "cm"),
  28537. weight: math.unit(140, "lb"),
  28538. name: "Front",
  28539. image: {
  28540. source: "./media/characters/sam-evans/front.svg",
  28541. extra: 3417 / 3230,
  28542. bottom: 41.3 / 3417
  28543. }
  28544. },
  28545. frontSixTails: {
  28546. height: math.unit(165, "cm"),
  28547. weight: math.unit(140, "lb"),
  28548. name: "Front-six-tails",
  28549. image: {
  28550. source: "./media/characters/sam-evans/front-six-tails.svg",
  28551. extra: 3417 / 3230,
  28552. bottom: 41.3 / 3417
  28553. }
  28554. },
  28555. back: {
  28556. height: math.unit(165, "cm"),
  28557. weight: math.unit(140, "lb"),
  28558. name: "Back",
  28559. image: {
  28560. source: "./media/characters/sam-evans/back.svg",
  28561. extra: 3227 / 3032,
  28562. bottom: 6.8 / 3234
  28563. }
  28564. },
  28565. face: {
  28566. height: math.unit(0.68, "feet"),
  28567. name: "Face",
  28568. image: {
  28569. source: "./media/characters/sam-evans/face.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(165, "cm"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(100, "meters")
  28582. },
  28583. {
  28584. name: "Macro+",
  28585. height: math.unit(800, "meters")
  28586. },
  28587. {
  28588. name: "Macro++",
  28589. height: math.unit(3, "km")
  28590. },
  28591. {
  28592. name: "Macro+++",
  28593. height: math.unit(30, "km")
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(10, "feet"),
  28602. weight: math.unit(750, "lb"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/juliet-a/front.svg",
  28606. extra: 1766 / 1720,
  28607. bottom: 43 / 1809
  28608. }
  28609. },
  28610. back: {
  28611. height: math.unit(10, "feet"),
  28612. weight: math.unit(750, "lb"),
  28613. name: "Back",
  28614. image: {
  28615. source: "./media/characters/juliet-a/back.svg",
  28616. extra: 1781 / 1734,
  28617. bottom: 35 / 1810,
  28618. }
  28619. },
  28620. },
  28621. [
  28622. {
  28623. name: "Normal",
  28624. height: math.unit(10, "feet"),
  28625. default: true
  28626. },
  28627. {
  28628. name: "Dragon Form",
  28629. height: math.unit(250, "feet")
  28630. },
  28631. {
  28632. name: "Macro",
  28633. height: math.unit(1000, "feet")
  28634. },
  28635. {
  28636. name: "Megamacro",
  28637. height: math.unit(10000, "feet")
  28638. }
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28643. {
  28644. regular: {
  28645. height: math.unit(7 + 3 / 12, "feet"),
  28646. weight: math.unit(260, "lb"),
  28647. name: "Regular",
  28648. image: {
  28649. source: "./media/characters/wild/regular.svg",
  28650. extra: 97.45 / 92,
  28651. bottom: 6.8 / 104.3
  28652. }
  28653. },
  28654. biggums: {
  28655. height: math.unit(8 + 6 / 12, "feet"),
  28656. weight: math.unit(425, "lb"),
  28657. name: "Biggums",
  28658. image: {
  28659. source: "./media/characters/wild/biggums.svg",
  28660. extra: 97.45 / 92,
  28661. bottom: 7.5 / 132.34
  28662. }
  28663. },
  28664. mawRegular: {
  28665. height: math.unit(1.24, "feet"),
  28666. name: "Maw (Regular)",
  28667. image: {
  28668. source: "./media/characters/wild/maw.svg"
  28669. }
  28670. },
  28671. mawBiggums: {
  28672. height: math.unit(1.47, "feet"),
  28673. name: "Maw (Biggums)",
  28674. image: {
  28675. source: "./media/characters/wild/maw.svg"
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(7 + 3 / 12, "feet"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28689. {
  28690. front: {
  28691. height: math.unit(2.5, "meters"),
  28692. weight: math.unit(200, "kg"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/vidar/front.svg",
  28696. extra: 2994 / 2795,
  28697. bottom: 56 / 3061
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(2.5, "meters"),
  28702. weight: math.unit(200, "kg"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/vidar/back.svg",
  28706. extra: 3131 / 2928,
  28707. bottom: 13.5 / 3141.5
  28708. }
  28709. },
  28710. feral: {
  28711. height: math.unit(2.5, "meters"),
  28712. weight: math.unit(2000, "kg"),
  28713. name: "Feral",
  28714. image: {
  28715. source: "./media/characters/vidar/feral.svg",
  28716. extra: 2790 / 1765,
  28717. bottom: 6 / 2796
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Normal",
  28724. height: math.unit(2.5, "meters"),
  28725. default: true
  28726. },
  28727. {
  28728. name: "Macro",
  28729. height: math.unit(100, "meters")
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(5 + 9 / 12, "feet"),
  28738. weight: math.unit(120, "lb"),
  28739. name: "Front",
  28740. image: {
  28741. source: "./media/characters/ash/front.svg",
  28742. extra: 2189 / 1961,
  28743. bottom: 5.2 / 2194
  28744. }
  28745. },
  28746. },
  28747. [
  28748. {
  28749. name: "Normal",
  28750. height: math.unit(5 + 9 / 12, "feet"),
  28751. default: true
  28752. },
  28753. ]
  28754. ))
  28755. characterMakers.push(() => makeCharacter(
  28756. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28757. {
  28758. front: {
  28759. height: math.unit(9, "feet"),
  28760. weight: math.unit(10000, "lb"),
  28761. name: "Front",
  28762. image: {
  28763. source: "./media/characters/gygabite/front.svg",
  28764. bottom: 31.7 / 537.8,
  28765. extra: 505 / 370
  28766. }
  28767. },
  28768. },
  28769. [
  28770. {
  28771. name: "Normal",
  28772. height: math.unit(9, "feet"),
  28773. default: true
  28774. },
  28775. ]
  28776. ))
  28777. characterMakers.push(() => makeCharacter(
  28778. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28779. {
  28780. front: {
  28781. height: math.unit(12, "feet"),
  28782. weight: math.unit(4000, "lb"),
  28783. name: "Front",
  28784. image: {
  28785. source: "./media/characters/p0tat0/front.svg",
  28786. extra: 1065 / 921,
  28787. bottom: 55.7 / 1121.25
  28788. }
  28789. },
  28790. },
  28791. [
  28792. {
  28793. name: "Normal",
  28794. height: math.unit(12, "feet"),
  28795. default: true
  28796. },
  28797. ]
  28798. ))
  28799. characterMakers.push(() => makeCharacter(
  28800. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28801. {
  28802. side: {
  28803. height: math.unit(6.5, "feet"),
  28804. weight: math.unit(800, "lb"),
  28805. name: "Side",
  28806. image: {
  28807. source: "./media/characters/dusk/side.svg",
  28808. extra: 615 / 373,
  28809. bottom: 53 / 664
  28810. }
  28811. },
  28812. sitting: {
  28813. height: math.unit(7, "feet"),
  28814. weight: math.unit(800, "lb"),
  28815. name: "Sitting",
  28816. image: {
  28817. source: "./media/characters/dusk/sitting.svg",
  28818. extra: 753 / 425,
  28819. bottom: 33 / 774
  28820. }
  28821. },
  28822. head: {
  28823. height: math.unit(6.1, "feet"),
  28824. name: "Head",
  28825. image: {
  28826. source: "./media/characters/dusk/head.svg"
  28827. }
  28828. },
  28829. },
  28830. [
  28831. {
  28832. name: "Normal",
  28833. height: math.unit(7, "feet"),
  28834. default: true
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(15, "feet"),
  28843. weight: math.unit(7000, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/jay-direwolf/front.svg",
  28847. extra: 1810 / 1732,
  28848. bottom: 66 / 1892
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Normal",
  28855. height: math.unit(15, "feet"),
  28856. default: true
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(4 + 9 / 12, "feet"),
  28865. weight: math.unit(130, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/anchovie/front.svg",
  28869. extra: 382 / 350,
  28870. bottom: 25 / 409
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(4 + 9 / 12, "feet"),
  28875. weight: math.unit(130, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/anchovie/back.svg",
  28879. extra: 385 / 352,
  28880. bottom: 16.6 / 402
  28881. }
  28882. },
  28883. frontDressed: {
  28884. height: math.unit(4 + 9 / 12, "feet"),
  28885. weight: math.unit(130, "lb"),
  28886. name: "Front (Dressed)",
  28887. image: {
  28888. source: "./media/characters/anchovie/front-dressed.svg",
  28889. extra: 382 / 350,
  28890. bottom: 25 / 409
  28891. }
  28892. },
  28893. backDressed: {
  28894. height: math.unit(4 + 9 / 12, "feet"),
  28895. weight: math.unit(130, "lb"),
  28896. name: "Back (Dressed)",
  28897. image: {
  28898. source: "./media/characters/anchovie/back-dressed.svg",
  28899. extra: 385 / 352,
  28900. bottom: 16.6 / 402
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Micro",
  28907. height: math.unit(6.4, "inches")
  28908. },
  28909. {
  28910. name: "Normal",
  28911. height: math.unit(4 + 9 / 12, "feet"),
  28912. default: true
  28913. },
  28914. ]
  28915. ))
  28916. characterMakers.push(() => makeCharacter(
  28917. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28918. {
  28919. front: {
  28920. height: math.unit(2, "meters"),
  28921. weight: math.unit(180, "lb"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/acidrenamon/front.svg",
  28925. extra: 987 / 890,
  28926. bottom: 22.8 / 1009
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(2, "meters"),
  28931. weight: math.unit(180, "lb"),
  28932. name: "Back",
  28933. image: {
  28934. source: "./media/characters/acidrenamon/back.svg",
  28935. extra: 983 / 891,
  28936. bottom: 8.4 / 992
  28937. }
  28938. },
  28939. head: {
  28940. height: math.unit(1.92, "feet"),
  28941. name: "Head",
  28942. image: {
  28943. source: "./media/characters/acidrenamon/head.svg"
  28944. }
  28945. },
  28946. rump: {
  28947. height: math.unit(1.72, "feet"),
  28948. name: "Rump",
  28949. image: {
  28950. source: "./media/characters/acidrenamon/rump.svg"
  28951. }
  28952. },
  28953. tail: {
  28954. height: math.unit(4.2, "feet"),
  28955. name: "Tail",
  28956. image: {
  28957. source: "./media/characters/acidrenamon/tail.svg"
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(2, "meters"),
  28965. default: true
  28966. },
  28967. {
  28968. name: "Minimacro",
  28969. height: math.unit(7, "meters")
  28970. },
  28971. {
  28972. name: "Macro",
  28973. height: math.unit(200, "meters")
  28974. },
  28975. {
  28976. name: "Gigamacro",
  28977. height: math.unit(0.2, "earths")
  28978. },
  28979. ]
  28980. ))
  28981. characterMakers.push(() => makeCharacter(
  28982. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28983. {
  28984. front: {
  28985. height: math.unit(152, "feet"),
  28986. name: "Front",
  28987. image: {
  28988. source: "./media/characters/kenzie-lee/front.svg",
  28989. extra: 1869/1774,
  28990. bottom: 128/1997
  28991. }
  28992. },
  28993. side: {
  28994. height: math.unit(86, "feet"),
  28995. name: "Side",
  28996. image: {
  28997. source: "./media/characters/kenzie-lee/side.svg",
  28998. extra: 930/815,
  28999. bottom: 177/1107
  29000. }
  29001. },
  29002. paw: {
  29003. height: math.unit(15, "feet"),
  29004. name: "Paw",
  29005. image: {
  29006. source: "./media/characters/kenzie-lee/paw.svg"
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Kenzie Flea",
  29013. height: math.unit(2, "mm"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Micro",
  29018. height: math.unit(2, "inches")
  29019. },
  29020. {
  29021. name: "Normal",
  29022. height: math.unit(152, "feet")
  29023. },
  29024. {
  29025. name: "Megamacro",
  29026. height: math.unit(7, "miles")
  29027. },
  29028. {
  29029. name: "Gigamacro",
  29030. height: math.unit(8000, "miles")
  29031. },
  29032. ]
  29033. ))
  29034. characterMakers.push(() => makeCharacter(
  29035. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29036. {
  29037. front: {
  29038. height: math.unit(6, "feet"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/withers/front.svg",
  29042. extra: 1935/1760,
  29043. bottom: 72/2007
  29044. }
  29045. },
  29046. back: {
  29047. height: math.unit(6, "feet"),
  29048. name: "Back",
  29049. image: {
  29050. source: "./media/characters/withers/back.svg",
  29051. extra: 1944/1792,
  29052. bottom: 12/1956
  29053. }
  29054. },
  29055. dressed: {
  29056. height: math.unit(6, "feet"),
  29057. name: "Dressed",
  29058. image: {
  29059. source: "./media/characters/withers/dressed.svg",
  29060. extra: 1937/1765,
  29061. bottom: 73/2010
  29062. }
  29063. },
  29064. phase1: {
  29065. height: math.unit(1.1, "feet"),
  29066. name: "Phase 1",
  29067. image: {
  29068. source: "./media/characters/withers/phase-1.svg",
  29069. extra: 1885/1232,
  29070. bottom: 0/1885
  29071. }
  29072. },
  29073. phase2: {
  29074. height: math.unit(1.05, "feet"),
  29075. name: "Phase 2",
  29076. image: {
  29077. source: "./media/characters/withers/phase-2.svg",
  29078. extra: 1792/1090,
  29079. bottom: 0/1792
  29080. }
  29081. },
  29082. partyWipe: {
  29083. height: math.unit(1.1, "feet"),
  29084. name: "Party Wipe",
  29085. image: {
  29086. source: "./media/characters/withers/party-wipe.svg",
  29087. extra: 1864/1207,
  29088. bottom: 0/1864
  29089. }
  29090. },
  29091. },
  29092. [
  29093. {
  29094. name: "Macro",
  29095. height: math.unit(167, "feet"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Megamacro",
  29100. height: math.unit(15, "miles")
  29101. }
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(6 + 7 / 12, "feet"),
  29109. weight: math.unit(250, "lb"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/nemoskii/front.svg",
  29113. extra: 2270 / 1734,
  29114. bottom: 86 / 2354
  29115. }
  29116. },
  29117. back: {
  29118. height: math.unit(6 + 7 / 12, "feet"),
  29119. weight: math.unit(250, "lb"),
  29120. name: "Back",
  29121. image: {
  29122. source: "./media/characters/nemoskii/back.svg",
  29123. extra: 1845 / 1788,
  29124. bottom: 10.5 / 1852
  29125. }
  29126. },
  29127. head: {
  29128. height: math.unit(1.31, "feet"),
  29129. name: "Head",
  29130. image: {
  29131. source: "./media/characters/nemoskii/head.svg"
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Micro",
  29138. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29139. },
  29140. {
  29141. name: "Normal",
  29142. height: math.unit(6 + 7 / 12, "feet"),
  29143. default: true
  29144. },
  29145. {
  29146. name: "Macro",
  29147. height: math.unit((6 + 7 / 12) * 150, "feet")
  29148. },
  29149. {
  29150. name: "Macro+",
  29151. height: math.unit((6 + 7 / 12) * 500, "feet")
  29152. },
  29153. {
  29154. name: "Megamacro",
  29155. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(1, "mile"),
  29164. weight: math.unit(265261.9, "lb"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/shui/front.svg",
  29168. extra: 1633 / 1564,
  29169. bottom: 91.5 / 1726
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Macro",
  29176. height: math.unit(1, "mile"),
  29177. default: true
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29183. {
  29184. front: {
  29185. height: math.unit(12 + 6 / 12, "feet"),
  29186. weight: math.unit(1342, "lb"),
  29187. name: "Front",
  29188. image: {
  29189. source: "./media/characters/arokh-takakura/front.svg",
  29190. extra: 1089 / 1043,
  29191. bottom: 77.4 / 1176.7
  29192. }
  29193. },
  29194. back: {
  29195. height: math.unit(12 + 6 / 12, "feet"),
  29196. weight: math.unit(1342, "lb"),
  29197. name: "Back",
  29198. image: {
  29199. source: "./media/characters/arokh-takakura/back.svg",
  29200. extra: 1046 / 1019,
  29201. bottom: 102 / 1150
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Big",
  29208. height: math.unit(12 + 6 / 12, "feet"),
  29209. default: true
  29210. },
  29211. ]
  29212. ))
  29213. characterMakers.push(() => makeCharacter(
  29214. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29215. {
  29216. front: {
  29217. height: math.unit(5 + 6 / 12, "feet"),
  29218. weight: math.unit(150, "lb"),
  29219. name: "Front",
  29220. image: {
  29221. source: "./media/characters/theo/front.svg",
  29222. extra: 1184 / 1131,
  29223. bottom: 7.4 / 1191
  29224. }
  29225. },
  29226. },
  29227. [
  29228. {
  29229. name: "Micro",
  29230. height: math.unit(5, "inches")
  29231. },
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(5 + 6 / 12, "feet"),
  29235. default: true
  29236. },
  29237. ]
  29238. ))
  29239. characterMakers.push(() => makeCharacter(
  29240. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29241. {
  29242. front: {
  29243. height: math.unit(5 + 9 / 12, "feet"),
  29244. weight: math.unit(130, "lb"),
  29245. name: "Front",
  29246. image: {
  29247. source: "./media/characters/cecelia-swift/front.svg",
  29248. extra: 502 / 484,
  29249. bottom: 23 / 523
  29250. }
  29251. },
  29252. back: {
  29253. height: math.unit(5 + 9 / 12, "feet"),
  29254. weight: math.unit(130, "lb"),
  29255. name: "Back",
  29256. image: {
  29257. source: "./media/characters/cecelia-swift/back.svg",
  29258. extra: 499 / 485,
  29259. bottom: 12 / 511
  29260. }
  29261. },
  29262. head: {
  29263. height: math.unit(0.90, "feet"),
  29264. name: "Head",
  29265. image: {
  29266. source: "./media/characters/cecelia-swift/head.svg"
  29267. }
  29268. },
  29269. rump: {
  29270. height: math.unit(1.75, "feet"),
  29271. name: "Rump",
  29272. image: {
  29273. source: "./media/characters/cecelia-swift/rump.svg"
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Normal",
  29280. height: math.unit(5 + 9 / 12, "feet"),
  29281. default: true
  29282. },
  29283. {
  29284. name: "Big",
  29285. height: math.unit(50, "feet")
  29286. },
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(100, "feet")
  29290. },
  29291. {
  29292. name: "Macro+",
  29293. height: math.unit(500, "feet")
  29294. },
  29295. {
  29296. name: "Macro++",
  29297. height: math.unit(1000, "feet")
  29298. },
  29299. ]
  29300. ))
  29301. characterMakers.push(() => makeCharacter(
  29302. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29303. {
  29304. front: {
  29305. height: math.unit(6, "feet"),
  29306. weight: math.unit(150, "lb"),
  29307. name: "Front",
  29308. image: {
  29309. source: "./media/characters/kaunan/front.svg",
  29310. extra: 2890 / 2523,
  29311. bottom: 49 / 2939
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(150, "feet"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29325. {
  29326. dressed: {
  29327. height: math.unit(175, "cm"),
  29328. weight: math.unit(60, "kg"),
  29329. name: "Dressed",
  29330. image: {
  29331. source: "./media/characters/fei/dressed.svg",
  29332. extra: 1402/1278,
  29333. bottom: 27/1429
  29334. }
  29335. },
  29336. nude: {
  29337. height: math.unit(175, "cm"),
  29338. weight: math.unit(60, "kg"),
  29339. name: "Nude",
  29340. image: {
  29341. source: "./media/characters/fei/nude.svg",
  29342. extra: 1402/1278,
  29343. bottom: 27/1429
  29344. }
  29345. },
  29346. heels: {
  29347. height: math.unit(0.466, "feet"),
  29348. name: "Heels",
  29349. image: {
  29350. source: "./media/characters/fei/heels.svg",
  29351. extra: 156/152,
  29352. bottom: 28/184
  29353. }
  29354. },
  29355. },
  29356. [
  29357. {
  29358. name: "Mortal",
  29359. height: math.unit(175, "cm")
  29360. },
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(3500, "m")
  29364. },
  29365. {
  29366. name: "Stroll",
  29367. height: math.unit(18.4, "km"),
  29368. default: true
  29369. },
  29370. {
  29371. name: "Showoff",
  29372. height: math.unit(175, "km")
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29378. {
  29379. front: {
  29380. height: math.unit(7, "feet"),
  29381. weight: math.unit(1000, "kg"),
  29382. name: "Front",
  29383. image: {
  29384. source: "./media/characters/edrax/front.svg",
  29385. extra: 2838 / 2550,
  29386. bottom: 130 / 2968
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Small",
  29393. height: math.unit(7, "feet")
  29394. },
  29395. {
  29396. name: "Normal",
  29397. height: math.unit(1500, "meters")
  29398. },
  29399. {
  29400. name: "Mega",
  29401. height: math.unit(12000000, "km"),
  29402. default: true
  29403. },
  29404. {
  29405. name: "Megamacro",
  29406. height: math.unit(10600000, "lightyears")
  29407. },
  29408. {
  29409. name: "Hypermacro",
  29410. height: math.unit(256, "yottameters")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(10, "feet"),
  29419. weight: math.unit(750, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/clove/front.svg",
  29423. extra: 1918/1751,
  29424. bottom: 52/1970
  29425. }
  29426. },
  29427. back: {
  29428. height: math.unit(10, "feet"),
  29429. weight: math.unit(750, "lb"),
  29430. name: "Back",
  29431. image: {
  29432. source: "./media/characters/clove/back.svg",
  29433. extra: 1912/1747,
  29434. bottom: 50/1962
  29435. }
  29436. },
  29437. },
  29438. [
  29439. {
  29440. name: "Normal",
  29441. height: math.unit(10, "feet"),
  29442. default: true
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(4, "feet"),
  29451. weight: math.unit(50, "lb"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/alex-rabbit/front.svg",
  29455. extra: 507 / 458,
  29456. bottom: 18.5 / 527
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(4, "feet"),
  29461. weight: math.unit(50, "lb"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/alex-rabbit/back.svg",
  29465. extra: 502 / 460,
  29466. bottom: 18.9 / 521
  29467. }
  29468. },
  29469. },
  29470. [
  29471. {
  29472. name: "Normal",
  29473. height: math.unit(4, "feet"),
  29474. default: true
  29475. },
  29476. ]
  29477. ))
  29478. characterMakers.push(() => makeCharacter(
  29479. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29480. {
  29481. front: {
  29482. height: math.unit(1 + 3 / 12, "feet"),
  29483. weight: math.unit(80, "lb"),
  29484. name: "Front",
  29485. image: {
  29486. source: "./media/characters/zander-rose/front.svg",
  29487. extra: 916 / 797,
  29488. bottom: 17 / 933
  29489. }
  29490. },
  29491. back: {
  29492. height: math.unit(1 + 3 / 12, "feet"),
  29493. weight: math.unit(80, "lb"),
  29494. name: "Back",
  29495. image: {
  29496. source: "./media/characters/zander-rose/back.svg",
  29497. extra: 903 / 779,
  29498. bottom: 31 / 934
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(1 + 3 / 12, "feet"),
  29506. default: true
  29507. },
  29508. ]
  29509. ))
  29510. characterMakers.push(() => makeCharacter(
  29511. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29512. {
  29513. anthro: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Anthro",
  29517. image: {
  29518. source: "./media/characters/razz/anthro.svg",
  29519. extra: 1437 / 1343,
  29520. bottom: 48 / 1485
  29521. }
  29522. },
  29523. feral: {
  29524. height: math.unit(6, "feet"),
  29525. weight: math.unit(150, "lb"),
  29526. name: "Feral",
  29527. image: {
  29528. source: "./media/characters/razz/feral.svg",
  29529. extra: 2569 / 1385,
  29530. bottom: 95 / 2664
  29531. }
  29532. },
  29533. },
  29534. [
  29535. {
  29536. name: "Normal",
  29537. height: math.unit(6, "feet"),
  29538. default: true
  29539. },
  29540. ]
  29541. ))
  29542. characterMakers.push(() => makeCharacter(
  29543. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29544. {
  29545. front: {
  29546. height: math.unit(9 + 4 / 12, "feet"),
  29547. weight: math.unit(500, "lb"),
  29548. name: "Front",
  29549. image: {
  29550. source: "./media/characters/morrigan/front.svg",
  29551. extra: 2707 / 2579,
  29552. bottom: 156 / 2863
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(9 + 4 / 12, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29566. {
  29567. front: {
  29568. height: math.unit(5, "stories"),
  29569. weight: math.unit(4000, "lb"),
  29570. name: "Front",
  29571. image: {
  29572. source: "./media/characters/jenene/front.svg",
  29573. extra: 1780 / 1710,
  29574. bottom: 57 / 1837
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(5, "stories"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29588. {
  29589. taurSfw: {
  29590. height: math.unit(10, "meters"),
  29591. weight: math.unit(17500, "kg"),
  29592. name: "Taur",
  29593. image: {
  29594. source: "./media/characters/faey/taur-sfw.svg",
  29595. extra: 1200 / 968,
  29596. bottom: 41 / 1241
  29597. }
  29598. },
  29599. chestmaw: {
  29600. height: math.unit(2.01, "meters"),
  29601. name: "Chestmaw",
  29602. image: {
  29603. source: "./media/characters/faey/chestmaw.svg"
  29604. }
  29605. },
  29606. foot: {
  29607. height: math.unit(2.43, "meters"),
  29608. name: "Foot",
  29609. image: {
  29610. source: "./media/characters/faey/foot.svg"
  29611. }
  29612. },
  29613. jaws: {
  29614. height: math.unit(1.66, "meters"),
  29615. name: "Jaws",
  29616. image: {
  29617. source: "./media/characters/faey/jaws.svg"
  29618. }
  29619. },
  29620. tongues: {
  29621. height: math.unit(2.01, "meters"),
  29622. name: "Tongues",
  29623. image: {
  29624. source: "./media/characters/faey/tongues.svg"
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Small",
  29631. height: math.unit(10, "meters"),
  29632. default: true
  29633. },
  29634. {
  29635. name: "Big",
  29636. height: math.unit(500000, "km")
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(7, "feet"),
  29645. weight: math.unit(275, "lb"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/roku/front.svg",
  29649. extra: 903 / 878,
  29650. bottom: 37 / 940
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Normal",
  29657. height: math.unit(7, "feet"),
  29658. default: true
  29659. },
  29660. {
  29661. name: "Macro",
  29662. height: math.unit(500, "feet")
  29663. },
  29664. {
  29665. name: "Megamacro",
  29666. height: math.unit(200, "miles")
  29667. },
  29668. ]
  29669. ))
  29670. characterMakers.push(() => makeCharacter(
  29671. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29672. {
  29673. front: {
  29674. height: math.unit(6 + 2 / 12, "feet"),
  29675. weight: math.unit(150, "lb"),
  29676. name: "Front",
  29677. image: {
  29678. source: "./media/characters/lira/front.svg",
  29679. extra: 1727 / 1605,
  29680. bottom: 26 / 1753
  29681. }
  29682. },
  29683. back: {
  29684. height: math.unit(6 + 2 / 12, "feet"),
  29685. weight: math.unit(150, "lb"),
  29686. name: "Back",
  29687. image: {
  29688. source: "./media/characters/lira/back.svg",
  29689. extra: 1713/1621,
  29690. bottom: 20/1733
  29691. }
  29692. },
  29693. hand: {
  29694. height: math.unit(0.75, "feet"),
  29695. name: "Hand",
  29696. image: {
  29697. source: "./media/characters/lira/hand.svg"
  29698. }
  29699. },
  29700. maw: {
  29701. height: math.unit(0.65, "feet"),
  29702. name: "Maw",
  29703. image: {
  29704. source: "./media/characters/lira/maw.svg"
  29705. }
  29706. },
  29707. pawDigi: {
  29708. height: math.unit(1.6, "feet"),
  29709. name: "Paw Digi",
  29710. image: {
  29711. source: "./media/characters/lira/paw-digi.svg"
  29712. }
  29713. },
  29714. pawPlanti: {
  29715. height: math.unit(1.4, "feet"),
  29716. name: "Paw Planti",
  29717. image: {
  29718. source: "./media/characters/lira/paw-planti.svg"
  29719. }
  29720. },
  29721. },
  29722. [
  29723. {
  29724. name: "Normal",
  29725. height: math.unit(6 + 2 / 12, "feet"),
  29726. default: true
  29727. },
  29728. {
  29729. name: "Macro",
  29730. height: math.unit(100, "feet")
  29731. },
  29732. {
  29733. name: "Macro²",
  29734. height: math.unit(1600, "feet")
  29735. },
  29736. {
  29737. name: "Planetary",
  29738. height: math.unit(20, "earths")
  29739. },
  29740. ]
  29741. ))
  29742. characterMakers.push(() => makeCharacter(
  29743. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29744. {
  29745. front: {
  29746. height: math.unit(6, "feet"),
  29747. weight: math.unit(150, "lb"),
  29748. name: "Front",
  29749. image: {
  29750. source: "./media/characters/hadjet/front.svg",
  29751. extra: 1480 / 1346,
  29752. bottom: 26 / 1506
  29753. }
  29754. },
  29755. frontNsfw: {
  29756. height: math.unit(6, "feet"),
  29757. weight: math.unit(150, "lb"),
  29758. name: "Front (NSFW)",
  29759. image: {
  29760. source: "./media/characters/hadjet/front-nsfw.svg",
  29761. extra: 1440 / 1358,
  29762. bottom: 52 / 1492
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Macro",
  29769. height: math.unit(10, "stories"),
  29770. default: true
  29771. },
  29772. {
  29773. name: "Megamacro",
  29774. height: math.unit(1.5, "miles")
  29775. },
  29776. {
  29777. name: "Megamacro+",
  29778. height: math.unit(5, "miles")
  29779. },
  29780. ]
  29781. ))
  29782. characterMakers.push(() => makeCharacter(
  29783. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29784. {
  29785. side: {
  29786. height: math.unit(106, "feet"),
  29787. weight: math.unit(500, "tonnes"),
  29788. name: "Side",
  29789. image: {
  29790. source: "./media/characters/kodran/side.svg",
  29791. extra: 553 / 480,
  29792. bottom: 33 / 586
  29793. }
  29794. },
  29795. front: {
  29796. height: math.unit(132, "feet"),
  29797. weight: math.unit(500, "tonnes"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/kodran/front.svg",
  29801. extra: 667 / 643,
  29802. bottom: 42 / 709
  29803. }
  29804. },
  29805. flying: {
  29806. height: math.unit(350, "feet"),
  29807. weight: math.unit(500, "tonnes"),
  29808. name: "Flying",
  29809. image: {
  29810. source: "./media/characters/kodran/flying.svg"
  29811. }
  29812. },
  29813. foot: {
  29814. height: math.unit(33, "feet"),
  29815. name: "Foot",
  29816. image: {
  29817. source: "./media/characters/kodran/foot.svg"
  29818. }
  29819. },
  29820. footFront: {
  29821. height: math.unit(19, "feet"),
  29822. name: "Foot (Front)",
  29823. image: {
  29824. source: "./media/characters/kodran/foot-front.svg",
  29825. extra: 261 / 261,
  29826. bottom: 91 / 352
  29827. }
  29828. },
  29829. headFront: {
  29830. height: math.unit(53, "feet"),
  29831. name: "Head (Front)",
  29832. image: {
  29833. source: "./media/characters/kodran/head-front.svg"
  29834. }
  29835. },
  29836. headSide: {
  29837. height: math.unit(65, "feet"),
  29838. name: "Head (Side)",
  29839. image: {
  29840. source: "./media/characters/kodran/head-side.svg"
  29841. }
  29842. },
  29843. throat: {
  29844. height: math.unit(79, "feet"),
  29845. name: "Throat",
  29846. image: {
  29847. source: "./media/characters/kodran/throat.svg"
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Large",
  29854. height: math.unit(106, "feet"),
  29855. default: true
  29856. },
  29857. ]
  29858. ))
  29859. characterMakers.push(() => makeCharacter(
  29860. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29861. {
  29862. side: {
  29863. height: math.unit(11, "feet"),
  29864. weight: math.unit(150, "lb"),
  29865. name: "Side",
  29866. image: {
  29867. source: "./media/characters/pyxaron/side.svg",
  29868. extra: 305 / 195,
  29869. bottom: 17 / 322
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(11, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(6, "feet"),
  29886. weight: math.unit(150, "lb"),
  29887. name: "Front",
  29888. image: {
  29889. source: "./media/characters/meep/front.svg",
  29890. extra: 88 / 80,
  29891. bottom: 6 / 94
  29892. }
  29893. },
  29894. },
  29895. [
  29896. {
  29897. name: "Fun Sized",
  29898. height: math.unit(2, "inches"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Friend Sized",
  29903. height: math.unit(8, "inches")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29909. {
  29910. front: {
  29911. height: math.unit(15, "feet"),
  29912. weight: math.unit(2500, "lb"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/holly-rabbit/front.svg",
  29916. extra: 1433 / 1233,
  29917. bottom: 125 / 1558
  29918. }
  29919. },
  29920. dick: {
  29921. height: math.unit(4.6, "feet"),
  29922. name: "Dick",
  29923. image: {
  29924. source: "./media/characters/holly-rabbit/dick.svg"
  29925. }
  29926. },
  29927. },
  29928. [
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(15, "feet"),
  29932. default: true
  29933. },
  29934. {
  29935. name: "Macro",
  29936. height: math.unit(250, "feet")
  29937. },
  29938. {
  29939. name: "Macro+",
  29940. height: math.unit(2500, "feet")
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(3.02, "meters"),
  29949. weight: math.unit(500, "kg"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/drena/front.svg",
  29953. extra: 282 / 243,
  29954. bottom: 8 / 290
  29955. }
  29956. },
  29957. side: {
  29958. height: math.unit(3.02, "meters"),
  29959. weight: math.unit(500, "kg"),
  29960. name: "Side",
  29961. image: {
  29962. source: "./media/characters/drena/side.svg",
  29963. extra: 280 / 245,
  29964. bottom: 10 / 290
  29965. }
  29966. },
  29967. back: {
  29968. height: math.unit(3.02, "meters"),
  29969. weight: math.unit(500, "kg"),
  29970. name: "Back",
  29971. image: {
  29972. source: "./media/characters/drena/back.svg",
  29973. extra: 278 / 243,
  29974. bottom: 2 / 280
  29975. }
  29976. },
  29977. foot: {
  29978. height: math.unit(0.75, "meters"),
  29979. name: "Foot",
  29980. image: {
  29981. source: "./media/characters/drena/foot.svg"
  29982. }
  29983. },
  29984. maw: {
  29985. height: math.unit(0.82, "meters"),
  29986. name: "Maw",
  29987. image: {
  29988. source: "./media/characters/drena/maw.svg"
  29989. }
  29990. },
  29991. eating: {
  29992. height: math.unit(0.75, "meters"),
  29993. name: "Eating",
  29994. image: {
  29995. source: "./media/characters/drena/eating.svg"
  29996. }
  29997. },
  29998. rump: {
  29999. height: math.unit(0.93, "meters"),
  30000. name: "Rump",
  30001. image: {
  30002. source: "./media/characters/drena/rump.svg"
  30003. }
  30004. },
  30005. },
  30006. [
  30007. {
  30008. name: "Normal",
  30009. height: math.unit(3.02, "meters"),
  30010. default: true
  30011. },
  30012. ]
  30013. ))
  30014. characterMakers.push(() => makeCharacter(
  30015. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30016. {
  30017. front: {
  30018. height: math.unit(6 + 4 / 12, "feet"),
  30019. weight: math.unit(250, "lb"),
  30020. name: "Front",
  30021. image: {
  30022. source: "./media/characters/remmyzilla/front.svg",
  30023. extra: 4033 / 3588,
  30024. bottom: 123 / 4156
  30025. }
  30026. },
  30027. back: {
  30028. height: math.unit(6 + 4 / 12, "feet"),
  30029. weight: math.unit(250, "lb"),
  30030. name: "Back",
  30031. image: {
  30032. source: "./media/characters/remmyzilla/back.svg",
  30033. extra: 2687 / 2555,
  30034. bottom: 48 / 2735
  30035. }
  30036. },
  30037. paw: {
  30038. height: math.unit(1.73, "feet"),
  30039. name: "Paw",
  30040. image: {
  30041. source: "./media/characters/remmyzilla/paw.svg"
  30042. },
  30043. extraAttributes: {
  30044. "toeSize": {
  30045. name: "Toe Size",
  30046. power: 2,
  30047. type: "area",
  30048. base: math.unit(0.0035, "m^2")
  30049. },
  30050. "padSize": {
  30051. name: "Pad Size",
  30052. power: 2,
  30053. type: "area",
  30054. base: math.unit(0.015, "m^2")
  30055. },
  30056. "pawsize": {
  30057. name: "Paw Size",
  30058. power: 2,
  30059. type: "area",
  30060. base: math.unit(0.072, "m^2")
  30061. },
  30062. }
  30063. },
  30064. maw: {
  30065. height: math.unit(1.73, "feet"),
  30066. name: "Maw",
  30067. image: {
  30068. source: "./media/characters/remmyzilla/maw.svg"
  30069. }
  30070. },
  30071. },
  30072. [
  30073. {
  30074. name: "Normal",
  30075. height: math.unit(6 + 4 / 12, "feet")
  30076. },
  30077. {
  30078. name: "Minimacro",
  30079. height: math.unit(12 + 8 / 12, "feet")
  30080. },
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(640, "feet"),
  30084. default: true
  30085. },
  30086. {
  30087. name: "Megamacro",
  30088. height: math.unit(6400, "feet")
  30089. },
  30090. {
  30091. name: "Gigamacro",
  30092. height: math.unit(64000, "miles")
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(2.5, "meters"),
  30101. weight: math.unit(300, "lb"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/lawrence/front.svg",
  30105. extra: 357 / 335,
  30106. bottom: 30 / 387
  30107. }
  30108. },
  30109. back: {
  30110. height: math.unit(2.5, "meters"),
  30111. weight: math.unit(300, "lb"),
  30112. name: "Back",
  30113. image: {
  30114. source: "./media/characters/lawrence/back.svg",
  30115. extra: 357 / 338,
  30116. bottom: 16 / 373
  30117. }
  30118. },
  30119. head: {
  30120. height: math.unit(0.9, "meter"),
  30121. name: "Head",
  30122. image: {
  30123. source: "./media/characters/lawrence/head.svg"
  30124. }
  30125. },
  30126. maw: {
  30127. height: math.unit(0.7, "meter"),
  30128. name: "Maw",
  30129. image: {
  30130. source: "./media/characters/lawrence/maw.svg"
  30131. }
  30132. },
  30133. footBottom: {
  30134. height: math.unit(0.5, "meter"),
  30135. name: "Foot (Bottom)",
  30136. image: {
  30137. source: "./media/characters/lawrence/foot-bottom.svg"
  30138. }
  30139. },
  30140. footTop: {
  30141. height: math.unit(0.5, "meter"),
  30142. name: "Foot (Top)",
  30143. image: {
  30144. source: "./media/characters/lawrence/foot-top.svg"
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(2.5, "meters"),
  30152. default: true
  30153. },
  30154. {
  30155. name: "Macro",
  30156. height: math.unit(95, "meters")
  30157. },
  30158. {
  30159. name: "Megamacro",
  30160. height: math.unit(150, "km")
  30161. },
  30162. ]
  30163. ))
  30164. characterMakers.push(() => makeCharacter(
  30165. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30166. {
  30167. front: {
  30168. height: math.unit(4.2, "meters"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/sydney/front.svg",
  30172. extra: 1323 / 1277,
  30173. bottom: 111 / 1434
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Normal",
  30180. height: math.unit(4.2, "meters"),
  30181. default: true
  30182. },
  30183. ]
  30184. ))
  30185. characterMakers.push(() => makeCharacter(
  30186. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30187. {
  30188. back: {
  30189. height: math.unit(201, "feet"),
  30190. name: "Back",
  30191. image: {
  30192. source: "./media/characters/jessica/back.svg",
  30193. extra: 273 / 259,
  30194. bottom: 7 / 280
  30195. }
  30196. },
  30197. },
  30198. [
  30199. {
  30200. name: "Normal",
  30201. height: math.unit(201, "feet"),
  30202. default: true
  30203. },
  30204. {
  30205. name: "Megamacro",
  30206. height: math.unit(8, "miles")
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30212. {
  30213. side: {
  30214. height: math.unit(5.6, "m"),
  30215. weight: math.unit(8000, "kg"),
  30216. name: "Side",
  30217. image: {
  30218. source: "./media/characters/victoria/side.svg",
  30219. extra: 1542/1229,
  30220. bottom: 124/1666
  30221. }
  30222. },
  30223. maw: {
  30224. height: math.unit(7.14, "feet"),
  30225. name: "Maw",
  30226. image: {
  30227. source: "./media/characters/victoria/maw.svg"
  30228. }
  30229. },
  30230. },
  30231. [
  30232. {
  30233. name: "Normal",
  30234. height: math.unit(5.6, "m"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30241. {
  30242. front: {
  30243. height: math.unit(5 + 6 / 12, "feet"),
  30244. name: "Front",
  30245. image: {
  30246. source: "./media/characters/cat/front.svg",
  30247. extra: 1449/1295,
  30248. bottom: 34/1483
  30249. },
  30250. form: "cat",
  30251. default: true
  30252. },
  30253. back: {
  30254. height: math.unit(5 + 6 / 12, "feet"),
  30255. name: "Back",
  30256. image: {
  30257. source: "./media/characters/cat/back.svg",
  30258. extra: 1466/1301,
  30259. bottom: 19/1485
  30260. },
  30261. form: "cat"
  30262. },
  30263. taur: {
  30264. height: math.unit(7, "feet"),
  30265. name: "Taur",
  30266. image: {
  30267. source: "./media/characters/cat/taur.svg",
  30268. extra: 1389/1233,
  30269. bottom: 83/1472
  30270. },
  30271. form: "taur",
  30272. default: true
  30273. },
  30274. lucarioFront: {
  30275. height: math.unit(4, "feet"),
  30276. name: "Lucario (Front)",
  30277. image: {
  30278. source: "./media/characters/cat/lucario-front.svg",
  30279. extra: 1149/1019,
  30280. bottom: 84/1233
  30281. },
  30282. form: "lucario",
  30283. default: true
  30284. },
  30285. lucarioBack: {
  30286. height: math.unit(4, "feet"),
  30287. name: "Lucario (Back)",
  30288. image: {
  30289. source: "./media/characters/cat/lucario-back.svg",
  30290. extra: 1190/1059,
  30291. bottom: 33/1223
  30292. },
  30293. form: "lucario"
  30294. },
  30295. megaLucario: {
  30296. height: math.unit(4, "feet"),
  30297. name: "Mega Lucario",
  30298. image: {
  30299. source: "./media/characters/cat/mega-lucario.svg",
  30300. extra: 1515 / 1319,
  30301. bottom: 63 / 1578
  30302. },
  30303. form: "lucario"
  30304. },
  30305. nickit: {
  30306. height: math.unit(2, "feet"),
  30307. name: "Nickit",
  30308. image: {
  30309. source: "./media/characters/cat/nickit.svg",
  30310. extra: 1980 / 1585,
  30311. bottom: 102 / 2082
  30312. },
  30313. form: "nickit",
  30314. default: true
  30315. },
  30316. lopunnyFront: {
  30317. height: math.unit(5, "feet"),
  30318. name: "Lopunny (Front)",
  30319. image: {
  30320. source: "./media/characters/cat/lopunny-front.svg",
  30321. extra: 1782 / 1469,
  30322. bottom: 38 / 1820
  30323. },
  30324. form: "lopunny",
  30325. default: true
  30326. },
  30327. lopunnyBack: {
  30328. height: math.unit(5, "feet"),
  30329. name: "Lopunny (Back)",
  30330. image: {
  30331. source: "./media/characters/cat/lopunny-back.svg",
  30332. extra: 1660 / 1490,
  30333. bottom: 25 / 1685
  30334. },
  30335. form: "lopunny"
  30336. },
  30337. },
  30338. [
  30339. {
  30340. name: "Really small",
  30341. height: math.unit(1, "nm")
  30342. },
  30343. {
  30344. name: "Micro",
  30345. height: math.unit(5, "inches")
  30346. },
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(5 + 6 / 12, "feet"),
  30350. default: true
  30351. },
  30352. {
  30353. name: "Macro",
  30354. height: math.unit(50, "feet")
  30355. },
  30356. {
  30357. name: "Macro+",
  30358. height: math.unit(150, "feet")
  30359. },
  30360. {
  30361. name: "Megamacro",
  30362. height: math.unit(100, "miles")
  30363. },
  30364. ]
  30365. ))
  30366. characterMakers.push(() => makeCharacter(
  30367. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30368. {
  30369. front: {
  30370. height: math.unit(63.4, "meters"),
  30371. weight: math.unit(3.28349e+6, "kilograms"),
  30372. name: "Front",
  30373. image: {
  30374. source: "./media/characters/kirina-violet/front.svg",
  30375. extra: 2812 / 2725,
  30376. bottom: 0 / 2812
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(63.4, "meters"),
  30381. weight: math.unit(3.28349e+6, "kilograms"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/kirina-violet/back.svg",
  30385. extra: 2812 / 2725,
  30386. bottom: 0 / 2812
  30387. }
  30388. },
  30389. mouth: {
  30390. height: math.unit(4.35, "meters"),
  30391. name: "Mouth",
  30392. image: {
  30393. source: "./media/characters/kirina-violet/mouth.svg"
  30394. }
  30395. },
  30396. paw: {
  30397. height: math.unit(5.6, "meters"),
  30398. name: "Paw",
  30399. image: {
  30400. source: "./media/characters/kirina-violet/paw.svg"
  30401. }
  30402. },
  30403. tail: {
  30404. height: math.unit(18, "meters"),
  30405. name: "Tail",
  30406. image: {
  30407. source: "./media/characters/kirina-violet/tail.svg"
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(63.4, "meters"),
  30415. default: true
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(75, "feet"),
  30424. name: "Front",
  30425. image: {
  30426. source: "./media/characters/cat-gigachu/front.svg",
  30427. extra: 1239/1027,
  30428. bottom: 32/1271
  30429. }
  30430. },
  30431. back: {
  30432. height: math.unit(75, "feet"),
  30433. name: "Back",
  30434. image: {
  30435. source: "./media/characters/cat-gigachu/back.svg",
  30436. extra: 1229/1030,
  30437. bottom: 9/1238
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Dynamax",
  30444. height: math.unit(75, "feet"),
  30445. default: true
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(6, "feet"),
  30454. weight: math.unit(150, "lb"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/sfaiyan/front.svg",
  30458. extra: 999 / 978,
  30459. bottom: 5 / 1004
  30460. }
  30461. },
  30462. },
  30463. [
  30464. {
  30465. name: "Normal",
  30466. height: math.unit(1.82, "meters")
  30467. },
  30468. {
  30469. name: "Giant",
  30470. height: math.unit(2.27, "km"),
  30471. default: true
  30472. },
  30473. ]
  30474. ))
  30475. characterMakers.push(() => makeCharacter(
  30476. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30477. {
  30478. front: {
  30479. height: math.unit(179, "cm"),
  30480. weight: math.unit(100, "kg"),
  30481. name: "Front",
  30482. image: {
  30483. source: "./media/characters/raunehkeli/front.svg",
  30484. extra: 1934 / 1926,
  30485. bottom: 0 / 1934
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Normal",
  30492. height: math.unit(179, "cm")
  30493. },
  30494. {
  30495. name: "Maximum",
  30496. height: math.unit(575, "meters"),
  30497. default: true
  30498. },
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(6, "feet"),
  30506. weight: math.unit(150, "lb"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30510. extra: 2625 / 2518,
  30511. bottom: 60 / 2685
  30512. }
  30513. },
  30514. },
  30515. [
  30516. {
  30517. name: "Normal",
  30518. height: math.unit(6 + 2 / 12, "feet")
  30519. },
  30520. {
  30521. name: "Macro",
  30522. height: math.unit(1180, "feet"),
  30523. default: true
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30529. {
  30530. front: {
  30531. height: math.unit(5 + 6 / 12, "feet"),
  30532. weight: math.unit(108, "lb"),
  30533. name: "Front",
  30534. image: {
  30535. source: "./media/characters/lilith-zott/front.svg",
  30536. extra: 2510 / 2238,
  30537. bottom: 100 / 2610
  30538. }
  30539. },
  30540. frontDressed: {
  30541. height: math.unit(5 + 6 / 12, "feet"),
  30542. weight: math.unit(108, "lb"),
  30543. name: "Front (Dressed)",
  30544. image: {
  30545. source: "./media/characters/lilith-zott/front-dressed.svg",
  30546. extra: 2510 / 2238,
  30547. bottom: 100 / 2610
  30548. }
  30549. },
  30550. },
  30551. [
  30552. {
  30553. name: "Normal",
  30554. height: math.unit(5 + 6 / 12, "feet")
  30555. },
  30556. {
  30557. name: "Macro",
  30558. height: math.unit(1030, "feet"),
  30559. default: true
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30565. {
  30566. front: {
  30567. height: math.unit(6, "feet"),
  30568. weight: math.unit(150, "lb"),
  30569. name: "Front",
  30570. image: {
  30571. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30572. extra: 2567 / 2435,
  30573. bottom: 39 / 2606
  30574. }
  30575. },
  30576. frontSuper: {
  30577. height: math.unit(6, "feet"),
  30578. name: "Front (Super)",
  30579. image: {
  30580. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30581. extra: 2567 / 2435,
  30582. bottom: 39 / 2606
  30583. }
  30584. },
  30585. },
  30586. [
  30587. {
  30588. name: "Normal",
  30589. height: math.unit(5 + 10 / 12, "feet")
  30590. },
  30591. {
  30592. name: "Macro",
  30593. height: math.unit(1100, "feet"),
  30594. default: true
  30595. },
  30596. ]
  30597. ))
  30598. characterMakers.push(() => makeCharacter(
  30599. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30600. {
  30601. front: {
  30602. height: math.unit(100, "miles"),
  30603. name: "Front",
  30604. image: {
  30605. source: "./media/characters/sona/front.svg",
  30606. extra: 2433 / 2201,
  30607. bottom: 53 / 2486
  30608. }
  30609. },
  30610. foot: {
  30611. height: math.unit(16.1, "miles"),
  30612. name: "Foot",
  30613. image: {
  30614. source: "./media/characters/sona/foot.svg"
  30615. }
  30616. },
  30617. },
  30618. [
  30619. {
  30620. name: "Macro",
  30621. height: math.unit(100, "miles"),
  30622. default: true
  30623. },
  30624. ]
  30625. ))
  30626. characterMakers.push(() => makeCharacter(
  30627. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30628. {
  30629. front: {
  30630. height: math.unit(6, "feet"),
  30631. weight: math.unit(150, "lb"),
  30632. name: "Front",
  30633. image: {
  30634. source: "./media/characters/bailey/front.svg",
  30635. extra: 1778 / 1724,
  30636. bottom: 30 / 1808
  30637. }
  30638. },
  30639. },
  30640. [
  30641. {
  30642. name: "Micro",
  30643. height: math.unit(4, "inches")
  30644. },
  30645. {
  30646. name: "Normal",
  30647. height: math.unit(5 + 5 / 12, "feet"),
  30648. default: true
  30649. },
  30650. {
  30651. name: "Macro",
  30652. height: math.unit(250, "feet")
  30653. },
  30654. {
  30655. name: "Megamacro",
  30656. height: math.unit(100, "miles")
  30657. },
  30658. ]
  30659. ))
  30660. characterMakers.push(() => makeCharacter(
  30661. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30662. {
  30663. front: {
  30664. height: math.unit(5 + 2 / 12, "feet"),
  30665. weight: math.unit(120, "lb"),
  30666. name: "Front",
  30667. image: {
  30668. source: "./media/characters/snaps/front.svg",
  30669. extra: 2370 / 2177,
  30670. bottom: 48 / 2418
  30671. }
  30672. },
  30673. back: {
  30674. height: math.unit(5 + 2 / 12, "feet"),
  30675. weight: math.unit(120, "lb"),
  30676. name: "Back",
  30677. image: {
  30678. source: "./media/characters/snaps/back.svg",
  30679. extra: 2408 / 2258,
  30680. bottom: 15 / 2423
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Micro",
  30687. height: math.unit(9, "inches")
  30688. },
  30689. {
  30690. name: "Normal",
  30691. height: math.unit(5 + 2 / 12, "feet"),
  30692. default: true
  30693. },
  30694. {
  30695. name: "Mini Macro",
  30696. height: math.unit(10, "feet")
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30702. {
  30703. front: {
  30704. height: math.unit(1.8, "meters"),
  30705. weight: math.unit(85, "kg"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/azteck/front.svg",
  30709. extra: 2815 / 2625,
  30710. bottom: 89 / 2904
  30711. }
  30712. },
  30713. back: {
  30714. height: math.unit(1.8, "meters"),
  30715. weight: math.unit(85, "kg"),
  30716. name: "Back",
  30717. image: {
  30718. source: "./media/characters/azteck/back.svg",
  30719. extra: 2856 / 2648,
  30720. bottom: 85 / 2941
  30721. }
  30722. },
  30723. frontDressed: {
  30724. height: math.unit(1.8, "meters"),
  30725. weight: math.unit(85, "kg"),
  30726. name: "Front (Dressed)",
  30727. image: {
  30728. source: "./media/characters/azteck/front-dressed.svg",
  30729. extra: 2147 / 2003,
  30730. bottom: 68 / 2215
  30731. }
  30732. },
  30733. head: {
  30734. height: math.unit(0.47, "meters"),
  30735. weight: math.unit(85, "kg"),
  30736. name: "Head",
  30737. image: {
  30738. source: "./media/characters/azteck/head.svg"
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Bite sized",
  30745. height: math.unit(16, "cm")
  30746. },
  30747. {
  30748. name: "Normal",
  30749. height: math.unit(1.8, "meters"),
  30750. default: true
  30751. },
  30752. ]
  30753. ))
  30754. characterMakers.push(() => makeCharacter(
  30755. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30756. {
  30757. front: {
  30758. height: math.unit(6, "feet"),
  30759. weight: math.unit(150, "lb"),
  30760. name: "Front",
  30761. image: {
  30762. source: "./media/characters/pidge/front.svg",
  30763. extra: 1936/1820,
  30764. bottom: 0/1936
  30765. }
  30766. },
  30767. back: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Back",
  30771. image: {
  30772. source: "./media/characters/pidge/back.svg",
  30773. extra: 1938/1843,
  30774. bottom: 0/1938
  30775. }
  30776. },
  30777. casual: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(150, "lb"),
  30780. name: "Casual",
  30781. image: {
  30782. source: "./media/characters/pidge/casual.svg",
  30783. extra: 1936/1820,
  30784. bottom: 0/1936
  30785. }
  30786. },
  30787. tech: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Tech",
  30791. image: {
  30792. source: "./media/characters/pidge/tech.svg",
  30793. extra: 1802/1682,
  30794. bottom: 0/1802
  30795. }
  30796. },
  30797. head: {
  30798. height: math.unit(1.61, "feet"),
  30799. name: "Head",
  30800. image: {
  30801. source: "./media/characters/pidge/head.svg"
  30802. }
  30803. },
  30804. collar: {
  30805. height: math.unit(0.82, "feet"),
  30806. name: "Collar",
  30807. image: {
  30808. source: "./media/characters/pidge/collar.svg"
  30809. }
  30810. },
  30811. },
  30812. [
  30813. {
  30814. name: "Macro",
  30815. height: math.unit(2, "mile"),
  30816. default: true
  30817. },
  30818. {
  30819. name: "PUPPY",
  30820. height: math.unit(20, "miles")
  30821. },
  30822. ]
  30823. ))
  30824. characterMakers.push(() => makeCharacter(
  30825. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30826. {
  30827. front: {
  30828. height: math.unit(6, "feet"),
  30829. weight: math.unit(150, "lb"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/en/front.svg",
  30833. extra: 1697 / 1563,
  30834. bottom: 103 / 1800
  30835. }
  30836. },
  30837. back: {
  30838. height: math.unit(6, "feet"),
  30839. weight: math.unit(150, "lb"),
  30840. name: "Back",
  30841. image: {
  30842. source: "./media/characters/en/back.svg",
  30843. extra: 1700 / 1570,
  30844. bottom: 51 / 1751
  30845. }
  30846. },
  30847. frontDressed: {
  30848. height: math.unit(6, "feet"),
  30849. weight: math.unit(150, "lb"),
  30850. name: "Front (Dressed)",
  30851. image: {
  30852. source: "./media/characters/en/front-dressed.svg",
  30853. extra: 1697 / 1563,
  30854. bottom: 103 / 1800
  30855. }
  30856. },
  30857. backDressed: {
  30858. height: math.unit(6, "feet"),
  30859. weight: math.unit(150, "lb"),
  30860. name: "Back (Dressed)",
  30861. image: {
  30862. source: "./media/characters/en/back-dressed.svg",
  30863. extra: 1700 / 1570,
  30864. bottom: 51 / 1751
  30865. }
  30866. },
  30867. },
  30868. [
  30869. {
  30870. name: "Macro",
  30871. height: math.unit(210, "feet"),
  30872. default: true
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30878. {
  30879. front: {
  30880. height: math.unit(6, "feet"),
  30881. weight: math.unit(150, "lb"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/haze-orris/front.svg",
  30885. extra: 3975 / 3525,
  30886. bottom: 137 / 4112
  30887. }
  30888. },
  30889. },
  30890. [
  30891. {
  30892. name: "Micro",
  30893. height: math.unit(150, "mm"),
  30894. default: true
  30895. },
  30896. ]
  30897. ))
  30898. characterMakers.push(() => makeCharacter(
  30899. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30900. {
  30901. front: {
  30902. height: math.unit(6, "feet"),
  30903. weight: math.unit(150, "lb"),
  30904. name: "Front",
  30905. image: {
  30906. source: "./media/characters/casselene-yaro/front.svg",
  30907. extra: 4721 / 4541,
  30908. bottom: 82 / 4803
  30909. }
  30910. },
  30911. back: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Back",
  30915. image: {
  30916. source: "./media/characters/casselene-yaro/back.svg",
  30917. extra: 4569 / 4377,
  30918. bottom: 69 / 4638
  30919. }
  30920. },
  30921. dressed: {
  30922. height: math.unit(6, "feet"),
  30923. weight: math.unit(150, "lb"),
  30924. name: "Dressed",
  30925. image: {
  30926. source: "./media/characters/casselene-yaro/dressed.svg",
  30927. extra: 4721 / 4541,
  30928. bottom: 82 / 4803
  30929. }
  30930. },
  30931. maw: {
  30932. height: math.unit(1, "feet"),
  30933. name: "Maw",
  30934. image: {
  30935. source: "./media/characters/casselene-yaro/maw.svg"
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Macro",
  30942. height: math.unit(190, "feet"),
  30943. default: true
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(10, "feet"),
  30952. weight: math.unit(15015, "lb"),
  30953. name: "Front",
  30954. image: {
  30955. source: "./media/characters/platine/front.svg",
  30956. extra: 1741/1650,
  30957. bottom: 84/1825
  30958. }
  30959. },
  30960. side: {
  30961. height: math.unit(10, "feet"),
  30962. weight: math.unit(15015, "lb"),
  30963. name: "Side",
  30964. image: {
  30965. source: "./media/characters/platine/side.svg",
  30966. extra: 1790/1705,
  30967. bottom: 29/1819
  30968. }
  30969. },
  30970. },
  30971. [
  30972. {
  30973. name: "Normal",
  30974. height: math.unit(10, "feet"),
  30975. default: true
  30976. },
  30977. {
  30978. name: "Macro",
  30979. height: math.unit(100, "feet")
  30980. },
  30981. {
  30982. name: "Megamacro",
  30983. height: math.unit(1000, "feet")
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(15 + 5 / 12, "feet"),
  30992. weight: math.unit(4600, "lb"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/neapolitan-ananassa/front.svg",
  30996. extra: 2903 / 2736,
  30997. bottom: 0 / 2903
  30998. }
  30999. },
  31000. side: {
  31001. height: math.unit(15 + 5 / 12, "feet"),
  31002. weight: math.unit(4600, "lb"),
  31003. name: "Side",
  31004. image: {
  31005. source: "./media/characters/neapolitan-ananassa/side.svg",
  31006. extra: 2925 / 2719,
  31007. bottom: 0 / 2925
  31008. }
  31009. },
  31010. back: {
  31011. height: math.unit(15 + 5 / 12, "feet"),
  31012. weight: math.unit(4600, "lb"),
  31013. name: "Back",
  31014. image: {
  31015. source: "./media/characters/neapolitan-ananassa/back.svg",
  31016. extra: 2903 / 2736,
  31017. bottom: 0 / 2903
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "Normal",
  31024. height: math.unit(15 + 5 / 12, "feet"),
  31025. default: true
  31026. },
  31027. {
  31028. name: "Post-Millenium",
  31029. height: math.unit(35 + 5 / 12, "feet")
  31030. },
  31031. {
  31032. name: "Post-Era",
  31033. height: math.unit(450 + 5 / 12, "feet")
  31034. },
  31035. ]
  31036. ))
  31037. characterMakers.push(() => makeCharacter(
  31038. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31039. {
  31040. front: {
  31041. height: math.unit(300, "meters"),
  31042. weight: math.unit(125000, "tonnes"),
  31043. name: "Front",
  31044. image: {
  31045. source: "./media/characters/pazuzu/front.svg",
  31046. extra: 877 / 794,
  31047. bottom: 47 / 924
  31048. }
  31049. },
  31050. },
  31051. [
  31052. {
  31053. name: "Macro",
  31054. height: math.unit(300, "meters"),
  31055. default: true
  31056. },
  31057. ]
  31058. ))
  31059. characterMakers.push(() => makeCharacter(
  31060. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31061. {
  31062. side: {
  31063. height: math.unit(10 + 7 / 12, "feet"),
  31064. weight: math.unit(2.5, "tons"),
  31065. name: "Side",
  31066. image: {
  31067. source: "./media/characters/aasha/side.svg",
  31068. extra: 1345 / 1245,
  31069. bottom: 111 / 1456
  31070. }
  31071. },
  31072. back: {
  31073. height: math.unit(10 + 7 / 12, "feet"),
  31074. weight: math.unit(2.5, "tons"),
  31075. name: "Back",
  31076. image: {
  31077. source: "./media/characters/aasha/back.svg",
  31078. extra: 1133 / 1057,
  31079. bottom: 257 / 1390
  31080. }
  31081. },
  31082. },
  31083. [
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(10 + 7 / 12, "feet"),
  31087. default: true
  31088. },
  31089. ]
  31090. ))
  31091. characterMakers.push(() => makeCharacter(
  31092. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31093. {
  31094. front: {
  31095. height: math.unit(6 + 3 / 12, "feet"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/nevan/front.svg",
  31099. extra: 704 / 704,
  31100. bottom: 28 / 732
  31101. }
  31102. },
  31103. back: {
  31104. height: math.unit(6 + 3 / 12, "feet"),
  31105. name: "Back",
  31106. image: {
  31107. source: "./media/characters/nevan/back.svg",
  31108. extra: 714 / 714,
  31109. bottom: 21 / 735
  31110. }
  31111. },
  31112. frontFlaccid: {
  31113. height: math.unit(6 + 3 / 12, "feet"),
  31114. name: "Front (Flaccid)",
  31115. image: {
  31116. source: "./media/characters/nevan/front-flaccid.svg",
  31117. extra: 704 / 704,
  31118. bottom: 28 / 732
  31119. }
  31120. },
  31121. frontErect: {
  31122. height: math.unit(6 + 3 / 12, "feet"),
  31123. name: "Front (Erect)",
  31124. image: {
  31125. source: "./media/characters/nevan/front-erect.svg",
  31126. extra: 704 / 704,
  31127. bottom: 28 / 732
  31128. }
  31129. },
  31130. backFlaccid: {
  31131. height: math.unit(6 + 3 / 12, "feet"),
  31132. name: "Back (Flaccid)",
  31133. image: {
  31134. source: "./media/characters/nevan/back-flaccid.svg",
  31135. extra: 714 / 714,
  31136. bottom: 21 / 735
  31137. }
  31138. },
  31139. },
  31140. [
  31141. {
  31142. name: "Normal",
  31143. height: math.unit(6 + 3 / 12, "feet"),
  31144. default: true
  31145. },
  31146. ]
  31147. ))
  31148. characterMakers.push(() => makeCharacter(
  31149. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31150. {
  31151. front: {
  31152. height: math.unit(4, "feet"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/arhan/front.svg",
  31156. extra: 3368 / 3133,
  31157. bottom: 0 / 3368
  31158. }
  31159. },
  31160. side: {
  31161. height: math.unit(4, "feet"),
  31162. name: "Side",
  31163. image: {
  31164. source: "./media/characters/arhan/side.svg",
  31165. extra: 3347 / 3105,
  31166. bottom: 0 / 3347
  31167. }
  31168. },
  31169. tongue: {
  31170. height: math.unit(1.42, "feet"),
  31171. name: "Tongue",
  31172. image: {
  31173. source: "./media/characters/arhan/tongue.svg"
  31174. }
  31175. },
  31176. head: {
  31177. height: math.unit(0.85, "feet"),
  31178. name: "Head",
  31179. image: {
  31180. source: "./media/characters/arhan/head.svg"
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(4, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31194. {
  31195. front: {
  31196. height: math.unit(5 + 7.5 / 12, "feet"),
  31197. weight: math.unit(120, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/digi-duncan/front.svg",
  31201. extra: 330 / 326,
  31202. bottom: 16 / 346
  31203. }
  31204. },
  31205. side: {
  31206. height: math.unit(5 + 7.5 / 12, "feet"),
  31207. weight: math.unit(120, "lb"),
  31208. name: "Side",
  31209. image: {
  31210. source: "./media/characters/digi-duncan/side.svg",
  31211. extra: 341 / 337,
  31212. bottom: 1 / 342
  31213. }
  31214. },
  31215. back: {
  31216. height: math.unit(5 + 7.5 / 12, "feet"),
  31217. weight: math.unit(120, "lb"),
  31218. name: "Back",
  31219. image: {
  31220. source: "./media/characters/digi-duncan/back.svg",
  31221. extra: 330 / 326,
  31222. bottom: 12 / 342
  31223. }
  31224. },
  31225. },
  31226. [
  31227. {
  31228. name: "Speck",
  31229. height: math.unit(0.25, "mm")
  31230. },
  31231. {
  31232. name: "Micro",
  31233. height: math.unit(5, "mm")
  31234. },
  31235. {
  31236. name: "Tiny",
  31237. height: math.unit(0.5, "inches"),
  31238. default: true
  31239. },
  31240. {
  31241. name: "Human",
  31242. height: math.unit(5 + 7.5 / 12, "feet")
  31243. },
  31244. {
  31245. name: "Minigiant",
  31246. height: math.unit(8 + 5.25, "feet")
  31247. },
  31248. {
  31249. name: "Giant",
  31250. height: math.unit(2000, "feet")
  31251. },
  31252. {
  31253. name: "Mega",
  31254. height: math.unit(371.1, "miles")
  31255. },
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(2, "meters"),
  31263. weight: math.unit(350, "kg"),
  31264. name: "Front",
  31265. image: {
  31266. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31267. extra: 898 / 838,
  31268. bottom: 9 / 907
  31269. }
  31270. },
  31271. },
  31272. [
  31273. {
  31274. name: "Micro",
  31275. height: math.unit(8, "meters")
  31276. },
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(50, "meters"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(500, "meters")
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(6 + 6 / 12, "feet"),
  31293. name: "Front",
  31294. image: {
  31295. source: "./media/characters/khardesh/front.svg",
  31296. extra: 1788/1596,
  31297. bottom: 66/1854
  31298. }
  31299. },
  31300. back: {
  31301. height: math.unit(6 + 6 / 12, "feet"),
  31302. name: "Back",
  31303. image: {
  31304. source: "./media/characters/khardesh/back.svg",
  31305. extra: 1781/1584,
  31306. bottom: 68/1849
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(6 + 6 / 12, "feet"),
  31314. default: true
  31315. },
  31316. {
  31317. name: "Normal+",
  31318. height: math.unit(4, "meters")
  31319. },
  31320. {
  31321. name: "Macro",
  31322. height: math.unit(50, "meters")
  31323. },
  31324. {
  31325. name: "Macro+",
  31326. height: math.unit(100, "meters")
  31327. },
  31328. {
  31329. name: "Megamacro",
  31330. height: math.unit(20, "km")
  31331. },
  31332. ]
  31333. ))
  31334. characterMakers.push(() => makeCharacter(
  31335. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31336. {
  31337. front: {
  31338. height: math.unit(6, "feet"),
  31339. weight: math.unit(150, "lb"),
  31340. name: "Front",
  31341. image: {
  31342. source: "./media/characters/kosho/front.svg",
  31343. extra: 1847 / 1847,
  31344. bottom: 86 / 1933
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Second-stage micro",
  31351. height: math.unit(0.5, "inches")
  31352. },
  31353. {
  31354. name: "First-stage micro",
  31355. height: math.unit(6, "inches")
  31356. },
  31357. {
  31358. name: "Normal",
  31359. height: math.unit(6, "feet"),
  31360. default: true
  31361. },
  31362. {
  31363. name: "First-stage macro",
  31364. height: math.unit(72, "feet")
  31365. },
  31366. {
  31367. name: "Second-stage macro",
  31368. height: math.unit(864, "feet")
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31374. {
  31375. normal: {
  31376. height: math.unit(4 + 6 / 12, "feet"),
  31377. name: "Normal",
  31378. image: {
  31379. source: "./media/characters/hydra/normal.svg",
  31380. extra: 2833 / 2634,
  31381. bottom: 68 / 2901
  31382. }
  31383. },
  31384. smol: {
  31385. height: math.unit(0.705, "inches"),
  31386. name: "Smol",
  31387. image: {
  31388. source: "./media/characters/hydra/smol.svg",
  31389. extra: 2715 / 2540,
  31390. bottom: 0 / 2715
  31391. }
  31392. },
  31393. },
  31394. [
  31395. {
  31396. name: "Normal",
  31397. height: math.unit(4 + 6 / 12, "feet"),
  31398. default: true
  31399. }
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(0.6, "cm"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/daz/front.svg",
  31410. extra: 1682 / 1164,
  31411. bottom: 42 / 1724
  31412. }
  31413. },
  31414. },
  31415. [
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(0.6, "cm"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(235, "lb"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/theo-pangolin/front.svg",
  31432. extra: 1996 / 1969,
  31433. bottom: 115 / 2111
  31434. }
  31435. },
  31436. back: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(235, "lb"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/theo-pangolin/back.svg",
  31442. extra: 1979 / 1979,
  31443. bottom: 40 / 2019
  31444. }
  31445. },
  31446. feral: {
  31447. height: math.unit(2, "feet"),
  31448. weight: math.unit(30, "lb"),
  31449. name: "Feral",
  31450. image: {
  31451. source: "./media/characters/theo-pangolin/feral.svg",
  31452. extra: 803 / 791,
  31453. bottom: 181 / 984
  31454. }
  31455. },
  31456. footFive: {
  31457. height: math.unit(1.43, "feet"),
  31458. name: "Foot (Five Toes)",
  31459. image: {
  31460. source: "./media/characters/theo-pangolin/foot-five.svg"
  31461. }
  31462. },
  31463. footFour: {
  31464. height: math.unit(1.43, "feet"),
  31465. name: "Foot (Four Toes)",
  31466. image: {
  31467. source: "./media/characters/theo-pangolin/foot-four.svg"
  31468. }
  31469. },
  31470. handFour: {
  31471. height: math.unit(0.81, "feet"),
  31472. name: "Hand (Four Fingers)",
  31473. image: {
  31474. source: "./media/characters/theo-pangolin/hand-four.svg"
  31475. }
  31476. },
  31477. handThree: {
  31478. height: math.unit(0.81, "feet"),
  31479. name: "Hand (Three Fingers)",
  31480. image: {
  31481. source: "./media/characters/theo-pangolin/hand-three.svg"
  31482. }
  31483. },
  31484. headFront: {
  31485. height: math.unit(1.37, "feet"),
  31486. name: "Head (Front)",
  31487. image: {
  31488. source: "./media/characters/theo-pangolin/head-front.svg"
  31489. }
  31490. },
  31491. headSide: {
  31492. height: math.unit(1.43, "feet"),
  31493. name: "Head (Side)",
  31494. image: {
  31495. source: "./media/characters/theo-pangolin/head-side.svg"
  31496. }
  31497. },
  31498. tongue: {
  31499. height: math.unit(2.29, "feet"),
  31500. name: "Tongue",
  31501. image: {
  31502. source: "./media/characters/theo-pangolin/tongue.svg"
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(6, "feet")
  31510. },
  31511. {
  31512. name: "Macro",
  31513. height: math.unit(400, "feet"),
  31514. default: true
  31515. },
  31516. ]
  31517. ))
  31518. characterMakers.push(() => makeCharacter(
  31519. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31520. {
  31521. front: {
  31522. height: math.unit(6, "inches"),
  31523. weight: math.unit(0.036, "kg"),
  31524. name: "Front",
  31525. image: {
  31526. source: "./media/characters/renée/front.svg",
  31527. extra: 900 / 886,
  31528. bottom: 8 / 908
  31529. }
  31530. },
  31531. },
  31532. [
  31533. {
  31534. name: "Nano",
  31535. height: math.unit(1, "nm")
  31536. },
  31537. {
  31538. name: "Micro",
  31539. height: math.unit(1, "mm")
  31540. },
  31541. {
  31542. name: "Normal",
  31543. height: math.unit(6, "inches")
  31544. },
  31545. {
  31546. name: "Macro",
  31547. height: math.unit(2000, "feet"),
  31548. default: true
  31549. },
  31550. {
  31551. name: "Megamacro",
  31552. height: math.unit(2, "km")
  31553. },
  31554. {
  31555. name: "Gigamacro",
  31556. height: math.unit(2000, "km")
  31557. },
  31558. {
  31559. name: "Teramacro",
  31560. height: math.unit(250000, "km")
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31566. {
  31567. front: {
  31568. height: math.unit(4, "meters"),
  31569. weight: math.unit(150, "kg"),
  31570. name: "Front",
  31571. image: {
  31572. source: "./media/characters/caledvwlch/front.svg",
  31573. extra: 1760 / 1551,
  31574. bottom: 28 / 1788
  31575. }
  31576. },
  31577. side: {
  31578. height: math.unit(4, "meters"),
  31579. weight: math.unit(150, "kg"),
  31580. name: "Side",
  31581. image: {
  31582. source: "./media/characters/caledvwlch/side.svg",
  31583. extra: 1605 / 1536,
  31584. bottom: 31 / 1636
  31585. }
  31586. },
  31587. back: {
  31588. height: math.unit(4, "meters"),
  31589. weight: math.unit(150, "kg"),
  31590. name: "Back",
  31591. image: {
  31592. source: "./media/characters/caledvwlch/back.svg",
  31593. extra: 1635 / 1565,
  31594. bottom: 27 / 1662
  31595. }
  31596. },
  31597. },
  31598. [
  31599. {
  31600. name: "\"Incognito\"",
  31601. height: math.unit(4, "meters")
  31602. },
  31603. {
  31604. name: "Small rampage",
  31605. height: math.unit(600, "meters")
  31606. },
  31607. {
  31608. name: "Mega",
  31609. height: math.unit(30, "km")
  31610. },
  31611. {
  31612. name: "Home-size",
  31613. height: math.unit(50, "km"),
  31614. default: true
  31615. },
  31616. {
  31617. name: "Giga",
  31618. height: math.unit(300, "km")
  31619. },
  31620. {
  31621. name: "Lounging",
  31622. height: math.unit(11000, "km")
  31623. },
  31624. {
  31625. name: "Planet snacking",
  31626. height: math.unit(2000000, "km")
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31632. {
  31633. front: {
  31634. height: math.unit(6, "feet"),
  31635. weight: math.unit(215, "lb"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/sapphire-svell/front.svg",
  31639. extra: 495 / 455,
  31640. bottom: 20 / 515
  31641. }
  31642. },
  31643. back: {
  31644. height: math.unit(6, "feet"),
  31645. weight: math.unit(216, "lb"),
  31646. name: "Back",
  31647. image: {
  31648. source: "./media/characters/sapphire-svell/back.svg",
  31649. extra: 497 / 477,
  31650. bottom: 7 / 504
  31651. }
  31652. },
  31653. maw: {
  31654. height: math.unit(1.57, "feet"),
  31655. name: "Maw",
  31656. image: {
  31657. source: "./media/characters/sapphire-svell/maw.svg"
  31658. }
  31659. },
  31660. foot: {
  31661. height: math.unit(1.07, "feet"),
  31662. name: "Foot",
  31663. image: {
  31664. source: "./media/characters/sapphire-svell/foot.svg"
  31665. }
  31666. },
  31667. toering: {
  31668. height: math.unit(1.7, "inch"),
  31669. name: "Toering",
  31670. image: {
  31671. source: "./media/characters/sapphire-svell/toering.svg"
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(300, "feet"),
  31679. default: true
  31680. },
  31681. {
  31682. name: "Augmented",
  31683. height: math.unit(1250, "feet")
  31684. },
  31685. {
  31686. name: "Unleashed",
  31687. height: math.unit(3000, "feet")
  31688. },
  31689. ]
  31690. ))
  31691. characterMakers.push(() => makeCharacter(
  31692. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31693. {
  31694. side: {
  31695. height: math.unit(2 + 3 / 12, "feet"),
  31696. weight: math.unit(110, "lb"),
  31697. name: "Side",
  31698. image: {
  31699. source: "./media/characters/glitch-flux/side.svg",
  31700. extra: 997 / 805,
  31701. bottom: 20 / 1017
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Normal",
  31708. height: math.unit(2 + 3 / 12, "feet"),
  31709. default: true
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31715. {
  31716. front: {
  31717. height: math.unit(4, "meters"),
  31718. name: "Front",
  31719. image: {
  31720. source: "./media/characters/mid/front.svg",
  31721. extra: 507 / 476,
  31722. bottom: 17 / 524
  31723. }
  31724. },
  31725. back: {
  31726. height: math.unit(4, "meters"),
  31727. name: "Back",
  31728. image: {
  31729. source: "./media/characters/mid/back.svg",
  31730. extra: 519 / 487,
  31731. bottom: 7 / 526
  31732. }
  31733. },
  31734. stuck: {
  31735. height: math.unit(2.2, "meters"),
  31736. name: "Stuck",
  31737. image: {
  31738. source: "./media/characters/mid/stuck.svg",
  31739. extra: 1951 / 1869,
  31740. bottom: 88 / 2039
  31741. }
  31742. }
  31743. },
  31744. [
  31745. {
  31746. name: "Normal",
  31747. height: math.unit(4, "meters"),
  31748. default: true
  31749. },
  31750. {
  31751. name: "Big",
  31752. height: math.unit(10, "meters")
  31753. },
  31754. {
  31755. name: "Macro",
  31756. height: math.unit(800, "meters")
  31757. },
  31758. {
  31759. name: "Megamacro",
  31760. height: math.unit(100, "km")
  31761. },
  31762. {
  31763. name: "Overgrown",
  31764. height: math.unit(1, "parsec")
  31765. },
  31766. ]
  31767. ))
  31768. characterMakers.push(() => makeCharacter(
  31769. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31770. {
  31771. front: {
  31772. height: math.unit(2.5, "meters"),
  31773. weight: math.unit(225, "kg"),
  31774. name: "Front",
  31775. image: {
  31776. source: "./media/characters/iris/front.svg",
  31777. extra: 3348 / 3251,
  31778. bottom: 205 / 3553
  31779. }
  31780. },
  31781. maw: {
  31782. height: math.unit(0.56, "meter"),
  31783. name: "Maw",
  31784. image: {
  31785. source: "./media/characters/iris/maw.svg"
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Mewter cat",
  31792. height: math.unit(1.2, "meters")
  31793. },
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(2.5, "meters"),
  31797. default: true
  31798. },
  31799. {
  31800. name: "Minimacro",
  31801. height: math.unit(18, "feet")
  31802. },
  31803. {
  31804. name: "Macro",
  31805. height: math.unit(140, "feet")
  31806. },
  31807. {
  31808. name: "Macro+",
  31809. height: math.unit(180, "meters")
  31810. },
  31811. {
  31812. name: "Megamacro",
  31813. height: math.unit(2746, "meters")
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(6, "feet"),
  31822. weight: math.unit(135, "lb"),
  31823. name: "Front",
  31824. image: {
  31825. source: "./media/characters/axel/front.svg",
  31826. extra: 908 / 908,
  31827. bottom: 58 / 966
  31828. }
  31829. },
  31830. side: {
  31831. height: math.unit(6, "feet"),
  31832. weight: math.unit(135, "lb"),
  31833. name: "Side",
  31834. image: {
  31835. source: "./media/characters/axel/side.svg",
  31836. extra: 958 / 958,
  31837. bottom: 11 / 969
  31838. }
  31839. },
  31840. back: {
  31841. height: math.unit(6, "feet"),
  31842. weight: math.unit(135, "lb"),
  31843. name: "Back",
  31844. image: {
  31845. source: "./media/characters/axel/back.svg",
  31846. extra: 887 / 887,
  31847. bottom: 34 / 921
  31848. }
  31849. },
  31850. head: {
  31851. height: math.unit(1.07, "feet"),
  31852. name: "Head",
  31853. image: {
  31854. source: "./media/characters/axel/head.svg"
  31855. }
  31856. },
  31857. beak: {
  31858. height: math.unit(1.4, "feet"),
  31859. name: "Beak",
  31860. image: {
  31861. source: "./media/characters/axel/beak.svg"
  31862. }
  31863. },
  31864. beakSide: {
  31865. height: math.unit(1.4, "feet"),
  31866. name: "Beak Side",
  31867. image: {
  31868. source: "./media/characters/axel/beak-side.svg"
  31869. }
  31870. },
  31871. sheath: {
  31872. height: math.unit(0.5, "feet"),
  31873. name: "Sheath",
  31874. image: {
  31875. source: "./media/characters/axel/sheath.svg"
  31876. }
  31877. },
  31878. dick: {
  31879. height: math.unit(0.98, "feet"),
  31880. name: "Dick",
  31881. image: {
  31882. source: "./media/characters/axel/dick.svg"
  31883. }
  31884. },
  31885. },
  31886. [
  31887. {
  31888. name: "Macro",
  31889. height: math.unit(68, "meters"),
  31890. default: true
  31891. },
  31892. ]
  31893. ))
  31894. characterMakers.push(() => makeCharacter(
  31895. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31896. {
  31897. front: {
  31898. height: math.unit(3.5, "meters"),
  31899. weight: math.unit(1200, "kg"),
  31900. name: "Front",
  31901. image: {
  31902. source: "./media/characters/joanna/front.svg",
  31903. extra: 1596 / 1488,
  31904. bottom: 29 / 1625
  31905. }
  31906. },
  31907. back: {
  31908. height: math.unit(3.5, "meters"),
  31909. weight: math.unit(1200, "kg"),
  31910. name: "Back",
  31911. image: {
  31912. source: "./media/characters/joanna/back.svg",
  31913. extra: 1594 / 1495,
  31914. bottom: 26 / 1620
  31915. }
  31916. },
  31917. frontShorts: {
  31918. height: math.unit(3.5, "meters"),
  31919. weight: math.unit(1200, "kg"),
  31920. name: "Front (Shorts)",
  31921. image: {
  31922. source: "./media/characters/joanna/front-shorts.svg",
  31923. extra: 1596 / 1488,
  31924. bottom: 29 / 1625
  31925. }
  31926. },
  31927. frontBiker: {
  31928. height: math.unit(3.5, "meters"),
  31929. weight: math.unit(1200, "kg"),
  31930. name: "Front (Biker)",
  31931. image: {
  31932. source: "./media/characters/joanna/front-biker.svg",
  31933. extra: 1596 / 1488,
  31934. bottom: 29 / 1625
  31935. }
  31936. },
  31937. backBiker: {
  31938. height: math.unit(3.5, "meters"),
  31939. weight: math.unit(1200, "kg"),
  31940. name: "Back (Biker)",
  31941. image: {
  31942. source: "./media/characters/joanna/back-biker.svg",
  31943. extra: 1594 / 1495,
  31944. bottom: 88 / 1682
  31945. }
  31946. },
  31947. bikeLeft: {
  31948. height: math.unit(2.4, "meters"),
  31949. weight: math.unit(1600, "kg"),
  31950. name: "Bike (Left)",
  31951. image: {
  31952. source: "./media/characters/joanna/bike-left.svg",
  31953. extra: 720 / 720,
  31954. bottom: 8 / 728
  31955. }
  31956. },
  31957. bikeRight: {
  31958. height: math.unit(2.4, "meters"),
  31959. weight: math.unit(1600, "kg"),
  31960. name: "Bike (Right)",
  31961. image: {
  31962. source: "./media/characters/joanna/bike-right.svg",
  31963. extra: 720 / 720,
  31964. bottom: 8 / 728
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Incognito",
  31971. height: math.unit(3.5, "meters")
  31972. },
  31973. {
  31974. name: "Casual Big",
  31975. height: math.unit(200, "meters")
  31976. },
  31977. {
  31978. name: "Macro",
  31979. height: math.unit(600, "meters")
  31980. },
  31981. {
  31982. name: "Original",
  31983. height: math.unit(20, "km"),
  31984. default: true
  31985. },
  31986. {
  31987. name: "Giga",
  31988. height: math.unit(400, "km")
  31989. },
  31990. {
  31991. name: "Lounging",
  31992. height: math.unit(1500, "km")
  31993. },
  31994. {
  31995. name: "Planetary",
  31996. height: math.unit(200000, "km")
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32002. {
  32003. front: {
  32004. height: math.unit(6, "feet"),
  32005. weight: math.unit(150, "lb"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/hugo-sigil/front.svg",
  32009. extra: 522 / 500,
  32010. bottom: 2 / 524
  32011. }
  32012. },
  32013. back: {
  32014. height: math.unit(6, "feet"),
  32015. weight: math.unit(150, "lb"),
  32016. name: "Back",
  32017. image: {
  32018. source: "./media/characters/hugo-sigil/back.svg",
  32019. extra: 519 / 495,
  32020. bottom: 5 / 524
  32021. }
  32022. },
  32023. maw: {
  32024. height: math.unit(1.4, "feet"),
  32025. weight: math.unit(150, "lb"),
  32026. name: "Maw",
  32027. image: {
  32028. source: "./media/characters/hugo-sigil/maw.svg"
  32029. }
  32030. },
  32031. feet: {
  32032. height: math.unit(1.56, "feet"),
  32033. weight: math.unit(150, "lb"),
  32034. name: "Feet",
  32035. image: {
  32036. source: "./media/characters/hugo-sigil/feet.svg",
  32037. extra: 177 / 177,
  32038. bottom: 12 / 189
  32039. }
  32040. },
  32041. },
  32042. [
  32043. {
  32044. name: "Normal",
  32045. height: math.unit(6, "feet")
  32046. },
  32047. {
  32048. name: "Macro",
  32049. height: math.unit(200, "feet"),
  32050. default: true
  32051. },
  32052. ]
  32053. ))
  32054. characterMakers.push(() => makeCharacter(
  32055. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32056. {
  32057. front: {
  32058. height: math.unit(6, "feet"),
  32059. weight: math.unit(150, "lb"),
  32060. name: "Front",
  32061. image: {
  32062. source: "./media/characters/peri/front.svg",
  32063. extra: 2354 / 2233,
  32064. bottom: 49 / 2403
  32065. }
  32066. },
  32067. },
  32068. [
  32069. {
  32070. name: "Really Small",
  32071. height: math.unit(1, "nm")
  32072. },
  32073. {
  32074. name: "Micro",
  32075. height: math.unit(4, "inches")
  32076. },
  32077. {
  32078. name: "Normal",
  32079. height: math.unit(7, "inches"),
  32080. default: true
  32081. },
  32082. {
  32083. name: "Macro",
  32084. height: math.unit(400, "feet")
  32085. },
  32086. {
  32087. name: "Megamacro",
  32088. height: math.unit(100, "miles")
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32094. {
  32095. frontSlim: {
  32096. height: math.unit(7, "feet"),
  32097. name: "Front (Slim)",
  32098. image: {
  32099. source: "./media/characters/issilora/front-slim.svg",
  32100. extra: 529 / 449,
  32101. bottom: 53 / 582
  32102. }
  32103. },
  32104. sideSlim: {
  32105. height: math.unit(7, "feet"),
  32106. name: "Side (Slim)",
  32107. image: {
  32108. source: "./media/characters/issilora/side-slim.svg",
  32109. extra: 570 / 480,
  32110. bottom: 30 / 600
  32111. }
  32112. },
  32113. backSlim: {
  32114. height: math.unit(7, "feet"),
  32115. name: "Back (Slim)",
  32116. image: {
  32117. source: "./media/characters/issilora/back-slim.svg",
  32118. extra: 537 / 455,
  32119. bottom: 46 / 583
  32120. }
  32121. },
  32122. frontBuff: {
  32123. height: math.unit(7, "feet"),
  32124. name: "Front (Buff)",
  32125. image: {
  32126. source: "./media/characters/issilora/front-buff.svg",
  32127. extra: 2310 / 2035,
  32128. bottom: 335 / 2645
  32129. }
  32130. },
  32131. head: {
  32132. height: math.unit(1.94, "feet"),
  32133. name: "Head",
  32134. image: {
  32135. source: "./media/characters/issilora/head.svg"
  32136. }
  32137. },
  32138. },
  32139. [
  32140. {
  32141. name: "Minimum",
  32142. height: math.unit(7, "feet")
  32143. },
  32144. {
  32145. name: "Comfortable",
  32146. height: math.unit(17, "feet")
  32147. },
  32148. {
  32149. name: "Fun Size",
  32150. height: math.unit(47, "feet")
  32151. },
  32152. {
  32153. name: "Natural Macro",
  32154. height: math.unit(137, "feet"),
  32155. default: true
  32156. },
  32157. {
  32158. name: "Maximum Kaiju",
  32159. height: math.unit(397, "feet")
  32160. },
  32161. ]
  32162. ))
  32163. characterMakers.push(() => makeCharacter(
  32164. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32165. {
  32166. front: {
  32167. height: math.unit(50 + 9/12, "feet"),
  32168. weight: math.unit(32.8, "tons"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/irb'iiritaahn/front.svg",
  32172. extra: 1878/1826,
  32173. bottom: 326/2204
  32174. }
  32175. },
  32176. back: {
  32177. height: math.unit(50 + 9/12, "feet"),
  32178. weight: math.unit(32.8, "tons"),
  32179. name: "Back",
  32180. image: {
  32181. source: "./media/characters/irb'iiritaahn/back.svg",
  32182. extra: 2052/2018,
  32183. bottom: 152/2204
  32184. }
  32185. },
  32186. head: {
  32187. height: math.unit(12.86, "feet"),
  32188. name: "Head",
  32189. image: {
  32190. source: "./media/characters/irb'iiritaahn/head.svg"
  32191. }
  32192. },
  32193. maw: {
  32194. height: math.unit(9.66, "feet"),
  32195. name: "Maw",
  32196. image: {
  32197. source: "./media/characters/irb'iiritaahn/maw.svg"
  32198. }
  32199. },
  32200. frontDick: {
  32201. height: math.unit(8.78461, "feet"),
  32202. name: "Front Dick",
  32203. image: {
  32204. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32205. }
  32206. },
  32207. rearDick: {
  32208. height: math.unit(8.78461, "feet"),
  32209. name: "Rear Dick",
  32210. image: {
  32211. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32212. }
  32213. },
  32214. rearDickUnfolded: {
  32215. height: math.unit(8.78, "feet"),
  32216. name: "Rear Dick (Unfolded)",
  32217. image: {
  32218. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32219. }
  32220. },
  32221. wings: {
  32222. height: math.unit(43, "feet"),
  32223. name: "Wings",
  32224. image: {
  32225. source: "./media/characters/irb'iiritaahn/wings.svg"
  32226. }
  32227. },
  32228. },
  32229. [
  32230. {
  32231. name: "Macro",
  32232. height: math.unit(50 + 9/12, "feet"),
  32233. default: true
  32234. },
  32235. ]
  32236. ))
  32237. characterMakers.push(() => makeCharacter(
  32238. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32239. {
  32240. front: {
  32241. height: math.unit(205, "cm"),
  32242. weight: math.unit(102, "kg"),
  32243. name: "Front",
  32244. image: {
  32245. source: "./media/characters/irbisgreif/front.svg",
  32246. extra: 785/706,
  32247. bottom: 13/798
  32248. }
  32249. },
  32250. back: {
  32251. height: math.unit(205, "cm"),
  32252. weight: math.unit(102, "kg"),
  32253. name: "Back",
  32254. image: {
  32255. source: "./media/characters/irbisgreif/back.svg",
  32256. extra: 713/701,
  32257. bottom: 26/739
  32258. }
  32259. },
  32260. frontDressed: {
  32261. height: math.unit(216, "cm"),
  32262. weight: math.unit(102, "kg"),
  32263. name: "Front-dressed",
  32264. image: {
  32265. source: "./media/characters/irbisgreif/front-dressed.svg",
  32266. extra: 902/776,
  32267. bottom: 14/916
  32268. }
  32269. },
  32270. sideDressed: {
  32271. height: math.unit(195, "cm"),
  32272. weight: math.unit(102, "kg"),
  32273. name: "Side-dressed",
  32274. image: {
  32275. source: "./media/characters/irbisgreif/side-dressed.svg",
  32276. extra: 788/688,
  32277. bottom: 21/809
  32278. }
  32279. },
  32280. backDressed: {
  32281. height: math.unit(216, "cm"),
  32282. weight: math.unit(102, "kg"),
  32283. name: "Back-dressed",
  32284. image: {
  32285. source: "./media/characters/irbisgreif/back-dressed.svg",
  32286. extra: 901/783,
  32287. bottom: 10/911
  32288. }
  32289. },
  32290. dick: {
  32291. height: math.unit(0.49, "feet"),
  32292. name: "Dick",
  32293. image: {
  32294. source: "./media/characters/irbisgreif/dick.svg"
  32295. }
  32296. },
  32297. wingTop: {
  32298. height: math.unit(1.93 , "feet"),
  32299. name: "Wing-top",
  32300. image: {
  32301. source: "./media/characters/irbisgreif/wing-top.svg"
  32302. }
  32303. },
  32304. wingBottom: {
  32305. height: math.unit(1.93 , "feet"),
  32306. name: "Wing-bottom",
  32307. image: {
  32308. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(216, "cm"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(6, "feet"),
  32325. weight: math.unit(150, "lb"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/pride/front.svg",
  32329. extra: 1299/1230,
  32330. bottom: 18/1317
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(7, "feet")
  32338. },
  32339. {
  32340. name: "Mini-macro",
  32341. height: math.unit(11, "feet")
  32342. },
  32343. {
  32344. name: "Macro",
  32345. height: math.unit(15, "meters"),
  32346. default: true
  32347. },
  32348. {
  32349. name: "Macro+",
  32350. height: math.unit(40, "meters")
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32356. {
  32357. front: {
  32358. height: math.unit(4 + 2 / 12, "feet"),
  32359. weight: math.unit(95, "lb"),
  32360. name: "Front",
  32361. image: {
  32362. source: "./media/characters/vaelophis-nyx/front.svg",
  32363. extra: 2532/2330,
  32364. bottom: 0/2532
  32365. }
  32366. },
  32367. back: {
  32368. height: math.unit(4 + 2 / 12, "feet"),
  32369. weight: math.unit(95, "lb"),
  32370. name: "Back",
  32371. image: {
  32372. source: "./media/characters/vaelophis-nyx/back.svg",
  32373. extra: 2484/2361,
  32374. bottom: 0/2484
  32375. }
  32376. },
  32377. feralSide: {
  32378. height: math.unit(2 + 1/12, "feet"),
  32379. weight: math.unit(20, "lb"),
  32380. name: "Feral (Side)",
  32381. image: {
  32382. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32383. extra: 1721/1581,
  32384. bottom: 70/1791
  32385. }
  32386. },
  32387. feralLazing: {
  32388. height: math.unit(1.08, "feet"),
  32389. weight: math.unit(20, "lb"),
  32390. name: "Feral (Lazing)",
  32391. image: {
  32392. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32393. extra: 822/822,
  32394. bottom: 248/1070
  32395. }
  32396. },
  32397. ear: {
  32398. height: math.unit(0.416, "feet"),
  32399. name: "Ear",
  32400. image: {
  32401. source: "./media/characters/vaelophis-nyx/ear.svg"
  32402. }
  32403. },
  32404. eye: {
  32405. height: math.unit(0.0748, "feet"),
  32406. name: "Eye",
  32407. image: {
  32408. source: "./media/characters/vaelophis-nyx/eye.svg"
  32409. }
  32410. },
  32411. mouth: {
  32412. height: math.unit(0.378, "feet"),
  32413. name: "Mouth",
  32414. image: {
  32415. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32416. }
  32417. },
  32418. spade: {
  32419. height: math.unit(0.55, "feet"),
  32420. name: "Spade",
  32421. image: {
  32422. source: "./media/characters/vaelophis-nyx/spade.svg"
  32423. }
  32424. },
  32425. },
  32426. [
  32427. {
  32428. name: "Normal",
  32429. height: math.unit(4 + 2/12, "feet"),
  32430. default: true
  32431. },
  32432. ]
  32433. ))
  32434. characterMakers.push(() => makeCharacter(
  32435. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32436. {
  32437. front: {
  32438. height: math.unit(7, "feet"),
  32439. weight: math.unit(231, "lb"),
  32440. name: "Front",
  32441. image: {
  32442. source: "./media/characters/flux/front.svg",
  32443. extra: 919/871,
  32444. bottom: 0/919
  32445. }
  32446. },
  32447. back: {
  32448. height: math.unit(7, "feet"),
  32449. weight: math.unit(231, "lb"),
  32450. name: "Back",
  32451. image: {
  32452. source: "./media/characters/flux/back.svg",
  32453. extra: 1040/992,
  32454. bottom: 0/1040
  32455. }
  32456. },
  32457. frontDressed: {
  32458. height: math.unit(7, "feet"),
  32459. weight: math.unit(231, "lb"),
  32460. name: "Front (Dressed)",
  32461. image: {
  32462. source: "./media/characters/flux/front-dressed.svg",
  32463. extra: 919/871,
  32464. bottom: 0/919
  32465. }
  32466. },
  32467. feralSide: {
  32468. height: math.unit(5, "feet"),
  32469. weight: math.unit(150, "lb"),
  32470. name: "Feral (Side)",
  32471. image: {
  32472. source: "./media/characters/flux/feral-side.svg",
  32473. extra: 598/528,
  32474. bottom: 28/626
  32475. }
  32476. },
  32477. head: {
  32478. height: math.unit(1.585, "feet"),
  32479. name: "Head",
  32480. image: {
  32481. source: "./media/characters/flux/head.svg"
  32482. }
  32483. },
  32484. headSide: {
  32485. height: math.unit(1.74, "feet"),
  32486. name: "Head (Side)",
  32487. image: {
  32488. source: "./media/characters/flux/head-side.svg"
  32489. }
  32490. },
  32491. headSideFire: {
  32492. height: math.unit(1.76, "feet"),
  32493. name: "Head (Side, Fire)",
  32494. image: {
  32495. source: "./media/characters/flux/head-side-fire.svg"
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Normal",
  32502. height: math.unit(7, "feet"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32509. {
  32510. front: {
  32511. height: math.unit(9, "feet"),
  32512. weight: math.unit(1012, "lb"),
  32513. name: "Front",
  32514. image: {
  32515. source: "./media/characters/ulfra-lupae/front.svg",
  32516. extra: 1083/1011,
  32517. bottom: 67/1150
  32518. }
  32519. },
  32520. },
  32521. [
  32522. {
  32523. name: "Micro",
  32524. height: math.unit(6, "inches")
  32525. },
  32526. {
  32527. name: "Socializing",
  32528. height: math.unit(6 + 5/12, "feet")
  32529. },
  32530. {
  32531. name: "Normal",
  32532. height: math.unit(9, "feet"),
  32533. default: true
  32534. },
  32535. {
  32536. name: "Macro",
  32537. height: math.unit(150, "feet")
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32543. {
  32544. front: {
  32545. height: math.unit(5 + 2/12, "feet"),
  32546. weight: math.unit(120, "lb"),
  32547. name: "Front",
  32548. image: {
  32549. source: "./media/characters/timber/front.svg",
  32550. extra: 2814/2705,
  32551. bottom: 181/2995
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "Normal",
  32558. height: math.unit(5 + 2/12, "feet"),
  32559. default: true
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(9, "feet"),
  32568. name: "Front",
  32569. image: {
  32570. source: "./media/characters/nicki/front.svg",
  32571. extra: 1240/990,
  32572. bottom: 45/1285
  32573. },
  32574. form: "anthro",
  32575. default: true
  32576. },
  32577. side: {
  32578. height: math.unit(9, "feet"),
  32579. name: "Side",
  32580. image: {
  32581. source: "./media/characters/nicki/side.svg",
  32582. extra: 1047/973,
  32583. bottom: 61/1108
  32584. },
  32585. form: "anthro"
  32586. },
  32587. back: {
  32588. height: math.unit(9, "feet"),
  32589. name: "Back",
  32590. image: {
  32591. source: "./media/characters/nicki/back.svg",
  32592. extra: 1006/965,
  32593. bottom: 39/1045
  32594. },
  32595. form: "anthro"
  32596. },
  32597. taur: {
  32598. height: math.unit(15, "feet"),
  32599. name: "Taur",
  32600. image: {
  32601. source: "./media/characters/nicki/taur.svg",
  32602. extra: 1592/1347,
  32603. bottom: 0/1592
  32604. },
  32605. form: "taur",
  32606. default: true
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Normal",
  32612. height: math.unit(9, "feet"),
  32613. form: "anthro",
  32614. default: true
  32615. },
  32616. {
  32617. name: "Normal",
  32618. height: math.unit(15, "feet"),
  32619. form: "taur",
  32620. default: true
  32621. }
  32622. ],
  32623. {
  32624. "anthro": {
  32625. name: "Anthro",
  32626. default: true
  32627. },
  32628. "taur": {
  32629. name: "Taur"
  32630. }
  32631. }
  32632. ))
  32633. characterMakers.push(() => makeCharacter(
  32634. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32635. {
  32636. front: {
  32637. height: math.unit(7 + 10/12, "feet"),
  32638. weight: math.unit(3.5, "tons"),
  32639. name: "Front",
  32640. image: {
  32641. source: "./media/characters/lee/front.svg",
  32642. extra: 1773/1615,
  32643. bottom: 86/1859
  32644. }
  32645. },
  32646. hand: {
  32647. height: math.unit(1.78, "feet"),
  32648. name: "Hand",
  32649. image: {
  32650. source: "./media/characters/lee/hand.svg"
  32651. }
  32652. },
  32653. maw: {
  32654. height: math.unit(1.18, "feet"),
  32655. name: "Maw",
  32656. image: {
  32657. source: "./media/characters/lee/maw.svg"
  32658. }
  32659. },
  32660. },
  32661. [
  32662. {
  32663. name: "Normal",
  32664. height: math.unit(7 + 10/12, "feet"),
  32665. default: true
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32671. {
  32672. front: {
  32673. height: math.unit(9, "feet"),
  32674. name: "Front",
  32675. image: {
  32676. source: "./media/characters/guti/front.svg",
  32677. extra: 4551/4355,
  32678. bottom: 123/4674
  32679. }
  32680. },
  32681. tongue: {
  32682. height: math.unit(1, "feet"),
  32683. name: "Tongue",
  32684. image: {
  32685. source: "./media/characters/guti/tongue.svg"
  32686. }
  32687. },
  32688. paw: {
  32689. height: math.unit(1.18, "feet"),
  32690. name: "Paw",
  32691. image: {
  32692. source: "./media/characters/guti/paw.svg"
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Normal",
  32699. height: math.unit(9, "feet"),
  32700. default: true
  32701. },
  32702. ]
  32703. ))
  32704. characterMakers.push(() => makeCharacter(
  32705. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32706. {
  32707. side: {
  32708. height: math.unit(5, "meters"),
  32709. name: "Side",
  32710. image: {
  32711. source: "./media/characters/vesper/side.svg",
  32712. extra: 1605/1518,
  32713. bottom: 0/1605
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Small",
  32720. height: math.unit(5, "meters")
  32721. },
  32722. {
  32723. name: "Sage",
  32724. height: math.unit(100, "meters"),
  32725. default: true
  32726. },
  32727. {
  32728. name: "Fun Size",
  32729. height: math.unit(600, "meters")
  32730. },
  32731. {
  32732. name: "Goddess",
  32733. height: math.unit(20000, "km")
  32734. },
  32735. {
  32736. name: "Maximum",
  32737. height: math.unit(5, "galaxies")
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32743. {
  32744. front: {
  32745. height: math.unit(6 + 3/12, "feet"),
  32746. weight: math.unit(190, "lb"),
  32747. name: "Front",
  32748. image: {
  32749. source: "./media/characters/gawain/front.svg",
  32750. extra: 2222/2139,
  32751. bottom: 90/2312
  32752. }
  32753. },
  32754. back: {
  32755. height: math.unit(6 + 3/12, "feet"),
  32756. weight: math.unit(190, "lb"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/gawain/back.svg",
  32760. extra: 2199/2111,
  32761. bottom: 73/2272
  32762. }
  32763. },
  32764. },
  32765. [
  32766. {
  32767. name: "Normal",
  32768. height: math.unit(6 + 3/12, "feet"),
  32769. default: true
  32770. },
  32771. ]
  32772. ))
  32773. characterMakers.push(() => makeCharacter(
  32774. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32775. {
  32776. side: {
  32777. height: math.unit(3.5, "meters"),
  32778. weight: math.unit(16000, "lb"),
  32779. name: "Side",
  32780. image: {
  32781. source: "./media/characters/dascalti/side.svg",
  32782. extra: 392/273,
  32783. bottom: 47/439
  32784. }
  32785. },
  32786. breath: {
  32787. height: math.unit(7.4, "feet"),
  32788. name: "Breath",
  32789. image: {
  32790. source: "./media/characters/dascalti/breath.svg"
  32791. }
  32792. },
  32793. fed: {
  32794. height: math.unit(3.6, "meters"),
  32795. weight: math.unit(16000, "lb"),
  32796. name: "Fed",
  32797. image: {
  32798. source: "./media/characters/dascalti/fed.svg",
  32799. extra: 1419/820,
  32800. bottom: 95/1514
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Normal",
  32807. height: math.unit(3.5, "meters"),
  32808. default: true
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(3 + 5/12, "feet"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/mauve/front.svg",
  32820. extra: 1126/1033,
  32821. bottom: 65/1191
  32822. }
  32823. },
  32824. side: {
  32825. height: math.unit(3 + 5/12, "feet"),
  32826. name: "Side",
  32827. image: {
  32828. source: "./media/characters/mauve/side.svg",
  32829. extra: 1089/1001,
  32830. bottom: 29/1118
  32831. }
  32832. },
  32833. back: {
  32834. height: math.unit(3 + 5/12, "feet"),
  32835. name: "Back",
  32836. image: {
  32837. source: "./media/characters/mauve/back.svg",
  32838. extra: 1173/1053,
  32839. bottom: 109/1282
  32840. }
  32841. },
  32842. },
  32843. [
  32844. {
  32845. name: "Normal",
  32846. height: math.unit(3 + 5/12, "feet"),
  32847. default: true
  32848. },
  32849. ]
  32850. ))
  32851. characterMakers.push(() => makeCharacter(
  32852. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32853. {
  32854. front: {
  32855. height: math.unit(6 + 3/12, "feet"),
  32856. weight: math.unit(430, "lb"),
  32857. name: "Front",
  32858. image: {
  32859. source: "./media/characters/carlos/front.svg",
  32860. extra: 1964/1913,
  32861. bottom: 70/2034
  32862. }
  32863. },
  32864. },
  32865. [
  32866. {
  32867. name: "Normal",
  32868. height: math.unit(6 + 3/12, "feet"),
  32869. default: true
  32870. },
  32871. ]
  32872. ))
  32873. characterMakers.push(() => makeCharacter(
  32874. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32875. {
  32876. back: {
  32877. height: math.unit(5 + 10/12, "feet"),
  32878. weight: math.unit(200, "lb"),
  32879. name: "Back",
  32880. image: {
  32881. source: "./media/characters/jax/back.svg",
  32882. extra: 764/739,
  32883. bottom: 25/789
  32884. }
  32885. },
  32886. },
  32887. [
  32888. {
  32889. name: "Normal",
  32890. height: math.unit(5 + 10/12, "feet"),
  32891. default: true
  32892. },
  32893. ]
  32894. ))
  32895. characterMakers.push(() => makeCharacter(
  32896. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32897. {
  32898. front: {
  32899. height: math.unit(8, "feet"),
  32900. weight: math.unit(250, "lb"),
  32901. name: "Front",
  32902. image: {
  32903. source: "./media/characters/eikthynir/front.svg",
  32904. extra: 1332/1166,
  32905. bottom: 82/1414
  32906. }
  32907. },
  32908. back: {
  32909. height: math.unit(8, "feet"),
  32910. weight: math.unit(250, "lb"),
  32911. name: "Back",
  32912. image: {
  32913. source: "./media/characters/eikthynir/back.svg",
  32914. extra: 1342/1190,
  32915. bottom: 19/1361
  32916. }
  32917. },
  32918. dick: {
  32919. height: math.unit(2.35, "feet"),
  32920. name: "Dick",
  32921. image: {
  32922. source: "./media/characters/eikthynir/dick.svg"
  32923. }
  32924. },
  32925. },
  32926. [
  32927. {
  32928. name: "Normal",
  32929. height: math.unit(8, "feet"),
  32930. default: true
  32931. },
  32932. ]
  32933. ))
  32934. characterMakers.push(() => makeCharacter(
  32935. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32936. {
  32937. front: {
  32938. height: math.unit(99, "meters"),
  32939. weight: math.unit(13000, "tons"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/zlmos/front.svg",
  32943. extra: 2202/1992,
  32944. bottom: 315/2517
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Macro",
  32951. height: math.unit(99, "meters"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(6 + 5/12, "feet"),
  32961. name: "Front",
  32962. image: {
  32963. source: "./media/characters/purri/front.svg",
  32964. extra: 1698/1610,
  32965. bottom: 32/1730
  32966. }
  32967. },
  32968. frontAlt: {
  32969. height: math.unit(6 + 5/12, "feet"),
  32970. name: "Front (Alt)",
  32971. image: {
  32972. source: "./media/characters/purri/front-alt.svg",
  32973. extra: 450/420,
  32974. bottom: 26/476
  32975. }
  32976. },
  32977. boots: {
  32978. height: math.unit(5.5, "feet"),
  32979. name: "Boots",
  32980. image: {
  32981. source: "./media/characters/purri/boots.svg",
  32982. extra: 905/853,
  32983. bottom: 18/923
  32984. }
  32985. },
  32986. lying: {
  32987. height: math.unit(2, "feet"),
  32988. name: "Lying",
  32989. image: {
  32990. source: "./media/characters/purri/lying.svg",
  32991. extra: 940/843,
  32992. bottom: 146/1086
  32993. }
  32994. },
  32995. devious: {
  32996. height: math.unit(1.77, "feet"),
  32997. name: "Devious",
  32998. image: {
  32999. source: "./media/characters/purri/devious.svg",
  33000. extra: 1440/1155,
  33001. bottom: 147/1587
  33002. }
  33003. },
  33004. bean: {
  33005. height: math.unit(1.94, "feet"),
  33006. name: "Bean",
  33007. image: {
  33008. source: "./media/characters/purri/bean.svg"
  33009. }
  33010. },
  33011. },
  33012. [
  33013. {
  33014. name: "Micro",
  33015. height: math.unit(1, "mm")
  33016. },
  33017. {
  33018. name: "Normal",
  33019. height: math.unit(6 + 5/12, "feet"),
  33020. default: true
  33021. },
  33022. {
  33023. name: "Macro :3c",
  33024. height: math.unit(2, "miles")
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33030. {
  33031. front: {
  33032. height: math.unit(6 + 2/12, "feet"),
  33033. weight: math.unit(250, "lb"),
  33034. name: "Front",
  33035. image: {
  33036. source: "./media/characters/moonlight/front.svg",
  33037. extra: 1044/908,
  33038. bottom: 56/1100
  33039. }
  33040. },
  33041. feral: {
  33042. height: math.unit(3 + 1/12, "feet"),
  33043. weight: math.unit(50, "kg"),
  33044. name: "Feral",
  33045. image: {
  33046. source: "./media/characters/moonlight/feral.svg",
  33047. extra: 3705/2791,
  33048. bottom: 145/3850
  33049. }
  33050. },
  33051. paw: {
  33052. height: math.unit(1, "feet"),
  33053. name: "Paw",
  33054. image: {
  33055. source: "./media/characters/moonlight/paw.svg"
  33056. }
  33057. },
  33058. paws: {
  33059. height: math.unit(0.98, "feet"),
  33060. name: "Paws",
  33061. image: {
  33062. source: "./media/characters/moonlight/paws.svg",
  33063. extra: 939/939,
  33064. bottom: 50/989
  33065. }
  33066. },
  33067. mouth: {
  33068. height: math.unit(0.48, "feet"),
  33069. name: "Mouth",
  33070. image: {
  33071. source: "./media/characters/moonlight/mouth.svg"
  33072. }
  33073. },
  33074. dick: {
  33075. height: math.unit(1.46, "feet"),
  33076. name: "Dick",
  33077. image: {
  33078. source: "./media/characters/moonlight/dick.svg"
  33079. }
  33080. },
  33081. },
  33082. [
  33083. {
  33084. name: "Normal",
  33085. height: math.unit(6 + 2/12, "feet"),
  33086. default: true
  33087. },
  33088. {
  33089. name: "Macro",
  33090. height: math.unit(300, "feet")
  33091. },
  33092. {
  33093. name: "Macro+",
  33094. height: math.unit(1, "mile")
  33095. },
  33096. {
  33097. name: "Mt. Moon",
  33098. height: math.unit(5, "miles")
  33099. },
  33100. {
  33101. name: "Megamacro",
  33102. height: math.unit(15, "miles")
  33103. },
  33104. ]
  33105. ))
  33106. characterMakers.push(() => makeCharacter(
  33107. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33108. {
  33109. back: {
  33110. height: math.unit(6, "feet"),
  33111. weight: math.unit(150, "lb"),
  33112. name: "Back",
  33113. image: {
  33114. source: "./media/characters/sylen/back.svg",
  33115. extra: 1335/1273,
  33116. bottom: 107/1442
  33117. }
  33118. },
  33119. },
  33120. [
  33121. {
  33122. name: "Normal",
  33123. height: math.unit(5 + 5/12, "feet")
  33124. },
  33125. {
  33126. name: "Megamacro",
  33127. height: math.unit(3, "miles"),
  33128. default: true
  33129. },
  33130. ]
  33131. ))
  33132. characterMakers.push(() => makeCharacter(
  33133. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33134. {
  33135. front: {
  33136. height: math.unit(6, "feet"),
  33137. weight: math.unit(190, "lb"),
  33138. name: "Front",
  33139. image: {
  33140. source: "./media/characters/huttser/front.svg",
  33141. extra: 1152/1058,
  33142. bottom: 23/1175
  33143. }
  33144. },
  33145. side: {
  33146. height: math.unit(6, "feet"),
  33147. weight: math.unit(190, "lb"),
  33148. name: "Side",
  33149. image: {
  33150. source: "./media/characters/huttser/side.svg",
  33151. extra: 1174/1065,
  33152. bottom: 18/1192
  33153. }
  33154. },
  33155. back: {
  33156. height: math.unit(6, "feet"),
  33157. weight: math.unit(190, "lb"),
  33158. name: "Back",
  33159. image: {
  33160. source: "./media/characters/huttser/back.svg",
  33161. extra: 1158/1056,
  33162. bottom: 12/1170
  33163. }
  33164. },
  33165. },
  33166. [
  33167. ]
  33168. ))
  33169. characterMakers.push(() => makeCharacter(
  33170. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33171. {
  33172. side: {
  33173. height: math.unit(12 + 9/12, "feet"),
  33174. weight: math.unit(15000, "lb"),
  33175. name: "Side",
  33176. image: {
  33177. source: "./media/characters/faan/side.svg",
  33178. extra: 2747/2697,
  33179. bottom: 0/2747
  33180. }
  33181. },
  33182. front: {
  33183. height: math.unit(12 + 9/12, "feet"),
  33184. weight: math.unit(15000, "lb"),
  33185. name: "Front",
  33186. image: {
  33187. source: "./media/characters/faan/front.svg",
  33188. extra: 607/571,
  33189. bottom: 24/631
  33190. }
  33191. },
  33192. head: {
  33193. height: math.unit(2.85, "feet"),
  33194. name: "Head",
  33195. image: {
  33196. source: "./media/characters/faan/head.svg"
  33197. }
  33198. },
  33199. headAlt: {
  33200. height: math.unit(3.13, "feet"),
  33201. name: "Head-alt",
  33202. image: {
  33203. source: "./media/characters/faan/head-alt.svg"
  33204. }
  33205. },
  33206. },
  33207. [
  33208. {
  33209. name: "Normal",
  33210. height: math.unit(12 + 9/12, "feet"),
  33211. default: true
  33212. },
  33213. ]
  33214. ))
  33215. characterMakers.push(() => makeCharacter(
  33216. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33217. {
  33218. front: {
  33219. height: math.unit(6, "feet"),
  33220. weight: math.unit(300, "lb"),
  33221. name: "Front",
  33222. image: {
  33223. source: "./media/characters/tanio/front.svg",
  33224. extra: 711/673,
  33225. bottom: 25/736
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Normal",
  33232. height: math.unit(6, "feet"),
  33233. default: true
  33234. },
  33235. ]
  33236. ))
  33237. characterMakers.push(() => makeCharacter(
  33238. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33239. {
  33240. front: {
  33241. height: math.unit(3, "inches"),
  33242. name: "Front",
  33243. image: {
  33244. source: "./media/characters/noboru/front.svg",
  33245. extra: 1039/932,
  33246. bottom: 18/1057
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Micro",
  33253. height: math.unit(3, "inches"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33260. {
  33261. front: {
  33262. height: math.unit(1.85, "meters"),
  33263. weight: math.unit(80, "kg"),
  33264. name: "Front",
  33265. image: {
  33266. source: "./media/characters/daniel-barrett/front.svg",
  33267. extra: 355/337,
  33268. bottom: 9/364
  33269. }
  33270. },
  33271. },
  33272. [
  33273. {
  33274. name: "Pico",
  33275. height: math.unit(0.0433, "mm")
  33276. },
  33277. {
  33278. name: "Nano",
  33279. height: math.unit(1.5, "mm")
  33280. },
  33281. {
  33282. name: "Micro",
  33283. height: math.unit(5.3, "cm"),
  33284. default: true
  33285. },
  33286. {
  33287. name: "Normal",
  33288. height: math.unit(1.85, "meters")
  33289. },
  33290. {
  33291. name: "Macro",
  33292. height: math.unit(64.7, "meters")
  33293. },
  33294. {
  33295. name: "Megamacro",
  33296. height: math.unit(2.26, "km")
  33297. },
  33298. {
  33299. name: "Gigamacro",
  33300. height: math.unit(79, "km")
  33301. },
  33302. {
  33303. name: "Teramacro",
  33304. height: math.unit(2765, "km")
  33305. },
  33306. {
  33307. name: "Petamacro",
  33308. height: math.unit(96678, "km")
  33309. },
  33310. ]
  33311. ))
  33312. characterMakers.push(() => makeCharacter(
  33313. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33314. {
  33315. front: {
  33316. height: math.unit(30, "meters"),
  33317. weight: math.unit(400, "tons"),
  33318. name: "Front",
  33319. image: {
  33320. source: "./media/characters/zeel/front.svg",
  33321. extra: 2599/2599,
  33322. bottom: 226/2825
  33323. }
  33324. },
  33325. },
  33326. [
  33327. {
  33328. name: "Macro",
  33329. height: math.unit(30, "meters"),
  33330. default: true
  33331. },
  33332. ]
  33333. ))
  33334. characterMakers.push(() => makeCharacter(
  33335. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33336. {
  33337. front: {
  33338. height: math.unit(6 + 7/12, "feet"),
  33339. weight: math.unit(210, "lb"),
  33340. name: "Front",
  33341. image: {
  33342. source: "./media/characters/tarn/front.svg",
  33343. extra: 3517/3220,
  33344. bottom: 91/3608
  33345. }
  33346. },
  33347. back: {
  33348. height: math.unit(6 + 7/12, "feet"),
  33349. weight: math.unit(210, "lb"),
  33350. name: "Back",
  33351. image: {
  33352. source: "./media/characters/tarn/back.svg",
  33353. extra: 3566/3241,
  33354. bottom: 34/3600
  33355. }
  33356. },
  33357. dick: {
  33358. height: math.unit(1.65, "feet"),
  33359. name: "Dick",
  33360. image: {
  33361. source: "./media/characters/tarn/dick.svg"
  33362. }
  33363. },
  33364. paw: {
  33365. height: math.unit(1.80, "feet"),
  33366. name: "Paw",
  33367. image: {
  33368. source: "./media/characters/tarn/paw.svg"
  33369. }
  33370. },
  33371. tongue: {
  33372. height: math.unit(0.97, "feet"),
  33373. name: "Tongue",
  33374. image: {
  33375. source: "./media/characters/tarn/tongue.svg"
  33376. }
  33377. },
  33378. },
  33379. [
  33380. {
  33381. name: "Micro",
  33382. height: math.unit(4, "inches")
  33383. },
  33384. {
  33385. name: "Normal",
  33386. height: math.unit(6 + 7/12, "feet"),
  33387. default: true
  33388. },
  33389. {
  33390. name: "Macro",
  33391. height: math.unit(300, "feet")
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33397. {
  33398. front: {
  33399. height: math.unit(5 + 7/12, "feet"),
  33400. weight: math.unit(80, "kg"),
  33401. name: "Front",
  33402. image: {
  33403. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33404. extra: 3023/2865,
  33405. bottom: 33/3056
  33406. }
  33407. },
  33408. back: {
  33409. height: math.unit(5 + 7/12, "feet"),
  33410. weight: math.unit(80, "kg"),
  33411. name: "Back",
  33412. image: {
  33413. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33414. extra: 3020/2886,
  33415. bottom: 30/3050
  33416. }
  33417. },
  33418. dick: {
  33419. height: math.unit(0.98, "feet"),
  33420. name: "Dick",
  33421. image: {
  33422. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33423. }
  33424. },
  33425. anatomy: {
  33426. height: math.unit(2.86, "feet"),
  33427. name: "Anatomy",
  33428. image: {
  33429. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Really Small",
  33436. height: math.unit(2, "inches")
  33437. },
  33438. {
  33439. name: "Micro",
  33440. height: math.unit(5.583, "inches")
  33441. },
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(5 + 7/12, "feet"),
  33445. default: true
  33446. },
  33447. {
  33448. name: "Macro",
  33449. height: math.unit(67, "feet")
  33450. },
  33451. {
  33452. name: "Megamacro",
  33453. height: math.unit(134, "feet")
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(9, "feet"),
  33462. weight: math.unit(120, "lb"),
  33463. name: "Front",
  33464. image: {
  33465. source: "./media/characters/sally/front.svg",
  33466. extra: 1506/1349,
  33467. bottom: 66/1572
  33468. }
  33469. },
  33470. },
  33471. [
  33472. {
  33473. name: "Normal",
  33474. height: math.unit(9, "feet"),
  33475. default: true
  33476. },
  33477. ]
  33478. ))
  33479. characterMakers.push(() => makeCharacter(
  33480. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33481. {
  33482. front: {
  33483. height: math.unit(8, "feet"),
  33484. weight: math.unit(900, "lb"),
  33485. name: "Front",
  33486. image: {
  33487. source: "./media/characters/owen/front.svg",
  33488. extra: 1761/1657,
  33489. bottom: 74/1835
  33490. }
  33491. },
  33492. side: {
  33493. height: math.unit(8, "feet"),
  33494. weight: math.unit(900, "lb"),
  33495. name: "Side",
  33496. image: {
  33497. source: "./media/characters/owen/side.svg",
  33498. extra: 1797/1734,
  33499. bottom: 30/1827
  33500. }
  33501. },
  33502. back: {
  33503. height: math.unit(8, "feet"),
  33504. weight: math.unit(900, "lb"),
  33505. name: "Back",
  33506. image: {
  33507. source: "./media/characters/owen/back.svg",
  33508. extra: 1796/1706,
  33509. bottom: 59/1855
  33510. }
  33511. },
  33512. maw: {
  33513. height: math.unit(1.76, "feet"),
  33514. name: "Maw",
  33515. image: {
  33516. source: "./media/characters/owen/maw.svg"
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Normal",
  33523. height: math.unit(8, "feet"),
  33524. default: true
  33525. },
  33526. ]
  33527. ))
  33528. characterMakers.push(() => makeCharacter(
  33529. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33530. {
  33531. front: {
  33532. height: math.unit(4, "feet"),
  33533. weight: math.unit(400, "lb"),
  33534. name: "Front",
  33535. image: {
  33536. source: "./media/characters/ryth/front.svg",
  33537. extra: 1920/1748,
  33538. bottom: 42/1962
  33539. }
  33540. },
  33541. back: {
  33542. height: math.unit(4, "feet"),
  33543. weight: math.unit(400, "lb"),
  33544. name: "Back",
  33545. image: {
  33546. source: "./media/characters/ryth/back.svg",
  33547. extra: 1897/1690,
  33548. bottom: 89/1986
  33549. }
  33550. },
  33551. mouth: {
  33552. height: math.unit(1.39, "feet"),
  33553. name: "Mouth",
  33554. image: {
  33555. source: "./media/characters/ryth/mouth.svg"
  33556. }
  33557. },
  33558. tailmaw: {
  33559. height: math.unit(1.23, "feet"),
  33560. name: "Tailmaw",
  33561. image: {
  33562. source: "./media/characters/ryth/tailmaw.svg"
  33563. }
  33564. },
  33565. goia: {
  33566. height: math.unit(4, "meters"),
  33567. weight: math.unit(10800, "lb"),
  33568. name: "Goia",
  33569. image: {
  33570. source: "./media/characters/ryth/goia.svg",
  33571. extra: 745/640,
  33572. bottom: 107/852
  33573. }
  33574. },
  33575. goiaFront: {
  33576. height: math.unit(4, "meters"),
  33577. weight: math.unit(10800, "lb"),
  33578. name: "Goia (Front)",
  33579. image: {
  33580. source: "./media/characters/ryth/goia-front.svg",
  33581. extra: 750/586,
  33582. bottom: 114/864
  33583. }
  33584. },
  33585. goiaMaw: {
  33586. height: math.unit(5.55, "feet"),
  33587. name: "Goia Maw",
  33588. image: {
  33589. source: "./media/characters/ryth/goia-maw.svg"
  33590. }
  33591. },
  33592. goiaForepaw: {
  33593. height: math.unit(3.5, "feet"),
  33594. name: "Goia Forepaw",
  33595. image: {
  33596. source: "./media/characters/ryth/goia-forepaw.svg"
  33597. }
  33598. },
  33599. goiaHindpaw: {
  33600. height: math.unit(5.55, "feet"),
  33601. name: "Goia Hindpaw",
  33602. image: {
  33603. source: "./media/characters/ryth/goia-hindpaw.svg"
  33604. }
  33605. },
  33606. },
  33607. [
  33608. {
  33609. name: "Normal",
  33610. height: math.unit(4, "feet"),
  33611. default: true
  33612. },
  33613. ]
  33614. ))
  33615. characterMakers.push(() => makeCharacter(
  33616. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33617. {
  33618. front: {
  33619. height: math.unit(7, "feet"),
  33620. weight: math.unit(180, "lb"),
  33621. name: "Front",
  33622. image: {
  33623. source: "./media/characters/necrolance/front.svg",
  33624. extra: 1062/947,
  33625. bottom: 41/1103
  33626. }
  33627. },
  33628. back: {
  33629. height: math.unit(7, "feet"),
  33630. weight: math.unit(180, "lb"),
  33631. name: "Back",
  33632. image: {
  33633. source: "./media/characters/necrolance/back.svg",
  33634. extra: 1045/984,
  33635. bottom: 14/1059
  33636. }
  33637. },
  33638. wing: {
  33639. height: math.unit(2.67, "feet"),
  33640. name: "Wing",
  33641. image: {
  33642. source: "./media/characters/necrolance/wing.svg"
  33643. }
  33644. },
  33645. },
  33646. [
  33647. {
  33648. name: "Normal",
  33649. height: math.unit(7, "feet"),
  33650. default: true
  33651. },
  33652. ]
  33653. ))
  33654. characterMakers.push(() => makeCharacter(
  33655. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33656. {
  33657. front: {
  33658. height: math.unit(76, "meters"),
  33659. weight: math.unit(30000, "tons"),
  33660. name: "Front",
  33661. image: {
  33662. source: "./media/characters/tyler/front.svg",
  33663. extra: 1640/1640,
  33664. bottom: 114/1754
  33665. }
  33666. },
  33667. },
  33668. [
  33669. {
  33670. name: "Macro",
  33671. height: math.unit(76, "meters"),
  33672. default: true
  33673. },
  33674. ]
  33675. ))
  33676. characterMakers.push(() => makeCharacter(
  33677. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33678. {
  33679. front: {
  33680. height: math.unit(4 + 11/12, "feet"),
  33681. weight: math.unit(132, "lb"),
  33682. name: "Front",
  33683. image: {
  33684. source: "./media/characters/icey/front.svg",
  33685. extra: 2750/2550,
  33686. bottom: 33/2783
  33687. }
  33688. },
  33689. back: {
  33690. height: math.unit(4 + 11/12, "feet"),
  33691. weight: math.unit(132, "lb"),
  33692. name: "Back",
  33693. image: {
  33694. source: "./media/characters/icey/back.svg",
  33695. extra: 2624/2481,
  33696. bottom: 35/2659
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(4 + 11/12, "feet"),
  33704. default: true
  33705. },
  33706. ]
  33707. ))
  33708. characterMakers.push(() => makeCharacter(
  33709. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33710. {
  33711. front: {
  33712. height: math.unit(100, "feet"),
  33713. weight: math.unit(0, "lb"),
  33714. name: "Front",
  33715. image: {
  33716. source: "./media/characters/smile/front.svg",
  33717. extra: 2983/2912,
  33718. bottom: 162/3145
  33719. }
  33720. },
  33721. back: {
  33722. height: math.unit(100, "feet"),
  33723. weight: math.unit(0, "lb"),
  33724. name: "Back",
  33725. image: {
  33726. source: "./media/characters/smile/back.svg",
  33727. extra: 3143/3031,
  33728. bottom: 91/3234
  33729. }
  33730. },
  33731. head: {
  33732. height: math.unit(26.3, "feet"),
  33733. weight: math.unit(0, "lb"),
  33734. name: "Head",
  33735. image: {
  33736. source: "./media/characters/smile/head.svg"
  33737. }
  33738. },
  33739. collar: {
  33740. height: math.unit(5.3, "feet"),
  33741. weight: math.unit(0, "lb"),
  33742. name: "Collar",
  33743. image: {
  33744. source: "./media/characters/smile/collar.svg"
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Macro",
  33751. height: math.unit(100, "feet"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33758. {
  33759. dragon: {
  33760. height: math.unit(26, "feet"),
  33761. weight: math.unit(36, "tons"),
  33762. name: "Dragon",
  33763. image: {
  33764. source: "./media/characters/arimphae/dragon.svg",
  33765. extra: 1574/983,
  33766. bottom: 357/1931
  33767. }
  33768. },
  33769. drake: {
  33770. height: math.unit(9, "feet"),
  33771. weight: math.unit(1.5, "tons"),
  33772. name: "Drake",
  33773. image: {
  33774. source: "./media/characters/arimphae/drake.svg",
  33775. extra: 1120/925,
  33776. bottom: 435/1555
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Small",
  33783. height: math.unit(26*5/9, "feet")
  33784. },
  33785. {
  33786. name: "Normal",
  33787. height: math.unit(26, "feet"),
  33788. default: true
  33789. },
  33790. ]
  33791. ))
  33792. characterMakers.push(() => makeCharacter(
  33793. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33794. {
  33795. front: {
  33796. height: math.unit(8 + 9/12, "feet"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/xander/front.svg",
  33800. extra: 1237/974,
  33801. bottom: 94/1331
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Normal",
  33808. height: math.unit(8 + 9/12, "feet"),
  33809. default: true
  33810. },
  33811. {
  33812. name: "Gaze Grabber",
  33813. height: math.unit(13 + 8/12, "feet")
  33814. },
  33815. {
  33816. name: "Jaw Dropper",
  33817. height: math.unit(27, "feet")
  33818. },
  33819. {
  33820. name: "Show Stopper",
  33821. height: math.unit(136, "feet")
  33822. },
  33823. {
  33824. name: "Superstar",
  33825. height: math.unit(1.9e6, "miles")
  33826. },
  33827. ]
  33828. ))
  33829. characterMakers.push(() => makeCharacter(
  33830. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33831. {
  33832. side: {
  33833. height: math.unit(2100, "feet"),
  33834. name: "Side",
  33835. image: {
  33836. source: "./media/characters/osiris/side.svg",
  33837. extra: 1105/939,
  33838. bottom: 167/1272
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Macro",
  33845. height: math.unit(2100, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(6 + 8/12, "feet"),
  33855. weight: math.unit(225, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/rhys-londe/front.svg",
  33859. extra: 2258/2141,
  33860. bottom: 188/2446
  33861. }
  33862. },
  33863. back: {
  33864. height: math.unit(6 + 8/12, "feet"),
  33865. weight: math.unit(225, "lb"),
  33866. name: "Back",
  33867. image: {
  33868. source: "./media/characters/rhys-londe/back.svg",
  33869. extra: 2237/2137,
  33870. bottom: 63/2300
  33871. }
  33872. },
  33873. frontNsfw: {
  33874. height: math.unit(6 + 8/12, "feet"),
  33875. weight: math.unit(225, "lb"),
  33876. name: "Front (NSFW)",
  33877. image: {
  33878. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33879. extra: 2258/2141,
  33880. bottom: 188/2446
  33881. }
  33882. },
  33883. backNsfw: {
  33884. height: math.unit(6 + 8/12, "feet"),
  33885. weight: math.unit(225, "lb"),
  33886. name: "Back (NSFW)",
  33887. image: {
  33888. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33889. extra: 2237/2137,
  33890. bottom: 63/2300
  33891. }
  33892. },
  33893. dick: {
  33894. height: math.unit(30, "inches"),
  33895. name: "Dick",
  33896. image: {
  33897. source: "./media/characters/rhys-londe/dick.svg"
  33898. }
  33899. },
  33900. maw: {
  33901. height: math.unit(1.6, "feet"),
  33902. name: "Maw",
  33903. image: {
  33904. source: "./media/characters/rhys-londe/maw.svg"
  33905. }
  33906. },
  33907. },
  33908. [
  33909. {
  33910. name: "Normal",
  33911. height: math.unit(6 + 8/12, "feet"),
  33912. default: true
  33913. },
  33914. ]
  33915. ))
  33916. characterMakers.push(() => makeCharacter(
  33917. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33918. {
  33919. front: {
  33920. height: math.unit(3 + 10/12, "feet"),
  33921. weight: math.unit(90, "lb"),
  33922. name: "Front",
  33923. image: {
  33924. source: "./media/characters/taivas-ensim/front.svg",
  33925. extra: 1327/1216,
  33926. bottom: 96/1423
  33927. }
  33928. },
  33929. back: {
  33930. height: math.unit(3 + 10/12, "feet"),
  33931. weight: math.unit(90, "lb"),
  33932. name: "Back",
  33933. image: {
  33934. source: "./media/characters/taivas-ensim/back.svg",
  33935. extra: 1355/1247,
  33936. bottom: 11/1366
  33937. }
  33938. },
  33939. frontNsfw: {
  33940. height: math.unit(3 + 10/12, "feet"),
  33941. weight: math.unit(90, "lb"),
  33942. name: "Front (NSFW)",
  33943. image: {
  33944. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33945. extra: 1327/1216,
  33946. bottom: 96/1423
  33947. }
  33948. },
  33949. backNsfw: {
  33950. height: math.unit(3 + 10/12, "feet"),
  33951. weight: math.unit(90, "lb"),
  33952. name: "Back (NSFW)",
  33953. image: {
  33954. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33955. extra: 1355/1247,
  33956. bottom: 11/1366
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Normal",
  33963. height: math.unit(3 + 10/12, "feet"),
  33964. default: true
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(9 + 6/12, "feet"),
  33973. weight: math.unit(940, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/byliss/front.svg",
  33977. extra: 1327/1290,
  33978. bottom: 82/1409
  33979. }
  33980. },
  33981. back: {
  33982. height: math.unit(9 + 6/12, "feet"),
  33983. weight: math.unit(940, "lb"),
  33984. name: "Back",
  33985. image: {
  33986. source: "./media/characters/byliss/back.svg",
  33987. extra: 1376/1349,
  33988. bottom: 9/1385
  33989. }
  33990. },
  33991. frontNsfw: {
  33992. height: math.unit(9 + 6/12, "feet"),
  33993. weight: math.unit(940, "lb"),
  33994. name: "Front (NSFW)",
  33995. image: {
  33996. source: "./media/characters/byliss/front-nsfw.svg",
  33997. extra: 1327/1290,
  33998. bottom: 82/1409
  33999. }
  34000. },
  34001. backNsfw: {
  34002. height: math.unit(9 + 6/12, "feet"),
  34003. weight: math.unit(940, "lb"),
  34004. name: "Back (NSFW)",
  34005. image: {
  34006. source: "./media/characters/byliss/back-nsfw.svg",
  34007. extra: 1376/1349,
  34008. bottom: 9/1385
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(9 + 6/12, "feet"),
  34016. default: true
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(5 + 2/12, "feet"),
  34025. weight: math.unit(200, "lb"),
  34026. name: "Front",
  34027. image: {
  34028. source: "./media/characters/noraly/front.svg",
  34029. extra: 4985/4773,
  34030. bottom: 150/5135
  34031. }
  34032. },
  34033. full: {
  34034. height: math.unit(5 + 2/12, "feet"),
  34035. weight: math.unit(164, "lb"),
  34036. name: "Full",
  34037. image: {
  34038. source: "./media/characters/noraly/full.svg",
  34039. extra: 1114/1059,
  34040. bottom: 35/1149
  34041. }
  34042. },
  34043. fuller: {
  34044. height: math.unit(5 + 2/12, "feet"),
  34045. weight: math.unit(230, "lb"),
  34046. name: "Fuller",
  34047. image: {
  34048. source: "./media/characters/noraly/fuller.svg",
  34049. extra: 1114/1059,
  34050. bottom: 35/1149
  34051. }
  34052. },
  34053. fullest: {
  34054. height: math.unit(5 + 2/12, "feet"),
  34055. weight: math.unit(300, "lb"),
  34056. name: "Fullest",
  34057. image: {
  34058. source: "./media/characters/noraly/fullest.svg",
  34059. extra: 1114/1059,
  34060. bottom: 35/1149
  34061. }
  34062. },
  34063. },
  34064. [
  34065. {
  34066. name: "Normal",
  34067. height: math.unit(5 + 2/12, "feet"),
  34068. default: true
  34069. },
  34070. ]
  34071. ))
  34072. characterMakers.push(() => makeCharacter(
  34073. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34074. {
  34075. front: {
  34076. height: math.unit(5 + 2/12, "feet"),
  34077. weight: math.unit(210, "lb"),
  34078. name: "Front",
  34079. image: {
  34080. source: "./media/characters/pera/front.svg",
  34081. extra: 1560/1531,
  34082. bottom: 165/1725
  34083. }
  34084. },
  34085. back: {
  34086. height: math.unit(5 + 2/12, "feet"),
  34087. weight: math.unit(210, "lb"),
  34088. name: "Back",
  34089. image: {
  34090. source: "./media/characters/pera/back.svg",
  34091. extra: 1523/1493,
  34092. bottom: 152/1675
  34093. }
  34094. },
  34095. dick: {
  34096. height: math.unit(2.4, "feet"),
  34097. name: "Dick",
  34098. image: {
  34099. source: "./media/characters/pera/dick.svg"
  34100. }
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Normal",
  34106. height: math.unit(5 + 2/12, "feet"),
  34107. default: true
  34108. },
  34109. ]
  34110. ))
  34111. characterMakers.push(() => makeCharacter(
  34112. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34113. {
  34114. front: {
  34115. height: math.unit(12, "feet"),
  34116. weight: math.unit(3200, "lb"),
  34117. name: "Front",
  34118. image: {
  34119. source: "./media/characters/julian/front.svg",
  34120. extra: 2962/2701,
  34121. bottom: 184/3146
  34122. }
  34123. },
  34124. maw: {
  34125. height: math.unit(5.35, "feet"),
  34126. name: "Maw",
  34127. image: {
  34128. source: "./media/characters/julian/maw.svg"
  34129. }
  34130. },
  34131. paw: {
  34132. height: math.unit(3.07, "feet"),
  34133. name: "Paw",
  34134. image: {
  34135. source: "./media/characters/julian/paw.svg"
  34136. }
  34137. },
  34138. },
  34139. [
  34140. {
  34141. name: "Default",
  34142. height: math.unit(12, "feet"),
  34143. default: true
  34144. },
  34145. {
  34146. name: "Big",
  34147. height: math.unit(50, "feet")
  34148. },
  34149. {
  34150. name: "Really Big",
  34151. height: math.unit(1, "mile")
  34152. },
  34153. {
  34154. name: "Extremely Big",
  34155. height: math.unit(100, "miles")
  34156. },
  34157. {
  34158. name: "Planet Hugger",
  34159. height: math.unit(200, "megameters")
  34160. },
  34161. {
  34162. name: "Unreasonably Big",
  34163. height: math.unit(1e300, "meters")
  34164. },
  34165. ]
  34166. ))
  34167. characterMakers.push(() => makeCharacter(
  34168. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34169. {
  34170. solgooleo: {
  34171. height: math.unit(4, "meters"),
  34172. weight: math.unit(6000*1.5, "kg"),
  34173. volume: math.unit(6000, "liters"),
  34174. name: "Solgooleo",
  34175. image: {
  34176. source: "./media/characters/pi/solgooleo.svg",
  34177. extra: 388/331,
  34178. bottom: 29/417
  34179. }
  34180. },
  34181. },
  34182. [
  34183. {
  34184. name: "Normal",
  34185. height: math.unit(4, "meters"),
  34186. default: true
  34187. },
  34188. ]
  34189. ))
  34190. characterMakers.push(() => makeCharacter(
  34191. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34192. {
  34193. front: {
  34194. height: math.unit(8, "feet"),
  34195. weight: math.unit(4, "tons"),
  34196. name: "Front",
  34197. image: {
  34198. source: "./media/characters/shaun/front.svg",
  34199. extra: 503/495,
  34200. bottom: 20/523
  34201. }
  34202. },
  34203. back: {
  34204. height: math.unit(8, "feet"),
  34205. weight: math.unit(4, "tons"),
  34206. name: "Back",
  34207. image: {
  34208. source: "./media/characters/shaun/back.svg",
  34209. extra: 487/480,
  34210. bottom: 20/507
  34211. }
  34212. },
  34213. },
  34214. [
  34215. {
  34216. name: "Lorg",
  34217. height: math.unit(8, "feet"),
  34218. default: true
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34224. {
  34225. frontAnthro: {
  34226. height: math.unit(7, "feet"),
  34227. name: "Front",
  34228. image: {
  34229. source: "./media/characters/sini/front-anthro.svg",
  34230. extra: 726/678,
  34231. bottom: 35/761
  34232. },
  34233. form: "anthro",
  34234. default: true
  34235. },
  34236. backAnthro: {
  34237. height: math.unit(7, "feet"),
  34238. name: "Back",
  34239. image: {
  34240. source: "./media/characters/sini/back-anthro.svg",
  34241. extra: 743/701,
  34242. bottom: 12/755
  34243. },
  34244. form: "anthro",
  34245. },
  34246. frontAnthroNsfw: {
  34247. height: math.unit(7, "feet"),
  34248. name: "Front (NSFW)",
  34249. image: {
  34250. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34251. extra: 726/678,
  34252. bottom: 35/761
  34253. },
  34254. form: "anthro"
  34255. },
  34256. backAnthroNsfw: {
  34257. height: math.unit(7, "feet"),
  34258. name: "Back (NSFW)",
  34259. image: {
  34260. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34261. extra: 743/701,
  34262. bottom: 12/755
  34263. },
  34264. form: "anthro",
  34265. },
  34266. mawAnthro: {
  34267. height: math.unit(2.14, "feet"),
  34268. name: "Maw",
  34269. image: {
  34270. source: "./media/characters/sini/maw-anthro.svg"
  34271. },
  34272. form: "anthro"
  34273. },
  34274. dick: {
  34275. height: math.unit(1.45, "feet"),
  34276. name: "Dick",
  34277. image: {
  34278. source: "./media/characters/sini/dick-anthro.svg"
  34279. },
  34280. form: "anthro"
  34281. },
  34282. feral: {
  34283. height: math.unit(16, "feet"),
  34284. name: "Feral",
  34285. image: {
  34286. source: "./media/characters/sini/feral.svg",
  34287. extra: 814/605,
  34288. bottom: 11/825
  34289. },
  34290. form: "feral",
  34291. default: true
  34292. },
  34293. feralNsfw: {
  34294. height: math.unit(16, "feet"),
  34295. name: "Feral (NSFW)",
  34296. image: {
  34297. source: "./media/characters/sini/feral-nsfw.svg",
  34298. extra: 814/605,
  34299. bottom: 11/825
  34300. },
  34301. form: "feral"
  34302. },
  34303. mawFeral: {
  34304. height: math.unit(5.66, "feet"),
  34305. name: "Maw",
  34306. image: {
  34307. source: "./media/characters/sini/maw-feral.svg"
  34308. },
  34309. form: "feral",
  34310. },
  34311. pawFeral: {
  34312. height: math.unit(5.17, "feet"),
  34313. name: "Paw",
  34314. image: {
  34315. source: "./media/characters/sini/paw-feral.svg"
  34316. },
  34317. form: "feral",
  34318. },
  34319. rumpFeral: {
  34320. height: math.unit(13.11, "feet"),
  34321. name: "Rump",
  34322. image: {
  34323. source: "./media/characters/sini/rump-feral.svg"
  34324. },
  34325. form: "feral",
  34326. },
  34327. dickFeral: {
  34328. height: math.unit(1, "feet"),
  34329. name: "Dick",
  34330. image: {
  34331. source: "./media/characters/sini/dick-feral.svg"
  34332. },
  34333. form: "feral",
  34334. },
  34335. eyeFeral: {
  34336. height: math.unit(1.23, "feet"),
  34337. name: "Eye",
  34338. image: {
  34339. source: "./media/characters/sini/eye-feral.svg"
  34340. },
  34341. form: "feral",
  34342. },
  34343. },
  34344. [
  34345. {
  34346. name: "Normal",
  34347. height: math.unit(7, "feet"),
  34348. default: true,
  34349. form: "anthro"
  34350. },
  34351. {
  34352. name: "Normal",
  34353. height: math.unit(16, "feet"),
  34354. default: true,
  34355. form: "feral"
  34356. },
  34357. ],
  34358. {
  34359. "anthro": {
  34360. name: "Anthro",
  34361. default: true
  34362. },
  34363. "feral": {
  34364. name: "Feral",
  34365. }
  34366. }
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34370. {
  34371. side: {
  34372. height: math.unit(47.2, "meters"),
  34373. weight: math.unit(10000, "tons"),
  34374. name: "Side",
  34375. image: {
  34376. source: "./media/characters/raylldo/side.svg",
  34377. extra: 2363/642,
  34378. bottom: 221/2584
  34379. }
  34380. },
  34381. top: {
  34382. height: math.unit(240, "meters"),
  34383. weight: math.unit(10000, "tons"),
  34384. name: "Top",
  34385. image: {
  34386. source: "./media/characters/raylldo/top.svg"
  34387. }
  34388. },
  34389. bottom: {
  34390. height: math.unit(240, "meters"),
  34391. weight: math.unit(10000, "tons"),
  34392. name: "Bottom",
  34393. image: {
  34394. source: "./media/characters/raylldo/bottom.svg"
  34395. }
  34396. },
  34397. head: {
  34398. height: math.unit(38.6, "meters"),
  34399. name: "Head",
  34400. image: {
  34401. source: "./media/characters/raylldo/head.svg",
  34402. extra: 1335/1112,
  34403. bottom: 0/1335
  34404. }
  34405. },
  34406. maw: {
  34407. height: math.unit(16.37, "meters"),
  34408. name: "Maw",
  34409. image: {
  34410. source: "./media/characters/raylldo/maw.svg",
  34411. extra: 883/660,
  34412. bottom: 0/883
  34413. },
  34414. extraAttributes: {
  34415. preyCapacity: {
  34416. name: "Capacity",
  34417. power: 3,
  34418. type: "volume",
  34419. base: math.unit(1000, "people")
  34420. },
  34421. tongueSize: {
  34422. name: "Tongue Size",
  34423. power: 2,
  34424. type: "area",
  34425. base: math.unit(21, "m^2")
  34426. }
  34427. }
  34428. },
  34429. forepaw: {
  34430. height: math.unit(18, "meters"),
  34431. name: "Forepaw",
  34432. image: {
  34433. source: "./media/characters/raylldo/forepaw.svg"
  34434. }
  34435. },
  34436. hindpaw: {
  34437. height: math.unit(23, "meters"),
  34438. name: "Hindpaw",
  34439. image: {
  34440. source: "./media/characters/raylldo/hindpaw.svg"
  34441. }
  34442. },
  34443. genitals: {
  34444. height: math.unit(42, "meters"),
  34445. name: "Genitals",
  34446. image: {
  34447. source: "./media/characters/raylldo/genitals.svg"
  34448. }
  34449. },
  34450. },
  34451. [
  34452. {
  34453. name: "Normal",
  34454. height: math.unit(47.2, "meters"),
  34455. default: true
  34456. },
  34457. ]
  34458. ))
  34459. characterMakers.push(() => makeCharacter(
  34460. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34461. {
  34462. anthroFront: {
  34463. height: math.unit(9, "feet"),
  34464. weight: math.unit(600, "lb"),
  34465. name: "Anthro (Front)",
  34466. image: {
  34467. source: "./media/characters/glint/anthro-front.svg",
  34468. extra: 1097/1018,
  34469. bottom: 28/1125
  34470. }
  34471. },
  34472. anthroBack: {
  34473. height: math.unit(9, "feet"),
  34474. weight: math.unit(600, "lb"),
  34475. name: "Anthro (Back)",
  34476. image: {
  34477. source: "./media/characters/glint/anthro-back.svg",
  34478. extra: 1154/997,
  34479. bottom: 36/1190
  34480. }
  34481. },
  34482. feral: {
  34483. height: math.unit(11, "feet"),
  34484. weight: math.unit(50000, "lb"),
  34485. name: "Feral",
  34486. image: {
  34487. source: "./media/characters/glint/feral.svg",
  34488. extra: 3035/1585,
  34489. bottom: 1169/4204
  34490. }
  34491. },
  34492. dickAnthro: {
  34493. height: math.unit(0.7, "meters"),
  34494. name: "Dick (Anthro)",
  34495. image: {
  34496. source: "./media/characters/glint/dick-anthro.svg"
  34497. }
  34498. },
  34499. dickFeral: {
  34500. height: math.unit(2.65, "meters"),
  34501. name: "Dick (Feral)",
  34502. image: {
  34503. source: "./media/characters/glint/dick-feral.svg"
  34504. }
  34505. },
  34506. slitHidden: {
  34507. height: math.unit(5.85, "meters"),
  34508. name: "Slit (Hidden)",
  34509. image: {
  34510. source: "./media/characters/glint/slit-hidden.svg"
  34511. }
  34512. },
  34513. slitErect: {
  34514. height: math.unit(5.85, "meters"),
  34515. name: "Slit (Erect)",
  34516. image: {
  34517. source: "./media/characters/glint/slit-erect.svg"
  34518. }
  34519. },
  34520. mawAnthro: {
  34521. height: math.unit(0.63, "meters"),
  34522. name: "Maw (Anthro)",
  34523. image: {
  34524. source: "./media/characters/glint/maw.svg"
  34525. }
  34526. },
  34527. mawFeral: {
  34528. height: math.unit(2.89, "meters"),
  34529. name: "Maw (Feral)",
  34530. image: {
  34531. source: "./media/characters/glint/maw.svg"
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(9, "feet"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34545. {
  34546. side: {
  34547. height: math.unit(15, "feet"),
  34548. weight: math.unit(5000, "kg"),
  34549. name: "Side",
  34550. image: {
  34551. source: "./media/characters/kairne/side.svg",
  34552. extra: 979/811,
  34553. bottom: 13/992
  34554. }
  34555. },
  34556. front: {
  34557. height: math.unit(15, "feet"),
  34558. weight: math.unit(5000, "kg"),
  34559. name: "Front",
  34560. image: {
  34561. source: "./media/characters/kairne/front.svg",
  34562. extra: 908/814,
  34563. bottom: 26/934
  34564. }
  34565. },
  34566. sideNsfw: {
  34567. height: math.unit(15, "feet"),
  34568. weight: math.unit(5000, "kg"),
  34569. name: "Side (NSFW)",
  34570. image: {
  34571. source: "./media/characters/kairne/side-nsfw.svg",
  34572. extra: 979/811,
  34573. bottom: 13/992
  34574. }
  34575. },
  34576. frontNsfw: {
  34577. height: math.unit(15, "feet"),
  34578. weight: math.unit(5000, "kg"),
  34579. name: "Front (NSFW)",
  34580. image: {
  34581. source: "./media/characters/kairne/front-nsfw.svg",
  34582. extra: 908/814,
  34583. bottom: 26/934
  34584. }
  34585. },
  34586. dickCaged: {
  34587. height: math.unit(0.65, "meters"),
  34588. name: "Dick-caged",
  34589. image: {
  34590. source: "./media/characters/kairne/dick-caged.svg"
  34591. }
  34592. },
  34593. dick: {
  34594. height: math.unit(0.79, "meters"),
  34595. name: "Dick",
  34596. image: {
  34597. source: "./media/characters/kairne/dick.svg"
  34598. }
  34599. },
  34600. genitals: {
  34601. height: math.unit(1.29, "meters"),
  34602. name: "Genitals",
  34603. image: {
  34604. source: "./media/characters/kairne/genitals.svg"
  34605. }
  34606. },
  34607. maw: {
  34608. height: math.unit(1.73, "meters"),
  34609. name: "Maw",
  34610. image: {
  34611. source: "./media/characters/kairne/maw.svg"
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(15, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(5 + 8/12, "feet"),
  34628. weight: math.unit(139, "lb"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/biscuit-jackal/front.svg",
  34632. extra: 2106/1961,
  34633. bottom: 58/2164
  34634. }
  34635. },
  34636. back: {
  34637. height: math.unit(5 + 8/12, "feet"),
  34638. weight: math.unit(139, "lb"),
  34639. name: "Back",
  34640. image: {
  34641. source: "./media/characters/biscuit-jackal/back.svg",
  34642. extra: 2132/1976,
  34643. bottom: 57/2189
  34644. }
  34645. },
  34646. werejackal: {
  34647. height: math.unit(6 + 3/12, "feet"),
  34648. weight: math.unit(188, "lb"),
  34649. name: "Werejackal",
  34650. image: {
  34651. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34652. extra: 2373/2178,
  34653. bottom: 53/2426
  34654. }
  34655. },
  34656. },
  34657. [
  34658. {
  34659. name: "Normal",
  34660. height: math.unit(5 + 8/12, "feet"),
  34661. default: true
  34662. },
  34663. ]
  34664. ))
  34665. characterMakers.push(() => makeCharacter(
  34666. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34667. {
  34668. front: {
  34669. height: math.unit(140, "cm"),
  34670. weight: math.unit(45, "kg"),
  34671. name: "Front",
  34672. image: {
  34673. source: "./media/characters/tayra-white/front.svg",
  34674. extra: 2229/2192,
  34675. bottom: 75/2304
  34676. }
  34677. },
  34678. },
  34679. [
  34680. {
  34681. name: "Normal",
  34682. height: math.unit(140, "cm"),
  34683. default: true
  34684. },
  34685. ]
  34686. ))
  34687. characterMakers.push(() => makeCharacter(
  34688. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34689. {
  34690. front: {
  34691. height: math.unit(4 + 5/12, "feet"),
  34692. name: "Front",
  34693. image: {
  34694. source: "./media/characters/scoop/front.svg",
  34695. extra: 1257/1136,
  34696. bottom: 69/1326
  34697. }
  34698. },
  34699. back: {
  34700. height: math.unit(4 + 5/12, "feet"),
  34701. name: "Back",
  34702. image: {
  34703. source: "./media/characters/scoop/back.svg",
  34704. extra: 1321/1152,
  34705. bottom: 32/1353
  34706. }
  34707. },
  34708. maw: {
  34709. height: math.unit(0.68, "feet"),
  34710. name: "Maw",
  34711. image: {
  34712. source: "./media/characters/scoop/maw.svg"
  34713. }
  34714. },
  34715. },
  34716. [
  34717. {
  34718. name: "Really Small",
  34719. height: math.unit(1, "mm")
  34720. },
  34721. {
  34722. name: "Micro",
  34723. height: math.unit(1, "inch")
  34724. },
  34725. {
  34726. name: "Normal",
  34727. height: math.unit(4 + 5/12, "feet"),
  34728. default: true
  34729. },
  34730. {
  34731. name: "Macro",
  34732. height: math.unit(200, "feet")
  34733. },
  34734. {
  34735. name: "Megamacro",
  34736. height: math.unit(3240, "feet")
  34737. },
  34738. {
  34739. name: "Teramacro",
  34740. height: math.unit(2500, "miles")
  34741. },
  34742. ]
  34743. ))
  34744. characterMakers.push(() => makeCharacter(
  34745. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34746. {
  34747. front: {
  34748. height: math.unit(15 + 7/12, "feet"),
  34749. weight: math.unit(1150, "tons"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/saphinara/front.svg",
  34753. extra: 1837/1643,
  34754. bottom: 84/1921
  34755. },
  34756. form: "normal",
  34757. default: true
  34758. },
  34759. side: {
  34760. height: math.unit(15 + 7/12, "feet"),
  34761. weight: math.unit(1150, "tons"),
  34762. name: "Side",
  34763. image: {
  34764. source: "./media/characters/saphinara/side.svg",
  34765. extra: 605/547,
  34766. bottom: 6/611
  34767. },
  34768. form: "normal"
  34769. },
  34770. back: {
  34771. height: math.unit(15 + 7/12, "feet"),
  34772. weight: math.unit(1150, "tons"),
  34773. name: "Back",
  34774. image: {
  34775. source: "./media/characters/saphinara/back.svg",
  34776. extra: 591/531,
  34777. bottom: 13/604
  34778. },
  34779. form: "normal"
  34780. },
  34781. frontTail: {
  34782. height: math.unit(15 + 7/12, "feet"),
  34783. weight: math.unit(1150, "tons"),
  34784. name: "Front (Full Tail)",
  34785. image: {
  34786. source: "./media/characters/saphinara/front-tail.svg",
  34787. extra: 2256/1630,
  34788. bottom: 261/2517
  34789. },
  34790. form: "normal"
  34791. },
  34792. insides: {
  34793. height: math.unit(11.92, "feet"),
  34794. name: "Insides",
  34795. image: {
  34796. source: "./media/characters/saphinara/insides.svg"
  34797. },
  34798. form: "normal"
  34799. },
  34800. head: {
  34801. height: math.unit(4.17, "feet"),
  34802. name: "Head",
  34803. image: {
  34804. source: "./media/characters/saphinara/head.svg"
  34805. },
  34806. form: "normal"
  34807. },
  34808. tongue: {
  34809. height: math.unit(4.60, "feet"),
  34810. name: "Tongue",
  34811. image: {
  34812. source: "./media/characters/saphinara/tongue.svg"
  34813. },
  34814. form: "normal"
  34815. },
  34816. headEnraged: {
  34817. height: math.unit(5.55, "feet"),
  34818. name: "Head (Enraged)",
  34819. image: {
  34820. source: "./media/characters/saphinara/head-enraged.svg"
  34821. },
  34822. form: "normal"
  34823. },
  34824. wings: {
  34825. height: math.unit(11.95, "feet"),
  34826. name: "Wings",
  34827. image: {
  34828. source: "./media/characters/saphinara/wings.svg"
  34829. },
  34830. form: "normal"
  34831. },
  34832. feathers: {
  34833. height: math.unit(8.92, "feet"),
  34834. name: "Feathers",
  34835. image: {
  34836. source: "./media/characters/saphinara/feathers.svg"
  34837. },
  34838. form: "normal"
  34839. },
  34840. shackles: {
  34841. height: math.unit(2, "feet"),
  34842. name: "Shackles",
  34843. image: {
  34844. source: "./media/characters/saphinara/shackles.svg"
  34845. },
  34846. form: "normal"
  34847. },
  34848. eyes: {
  34849. height: math.unit(1.331, "feet"),
  34850. name: "Eyes",
  34851. image: {
  34852. source: "./media/characters/saphinara/eyes.svg"
  34853. },
  34854. form: "normal"
  34855. },
  34856. eyesEnraged: {
  34857. height: math.unit(1.331, "feet"),
  34858. name: "Eyes (Enraged)",
  34859. image: {
  34860. source: "./media/characters/saphinara/eyes-enraged.svg"
  34861. },
  34862. form: "normal"
  34863. },
  34864. trueFormSide: {
  34865. height: math.unit(200, "feet"),
  34866. weight: math.unit(1e7, "tons"),
  34867. name: "Side",
  34868. image: {
  34869. source: "./media/characters/saphinara/true-form-side.svg",
  34870. extra: 1399/770,
  34871. bottom: 97/1496
  34872. },
  34873. form: "true-form",
  34874. default: true
  34875. },
  34876. trueFormMaw: {
  34877. height: math.unit(71.5, "feet"),
  34878. name: "Maw",
  34879. image: {
  34880. source: "./media/characters/saphinara/true-form-maw.svg",
  34881. extra: 2302/1453,
  34882. bottom: 0/2302
  34883. },
  34884. form: "true-form"
  34885. },
  34886. meowberusSide: {
  34887. height: math.unit(75, "feet"),
  34888. weight: math.unit(180000, "kg"),
  34889. preyCapacity: math.unit(50000, "people"),
  34890. name: "Side",
  34891. image: {
  34892. source: "./media/characters/saphinara/meowberus-side.svg",
  34893. extra: 1400/711,
  34894. bottom: 126/1526
  34895. },
  34896. form: "meowberus",
  34897. extraAttributes: {
  34898. "pawArea": {
  34899. name: "Paw Size",
  34900. power: 2,
  34901. type: "area",
  34902. base: math.unit(35, "m^2")
  34903. }
  34904. }
  34905. },
  34906. },
  34907. [
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(15 + 7/12, "feet"),
  34911. default: true,
  34912. form: "normal"
  34913. },
  34914. {
  34915. name: "Angry",
  34916. height: math.unit(30 + 6/12, "feet"),
  34917. form: "normal"
  34918. },
  34919. {
  34920. name: "Enraged",
  34921. height: math.unit(102 + 1/12, "feet"),
  34922. form: "normal"
  34923. },
  34924. {
  34925. name: "True",
  34926. height: math.unit(200, "feet"),
  34927. default: true,
  34928. form: "true-form"
  34929. },
  34930. {
  34931. name: "Normal",
  34932. height: math.unit(75, "feet"),
  34933. default: true,
  34934. form: "meowberus"
  34935. },
  34936. ],
  34937. {
  34938. "normal": {
  34939. name: "Normal",
  34940. default: true
  34941. },
  34942. "true-form": {
  34943. name: "True Form"
  34944. },
  34945. "meowberus": {
  34946. name: "Meowberus",
  34947. },
  34948. }
  34949. ))
  34950. characterMakers.push(() => makeCharacter(
  34951. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34952. {
  34953. front: {
  34954. height: math.unit(6 + 8/12, "feet"),
  34955. weight: math.unit(300, "lb"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/jrain/front.svg",
  34959. extra: 3039/2865,
  34960. bottom: 399/3438
  34961. }
  34962. },
  34963. back: {
  34964. height: math.unit(6 + 8/12, "feet"),
  34965. weight: math.unit(300, "lb"),
  34966. name: "Back",
  34967. image: {
  34968. source: "./media/characters/jrain/back.svg",
  34969. extra: 3089/2938,
  34970. bottom: 172/3261
  34971. }
  34972. },
  34973. head: {
  34974. height: math.unit(2.14, "feet"),
  34975. name: "Head",
  34976. image: {
  34977. source: "./media/characters/jrain/head.svg"
  34978. }
  34979. },
  34980. maw: {
  34981. height: math.unit(1.77, "feet"),
  34982. name: "Maw",
  34983. image: {
  34984. source: "./media/characters/jrain/maw.svg"
  34985. }
  34986. },
  34987. leftHand: {
  34988. height: math.unit(1.1, "feet"),
  34989. name: "Left Hand",
  34990. image: {
  34991. source: "./media/characters/jrain/left-hand.svg"
  34992. }
  34993. },
  34994. rightHand: {
  34995. height: math.unit(1.1, "feet"),
  34996. name: "Right Hand",
  34997. image: {
  34998. source: "./media/characters/jrain/right-hand.svg"
  34999. }
  35000. },
  35001. eye: {
  35002. height: math.unit(0.35, "feet"),
  35003. name: "Eye",
  35004. image: {
  35005. source: "./media/characters/jrain/eye.svg"
  35006. }
  35007. },
  35008. },
  35009. [
  35010. {
  35011. name: "Normal",
  35012. height: math.unit(6 + 8/12, "feet"),
  35013. default: true
  35014. },
  35015. {
  35016. name: "Casually Large",
  35017. height: math.unit(25, "feet")
  35018. },
  35019. {
  35020. name: "Giant",
  35021. height: math.unit(100, "feet")
  35022. },
  35023. {
  35024. name: "Kaiju",
  35025. height: math.unit(300, "feet")
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35031. {
  35032. dragon: {
  35033. height: math.unit(5, "meters"),
  35034. name: "Dragon",
  35035. image: {
  35036. source: "./media/characters/sabrina/dragon.svg",
  35037. extra: 3670 / 2365,
  35038. bottom: 333 / 4003
  35039. }
  35040. },
  35041. gryphon: {
  35042. height: math.unit(3, "meters"),
  35043. name: "Gryphon",
  35044. image: {
  35045. source: "./media/characters/sabrina/gryphon.svg",
  35046. extra: 1576 / 945,
  35047. bottom: 71 / 1647
  35048. }
  35049. },
  35050. snake: {
  35051. height: math.unit(12, "meters"),
  35052. name: "Snake",
  35053. image: {
  35054. source: "./media/characters/sabrina/snake.svg",
  35055. extra: 1758 / 1320,
  35056. bottom: 186 / 1944
  35057. }
  35058. },
  35059. collar: {
  35060. height: math.unit(1.86, "meters"),
  35061. name: "Collar",
  35062. image: {
  35063. source: "./media/characters/sabrina/collar.svg"
  35064. }
  35065. },
  35066. eye: {
  35067. height: math.unit(0.53, "meters"),
  35068. name: "Eye",
  35069. image: {
  35070. source: "./media/characters/sabrina/eye.svg"
  35071. }
  35072. },
  35073. foot: {
  35074. height: math.unit(1.86, "meters"),
  35075. name: "Foot",
  35076. image: {
  35077. source: "./media/characters/sabrina/foot.svg"
  35078. }
  35079. },
  35080. hand: {
  35081. height: math.unit(1.32, "meters"),
  35082. name: "Hand",
  35083. image: {
  35084. source: "./media/characters/sabrina/hand.svg"
  35085. }
  35086. },
  35087. head: {
  35088. height: math.unit(2.44, "meters"),
  35089. name: "Head",
  35090. image: {
  35091. source: "./media/characters/sabrina/head.svg"
  35092. }
  35093. },
  35094. headAngry: {
  35095. height: math.unit(2.44, "meters"),
  35096. name: "Head (Angry))",
  35097. image: {
  35098. source: "./media/characters/sabrina/head-angry.svg"
  35099. }
  35100. },
  35101. maw: {
  35102. height: math.unit(1.65, "meters"),
  35103. name: "Maw",
  35104. image: {
  35105. source: "./media/characters/sabrina/maw.svg"
  35106. }
  35107. },
  35108. spikes: {
  35109. height: math.unit(1.69, "meters"),
  35110. name: "Spikes",
  35111. image: {
  35112. source: "./media/characters/sabrina/spikes.svg"
  35113. }
  35114. },
  35115. stomach: {
  35116. height: math.unit(1.15, "meters"),
  35117. name: "Stomach",
  35118. image: {
  35119. source: "./media/characters/sabrina/stomach.svg"
  35120. }
  35121. },
  35122. tongue: {
  35123. height: math.unit(1.27, "meters"),
  35124. name: "Tongue",
  35125. image: {
  35126. source: "./media/characters/sabrina/tongue.svg"
  35127. }
  35128. },
  35129. wingDorsal: {
  35130. height: math.unit(4.85, "meters"),
  35131. name: "Wing (Dorsal)",
  35132. image: {
  35133. source: "./media/characters/sabrina/wing-dorsal.svg"
  35134. }
  35135. },
  35136. wingVentral: {
  35137. height: math.unit(4.85, "meters"),
  35138. name: "Wing (Ventral)",
  35139. image: {
  35140. source: "./media/characters/sabrina/wing-ventral.svg"
  35141. }
  35142. },
  35143. },
  35144. [
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(5, "meters"),
  35148. default: true
  35149. },
  35150. ]
  35151. ))
  35152. characterMakers.push(() => makeCharacter(
  35153. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35154. {
  35155. frontMaid: {
  35156. height: math.unit(5 + 5/12, "feet"),
  35157. weight: math.unit(130, "lb"),
  35158. name: "Front (Maid)",
  35159. image: {
  35160. source: "./media/characters/midnight-tales/front-maid.svg",
  35161. extra: 489/454,
  35162. bottom: 61/550
  35163. }
  35164. },
  35165. frontFormal: {
  35166. height: math.unit(5 + 5/12, "feet"),
  35167. weight: math.unit(130, "lb"),
  35168. name: "Front (Formal)",
  35169. image: {
  35170. source: "./media/characters/midnight-tales/front-formal.svg",
  35171. extra: 489/454,
  35172. bottom: 61/550
  35173. }
  35174. },
  35175. back: {
  35176. height: math.unit(5 + 5/12, "feet"),
  35177. weight: math.unit(130, "lb"),
  35178. name: "Back",
  35179. image: {
  35180. source: "./media/characters/midnight-tales/back.svg",
  35181. extra: 498/456,
  35182. bottom: 33/531
  35183. }
  35184. },
  35185. frontBeast: {
  35186. height: math.unit(40, "feet"),
  35187. weight: math.unit(64000, "lb"),
  35188. name: "Front (Beast)",
  35189. image: {
  35190. source: "./media/characters/midnight-tales/front-beast.svg",
  35191. extra: 927/860,
  35192. bottom: 53/980
  35193. }
  35194. },
  35195. backBeast: {
  35196. height: math.unit(40, "feet"),
  35197. weight: math.unit(64000, "lb"),
  35198. name: "Back (Beast)",
  35199. image: {
  35200. source: "./media/characters/midnight-tales/back-beast.svg",
  35201. extra: 929/855,
  35202. bottom: 16/945
  35203. }
  35204. },
  35205. footBeast: {
  35206. height: math.unit(6.7, "feet"),
  35207. name: "Foot (Beast)",
  35208. image: {
  35209. source: "./media/characters/midnight-tales/foot-beast.svg"
  35210. }
  35211. },
  35212. headBeast: {
  35213. height: math.unit(8, "feet"),
  35214. name: "Head (Beast)",
  35215. image: {
  35216. source: "./media/characters/midnight-tales/head-beast.svg"
  35217. }
  35218. },
  35219. },
  35220. [
  35221. {
  35222. name: "Normal",
  35223. height: math.unit(5 + 5 / 12, "feet"),
  35224. default: true
  35225. },
  35226. {
  35227. name: "Macro",
  35228. height: math.unit(25, "feet")
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35234. {
  35235. front: {
  35236. height: math.unit(5 + 10/12, "feet"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/argon/front.svg",
  35240. extra: 2009/1935,
  35241. bottom: 118/2127
  35242. }
  35243. },
  35244. back: {
  35245. height: math.unit(5 + 10/12, "feet"),
  35246. name: "Back",
  35247. image: {
  35248. source: "./media/characters/argon/back.svg",
  35249. extra: 2047/1992,
  35250. bottom: 20/2067
  35251. }
  35252. },
  35253. frontDressed: {
  35254. height: math.unit(5 + 10/12, "feet"),
  35255. name: "Front (Dressed)",
  35256. image: {
  35257. source: "./media/characters/argon/front-dressed.svg",
  35258. extra: 2009/1935,
  35259. bottom: 118/2127
  35260. }
  35261. },
  35262. },
  35263. [
  35264. {
  35265. name: "Normal",
  35266. height: math.unit(5 + 10/12, "feet"),
  35267. default: true
  35268. },
  35269. ]
  35270. ))
  35271. characterMakers.push(() => makeCharacter(
  35272. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35273. {
  35274. front: {
  35275. height: math.unit(8 + 6/12, "feet"),
  35276. weight: math.unit(1150, "lb"),
  35277. name: "Front",
  35278. image: {
  35279. source: "./media/characters/kichi/front.svg",
  35280. extra: 1267/1164,
  35281. bottom: 61/1328
  35282. }
  35283. },
  35284. back: {
  35285. height: math.unit(8 + 6/12, "feet"),
  35286. weight: math.unit(1150, "lb"),
  35287. name: "Back",
  35288. image: {
  35289. source: "./media/characters/kichi/back.svg",
  35290. extra: 1273/1166,
  35291. bottom: 33/1306
  35292. }
  35293. },
  35294. },
  35295. [
  35296. {
  35297. name: "Normal",
  35298. height: math.unit(8 + 6/12, "feet"),
  35299. default: true
  35300. },
  35301. ]
  35302. ))
  35303. characterMakers.push(() => makeCharacter(
  35304. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35305. {
  35306. front: {
  35307. height: math.unit(6, "feet"),
  35308. weight: math.unit(210, "lb"),
  35309. name: "Front",
  35310. image: {
  35311. source: "./media/characters/manetel-greyscale/front.svg",
  35312. extra: 350/312,
  35313. bottom: 8/358
  35314. }
  35315. },
  35316. },
  35317. [
  35318. {
  35319. name: "Micro",
  35320. height: math.unit(2, "inches")
  35321. },
  35322. {
  35323. name: "Normal",
  35324. height: math.unit(6, "feet"),
  35325. default: true
  35326. },
  35327. {
  35328. name: "Minimacro",
  35329. height: math.unit(17, "feet")
  35330. },
  35331. {
  35332. name: "Macro",
  35333. height: math.unit(117, "feet")
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35339. {
  35340. side: {
  35341. height: math.unit(5 + 1/12, "feet"),
  35342. weight: math.unit(418, "lb"),
  35343. name: "Side",
  35344. image: {
  35345. source: "./media/characters/softpurr/side.svg",
  35346. extra: 1993/1945,
  35347. bottom: 134/2127
  35348. }
  35349. },
  35350. front: {
  35351. height: math.unit(5 + 1/12, "feet"),
  35352. weight: math.unit(418, "lb"),
  35353. name: "Front",
  35354. image: {
  35355. source: "./media/characters/softpurr/front.svg",
  35356. extra: 1950/1856,
  35357. bottom: 174/2124
  35358. }
  35359. },
  35360. paw: {
  35361. height: math.unit(1, "feet"),
  35362. name: "Paw",
  35363. image: {
  35364. source: "./media/characters/softpurr/paw.svg"
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Normal",
  35371. height: math.unit(5 + 1/12, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(260, "meters"),
  35381. name: "Front",
  35382. image: {
  35383. source: "./media/characters/anahita/front.svg",
  35384. extra: 665/635,
  35385. bottom: 89/754
  35386. }
  35387. },
  35388. },
  35389. [
  35390. {
  35391. name: "Macro",
  35392. height: math.unit(260, "meters"),
  35393. default: true
  35394. },
  35395. ]
  35396. ))
  35397. characterMakers.push(() => makeCharacter(
  35398. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35399. {
  35400. front: {
  35401. height: math.unit(4 + 10/12, "feet"),
  35402. weight: math.unit(160, "lb"),
  35403. name: "Front",
  35404. image: {
  35405. source: "./media/characters/chip-mouse/front.svg",
  35406. extra: 3528/3408,
  35407. bottom: 0/3528
  35408. }
  35409. },
  35410. frontNsfw: {
  35411. height: math.unit(4 + 10/12, "feet"),
  35412. weight: math.unit(160, "lb"),
  35413. name: "Front (NSFW)",
  35414. image: {
  35415. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35416. extra: 3528/3408,
  35417. bottom: 0/3528
  35418. }
  35419. },
  35420. },
  35421. [
  35422. {
  35423. name: "Normal",
  35424. height: math.unit(4 + 10/12, "feet"),
  35425. default: true
  35426. },
  35427. ]
  35428. ))
  35429. characterMakers.push(() => makeCharacter(
  35430. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35431. {
  35432. side: {
  35433. height: math.unit(10, "feet"),
  35434. weight: math.unit(14000, "lb"),
  35435. name: "Side",
  35436. image: {
  35437. source: "./media/characters/kremm/side.svg",
  35438. extra: 1390/1053,
  35439. bottom: 90/1480
  35440. }
  35441. },
  35442. gut: {
  35443. height: math.unit(5.8, "feet"),
  35444. name: "Gut",
  35445. image: {
  35446. source: "./media/characters/kremm/gut.svg"
  35447. }
  35448. },
  35449. ass: {
  35450. height: math.unit(6.1, "feet"),
  35451. name: "Ass",
  35452. image: {
  35453. source: "./media/characters/kremm/ass.svg"
  35454. }
  35455. },
  35456. jaws: {
  35457. height: math.unit(2.2, "feet"),
  35458. name: "Jaws",
  35459. image: {
  35460. source: "./media/characters/kremm/jaws.svg"
  35461. }
  35462. },
  35463. dick: {
  35464. height: math.unit(4.26, "feet"),
  35465. name: "Dick",
  35466. image: {
  35467. source: "./media/characters/kremm/dick.svg"
  35468. }
  35469. },
  35470. },
  35471. [
  35472. {
  35473. name: "Normal",
  35474. height: math.unit(10, "feet"),
  35475. default: true
  35476. },
  35477. ]
  35478. ))
  35479. characterMakers.push(() => makeCharacter(
  35480. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35481. {
  35482. front: {
  35483. height: math.unit(30, "stories"),
  35484. name: "Front",
  35485. image: {
  35486. source: "./media/characters/kai/front.svg",
  35487. extra: 1892/1718,
  35488. bottom: 162/2054
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Macro",
  35495. height: math.unit(30, "stories"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35502. {
  35503. front: {
  35504. height: math.unit(6 + 4/12, "feet"),
  35505. weight: math.unit(145, "lb"),
  35506. name: "Front",
  35507. image: {
  35508. source: "./media/characters/sykes/front.svg",
  35509. extra: 1321 / 1187,
  35510. bottom: 66 / 1387
  35511. }
  35512. },
  35513. back: {
  35514. height: math.unit(6 + 4/12, "feet"),
  35515. weight: math.unit(145, "lb"),
  35516. name: "Back",
  35517. image: {
  35518. source: "./media/characters/sykes/back.svg",
  35519. extra: 1326/1181,
  35520. bottom: 31/1357
  35521. }
  35522. },
  35523. traditionalOutfit: {
  35524. height: math.unit(6 + 4/12, "feet"),
  35525. weight: math.unit(145, "lb"),
  35526. name: "Traditional Outfit",
  35527. image: {
  35528. source: "./media/characters/sykes/traditional-outfit.svg",
  35529. extra: 1321 / 1187,
  35530. bottom: 66 / 1387
  35531. }
  35532. },
  35533. adventureOutfit: {
  35534. height: math.unit(6 + 4/12, "feet"),
  35535. weight: math.unit(145, "lb"),
  35536. name: "Adventure Outfit",
  35537. image: {
  35538. source: "./media/characters/sykes/adventure-outfit.svg",
  35539. extra: 1321 / 1187,
  35540. bottom: 66 / 1387
  35541. }
  35542. },
  35543. handLeft: {
  35544. height: math.unit(0.9, "feet"),
  35545. name: "Hand (Left)",
  35546. image: {
  35547. source: "./media/characters/sykes/hand-left.svg"
  35548. }
  35549. },
  35550. handRight: {
  35551. height: math.unit(0.839, "feet"),
  35552. name: "Hand (Right)",
  35553. image: {
  35554. source: "./media/characters/sykes/hand-right.svg"
  35555. }
  35556. },
  35557. leftFoot: {
  35558. height: math.unit(1.2, "feet"),
  35559. name: "Foot (Left)",
  35560. image: {
  35561. source: "./media/characters/sykes/foot-left.svg"
  35562. }
  35563. },
  35564. rightFoot: {
  35565. height: math.unit(1.2, "feet"),
  35566. name: "Foot (Right)",
  35567. image: {
  35568. source: "./media/characters/sykes/foot-right.svg"
  35569. }
  35570. },
  35571. maw: {
  35572. height: math.unit(1.93, "feet"),
  35573. name: "Maw",
  35574. image: {
  35575. source: "./media/characters/sykes/maw.svg"
  35576. }
  35577. },
  35578. teeth: {
  35579. height: math.unit(0.51, "feet"),
  35580. name: "Teeth",
  35581. image: {
  35582. source: "./media/characters/sykes/teeth.svg"
  35583. }
  35584. },
  35585. tongue: {
  35586. height: math.unit(2.13, "feet"),
  35587. name: "Tongue",
  35588. image: {
  35589. source: "./media/characters/sykes/tongue.svg"
  35590. }
  35591. },
  35592. uvula: {
  35593. height: math.unit(0.16, "feet"),
  35594. name: "Uvula",
  35595. image: {
  35596. source: "./media/characters/sykes/uvula.svg"
  35597. }
  35598. },
  35599. collar: {
  35600. height: math.unit(0.287, "feet"),
  35601. name: "Collar",
  35602. image: {
  35603. source: "./media/characters/sykes/collar.svg"
  35604. }
  35605. },
  35606. tail: {
  35607. height: math.unit(3.8, "feet"),
  35608. name: "Tail",
  35609. image: {
  35610. source: "./media/characters/sykes/tail.svg"
  35611. }
  35612. },
  35613. },
  35614. [
  35615. {
  35616. name: "Shrunken",
  35617. height: math.unit(5, "inches")
  35618. },
  35619. {
  35620. name: "Normal",
  35621. height: math.unit(6 + 4 / 12, "feet"),
  35622. default: true
  35623. },
  35624. {
  35625. name: "Big",
  35626. height: math.unit(15, "feet")
  35627. },
  35628. ]
  35629. ))
  35630. characterMakers.push(() => makeCharacter(
  35631. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35632. {
  35633. front: {
  35634. height: math.unit(5 + 8/12, "feet"),
  35635. weight: math.unit(190, "lb"),
  35636. name: "Front",
  35637. image: {
  35638. source: "./media/characters/oven-otter/front.svg",
  35639. extra: 1809/1740,
  35640. bottom: 181/1990
  35641. }
  35642. },
  35643. back: {
  35644. height: math.unit(5 + 8/12, "feet"),
  35645. weight: math.unit(190, "lb"),
  35646. name: "Back",
  35647. image: {
  35648. source: "./media/characters/oven-otter/back.svg",
  35649. extra: 1709/1635,
  35650. bottom: 118/1827
  35651. }
  35652. },
  35653. hand: {
  35654. height: math.unit(1.07, "feet"),
  35655. name: "Hand",
  35656. image: {
  35657. source: "./media/characters/oven-otter/hand.svg"
  35658. }
  35659. },
  35660. beans: {
  35661. height: math.unit(1.74, "feet"),
  35662. name: "Beans",
  35663. image: {
  35664. source: "./media/characters/oven-otter/beans.svg"
  35665. }
  35666. },
  35667. },
  35668. [
  35669. {
  35670. name: "Micro",
  35671. height: math.unit(0.5, "inches")
  35672. },
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(5 + 8/12, "feet"),
  35676. default: true
  35677. },
  35678. {
  35679. name: "Macro",
  35680. height: math.unit(250, "feet")
  35681. },
  35682. {
  35683. name: "Really High",
  35684. height: math.unit(420, "feet")
  35685. },
  35686. ]
  35687. ))
  35688. characterMakers.push(() => makeCharacter(
  35689. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35690. {
  35691. front: {
  35692. height: math.unit(5, "meters"),
  35693. weight: math.unit(292000000000000, "kg"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/devourer/front.svg",
  35697. extra: 1800/1733,
  35698. bottom: 211/2011
  35699. }
  35700. },
  35701. maw: {
  35702. height: math.unit(1.1, "meter"),
  35703. name: "Maw",
  35704. image: {
  35705. source: "./media/characters/devourer/maw.svg"
  35706. }
  35707. },
  35708. },
  35709. [
  35710. {
  35711. name: "Small",
  35712. height: math.unit(3, "meters")
  35713. },
  35714. {
  35715. name: "Large",
  35716. height: math.unit(5, "meters"),
  35717. default: true
  35718. },
  35719. ]
  35720. ))
  35721. characterMakers.push(() => makeCharacter(
  35722. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35723. {
  35724. front: {
  35725. height: math.unit(6, "feet"),
  35726. weight: math.unit(400, "lb"),
  35727. name: "Front",
  35728. image: {
  35729. source: "./media/characters/ellarby/front.svg",
  35730. extra: 1909/1763,
  35731. bottom: 80/1989
  35732. }
  35733. },
  35734. back: {
  35735. height: math.unit(6, "feet"),
  35736. weight: math.unit(400, "lb"),
  35737. name: "Back",
  35738. image: {
  35739. source: "./media/characters/ellarby/back.svg",
  35740. extra: 1914/1784,
  35741. bottom: 172/2086
  35742. }
  35743. },
  35744. },
  35745. [
  35746. {
  35747. name: "Mischief",
  35748. height: math.unit(18, "inches")
  35749. },
  35750. {
  35751. name: "Trouble",
  35752. height: math.unit(12, "feet")
  35753. },
  35754. {
  35755. name: "Havoc",
  35756. height: math.unit(200, "feet"),
  35757. default: true
  35758. },
  35759. {
  35760. name: "Pandemonium",
  35761. height: math.unit(1, "mile")
  35762. },
  35763. {
  35764. name: "Catastrophe",
  35765. height: math.unit(100, "miles")
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35771. {
  35772. front: {
  35773. height: math.unit(4.7, "meters"),
  35774. weight: math.unit(6500, "kg"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/vex/front.svg",
  35778. extra: 1288/1140,
  35779. bottom: 100/1388
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(4.7, "meters"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35793. {
  35794. normal: {
  35795. height: math.unit(6, "feet"),
  35796. weight: math.unit(350, "lb"),
  35797. name: "Normal",
  35798. image: {
  35799. source: "./media/characters/teshy/normal.svg",
  35800. extra: 1795/1735,
  35801. bottom: 16/1811
  35802. }
  35803. },
  35804. monsterFront: {
  35805. height: math.unit(12, "feet"),
  35806. weight: math.unit(4700, "lb"),
  35807. name: "Monster (Front)",
  35808. image: {
  35809. source: "./media/characters/teshy/monster-front.svg",
  35810. extra: 2042/2034,
  35811. bottom: 128/2170
  35812. }
  35813. },
  35814. monsterSide: {
  35815. height: math.unit(12, "feet"),
  35816. weight: math.unit(4700, "lb"),
  35817. name: "Monster (Side)",
  35818. image: {
  35819. source: "./media/characters/teshy/monster-side.svg",
  35820. extra: 2067/2056,
  35821. bottom: 70/2137
  35822. }
  35823. },
  35824. monsterBack: {
  35825. height: math.unit(12, "feet"),
  35826. weight: math.unit(4700, "lb"),
  35827. name: "Monster (Back)",
  35828. image: {
  35829. source: "./media/characters/teshy/monster-back.svg",
  35830. extra: 1921/1914,
  35831. bottom: 171/2092
  35832. }
  35833. },
  35834. },
  35835. [
  35836. {
  35837. name: "Normal",
  35838. height: math.unit(6, "feet"),
  35839. default: true
  35840. },
  35841. ]
  35842. ))
  35843. characterMakers.push(() => makeCharacter(
  35844. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35845. {
  35846. front: {
  35847. height: math.unit(6, "feet"),
  35848. name: "Front",
  35849. image: {
  35850. source: "./media/characters/ramey/front.svg",
  35851. extra: 790/787,
  35852. bottom: 27/817
  35853. }
  35854. },
  35855. },
  35856. [
  35857. {
  35858. name: "Normal",
  35859. height: math.unit(6, "feet"),
  35860. default: true
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(5 + 5/12, "feet"),
  35869. weight: math.unit(120, "lb"),
  35870. name: "Front",
  35871. image: {
  35872. source: "./media/characters/phirae/front.svg",
  35873. extra: 2491/2436,
  35874. bottom: 38/2529
  35875. }
  35876. },
  35877. },
  35878. [
  35879. {
  35880. name: "Normal",
  35881. height: math.unit(5 + 5/12, "feet"),
  35882. default: true
  35883. },
  35884. ]
  35885. ))
  35886. characterMakers.push(() => makeCharacter(
  35887. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35888. {
  35889. front: {
  35890. height: math.unit(5 + 3/12, "feet"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/stagglas/front.svg",
  35894. extra: 962/882,
  35895. bottom: 53/1015
  35896. }
  35897. },
  35898. feral: {
  35899. height: math.unit(335, "cm"),
  35900. name: "Feral",
  35901. image: {
  35902. source: "./media/characters/stagglas/feral.svg",
  35903. extra: 1732/1090,
  35904. bottom: 48/1780
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(5 + 3/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(5 + 4/12, "feet"),
  35921. weight: math.unit(145, "lb"),
  35922. name: "Front",
  35923. image: {
  35924. source: "./media/characters/starra/front.svg",
  35925. extra: 1790/1691,
  35926. bottom: 91/1881
  35927. }
  35928. },
  35929. },
  35930. [
  35931. {
  35932. name: "Normal",
  35933. height: math.unit(5 + 4/12, "feet"),
  35934. default: true
  35935. },
  35936. ]
  35937. ))
  35938. characterMakers.push(() => makeCharacter(
  35939. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35940. {
  35941. front: {
  35942. height: math.unit(2.2, "meters"),
  35943. name: "Front",
  35944. image: {
  35945. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35946. extra: 1194/1005,
  35947. bottom: 25/1219
  35948. }
  35949. },
  35950. },
  35951. [
  35952. {
  35953. name: "Normal",
  35954. height: math.unit(2.2, "meters"),
  35955. default: true
  35956. },
  35957. ]
  35958. ))
  35959. characterMakers.push(() => makeCharacter(
  35960. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35961. {
  35962. side: {
  35963. height: math.unit(8 + 2/12, "feet"),
  35964. weight: math.unit(1240, "lb"),
  35965. name: "Side",
  35966. image: {
  35967. source: "./media/characters/mika-valentine/side.svg",
  35968. extra: 2670/2501,
  35969. bottom: 250/2920
  35970. }
  35971. },
  35972. },
  35973. [
  35974. {
  35975. name: "Normal",
  35976. height: math.unit(8 + 2/12, "feet"),
  35977. default: true
  35978. },
  35979. ]
  35980. ))
  35981. characterMakers.push(() => makeCharacter(
  35982. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35983. {
  35984. front: {
  35985. height: math.unit(7 + 2/12, "feet"),
  35986. name: "Front",
  35987. image: {
  35988. source: "./media/characters/xoltol/front.svg",
  35989. extra: 2212/2124,
  35990. bottom: 84/2296
  35991. }
  35992. },
  35993. side: {
  35994. height: math.unit(7 + 2/12, "feet"),
  35995. name: "Side",
  35996. image: {
  35997. source: "./media/characters/xoltol/side.svg",
  35998. extra: 2273/2197,
  35999. bottom: 26/2299
  36000. }
  36001. },
  36002. hand: {
  36003. height: math.unit(2.5, "feet"),
  36004. name: "Hand",
  36005. image: {
  36006. source: "./media/characters/xoltol/hand.svg"
  36007. }
  36008. },
  36009. },
  36010. [
  36011. {
  36012. name: "Small-ish",
  36013. height: math.unit(5 + 11/12, "feet")
  36014. },
  36015. {
  36016. name: "Normal",
  36017. height: math.unit(7 + 2/12, "feet")
  36018. },
  36019. {
  36020. name: "\"Macro\"",
  36021. height: math.unit(14 + 9/12, "feet"),
  36022. default: true
  36023. },
  36024. {
  36025. name: "Alternate Height",
  36026. height: math.unit(20, "feet")
  36027. },
  36028. {
  36029. name: "Actually Macro",
  36030. height: math.unit(100, "feet")
  36031. },
  36032. ]
  36033. ))
  36034. characterMakers.push(() => makeCharacter(
  36035. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36036. {
  36037. front: {
  36038. height: math.unit(5 + 2/12, "feet"),
  36039. name: "Front",
  36040. image: {
  36041. source: "./media/characters/kotetsu-redwood/front.svg",
  36042. extra: 1053/942,
  36043. bottom: 60/1113
  36044. }
  36045. },
  36046. },
  36047. [
  36048. {
  36049. name: "Normal",
  36050. height: math.unit(5 + 2/12, "feet"),
  36051. default: true
  36052. },
  36053. ]
  36054. ))
  36055. characterMakers.push(() => makeCharacter(
  36056. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36057. {
  36058. front: {
  36059. height: math.unit(2.4, "meters"),
  36060. weight: math.unit(125, "kg"),
  36061. name: "Front",
  36062. image: {
  36063. source: "./media/characters/lilith/front.svg",
  36064. extra: 1590/1513,
  36065. bottom: 203/1793
  36066. }
  36067. },
  36068. },
  36069. [
  36070. {
  36071. name: "Humanoid",
  36072. height: math.unit(2.4, "meters")
  36073. },
  36074. {
  36075. name: "Normal",
  36076. height: math.unit(6, "meters"),
  36077. default: true
  36078. },
  36079. {
  36080. name: "Largest",
  36081. height: math.unit(55, "meters")
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(8 + 4/12, "feet"),
  36090. weight: math.unit(535, "lb"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/beh'kah-bolger/front.svg",
  36094. extra: 1660/1603,
  36095. bottom: 37/1697
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(8 + 4/12, "feet"),
  36103. default: true
  36104. },
  36105. {
  36106. name: "Kaiju",
  36107. height: math.unit(250, "feet")
  36108. },
  36109. {
  36110. name: "Still Growing",
  36111. height: math.unit(10, "miles")
  36112. },
  36113. {
  36114. name: "Continental",
  36115. height: math.unit(5000, "miles")
  36116. },
  36117. {
  36118. name: "Final Form",
  36119. height: math.unit(2500000, "miles")
  36120. },
  36121. ]
  36122. ))
  36123. characterMakers.push(() => makeCharacter(
  36124. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36125. {
  36126. front: {
  36127. height: math.unit(7 + 2/12, "feet"),
  36128. weight: math.unit(230, "kg"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/tatyana-milewska/front.svg",
  36132. extra: 1199/1150,
  36133. bottom: 86/1285
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(7 + 2/12, "feet"),
  36141. default: true
  36142. },
  36143. {
  36144. name: "Big",
  36145. height: math.unit(12, "feet")
  36146. },
  36147. {
  36148. name: "Minimacro",
  36149. height: math.unit(20, "feet")
  36150. },
  36151. {
  36152. name: "Macro",
  36153. height: math.unit(120, "feet")
  36154. },
  36155. ]
  36156. ))
  36157. characterMakers.push(() => makeCharacter(
  36158. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36159. {
  36160. front: {
  36161. height: math.unit(7 + 8/12, "feet"),
  36162. weight: math.unit(152, "kg"),
  36163. name: "Front",
  36164. image: {
  36165. source: "./media/characters/helen-arri/front.svg",
  36166. extra: 440/423,
  36167. bottom: 14/454
  36168. }
  36169. },
  36170. back: {
  36171. height: math.unit(7 + 8/12, "feet"),
  36172. weight: math.unit(152, "kg"),
  36173. name: "Back",
  36174. image: {
  36175. source: "./media/characters/helen-arri/back.svg",
  36176. extra: 443/426,
  36177. bottom: 8/451
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(7 + 8/12, "feet"),
  36185. default: true
  36186. },
  36187. {
  36188. name: "Big",
  36189. height: math.unit(14, "feet")
  36190. },
  36191. {
  36192. name: "Minimacro",
  36193. height: math.unit(24, "feet")
  36194. },
  36195. {
  36196. name: "Macro",
  36197. height: math.unit(140, "feet")
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(6, "meters"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/ehanu-rehu/front.svg",
  36209. extra: 1800/1800,
  36210. bottom: 59/1859
  36211. }
  36212. },
  36213. },
  36214. [
  36215. {
  36216. name: "Normal",
  36217. height: math.unit(6, "meters"),
  36218. default: true
  36219. },
  36220. ]
  36221. ))
  36222. characterMakers.push(() => makeCharacter(
  36223. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36224. {
  36225. front: {
  36226. height: math.unit(7 + 3/12, "feet"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/renholder/front.svg",
  36230. extra: 3096/2960,
  36231. bottom: 250/3346
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal Bat",
  36238. height: math.unit(7 + 3/12, "feet"),
  36239. default: true
  36240. },
  36241. {
  36242. name: "Slightly Tall Bat",
  36243. height: math.unit(100, "feet")
  36244. },
  36245. {
  36246. name: "Big Bat",
  36247. height: math.unit(1000, "feet")
  36248. },
  36249. {
  36250. name: "City-Sized Bat",
  36251. height: math.unit(200000, "feet")
  36252. },
  36253. {
  36254. name: "Bigger Bat",
  36255. height: math.unit(10000, "miles")
  36256. },
  36257. {
  36258. name: "Solar Sized Bat",
  36259. height: math.unit(100, "AU")
  36260. },
  36261. {
  36262. name: "Galactic Bat",
  36263. height: math.unit(200000, "lightyears")
  36264. },
  36265. {
  36266. name: "Universally Known Bat",
  36267. height: math.unit(1, "universe")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(6 + 11/12, "feet"),
  36276. weight: math.unit(250, "lb"),
  36277. name: "Front",
  36278. image: {
  36279. source: "./media/characters/cookiecat/front.svg",
  36280. extra: 893/827,
  36281. bottom: 14/907
  36282. }
  36283. },
  36284. },
  36285. [
  36286. {
  36287. name: "Micro",
  36288. height: math.unit(3, "inches")
  36289. },
  36290. {
  36291. name: "Normal",
  36292. height: math.unit(6 + 11/12, "feet"),
  36293. default: true
  36294. },
  36295. {
  36296. name: "Macro",
  36297. height: math.unit(100, "feet")
  36298. },
  36299. {
  36300. name: "Macro+",
  36301. height: math.unit(404, "feet")
  36302. },
  36303. {
  36304. name: "Megamacro",
  36305. height: math.unit(165, "miles")
  36306. },
  36307. {
  36308. name: "Planetary",
  36309. height: math.unit(4600, "miles")
  36310. },
  36311. ]
  36312. ))
  36313. characterMakers.push(() => makeCharacter(
  36314. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36315. {
  36316. front: {
  36317. height: math.unit(10 + 3/12, "feet"),
  36318. weight: math.unit(1500, "lb"),
  36319. name: "Front",
  36320. image: {
  36321. source: "./media/characters/tux-kusanagi/front.svg",
  36322. extra: 944/840,
  36323. bottom: 39/983
  36324. }
  36325. },
  36326. back: {
  36327. height: math.unit(10 + 3/12, "feet"),
  36328. weight: math.unit(1500, "lb"),
  36329. name: "Back",
  36330. image: {
  36331. source: "./media/characters/tux-kusanagi/back.svg",
  36332. extra: 941/842,
  36333. bottom: 28/969
  36334. }
  36335. },
  36336. rump: {
  36337. height: math.unit(5.25, "feet"),
  36338. name: "Rump",
  36339. image: {
  36340. source: "./media/characters/tux-kusanagi/rump.svg"
  36341. }
  36342. },
  36343. beak: {
  36344. height: math.unit(1.54, "feet"),
  36345. name: "Beak",
  36346. image: {
  36347. source: "./media/characters/tux-kusanagi/beak.svg"
  36348. }
  36349. },
  36350. },
  36351. [
  36352. {
  36353. name: "Normal",
  36354. height: math.unit(10 + 3/12, "feet"),
  36355. default: true
  36356. },
  36357. ]
  36358. ))
  36359. characterMakers.push(() => makeCharacter(
  36360. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36361. {
  36362. front: {
  36363. height: math.unit(58, "feet"),
  36364. weight: math.unit(200, "tons"),
  36365. name: "Front",
  36366. image: {
  36367. source: "./media/characters/uzarmazari/front.svg",
  36368. extra: 1575/1455,
  36369. bottom: 152/1727
  36370. }
  36371. },
  36372. back: {
  36373. height: math.unit(58, "feet"),
  36374. weight: math.unit(200, "tons"),
  36375. name: "Back",
  36376. image: {
  36377. source: "./media/characters/uzarmazari/back.svg",
  36378. extra: 1585/1510,
  36379. bottom: 157/1742
  36380. }
  36381. },
  36382. head: {
  36383. height: math.unit(26, "feet"),
  36384. name: "Head",
  36385. image: {
  36386. source: "./media/characters/uzarmazari/head.svg"
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(58, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36400. {
  36401. side: {
  36402. height: math.unit(15, "feet"),
  36403. name: "Side",
  36404. image: {
  36405. source: "./media/characters/akitu/side.svg",
  36406. extra: 1421/1321,
  36407. bottom: 157/1578
  36408. }
  36409. },
  36410. front: {
  36411. height: math.unit(15, "feet"),
  36412. name: "Front",
  36413. image: {
  36414. source: "./media/characters/akitu/front.svg",
  36415. extra: 1435/1326,
  36416. bottom: 232/1667
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(15, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(10 + 8/12, "feet"),
  36433. name: "Front",
  36434. image: {
  36435. source: "./media/characters/azalie-croixland/front.svg",
  36436. extra: 1972/1856,
  36437. bottom: 31/2003
  36438. }
  36439. },
  36440. },
  36441. [
  36442. {
  36443. name: "Original Height",
  36444. height: math.unit(5 + 4/12, "feet")
  36445. },
  36446. {
  36447. name: "Normal Height",
  36448. height: math.unit(10 + 8/12, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36455. {
  36456. side: {
  36457. height: math.unit(7 + 1/12, "feet"),
  36458. weight: math.unit(245, "lb"),
  36459. name: "Side",
  36460. image: {
  36461. source: "./media/characters/kavus-kazian/side.svg",
  36462. extra: 349/342,
  36463. bottom: 15/364
  36464. }
  36465. },
  36466. },
  36467. [
  36468. {
  36469. name: "Normal",
  36470. height: math.unit(7 + 1/12, "feet"),
  36471. default: true
  36472. },
  36473. ]
  36474. ))
  36475. characterMakers.push(() => makeCharacter(
  36476. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36477. {
  36478. normalFront: {
  36479. height: math.unit(5 + 11/12, "feet"),
  36480. name: "Front",
  36481. image: {
  36482. source: "./media/characters/moonlight-rose/normal-front.svg",
  36483. extra: 1980/1825,
  36484. bottom: 18/1998
  36485. },
  36486. form: "normal",
  36487. default: true
  36488. },
  36489. normalBack: {
  36490. height: math.unit(5 + 11/12, "feet"),
  36491. name: "Back",
  36492. image: {
  36493. source: "./media/characters/moonlight-rose/normal-back.svg",
  36494. extra: 2010/1839,
  36495. bottom: 10/2020
  36496. },
  36497. form: "normal"
  36498. },
  36499. demonFront: {
  36500. height: math.unit(1.5, "earths"),
  36501. name: "Front",
  36502. image: {
  36503. source: "./media/characters/moonlight-rose/demon.svg",
  36504. extra: 1400/1294,
  36505. bottom: 45/1445
  36506. },
  36507. form: "demon",
  36508. default: true
  36509. },
  36510. terraFront: {
  36511. height: math.unit(1.5, "earths"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/moonlight-rose/terra.svg"
  36515. },
  36516. form: "terra",
  36517. default: true
  36518. },
  36519. jupiterFront: {
  36520. height: math.unit(69911*2, "km"),
  36521. name: "Front",
  36522. image: {
  36523. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36524. extra: 1367/1286,
  36525. bottom: 55/1422
  36526. },
  36527. form: "jupiter",
  36528. default: true
  36529. },
  36530. neptuneFront: {
  36531. height: math.unit(24622*2, "feet"),
  36532. name: "Front",
  36533. image: {
  36534. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36535. extra: 1851/1712,
  36536. bottom: 0/1851
  36537. },
  36538. form: "neptune",
  36539. default: true
  36540. },
  36541. },
  36542. [
  36543. {
  36544. name: "\"Natural\" Height",
  36545. height: math.unit(5 + 11/12, "feet"),
  36546. form: "normal"
  36547. },
  36548. {
  36549. name: "Smallest comfortable size",
  36550. height: math.unit(40, "meters"),
  36551. form: "normal"
  36552. },
  36553. {
  36554. name: "Common size",
  36555. height: math.unit(50, "km"),
  36556. form: "normal",
  36557. default: true
  36558. },
  36559. {
  36560. name: "Normal",
  36561. height: math.unit(1.5, "earths"),
  36562. form: "demon",
  36563. default: true
  36564. },
  36565. {
  36566. name: "Universal",
  36567. height: math.unit(15, "universes"),
  36568. form: "demon"
  36569. },
  36570. {
  36571. name: "Earth",
  36572. height: math.unit(1.5, "earths"),
  36573. form: "terra",
  36574. default: true
  36575. },
  36576. {
  36577. name: "Super Earth",
  36578. height: math.unit(67.5, "earths"),
  36579. form: "terra"
  36580. },
  36581. {
  36582. name: "Doesn't fit in a solar system...",
  36583. height: math.unit(1, "galaxy"),
  36584. form: "terra"
  36585. },
  36586. {
  36587. name: "Saturn",
  36588. height: math.unit(58232*2, "km"),
  36589. form: "jupiter"
  36590. },
  36591. {
  36592. name: "Jupiter",
  36593. height: math.unit(69911*2, "km"),
  36594. form: "jupiter",
  36595. default: true
  36596. },
  36597. {
  36598. name: "HD 100546 b",
  36599. height: math.unit(482938, "km"),
  36600. form: "jupiter"
  36601. },
  36602. {
  36603. name: "Enceladus",
  36604. height: math.unit(513*2, "km"),
  36605. form: "neptune"
  36606. },
  36607. {
  36608. name: "Europe",
  36609. height: math.unit(1560*2, "km"),
  36610. form: "neptune"
  36611. },
  36612. {
  36613. name: "Neptune",
  36614. height: math.unit(24622*2, "km"),
  36615. form: "neptune",
  36616. default: true
  36617. },
  36618. {
  36619. name: "CoRoT-9b",
  36620. height: math.unit(75067*2, "km"),
  36621. form: "neptune"
  36622. },
  36623. ],
  36624. {
  36625. "normal": {
  36626. name: "Normal",
  36627. default: true
  36628. },
  36629. "demon": {
  36630. name: "Demon"
  36631. },
  36632. "terra": {
  36633. name: "Terra"
  36634. },
  36635. "jupiter": {
  36636. name: "Jupiter"
  36637. },
  36638. "neptune": {
  36639. name: "Neptune"
  36640. }
  36641. }
  36642. ))
  36643. characterMakers.push(() => makeCharacter(
  36644. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36645. {
  36646. front: {
  36647. height: math.unit(16, "feet"),
  36648. weight: math.unit(610, "kg"),
  36649. name: "Front",
  36650. image: {
  36651. source: "./media/characters/huckle/front.svg",
  36652. extra: 1731/1625,
  36653. bottom: 33/1764
  36654. }
  36655. },
  36656. back: {
  36657. height: math.unit(16, "feet"),
  36658. weight: math.unit(610, "kg"),
  36659. name: "Back",
  36660. image: {
  36661. source: "./media/characters/huckle/back.svg",
  36662. extra: 1738/1651,
  36663. bottom: 37/1775
  36664. }
  36665. },
  36666. laughing: {
  36667. height: math.unit(3.75, "feet"),
  36668. name: "Laughing",
  36669. image: {
  36670. source: "./media/characters/huckle/laughing.svg"
  36671. }
  36672. },
  36673. angry: {
  36674. height: math.unit(4.15, "feet"),
  36675. name: "Angry",
  36676. image: {
  36677. source: "./media/characters/huckle/angry.svg"
  36678. }
  36679. },
  36680. },
  36681. [
  36682. {
  36683. name: "Normal",
  36684. height: math.unit(16, "feet"),
  36685. default: true
  36686. },
  36687. {
  36688. name: "Mini Macro",
  36689. height: math.unit(463, "feet")
  36690. },
  36691. {
  36692. name: "Macro",
  36693. height: math.unit(1680, "meters")
  36694. },
  36695. {
  36696. name: "Mega Macro",
  36697. height: math.unit(175, "km")
  36698. },
  36699. {
  36700. name: "Terra Macro",
  36701. height: math.unit(32, "gigameters")
  36702. },
  36703. {
  36704. name: "Multiverse+",
  36705. height: math.unit(2.56e23, "yottameters")
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36711. {
  36712. front: {
  36713. height: math.unit(6 + 9/12, "feet"),
  36714. weight: math.unit(280, "lb"),
  36715. name: "Front",
  36716. image: {
  36717. source: "./media/characters/candy/front.svg",
  36718. extra: 234/217,
  36719. bottom: 11/245
  36720. }
  36721. },
  36722. },
  36723. [
  36724. {
  36725. name: "Really Small",
  36726. height: math.unit(0.1, "nm")
  36727. },
  36728. {
  36729. name: "Micro",
  36730. height: math.unit(2, "inches")
  36731. },
  36732. {
  36733. name: "Normal",
  36734. height: math.unit(6 + 9/12, "feet"),
  36735. default: true
  36736. },
  36737. {
  36738. name: "Small Macro",
  36739. height: math.unit(69, "feet")
  36740. },
  36741. {
  36742. name: "Macro",
  36743. height: math.unit(160, "feet")
  36744. },
  36745. {
  36746. name: "Megamacro",
  36747. height: math.unit(22000, "miles")
  36748. },
  36749. {
  36750. name: "Gigamacro",
  36751. height: math.unit(50000, "miles")
  36752. },
  36753. ]
  36754. ))
  36755. characterMakers.push(() => makeCharacter(
  36756. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36757. {
  36758. front: {
  36759. height: math.unit(4, "feet"),
  36760. weight: math.unit(90, "lb"),
  36761. name: "Front",
  36762. image: {
  36763. source: "./media/characters/joey-mcdonald/front.svg",
  36764. extra: 1059/852,
  36765. bottom: 33/1092
  36766. }
  36767. },
  36768. back: {
  36769. height: math.unit(4, "feet"),
  36770. weight: math.unit(90, "lb"),
  36771. name: "Back",
  36772. image: {
  36773. source: "./media/characters/joey-mcdonald/back.svg",
  36774. extra: 1077/879,
  36775. bottom: 5/1082
  36776. }
  36777. },
  36778. frontKobold: {
  36779. height: math.unit(4, "feet"),
  36780. weight: math.unit(100, "lb"),
  36781. name: "Front-kobold",
  36782. image: {
  36783. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36784. extra: 1480/1367,
  36785. bottom: 0/1480
  36786. }
  36787. },
  36788. backKobold: {
  36789. height: math.unit(4, "feet"),
  36790. weight: math.unit(100, "lb"),
  36791. name: "Back-kobold",
  36792. image: {
  36793. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36794. extra: 1449/1361,
  36795. bottom: 0/1449
  36796. }
  36797. },
  36798. },
  36799. [
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(4, "feet"),
  36803. default: true
  36804. },
  36805. ]
  36806. ))
  36807. characterMakers.push(() => makeCharacter(
  36808. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36809. {
  36810. front: {
  36811. height: math.unit(12 + 6/12, "feet"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/kass-lockheed/front.svg",
  36815. extra: 354/343,
  36816. bottom: 9/363
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(12 + 6/12, "feet"),
  36821. name: "Back",
  36822. image: {
  36823. source: "./media/characters/kass-lockheed/back.svg",
  36824. extra: 364/352,
  36825. bottom: 3/367
  36826. }
  36827. },
  36828. dick: {
  36829. height: math.unit(3.12, "feet"),
  36830. name: "Dick",
  36831. image: {
  36832. source: "./media/characters/kass-lockheed/dick.svg"
  36833. }
  36834. },
  36835. head: {
  36836. height: math.unit(2.6, "feet"),
  36837. name: "Head",
  36838. image: {
  36839. source: "./media/characters/kass-lockheed/head.svg"
  36840. }
  36841. },
  36842. bleh: {
  36843. height: math.unit(2.85, "feet"),
  36844. name: "Bleh",
  36845. image: {
  36846. source: "./media/characters/kass-lockheed/bleh.svg"
  36847. }
  36848. },
  36849. smug: {
  36850. height: math.unit(2.85, "feet"),
  36851. name: "Smug",
  36852. image: {
  36853. source: "./media/characters/kass-lockheed/smug.svg"
  36854. }
  36855. },
  36856. },
  36857. [
  36858. {
  36859. name: "Normal",
  36860. height: math.unit(12 + 6/12, "feet"),
  36861. default: true
  36862. },
  36863. ]
  36864. ))
  36865. characterMakers.push(() => makeCharacter(
  36866. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36867. {
  36868. front: {
  36869. height: math.unit(6 + 2/12, "feet"),
  36870. name: "Front",
  36871. image: {
  36872. source: "./media/characters/taylor/front.svg",
  36873. extra: 639/495,
  36874. bottom: 12/651
  36875. }
  36876. },
  36877. },
  36878. [
  36879. {
  36880. name: "Normal",
  36881. height: math.unit(6 + 2/12, "feet"),
  36882. default: true
  36883. },
  36884. {
  36885. name: "Big",
  36886. height: math.unit(15, "feet")
  36887. },
  36888. {
  36889. name: "Lorg",
  36890. height: math.unit(80, "feet")
  36891. },
  36892. {
  36893. name: "Too Lorg",
  36894. height: math.unit(120, "feet")
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(15, "feet"),
  36903. name: "Front",
  36904. image: {
  36905. source: "./media/characters/kaizer/front.svg",
  36906. extra: 1612/1436,
  36907. bottom: 43/1655
  36908. }
  36909. },
  36910. },
  36911. [
  36912. {
  36913. name: "Normal",
  36914. height: math.unit(15, "feet"),
  36915. default: true
  36916. },
  36917. ]
  36918. ))
  36919. characterMakers.push(() => makeCharacter(
  36920. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36921. {
  36922. front: {
  36923. height: math.unit(2, "feet"),
  36924. weight: math.unit(30, "lb"),
  36925. name: "Front",
  36926. image: {
  36927. source: "./media/characters/sandy/front.svg",
  36928. extra: 1439/1307,
  36929. bottom: 194/1633
  36930. }
  36931. },
  36932. },
  36933. [
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(2, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(3, "feet"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/mellvi/front.svg",
  36949. extra: 1831/1630,
  36950. bottom: 58/1889
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Normal",
  36957. height: math.unit(3, "feet"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(5 + 11/12, "feet"),
  36967. weight: math.unit(200, "lb"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/shirou/front.svg",
  36971. extra: 2491/2383,
  36972. bottom: 189/2680
  36973. }
  36974. },
  36975. back: {
  36976. height: math.unit(5 + 11/12, "feet"),
  36977. weight: math.unit(200, "lb"),
  36978. name: "Back",
  36979. image: {
  36980. source: "./media/characters/shirou/back.svg",
  36981. extra: 2554/2450,
  36982. bottom: 76/2630
  36983. }
  36984. },
  36985. },
  36986. [
  36987. {
  36988. name: "Normal",
  36989. height: math.unit(5 + 11/12, "feet"),
  36990. default: true
  36991. },
  36992. ]
  36993. ))
  36994. characterMakers.push(() => makeCharacter(
  36995. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36996. {
  36997. front: {
  36998. height: math.unit(6 + 3/12, "feet"),
  36999. weight: math.unit(177, "lb"),
  37000. name: "Front",
  37001. image: {
  37002. source: "./media/characters/noryu/front.svg",
  37003. extra: 973/885,
  37004. bottom: 10/983
  37005. }
  37006. },
  37007. },
  37008. [
  37009. {
  37010. name: "Normal",
  37011. height: math.unit(6 + 3/12, "feet"),
  37012. default: true
  37013. },
  37014. ]
  37015. ))
  37016. characterMakers.push(() => makeCharacter(
  37017. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37018. {
  37019. front: {
  37020. height: math.unit(5 + 6/12, "feet"),
  37021. weight: math.unit(170, "lb"),
  37022. name: "Front",
  37023. image: {
  37024. source: "./media/characters/mevolas-rubenido/front.svg",
  37025. extra: 2109/1901,
  37026. bottom: 96/2205
  37027. }
  37028. },
  37029. },
  37030. [
  37031. {
  37032. name: "Normal",
  37033. height: math.unit(5 + 6/12, "feet"),
  37034. default: true
  37035. },
  37036. ]
  37037. ))
  37038. characterMakers.push(() => makeCharacter(
  37039. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37040. {
  37041. front: {
  37042. height: math.unit(100, "feet"),
  37043. name: "Front",
  37044. image: {
  37045. source: "./media/characters/dee/front.svg",
  37046. extra: 2153/2036,
  37047. bottom: 59/2212
  37048. }
  37049. },
  37050. back: {
  37051. height: math.unit(100, "feet"),
  37052. name: "Back",
  37053. image: {
  37054. source: "./media/characters/dee/back.svg",
  37055. extra: 2183/2058,
  37056. bottom: 75/2258
  37057. }
  37058. },
  37059. foot: {
  37060. height: math.unit(19.43, "feet"),
  37061. name: "Foot",
  37062. image: {
  37063. source: "./media/characters/dee/foot.svg"
  37064. }
  37065. },
  37066. hoof: {
  37067. height: math.unit(20.6, "feet"),
  37068. name: "Hoof",
  37069. image: {
  37070. source: "./media/characters/dee/hoof.svg"
  37071. }
  37072. },
  37073. },
  37074. [
  37075. {
  37076. name: "Macro",
  37077. height: math.unit(100, "feet"),
  37078. default: true
  37079. },
  37080. ]
  37081. ))
  37082. characterMakers.push(() => makeCharacter(
  37083. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37084. {
  37085. front: {
  37086. height: math.unit(5 + 6/12, "feet"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/teh/front.svg",
  37090. extra: 1002/847,
  37091. bottom: 62/1064
  37092. }
  37093. },
  37094. },
  37095. [
  37096. {
  37097. name: "Normal",
  37098. height: math.unit(5 + 6/12, "feet"),
  37099. default: true
  37100. },
  37101. ]
  37102. ))
  37103. characterMakers.push(() => makeCharacter(
  37104. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37105. {
  37106. side: {
  37107. height: math.unit(6 + 1/12, "feet"),
  37108. weight: math.unit(204, "lb"),
  37109. name: "Side",
  37110. image: {
  37111. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37112. extra: 974/775,
  37113. bottom: 169/1143
  37114. }
  37115. },
  37116. sitting: {
  37117. height: math.unit(6 + 2/12, "feet"),
  37118. weight: math.unit(204, "lb"),
  37119. name: "Sitting",
  37120. image: {
  37121. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37122. extra: 1175/964,
  37123. bottom: 378/1553
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(6 + 1/12, "feet"),
  37131. default: true
  37132. },
  37133. ]
  37134. ))
  37135. characterMakers.push(() => makeCharacter(
  37136. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37137. {
  37138. front: {
  37139. height: math.unit(6, "inches"),
  37140. name: "Front",
  37141. image: {
  37142. source: "./media/characters/tululi/front.svg",
  37143. extra: 1997/1876,
  37144. bottom: 20/2017
  37145. }
  37146. },
  37147. },
  37148. [
  37149. {
  37150. name: "Normal",
  37151. height: math.unit(6, "inches"),
  37152. default: true
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(4 + 1/12, "feet"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/star/front.svg",
  37164. extra: 1493/1189,
  37165. bottom: 48/1541
  37166. }
  37167. },
  37168. },
  37169. [
  37170. {
  37171. name: "Normal",
  37172. height: math.unit(4 + 1/12, "feet"),
  37173. default: true
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(6 + 3/12, "feet"),
  37182. name: "Front",
  37183. image: {
  37184. source: "./media/characters/comet/front.svg",
  37185. extra: 1681/1462,
  37186. bottom: 26/1707
  37187. }
  37188. },
  37189. },
  37190. [
  37191. {
  37192. name: "Normal",
  37193. height: math.unit(6 + 3/12, "feet"),
  37194. default: true
  37195. },
  37196. ]
  37197. ))
  37198. characterMakers.push(() => makeCharacter(
  37199. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37200. {
  37201. front: {
  37202. height: math.unit(950, "feet"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/vortex/front.svg",
  37206. extra: 1497/1434,
  37207. bottom: 56/1553
  37208. }
  37209. },
  37210. maw: {
  37211. height: math.unit(285, "feet"),
  37212. name: "Maw",
  37213. image: {
  37214. source: "./media/characters/vortex/maw.svg"
  37215. }
  37216. },
  37217. },
  37218. [
  37219. {
  37220. name: "Macro",
  37221. height: math.unit(950, "feet"),
  37222. default: true
  37223. },
  37224. ]
  37225. ))
  37226. characterMakers.push(() => makeCharacter(
  37227. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37228. {
  37229. front: {
  37230. height: math.unit(600, "feet"),
  37231. weight: math.unit(0.02, "grams"),
  37232. name: "Front",
  37233. image: {
  37234. source: "./media/characters/doodle/front.svg",
  37235. extra: 1578/1413,
  37236. bottom: 37/1615
  37237. }
  37238. },
  37239. },
  37240. [
  37241. {
  37242. name: "Macro",
  37243. height: math.unit(600, "feet"),
  37244. default: true
  37245. },
  37246. ]
  37247. ))
  37248. characterMakers.push(() => makeCharacter(
  37249. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37250. {
  37251. front: {
  37252. height: math.unit(6 + 6/12, "feet"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/jai/front.svg",
  37256. extra: 1645/1534,
  37257. bottom: 115/1760
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Normal",
  37264. height: math.unit(6 + 6/12, "feet"),
  37265. default: true
  37266. },
  37267. ]
  37268. ))
  37269. characterMakers.push(() => makeCharacter(
  37270. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37271. {
  37272. front: {
  37273. height: math.unit(6 + 8/12, "feet"),
  37274. name: "Front",
  37275. image: {
  37276. source: "./media/characters/pixel/front.svg",
  37277. extra: 1900/1735,
  37278. bottom: 63/1963
  37279. }
  37280. },
  37281. },
  37282. [
  37283. {
  37284. name: "Normal",
  37285. height: math.unit(6 + 8/12, "feet"),
  37286. default: true
  37287. },
  37288. ]
  37289. ))
  37290. characterMakers.push(() => makeCharacter(
  37291. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37292. {
  37293. back: {
  37294. height: math.unit(4 + 1/12, "feet"),
  37295. weight: math.unit(75, "lb"),
  37296. name: "Back",
  37297. image: {
  37298. source: "./media/characters/rhett/back.svg",
  37299. extra: 930/878,
  37300. bottom: 25/955
  37301. }
  37302. },
  37303. front: {
  37304. height: math.unit(4 + 1/12, "feet"),
  37305. weight: math.unit(75, "lb"),
  37306. name: "Front",
  37307. image: {
  37308. source: "./media/characters/rhett/front.svg",
  37309. extra: 1682/1586,
  37310. bottom: 92/1774
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Micro",
  37317. height: math.unit(8, "inches")
  37318. },
  37319. {
  37320. name: "Tiny",
  37321. height: math.unit(2, "feet")
  37322. },
  37323. {
  37324. name: "Normal",
  37325. height: math.unit(4 + 1/12, "feet"),
  37326. default: true
  37327. },
  37328. ]
  37329. ))
  37330. characterMakers.push(() => makeCharacter(
  37331. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37332. {
  37333. front: {
  37334. height: math.unit(3 + 3/12, "feet"),
  37335. name: "Front",
  37336. image: {
  37337. source: "./media/characters/penny/front.svg",
  37338. extra: 1406/1311,
  37339. bottom: 26/1432
  37340. }
  37341. },
  37342. },
  37343. [
  37344. {
  37345. name: "Normal",
  37346. height: math.unit(3 + 3/12, "feet"),
  37347. default: true
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(4 + 11/12, "feet"),
  37356. name: "Front",
  37357. image: {
  37358. source: "./media/characters/monty/front.svg",
  37359. extra: 1479/1209,
  37360. bottom: 0/1479
  37361. }
  37362. },
  37363. },
  37364. [
  37365. {
  37366. name: "Normal",
  37367. height: math.unit(4 + 11/12, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(8 + 4/12, "feet"),
  37377. name: "Front",
  37378. image: {
  37379. source: "./media/characters/sterling/front.svg",
  37380. extra: 1420/1236,
  37381. bottom: 27/1447
  37382. }
  37383. },
  37384. },
  37385. [
  37386. {
  37387. name: "Normal",
  37388. height: math.unit(8 + 4/12, "feet"),
  37389. default: true
  37390. },
  37391. ]
  37392. ))
  37393. characterMakers.push(() => makeCharacter(
  37394. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37395. {
  37396. front: {
  37397. height: math.unit(15, "feet"),
  37398. name: "Front",
  37399. image: {
  37400. source: "./media/characters/marble/front.svg",
  37401. extra: 973/937,
  37402. bottom: 32/1005
  37403. }
  37404. },
  37405. },
  37406. [
  37407. {
  37408. name: "Normal",
  37409. height: math.unit(15, "feet"),
  37410. default: true
  37411. },
  37412. ]
  37413. ))
  37414. characterMakers.push(() => makeCharacter(
  37415. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37416. {
  37417. front: {
  37418. height: math.unit(3, "inches"),
  37419. name: "Front",
  37420. image: {
  37421. source: "./media/characters/powder/front.svg",
  37422. extra: 1504/1334,
  37423. bottom: 518/2022
  37424. }
  37425. },
  37426. },
  37427. [
  37428. {
  37429. name: "Normal",
  37430. height: math.unit(3, "inches"),
  37431. default: true
  37432. },
  37433. ]
  37434. ))
  37435. characterMakers.push(() => makeCharacter(
  37436. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37437. {
  37438. front: {
  37439. height: math.unit(4 + 5/12, "feet"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/joey-raccoon/front.svg",
  37443. extra: 1273/1197,
  37444. bottom: 0/1273
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(4 + 5/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(8 + 4/12, "feet"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/vick/front.svg",
  37464. extra: 2187/2118,
  37465. bottom: 47/2234
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Normal",
  37472. height: math.unit(8 + 4/12, "feet"),
  37473. default: true
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(5 + 5/12, "feet"),
  37482. name: "Front",
  37483. image: {
  37484. source: "./media/characters/mitsy/front.svg",
  37485. extra: 1842/1695,
  37486. bottom: 0/1842
  37487. }
  37488. },
  37489. },
  37490. [
  37491. {
  37492. name: "Normal",
  37493. height: math.unit(5 + 5/12, "feet"),
  37494. default: true
  37495. },
  37496. ]
  37497. ))
  37498. characterMakers.push(() => makeCharacter(
  37499. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37500. {
  37501. front: {
  37502. height: math.unit(6 + 3/12, "feet"),
  37503. name: "Front",
  37504. image: {
  37505. source: "./media/characters/silvy/front.svg",
  37506. extra: 1995/1836,
  37507. bottom: 225/2220
  37508. }
  37509. },
  37510. },
  37511. [
  37512. {
  37513. name: "Normal",
  37514. height: math.unit(6 + 3/12, "feet"),
  37515. default: true
  37516. },
  37517. ]
  37518. ))
  37519. characterMakers.push(() => makeCharacter(
  37520. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37521. {
  37522. front: {
  37523. height: math.unit(3 + 8/12, "feet"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/rodney/front.svg",
  37527. extra: 1956/1747,
  37528. bottom: 31/1987
  37529. }
  37530. },
  37531. frontDressed: {
  37532. height: math.unit(2.9, "feet"),
  37533. name: "Front (Dressed)",
  37534. image: {
  37535. source: "./media/characters/rodney/front-dressed.svg",
  37536. extra: 1382/1241,
  37537. bottom: 385/1767
  37538. }
  37539. },
  37540. },
  37541. [
  37542. {
  37543. name: "Normal",
  37544. height: math.unit(3 + 8/12, "feet"),
  37545. default: true
  37546. },
  37547. ]
  37548. ))
  37549. characterMakers.push(() => makeCharacter(
  37550. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37551. {
  37552. front: {
  37553. height: math.unit(5 + 9/12, "feet"),
  37554. weight: math.unit(194, "lbs"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/zakail-sudekai/front.svg",
  37558. extra: 2696/2533,
  37559. bottom: 248/2944
  37560. }
  37561. },
  37562. maw: {
  37563. height: math.unit(1.35, "feet"),
  37564. name: "Maw",
  37565. image: {
  37566. source: "./media/characters/zakail-sudekai/maw.svg"
  37567. }
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "Normal",
  37573. height: math.unit(5 + 9/12, "feet"),
  37574. default: true
  37575. },
  37576. ]
  37577. ))
  37578. characterMakers.push(() => makeCharacter(
  37579. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37580. {
  37581. front: {
  37582. height: math.unit(8 + 4/12, "feet"),
  37583. weight: math.unit(1200, "lb"),
  37584. name: "Front",
  37585. image: {
  37586. source: "./media/characters/eleanor/front.svg",
  37587. extra: 1226/1192,
  37588. bottom: 52/1278
  37589. }
  37590. },
  37591. back: {
  37592. height: math.unit(8 + 4/12, "feet"),
  37593. weight: math.unit(1200, "lb"),
  37594. name: "Back",
  37595. image: {
  37596. source: "./media/characters/eleanor/back.svg",
  37597. extra: 1242/1184,
  37598. bottom: 60/1302
  37599. }
  37600. },
  37601. head: {
  37602. height: math.unit(2.62, "feet"),
  37603. name: "Head",
  37604. image: {
  37605. source: "./media/characters/eleanor/head.svg"
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(8 + 4/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37619. {
  37620. front: {
  37621. height: math.unit(8 + 4/12, "feet"),
  37622. weight: math.unit(750, "lb"),
  37623. name: "Front",
  37624. image: {
  37625. source: "./media/characters/tanya/front.svg",
  37626. extra: 1749/1615,
  37627. bottom: 33/1782
  37628. }
  37629. },
  37630. },
  37631. [
  37632. {
  37633. name: "Normal",
  37634. height: math.unit(8 + 4/12, "feet"),
  37635. default: true
  37636. },
  37637. ]
  37638. ))
  37639. characterMakers.push(() => makeCharacter(
  37640. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37641. {
  37642. front: {
  37643. height: math.unit(5, "feet"),
  37644. weight: math.unit(225, "lb"),
  37645. name: "Front",
  37646. image: {
  37647. source: "./media/characters/cindy/front.svg",
  37648. extra: 1320/1250,
  37649. bottom: 42/1362
  37650. }
  37651. },
  37652. frontDressed: {
  37653. height: math.unit(5, "feet"),
  37654. weight: math.unit(225, "lb"),
  37655. name: "Front (Dressed)",
  37656. image: {
  37657. source: "./media/characters/cindy/front-dressed.svg",
  37658. extra: 1320/1250,
  37659. bottom: 42/1362
  37660. }
  37661. },
  37662. back: {
  37663. height: math.unit(5, "feet"),
  37664. weight: math.unit(225, "lb"),
  37665. name: "Back",
  37666. image: {
  37667. source: "./media/characters/cindy/back.svg",
  37668. extra: 1384/1346,
  37669. bottom: 14/1398
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(5, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(6 + 9/12, "feet"),
  37686. weight: math.unit(440, "lb"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/wilbur-owen/front.svg",
  37690. extra: 1575/1448,
  37691. bottom: 72/1647
  37692. }
  37693. },
  37694. back: {
  37695. height: math.unit(6 + 9/12, "feet"),
  37696. weight: math.unit(440, "lb"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/wilbur-owen/back.svg",
  37700. extra: 1578/1445,
  37701. bottom: 36/1614
  37702. }
  37703. },
  37704. },
  37705. [
  37706. {
  37707. name: "Normal",
  37708. height: math.unit(6 + 9/12, "feet"),
  37709. default: true
  37710. },
  37711. ]
  37712. ))
  37713. characterMakers.push(() => makeCharacter(
  37714. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37715. {
  37716. front: {
  37717. height: math.unit(6 + 5/12, "feet"),
  37718. weight: math.unit(650, "lb"),
  37719. name: "Front",
  37720. image: {
  37721. source: "./media/characters/keegan/front.svg",
  37722. extra: 2387/2198,
  37723. bottom: 33/2420
  37724. }
  37725. },
  37726. side: {
  37727. height: math.unit(6 + 5/12, "feet"),
  37728. weight: math.unit(650, "lb"),
  37729. name: "Side",
  37730. image: {
  37731. source: "./media/characters/keegan/side.svg",
  37732. extra: 2390/2202,
  37733. bottom: 47/2437
  37734. }
  37735. },
  37736. back: {
  37737. height: math.unit(6 + 5/12, "feet"),
  37738. weight: math.unit(650, "lb"),
  37739. name: "Back",
  37740. image: {
  37741. source: "./media/characters/keegan/back.svg",
  37742. extra: 2418/2268,
  37743. bottom: 15/2433
  37744. }
  37745. },
  37746. frontSfw: {
  37747. height: math.unit(6 + 5/12, "feet"),
  37748. weight: math.unit(650, "lb"),
  37749. name: "Front (SFW)",
  37750. image: {
  37751. source: "./media/characters/keegan/front-sfw.svg",
  37752. extra: 2387/2198,
  37753. bottom: 33/2420
  37754. }
  37755. },
  37756. beans: {
  37757. height: math.unit(1.85, "feet"),
  37758. name: "Beans",
  37759. image: {
  37760. source: "./media/characters/keegan/beans.svg"
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(6 + 5/12, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37774. {
  37775. front: {
  37776. height: math.unit(9, "feet"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/colton/front.svg",
  37780. extra: 1589/1326,
  37781. bottom: 139/1728
  37782. }
  37783. },
  37784. },
  37785. [
  37786. {
  37787. name: "Normal",
  37788. height: math.unit(9, "feet"),
  37789. default: true
  37790. },
  37791. ]
  37792. ))
  37793. characterMakers.push(() => makeCharacter(
  37794. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37795. {
  37796. front: {
  37797. height: math.unit(2 + 9/12, "feet"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/bora/front.svg",
  37801. extra: 1265/1250,
  37802. bottom: 24/1289
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(2 + 9/12, "feet"),
  37810. default: true
  37811. },
  37812. ]
  37813. ))
  37814. characterMakers.push(() => makeCharacter(
  37815. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37816. {
  37817. front: {
  37818. height: math.unit(8, "feet"),
  37819. name: "Front",
  37820. image: {
  37821. source: "./media/characters/myu-myu/front.svg",
  37822. extra: 1949/1857,
  37823. bottom: 90/2039
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(8, "feet"),
  37831. default: true
  37832. },
  37833. {
  37834. name: "Big",
  37835. height: math.unit(15, "feet")
  37836. },
  37837. {
  37838. name: "BIG",
  37839. height: math.unit(25, "feet")
  37840. },
  37841. ]
  37842. ))
  37843. characterMakers.push(() => makeCharacter(
  37844. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37845. {
  37846. side: {
  37847. height: math.unit(7 + 5/12, "feet"),
  37848. weight: math.unit(2800, "lb"),
  37849. name: "Side",
  37850. image: {
  37851. source: "./media/characters/haloren/side.svg",
  37852. extra: 1793/409,
  37853. bottom: 59/1852
  37854. }
  37855. },
  37856. frontPaw: {
  37857. height: math.unit(2.36, "feet"),
  37858. name: "Front paw",
  37859. image: {
  37860. source: "./media/characters/haloren/front-paw.svg"
  37861. }
  37862. },
  37863. hindPaw: {
  37864. height: math.unit(3.18, "feet"),
  37865. name: "Hind paw",
  37866. image: {
  37867. source: "./media/characters/haloren/hind-paw.svg"
  37868. }
  37869. },
  37870. maw: {
  37871. height: math.unit(5.05, "feet"),
  37872. name: "Maw",
  37873. image: {
  37874. source: "./media/characters/haloren/maw.svg"
  37875. }
  37876. },
  37877. dick: {
  37878. height: math.unit(2.90, "feet"),
  37879. name: "Dick",
  37880. image: {
  37881. source: "./media/characters/haloren/dick.svg"
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(7 + 5/12, "feet"),
  37889. default: true
  37890. },
  37891. {
  37892. name: "Enhanced",
  37893. height: math.unit(14 + 3/12, "feet")
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(171, "cm"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/kimmy/front.svg",
  37905. extra: 1491/1435,
  37906. bottom: 53/1544
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Small",
  37913. height: math.unit(9, "cm")
  37914. },
  37915. {
  37916. name: "Normal",
  37917. height: math.unit(171, "cm"),
  37918. default: true
  37919. },
  37920. ]
  37921. ))
  37922. characterMakers.push(() => makeCharacter(
  37923. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37924. {
  37925. front: {
  37926. height: math.unit(8, "feet"),
  37927. weight: math.unit(300, "lb"),
  37928. name: "Front",
  37929. image: {
  37930. source: "./media/characters/galeboomer/front.svg",
  37931. extra: 4651/4415,
  37932. bottom: 162/4813
  37933. }
  37934. },
  37935. back: {
  37936. height: math.unit(8, "feet"),
  37937. weight: math.unit(300, "lb"),
  37938. name: "Back",
  37939. image: {
  37940. source: "./media/characters/galeboomer/back.svg",
  37941. extra: 4544/4314,
  37942. bottom: 16/4560
  37943. }
  37944. },
  37945. frontAlt: {
  37946. height: math.unit(8, "feet"),
  37947. weight: math.unit(300, "lb"),
  37948. name: "Front (Alt)",
  37949. image: {
  37950. source: "./media/characters/galeboomer/front-alt.svg",
  37951. extra: 4458/4228,
  37952. bottom: 68/4526
  37953. }
  37954. },
  37955. maw: {
  37956. height: math.unit(1.2, "feet"),
  37957. name: "Maw",
  37958. image: {
  37959. source: "./media/characters/galeboomer/maw.svg"
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(8, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(5 + 9/12, "feet"),
  37976. weight: math.unit(120, "lb"),
  37977. name: "Front",
  37978. image: {
  37979. source: "./media/characters/chyr/front.svg",
  37980. extra: 1323/1254,
  37981. bottom: 63/1386
  37982. }
  37983. },
  37984. back: {
  37985. height: math.unit(5 + 9/12, "feet"),
  37986. weight: math.unit(120, "lb"),
  37987. name: "Back",
  37988. image: {
  37989. source: "./media/characters/chyr/back.svg",
  37990. extra: 1323/1252,
  37991. bottom: 48/1371
  37992. }
  37993. },
  37994. },
  37995. [
  37996. {
  37997. name: "Normal",
  37998. height: math.unit(5 + 9/12, "feet"),
  37999. default: true
  38000. },
  38001. ]
  38002. ))
  38003. characterMakers.push(() => makeCharacter(
  38004. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38005. {
  38006. front: {
  38007. height: math.unit(7, "feet"),
  38008. weight: math.unit(310, "lb"),
  38009. name: "Front",
  38010. image: {
  38011. source: "./media/characters/solarus/front.svg",
  38012. extra: 2415/2021,
  38013. bottom: 103/2518
  38014. }
  38015. },
  38016. back: {
  38017. height: math.unit(7, "feet"),
  38018. weight: math.unit(310, "lb"),
  38019. name: "Back",
  38020. image: {
  38021. source: "./media/characters/solarus/back.svg",
  38022. extra: 2463/2089,
  38023. bottom: 79/2542
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(7, "feet"),
  38031. default: true
  38032. },
  38033. ]
  38034. ))
  38035. characterMakers.push(() => makeCharacter(
  38036. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38037. {
  38038. front: {
  38039. height: math.unit(16, "feet"),
  38040. name: "Front",
  38041. image: {
  38042. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38043. extra: 1844/1780,
  38044. bottom: 58/1902
  38045. }
  38046. },
  38047. winterCoat: {
  38048. height: math.unit(16, "feet"),
  38049. name: "Winter Coat",
  38050. image: {
  38051. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38052. extra: 1807/1775,
  38053. bottom: 69/1876
  38054. }
  38055. },
  38056. },
  38057. [
  38058. {
  38059. name: "Normal",
  38060. height: math.unit(16, "feet"),
  38061. default: true
  38062. },
  38063. {
  38064. name: "Chicago Size",
  38065. height: math.unit(560, "feet")
  38066. },
  38067. ]
  38068. ))
  38069. characterMakers.push(() => makeCharacter(
  38070. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38071. {
  38072. front: {
  38073. height: math.unit(11 + 6/12, "feet"),
  38074. weight: math.unit(1366, "lb"),
  38075. name: "Front",
  38076. image: {
  38077. source: "./media/characters/lexor/front.svg",
  38078. extra: 1560/1481,
  38079. bottom: 211/1771
  38080. }
  38081. },
  38082. back: {
  38083. height: math.unit(11 + 6/12, "feet"),
  38084. weight: math.unit(1366, "lb"),
  38085. name: "Back",
  38086. image: {
  38087. source: "./media/characters/lexor/back.svg",
  38088. extra: 1614/1533,
  38089. bottom: 76/1690
  38090. }
  38091. },
  38092. maw: {
  38093. height: math.unit(3, "feet"),
  38094. name: "Maw",
  38095. image: {
  38096. source: "./media/characters/lexor/maw.svg"
  38097. }
  38098. },
  38099. dick: {
  38100. height: math.unit(2.59, "feet"),
  38101. name: "Dick",
  38102. image: {
  38103. source: "./media/characters/lexor/dick.svg"
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(11 + 6/12, "feet"),
  38111. default: true
  38112. },
  38113. ]
  38114. ))
  38115. characterMakers.push(() => makeCharacter(
  38116. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38117. {
  38118. front: {
  38119. height: math.unit(5 + 8/12, "feet"),
  38120. name: "Front",
  38121. image: {
  38122. source: "./media/characters/magnum/front.svg",
  38123. extra: 942/855,
  38124. bottom: 26/968
  38125. }
  38126. },
  38127. },
  38128. [
  38129. {
  38130. name: "Normal",
  38131. height: math.unit(5 + 8/12, "feet"),
  38132. default: true
  38133. },
  38134. ]
  38135. ))
  38136. characterMakers.push(() => makeCharacter(
  38137. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38138. {
  38139. front: {
  38140. height: math.unit(18 + 4/12, "feet"),
  38141. weight: math.unit(1500, "kg"),
  38142. name: "Front",
  38143. image: {
  38144. source: "./media/characters/solas-sharpsman/front.svg",
  38145. extra: 1698/1589,
  38146. bottom: 0/1698
  38147. }
  38148. },
  38149. },
  38150. [
  38151. {
  38152. name: "Normal",
  38153. height: math.unit(18 + 4/12, "feet"),
  38154. default: true
  38155. },
  38156. ]
  38157. ))
  38158. characterMakers.push(() => makeCharacter(
  38159. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38160. {
  38161. front: {
  38162. height: math.unit(5 + 5/12, "feet"),
  38163. weight: math.unit(180, "lb"),
  38164. name: "Front",
  38165. image: {
  38166. source: "./media/characters/october/front.svg",
  38167. extra: 1800/1650,
  38168. bottom: 0/1800
  38169. }
  38170. },
  38171. frontNsfw: {
  38172. height: math.unit(5 + 5/12, "feet"),
  38173. weight: math.unit(180, "lb"),
  38174. name: "Front (NSFW)",
  38175. image: {
  38176. source: "./media/characters/october/front-nsfw.svg",
  38177. extra: 1392/1307,
  38178. bottom: 42/1434
  38179. }
  38180. },
  38181. },
  38182. [
  38183. {
  38184. name: "Normal",
  38185. height: math.unit(5 + 5/12, "feet"),
  38186. default: true
  38187. },
  38188. ]
  38189. ))
  38190. characterMakers.push(() => makeCharacter(
  38191. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38192. {
  38193. front: {
  38194. height: math.unit(8 + 6/12, "feet"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/essynkardi/front.svg",
  38198. extra: 1914/1846,
  38199. bottom: 22/1936
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(8 + 6/12, "feet"),
  38207. default: true
  38208. },
  38209. ]
  38210. ))
  38211. characterMakers.push(() => makeCharacter(
  38212. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38213. {
  38214. front: {
  38215. height: math.unit(6 + 6/12, "feet"),
  38216. weight: math.unit(7, "lb"),
  38217. name: "Front",
  38218. image: {
  38219. source: "./media/characters/icky/front.svg",
  38220. extra: 813/782,
  38221. bottom: 66/879
  38222. }
  38223. },
  38224. back: {
  38225. height: math.unit(6 + 6/12, "feet"),
  38226. weight: math.unit(7, "lb"),
  38227. name: "Back",
  38228. image: {
  38229. source: "./media/characters/icky/back.svg",
  38230. extra: 754/735,
  38231. bottom: 56/810
  38232. }
  38233. },
  38234. },
  38235. [
  38236. {
  38237. name: "Normal",
  38238. height: math.unit(6 + 6/12, "feet"),
  38239. default: true
  38240. },
  38241. ]
  38242. ))
  38243. characterMakers.push(() => makeCharacter(
  38244. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38245. {
  38246. front: {
  38247. height: math.unit(15, "feet"),
  38248. name: "Front",
  38249. image: {
  38250. source: "./media/characters/rojas/front.svg",
  38251. extra: 1462/1408,
  38252. bottom: 95/1557
  38253. }
  38254. },
  38255. back: {
  38256. height: math.unit(15, "feet"),
  38257. name: "Back",
  38258. image: {
  38259. source: "./media/characters/rojas/back.svg",
  38260. extra: 1023/954,
  38261. bottom: 28/1051
  38262. }
  38263. },
  38264. },
  38265. [
  38266. {
  38267. name: "Normal",
  38268. height: math.unit(15, "feet"),
  38269. default: true
  38270. },
  38271. ]
  38272. ))
  38273. characterMakers.push(() => makeCharacter(
  38274. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38275. {
  38276. frontHuman: {
  38277. height: math.unit(5 + 7/12, "feet"),
  38278. name: "Front (Human)",
  38279. image: {
  38280. source: "./media/characters/alek-dryagan/front-human.svg",
  38281. extra: 1687/1667,
  38282. bottom: 69/1756
  38283. }
  38284. },
  38285. backHuman: {
  38286. height: math.unit(5 + 7/12, "feet"),
  38287. name: "Back (Human)",
  38288. image: {
  38289. source: "./media/characters/alek-dryagan/back-human.svg",
  38290. extra: 1670/1649,
  38291. bottom: 65/1735
  38292. }
  38293. },
  38294. frontDemi: {
  38295. height: math.unit(65, "feet"),
  38296. name: "Front (Demi)",
  38297. image: {
  38298. source: "./media/characters/alek-dryagan/front-demi.svg",
  38299. extra: 1669/1642,
  38300. bottom: 49/1718
  38301. }
  38302. },
  38303. backDemi: {
  38304. height: math.unit(65, "feet"),
  38305. name: "Back (Demi)",
  38306. image: {
  38307. source: "./media/characters/alek-dryagan/back-demi.svg",
  38308. extra: 1658/1637,
  38309. bottom: 40/1698
  38310. }
  38311. },
  38312. mawHuman: {
  38313. height: math.unit(0.3, "feet"),
  38314. name: "Maw (Human)",
  38315. image: {
  38316. source: "./media/characters/alek-dryagan/maw-human.svg"
  38317. }
  38318. },
  38319. mawDemi: {
  38320. height: math.unit(3.8, "feet"),
  38321. name: "Maw (Demi)",
  38322. image: {
  38323. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38324. }
  38325. },
  38326. },
  38327. [
  38328. {
  38329. name: "Normal",
  38330. height: math.unit(5 + 7/12, "feet"),
  38331. default: true
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38337. {
  38338. frontHuman: {
  38339. height: math.unit(5 + 2/12, "feet"),
  38340. name: "Front (Human)",
  38341. image: {
  38342. source: "./media/characters/gen/front-human.svg",
  38343. extra: 1627/1538,
  38344. bottom: 71/1698
  38345. }
  38346. },
  38347. backHuman: {
  38348. height: math.unit(5 + 2/12, "feet"),
  38349. name: "Back (Human)",
  38350. image: {
  38351. source: "./media/characters/gen/back-human.svg",
  38352. extra: 1638/1548,
  38353. bottom: 69/1707
  38354. }
  38355. },
  38356. frontDemi: {
  38357. height: math.unit(5 + 2/12, "feet"),
  38358. name: "Front (Demi)",
  38359. image: {
  38360. source: "./media/characters/gen/front-demi.svg",
  38361. extra: 1627/1538,
  38362. bottom: 71/1698
  38363. }
  38364. },
  38365. backDemi: {
  38366. height: math.unit(5 + 2/12, "feet"),
  38367. name: "Back (Demi)",
  38368. image: {
  38369. source: "./media/characters/gen/back-demi.svg",
  38370. extra: 1638/1548,
  38371. bottom: 69/1707
  38372. }
  38373. },
  38374. },
  38375. [
  38376. {
  38377. name: "Normal",
  38378. height: math.unit(5 + 2/12, "feet"),
  38379. default: true
  38380. },
  38381. ]
  38382. ))
  38383. characterMakers.push(() => makeCharacter(
  38384. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38385. {
  38386. frontImp: {
  38387. height: math.unit(1 + 11/12, "feet"),
  38388. name: "Front (Imp)",
  38389. image: {
  38390. source: "./media/characters/max-kobold/front-imp.svg",
  38391. extra: 1238/1134,
  38392. bottom: 81/1319
  38393. }
  38394. },
  38395. backImp: {
  38396. height: math.unit(1 + 11/12, "feet"),
  38397. name: "Back (Imp)",
  38398. image: {
  38399. source: "./media/characters/max-kobold/back-imp.svg",
  38400. extra: 1334/1175,
  38401. bottom: 34/1368
  38402. }
  38403. },
  38404. frontDemi: {
  38405. height: math.unit(5 + 9/12, "feet"),
  38406. name: "Front (Demi)",
  38407. image: {
  38408. source: "./media/characters/max-kobold/front-demi.svg",
  38409. extra: 1715/1685,
  38410. bottom: 54/1769
  38411. }
  38412. },
  38413. backDemi: {
  38414. height: math.unit(5 + 9/12, "feet"),
  38415. name: "Back (Demi)",
  38416. image: {
  38417. source: "./media/characters/max-kobold/back-demi.svg",
  38418. extra: 1752/1729,
  38419. bottom: 41/1793
  38420. }
  38421. },
  38422. handImp: {
  38423. height: math.unit(0.45, "feet"),
  38424. name: "Hand (Imp)",
  38425. image: {
  38426. source: "./media/characters/max-kobold/hand.svg"
  38427. }
  38428. },
  38429. pawImp: {
  38430. height: math.unit(0.46, "feet"),
  38431. name: "Paw (Imp)",
  38432. image: {
  38433. source: "./media/characters/max-kobold/paw.svg"
  38434. }
  38435. },
  38436. handDemi: {
  38437. height: math.unit(0.80, "feet"),
  38438. name: "Hand (Demi)",
  38439. image: {
  38440. source: "./media/characters/max-kobold/hand.svg"
  38441. }
  38442. },
  38443. pawDemi: {
  38444. height: math.unit(1.1, "feet"),
  38445. name: "Paw (Demi)",
  38446. image: {
  38447. source: "./media/characters/max-kobold/paw.svg"
  38448. }
  38449. },
  38450. headImp: {
  38451. height: math.unit(1.33, "feet"),
  38452. name: "Head (Imp)",
  38453. image: {
  38454. source: "./media/characters/max-kobold/head-imp.svg"
  38455. }
  38456. },
  38457. mawImp: {
  38458. height: math.unit(0.75, "feet"),
  38459. name: "Maw (Imp)",
  38460. image: {
  38461. source: "./media/characters/max-kobold/maw-imp.svg"
  38462. }
  38463. },
  38464. mawDemi: {
  38465. height: math.unit(0.42, "feet"),
  38466. name: "Maw (Demi)",
  38467. image: {
  38468. source: "./media/characters/max-kobold/maw-demi.svg"
  38469. }
  38470. },
  38471. },
  38472. [
  38473. {
  38474. name: "Normal",
  38475. height: math.unit(1 + 11/12, "feet"),
  38476. default: true
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(7 + 5/12, "feet"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/carbon/front.svg",
  38488. extra: 1754/1689,
  38489. bottom: 65/1819
  38490. }
  38491. },
  38492. back: {
  38493. height: math.unit(7 + 5/12, "feet"),
  38494. name: "Back",
  38495. image: {
  38496. source: "./media/characters/carbon/back.svg",
  38497. extra: 1762/1695,
  38498. bottom: 24/1786
  38499. }
  38500. },
  38501. frontGigantamax: {
  38502. height: math.unit(150, "feet"),
  38503. name: "Front (Gigantamax)",
  38504. image: {
  38505. source: "./media/characters/carbon/front-gigantamax.svg",
  38506. extra: 1826/1669,
  38507. bottom: 59/1885
  38508. }
  38509. },
  38510. backGigantamax: {
  38511. height: math.unit(150, "feet"),
  38512. name: "Back (Gigantamax)",
  38513. image: {
  38514. source: "./media/characters/carbon/back-gigantamax.svg",
  38515. extra: 1796/1653,
  38516. bottom: 53/1849
  38517. }
  38518. },
  38519. maw: {
  38520. height: math.unit(0.48, "feet"),
  38521. name: "Maw",
  38522. image: {
  38523. source: "./media/characters/carbon/maw.svg"
  38524. }
  38525. },
  38526. mawGigantamax: {
  38527. height: math.unit(7.5, "feet"),
  38528. name: "Maw (Gigantamax)",
  38529. image: {
  38530. source: "./media/characters/carbon/maw-gigantamax.svg"
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(7 + 5/12, "feet"),
  38538. default: true
  38539. },
  38540. ]
  38541. ))
  38542. characterMakers.push(() => makeCharacter(
  38543. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38544. {
  38545. front: {
  38546. height: math.unit(6, "feet"),
  38547. name: "Front",
  38548. image: {
  38549. source: "./media/characters/maverick/front.svg",
  38550. extra: 1672/1661,
  38551. bottom: 85/1757
  38552. }
  38553. },
  38554. back: {
  38555. height: math.unit(6, "feet"),
  38556. name: "Back",
  38557. image: {
  38558. source: "./media/characters/maverick/back.svg",
  38559. extra: 1642/1631,
  38560. bottom: 38/1680
  38561. }
  38562. },
  38563. },
  38564. [
  38565. {
  38566. name: "Normal",
  38567. height: math.unit(6, "feet"),
  38568. default: true
  38569. },
  38570. ]
  38571. ))
  38572. characterMakers.push(() => makeCharacter(
  38573. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38574. {
  38575. front: {
  38576. height: math.unit(15, "feet"),
  38577. weight: math.unit(615, "lb"),
  38578. name: "Front",
  38579. image: {
  38580. source: "./media/characters/grockle/front.svg",
  38581. extra: 1535/1427,
  38582. bottom: 56/1591
  38583. }
  38584. },
  38585. },
  38586. [
  38587. {
  38588. name: "Normal",
  38589. height: math.unit(15, "feet"),
  38590. default: true
  38591. },
  38592. {
  38593. name: "Large",
  38594. height: math.unit(150, "feet")
  38595. },
  38596. {
  38597. name: "Macro",
  38598. height: math.unit(1876, "feet")
  38599. },
  38600. {
  38601. name: "Mega Macro",
  38602. height: math.unit(121940, "feet")
  38603. },
  38604. {
  38605. name: "Giga Macro",
  38606. height: math.unit(750, "km")
  38607. },
  38608. {
  38609. name: "Tera Macro",
  38610. height: math.unit(750000, "km")
  38611. },
  38612. {
  38613. name: "Galactic",
  38614. height: math.unit(1.4e5, "km")
  38615. },
  38616. {
  38617. name: "Godlike",
  38618. height: math.unit(9.8e280, "galaxies")
  38619. },
  38620. ]
  38621. ))
  38622. characterMakers.push(() => makeCharacter(
  38623. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38624. {
  38625. front: {
  38626. height: math.unit(11, "meters"),
  38627. weight: math.unit(20, "tonnes"),
  38628. name: "Front",
  38629. image: {
  38630. source: "./media/characters/alistair/front.svg",
  38631. extra: 1265/1009,
  38632. bottom: 93/1358
  38633. }
  38634. },
  38635. },
  38636. [
  38637. {
  38638. name: "Normal",
  38639. height: math.unit(11, "meters"),
  38640. default: true
  38641. },
  38642. ]
  38643. ))
  38644. characterMakers.push(() => makeCharacter(
  38645. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38646. {
  38647. front: {
  38648. height: math.unit(5 + 8/12, "feet"),
  38649. name: "Front",
  38650. image: {
  38651. source: "./media/characters/haruka/front.svg",
  38652. extra: 2012/1952,
  38653. bottom: 0/2012
  38654. }
  38655. },
  38656. },
  38657. [
  38658. {
  38659. name: "Normal",
  38660. height: math.unit(5 + 8/12, "feet"),
  38661. default: true
  38662. },
  38663. ]
  38664. ))
  38665. characterMakers.push(() => makeCharacter(
  38666. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38667. {
  38668. back: {
  38669. height: math.unit(9, "feet"),
  38670. name: "Back",
  38671. image: {
  38672. source: "./media/characters/vivian-sylveon/back.svg",
  38673. extra: 1853/1714,
  38674. bottom: 0/1853
  38675. }
  38676. },
  38677. },
  38678. [
  38679. {
  38680. name: "Normal",
  38681. height: math.unit(9, "feet"),
  38682. default: true
  38683. },
  38684. {
  38685. name: "Macro",
  38686. height: math.unit(500, "feet")
  38687. },
  38688. {
  38689. name: "Megamacro",
  38690. height: math.unit(600, "miles")
  38691. },
  38692. {
  38693. name: "Gigamacro",
  38694. height: math.unit(30000, "miles")
  38695. },
  38696. ]
  38697. ))
  38698. characterMakers.push(() => makeCharacter(
  38699. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38700. {
  38701. anthro: {
  38702. height: math.unit(5 + 10/12, "feet"),
  38703. weight: math.unit(100, "lb"),
  38704. name: "Anthro",
  38705. image: {
  38706. source: "./media/characters/daiki/anthro.svg",
  38707. extra: 1115/1027,
  38708. bottom: 69/1184
  38709. }
  38710. },
  38711. feral: {
  38712. height: math.unit(200, "feet"),
  38713. name: "Feral",
  38714. image: {
  38715. source: "./media/characters/daiki/feral.svg",
  38716. extra: 1256/313,
  38717. bottom: 39/1295
  38718. }
  38719. },
  38720. feralHead: {
  38721. height: math.unit(171, "feet"),
  38722. name: "Feral Head",
  38723. image: {
  38724. source: "./media/characters/daiki/feral-head.svg"
  38725. }
  38726. },
  38727. manaDragon: {
  38728. height: math.unit(170, "meters"),
  38729. name: "Mana-dragon",
  38730. image: {
  38731. source: "./media/characters/daiki/mana-dragon.svg",
  38732. extra: 763/420,
  38733. bottom: 97/860
  38734. }
  38735. },
  38736. },
  38737. [
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(5 + 10/12, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38747. {
  38748. fullyEquippedFront: {
  38749. height: math.unit(3 + 1/12, "feet"),
  38750. weight: math.unit(24, "lb"),
  38751. name: "Fully Equipped (Front)",
  38752. image: {
  38753. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38754. extra: 687/605,
  38755. bottom: 18/705
  38756. }
  38757. },
  38758. fullyEquippedBack: {
  38759. height: math.unit(3 + 1/12, "feet"),
  38760. weight: math.unit(24, "lb"),
  38761. name: "Fully Equipped (Back)",
  38762. image: {
  38763. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38764. extra: 689/590,
  38765. bottom: 18/707
  38766. }
  38767. },
  38768. dailyWear: {
  38769. height: math.unit(3 + 1/12, "feet"),
  38770. weight: math.unit(24, "lb"),
  38771. name: "Daily Wear",
  38772. image: {
  38773. source: "./media/characters/tea-spot/daily-wear.svg",
  38774. extra: 701/620,
  38775. bottom: 21/722
  38776. }
  38777. },
  38778. maidWork: {
  38779. height: math.unit(3 + 1/12, "feet"),
  38780. weight: math.unit(24, "lb"),
  38781. name: "Maid Work",
  38782. image: {
  38783. source: "./media/characters/tea-spot/maid-work.svg",
  38784. extra: 693/609,
  38785. bottom: 15/708
  38786. }
  38787. },
  38788. },
  38789. [
  38790. {
  38791. name: "Normal",
  38792. height: math.unit(3 + 1/12, "feet"),
  38793. default: true
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(175, "cm"),
  38802. weight: math.unit(75, "kg"),
  38803. name: "Front",
  38804. image: {
  38805. source: "./media/characters/chee/front.svg",
  38806. extra: 1796/1740,
  38807. bottom: 40/1836
  38808. }
  38809. },
  38810. },
  38811. [
  38812. {
  38813. name: "Micro-Micro",
  38814. height: math.unit(1, "nm")
  38815. },
  38816. {
  38817. name: "Micro-erst",
  38818. height: math.unit(1, "micrometer")
  38819. },
  38820. {
  38821. name: "Micro-er",
  38822. height: math.unit(1, "cm")
  38823. },
  38824. {
  38825. name: "Normal",
  38826. height: math.unit(175, "cm"),
  38827. default: true
  38828. },
  38829. {
  38830. name: "Macro",
  38831. height: math.unit(100, "m")
  38832. },
  38833. {
  38834. name: "Macro-er",
  38835. height: math.unit(1, "km")
  38836. },
  38837. {
  38838. name: "Macro-erst",
  38839. height: math.unit(10, "km")
  38840. },
  38841. {
  38842. name: "Macro-Macro",
  38843. height: math.unit(100, "km")
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38849. {
  38850. front: {
  38851. height: math.unit(11 + 9/12, "feet"),
  38852. weight: math.unit(935, "lb"),
  38853. name: "Front",
  38854. image: {
  38855. source: "./media/characters/kingsley/front.svg",
  38856. extra: 1803/1674,
  38857. bottom: 127/1930
  38858. }
  38859. },
  38860. frontNude: {
  38861. height: math.unit(11 + 9/12, "feet"),
  38862. weight: math.unit(935, "lb"),
  38863. name: "Front (Nude)",
  38864. image: {
  38865. source: "./media/characters/kingsley/front-nude.svg",
  38866. extra: 1803/1674,
  38867. bottom: 127/1930
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(11 + 9/12, "feet"),
  38875. default: true
  38876. },
  38877. ]
  38878. ))
  38879. characterMakers.push(() => makeCharacter(
  38880. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38881. {
  38882. side: {
  38883. height: math.unit(9, "feet"),
  38884. name: "Side",
  38885. image: {
  38886. source: "./media/characters/rymel/side.svg",
  38887. extra: 792/469,
  38888. bottom: 121/913
  38889. }
  38890. },
  38891. maw: {
  38892. height: math.unit(2.4, "meters"),
  38893. name: "Maw",
  38894. image: {
  38895. source: "./media/characters/rymel/maw.svg"
  38896. }
  38897. },
  38898. },
  38899. [
  38900. {
  38901. name: "House Drake",
  38902. height: math.unit(2, "feet")
  38903. },
  38904. {
  38905. name: "Reduced",
  38906. height: math.unit(4.5, "feet")
  38907. },
  38908. {
  38909. name: "Normal",
  38910. height: math.unit(9, "feet"),
  38911. default: true
  38912. },
  38913. ]
  38914. ))
  38915. characterMakers.push(() => makeCharacter(
  38916. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38917. {
  38918. front: {
  38919. height: math.unit(1.74, "meters"),
  38920. weight: math.unit(55, "kg"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/rubus/front.svg",
  38924. extra: 1894/1742,
  38925. bottom: 44/1938
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Normal",
  38932. height: math.unit(1.74, "meters"),
  38933. default: true
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(5 + 2/12, "feet"),
  38942. weight: math.unit(112, "lb"),
  38943. name: "Front",
  38944. image: {
  38945. source: "./media/characters/cassie-kingston/front.svg",
  38946. extra: 1438/1390,
  38947. bottom: 47/1485
  38948. }
  38949. },
  38950. },
  38951. [
  38952. {
  38953. name: "Normal",
  38954. height: math.unit(5 + 2/12, "feet"),
  38955. default: true
  38956. },
  38957. {
  38958. name: "Macro",
  38959. height: math.unit(128, "feet")
  38960. },
  38961. {
  38962. name: "Megamacro",
  38963. height: math.unit(2.56, "miles")
  38964. },
  38965. ]
  38966. ))
  38967. characterMakers.push(() => makeCharacter(
  38968. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38969. {
  38970. front: {
  38971. height: math.unit(7, "feet"),
  38972. name: "Front",
  38973. image: {
  38974. source: "./media/characters/fox/front.svg",
  38975. extra: 1798/1703,
  38976. bottom: 55/1853
  38977. }
  38978. },
  38979. back: {
  38980. height: math.unit(7, "feet"),
  38981. name: "Back",
  38982. image: {
  38983. source: "./media/characters/fox/back.svg",
  38984. extra: 1748/1649,
  38985. bottom: 32/1780
  38986. }
  38987. },
  38988. head: {
  38989. height: math.unit(1.95, "feet"),
  38990. name: "Head",
  38991. image: {
  38992. source: "./media/characters/fox/head.svg"
  38993. }
  38994. },
  38995. dick: {
  38996. height: math.unit(1.33, "feet"),
  38997. name: "Dick",
  38998. image: {
  38999. source: "./media/characters/fox/dick.svg"
  39000. }
  39001. },
  39002. foot: {
  39003. height: math.unit(1, "feet"),
  39004. name: "Foot",
  39005. image: {
  39006. source: "./media/characters/fox/foot.svg"
  39007. }
  39008. },
  39009. paw: {
  39010. height: math.unit(0.92, "feet"),
  39011. name: "Paw",
  39012. image: {
  39013. source: "./media/characters/fox/paw.svg"
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Small",
  39020. height: math.unit(3, "inches")
  39021. },
  39022. {
  39023. name: "\"Realistic\"",
  39024. height: math.unit(7, "feet")
  39025. },
  39026. {
  39027. name: "Normal",
  39028. height: math.unit(150, "feet"),
  39029. default: true
  39030. },
  39031. {
  39032. name: "BIG",
  39033. height: math.unit(1200, "feet")
  39034. },
  39035. {
  39036. name: "👀",
  39037. height: math.unit(5, "miles")
  39038. },
  39039. {
  39040. name: "👀👀👀",
  39041. height: math.unit(64, "miles")
  39042. },
  39043. ]
  39044. ))
  39045. characterMakers.push(() => makeCharacter(
  39046. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39047. {
  39048. front: {
  39049. height: math.unit(625, "feet"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/asonja-rossa/front.svg",
  39053. extra: 1833/1686,
  39054. bottom: 24/1857
  39055. }
  39056. },
  39057. back: {
  39058. height: math.unit(625, "feet"),
  39059. name: "Back",
  39060. image: {
  39061. source: "./media/characters/asonja-rossa/back.svg",
  39062. extra: 1852/1753,
  39063. bottom: 26/1878
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Macro",
  39070. height: math.unit(625, "feet"),
  39071. default: true
  39072. },
  39073. ]
  39074. ))
  39075. characterMakers.push(() => makeCharacter(
  39076. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39077. {
  39078. side: {
  39079. height: math.unit(8, "feet"),
  39080. name: "Side",
  39081. image: {
  39082. source: "./media/characters/rezukii/side.svg",
  39083. extra: 979/542,
  39084. bottom: 87/1066
  39085. }
  39086. },
  39087. sitting: {
  39088. height: math.unit(14.6, "feet"),
  39089. name: "Sitting",
  39090. image: {
  39091. source: "./media/characters/rezukii/sitting.svg",
  39092. extra: 1023/813,
  39093. bottom: 45/1068
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Tiny",
  39100. height: math.unit(2, "feet")
  39101. },
  39102. {
  39103. name: "Smol",
  39104. height: math.unit(4, "feet")
  39105. },
  39106. {
  39107. name: "Normal",
  39108. height: math.unit(8, "feet"),
  39109. default: true
  39110. },
  39111. {
  39112. name: "Big",
  39113. height: math.unit(12, "feet")
  39114. },
  39115. {
  39116. name: "Macro",
  39117. height: math.unit(30, "feet")
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(14, "feet"),
  39126. weight: math.unit(9.5, "tonnes"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/dawnheart/front.svg",
  39130. extra: 2792/2675,
  39131. bottom: 64/2856
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(14, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39145. {
  39146. front: {
  39147. height: math.unit(1.7, "m"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/gladi/front.svg",
  39151. extra: 1460/1362,
  39152. bottom: 19/1479
  39153. }
  39154. },
  39155. back: {
  39156. height: math.unit(1.7, "m"),
  39157. name: "Back",
  39158. image: {
  39159. source: "./media/characters/gladi/back.svg",
  39160. extra: 1459/1357,
  39161. bottom: 12/1471
  39162. }
  39163. },
  39164. feral: {
  39165. height: math.unit(2.05, "m"),
  39166. name: "Feral",
  39167. image: {
  39168. source: "./media/characters/gladi/feral.svg",
  39169. extra: 821/557,
  39170. bottom: 91/912
  39171. }
  39172. },
  39173. },
  39174. [
  39175. {
  39176. name: "Shortest",
  39177. height: math.unit(70, "cm")
  39178. },
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(1.7, "m")
  39182. },
  39183. {
  39184. name: "Macro",
  39185. height: math.unit(10, "m"),
  39186. default: true
  39187. },
  39188. {
  39189. name: "Tallest",
  39190. height: math.unit(200, "m")
  39191. },
  39192. ]
  39193. ))
  39194. characterMakers.push(() => makeCharacter(
  39195. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39196. {
  39197. front: {
  39198. height: math.unit(5 + 7/12, "feet"),
  39199. weight: math.unit(2, "tons"),
  39200. name: "Front",
  39201. image: {
  39202. source: "./media/characters/erdno/front.svg",
  39203. extra: 1234/1129,
  39204. bottom: 35/1269
  39205. }
  39206. },
  39207. angled: {
  39208. height: math.unit(5 + 7/12, "feet"),
  39209. weight: math.unit(2, "tons"),
  39210. name: "Angled",
  39211. image: {
  39212. source: "./media/characters/erdno/angled.svg",
  39213. extra: 1185/1139,
  39214. bottom: 36/1221
  39215. }
  39216. },
  39217. side: {
  39218. height: math.unit(5 + 7/12, "feet"),
  39219. weight: math.unit(2, "tons"),
  39220. name: "Side",
  39221. image: {
  39222. source: "./media/characters/erdno/side.svg",
  39223. extra: 1191/1144,
  39224. bottom: 40/1231
  39225. }
  39226. },
  39227. back: {
  39228. height: math.unit(5 + 7/12, "feet"),
  39229. weight: math.unit(2, "tons"),
  39230. name: "Back",
  39231. image: {
  39232. source: "./media/characters/erdno/back.svg",
  39233. extra: 1202/1146,
  39234. bottom: 17/1219
  39235. }
  39236. },
  39237. frontNsfw: {
  39238. height: math.unit(5 + 7/12, "feet"),
  39239. weight: math.unit(2, "tons"),
  39240. name: "Front (NSFW)",
  39241. image: {
  39242. source: "./media/characters/erdno/front-nsfw.svg",
  39243. extra: 1234/1129,
  39244. bottom: 35/1269
  39245. }
  39246. },
  39247. angledNsfw: {
  39248. height: math.unit(5 + 7/12, "feet"),
  39249. weight: math.unit(2, "tons"),
  39250. name: "Angled (NSFW)",
  39251. image: {
  39252. source: "./media/characters/erdno/angled-nsfw.svg",
  39253. extra: 1185/1139,
  39254. bottom: 36/1221
  39255. }
  39256. },
  39257. sideNsfw: {
  39258. height: math.unit(5 + 7/12, "feet"),
  39259. weight: math.unit(2, "tons"),
  39260. name: "Side (NSFW)",
  39261. image: {
  39262. source: "./media/characters/erdno/side-nsfw.svg",
  39263. extra: 1191/1144,
  39264. bottom: 40/1231
  39265. }
  39266. },
  39267. backNsfw: {
  39268. height: math.unit(5 + 7/12, "feet"),
  39269. weight: math.unit(2, "tons"),
  39270. name: "Back (NSFW)",
  39271. image: {
  39272. source: "./media/characters/erdno/back-nsfw.svg",
  39273. extra: 1202/1146,
  39274. bottom: 17/1219
  39275. }
  39276. },
  39277. frontHyper: {
  39278. height: math.unit(5 + 7/12, "feet"),
  39279. weight: math.unit(2, "tons"),
  39280. name: "Front (Hyper)",
  39281. image: {
  39282. source: "./media/characters/erdno/front-hyper.svg",
  39283. extra: 1298/1136,
  39284. bottom: 35/1333
  39285. }
  39286. },
  39287. },
  39288. [
  39289. {
  39290. name: "Normal",
  39291. height: math.unit(5 + 7/12, "feet"),
  39292. default: true
  39293. },
  39294. {
  39295. name: "Big",
  39296. height: math.unit(5.7, "meters")
  39297. },
  39298. {
  39299. name: "Macro",
  39300. height: math.unit(5.7, "kilometers")
  39301. },
  39302. {
  39303. name: "Megamacro",
  39304. height: math.unit(5.7, "earths")
  39305. },
  39306. ]
  39307. ))
  39308. characterMakers.push(() => makeCharacter(
  39309. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39310. {
  39311. front: {
  39312. height: math.unit(5 + 10/12, "feet"),
  39313. weight: math.unit(150, "lb"),
  39314. name: "Front",
  39315. image: {
  39316. source: "./media/characters/jamie/front.svg",
  39317. extra: 1908/1768,
  39318. bottom: 19/1927
  39319. }
  39320. },
  39321. },
  39322. [
  39323. {
  39324. name: "Minimum",
  39325. height: math.unit(2, "cm")
  39326. },
  39327. {
  39328. name: "Micro",
  39329. height: math.unit(3, "inches")
  39330. },
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(5 + 10/12, "feet"),
  39334. default: true
  39335. },
  39336. {
  39337. name: "Macro",
  39338. height: math.unit(150, "feet")
  39339. },
  39340. {
  39341. name: "Megamacro",
  39342. height: math.unit(10000, "m")
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(2, "meters"),
  39351. weight: math.unit(100, "kg"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/shiron/front.svg",
  39355. extra: 2103/1985,
  39356. bottom: 98/2201
  39357. }
  39358. },
  39359. back: {
  39360. height: math.unit(2, "meters"),
  39361. weight: math.unit(100, "kg"),
  39362. name: "Back",
  39363. image: {
  39364. source: "./media/characters/shiron/back.svg",
  39365. extra: 2110/2015,
  39366. bottom: 89/2199
  39367. }
  39368. },
  39369. hand: {
  39370. height: math.unit(0.96, "feet"),
  39371. name: "Hand",
  39372. image: {
  39373. source: "./media/characters/shiron/hand.svg"
  39374. }
  39375. },
  39376. foot: {
  39377. height: math.unit(1.464, "feet"),
  39378. name: "Foot",
  39379. image: {
  39380. source: "./media/characters/shiron/foot.svg"
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Normal",
  39387. height: math.unit(2, "meters")
  39388. },
  39389. {
  39390. name: "Macro",
  39391. height: math.unit(500, "meters"),
  39392. default: true
  39393. },
  39394. {
  39395. name: "Megamacro",
  39396. height: math.unit(20, "km")
  39397. },
  39398. ]
  39399. ))
  39400. characterMakers.push(() => makeCharacter(
  39401. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39402. {
  39403. front: {
  39404. height: math.unit(6, "feet"),
  39405. name: "Front",
  39406. image: {
  39407. source: "./media/characters/sam/front.svg",
  39408. extra: 849/826,
  39409. bottom: 19/868
  39410. }
  39411. },
  39412. },
  39413. [
  39414. {
  39415. name: "Normal",
  39416. height: math.unit(6, "feet"),
  39417. default: true
  39418. },
  39419. ]
  39420. ))
  39421. characterMakers.push(() => makeCharacter(
  39422. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39423. {
  39424. front: {
  39425. height: math.unit(8 + 4/12, "feet"),
  39426. weight: math.unit(122, "kg"),
  39427. name: "Front",
  39428. image: {
  39429. source: "./media/characters/namori-kurogawa/front.svg",
  39430. extra: 1894/1576,
  39431. bottom: 34/1928
  39432. }
  39433. },
  39434. },
  39435. [
  39436. {
  39437. name: "Normal",
  39438. height: math.unit(8 + 4/12, "feet"),
  39439. default: true
  39440. },
  39441. ]
  39442. ))
  39443. characterMakers.push(() => makeCharacter(
  39444. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39445. {
  39446. front: {
  39447. height: math.unit(9, "feet"),
  39448. weight: math.unit(621, "lb"),
  39449. name: "Front",
  39450. image: {
  39451. source: "./media/characters/unmru/front.svg",
  39452. extra: 1853/1747,
  39453. bottom: 73/1926
  39454. }
  39455. },
  39456. side: {
  39457. height: math.unit(9, "feet"),
  39458. weight: math.unit(621, "lb"),
  39459. name: "Side",
  39460. image: {
  39461. source: "./media/characters/unmru/side.svg",
  39462. extra: 1781/1671,
  39463. bottom: 127/1908
  39464. }
  39465. },
  39466. back: {
  39467. height: math.unit(9, "feet"),
  39468. weight: math.unit(621, "lb"),
  39469. name: "Back",
  39470. image: {
  39471. source: "./media/characters/unmru/back.svg",
  39472. extra: 1894/1765,
  39473. bottom: 75/1969
  39474. }
  39475. },
  39476. dick: {
  39477. height: math.unit(3, "feet"),
  39478. weight: math.unit(35, "lb"),
  39479. name: "Dick",
  39480. image: {
  39481. source: "./media/characters/unmru/dick.svg"
  39482. }
  39483. },
  39484. },
  39485. [
  39486. {
  39487. name: "Normal",
  39488. height: math.unit(9, "feet")
  39489. },
  39490. {
  39491. name: "Natural",
  39492. height: math.unit(27, "feet"),
  39493. default: true
  39494. },
  39495. {
  39496. name: "Giant",
  39497. height: math.unit(90, "feet")
  39498. },
  39499. {
  39500. name: "Kaiju",
  39501. height: math.unit(270, "feet")
  39502. },
  39503. {
  39504. name: "Macro",
  39505. height: math.unit(900, "feet")
  39506. },
  39507. {
  39508. name: "Macro+",
  39509. height: math.unit(2700, "feet")
  39510. },
  39511. {
  39512. name: "Megamacro",
  39513. height: math.unit(9000, "feet")
  39514. },
  39515. {
  39516. name: "City-Crushing",
  39517. height: math.unit(27000, "feet")
  39518. },
  39519. {
  39520. name: "Mountain-Mashing",
  39521. height: math.unit(90000, "feet")
  39522. },
  39523. {
  39524. name: "Earth-Eclipsing",
  39525. height: math.unit(2.7e8, "feet")
  39526. },
  39527. {
  39528. name: "Sol-Swallowing",
  39529. height: math.unit(9e10, "feet")
  39530. },
  39531. {
  39532. name: "Majoris-Munching",
  39533. height: math.unit(2.7e13, "feet")
  39534. },
  39535. ]
  39536. ))
  39537. characterMakers.push(() => makeCharacter(
  39538. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39539. {
  39540. front: {
  39541. height: math.unit(1, "inch"),
  39542. name: "Front",
  39543. image: {
  39544. source: "./media/characters/squeaks-mouse/front.svg",
  39545. extra: 352/308,
  39546. bottom: 25/377
  39547. }
  39548. },
  39549. },
  39550. [
  39551. {
  39552. name: "Micro",
  39553. height: math.unit(1, "inch"),
  39554. default: true
  39555. },
  39556. ]
  39557. ))
  39558. characterMakers.push(() => makeCharacter(
  39559. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39560. {
  39561. side: {
  39562. height: math.unit(35, "feet"),
  39563. name: "Side",
  39564. image: {
  39565. source: "./media/characters/sayko/side.svg",
  39566. extra: 1697/1021,
  39567. bottom: 82/1779
  39568. }
  39569. },
  39570. head: {
  39571. height: math.unit(16, "feet"),
  39572. name: "Head",
  39573. image: {
  39574. source: "./media/characters/sayko/head.svg"
  39575. }
  39576. },
  39577. forepaw: {
  39578. height: math.unit(7.85, "feet"),
  39579. name: "Forepaw",
  39580. image: {
  39581. source: "./media/characters/sayko/forepaw.svg"
  39582. }
  39583. },
  39584. hindpaw: {
  39585. height: math.unit(8.8, "feet"),
  39586. name: "Hindpaw",
  39587. image: {
  39588. source: "./media/characters/sayko/hindpaw.svg"
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Normal",
  39595. height: math.unit(35, "feet"),
  39596. default: true
  39597. },
  39598. {
  39599. name: "Colossus",
  39600. height: math.unit(100, "meters")
  39601. },
  39602. {
  39603. name: "\"Small\" Deity",
  39604. height: math.unit(1, "km")
  39605. },
  39606. {
  39607. name: "\"Large\" Deity",
  39608. height: math.unit(15, "km")
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(6, "feet"),
  39617. weight: math.unit(250, "lb"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/mukiro/front.svg",
  39621. extra: 1368/1310,
  39622. bottom: 34/1402
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(6, "feet"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(12 + 4/12, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39642. extra: 1346/1311,
  39643. bottom: 65/1411
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Base",
  39650. height: math.unit(12 + 4/12, "feet"),
  39651. default: true
  39652. },
  39653. {
  39654. name: "Macro",
  39655. height: math.unit(150, "feet")
  39656. },
  39657. {
  39658. name: "Mega",
  39659. height: math.unit(2, "miles")
  39660. },
  39661. {
  39662. name: "Demi God",
  39663. height: math.unit(4, "AU")
  39664. },
  39665. {
  39666. name: "God Size",
  39667. height: math.unit(1, "universe")
  39668. },
  39669. ]
  39670. ))
  39671. characterMakers.push(() => makeCharacter(
  39672. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39673. {
  39674. front: {
  39675. height: math.unit(3 + 3/12, "feet"),
  39676. weight: math.unit(88, "lb"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/trey/front.svg",
  39680. extra: 1815/1509,
  39681. bottom: 60/1875
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(3 + 3/12, "feet"),
  39689. default: true
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39695. {
  39696. front: {
  39697. height: math.unit(4, "meters"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/adelonda/front.svg",
  39701. extra: 1077/982,
  39702. bottom: 39/1116
  39703. }
  39704. },
  39705. back: {
  39706. height: math.unit(4, "meters"),
  39707. name: "Back",
  39708. image: {
  39709. source: "./media/characters/adelonda/back.svg",
  39710. extra: 1105/1003,
  39711. bottom: 25/1130
  39712. }
  39713. },
  39714. feral: {
  39715. height: math.unit(40/1.5, "meters"),
  39716. name: "Feral",
  39717. image: {
  39718. source: "./media/characters/adelonda/feral.svg",
  39719. extra: 597/271,
  39720. bottom: 387/984
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Normal",
  39727. height: math.unit(4, "meters"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39734. {
  39735. front: {
  39736. height: math.unit(8 + 4/12, "feet"),
  39737. weight: math.unit(670, "lb"),
  39738. name: "Front",
  39739. image: {
  39740. source: "./media/characters/acadiel/front.svg",
  39741. extra: 1901/1595,
  39742. bottom: 142/2043
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Normal",
  39749. height: math.unit(8 + 4/12, "feet"),
  39750. default: true
  39751. },
  39752. {
  39753. name: "Macro",
  39754. height: math.unit(200, "feet")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(6 + 2/12, "feet"),
  39763. weight: math.unit(185, "lb"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/kayne-ein/front.svg",
  39767. extra: 1780/1560,
  39768. bottom: 81/1861
  39769. }
  39770. },
  39771. },
  39772. [
  39773. {
  39774. name: "Normal",
  39775. height: math.unit(6 + 2/12, "feet"),
  39776. default: true
  39777. },
  39778. {
  39779. name: "Transformation Stage",
  39780. height: math.unit(15, "feet")
  39781. },
  39782. {
  39783. name: "Macro",
  39784. height: math.unit(150, "feet")
  39785. },
  39786. {
  39787. name: "Earth's Shadow",
  39788. height: math.unit(6200, "miles")
  39789. },
  39790. {
  39791. name: "Universal Demon",
  39792. height: math.unit(28e9, "parsecs")
  39793. },
  39794. {
  39795. name: "Multiverse God",
  39796. height: math.unit(3, "multiverses")
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39802. {
  39803. front: {
  39804. height: math.unit(5 + 5/12, "feet"),
  39805. name: "Front",
  39806. image: {
  39807. source: "./media/characters/fawn/front.svg",
  39808. extra: 1873/1731,
  39809. bottom: 95/1968
  39810. }
  39811. },
  39812. back: {
  39813. height: math.unit(5 + 5/12, "feet"),
  39814. name: "Back",
  39815. image: {
  39816. source: "./media/characters/fawn/back.svg",
  39817. extra: 1813/1700,
  39818. bottom: 14/1827
  39819. }
  39820. },
  39821. hoof: {
  39822. height: math.unit(1.45, "feet"),
  39823. name: "Hoof",
  39824. image: {
  39825. source: "./media/characters/fawn/hoof.svg"
  39826. }
  39827. },
  39828. },
  39829. [
  39830. {
  39831. name: "Normal",
  39832. height: math.unit(5 + 5/12, "feet"),
  39833. default: true
  39834. },
  39835. ]
  39836. ))
  39837. characterMakers.push(() => makeCharacter(
  39838. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39839. {
  39840. front: {
  39841. height: math.unit(2 + 5/12, "feet"),
  39842. name: "Front",
  39843. image: {
  39844. source: "./media/characters/orion/front.svg",
  39845. extra: 1366/1304,
  39846. bottom: 43/1409
  39847. }
  39848. },
  39849. paw: {
  39850. height: math.unit(0.52, "feet"),
  39851. name: "Paw",
  39852. image: {
  39853. source: "./media/characters/orion/paw.svg"
  39854. }
  39855. },
  39856. },
  39857. [
  39858. {
  39859. name: "Normal",
  39860. height: math.unit(2 + 5/12, "feet"),
  39861. default: true
  39862. },
  39863. ]
  39864. ))
  39865. characterMakers.push(() => makeCharacter(
  39866. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39867. {
  39868. front: {
  39869. height: math.unit(5 + 10/12, "feet"),
  39870. name: "Front",
  39871. image: {
  39872. source: "./media/characters/vera/front.svg",
  39873. extra: 1680/1575,
  39874. bottom: 49/1729
  39875. }
  39876. },
  39877. back: {
  39878. height: math.unit(5 + 10/12, "feet"),
  39879. name: "Back",
  39880. image: {
  39881. source: "./media/characters/vera/back.svg",
  39882. extra: 1700/1588,
  39883. bottom: 18/1718
  39884. }
  39885. },
  39886. arcanine: {
  39887. height: math.unit(6 + 8/12, "feet"),
  39888. name: "Arcanine",
  39889. image: {
  39890. source: "./media/characters/vera/arcanine.svg",
  39891. extra: 1590/1511,
  39892. bottom: 71/1661
  39893. }
  39894. },
  39895. maw: {
  39896. height: math.unit(0.82, "feet"),
  39897. name: "Maw",
  39898. image: {
  39899. source: "./media/characters/vera/maw.svg"
  39900. }
  39901. },
  39902. mawArcanine: {
  39903. height: math.unit(0.97, "feet"),
  39904. name: "Maw (Arcanine)",
  39905. image: {
  39906. source: "./media/characters/vera/maw-arcanine.svg"
  39907. }
  39908. },
  39909. paw: {
  39910. height: math.unit(0.75, "feet"),
  39911. name: "Paw",
  39912. image: {
  39913. source: "./media/characters/vera/paw.svg"
  39914. }
  39915. },
  39916. pawprint: {
  39917. height: math.unit(0.52, "feet"),
  39918. name: "Pawprint",
  39919. image: {
  39920. source: "./media/characters/vera/pawprint.svg"
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(5 + 10/12, "feet"),
  39928. default: true
  39929. },
  39930. {
  39931. name: "Macro",
  39932. height: math.unit(75, "feet")
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(4, "feet"),
  39941. weight: math.unit(40, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/orvan-rabbit/front.svg",
  39945. extra: 1896/1642,
  39946. bottom: 29/1925
  39947. }
  39948. },
  39949. },
  39950. [
  39951. {
  39952. name: "Normal",
  39953. height: math.unit(4, "feet"),
  39954. default: true
  39955. },
  39956. ]
  39957. ))
  39958. characterMakers.push(() => makeCharacter(
  39959. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39960. {
  39961. front: {
  39962. height: math.unit(6, "feet"),
  39963. weight: math.unit(168, "lb"),
  39964. name: "Front",
  39965. image: {
  39966. source: "./media/characters/lisa/front.svg",
  39967. extra: 2065/1867,
  39968. bottom: 46/2111
  39969. }
  39970. },
  39971. back: {
  39972. height: math.unit(6, "feet"),
  39973. weight: math.unit(168, "lb"),
  39974. name: "Back",
  39975. image: {
  39976. source: "./media/characters/lisa/back.svg",
  39977. extra: 1982/1838,
  39978. bottom: 29/2011
  39979. }
  39980. },
  39981. maw: {
  39982. height: math.unit(0.81, "feet"),
  39983. name: "Maw",
  39984. image: {
  39985. source: "./media/characters/lisa/maw.svg"
  39986. }
  39987. },
  39988. paw: {
  39989. height: math.unit(0.9, "feet"),
  39990. name: "Paw",
  39991. image: {
  39992. source: "./media/characters/lisa/paw.svg"
  39993. }
  39994. },
  39995. caribousune: {
  39996. height: math.unit(7 + 2/12, "feet"),
  39997. weight: math.unit(268, "lb"),
  39998. name: "Caribousune",
  39999. image: {
  40000. source: "./media/characters/lisa/caribousune.svg",
  40001. extra: 1843/1633,
  40002. bottom: 29/1872
  40003. }
  40004. },
  40005. frontCaribousune: {
  40006. height: math.unit(7 + 2/12, "feet"),
  40007. weight: math.unit(268, "lb"),
  40008. name: "Front (Caribousune)",
  40009. image: {
  40010. source: "./media/characters/lisa/front-caribousune.svg",
  40011. extra: 1818/1638,
  40012. bottom: 52/1870
  40013. }
  40014. },
  40015. sideCaribousune: {
  40016. height: math.unit(7 + 2/12, "feet"),
  40017. weight: math.unit(268, "lb"),
  40018. name: "Side (Caribousune)",
  40019. image: {
  40020. source: "./media/characters/lisa/side-caribousune.svg",
  40021. extra: 1851/1635,
  40022. bottom: 16/1867
  40023. }
  40024. },
  40025. backCaribousune: {
  40026. height: math.unit(7 + 2/12, "feet"),
  40027. weight: math.unit(268, "lb"),
  40028. name: "Back (Caribousune)",
  40029. image: {
  40030. source: "./media/characters/lisa/back-caribousune.svg",
  40031. extra: 1801/1604,
  40032. bottom: 44/1845
  40033. }
  40034. },
  40035. caribou: {
  40036. height: math.unit(7 + 2/12, "feet"),
  40037. weight: math.unit(268, "lb"),
  40038. name: "Caribou",
  40039. image: {
  40040. source: "./media/characters/lisa/caribou.svg",
  40041. extra: 1843/1633,
  40042. bottom: 29/1872
  40043. }
  40044. },
  40045. frontCaribou: {
  40046. height: math.unit(7 + 2/12, "feet"),
  40047. weight: math.unit(268, "lb"),
  40048. name: "Front (Caribou)",
  40049. image: {
  40050. source: "./media/characters/lisa/front-caribou.svg",
  40051. extra: 1818/1638,
  40052. bottom: 52/1870
  40053. }
  40054. },
  40055. sideCaribou: {
  40056. height: math.unit(7 + 2/12, "feet"),
  40057. weight: math.unit(268, "lb"),
  40058. name: "Side (Caribou)",
  40059. image: {
  40060. source: "./media/characters/lisa/side-caribou.svg",
  40061. extra: 1851/1635,
  40062. bottom: 16/1867
  40063. }
  40064. },
  40065. backCaribou: {
  40066. height: math.unit(7 + 2/12, "feet"),
  40067. weight: math.unit(268, "lb"),
  40068. name: "Back (Caribou)",
  40069. image: {
  40070. source: "./media/characters/lisa/back-caribou.svg",
  40071. extra: 1801/1604,
  40072. bottom: 44/1845
  40073. }
  40074. },
  40075. mawCaribou: {
  40076. height: math.unit(1.45, "feet"),
  40077. name: "Maw (Caribou)",
  40078. image: {
  40079. source: "./media/characters/lisa/maw-caribou.svg"
  40080. }
  40081. },
  40082. mawCaribousune: {
  40083. height: math.unit(1.45, "feet"),
  40084. name: "Maw (Caribousune)",
  40085. image: {
  40086. source: "./media/characters/lisa/maw-caribousune.svg"
  40087. }
  40088. },
  40089. pawCaribousune: {
  40090. height: math.unit(1.61, "feet"),
  40091. name: "Paw (Caribou)",
  40092. image: {
  40093. source: "./media/characters/lisa/paw-caribousune.svg"
  40094. }
  40095. },
  40096. },
  40097. [
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(6, "feet")
  40101. },
  40102. {
  40103. name: "God Size",
  40104. height: math.unit(72, "feet"),
  40105. default: true
  40106. },
  40107. {
  40108. name: "Towering",
  40109. height: math.unit(288, "feet")
  40110. },
  40111. {
  40112. name: "City Size",
  40113. height: math.unit(48384, "feet")
  40114. },
  40115. {
  40116. name: "Continental",
  40117. height: math.unit(4200, "miles")
  40118. },
  40119. {
  40120. name: "Planet Eater",
  40121. height: math.unit(42, "earths")
  40122. },
  40123. {
  40124. name: "Star Swallower",
  40125. height: math.unit(42, "solarradii")
  40126. },
  40127. {
  40128. name: "System Swallower",
  40129. height: math.unit(84000, "AU")
  40130. },
  40131. {
  40132. name: "Galaxy Gobbler",
  40133. height: math.unit(42, "galaxies")
  40134. },
  40135. {
  40136. name: "Universe Devourer",
  40137. height: math.unit(42, "universes")
  40138. },
  40139. {
  40140. name: "Multiverse Muncher",
  40141. height: math.unit(42, "multiverses")
  40142. },
  40143. ]
  40144. ))
  40145. characterMakers.push(() => makeCharacter(
  40146. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40147. {
  40148. front: {
  40149. height: math.unit(36, "feet"),
  40150. name: "Front",
  40151. image: {
  40152. source: "./media/characters/shadow-rat/front.svg",
  40153. extra: 1845/1758,
  40154. bottom: 83/1928
  40155. }
  40156. },
  40157. },
  40158. [
  40159. {
  40160. name: "Macro",
  40161. height: math.unit(36, "feet"),
  40162. default: true
  40163. },
  40164. ]
  40165. ))
  40166. characterMakers.push(() => makeCharacter(
  40167. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40168. {
  40169. side: {
  40170. height: math.unit(8, "feet"),
  40171. weight: math.unit(2630, "lb"),
  40172. name: "Side",
  40173. image: {
  40174. source: "./media/characters/torallia/side.svg",
  40175. extra: 2164/2021,
  40176. bottom: 371/2535
  40177. }
  40178. },
  40179. },
  40180. [
  40181. {
  40182. name: "Mortal Interaction",
  40183. height: math.unit(8, "feet")
  40184. },
  40185. {
  40186. name: "Natural",
  40187. height: math.unit(24, "feet"),
  40188. default: true
  40189. },
  40190. {
  40191. name: "Giant",
  40192. height: math.unit(80, "feet")
  40193. },
  40194. {
  40195. name: "Kaiju",
  40196. height: math.unit(240, "feet")
  40197. },
  40198. {
  40199. name: "Macro",
  40200. height: math.unit(800, "feet")
  40201. },
  40202. {
  40203. name: "Macro+",
  40204. height: math.unit(2400, "feet")
  40205. },
  40206. {
  40207. name: "Macro++",
  40208. height: math.unit(8000, "feet")
  40209. },
  40210. {
  40211. name: "City-Crushing",
  40212. height: math.unit(24000, "feet")
  40213. },
  40214. {
  40215. name: "Mountain-Mashing",
  40216. height: math.unit(80000, "feet")
  40217. },
  40218. {
  40219. name: "District Demolisher",
  40220. height: math.unit(240000, "feet")
  40221. },
  40222. {
  40223. name: "Tri-County Terror",
  40224. height: math.unit(800000, "feet")
  40225. },
  40226. {
  40227. name: "State Smasher",
  40228. height: math.unit(2.4e6, "feet")
  40229. },
  40230. {
  40231. name: "Nation Nemesis",
  40232. height: math.unit(8e6, "feet")
  40233. },
  40234. {
  40235. name: "Continent Cracker",
  40236. height: math.unit(2.4e7, "feet")
  40237. },
  40238. {
  40239. name: "Planet-Pillaging",
  40240. height: math.unit(8e7, "feet")
  40241. },
  40242. {
  40243. name: "Earth-Eclipsing",
  40244. height: math.unit(2.4e8, "feet")
  40245. },
  40246. {
  40247. name: "Jovian-Jostling",
  40248. height: math.unit(8e8, "feet")
  40249. },
  40250. {
  40251. name: "Gas Giant Gulper",
  40252. height: math.unit(2.4e9, "feet")
  40253. },
  40254. {
  40255. name: "Astral Annihilator",
  40256. height: math.unit(8e9, "feet")
  40257. },
  40258. {
  40259. name: "Celestial Conqueror",
  40260. height: math.unit(2.4e10, "feet")
  40261. },
  40262. {
  40263. name: "Sol-Swallowing",
  40264. height: math.unit(8e10, "feet")
  40265. },
  40266. {
  40267. name: "Hunter of the Heavens",
  40268. height: math.unit(2.4e13, "feet")
  40269. },
  40270. ]
  40271. ))
  40272. characterMakers.push(() => makeCharacter(
  40273. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40274. {
  40275. front: {
  40276. height: math.unit(6 + 8/12, "feet"),
  40277. weight: math.unit(250, "kilograms"),
  40278. volume: math.unit(28, "liters"),
  40279. name: "Front",
  40280. image: {
  40281. source: "./media/characters/rebecca-pawlson/front.svg",
  40282. extra: 1737/1596,
  40283. bottom: 107/1844
  40284. }
  40285. },
  40286. back: {
  40287. height: math.unit(6 + 8/12, "feet"),
  40288. weight: math.unit(250, "kilograms"),
  40289. volume: math.unit(28, "liters"),
  40290. name: "Back",
  40291. image: {
  40292. source: "./media/characters/rebecca-pawlson/back.svg",
  40293. extra: 1702/1523,
  40294. bottom: 86/1788
  40295. }
  40296. },
  40297. },
  40298. [
  40299. {
  40300. name: "Normal",
  40301. height: math.unit(6 + 8/12, "feet")
  40302. },
  40303. {
  40304. name: "Mini Macro",
  40305. height: math.unit(10, "feet"),
  40306. default: true
  40307. },
  40308. {
  40309. name: "Macro",
  40310. height: math.unit(100, "feet")
  40311. },
  40312. {
  40313. name: "Mega Macro",
  40314. height: math.unit(2500, "feet")
  40315. },
  40316. {
  40317. name: "Giga Macro",
  40318. height: math.unit(50, "miles")
  40319. },
  40320. ]
  40321. ))
  40322. characterMakers.push(() => makeCharacter(
  40323. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40324. {
  40325. front: {
  40326. height: math.unit(7 + 6/12, "feet"),
  40327. weight: math.unit(600, "lb"),
  40328. name: "Front",
  40329. image: {
  40330. source: "./media/characters/moxie-nova/front.svg",
  40331. extra: 1734/1652,
  40332. bottom: 41/1775
  40333. }
  40334. },
  40335. },
  40336. [
  40337. {
  40338. name: "Normal",
  40339. height: math.unit(7 + 6/12, "feet"),
  40340. default: true
  40341. },
  40342. ]
  40343. ))
  40344. characterMakers.push(() => makeCharacter(
  40345. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40346. {
  40347. goat: {
  40348. height: math.unit(4, "feet"),
  40349. weight: math.unit(180, "lb"),
  40350. name: "Goat",
  40351. image: {
  40352. source: "./media/characters/tiffany/goat.svg",
  40353. extra: 1845/1595,
  40354. bottom: 106/1951
  40355. }
  40356. },
  40357. front: {
  40358. height: math.unit(5, "feet"),
  40359. weight: math.unit(150, "lb"),
  40360. name: "Foxcoon",
  40361. image: {
  40362. source: "./media/characters/tiffany/foxcoon.svg",
  40363. extra: 1941/1845,
  40364. bottom: 58/1999
  40365. }
  40366. },
  40367. },
  40368. [
  40369. {
  40370. name: "Normal",
  40371. height: math.unit(5, "feet"),
  40372. default: true
  40373. },
  40374. ]
  40375. ))
  40376. characterMakers.push(() => makeCharacter(
  40377. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40378. {
  40379. front: {
  40380. height: math.unit(8, "feet"),
  40381. weight: math.unit(300, "lb"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/raxinath/front.svg",
  40385. extra: 1407/1309,
  40386. bottom: 39/1446
  40387. }
  40388. },
  40389. back: {
  40390. height: math.unit(8, "feet"),
  40391. weight: math.unit(300, "lb"),
  40392. name: "Back",
  40393. image: {
  40394. source: "./media/characters/raxinath/back.svg",
  40395. extra: 1405/1315,
  40396. bottom: 9/1414
  40397. }
  40398. },
  40399. },
  40400. [
  40401. {
  40402. name: "Speck",
  40403. height: math.unit(0.5, "nm")
  40404. },
  40405. {
  40406. name: "Micro",
  40407. height: math.unit(3, "inches")
  40408. },
  40409. {
  40410. name: "Kobold",
  40411. height: math.unit(3, "feet")
  40412. },
  40413. {
  40414. name: "Normal",
  40415. height: math.unit(8, "feet"),
  40416. default: true
  40417. },
  40418. {
  40419. name: "Giant",
  40420. height: math.unit(50, "feet")
  40421. },
  40422. {
  40423. name: "Macro",
  40424. height: math.unit(1000, "feet")
  40425. },
  40426. {
  40427. name: "Megamacro",
  40428. height: math.unit(1, "mile")
  40429. },
  40430. ]
  40431. ))
  40432. characterMakers.push(() => makeCharacter(
  40433. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40434. {
  40435. front: {
  40436. height: math.unit(10, "feet"),
  40437. weight: math.unit(1442, "lb"),
  40438. name: "Front",
  40439. image: {
  40440. source: "./media/characters/mal-dragon/front.svg",
  40441. extra: 1515/1444,
  40442. bottom: 113/1628
  40443. }
  40444. },
  40445. back: {
  40446. height: math.unit(10, "feet"),
  40447. weight: math.unit(1442, "lb"),
  40448. name: "Back",
  40449. image: {
  40450. source: "./media/characters/mal-dragon/back.svg",
  40451. extra: 1527/1434,
  40452. bottom: 25/1552
  40453. }
  40454. },
  40455. },
  40456. [
  40457. {
  40458. name: "Mortal Interaction",
  40459. height: math.unit(10, "feet"),
  40460. default: true
  40461. },
  40462. {
  40463. name: "Large",
  40464. height: math.unit(30, "feet")
  40465. },
  40466. {
  40467. name: "Kaiju",
  40468. height: math.unit(300, "feet")
  40469. },
  40470. {
  40471. name: "Megamacro",
  40472. height: math.unit(10000, "feet")
  40473. },
  40474. {
  40475. name: "Continent Cracker",
  40476. height: math.unit(30000000, "feet")
  40477. },
  40478. {
  40479. name: "Sol-Swallowing",
  40480. height: math.unit(1e11, "feet")
  40481. },
  40482. {
  40483. name: "Light Universal",
  40484. height: math.unit(5, "universes")
  40485. },
  40486. {
  40487. name: "Universe Atoms",
  40488. height: math.unit(1.829e9, "universes")
  40489. },
  40490. {
  40491. name: "Light Multiversal",
  40492. height: math.unit(5, "multiverses")
  40493. },
  40494. {
  40495. name: "Multiverse Atoms",
  40496. height: math.unit(1.829e9, "multiverses")
  40497. },
  40498. {
  40499. name: "Fabric of Time",
  40500. height: math.unit(1e262, "multiverses")
  40501. },
  40502. ]
  40503. ))
  40504. characterMakers.push(() => makeCharacter(
  40505. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40506. {
  40507. front: {
  40508. height: math.unit(9, "feet"),
  40509. weight: math.unit(1050, "lb"),
  40510. name: "Front",
  40511. image: {
  40512. source: "./media/characters/tabitha/front.svg",
  40513. extra: 2083/1994,
  40514. bottom: 68/2151
  40515. }
  40516. },
  40517. },
  40518. [
  40519. {
  40520. name: "Baseline",
  40521. height: math.unit(9, "feet"),
  40522. default: true
  40523. },
  40524. {
  40525. name: "Giant",
  40526. height: math.unit(90, "feet")
  40527. },
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(900, "feet")
  40531. },
  40532. {
  40533. name: "Megamacro",
  40534. height: math.unit(9000, "feet")
  40535. },
  40536. {
  40537. name: "City-Crushing",
  40538. height: math.unit(27000, "feet")
  40539. },
  40540. {
  40541. name: "Mountain-Mashing",
  40542. height: math.unit(90000, "feet")
  40543. },
  40544. {
  40545. name: "Nation Nemesis",
  40546. height: math.unit(9e6, "feet")
  40547. },
  40548. {
  40549. name: "Continent Cracker",
  40550. height: math.unit(27e6, "feet")
  40551. },
  40552. {
  40553. name: "Earth-Eclipsing",
  40554. height: math.unit(2.7e8, "feet")
  40555. },
  40556. {
  40557. name: "Gas Giant Gulper",
  40558. height: math.unit(2.7e9, "feet")
  40559. },
  40560. {
  40561. name: "Sol-Swallowing",
  40562. height: math.unit(9e10, "feet")
  40563. },
  40564. {
  40565. name: "Galaxy Gulper",
  40566. height: math.unit(9, "galaxies")
  40567. },
  40568. {
  40569. name: "Cosmos Churner",
  40570. height: math.unit(9, "universes")
  40571. },
  40572. ]
  40573. ))
  40574. characterMakers.push(() => makeCharacter(
  40575. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40576. {
  40577. front: {
  40578. height: math.unit(160, "cm"),
  40579. weight: math.unit(55, "kg"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/tow/front.svg",
  40583. extra: 1751/1722,
  40584. bottom: 74/1825
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Norm",
  40591. height: math.unit(160, "cm")
  40592. },
  40593. {
  40594. name: "Casual",
  40595. height: math.unit(3200, "m"),
  40596. default: true
  40597. },
  40598. {
  40599. name: "Show-Off",
  40600. height: math.unit(160, "km")
  40601. },
  40602. ]
  40603. ))
  40604. characterMakers.push(() => makeCharacter(
  40605. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40606. {
  40607. front: {
  40608. height: math.unit(7 + 11/12, "feet"),
  40609. weight: math.unit(342.8, "lb"),
  40610. name: "Front",
  40611. image: {
  40612. source: "./media/characters/vivian-orca-dragon/front.svg",
  40613. extra: 1890/1865,
  40614. bottom: 28/1918
  40615. }
  40616. },
  40617. },
  40618. [
  40619. {
  40620. name: "Micro",
  40621. height: math.unit(5, "inches")
  40622. },
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(7 + 11/12, "feet"),
  40626. default: true
  40627. },
  40628. {
  40629. name: "Macro",
  40630. height: math.unit(395 + 7/12, "feet")
  40631. },
  40632. ]
  40633. ))
  40634. characterMakers.push(() => makeCharacter(
  40635. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40636. {
  40637. side: {
  40638. height: math.unit(10, "feet"),
  40639. weight: math.unit(1442, "lb"),
  40640. name: "Side",
  40641. image: {
  40642. source: "./media/characters/lotherakon/side.svg",
  40643. extra: 1604/1497,
  40644. bottom: 89/1693
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Mortal Interaction",
  40651. height: math.unit(10, "feet")
  40652. },
  40653. {
  40654. name: "Large",
  40655. height: math.unit(30, "feet"),
  40656. default: true
  40657. },
  40658. {
  40659. name: "Giant",
  40660. height: math.unit(100, "feet")
  40661. },
  40662. {
  40663. name: "Kaiju",
  40664. height: math.unit(300, "feet")
  40665. },
  40666. {
  40667. name: "Macro",
  40668. height: math.unit(1000, "feet")
  40669. },
  40670. {
  40671. name: "Macro+",
  40672. height: math.unit(3000, "feet")
  40673. },
  40674. {
  40675. name: "Megamacro",
  40676. height: math.unit(10000, "feet")
  40677. },
  40678. {
  40679. name: "City-Crushing",
  40680. height: math.unit(30000, "feet")
  40681. },
  40682. {
  40683. name: "Continent Cracker",
  40684. height: math.unit(30e6, "feet")
  40685. },
  40686. {
  40687. name: "Earth Eclipsing",
  40688. height: math.unit(3e8, "feet")
  40689. },
  40690. {
  40691. name: "Gas Giant Gulper",
  40692. height: math.unit(3e9, "feet")
  40693. },
  40694. {
  40695. name: "Sol-Swallowing",
  40696. height: math.unit(1e11, "feet")
  40697. },
  40698. {
  40699. name: "System Swallower",
  40700. height: math.unit(3e14, "feet")
  40701. },
  40702. {
  40703. name: "Galaxy Gulper",
  40704. height: math.unit(10, "galaxies")
  40705. },
  40706. {
  40707. name: "Light Universal",
  40708. height: math.unit(5, "universes")
  40709. },
  40710. {
  40711. name: "Universe Palm",
  40712. height: math.unit(20, "universes")
  40713. },
  40714. {
  40715. name: "Light Multiversal",
  40716. height: math.unit(5, "multiverses")
  40717. },
  40718. {
  40719. name: "Multiverse Palm",
  40720. height: math.unit(20, "multiverses")
  40721. },
  40722. {
  40723. name: "Inferno Incarnate",
  40724. height: math.unit(1e7, "multiverses")
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(8, "feet"),
  40733. weight: math.unit(1200, "lb"),
  40734. name: "Front",
  40735. image: {
  40736. source: "./media/characters/malithee/front.svg",
  40737. extra: 1675/1640,
  40738. bottom: 162/1837
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Mortal Interaction",
  40745. height: math.unit(8, "feet"),
  40746. default: true
  40747. },
  40748. {
  40749. name: "Large",
  40750. height: math.unit(24, "feet")
  40751. },
  40752. {
  40753. name: "Kaiju",
  40754. height: math.unit(240, "feet")
  40755. },
  40756. {
  40757. name: "Megamacro",
  40758. height: math.unit(8000, "feet")
  40759. },
  40760. {
  40761. name: "Continent Cracker",
  40762. height: math.unit(24e6, "feet")
  40763. },
  40764. {
  40765. name: "Earth-Eclipsing",
  40766. height: math.unit(2.4e8, "feet")
  40767. },
  40768. {
  40769. name: "Sol-Swallowing",
  40770. height: math.unit(8e10, "feet")
  40771. },
  40772. {
  40773. name: "Galaxy Gulper",
  40774. height: math.unit(8, "galaxies")
  40775. },
  40776. {
  40777. name: "Light Universal",
  40778. height: math.unit(4, "universes")
  40779. },
  40780. {
  40781. name: "Universe Atoms",
  40782. height: math.unit(1.829e9, "universes")
  40783. },
  40784. {
  40785. name: "Light Multiversal",
  40786. height: math.unit(4, "multiverses")
  40787. },
  40788. {
  40789. name: "Multiverse Atoms",
  40790. height: math.unit(1.829e9, "multiverses")
  40791. },
  40792. {
  40793. name: "Nigh-Omnipresence",
  40794. height: math.unit(8e261, "multiverses")
  40795. },
  40796. ]
  40797. ))
  40798. characterMakers.push(() => makeCharacter(
  40799. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40800. {
  40801. front: {
  40802. height: math.unit(10, "feet"),
  40803. weight: math.unit(1500, "lb"),
  40804. name: "Front",
  40805. image: {
  40806. source: "./media/characters/miles-thestia/front.svg",
  40807. extra: 1812/1727,
  40808. bottom: 86/1898
  40809. }
  40810. },
  40811. back: {
  40812. height: math.unit(10, "feet"),
  40813. weight: math.unit(1500, "lb"),
  40814. name: "Back",
  40815. image: {
  40816. source: "./media/characters/miles-thestia/back.svg",
  40817. extra: 1799/1690,
  40818. bottom: 47/1846
  40819. }
  40820. },
  40821. frontNsfw: {
  40822. height: math.unit(10, "feet"),
  40823. weight: math.unit(1500, "lb"),
  40824. name: "Front (NSFW)",
  40825. image: {
  40826. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40827. extra: 1812/1727,
  40828. bottom: 86/1898
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Mini-Macro",
  40835. height: math.unit(10, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40842. {
  40843. front: {
  40844. height: math.unit(25, "feet"),
  40845. name: "Front",
  40846. image: {
  40847. source: "./media/characters/titan-s-wulf/front.svg",
  40848. extra: 1560/1484,
  40849. bottom: 76/1636
  40850. }
  40851. },
  40852. },
  40853. [
  40854. {
  40855. name: "Smallest",
  40856. height: math.unit(25, "feet"),
  40857. default: true
  40858. },
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(200, "feet")
  40862. },
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(200000, "feet")
  40866. },
  40867. {
  40868. name: "Multiversal Original",
  40869. height: math.unit(10000, "multiverses")
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(8, "feet"),
  40878. weight: math.unit(553, "lb"),
  40879. name: "Front",
  40880. image: {
  40881. source: "./media/characters/tawendeh/front.svg",
  40882. extra: 2365/2268,
  40883. bottom: 83/2448
  40884. }
  40885. },
  40886. frontClothed: {
  40887. height: math.unit(8, "feet"),
  40888. weight: math.unit(553, "lb"),
  40889. name: "Front (Clothed)",
  40890. image: {
  40891. source: "./media/characters/tawendeh/front-clothed.svg",
  40892. extra: 2365/2268,
  40893. bottom: 83/2448
  40894. }
  40895. },
  40896. back: {
  40897. height: math.unit(8, "feet"),
  40898. weight: math.unit(553, "lb"),
  40899. name: "Back",
  40900. image: {
  40901. source: "./media/characters/tawendeh/back.svg",
  40902. extra: 2397/2294,
  40903. bottom: 42/2439
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Mortal Interaction",
  40910. height: math.unit(8, "feet"),
  40911. default: true
  40912. },
  40913. {
  40914. name: "Giant",
  40915. height: math.unit(80, "feet")
  40916. },
  40917. {
  40918. name: "Macro",
  40919. height: math.unit(800, "feet")
  40920. },
  40921. {
  40922. name: "Megamacro",
  40923. height: math.unit(8000, "feet")
  40924. },
  40925. {
  40926. name: "City-Crushing",
  40927. height: math.unit(24000, "feet")
  40928. },
  40929. {
  40930. name: "Mountain-Mashing",
  40931. height: math.unit(80000, "feet")
  40932. },
  40933. {
  40934. name: "Nation Nemesis",
  40935. height: math.unit(8e6, "feet")
  40936. },
  40937. {
  40938. name: "Continent Cracker",
  40939. height: math.unit(24e6, "feet")
  40940. },
  40941. {
  40942. name: "Earth-Eclipsing",
  40943. height: math.unit(2.4e8, "feet")
  40944. },
  40945. {
  40946. name: "Gas Giant Gulper",
  40947. height: math.unit(2.4e9, "feet")
  40948. },
  40949. {
  40950. name: "Sol-Swallowing",
  40951. height: math.unit(8e10, "feet")
  40952. },
  40953. {
  40954. name: "Galaxy Gulper",
  40955. height: math.unit(8, "galaxies")
  40956. },
  40957. {
  40958. name: "Cosmos Churner",
  40959. height: math.unit(8, "universes")
  40960. },
  40961. {
  40962. name: "Omnipotent Otter",
  40963. height: math.unit(80, "universes")
  40964. },
  40965. ]
  40966. ))
  40967. characterMakers.push(() => makeCharacter(
  40968. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40969. {
  40970. front: {
  40971. height: math.unit(2.6, "meters"),
  40972. weight: math.unit(900, "kg"),
  40973. name: "Front",
  40974. image: {
  40975. source: "./media/characters/neesha/front.svg",
  40976. extra: 1803/1653,
  40977. bottom: 128/1931
  40978. }
  40979. },
  40980. },
  40981. [
  40982. {
  40983. name: "Normal",
  40984. height: math.unit(2.6, "meters"),
  40985. default: true
  40986. },
  40987. {
  40988. name: "Macro",
  40989. height: math.unit(50, "meters")
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40995. {
  40996. front: {
  40997. height: math.unit(5, "feet"),
  40998. weight: math.unit(185, "lb"),
  40999. name: "Front",
  41000. image: {
  41001. source: "./media/characters/kyera/front.svg",
  41002. extra: 1875/1790,
  41003. bottom: 96/1971
  41004. }
  41005. },
  41006. },
  41007. [
  41008. {
  41009. name: "Normal",
  41010. height: math.unit(5, "feet"),
  41011. default: true
  41012. },
  41013. ]
  41014. ))
  41015. characterMakers.push(() => makeCharacter(
  41016. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41017. {
  41018. front: {
  41019. height: math.unit(7 + 6/12, "feet"),
  41020. weight: math.unit(540, "lb"),
  41021. name: "Front",
  41022. image: {
  41023. source: "./media/characters/yuko/front.svg",
  41024. extra: 1282/1222,
  41025. bottom: 101/1383
  41026. }
  41027. },
  41028. frontClothed: {
  41029. height: math.unit(7 + 6/12, "feet"),
  41030. weight: math.unit(540, "lb"),
  41031. name: "Front (Clothed)",
  41032. image: {
  41033. source: "./media/characters/yuko/front-clothed.svg",
  41034. extra: 1282/1222,
  41035. bottom: 101/1383
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(7 + 6/12, "feet"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Macro",
  41047. height: math.unit(26 + 9/12, "feet")
  41048. },
  41049. {
  41050. name: "Megamacro",
  41051. height: math.unit(300, "feet")
  41052. },
  41053. {
  41054. name: "Gigamacro",
  41055. height: math.unit(5000, "feet")
  41056. },
  41057. {
  41058. name: "Planetary",
  41059. height: math.unit(10000, "miles")
  41060. },
  41061. ]
  41062. ))
  41063. characterMakers.push(() => makeCharacter(
  41064. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41065. {
  41066. front: {
  41067. height: math.unit(8 + 2/12, "feet"),
  41068. weight: math.unit(600, "lb"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/deam-nitrel/front.svg",
  41072. extra: 1308/1234,
  41073. bottom: 125/1433
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Normal",
  41080. height: math.unit(8 + 2/12, "feet"),
  41081. default: true
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41087. {
  41088. front: {
  41089. height: math.unit(6.1, "feet"),
  41090. weight: math.unit(180, "lb"),
  41091. name: "Front",
  41092. image: {
  41093. source: "./media/characters/skyress/front.svg",
  41094. extra: 1045/915,
  41095. bottom: 28/1073
  41096. }
  41097. },
  41098. maw: {
  41099. height: math.unit(1, "feet"),
  41100. name: "Maw",
  41101. image: {
  41102. source: "./media/characters/skyress/maw.svg"
  41103. }
  41104. },
  41105. },
  41106. [
  41107. {
  41108. name: "Normal",
  41109. height: math.unit(6.1, "feet"),
  41110. default: true
  41111. },
  41112. {
  41113. name: "Macro",
  41114. height: math.unit(200, "feet")
  41115. },
  41116. ]
  41117. ))
  41118. characterMakers.push(() => makeCharacter(
  41119. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41120. {
  41121. front: {
  41122. height: math.unit(4 + 2/12, "feet"),
  41123. weight: math.unit(40, "kg"),
  41124. name: "Front",
  41125. image: {
  41126. source: "./media/characters/amethyst-jones/front.svg",
  41127. extra: 1220/1150,
  41128. bottom: 101/1321
  41129. }
  41130. },
  41131. },
  41132. [
  41133. {
  41134. name: "Normal",
  41135. height: math.unit(4 + 2/12, "feet"),
  41136. default: true
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(1.7, "m"),
  41145. weight: math.unit(135, "lb"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/jade/front.svg",
  41149. extra: 1818/1767,
  41150. bottom: 32/1850
  41151. }
  41152. },
  41153. back: {
  41154. height: math.unit(1.7, "m"),
  41155. weight: math.unit(135, "lb"),
  41156. name: "Back",
  41157. image: {
  41158. source: "./media/characters/jade/back.svg",
  41159. extra: 1869/1809,
  41160. bottom: 35/1904
  41161. }
  41162. },
  41163. hand: {
  41164. height: math.unit(0.24, "m"),
  41165. name: "Hand",
  41166. image: {
  41167. source: "./media/characters/jade/hand.svg"
  41168. }
  41169. },
  41170. foot: {
  41171. height: math.unit(0.263, "m"),
  41172. name: "Foot",
  41173. image: {
  41174. source: "./media/characters/jade/foot.svg"
  41175. }
  41176. },
  41177. dick: {
  41178. height: math.unit(0.47, "m"),
  41179. name: "Dick",
  41180. image: {
  41181. source: "./media/characters/jade/dick.svg"
  41182. }
  41183. },
  41184. },
  41185. [
  41186. {
  41187. name: "Micro",
  41188. height: math.unit(22, "cm")
  41189. },
  41190. {
  41191. name: "Normal",
  41192. height: math.unit(1.7, "m"),
  41193. default: true
  41194. },
  41195. {
  41196. name: "Macro",
  41197. height: math.unit(152, "m")
  41198. },
  41199. ]
  41200. ))
  41201. characterMakers.push(() => makeCharacter(
  41202. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41203. {
  41204. front: {
  41205. height: math.unit(100, "miles"),
  41206. weight: math.unit(20000, "tons"),
  41207. name: "Front",
  41208. image: {
  41209. source: "./media/characters/cookie/front.svg",
  41210. extra: 1125/1070,
  41211. bottom: 30/1155
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Big",
  41218. height: math.unit(50, "feet")
  41219. },
  41220. {
  41221. name: "Macro",
  41222. height: math.unit(100, "miles"),
  41223. default: true
  41224. },
  41225. {
  41226. name: "Megamacro",
  41227. height: math.unit(90000, "miles")
  41228. },
  41229. ]
  41230. ))
  41231. characterMakers.push(() => makeCharacter(
  41232. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41233. {
  41234. front: {
  41235. height: math.unit(6, "feet"),
  41236. weight: math.unit(145, "lb"),
  41237. name: "Front",
  41238. image: {
  41239. source: "./media/characters/farzian/front.svg",
  41240. extra: 1902/1693,
  41241. bottom: 108/2010
  41242. }
  41243. },
  41244. },
  41245. [
  41246. {
  41247. name: "Macro",
  41248. height: math.unit(500, "feet"),
  41249. default: true
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41255. {
  41256. front: {
  41257. height: math.unit(3 + 6/12, "feet"),
  41258. weight: math.unit(50, "lb"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/kimberly-tilson/front.svg",
  41262. extra: 1400/1322,
  41263. bottom: 36/1436
  41264. }
  41265. },
  41266. back: {
  41267. height: math.unit(3 + 6/12, "feet"),
  41268. weight: math.unit(50, "lb"),
  41269. name: "Back",
  41270. image: {
  41271. source: "./media/characters/kimberly-tilson/back.svg",
  41272. extra: 1370/1307,
  41273. bottom: 20/1390
  41274. }
  41275. },
  41276. },
  41277. [
  41278. {
  41279. name: "Normal",
  41280. height: math.unit(3 + 6/12, "feet"),
  41281. default: true
  41282. },
  41283. ]
  41284. ))
  41285. characterMakers.push(() => makeCharacter(
  41286. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41287. {
  41288. front: {
  41289. height: math.unit(1148, "feet"),
  41290. weight: math.unit(34057, "lb"),
  41291. name: "Front",
  41292. image: {
  41293. source: "./media/characters/harthos/front.svg",
  41294. extra: 1391/1339,
  41295. bottom: 13/1404
  41296. }
  41297. },
  41298. },
  41299. [
  41300. {
  41301. name: "Macro",
  41302. height: math.unit(1148, "feet"),
  41303. default: true
  41304. },
  41305. ]
  41306. ))
  41307. characterMakers.push(() => makeCharacter(
  41308. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41309. {
  41310. front: {
  41311. height: math.unit(15, "feet"),
  41312. name: "Front",
  41313. image: {
  41314. source: "./media/characters/hypatia/front.svg",
  41315. extra: 1653/1591,
  41316. bottom: 79/1732
  41317. }
  41318. },
  41319. },
  41320. [
  41321. {
  41322. name: "Normal",
  41323. height: math.unit(15, "feet")
  41324. },
  41325. {
  41326. name: "Small",
  41327. height: math.unit(300, "feet")
  41328. },
  41329. {
  41330. name: "Macro",
  41331. height: math.unit(2500, "feet"),
  41332. default: true
  41333. },
  41334. {
  41335. name: "Mega Macro",
  41336. height: math.unit(1500, "miles")
  41337. },
  41338. {
  41339. name: "Giga Macro",
  41340. height: math.unit(1.5e6, "miles")
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(6, "feet"),
  41349. weight: math.unit(200, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/wulver/front.svg",
  41353. extra: 1724/1632,
  41354. bottom: 130/1854
  41355. }
  41356. },
  41357. frontNsfw: {
  41358. height: math.unit(6, "feet"),
  41359. weight: math.unit(200, "lb"),
  41360. name: "Front (NSFW)",
  41361. image: {
  41362. source: "./media/characters/wulver/front-nsfw.svg",
  41363. extra: 1724/1632,
  41364. bottom: 130/1854
  41365. }
  41366. },
  41367. },
  41368. [
  41369. {
  41370. name: "Human-Sized",
  41371. height: math.unit(6, "feet")
  41372. },
  41373. {
  41374. name: "Normal",
  41375. height: math.unit(4, "meters"),
  41376. default: true
  41377. },
  41378. {
  41379. name: "Large",
  41380. height: math.unit(6, "m")
  41381. },
  41382. ]
  41383. ))
  41384. characterMakers.push(() => makeCharacter(
  41385. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41386. {
  41387. front: {
  41388. height: math.unit(7, "feet"),
  41389. name: "Front",
  41390. image: {
  41391. source: "./media/characters/maru/front.svg",
  41392. extra: 1595/1570,
  41393. bottom: 0/1595
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Normal",
  41400. height: math.unit(7, "feet"),
  41401. default: true
  41402. },
  41403. {
  41404. name: "Macro",
  41405. height: math.unit(700, "feet")
  41406. },
  41407. {
  41408. name: "Mega Macro",
  41409. height: math.unit(25, "miles")
  41410. },
  41411. ]
  41412. ))
  41413. characterMakers.push(() => makeCharacter(
  41414. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41415. {
  41416. front: {
  41417. height: math.unit(6, "feet"),
  41418. weight: math.unit(170, "lb"),
  41419. name: "Front",
  41420. image: {
  41421. source: "./media/characters/xenon/front.svg",
  41422. extra: 1376/1305,
  41423. bottom: 56/1432
  41424. }
  41425. },
  41426. back: {
  41427. height: math.unit(6, "feet"),
  41428. weight: math.unit(170, "lb"),
  41429. name: "Back",
  41430. image: {
  41431. source: "./media/characters/xenon/back.svg",
  41432. extra: 1328/1259,
  41433. bottom: 95/1423
  41434. }
  41435. },
  41436. maw: {
  41437. height: math.unit(0.52, "feet"),
  41438. name: "Maw",
  41439. image: {
  41440. source: "./media/characters/xenon/maw.svg"
  41441. }
  41442. },
  41443. handLeft: {
  41444. height: math.unit(0.82 * 169 / 153, "feet"),
  41445. name: "Hand (Left)",
  41446. image: {
  41447. source: "./media/characters/xenon/hand-left.svg"
  41448. }
  41449. },
  41450. handRight: {
  41451. height: math.unit(0.82, "feet"),
  41452. name: "Hand (Right)",
  41453. image: {
  41454. source: "./media/characters/xenon/hand-right.svg"
  41455. }
  41456. },
  41457. footLeft: {
  41458. height: math.unit(1.13, "feet"),
  41459. name: "Foot (Left)",
  41460. image: {
  41461. source: "./media/characters/xenon/foot-left.svg"
  41462. }
  41463. },
  41464. footRight: {
  41465. height: math.unit(1.13 * 194 / 196, "feet"),
  41466. name: "Foot (Right)",
  41467. image: {
  41468. source: "./media/characters/xenon/foot-right.svg"
  41469. }
  41470. },
  41471. },
  41472. [
  41473. {
  41474. name: "Micro",
  41475. height: math.unit(0.8, "inches")
  41476. },
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(6, "feet")
  41480. },
  41481. {
  41482. name: "Macro",
  41483. height: math.unit(50, "feet"),
  41484. default: true
  41485. },
  41486. {
  41487. name: "Macro+",
  41488. height: math.unit(250, "feet")
  41489. },
  41490. {
  41491. name: "Megamacro",
  41492. height: math.unit(1500, "feet")
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41498. {
  41499. front: {
  41500. height: math.unit(7 + 5/12, "feet"),
  41501. name: "Front",
  41502. image: {
  41503. source: "./media/characters/zane/front.svg",
  41504. extra: 1260/1203,
  41505. bottom: 94/1354
  41506. }
  41507. },
  41508. back: {
  41509. height: math.unit(5.05, "feet"),
  41510. name: "Back",
  41511. image: {
  41512. source: "./media/characters/zane/back.svg",
  41513. extra: 893/829,
  41514. bottom: 30/923
  41515. }
  41516. },
  41517. werewolf: {
  41518. height: math.unit(11, "feet"),
  41519. name: "Werewolf",
  41520. image: {
  41521. source: "./media/characters/zane/werewolf.svg",
  41522. extra: 1383/1323,
  41523. bottom: 89/1472
  41524. }
  41525. },
  41526. foot: {
  41527. height: math.unit(1.46, "feet"),
  41528. name: "Foot",
  41529. image: {
  41530. source: "./media/characters/zane/foot.svg"
  41531. }
  41532. },
  41533. footFront: {
  41534. height: math.unit(0.784, "feet"),
  41535. name: "Foot (Front)",
  41536. image: {
  41537. source: "./media/characters/zane/foot-front.svg"
  41538. }
  41539. },
  41540. dick: {
  41541. height: math.unit(1.95, "feet"),
  41542. name: "Dick",
  41543. image: {
  41544. source: "./media/characters/zane/dick.svg"
  41545. }
  41546. },
  41547. dickWerewolf: {
  41548. height: math.unit(3.77, "feet"),
  41549. name: "Dick (Werewolf)",
  41550. image: {
  41551. source: "./media/characters/zane/dick.svg"
  41552. }
  41553. },
  41554. },
  41555. [
  41556. {
  41557. name: "Normal",
  41558. height: math.unit(7 + 5/12, "feet"),
  41559. default: true
  41560. },
  41561. ]
  41562. ))
  41563. characterMakers.push(() => makeCharacter(
  41564. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41565. {
  41566. front: {
  41567. height: math.unit(6 + 2/12, "feet"),
  41568. weight: math.unit(284, "lb"),
  41569. name: "Front",
  41570. image: {
  41571. source: "./media/characters/benni-desparque/front.svg",
  41572. extra: 1353/1126,
  41573. bottom: 69/1422
  41574. }
  41575. },
  41576. },
  41577. [
  41578. {
  41579. name: "Civilian",
  41580. height: math.unit(6 + 2/12, "feet")
  41581. },
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(98, "feet"),
  41585. default: true
  41586. },
  41587. {
  41588. name: "Kaiju Fighter",
  41589. height: math.unit(268, "feet")
  41590. },
  41591. ]
  41592. ))
  41593. characterMakers.push(() => makeCharacter(
  41594. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41595. {
  41596. front: {
  41597. height: math.unit(5, "feet"),
  41598. weight: math.unit(105, "lb"),
  41599. name: "Front",
  41600. image: {
  41601. source: "./media/characters/maxine/front.svg",
  41602. extra: 1386/1250,
  41603. bottom: 71/1457
  41604. }
  41605. },
  41606. },
  41607. [
  41608. {
  41609. name: "Normal",
  41610. height: math.unit(5, "feet"),
  41611. default: true
  41612. },
  41613. ]
  41614. ))
  41615. characterMakers.push(() => makeCharacter(
  41616. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41617. {
  41618. front: {
  41619. height: math.unit(11 + 7/12, "feet"),
  41620. weight: math.unit(9576, "lb"),
  41621. name: "Front",
  41622. image: {
  41623. source: "./media/characters/scaly/front.svg",
  41624. extra: 888/867,
  41625. bottom: 36/924
  41626. }
  41627. },
  41628. },
  41629. [
  41630. {
  41631. name: "Normal",
  41632. height: math.unit(11 + 7/12, "feet"),
  41633. default: true
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41639. {
  41640. front: {
  41641. height: math.unit(6 + 3/12, "feet"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/saelria/front.svg",
  41645. extra: 1243/1138,
  41646. bottom: 46/1289
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Micro",
  41653. height: math.unit(6, "inches"),
  41654. },
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(6 + 3/12, "feet"),
  41658. default: true
  41659. },
  41660. {
  41661. name: "Macro",
  41662. height: math.unit(25, "feet")
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(80, "meters"),
  41671. weight: math.unit(7000, "tonnes"),
  41672. name: "Front",
  41673. image: {
  41674. source: "./media/characters/tef/front.svg",
  41675. extra: 2036/1991,
  41676. bottom: 54/2090
  41677. }
  41678. },
  41679. back: {
  41680. height: math.unit(80, "meters"),
  41681. weight: math.unit(7000, "tonnes"),
  41682. name: "Back",
  41683. image: {
  41684. source: "./media/characters/tef/back.svg",
  41685. extra: 2036/1991,
  41686. bottom: 54/2090
  41687. }
  41688. },
  41689. },
  41690. [
  41691. {
  41692. name: "Macro",
  41693. height: math.unit(80, "meters"),
  41694. default: true
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41700. {
  41701. front: {
  41702. height: math.unit(13, "feet"),
  41703. weight: math.unit(6, "tons"),
  41704. name: "Front",
  41705. image: {
  41706. source: "./media/characters/rover/front.svg",
  41707. extra: 1233/1156,
  41708. bottom: 50/1283
  41709. }
  41710. },
  41711. back: {
  41712. height: math.unit(13, "feet"),
  41713. weight: math.unit(6, "tons"),
  41714. name: "Back",
  41715. image: {
  41716. source: "./media/characters/rover/back.svg",
  41717. extra: 1327/1258,
  41718. bottom: 39/1366
  41719. }
  41720. },
  41721. },
  41722. [
  41723. {
  41724. name: "Normal",
  41725. height: math.unit(13, "feet"),
  41726. default: true
  41727. },
  41728. {
  41729. name: "Macro",
  41730. height: math.unit(1300, "feet")
  41731. },
  41732. {
  41733. name: "Megamacro",
  41734. height: math.unit(1300, "miles")
  41735. },
  41736. {
  41737. name: "Gigamacro",
  41738. height: math.unit(1300000, "miles")
  41739. },
  41740. ]
  41741. ))
  41742. characterMakers.push(() => makeCharacter(
  41743. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41744. {
  41745. front: {
  41746. height: math.unit(6, "feet"),
  41747. weight: math.unit(150, "lb"),
  41748. name: "Front",
  41749. image: {
  41750. source: "./media/characters/ariz/front.svg",
  41751. extra: 1401/1346,
  41752. bottom: 5/1406
  41753. }
  41754. },
  41755. },
  41756. [
  41757. {
  41758. name: "Normal",
  41759. height: math.unit(10, "feet"),
  41760. default: true
  41761. },
  41762. ]
  41763. ))
  41764. characterMakers.push(() => makeCharacter(
  41765. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41766. {
  41767. front: {
  41768. height: math.unit(6, "feet"),
  41769. weight: math.unit(140, "lb"),
  41770. name: "Front",
  41771. image: {
  41772. source: "./media/characters/sigrun/front.svg",
  41773. extra: 1418/1359,
  41774. bottom: 27/1445
  41775. }
  41776. },
  41777. },
  41778. [
  41779. {
  41780. name: "Macro",
  41781. height: math.unit(35, "feet"),
  41782. default: true
  41783. },
  41784. ]
  41785. ))
  41786. characterMakers.push(() => makeCharacter(
  41787. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41788. {
  41789. front: {
  41790. height: math.unit(6, "feet"),
  41791. weight: math.unit(150, "lb"),
  41792. name: "Front",
  41793. image: {
  41794. source: "./media/characters/numin/front.svg",
  41795. extra: 1433/1388,
  41796. bottom: 12/1445
  41797. }
  41798. },
  41799. },
  41800. [
  41801. {
  41802. name: "Macro",
  41803. height: math.unit(21.5, "km"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(6, "feet"),
  41813. weight: math.unit(463, "lb"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/melwa/front.svg",
  41817. extra: 1307/1248,
  41818. bottom: 93/1400
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Macro",
  41825. height: math.unit(50, "meters"),
  41826. default: true
  41827. },
  41828. ]
  41829. ))
  41830. characterMakers.push(() => makeCharacter(
  41831. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41832. {
  41833. front: {
  41834. height: math.unit(325, "feet"),
  41835. name: "Front",
  41836. image: {
  41837. source: "./media/characters/zorkaiju/front.svg",
  41838. extra: 1955/1814,
  41839. bottom: 40/1995
  41840. }
  41841. },
  41842. frontExtended: {
  41843. height: math.unit(325, "feet"),
  41844. name: "Front (Extended)",
  41845. image: {
  41846. source: "./media/characters/zorkaiju/front-extended.svg",
  41847. extra: 1955/1814,
  41848. bottom: 40/1995
  41849. }
  41850. },
  41851. side: {
  41852. height: math.unit(325, "feet"),
  41853. name: "Side",
  41854. image: {
  41855. source: "./media/characters/zorkaiju/side.svg",
  41856. extra: 1495/1396,
  41857. bottom: 17/1512
  41858. }
  41859. },
  41860. sideExtended: {
  41861. height: math.unit(325, "feet"),
  41862. name: "Side (Extended)",
  41863. image: {
  41864. source: "./media/characters/zorkaiju/side-extended.svg",
  41865. extra: 1495/1396,
  41866. bottom: 17/1512
  41867. }
  41868. },
  41869. back: {
  41870. height: math.unit(325, "feet"),
  41871. name: "Back",
  41872. image: {
  41873. source: "./media/characters/zorkaiju/back.svg",
  41874. extra: 1959/1821,
  41875. bottom: 31/1990
  41876. }
  41877. },
  41878. backExtended: {
  41879. height: math.unit(325, "feet"),
  41880. name: "Back (Extended)",
  41881. image: {
  41882. source: "./media/characters/zorkaiju/back-extended.svg",
  41883. extra: 1959/1821,
  41884. bottom: 31/1990
  41885. }
  41886. },
  41887. hand: {
  41888. height: math.unit(58.4, "feet"),
  41889. name: "Hand",
  41890. image: {
  41891. source: "./media/characters/zorkaiju/hand.svg"
  41892. }
  41893. },
  41894. handExtended: {
  41895. height: math.unit(61.4, "feet"),
  41896. name: "Hand (Extended)",
  41897. image: {
  41898. source: "./media/characters/zorkaiju/hand-extended.svg"
  41899. }
  41900. },
  41901. foot: {
  41902. height: math.unit(95, "feet"),
  41903. name: "Foot",
  41904. image: {
  41905. source: "./media/characters/zorkaiju/foot.svg"
  41906. }
  41907. },
  41908. leftArm: {
  41909. height: math.unit(59, "feet"),
  41910. name: "Left Arm",
  41911. image: {
  41912. source: "./media/characters/zorkaiju/left-arm.svg"
  41913. }
  41914. },
  41915. rightArm: {
  41916. height: math.unit(59, "feet"),
  41917. name: "Right Arm",
  41918. image: {
  41919. source: "./media/characters/zorkaiju/right-arm.svg"
  41920. }
  41921. },
  41922. leftArmExtended: {
  41923. height: math.unit(59 * 1.033546, "feet"),
  41924. name: "Left Arm (Extended)",
  41925. image: {
  41926. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41927. }
  41928. },
  41929. rightArmExtended: {
  41930. height: math.unit(59 * 1.0496, "feet"),
  41931. name: "Right Arm (Extended)",
  41932. image: {
  41933. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41934. }
  41935. },
  41936. tail: {
  41937. height: math.unit(104, "feet"),
  41938. name: "Tail",
  41939. image: {
  41940. source: "./media/characters/zorkaiju/tail.svg"
  41941. }
  41942. },
  41943. tailExtended: {
  41944. height: math.unit(104, "feet"),
  41945. name: "Tail (Extended)",
  41946. image: {
  41947. source: "./media/characters/zorkaiju/tail-extended.svg"
  41948. }
  41949. },
  41950. tailBottom: {
  41951. height: math.unit(104, "feet"),
  41952. name: "Tail Bottom",
  41953. image: {
  41954. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41955. }
  41956. },
  41957. crystal: {
  41958. height: math.unit(27.54, "feet"),
  41959. name: "Crystal",
  41960. image: {
  41961. source: "./media/characters/zorkaiju/crystal.svg"
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Kaiju",
  41968. height: math.unit(325, "feet"),
  41969. default: true
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(6 + 1/12, "feet"),
  41978. weight: math.unit(115, "lb"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/bailey-belfry/front.svg",
  41982. extra: 1240/1121,
  41983. bottom: 101/1341
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(6 + 1/12, "feet"),
  41991. default: true
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41997. {
  41998. side: {
  41999. height: math.unit(4, "meters"),
  42000. weight: math.unit(250, "kg"),
  42001. name: "Side",
  42002. image: {
  42003. source: "./media/characters/blacky/side.svg",
  42004. extra: 1027/919,
  42005. bottom: 43/1070
  42006. }
  42007. },
  42008. maw: {
  42009. height: math.unit(1, "meters"),
  42010. name: "Maw",
  42011. image: {
  42012. source: "./media/characters/blacky/maw.svg"
  42013. }
  42014. },
  42015. paw: {
  42016. height: math.unit(1, "meters"),
  42017. name: "Paw",
  42018. image: {
  42019. source: "./media/characters/blacky/paw.svg"
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Normal",
  42026. height: math.unit(4, "meters"),
  42027. default: true
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(170, "cm"),
  42036. weight: math.unit(66, "kg"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/thux-ei/front.svg",
  42040. extra: 1109/1011,
  42041. bottom: 8/1117
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(170, "cm"),
  42049. default: true
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(5, "feet"),
  42058. weight: math.unit(120, "lb"),
  42059. name: "Front",
  42060. image: {
  42061. source: "./media/characters/roxanne-voltaire/front.svg",
  42062. extra: 1901/1779,
  42063. bottom: 53/1954
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Normal",
  42070. height: math.unit(5, "feet"),
  42071. default: true
  42072. },
  42073. {
  42074. name: "Giant",
  42075. height: math.unit(50, "feet")
  42076. },
  42077. {
  42078. name: "Titan",
  42079. height: math.unit(500, "feet")
  42080. },
  42081. {
  42082. name: "Macro",
  42083. height: math.unit(5000, "feet")
  42084. },
  42085. {
  42086. name: "Megamacro",
  42087. height: math.unit(50000, "feet")
  42088. },
  42089. {
  42090. name: "Gigamacro",
  42091. height: math.unit(500000, "feet")
  42092. },
  42093. {
  42094. name: "Teramacro",
  42095. height: math.unit(5e6, "feet")
  42096. },
  42097. ]
  42098. ))
  42099. characterMakers.push(() => makeCharacter(
  42100. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42101. {
  42102. front: {
  42103. height: math.unit(6 + 2/12, "feet"),
  42104. name: "Front",
  42105. image: {
  42106. source: "./media/characters/squeaks/front.svg",
  42107. extra: 1823/1768,
  42108. bottom: 138/1961
  42109. }
  42110. },
  42111. },
  42112. [
  42113. {
  42114. name: "Micro",
  42115. height: math.unit(0.5, "inches")
  42116. },
  42117. {
  42118. name: "Normal",
  42119. height: math.unit(6 + 2/12, "feet"),
  42120. default: true
  42121. },
  42122. {
  42123. name: "Macro",
  42124. height: math.unit(600, "feet")
  42125. },
  42126. ]
  42127. ))
  42128. characterMakers.push(() => makeCharacter(
  42129. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42130. {
  42131. front: {
  42132. height: math.unit(1.72, "meters"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/archinger/front.svg",
  42136. extra: 1861/1675,
  42137. bottom: 125/1986
  42138. }
  42139. },
  42140. back: {
  42141. height: math.unit(1.72, "meters"),
  42142. name: "Back",
  42143. image: {
  42144. source: "./media/characters/archinger/back.svg",
  42145. extra: 1844/1701,
  42146. bottom: 104/1948
  42147. }
  42148. },
  42149. cock: {
  42150. height: math.unit(0.59, "feet"),
  42151. name: "Cock",
  42152. image: {
  42153. source: "./media/characters/archinger/cock.svg"
  42154. }
  42155. },
  42156. },
  42157. [
  42158. {
  42159. name: "Normal",
  42160. height: math.unit(1.72, "meters"),
  42161. default: true
  42162. },
  42163. {
  42164. name: "Macro",
  42165. height: math.unit(84, "meters")
  42166. },
  42167. {
  42168. name: "Macro+",
  42169. height: math.unit(112, "meters")
  42170. },
  42171. {
  42172. name: "Macro++",
  42173. height: math.unit(960, "meters")
  42174. },
  42175. {
  42176. name: "Macro+++",
  42177. height: math.unit(4, "km")
  42178. },
  42179. {
  42180. name: "Macro++++",
  42181. height: math.unit(48, "km")
  42182. },
  42183. {
  42184. name: "Macro+++++",
  42185. height: math.unit(4500, "km")
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(5 + 5/12, "feet"),
  42194. name: "Front",
  42195. image: {
  42196. source: "./media/characters/alsnapz/front.svg",
  42197. extra: 1157/1065,
  42198. bottom: 42/1199
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Normal",
  42205. height: math.unit(5 + 5/12, "feet"),
  42206. default: true
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42212. {
  42213. side: {
  42214. height: math.unit(3.2, "earths"),
  42215. name: "Side",
  42216. image: {
  42217. source: "./media/characters/mag/side.svg",
  42218. extra: 1331/1008,
  42219. bottom: 52/1383
  42220. }
  42221. },
  42222. wing: {
  42223. height: math.unit(1.94, "earths"),
  42224. name: "Wing",
  42225. image: {
  42226. source: "./media/characters/mag/wing.svg"
  42227. }
  42228. },
  42229. dick: {
  42230. height: math.unit(1.8, "earths"),
  42231. name: "Dick",
  42232. image: {
  42233. source: "./media/characters/mag/dick.svg"
  42234. }
  42235. },
  42236. ass: {
  42237. height: math.unit(1.33, "earths"),
  42238. name: "Ass",
  42239. image: {
  42240. source: "./media/characters/mag/ass.svg"
  42241. }
  42242. },
  42243. head: {
  42244. height: math.unit(1.1, "earths"),
  42245. name: "Head",
  42246. image: {
  42247. source: "./media/characters/mag/head.svg"
  42248. }
  42249. },
  42250. maw: {
  42251. height: math.unit(1.62, "earths"),
  42252. name: "Maw",
  42253. image: {
  42254. source: "./media/characters/mag/maw.svg"
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Small",
  42261. height: math.unit(162, "feet")
  42262. },
  42263. {
  42264. name: "Normal",
  42265. height: math.unit(3.2, "earths"),
  42266. default: true
  42267. },
  42268. ]
  42269. ))
  42270. characterMakers.push(() => makeCharacter(
  42271. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42272. {
  42273. front: {
  42274. height: math.unit(512, "feet"),
  42275. weight: math.unit(63509, "tonnes"),
  42276. name: "Front",
  42277. image: {
  42278. source: "./media/characters/vorrel-harroc/front.svg",
  42279. extra: 1075/1063,
  42280. bottom: 62/1137
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Normal",
  42287. height: math.unit(10, "feet")
  42288. },
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(512, "feet"),
  42292. default: true
  42293. },
  42294. {
  42295. name: "Megamacro",
  42296. height: math.unit(256, "miles")
  42297. },
  42298. {
  42299. name: "Gigamacro",
  42300. height: math.unit(4096, "miles")
  42301. },
  42302. ]
  42303. ))
  42304. characterMakers.push(() => makeCharacter(
  42305. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42306. {
  42307. side: {
  42308. height: math.unit(50, "feet"),
  42309. name: "Side",
  42310. image: {
  42311. source: "./media/characters/froimar/side.svg",
  42312. extra: 855/638,
  42313. bottom: 99/954
  42314. }
  42315. },
  42316. },
  42317. [
  42318. {
  42319. name: "Macro",
  42320. height: math.unit(50, "feet"),
  42321. default: true
  42322. },
  42323. ]
  42324. ))
  42325. characterMakers.push(() => makeCharacter(
  42326. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42327. {
  42328. front: {
  42329. height: math.unit(210, "miles"),
  42330. name: "Front",
  42331. image: {
  42332. source: "./media/characters/timothy/front.svg",
  42333. extra: 1007/943,
  42334. bottom: 62/1069
  42335. }
  42336. },
  42337. frontSkirt: {
  42338. height: math.unit(210, "miles"),
  42339. name: "Front (Skirt)",
  42340. image: {
  42341. source: "./media/characters/timothy/front-skirt.svg",
  42342. extra: 1007/943,
  42343. bottom: 62/1069
  42344. }
  42345. },
  42346. frontCoat: {
  42347. height: math.unit(210, "miles"),
  42348. name: "Front (Coat)",
  42349. image: {
  42350. source: "./media/characters/timothy/front-coat.svg",
  42351. extra: 1007/943,
  42352. bottom: 62/1069
  42353. }
  42354. },
  42355. },
  42356. [
  42357. {
  42358. name: "Macro",
  42359. height: math.unit(210, "miles"),
  42360. default: true
  42361. },
  42362. {
  42363. name: "Megamacro",
  42364. height: math.unit(210000, "miles")
  42365. },
  42366. ]
  42367. ))
  42368. characterMakers.push(() => makeCharacter(
  42369. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42370. {
  42371. front: {
  42372. height: math.unit(188, "feet"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/pyotr/front.svg",
  42376. extra: 1912/1826,
  42377. bottom: 18/1930
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Macro",
  42384. height: math.unit(188, "feet"),
  42385. default: true
  42386. },
  42387. {
  42388. name: "Megamacro",
  42389. height: math.unit(8, "miles")
  42390. },
  42391. ]
  42392. ))
  42393. characterMakers.push(() => makeCharacter(
  42394. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42395. {
  42396. side: {
  42397. height: math.unit(10, "feet"),
  42398. weight: math.unit(4500, "lb"),
  42399. name: "Side",
  42400. image: {
  42401. source: "./media/characters/ackart/side.svg",
  42402. extra: 1776/1668,
  42403. bottom: 116/1892
  42404. }
  42405. },
  42406. },
  42407. [
  42408. {
  42409. name: "Normal",
  42410. height: math.unit(10, "feet"),
  42411. default: true
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42417. {
  42418. side: {
  42419. height: math.unit(21, "feet"),
  42420. name: "Side",
  42421. image: {
  42422. source: "./media/characters/nolow/side.svg",
  42423. extra: 1484/1434,
  42424. bottom: 85/1569
  42425. }
  42426. },
  42427. sideErect: {
  42428. height: math.unit(21, "feet"),
  42429. name: "Side-erect",
  42430. image: {
  42431. source: "./media/characters/nolow/side-erect.svg",
  42432. extra: 1484/1434,
  42433. bottom: 85/1569
  42434. }
  42435. },
  42436. },
  42437. [
  42438. {
  42439. name: "Regular",
  42440. height: math.unit(12, "feet")
  42441. },
  42442. {
  42443. name: "Big Chee",
  42444. height: math.unit(21, "feet"),
  42445. default: true
  42446. },
  42447. ]
  42448. ))
  42449. characterMakers.push(() => makeCharacter(
  42450. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42451. {
  42452. front: {
  42453. height: math.unit(7, "feet"),
  42454. weight: math.unit(250, "lb"),
  42455. name: "Front",
  42456. image: {
  42457. source: "./media/characters/nines/front.svg",
  42458. extra: 1741/1607,
  42459. bottom: 41/1782
  42460. }
  42461. },
  42462. side: {
  42463. height: math.unit(7, "feet"),
  42464. weight: math.unit(250, "lb"),
  42465. name: "Side",
  42466. image: {
  42467. source: "./media/characters/nines/side.svg",
  42468. extra: 1854/1735,
  42469. bottom: 93/1947
  42470. }
  42471. },
  42472. back: {
  42473. height: math.unit(7, "feet"),
  42474. weight: math.unit(250, "lb"),
  42475. name: "Back",
  42476. image: {
  42477. source: "./media/characters/nines/back.svg",
  42478. extra: 1748/1615,
  42479. bottom: 20/1768
  42480. }
  42481. },
  42482. },
  42483. [
  42484. {
  42485. name: "Megamacro",
  42486. height: math.unit(99, "km"),
  42487. default: true
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42493. {
  42494. front: {
  42495. height: math.unit(5 + 10/12, "feet"),
  42496. weight: math.unit(210, "lb"),
  42497. name: "Front",
  42498. image: {
  42499. source: "./media/characters/zenith/front.svg",
  42500. extra: 1531/1452,
  42501. bottom: 198/1729
  42502. }
  42503. },
  42504. back: {
  42505. height: math.unit(5 + 10/12, "feet"),
  42506. weight: math.unit(210, "lb"),
  42507. name: "Back",
  42508. image: {
  42509. source: "./media/characters/zenith/back.svg",
  42510. extra: 1571/1487,
  42511. bottom: 75/1646
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(5 + 10/12, "feet"),
  42519. default: true
  42520. }
  42521. ]
  42522. ))
  42523. characterMakers.push(() => makeCharacter(
  42524. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42525. {
  42526. front: {
  42527. height: math.unit(4, "feet"),
  42528. weight: math.unit(60, "lb"),
  42529. name: "Front",
  42530. image: {
  42531. source: "./media/characters/jasper/front.svg",
  42532. extra: 1450/1379,
  42533. bottom: 19/1469
  42534. }
  42535. },
  42536. },
  42537. [
  42538. {
  42539. name: "Normal",
  42540. height: math.unit(4, "feet"),
  42541. default: true
  42542. },
  42543. ]
  42544. ))
  42545. characterMakers.push(() => makeCharacter(
  42546. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42547. {
  42548. front: {
  42549. height: math.unit(6 + 5/12, "feet"),
  42550. weight: math.unit(290, "lb"),
  42551. name: "Front",
  42552. image: {
  42553. source: "./media/characters/tiberius-thyben/front.svg",
  42554. extra: 757/739,
  42555. bottom: 39/796
  42556. }
  42557. },
  42558. },
  42559. [
  42560. {
  42561. name: "Micro",
  42562. height: math.unit(1.5, "inches")
  42563. },
  42564. {
  42565. name: "Normal",
  42566. height: math.unit(6 + 5/12, "feet"),
  42567. default: true
  42568. },
  42569. {
  42570. name: "Macro",
  42571. height: math.unit(300, "feet")
  42572. },
  42573. ]
  42574. ))
  42575. characterMakers.push(() => makeCharacter(
  42576. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42577. {
  42578. front: {
  42579. height: math.unit(5 + 6/12, "feet"),
  42580. weight: math.unit(60, "kg"),
  42581. name: "Front",
  42582. image: {
  42583. source: "./media/characters/sabre/front.svg",
  42584. extra: 738/671,
  42585. bottom: 27/765
  42586. }
  42587. },
  42588. },
  42589. [
  42590. {
  42591. name: "Teeny",
  42592. height: math.unit(2, "inches")
  42593. },
  42594. {
  42595. name: "Smol",
  42596. height: math.unit(8, "inches")
  42597. },
  42598. {
  42599. name: "Normal",
  42600. height: math.unit(5 + 6/12, "feet"),
  42601. default: true
  42602. },
  42603. {
  42604. name: "Mini-Macro",
  42605. height: math.unit(15, "feet")
  42606. },
  42607. {
  42608. name: "Macro",
  42609. height: math.unit(50, "feet")
  42610. },
  42611. ]
  42612. ))
  42613. characterMakers.push(() => makeCharacter(
  42614. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42615. {
  42616. front: {
  42617. height: math.unit(6 + 4/12, "feet"),
  42618. weight: math.unit(170, "lb"),
  42619. name: "Front",
  42620. image: {
  42621. source: "./media/characters/charlie/front.svg",
  42622. extra: 1348/1228,
  42623. bottom: 15/1363
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Macro",
  42630. height: math.unit(1700, "meters"),
  42631. default: true
  42632. },
  42633. {
  42634. name: "MegaMacro",
  42635. height: math.unit(20400, "meters")
  42636. },
  42637. ]
  42638. ))
  42639. characterMakers.push(() => makeCharacter(
  42640. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42641. {
  42642. front: {
  42643. height: math.unit(6 + 3/12, "feet"),
  42644. weight: math.unit(185, "lb"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/susan-grant/front.svg",
  42648. extra: 1351/1327,
  42649. bottom: 26/1377
  42650. }
  42651. },
  42652. },
  42653. [
  42654. {
  42655. name: "Normal",
  42656. height: math.unit(6 + 3/12, "feet"),
  42657. default: true
  42658. },
  42659. {
  42660. name: "Macro",
  42661. height: math.unit(225, "feet")
  42662. },
  42663. {
  42664. name: "Macro+",
  42665. height: math.unit(900, "feet")
  42666. },
  42667. {
  42668. name: "MegaMacro",
  42669. height: math.unit(14400, "feet")
  42670. },
  42671. ]
  42672. ))
  42673. characterMakers.push(() => makeCharacter(
  42674. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42675. {
  42676. front: {
  42677. height: math.unit(5 + 4/12, "feet"),
  42678. weight: math.unit(110, "lb"),
  42679. name: "Front",
  42680. image: {
  42681. source: "./media/characters/axel-isanov/front.svg",
  42682. extra: 1096/1065,
  42683. bottom: 13/1109
  42684. }
  42685. },
  42686. },
  42687. [
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(5 + 4/12, "feet"),
  42691. default: true
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42697. {
  42698. front: {
  42699. height: math.unit(9, "feet"),
  42700. weight: math.unit(467, "lb"),
  42701. name: "Front",
  42702. image: {
  42703. source: "./media/characters/necahual/front.svg",
  42704. extra: 920/873,
  42705. bottom: 26/946
  42706. }
  42707. },
  42708. back: {
  42709. height: math.unit(9, "feet"),
  42710. weight: math.unit(467, "lb"),
  42711. name: "Back",
  42712. image: {
  42713. source: "./media/characters/necahual/back.svg",
  42714. extra: 930/884,
  42715. bottom: 16/946
  42716. }
  42717. },
  42718. frontUnderwear: {
  42719. height: math.unit(9, "feet"),
  42720. weight: math.unit(467, "lb"),
  42721. name: "Front (Underwear)",
  42722. image: {
  42723. source: "./media/characters/necahual/front-underwear.svg",
  42724. extra: 920/873,
  42725. bottom: 26/946
  42726. }
  42727. },
  42728. frontDressed: {
  42729. height: math.unit(9, "feet"),
  42730. weight: math.unit(467, "lb"),
  42731. name: "Front (Dressed)",
  42732. image: {
  42733. source: "./media/characters/necahual/front-dressed.svg",
  42734. extra: 920/873,
  42735. bottom: 26/946
  42736. }
  42737. },
  42738. },
  42739. [
  42740. {
  42741. name: "Comprsesed",
  42742. height: math.unit(9, "feet")
  42743. },
  42744. {
  42745. name: "Natural",
  42746. height: math.unit(15, "feet"),
  42747. default: true
  42748. },
  42749. {
  42750. name: "Boosted",
  42751. height: math.unit(50, "feet")
  42752. },
  42753. {
  42754. name: "Boosted+",
  42755. height: math.unit(150, "feet")
  42756. },
  42757. {
  42758. name: "Max",
  42759. height: math.unit(500, "feet")
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(22 + 1/12, "feet"),
  42768. weight: math.unit(3200, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/theo-acacia/front.svg",
  42772. extra: 1796/1741,
  42773. bottom: 83/1879
  42774. }
  42775. },
  42776. frontUnderwear: {
  42777. height: math.unit(22 + 1/12, "feet"),
  42778. weight: math.unit(3200, "lb"),
  42779. name: "Front (Underwear)",
  42780. image: {
  42781. source: "./media/characters/theo-acacia/front-underwear.svg",
  42782. extra: 1796/1741,
  42783. bottom: 83/1879
  42784. }
  42785. },
  42786. frontNude: {
  42787. height: math.unit(22 + 1/12, "feet"),
  42788. weight: math.unit(3200, "lb"),
  42789. name: "Front (Nude)",
  42790. image: {
  42791. source: "./media/characters/theo-acacia/front-nude.svg",
  42792. extra: 1796/1741,
  42793. bottom: 83/1879
  42794. }
  42795. },
  42796. },
  42797. [
  42798. {
  42799. name: "Normal",
  42800. height: math.unit(22 + 1/12, "feet"),
  42801. default: true
  42802. },
  42803. ]
  42804. ))
  42805. characterMakers.push(() => makeCharacter(
  42806. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42807. {
  42808. front: {
  42809. height: math.unit(20, "feet"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/astra/front.svg",
  42813. extra: 1850/1714,
  42814. bottom: 106/1956
  42815. }
  42816. },
  42817. frontUndressed: {
  42818. height: math.unit(20, "feet"),
  42819. name: "Front (Undressed)",
  42820. image: {
  42821. source: "./media/characters/astra/front-undressed.svg",
  42822. extra: 1926/1749,
  42823. bottom: 0/1926
  42824. }
  42825. },
  42826. hand: {
  42827. height: math.unit(1.53, "feet"),
  42828. name: "Hand",
  42829. image: {
  42830. source: "./media/characters/astra/hand.svg"
  42831. }
  42832. },
  42833. paw: {
  42834. height: math.unit(1.53, "feet"),
  42835. name: "Paw",
  42836. image: {
  42837. source: "./media/characters/astra/paw.svg"
  42838. }
  42839. },
  42840. },
  42841. [
  42842. {
  42843. name: "Smallest",
  42844. height: math.unit(20, "feet")
  42845. },
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(1e9, "miles"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Larger",
  42853. height: math.unit(5, "multiverses")
  42854. },
  42855. {
  42856. name: "Largest",
  42857. height: math.unit(1e9, "multiverses")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(8, "feet"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/breanna/front.svg",
  42869. extra: 1912/1632,
  42870. bottom: 33/1945
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Smallest",
  42877. height: math.unit(8, "feet")
  42878. },
  42879. {
  42880. name: "Normal",
  42881. height: math.unit(1, "mile"),
  42882. default: true
  42883. },
  42884. {
  42885. name: "Maximum",
  42886. height: math.unit(1500000000000, "lightyears")
  42887. },
  42888. ]
  42889. ))
  42890. characterMakers.push(() => makeCharacter(
  42891. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42892. {
  42893. front: {
  42894. height: math.unit(5 + 11/12, "feet"),
  42895. weight: math.unit(155, "lb"),
  42896. name: "Front",
  42897. image: {
  42898. source: "./media/characters/cai/front.svg",
  42899. extra: 1823/1702,
  42900. bottom: 32/1855
  42901. }
  42902. },
  42903. back: {
  42904. height: math.unit(5 + 11/12, "feet"),
  42905. weight: math.unit(155, "lb"),
  42906. name: "Back",
  42907. image: {
  42908. source: "./media/characters/cai/back.svg",
  42909. extra: 1809/1708,
  42910. bottom: 31/1840
  42911. }
  42912. },
  42913. },
  42914. [
  42915. {
  42916. name: "Normal",
  42917. height: math.unit(5 + 11/12, "feet"),
  42918. default: true
  42919. },
  42920. {
  42921. name: "Big",
  42922. height: math.unit(15, "feet")
  42923. },
  42924. {
  42925. name: "Macro",
  42926. height: math.unit(200, "feet")
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42932. {
  42933. front: {
  42934. height: math.unit(5 + 6/12, "feet"),
  42935. weight: math.unit(160, "lb"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42939. extra: 1227/1174,
  42940. bottom: 37/1264
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Macro",
  42947. height: math.unit(444, "meters"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(18 + 7/12, "feet"),
  42957. name: "Front",
  42958. image: {
  42959. source: "./media/characters/rex/front.svg",
  42960. extra: 1941/1807,
  42961. bottom: 66/2007
  42962. }
  42963. },
  42964. back: {
  42965. height: math.unit(18 + 7/12, "feet"),
  42966. name: "Back",
  42967. image: {
  42968. source: "./media/characters/rex/back.svg",
  42969. extra: 1937/1822,
  42970. bottom: 42/1979
  42971. }
  42972. },
  42973. boot: {
  42974. height: math.unit(3.45, "feet"),
  42975. name: "Boot",
  42976. image: {
  42977. source: "./media/characters/rex/boot.svg"
  42978. }
  42979. },
  42980. paw: {
  42981. height: math.unit(4.17, "feet"),
  42982. name: "Paw",
  42983. image: {
  42984. source: "./media/characters/rex/paw.svg"
  42985. }
  42986. },
  42987. head: {
  42988. height: math.unit(6.728, "feet"),
  42989. name: "Head",
  42990. image: {
  42991. source: "./media/characters/rex/head.svg"
  42992. }
  42993. },
  42994. },
  42995. [
  42996. {
  42997. name: "Nano",
  42998. height: math.unit(18 + 7/12, "feet")
  42999. },
  43000. {
  43001. name: "Micro",
  43002. height: math.unit(1.5, "megameters")
  43003. },
  43004. {
  43005. name: "Normal",
  43006. height: math.unit(440, "megameters"),
  43007. default: true
  43008. },
  43009. {
  43010. name: "Macro",
  43011. height: math.unit(2.5, "gigameters")
  43012. },
  43013. {
  43014. name: "Gigamacro",
  43015. height: math.unit(2, "galaxies")
  43016. },
  43017. ]
  43018. ))
  43019. characterMakers.push(() => makeCharacter(
  43020. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43021. {
  43022. side: {
  43023. height: math.unit(32, "feet"),
  43024. weight: math.unit(250000, "lb"),
  43025. name: "Side",
  43026. image: {
  43027. source: "./media/characters/silverwing/side.svg",
  43028. extra: 1100/1019,
  43029. bottom: 204/1304
  43030. }
  43031. },
  43032. },
  43033. [
  43034. {
  43035. name: "Normal",
  43036. height: math.unit(32, "feet"),
  43037. default: true
  43038. },
  43039. ]
  43040. ))
  43041. characterMakers.push(() => makeCharacter(
  43042. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43043. {
  43044. front: {
  43045. height: math.unit(6 + 6/12, "feet"),
  43046. weight: math.unit(350, "lb"),
  43047. name: "Front",
  43048. image: {
  43049. source: "./media/characters/tristan-hawthorne/front.svg",
  43050. extra: 1159/1124,
  43051. bottom: 37/1196
  43052. },
  43053. form: "labrador",
  43054. default: true
  43055. },
  43056. skunkFront: {
  43057. height: math.unit(4 + 6/12, "feet"),
  43058. weight: math.unit(120, "lb"),
  43059. name: "Front",
  43060. image: {
  43061. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43062. extra: 1609/1551,
  43063. bottom: 169/1778
  43064. },
  43065. form: "skunk",
  43066. default: true
  43067. },
  43068. },
  43069. [
  43070. {
  43071. name: "Normal",
  43072. height: math.unit(6 + 6/12, "feet"),
  43073. form: "labrador",
  43074. default: true
  43075. },
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(4 + 6/12, "feet"),
  43079. form: "skunk",
  43080. default: true
  43081. },
  43082. ],
  43083. {
  43084. "labrador": {
  43085. name: "Labrador",
  43086. default: true
  43087. },
  43088. "skunk": {
  43089. name: "Skunk"
  43090. }
  43091. }
  43092. ))
  43093. characterMakers.push(() => makeCharacter(
  43094. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43095. {
  43096. front: {
  43097. height: math.unit(5 + 11/12, "feet"),
  43098. weight: math.unit(190, "lb"),
  43099. name: "Front",
  43100. image: {
  43101. source: "./media/characters/mizu/front.svg",
  43102. extra: 1988/1788,
  43103. bottom: 14/2002
  43104. }
  43105. },
  43106. },
  43107. [
  43108. {
  43109. name: "Normal",
  43110. height: math.unit(5 + 11/12, "feet"),
  43111. default: true
  43112. },
  43113. ]
  43114. ))
  43115. characterMakers.push(() => makeCharacter(
  43116. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43117. {
  43118. front: {
  43119. height: math.unit(1.7, "feet"),
  43120. weight: math.unit(50, "lb"),
  43121. name: "Front",
  43122. image: {
  43123. source: "./media/characters/dechroma/front.svg",
  43124. extra: 1095/859,
  43125. bottom: 64/1159
  43126. }
  43127. },
  43128. },
  43129. [
  43130. {
  43131. name: "Normal",
  43132. height: math.unit(1.7, "feet"),
  43133. default: true
  43134. },
  43135. ]
  43136. ))
  43137. characterMakers.push(() => makeCharacter(
  43138. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43139. {
  43140. side: {
  43141. height: math.unit(30, "feet"),
  43142. name: "Side",
  43143. image: {
  43144. source: "./media/characters/veluren-thanazel/side.svg",
  43145. extra: 1611/633,
  43146. bottom: 118/1729
  43147. }
  43148. },
  43149. front: {
  43150. height: math.unit(30, "feet"),
  43151. name: "Front",
  43152. image: {
  43153. source: "./media/characters/veluren-thanazel/front.svg",
  43154. extra: 1486/636,
  43155. bottom: 238/1724
  43156. }
  43157. },
  43158. head: {
  43159. height: math.unit(21.4, "feet"),
  43160. name: "Head",
  43161. image: {
  43162. source: "./media/characters/veluren-thanazel/head.svg"
  43163. }
  43164. },
  43165. genitals: {
  43166. height: math.unit(19.4, "feet"),
  43167. name: "Genitals",
  43168. image: {
  43169. source: "./media/characters/veluren-thanazel/genitals.svg"
  43170. }
  43171. },
  43172. },
  43173. [
  43174. {
  43175. name: "Social",
  43176. height: math.unit(6, "feet")
  43177. },
  43178. {
  43179. name: "Play",
  43180. height: math.unit(12, "feet")
  43181. },
  43182. {
  43183. name: "True",
  43184. height: math.unit(30, "feet"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43191. {
  43192. front: {
  43193. height: math.unit(7 + 6/12, "feet"),
  43194. weight: math.unit(500, "kg"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/arcturas/front.svg",
  43198. extra: 1700/1500,
  43199. bottom: 145/1845
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(7 + 6/12, "feet"),
  43207. default: true
  43208. },
  43209. ]
  43210. ))
  43211. characterMakers.push(() => makeCharacter(
  43212. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43213. {
  43214. side: {
  43215. height: math.unit(6, "feet"),
  43216. weight: math.unit(2, "tons"),
  43217. name: "Side",
  43218. image: {
  43219. source: "./media/characters/vitaen/side.svg",
  43220. extra: 1157/617,
  43221. bottom: 122/1279
  43222. }
  43223. },
  43224. },
  43225. [
  43226. {
  43227. name: "Normal",
  43228. height: math.unit(6, "feet"),
  43229. default: true
  43230. },
  43231. ]
  43232. ))
  43233. characterMakers.push(() => makeCharacter(
  43234. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43235. {
  43236. front: {
  43237. height: math.unit(19, "feet"),
  43238. name: "Front",
  43239. image: {
  43240. source: "./media/characters/fia-dreamweaver/front.svg",
  43241. extra: 1630/1504,
  43242. bottom: 25/1655
  43243. }
  43244. },
  43245. },
  43246. [
  43247. {
  43248. name: "Normal",
  43249. height: math.unit(19, "feet"),
  43250. default: true
  43251. },
  43252. ]
  43253. ))
  43254. characterMakers.push(() => makeCharacter(
  43255. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43256. {
  43257. front: {
  43258. height: math.unit(5 + 4/12, "feet"),
  43259. name: "Front",
  43260. image: {
  43261. source: "./media/characters/artan/front.svg",
  43262. extra: 1618/1535,
  43263. bottom: 46/1664
  43264. }
  43265. },
  43266. back: {
  43267. height: math.unit(5 + 4/12, "feet"),
  43268. name: "Back",
  43269. image: {
  43270. source: "./media/characters/artan/back.svg",
  43271. extra: 1618/1543,
  43272. bottom: 31/1649
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(5 + 4/12, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43286. {
  43287. side: {
  43288. height: math.unit(182, "cm"),
  43289. weight: math.unit(1000, "lb"),
  43290. name: "Side",
  43291. image: {
  43292. source: "./media/characters/silver-dragon/side.svg",
  43293. extra: 710/287,
  43294. bottom: 88/798
  43295. }
  43296. },
  43297. },
  43298. [
  43299. {
  43300. name: "Normal",
  43301. height: math.unit(182, "cm"),
  43302. default: true
  43303. },
  43304. ]
  43305. ))
  43306. characterMakers.push(() => makeCharacter(
  43307. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43308. {
  43309. side: {
  43310. height: math.unit(6 + 6/12, "feet"),
  43311. weight: math.unit(1.5, "tons"),
  43312. name: "Side",
  43313. image: {
  43314. source: "./media/characters/zephyr/side.svg",
  43315. extra: 1433/586,
  43316. bottom: 109/1542
  43317. }
  43318. },
  43319. },
  43320. [
  43321. {
  43322. name: "Normal",
  43323. height: math.unit(6 + 6/12, "feet"),
  43324. default: true
  43325. },
  43326. ]
  43327. ))
  43328. characterMakers.push(() => makeCharacter(
  43329. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43330. {
  43331. side: {
  43332. height: math.unit(1, "feet"),
  43333. name: "Side",
  43334. image: {
  43335. source: "./media/characters/vixye/side.svg",
  43336. extra: 632/541,
  43337. bottom: 0/632
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Normal",
  43344. height: math.unit(1, "feet"),
  43345. default: true
  43346. },
  43347. {
  43348. name: "True",
  43349. height: math.unit(1e15, "multiverses")
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43355. {
  43356. front: {
  43357. height: math.unit(8 + 2/12, "feet"),
  43358. weight: math.unit(650, "lb"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43362. extra: 1174/1137,
  43363. bottom: 82/1256
  43364. }
  43365. },
  43366. back: {
  43367. height: math.unit(8 + 2/12, "feet"),
  43368. weight: math.unit(650, "lb"),
  43369. name: "Back",
  43370. image: {
  43371. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43372. extra: 1204/1157,
  43373. bottom: 46/1250
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Wildform",
  43380. height: math.unit(8 + 2/12, "feet"),
  43381. default: true
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(18, "feet"),
  43390. name: "Front",
  43391. image: {
  43392. source: "./media/characters/cyphin/front.svg",
  43393. extra: 970/886,
  43394. bottom: 42/1012
  43395. }
  43396. },
  43397. back: {
  43398. height: math.unit(18, "feet"),
  43399. name: "Back",
  43400. image: {
  43401. source: "./media/characters/cyphin/back.svg",
  43402. extra: 1009/894,
  43403. bottom: 24/1033
  43404. }
  43405. },
  43406. head: {
  43407. height: math.unit(5.05, "feet"),
  43408. name: "Head",
  43409. image: {
  43410. source: "./media/characters/cyphin/head.svg"
  43411. }
  43412. },
  43413. tailbud: {
  43414. height: math.unit(5, "feet"),
  43415. name: "Tailbud",
  43416. image: {
  43417. source: "./media/characters/cyphin/tailbud.svg"
  43418. }
  43419. },
  43420. },
  43421. [
  43422. ]
  43423. ))
  43424. characterMakers.push(() => makeCharacter(
  43425. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43426. {
  43427. side: {
  43428. height: math.unit(10, "feet"),
  43429. weight: math.unit(6, "tons"),
  43430. name: "Side",
  43431. image: {
  43432. source: "./media/characters/raijin/side.svg",
  43433. extra: 1529/613,
  43434. bottom: 337/1866
  43435. }
  43436. },
  43437. },
  43438. [
  43439. {
  43440. name: "Normal",
  43441. height: math.unit(10, "feet"),
  43442. default: true
  43443. },
  43444. ]
  43445. ))
  43446. characterMakers.push(() => makeCharacter(
  43447. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43448. {
  43449. side: {
  43450. height: math.unit(9, "feet"),
  43451. name: "Side",
  43452. image: {
  43453. source: "./media/characters/nilghais/side.svg",
  43454. extra: 1047/744,
  43455. bottom: 91/1138
  43456. }
  43457. },
  43458. head: {
  43459. height: math.unit(3.14, "feet"),
  43460. name: "Head",
  43461. image: {
  43462. source: "./media/characters/nilghais/head.svg"
  43463. }
  43464. },
  43465. mouth: {
  43466. height: math.unit(4.6, "feet"),
  43467. name: "Mouth",
  43468. image: {
  43469. source: "./media/characters/nilghais/mouth.svg"
  43470. }
  43471. },
  43472. wings: {
  43473. height: math.unit(24, "feet"),
  43474. name: "Wings",
  43475. image: {
  43476. source: "./media/characters/nilghais/wings.svg"
  43477. }
  43478. },
  43479. ass: {
  43480. height: math.unit(6.12, "feet"),
  43481. name: "Ass",
  43482. image: {
  43483. source: "./media/characters/nilghais/ass.svg"
  43484. }
  43485. },
  43486. },
  43487. [
  43488. {
  43489. name: "Normal",
  43490. height: math.unit(9, "feet"),
  43491. default: true
  43492. },
  43493. ]
  43494. ))
  43495. characterMakers.push(() => makeCharacter(
  43496. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43497. {
  43498. regular: {
  43499. height: math.unit(16 + 2/12, "feet"),
  43500. weight: math.unit(2300, "lb"),
  43501. name: "Regular",
  43502. image: {
  43503. source: "./media/characters/zolgar/regular.svg",
  43504. extra: 1246/1004,
  43505. bottom: 124/1370
  43506. }
  43507. },
  43508. boxers: {
  43509. height: math.unit(16 + 2/12, "feet"),
  43510. weight: math.unit(2300, "lb"),
  43511. name: "Boxers",
  43512. image: {
  43513. source: "./media/characters/zolgar/boxers.svg",
  43514. extra: 1246/1004,
  43515. bottom: 124/1370
  43516. }
  43517. },
  43518. armored: {
  43519. height: math.unit(16 + 2/12, "feet"),
  43520. weight: math.unit(2300, "lb"),
  43521. name: "Armored",
  43522. image: {
  43523. source: "./media/characters/zolgar/armored.svg",
  43524. extra: 1246/1004,
  43525. bottom: 124/1370
  43526. }
  43527. },
  43528. goth: {
  43529. height: math.unit(16 + 2/12, "feet"),
  43530. weight: math.unit(2300, "lb"),
  43531. name: "Goth",
  43532. image: {
  43533. source: "./media/characters/zolgar/goth.svg",
  43534. extra: 1246/1004,
  43535. bottom: 124/1370
  43536. }
  43537. },
  43538. },
  43539. [
  43540. {
  43541. name: "Shrunken Down",
  43542. height: math.unit(9 + 2/12, "feet")
  43543. },
  43544. {
  43545. name: "Normal",
  43546. height: math.unit(16 + 2/12, "feet"),
  43547. default: true
  43548. },
  43549. ]
  43550. ))
  43551. characterMakers.push(() => makeCharacter(
  43552. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43553. {
  43554. front: {
  43555. height: math.unit(6, "feet"),
  43556. weight: math.unit(168, "lb"),
  43557. name: "Front",
  43558. image: {
  43559. source: "./media/characters/luca/front.svg",
  43560. extra: 841/667,
  43561. bottom: 102/943
  43562. }
  43563. },
  43564. },
  43565. [
  43566. {
  43567. name: "Normal",
  43568. height: math.unit(6, "feet"),
  43569. default: true
  43570. },
  43571. ]
  43572. ))
  43573. characterMakers.push(() => makeCharacter(
  43574. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43575. {
  43576. side: {
  43577. height: math.unit(7 + 3/12, "feet"),
  43578. weight: math.unit(312, "lb"),
  43579. name: "Side",
  43580. image: {
  43581. source: "./media/characters/zezo/side.svg",
  43582. extra: 1192/1067,
  43583. bottom: 63/1255
  43584. }
  43585. },
  43586. },
  43587. [
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(7 + 3/12, "feet"),
  43591. default: true
  43592. },
  43593. ]
  43594. ))
  43595. characterMakers.push(() => makeCharacter(
  43596. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43597. {
  43598. front: {
  43599. height: math.unit(5 + 5/12, "feet"),
  43600. weight: math.unit(170, "lb"),
  43601. name: "Front",
  43602. image: {
  43603. source: "./media/characters/mayso/front.svg",
  43604. extra: 1215/1108,
  43605. bottom: 16/1231
  43606. }
  43607. },
  43608. },
  43609. [
  43610. {
  43611. name: "Normal",
  43612. height: math.unit(5 + 5/12, "feet"),
  43613. default: true
  43614. },
  43615. ]
  43616. ))
  43617. characterMakers.push(() => makeCharacter(
  43618. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43619. {
  43620. front: {
  43621. height: math.unit(4 + 3/12, "feet"),
  43622. weight: math.unit(80, "lb"),
  43623. name: "Front",
  43624. image: {
  43625. source: "./media/characters/hess/front.svg",
  43626. extra: 1200/1123,
  43627. bottom: 16/1216
  43628. }
  43629. },
  43630. },
  43631. [
  43632. {
  43633. name: "Normal",
  43634. height: math.unit(4 + 3/12, "feet"),
  43635. default: true
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43641. {
  43642. front: {
  43643. height: math.unit(1.9, "meters"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/ashgar/front.svg",
  43647. extra: 1177/1146,
  43648. bottom: 99/1276
  43649. }
  43650. },
  43651. back: {
  43652. height: math.unit(1.9, "meters"),
  43653. name: "Back",
  43654. image: {
  43655. source: "./media/characters/ashgar/back.svg",
  43656. extra: 1201/1183,
  43657. bottom: 53/1254
  43658. }
  43659. },
  43660. feral: {
  43661. height: math.unit(1.4, "meters"),
  43662. name: "Feral",
  43663. image: {
  43664. source: "./media/characters/ashgar/feral.svg",
  43665. extra: 370/345,
  43666. bottom: 45/415
  43667. }
  43668. },
  43669. },
  43670. [
  43671. {
  43672. name: "Normal",
  43673. height: math.unit(1.9, "meters"),
  43674. default: true
  43675. },
  43676. ]
  43677. ))
  43678. characterMakers.push(() => makeCharacter(
  43679. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43680. {
  43681. regular: {
  43682. height: math.unit(6, "feet"),
  43683. weight: math.unit(220, "lb"),
  43684. name: "Regular",
  43685. image: {
  43686. source: "./media/characters/phillip/regular.svg",
  43687. extra: 1373/1277,
  43688. bottom: 75/1448
  43689. }
  43690. },
  43691. dressed: {
  43692. height: math.unit(6, "feet"),
  43693. weight: math.unit(220, "lb"),
  43694. name: "Dressed",
  43695. image: {
  43696. source: "./media/characters/phillip/dressed.svg",
  43697. extra: 1373/1277,
  43698. bottom: 75/1448
  43699. }
  43700. },
  43701. paw: {
  43702. height: math.unit(1.44, "feet"),
  43703. name: "Paw",
  43704. image: {
  43705. source: "./media/characters/phillip/paw.svg"
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Normal",
  43712. height: math.unit(6, "feet"),
  43713. default: true
  43714. },
  43715. ]
  43716. ))
  43717. characterMakers.push(() => makeCharacter(
  43718. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43719. {
  43720. side: {
  43721. height: math.unit(42, "feet"),
  43722. name: "Side",
  43723. image: {
  43724. source: "./media/characters/uvula/side.svg",
  43725. extra: 683/586,
  43726. bottom: 60/743
  43727. }
  43728. },
  43729. front: {
  43730. height: math.unit(42, "feet"),
  43731. name: "Front",
  43732. image: {
  43733. source: "./media/characters/uvula/front.svg",
  43734. extra: 705/613,
  43735. bottom: 54/759
  43736. }
  43737. },
  43738. maw: {
  43739. height: math.unit(23.5, "feet"),
  43740. name: "Maw",
  43741. image: {
  43742. source: "./media/characters/uvula/maw.svg"
  43743. }
  43744. },
  43745. },
  43746. [
  43747. {
  43748. name: "Original Size",
  43749. height: math.unit(14, "inches")
  43750. },
  43751. {
  43752. name: "Human Size",
  43753. height: math.unit(6, "feet")
  43754. },
  43755. {
  43756. name: "Big",
  43757. height: math.unit(42, "feet"),
  43758. default: true
  43759. },
  43760. {
  43761. name: "Bigger",
  43762. height: math.unit(100, "feet")
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43768. {
  43769. front: {
  43770. height: math.unit(5 + 11/12, "feet"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/lannah/front.svg",
  43774. extra: 1208/1113,
  43775. bottom: 97/1305
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(5 + 11/12, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43789. {
  43790. front: {
  43791. height: math.unit(6 + 3/12, "feet"),
  43792. weight: math.unit(3.5, "tons"),
  43793. name: "Front",
  43794. image: {
  43795. source: "./media/characters/emberflame/front.svg",
  43796. extra: 1198/672,
  43797. bottom: 82/1280
  43798. }
  43799. },
  43800. side: {
  43801. height: math.unit(6 + 3/12, "feet"),
  43802. weight: math.unit(3.5, "tons"),
  43803. name: "Side",
  43804. image: {
  43805. source: "./media/characters/emberflame/side.svg",
  43806. extra: 938/527,
  43807. bottom: 56/994
  43808. }
  43809. },
  43810. },
  43811. [
  43812. {
  43813. name: "Normal",
  43814. height: math.unit(6 + 3/12, "feet"),
  43815. default: true
  43816. },
  43817. ]
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43821. {
  43822. side: {
  43823. height: math.unit(17.5, "feet"),
  43824. weight: math.unit(35, "tons"),
  43825. name: "Side",
  43826. image: {
  43827. source: "./media/characters/sophie-ambrose/side.svg",
  43828. extra: 1573/1242,
  43829. bottom: 71/1644
  43830. }
  43831. },
  43832. maw: {
  43833. height: math.unit(7.4, "feet"),
  43834. name: "Maw",
  43835. image: {
  43836. source: "./media/characters/sophie-ambrose/maw.svg"
  43837. }
  43838. },
  43839. },
  43840. [
  43841. {
  43842. name: "Normal",
  43843. height: math.unit(17.5, "feet"),
  43844. default: true
  43845. },
  43846. ]
  43847. ))
  43848. characterMakers.push(() => makeCharacter(
  43849. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43850. {
  43851. front: {
  43852. height: math.unit(280, "feet"),
  43853. weight: math.unit(550, "tons"),
  43854. name: "Front",
  43855. image: {
  43856. source: "./media/characters/king-mugi/front.svg",
  43857. extra: 1102/947,
  43858. bottom: 104/1206
  43859. }
  43860. },
  43861. },
  43862. [
  43863. {
  43864. name: "King Mugi",
  43865. height: math.unit(280, "feet"),
  43866. default: true
  43867. },
  43868. ]
  43869. ))
  43870. characterMakers.push(() => makeCharacter(
  43871. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43872. {
  43873. front: {
  43874. height: math.unit(64, "meters"),
  43875. name: "Front",
  43876. image: {
  43877. source: "./media/characters/nova-fox/front.svg",
  43878. extra: 1310/1246,
  43879. bottom: 65/1375
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Macro",
  43886. height: math.unit(64, "meters"),
  43887. default: true
  43888. },
  43889. ]
  43890. ))
  43891. characterMakers.push(() => makeCharacter(
  43892. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43893. {
  43894. front: {
  43895. height: math.unit(6 + 3/12, "feet"),
  43896. weight: math.unit(170, "lb"),
  43897. name: "Front",
  43898. image: {
  43899. source: "./media/characters/sam-bat/front.svg",
  43900. extra: 1601/1411,
  43901. bottom: 125/1726
  43902. }
  43903. },
  43904. back: {
  43905. height: math.unit(6 + 3/12, "feet"),
  43906. weight: math.unit(170, "lb"),
  43907. name: "Back",
  43908. image: {
  43909. source: "./media/characters/sam-bat/back.svg",
  43910. extra: 1577/1405,
  43911. bottom: 58/1635
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(6 + 3/12, "feet"),
  43919. default: true
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43925. {
  43926. front: {
  43927. height: math.unit(59, "feet"),
  43928. weight: math.unit(40000, "lb"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/inari/front.svg",
  43932. extra: 1884/1350,
  43933. bottom: 95/1979
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Gigantamax",
  43940. height: math.unit(59, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(5 + 8/12, "feet"),
  43950. name: "Front",
  43951. image: {
  43952. source: "./media/characters/elizabeth/front.svg",
  43953. extra: 1395/1298,
  43954. bottom: 54/1449
  43955. }
  43956. },
  43957. mouth: {
  43958. height: math.unit(1.97, "feet"),
  43959. name: "Mouth",
  43960. image: {
  43961. source: "./media/characters/elizabeth/mouth.svg"
  43962. }
  43963. },
  43964. foot: {
  43965. height: math.unit(1.17, "feet"),
  43966. name: "Foot",
  43967. image: {
  43968. source: "./media/characters/elizabeth/foot.svg"
  43969. }
  43970. },
  43971. },
  43972. [
  43973. {
  43974. name: "Normal",
  43975. height: math.unit(5 + 8/12, "feet"),
  43976. default: true
  43977. },
  43978. {
  43979. name: "Minimacro",
  43980. height: math.unit(18, "feet")
  43981. },
  43982. {
  43983. name: "Macro",
  43984. height: math.unit(180, "feet")
  43985. },
  43986. ]
  43987. ))
  43988. characterMakers.push(() => makeCharacter(
  43989. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43990. {
  43991. front: {
  43992. height: math.unit(5 + 2/12, "feet"),
  43993. name: "Front",
  43994. image: {
  43995. source: "./media/characters/october-gossamer/front.svg",
  43996. extra: 505/454,
  43997. bottom: 7/512
  43998. }
  43999. },
  44000. back: {
  44001. height: math.unit(5 + 2/12, "feet"),
  44002. name: "Back",
  44003. image: {
  44004. source: "./media/characters/october-gossamer/back.svg",
  44005. extra: 501/454,
  44006. bottom: 11/512
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Normal",
  44013. height: math.unit(5 + 2/12, "feet"),
  44014. default: true
  44015. },
  44016. ]
  44017. ))
  44018. characterMakers.push(() => makeCharacter(
  44019. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44020. {
  44021. front: {
  44022. height: math.unit(5, "feet"),
  44023. name: "Front",
  44024. image: {
  44025. source: "./media/characters/epiglottis/front.svg",
  44026. extra: 923/849,
  44027. bottom: 17/940
  44028. }
  44029. },
  44030. },
  44031. [
  44032. {
  44033. name: "Original Size",
  44034. height: math.unit(10, "inches")
  44035. },
  44036. {
  44037. name: "Human Size",
  44038. height: math.unit(5, "feet"),
  44039. default: true
  44040. },
  44041. {
  44042. name: "Big",
  44043. height: math.unit(25, "feet")
  44044. },
  44045. {
  44046. name: "Bigger",
  44047. height: math.unit(50, "feet")
  44048. },
  44049. {
  44050. name: "oh lawd",
  44051. height: math.unit(75, "feet")
  44052. },
  44053. ]
  44054. ))
  44055. characterMakers.push(() => makeCharacter(
  44056. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44057. {
  44058. front: {
  44059. height: math.unit(2 + 4/12, "feet"),
  44060. weight: math.unit(60, "lb"),
  44061. name: "Front",
  44062. image: {
  44063. source: "./media/characters/lerm/front.svg",
  44064. extra: 796/790,
  44065. bottom: 79/875
  44066. }
  44067. },
  44068. },
  44069. [
  44070. {
  44071. name: "Normal",
  44072. height: math.unit(2 + 4/12, "feet"),
  44073. default: true
  44074. },
  44075. ]
  44076. ))
  44077. characterMakers.push(() => makeCharacter(
  44078. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44079. {
  44080. front: {
  44081. height: math.unit(5.5, "feet"),
  44082. weight: math.unit(130, "lb"),
  44083. name: "Front",
  44084. image: {
  44085. source: "./media/characters/xena-nebadon/front.svg",
  44086. extra: 1828/1730,
  44087. bottom: 79/1907
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Tiny Puppy",
  44094. height: math.unit(3, "inches")
  44095. },
  44096. {
  44097. name: "Normal",
  44098. height: math.unit(5.5, "feet"),
  44099. default: true
  44100. },
  44101. {
  44102. name: "Lotta Lady",
  44103. height: math.unit(12, "feet")
  44104. },
  44105. {
  44106. name: "Pretty Big",
  44107. height: math.unit(100, "feet")
  44108. },
  44109. {
  44110. name: "Big",
  44111. height: math.unit(500, "feet")
  44112. },
  44113. {
  44114. name: "Skyscraper Toys",
  44115. height: math.unit(2500, "feet")
  44116. },
  44117. {
  44118. name: "Plane Catcher",
  44119. height: math.unit(8, "miles")
  44120. },
  44121. {
  44122. name: "Planet Toys",
  44123. height: math.unit(15, "earths")
  44124. },
  44125. {
  44126. name: "Stardust",
  44127. height: math.unit(0.25, "galaxies")
  44128. },
  44129. {
  44130. name: "Snacks",
  44131. height: math.unit(70, "universes")
  44132. },
  44133. ]
  44134. ))
  44135. characterMakers.push(() => makeCharacter(
  44136. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44137. {
  44138. front: {
  44139. height: math.unit(1.6, "meters"),
  44140. weight: math.unit(60, "kg"),
  44141. name: "Front",
  44142. image: {
  44143. source: "./media/characters/bounty/front.svg",
  44144. extra: 1426/1308,
  44145. bottom: 15/1441
  44146. }
  44147. },
  44148. back: {
  44149. height: math.unit(1.6, "meters"),
  44150. weight: math.unit(60, "kg"),
  44151. name: "Back",
  44152. image: {
  44153. source: "./media/characters/bounty/back.svg",
  44154. extra: 1417/1307,
  44155. bottom: 8/1425
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Normal",
  44162. height: math.unit(1.6, "meters"),
  44163. default: true
  44164. },
  44165. {
  44166. name: "Macro",
  44167. height: math.unit(300, "meters")
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44173. {
  44174. front: {
  44175. height: math.unit(2 + 8/12, "feet"),
  44176. weight: math.unit(15, "lb"),
  44177. name: "Front",
  44178. image: {
  44179. source: "./media/characters/mochi/front.svg",
  44180. extra: 1022/852,
  44181. bottom: 435/1457
  44182. }
  44183. },
  44184. back: {
  44185. height: math.unit(2 + 8/12, "feet"),
  44186. weight: math.unit(15, "lb"),
  44187. name: "Back",
  44188. image: {
  44189. source: "./media/characters/mochi/back.svg",
  44190. extra: 1335/1119,
  44191. bottom: 39/1374
  44192. }
  44193. },
  44194. bird: {
  44195. height: math.unit(2 + 8/12, "feet"),
  44196. weight: math.unit(15, "lb"),
  44197. name: "Bird",
  44198. image: {
  44199. source: "./media/characters/mochi/bird.svg",
  44200. extra: 1251/1113,
  44201. bottom: 178/1429
  44202. }
  44203. },
  44204. kaiju: {
  44205. height: math.unit(154, "feet"),
  44206. weight: math.unit(1e7, "lb"),
  44207. name: "Kaiju",
  44208. image: {
  44209. source: "./media/characters/mochi/kaiju.svg",
  44210. extra: 460/324,
  44211. bottom: 40/500
  44212. }
  44213. },
  44214. head: {
  44215. height: math.unit(1.21, "feet"),
  44216. name: "Head",
  44217. image: {
  44218. source: "./media/characters/mochi/head.svg"
  44219. }
  44220. },
  44221. alternateTail: {
  44222. height: math.unit(2 + 8/12, "feet"),
  44223. weight: math.unit(45, "lb"),
  44224. name: "Alternate Tail",
  44225. image: {
  44226. source: "./media/characters/mochi/alternate-tail.svg",
  44227. extra: 139/76,
  44228. bottom: 45/184
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Micro",
  44235. height: math.unit(2, "inches")
  44236. },
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(2 + 8/12, "feet"),
  44240. default: true
  44241. },
  44242. {
  44243. name: "Macro",
  44244. height: math.unit(106, "feet")
  44245. },
  44246. ]
  44247. ))
  44248. characterMakers.push(() => makeCharacter(
  44249. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44250. {
  44251. front: {
  44252. height: math.unit(5.67, "feet"),
  44253. weight: math.unit(135, "lb"),
  44254. name: "Front",
  44255. image: {
  44256. source: "./media/characters/sarel/front.svg",
  44257. extra: 865/788,
  44258. bottom: 97/962
  44259. }
  44260. },
  44261. back: {
  44262. height: math.unit(5.67, "feet"),
  44263. weight: math.unit(135, "lb"),
  44264. name: "Back",
  44265. image: {
  44266. source: "./media/characters/sarel/back.svg",
  44267. extra: 857/777,
  44268. bottom: 32/889
  44269. }
  44270. },
  44271. chozoan: {
  44272. height: math.unit(5.67, "feet"),
  44273. weight: math.unit(135, "lb"),
  44274. name: "Chozoan",
  44275. image: {
  44276. source: "./media/characters/sarel/chozoan.svg",
  44277. extra: 865/788,
  44278. bottom: 97/962
  44279. }
  44280. },
  44281. current: {
  44282. height: math.unit(5.67, "feet"),
  44283. weight: math.unit(135, "lb"),
  44284. name: "Current",
  44285. image: {
  44286. source: "./media/characters/sarel/current.svg",
  44287. extra: 865/788,
  44288. bottom: 97/962
  44289. }
  44290. },
  44291. head: {
  44292. height: math.unit(1.77, "feet"),
  44293. name: "Head",
  44294. image: {
  44295. source: "./media/characters/sarel/head.svg"
  44296. }
  44297. },
  44298. claws: {
  44299. height: math.unit(1.8, "feet"),
  44300. name: "Claws",
  44301. image: {
  44302. source: "./media/characters/sarel/claws.svg"
  44303. }
  44304. },
  44305. clawsAlt: {
  44306. height: math.unit(1.8, "feet"),
  44307. name: "Claws-alt",
  44308. image: {
  44309. source: "./media/characters/sarel/claws-alt.svg"
  44310. }
  44311. },
  44312. },
  44313. [
  44314. {
  44315. name: "Normal",
  44316. height: math.unit(5.67, "feet"),
  44317. default: true
  44318. },
  44319. ]
  44320. ))
  44321. characterMakers.push(() => makeCharacter(
  44322. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44323. {
  44324. front: {
  44325. height: math.unit(5500, "feet"),
  44326. name: "Front",
  44327. image: {
  44328. source: "./media/characters/alyonia/front.svg",
  44329. extra: 1200/1135,
  44330. bottom: 29/1229
  44331. }
  44332. },
  44333. back: {
  44334. height: math.unit(5500, "feet"),
  44335. name: "Back",
  44336. image: {
  44337. source: "./media/characters/alyonia/back.svg",
  44338. extra: 1205/1138,
  44339. bottom: 10/1215
  44340. }
  44341. },
  44342. },
  44343. [
  44344. {
  44345. name: "Small",
  44346. height: math.unit(10, "feet")
  44347. },
  44348. {
  44349. name: "Macro",
  44350. height: math.unit(500, "feet")
  44351. },
  44352. {
  44353. name: "Mega Macro",
  44354. height: math.unit(5500, "feet"),
  44355. default: true
  44356. },
  44357. {
  44358. name: "Mega Macro+",
  44359. height: math.unit(500000, "feet")
  44360. },
  44361. {
  44362. name: "Giga Macro",
  44363. height: math.unit(3000, "miles")
  44364. },
  44365. {
  44366. name: "Tera Macro",
  44367. height: math.unit(2.8e6, "miles")
  44368. },
  44369. {
  44370. name: "Galactic",
  44371. height: math.unit(120000, "lightyears")
  44372. },
  44373. ]
  44374. ))
  44375. characterMakers.push(() => makeCharacter(
  44376. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44377. {
  44378. werewolf: {
  44379. height: math.unit(8, "feet"),
  44380. weight: math.unit(425, "lb"),
  44381. name: "Werewolf",
  44382. image: {
  44383. source: "./media/characters/autumn/werewolf.svg",
  44384. extra: 2154/2031,
  44385. bottom: 160/2314
  44386. }
  44387. },
  44388. human: {
  44389. height: math.unit(5 + 8/12, "feet"),
  44390. weight: math.unit(150, "lb"),
  44391. name: "Human",
  44392. image: {
  44393. source: "./media/characters/autumn/human.svg",
  44394. extra: 1200/1149,
  44395. bottom: 30/1230
  44396. }
  44397. },
  44398. },
  44399. [
  44400. {
  44401. name: "Normal",
  44402. height: math.unit(8, "feet"),
  44403. default: true
  44404. },
  44405. ]
  44406. ))
  44407. characterMakers.push(() => makeCharacter(
  44408. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44409. {
  44410. front: {
  44411. height: math.unit(8 + 5/12, "feet"),
  44412. weight: math.unit(825, "lb"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/cobalt-charizard/front.svg",
  44416. extra: 1268/1155,
  44417. bottom: 122/1390
  44418. }
  44419. },
  44420. side: {
  44421. height: math.unit(8 + 5/12, "feet"),
  44422. weight: math.unit(825, "lb"),
  44423. name: "Side",
  44424. image: {
  44425. source: "./media/characters/cobalt-charizard/side.svg",
  44426. extra: 1348/1257,
  44427. bottom: 58/1406
  44428. }
  44429. },
  44430. gMax: {
  44431. height: math.unit(134 + 11/12, "feet"),
  44432. name: "G-Max",
  44433. image: {
  44434. source: "./media/characters/cobalt-charizard/g-max.svg",
  44435. extra: 1835/1541,
  44436. bottom: 151/1986
  44437. }
  44438. },
  44439. },
  44440. [
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(8 + 5/12, "feet"),
  44444. default: true
  44445. },
  44446. ]
  44447. ))
  44448. characterMakers.push(() => makeCharacter(
  44449. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44450. {
  44451. front: {
  44452. height: math.unit(6 + 3/12, "feet"),
  44453. weight: math.unit(210, "lb"),
  44454. name: "Front",
  44455. image: {
  44456. source: "./media/characters/stella/front.svg",
  44457. extra: 3549/3335,
  44458. bottom: 51/3600
  44459. }
  44460. },
  44461. },
  44462. [
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(6 + 3/12, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(5, "feet"),
  44475. weight: math.unit(90, "lb"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/riley-bishop/front.svg",
  44479. extra: 1450/1428,
  44480. bottom: 152/1602
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(5, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44494. {
  44495. side: {
  44496. height: math.unit(8 + 2/12, "feet"),
  44497. weight: math.unit(500, "kg"),
  44498. name: "Side",
  44499. image: {
  44500. source: "./media/characters/theo-arcanine/side.svg",
  44501. extra: 1342/1074,
  44502. bottom: 111/1453
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(8 + 2/12, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(4, "feet"),
  44519. name: "Front",
  44520. image: {
  44521. source: "./media/characters/kali/front.svg",
  44522. extra: 1921/1357,
  44523. bottom: 70/1991
  44524. }
  44525. },
  44526. },
  44527. [
  44528. {
  44529. name: "Normal",
  44530. height: math.unit(4, "feet"),
  44531. default: true
  44532. },
  44533. {
  44534. name: "Macro",
  44535. height: math.unit(32, "meters")
  44536. },
  44537. {
  44538. name: "Macro+",
  44539. height: math.unit(150, "meters")
  44540. },
  44541. {
  44542. name: "Megamacro",
  44543. height: math.unit(7500, "meters")
  44544. },
  44545. {
  44546. name: "Megamacro+",
  44547. height: math.unit(80, "kilometers")
  44548. },
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44553. {
  44554. side: {
  44555. height: math.unit(5 + 11/12, "feet"),
  44556. weight: math.unit(236, "lb"),
  44557. name: "Side",
  44558. image: {
  44559. source: "./media/characters/gapp/side.svg",
  44560. extra: 775/340,
  44561. bottom: 58/833
  44562. }
  44563. },
  44564. mouth: {
  44565. height: math.unit(2.98, "feet"),
  44566. name: "Mouth",
  44567. image: {
  44568. source: "./media/characters/gapp/mouth.svg"
  44569. }
  44570. },
  44571. },
  44572. [
  44573. {
  44574. name: "Normal",
  44575. height: math.unit(5 + 1/12, "feet"),
  44576. default: true
  44577. },
  44578. ]
  44579. ))
  44580. characterMakers.push(() => makeCharacter(
  44581. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44582. {
  44583. front: {
  44584. height: math.unit(6, "feet"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/persephone/front.svg",
  44588. extra: 1895/1717,
  44589. bottom: 96/1991
  44590. }
  44591. },
  44592. back: {
  44593. height: math.unit(6, "feet"),
  44594. name: "Back",
  44595. image: {
  44596. source: "./media/characters/persephone/back.svg",
  44597. extra: 1868/1679,
  44598. bottom: 26/1894
  44599. }
  44600. },
  44601. casual: {
  44602. height: math.unit(6, "feet"),
  44603. name: "Casual",
  44604. image: {
  44605. source: "./media/characters/persephone/casual.svg",
  44606. extra: 1713/1541,
  44607. bottom: 76/1789
  44608. }
  44609. },
  44610. },
  44611. [
  44612. {
  44613. name: "Human Size",
  44614. height: math.unit(6, "feet")
  44615. },
  44616. {
  44617. name: "Big Steppy",
  44618. height: math.unit(600, "meters"),
  44619. default: true
  44620. },
  44621. {
  44622. name: "Galaxy Brain",
  44623. height: math.unit(1, "zettameter")
  44624. },
  44625. ]
  44626. ))
  44627. characterMakers.push(() => makeCharacter(
  44628. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44629. {
  44630. front: {
  44631. height: math.unit(1.85, "meters"),
  44632. name: "Front",
  44633. image: {
  44634. source: "./media/characters/riley-foxthing/front.svg",
  44635. extra: 1495/1354,
  44636. bottom: 122/1617
  44637. }
  44638. },
  44639. frontAlt: {
  44640. height: math.unit(1.85, "meters"),
  44641. name: "Front (Alt)",
  44642. image: {
  44643. source: "./media/characters/riley-foxthing/front-alt.svg",
  44644. extra: 1572/1389,
  44645. bottom: 116/1688
  44646. }
  44647. },
  44648. },
  44649. [
  44650. {
  44651. name: "Normal Sized",
  44652. height: math.unit(1.85, "meters"),
  44653. default: true
  44654. },
  44655. {
  44656. name: "Quite Sizable",
  44657. height: math.unit(5, "meters")
  44658. },
  44659. {
  44660. name: "Rather Large",
  44661. height: math.unit(20, "meters")
  44662. },
  44663. {
  44664. name: "Macro",
  44665. height: math.unit(450, "meters")
  44666. },
  44667. {
  44668. name: "Giga",
  44669. height: math.unit(5, "km")
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44675. {
  44676. front: {
  44677. height: math.unit(6, "feet"),
  44678. weight: math.unit(200, "lb"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/blizzard/front.svg",
  44682. extra: 1136/990,
  44683. bottom: 136/1272
  44684. }
  44685. },
  44686. back: {
  44687. height: math.unit(6, "feet"),
  44688. weight: math.unit(200, "lb"),
  44689. name: "Back",
  44690. image: {
  44691. source: "./media/characters/blizzard/back.svg",
  44692. extra: 1175/1034,
  44693. bottom: 97/1272
  44694. }
  44695. },
  44696. sitting: {
  44697. height: math.unit(3.725, "feet"),
  44698. weight: math.unit(200, "lb"),
  44699. name: "Sitting",
  44700. image: {
  44701. source: "./media/characters/blizzard/sitting.svg",
  44702. extra: 581/485,
  44703. bottom: 90/671
  44704. }
  44705. },
  44706. frontWizard: {
  44707. height: math.unit(7.9, "feet"),
  44708. weight: math.unit(200, "lb"),
  44709. name: "Front (Wizard)",
  44710. image: {
  44711. source: "./media/characters/blizzard/front-wizard.svg"
  44712. }
  44713. },
  44714. backWizard: {
  44715. height: math.unit(7.9, "feet"),
  44716. weight: math.unit(200, "lb"),
  44717. name: "Back (Wizard)",
  44718. image: {
  44719. source: "./media/characters/blizzard/back-wizard.svg"
  44720. }
  44721. },
  44722. frontNsfw: {
  44723. height: math.unit(6, "feet"),
  44724. weight: math.unit(200, "lb"),
  44725. name: "Front (NSFW)",
  44726. image: {
  44727. source: "./media/characters/blizzard/front-nsfw.svg",
  44728. extra: 1136/990,
  44729. bottom: 136/1272
  44730. }
  44731. },
  44732. backNsfw: {
  44733. height: math.unit(6, "feet"),
  44734. weight: math.unit(200, "lb"),
  44735. name: "Back (NSFW)",
  44736. image: {
  44737. source: "./media/characters/blizzard/back-nsfw.svg",
  44738. extra: 1175/1034,
  44739. bottom: 97/1272
  44740. }
  44741. },
  44742. sittingNsfw: {
  44743. height: math.unit(3.725, "feet"),
  44744. weight: math.unit(200, "lb"),
  44745. name: "Sitting (NSFW)",
  44746. image: {
  44747. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44748. extra: 581/485,
  44749. bottom: 90/671
  44750. }
  44751. },
  44752. wizardFrontNsfw: {
  44753. height: math.unit(7.9, "feet"),
  44754. weight: math.unit(200, "lb"),
  44755. name: "Wizard (Front, NSFW)",
  44756. image: {
  44757. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44758. }
  44759. },
  44760. },
  44761. [
  44762. {
  44763. name: "Normal",
  44764. height: math.unit(6, "feet"),
  44765. default: true
  44766. },
  44767. ]
  44768. ))
  44769. characterMakers.push(() => makeCharacter(
  44770. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44771. {
  44772. front: {
  44773. height: math.unit(5 + 2/12, "feet"),
  44774. name: "Front",
  44775. image: {
  44776. source: "./media/characters/lumi/front.svg",
  44777. extra: 1328/1268,
  44778. bottom: 103/1431
  44779. }
  44780. },
  44781. back: {
  44782. height: math.unit(5 + 2/12, "feet"),
  44783. name: "Back",
  44784. image: {
  44785. source: "./media/characters/lumi/back.svg",
  44786. extra: 1381/1327,
  44787. bottom: 43/1424
  44788. }
  44789. },
  44790. },
  44791. [
  44792. {
  44793. name: "Normal",
  44794. height: math.unit(5 + 2/12, "feet"),
  44795. default: true
  44796. },
  44797. ]
  44798. ))
  44799. characterMakers.push(() => makeCharacter(
  44800. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44801. {
  44802. front: {
  44803. height: math.unit(5 + 9/12, "feet"),
  44804. name: "Front",
  44805. image: {
  44806. source: "./media/characters/aliya-cotton/front.svg",
  44807. extra: 577/564,
  44808. bottom: 29/606
  44809. }
  44810. },
  44811. },
  44812. [
  44813. {
  44814. name: "Normal",
  44815. height: math.unit(5 + 9/12, "feet"),
  44816. default: true
  44817. },
  44818. ]
  44819. ))
  44820. characterMakers.push(() => makeCharacter(
  44821. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44822. {
  44823. front: {
  44824. height: math.unit(2.7, "meters"),
  44825. weight: math.unit(25000, "lb"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/noah-luxray/front.svg",
  44829. extra: 1644/825,
  44830. bottom: 339/1983
  44831. }
  44832. },
  44833. side: {
  44834. height: math.unit(2.97, "meters"),
  44835. weight: math.unit(25000, "lb"),
  44836. name: "Side",
  44837. image: {
  44838. source: "./media/characters/noah-luxray/side.svg",
  44839. extra: 1319/650,
  44840. bottom: 163/1482
  44841. }
  44842. },
  44843. dick: {
  44844. height: math.unit(7.4, "feet"),
  44845. weight: math.unit(2500, "lb"),
  44846. name: "Dick",
  44847. image: {
  44848. source: "./media/characters/noah-luxray/dick.svg"
  44849. }
  44850. },
  44851. dickAlt: {
  44852. height: math.unit(10.83, "feet"),
  44853. weight: math.unit(2500, "lb"),
  44854. name: "Dick-alt",
  44855. image: {
  44856. source: "./media/characters/noah-luxray/dick-alt.svg"
  44857. }
  44858. },
  44859. },
  44860. [
  44861. {
  44862. name: "BIG",
  44863. height: math.unit(2.7, "meters"),
  44864. default: true
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44870. {
  44871. standing: {
  44872. height: math.unit(183, "cm"),
  44873. weight: math.unit(68, "kg"),
  44874. name: "Standing",
  44875. image: {
  44876. source: "./media/characters/arion/standing.svg",
  44877. extra: 1869/1807,
  44878. bottom: 93/1962
  44879. }
  44880. },
  44881. reclining: {
  44882. height: math.unit(70.5, "cm"),
  44883. weight: math.unit(68, "lb"),
  44884. name: "Reclining",
  44885. image: {
  44886. source: "./media/characters/arion/reclining.svg",
  44887. extra: 937/870,
  44888. bottom: 63/1000
  44889. }
  44890. },
  44891. },
  44892. [
  44893. {
  44894. name: "Colossus Size, Low",
  44895. height: math.unit(33, "meters"),
  44896. default: true
  44897. },
  44898. {
  44899. name: "Colossus Size, Mid",
  44900. height: math.unit(52, "meters")
  44901. },
  44902. {
  44903. name: "Colossus Size, High",
  44904. height: math.unit(60, "meters")
  44905. },
  44906. {
  44907. name: "Titan Size, Low",
  44908. height: math.unit(91, "meters"),
  44909. },
  44910. {
  44911. name: "Titan Size, Mid",
  44912. height: math.unit(122, "meters")
  44913. },
  44914. {
  44915. name: "Titan Size, High",
  44916. height: math.unit(162, "meters")
  44917. },
  44918. ]
  44919. ))
  44920. characterMakers.push(() => makeCharacter(
  44921. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44922. {
  44923. front: {
  44924. height: math.unit(53, "meters"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/stellar-marbey/front.svg",
  44928. extra: 1913/1805,
  44929. bottom: 92/2005
  44930. }
  44931. },
  44932. back: {
  44933. height: math.unit(53, "meters"),
  44934. name: "Back",
  44935. image: {
  44936. source: "./media/characters/stellar-marbey/back.svg",
  44937. extra: 1960/1851,
  44938. bottom: 28/1988
  44939. }
  44940. },
  44941. mouth: {
  44942. height: math.unit(3.5, "meters"),
  44943. name: "Mouth",
  44944. image: {
  44945. source: "./media/characters/stellar-marbey/mouth.svg"
  44946. }
  44947. },
  44948. },
  44949. [
  44950. {
  44951. name: "Macro",
  44952. height: math.unit(53, "meters"),
  44953. default: true
  44954. },
  44955. ]
  44956. ))
  44957. characterMakers.push(() => makeCharacter(
  44958. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44959. {
  44960. front: {
  44961. height: math.unit(8 + 1/12, "feet"),
  44962. weight: math.unit(233, "lb"),
  44963. name: "Front",
  44964. image: {
  44965. source: "./media/characters/matsu/front.svg",
  44966. extra: 832/772,
  44967. bottom: 40/872
  44968. }
  44969. },
  44970. back: {
  44971. height: math.unit(8 + 1/12, "feet"),
  44972. weight: math.unit(233, "lb"),
  44973. name: "Back",
  44974. image: {
  44975. source: "./media/characters/matsu/back.svg",
  44976. extra: 839/780,
  44977. bottom: 47/886
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(8 + 1/12, "feet"),
  44985. default: true
  44986. },
  44987. ]
  44988. ))
  44989. characterMakers.push(() => makeCharacter(
  44990. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44991. {
  44992. front: {
  44993. height: math.unit(4, "feet"),
  44994. weight: math.unit(148, "lb"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/thiz/front.svg",
  44998. extra: 1913/1748,
  44999. bottom: 62/1975
  45000. }
  45001. },
  45002. },
  45003. [
  45004. {
  45005. name: "Normal",
  45006. height: math.unit(4, "feet"),
  45007. default: true
  45008. },
  45009. ]
  45010. ))
  45011. characterMakers.push(() => makeCharacter(
  45012. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45013. {
  45014. front: {
  45015. height: math.unit(7 + 6/12, "feet"),
  45016. weight: math.unit(267, "lb"),
  45017. name: "Front",
  45018. image: {
  45019. source: "./media/characters/marcel/front.svg",
  45020. extra: 1221/1096,
  45021. bottom: 76/1297
  45022. }
  45023. },
  45024. },
  45025. [
  45026. {
  45027. name: "Normal",
  45028. height: math.unit(7 + 6/12, "feet"),
  45029. default: true
  45030. },
  45031. ]
  45032. ))
  45033. characterMakers.push(() => makeCharacter(
  45034. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45035. {
  45036. side: {
  45037. height: math.unit(42, "meters"),
  45038. name: "Side",
  45039. image: {
  45040. source: "./media/characters/flake/side.svg",
  45041. extra: 1525/1306,
  45042. bottom: 209/1734
  45043. }
  45044. },
  45045. },
  45046. [
  45047. {
  45048. name: "Normal",
  45049. height: math.unit(42, "meters"),
  45050. default: true
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45056. {
  45057. dressed: {
  45058. height: math.unit(6 + 4/12, "feet"),
  45059. weight: math.unit(520, "lb"),
  45060. name: "Dressed",
  45061. image: {
  45062. source: "./media/characters/someonne/dressed.svg",
  45063. extra: 1020/1010,
  45064. bottom: 178/1198
  45065. }
  45066. },
  45067. undressed: {
  45068. height: math.unit(6 + 4/12, "feet"),
  45069. weight: math.unit(520, "lb"),
  45070. name: "Undressed",
  45071. image: {
  45072. source: "./media/characters/someonne/undressed.svg",
  45073. extra: 1019/1014,
  45074. bottom: 169/1188
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(6 + 4/12, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(3, "feet"),
  45091. weight: math.unit(30, "lb"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/till/front.svg",
  45095. extra: 892/823,
  45096. bottom: 55/947
  45097. }
  45098. },
  45099. },
  45100. [
  45101. {
  45102. name: "Normal",
  45103. height: math.unit(3, "feet"),
  45104. default: true
  45105. },
  45106. ]
  45107. ))
  45108. characterMakers.push(() => makeCharacter(
  45109. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45110. {
  45111. front: {
  45112. height: math.unit(9 + 8/12, "feet"),
  45113. weight: math.unit(800, "lb"),
  45114. name: "Front",
  45115. image: {
  45116. source: "./media/characters/sydney-heki/front.svg",
  45117. extra: 1360/1300,
  45118. bottom: 22/1382
  45119. }
  45120. },
  45121. back: {
  45122. height: math.unit(9 + 8/12, "feet"),
  45123. weight: math.unit(800, "lb"),
  45124. name: "Back",
  45125. image: {
  45126. source: "./media/characters/sydney-heki/back.svg",
  45127. extra: 1356/1293,
  45128. bottom: 12/1368
  45129. }
  45130. },
  45131. frontDressed: {
  45132. height: math.unit(9 + 8/12, "feet"),
  45133. weight: math.unit(800, "lb"),
  45134. name: "Front-dressed",
  45135. image: {
  45136. source: "./media/characters/sydney-heki/front-dressed.svg",
  45137. extra: 1360/1300,
  45138. bottom: 22/1382
  45139. }
  45140. },
  45141. },
  45142. [
  45143. {
  45144. name: "Normal",
  45145. height: math.unit(9 + 8/12, "feet"),
  45146. default: true
  45147. },
  45148. {
  45149. name: "Macro",
  45150. height: math.unit(500, "feet")
  45151. },
  45152. {
  45153. name: "Megamacro",
  45154. height: math.unit(3.6, "miles")
  45155. },
  45156. ]
  45157. ))
  45158. characterMakers.push(() => makeCharacter(
  45159. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45160. {
  45161. front: {
  45162. height: math.unit(200, "cm"),
  45163. weight: math.unit(250, "lb"),
  45164. name: "Front",
  45165. image: {
  45166. source: "./media/characters/fowler-karlsson/front.svg",
  45167. extra: 897/845,
  45168. bottom: 123/1020
  45169. }
  45170. },
  45171. back: {
  45172. height: math.unit(200, "cm"),
  45173. weight: math.unit(250, "lb"),
  45174. name: "Back",
  45175. image: {
  45176. source: "./media/characters/fowler-karlsson/back.svg",
  45177. extra: 999/944,
  45178. bottom: 26/1025
  45179. }
  45180. },
  45181. dick: {
  45182. height: math.unit(1.92, "feet"),
  45183. weight: math.unit(150, "lb"),
  45184. name: "Dick",
  45185. image: {
  45186. source: "./media/characters/fowler-karlsson/dick.svg"
  45187. }
  45188. },
  45189. },
  45190. [
  45191. {
  45192. name: "Normal",
  45193. height: math.unit(200, "cm"),
  45194. default: true
  45195. },
  45196. {
  45197. name: "Smaller Macro",
  45198. height: math.unit(90, "m")
  45199. },
  45200. {
  45201. name: "Macro",
  45202. height: math.unit(150, "m")
  45203. },
  45204. {
  45205. name: "Bigger Macro",
  45206. height: math.unit(300, "m")
  45207. },
  45208. ]
  45209. ))
  45210. characterMakers.push(() => makeCharacter(
  45211. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45212. {
  45213. side: {
  45214. height: math.unit(8 + 2/12, "feet"),
  45215. weight: math.unit(1, "tonne"),
  45216. name: "Side",
  45217. image: {
  45218. source: "./media/characters/rylide/side.svg",
  45219. extra: 1318/1034,
  45220. bottom: 106/1424
  45221. }
  45222. },
  45223. sitting: {
  45224. height: math.unit(303, "cm"),
  45225. weight: math.unit(1, "tonne"),
  45226. name: "Sitting",
  45227. image: {
  45228. source: "./media/characters/rylide/sitting.svg",
  45229. extra: 1303/1103,
  45230. bottom: 36/1339
  45231. }
  45232. },
  45233. },
  45234. [
  45235. {
  45236. name: "Normal",
  45237. height: math.unit(8 + 2/12, "feet"),
  45238. default: true
  45239. },
  45240. ]
  45241. ))
  45242. characterMakers.push(() => makeCharacter(
  45243. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45244. {
  45245. front: {
  45246. height: math.unit(5 + 10/12, "feet"),
  45247. weight: math.unit(160, "lb"),
  45248. name: "Front",
  45249. image: {
  45250. source: "./media/characters/pudask/front.svg",
  45251. extra: 1616/1590,
  45252. bottom: 161/1777
  45253. }
  45254. },
  45255. },
  45256. [
  45257. {
  45258. name: "Ferret Height",
  45259. height: math.unit(2 + 5/12, "feet")
  45260. },
  45261. {
  45262. name: "Canon Height",
  45263. height: math.unit(5 + 10/12, "feet"),
  45264. default: true
  45265. },
  45266. ]
  45267. ))
  45268. characterMakers.push(() => makeCharacter(
  45269. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45270. {
  45271. front: {
  45272. height: math.unit(3 + 6/12, "feet"),
  45273. weight: math.unit(60, "lb"),
  45274. name: "Front",
  45275. image: {
  45276. source: "./media/characters/ramita/front.svg",
  45277. extra: 1402/1232,
  45278. bottom: 62/1464
  45279. }
  45280. },
  45281. dressed: {
  45282. height: math.unit(3 + 6/12, "feet"),
  45283. weight: math.unit(60, "lb"),
  45284. name: "Dressed",
  45285. image: {
  45286. source: "./media/characters/ramita/dressed.svg",
  45287. extra: 1534/1249,
  45288. bottom: 50/1584
  45289. }
  45290. },
  45291. },
  45292. [
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(3 + 6/12, "feet"),
  45296. default: true
  45297. },
  45298. ]
  45299. ))
  45300. characterMakers.push(() => makeCharacter(
  45301. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45302. {
  45303. front: {
  45304. height: math.unit(8, "feet"),
  45305. name: "Front",
  45306. image: {
  45307. source: "./media/characters/ark/front.svg",
  45308. extra: 772/693,
  45309. bottom: 45/817
  45310. }
  45311. },
  45312. },
  45313. [
  45314. {
  45315. name: "Normal",
  45316. height: math.unit(8, "feet"),
  45317. default: true
  45318. },
  45319. ]
  45320. ))
  45321. characterMakers.push(() => makeCharacter(
  45322. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45323. {
  45324. front: {
  45325. height: math.unit(6, "feet"),
  45326. weight: math.unit(250, "lb"),
  45327. volume: math.unit(5/8, "gallons"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/ludwig-horn/front.svg",
  45331. extra: 1782/1635,
  45332. bottom: 96/1878
  45333. }
  45334. },
  45335. back: {
  45336. height: math.unit(6, "feet"),
  45337. weight: math.unit(250, "lb"),
  45338. volume: math.unit(5/8, "gallons"),
  45339. name: "Back",
  45340. image: {
  45341. source: "./media/characters/ludwig-horn/back.svg",
  45342. extra: 1874/1729,
  45343. bottom: 27/1901
  45344. }
  45345. },
  45346. dick: {
  45347. height: math.unit(1.05, "feet"),
  45348. weight: math.unit(15, "lb"),
  45349. volume: math.unit(5/8, "gallons"),
  45350. name: "Dick",
  45351. image: {
  45352. source: "./media/characters/ludwig-horn/dick.svg"
  45353. }
  45354. },
  45355. },
  45356. [
  45357. {
  45358. name: "Small",
  45359. height: math.unit(6, "feet")
  45360. },
  45361. {
  45362. name: "Typical",
  45363. height: math.unit(12, "feet"),
  45364. default: true
  45365. },
  45366. {
  45367. name: "Building",
  45368. height: math.unit(80, "feet")
  45369. },
  45370. {
  45371. name: "Town",
  45372. height: math.unit(800, "feet")
  45373. },
  45374. {
  45375. name: "Kingdom",
  45376. height: math.unit(80000, "feet")
  45377. },
  45378. {
  45379. name: "Planet",
  45380. height: math.unit(8000000, "feet")
  45381. },
  45382. {
  45383. name: "Universe",
  45384. height: math.unit(8000000000, "feet")
  45385. },
  45386. {
  45387. name: "Transcended",
  45388. height: math.unit(8e27, "feet")
  45389. },
  45390. ]
  45391. ))
  45392. characterMakers.push(() => makeCharacter(
  45393. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45394. {
  45395. front: {
  45396. height: math.unit(5, "feet"),
  45397. weight: math.unit(50, "kg"),
  45398. name: "Front",
  45399. image: {
  45400. source: "./media/characters/biot-avery/front.svg",
  45401. extra: 1295/1232,
  45402. bottom: 86/1381
  45403. }
  45404. },
  45405. },
  45406. [
  45407. {
  45408. name: "Normal",
  45409. height: math.unit(5, "feet"),
  45410. default: true
  45411. },
  45412. ]
  45413. ))
  45414. characterMakers.push(() => makeCharacter(
  45415. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45416. {
  45417. front: {
  45418. height: math.unit(6, "feet"),
  45419. name: "Front",
  45420. image: {
  45421. source: "./media/characters/kitsune-kiro/front.svg",
  45422. extra: 1270/1158,
  45423. bottom: 42/1312
  45424. }
  45425. },
  45426. frontAlt: {
  45427. height: math.unit(6, "feet"),
  45428. name: "Front-alt",
  45429. image: {
  45430. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45431. extra: 1130/1081,
  45432. bottom: 36/1166
  45433. }
  45434. },
  45435. },
  45436. [
  45437. {
  45438. name: "Smol",
  45439. height: math.unit(3, "feet")
  45440. },
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(6, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45450. {
  45451. front: {
  45452. height: math.unit(6, "feet"),
  45453. weight: math.unit(125, "lb"),
  45454. name: "Front",
  45455. image: {
  45456. source: "./media/characters/jack-thatcher/front.svg",
  45457. extra: 1474/1370,
  45458. bottom: 26/1500
  45459. }
  45460. },
  45461. back: {
  45462. height: math.unit(6, "feet"),
  45463. weight: math.unit(125, "lb"),
  45464. name: "Back",
  45465. image: {
  45466. source: "./media/characters/jack-thatcher/back.svg",
  45467. extra: 1489/1384,
  45468. bottom: 18/1507
  45469. }
  45470. },
  45471. },
  45472. [
  45473. {
  45474. name: "Normal",
  45475. height: math.unit(6, "feet"),
  45476. default: true
  45477. },
  45478. {
  45479. name: "Macro",
  45480. height: math.unit(75, "feet")
  45481. },
  45482. {
  45483. name: "Macro-er",
  45484. height: math.unit(250, "feet")
  45485. },
  45486. ]
  45487. ))
  45488. characterMakers.push(() => makeCharacter(
  45489. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45490. {
  45491. front: {
  45492. height: math.unit(7, "feet"),
  45493. weight: math.unit(110, "kg"),
  45494. name: "Front",
  45495. image: {
  45496. source: "./media/characters/max-hyper/front.svg",
  45497. extra: 1969/1881,
  45498. bottom: 49/2018
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(7, "feet"),
  45506. default: true
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45512. {
  45513. front: {
  45514. height: math.unit(5 + 5/12, "feet"),
  45515. weight: math.unit(160, "lb"),
  45516. name: "Front",
  45517. image: {
  45518. source: "./media/characters/spook/front.svg",
  45519. extra: 794/791,
  45520. bottom: 54/848
  45521. }
  45522. },
  45523. back: {
  45524. height: math.unit(5 + 5/12, "feet"),
  45525. weight: math.unit(160, "lb"),
  45526. name: "Back",
  45527. image: {
  45528. source: "./media/characters/spook/back.svg",
  45529. extra: 812/798,
  45530. bottom: 32/844
  45531. }
  45532. },
  45533. },
  45534. [
  45535. {
  45536. name: "Normal",
  45537. height: math.unit(5 + 5/12, "feet"),
  45538. default: true
  45539. },
  45540. ]
  45541. ))
  45542. characterMakers.push(() => makeCharacter(
  45543. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45544. {
  45545. front: {
  45546. height: math.unit(18, "feet"),
  45547. name: "Front",
  45548. image: {
  45549. source: "./media/characters/xeaduulix/front.svg",
  45550. extra: 1380/1166,
  45551. bottom: 110/1490
  45552. }
  45553. },
  45554. back: {
  45555. height: math.unit(18, "feet"),
  45556. name: "Back",
  45557. image: {
  45558. source: "./media/characters/xeaduulix/back.svg",
  45559. extra: 1592/1170,
  45560. bottom: 128/1720
  45561. }
  45562. },
  45563. frontNsfw: {
  45564. height: math.unit(18, "feet"),
  45565. name: "Front (NSFW)",
  45566. image: {
  45567. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45568. extra: 1380/1166,
  45569. bottom: 110/1490
  45570. }
  45571. },
  45572. backNsfw: {
  45573. height: math.unit(18, "feet"),
  45574. name: "Back (NSFW)",
  45575. image: {
  45576. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45577. extra: 1592/1170,
  45578. bottom: 128/1720
  45579. }
  45580. },
  45581. },
  45582. [
  45583. {
  45584. name: "Normal",
  45585. height: math.unit(18, "feet"),
  45586. default: true
  45587. },
  45588. ]
  45589. ))
  45590. characterMakers.push(() => makeCharacter(
  45591. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45592. {
  45593. spreadWings: {
  45594. height: math.unit(20, "feet"),
  45595. name: "Spread Wings",
  45596. image: {
  45597. source: "./media/characters/fledge/spread-wings.svg",
  45598. extra: 693/635,
  45599. bottom: 26/719
  45600. }
  45601. },
  45602. front: {
  45603. height: math.unit(20, "feet"),
  45604. name: "Front",
  45605. image: {
  45606. source: "./media/characters/fledge/front.svg",
  45607. extra: 684/637,
  45608. bottom: 18/702
  45609. }
  45610. },
  45611. frontAlt: {
  45612. height: math.unit(20, "feet"),
  45613. name: "Front (Alt)",
  45614. image: {
  45615. source: "./media/characters/fledge/front-alt.svg",
  45616. extra: 708/664,
  45617. bottom: 13/721
  45618. }
  45619. },
  45620. back: {
  45621. height: math.unit(20, "feet"),
  45622. name: "Back",
  45623. image: {
  45624. source: "./media/characters/fledge/back.svg",
  45625. extra: 718/634,
  45626. bottom: 22/740
  45627. }
  45628. },
  45629. head: {
  45630. height: math.unit(5.55, "feet"),
  45631. name: "Head",
  45632. image: {
  45633. source: "./media/characters/fledge/head.svg"
  45634. }
  45635. },
  45636. headAlt: {
  45637. height: math.unit(5.1, "feet"),
  45638. name: "Head (Alt)",
  45639. image: {
  45640. source: "./media/characters/fledge/head-alt.svg"
  45641. }
  45642. },
  45643. },
  45644. [
  45645. {
  45646. name: "Small",
  45647. height: math.unit(6 + 2/12, "feet")
  45648. },
  45649. {
  45650. name: "Big",
  45651. height: math.unit(20, "feet"),
  45652. default: true
  45653. },
  45654. {
  45655. name: "Giant",
  45656. height: math.unit(100, "feet")
  45657. },
  45658. {
  45659. name: "Macro",
  45660. height: math.unit(200, "feet")
  45661. },
  45662. ]
  45663. ))
  45664. characterMakers.push(() => makeCharacter(
  45665. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45666. {
  45667. front: {
  45668. height: math.unit(1, "meter"),
  45669. name: "Front",
  45670. image: {
  45671. source: "./media/characters/atlas-morenai/front.svg",
  45672. extra: 1275/1043,
  45673. bottom: 19/1294
  45674. }
  45675. },
  45676. back: {
  45677. height: math.unit(1, "meter"),
  45678. name: "Back",
  45679. image: {
  45680. source: "./media/characters/atlas-morenai/back.svg",
  45681. extra: 1141/1001,
  45682. bottom: 25/1166
  45683. }
  45684. },
  45685. },
  45686. [
  45687. {
  45688. name: "Normal",
  45689. height: math.unit(1, "meter"),
  45690. default: true
  45691. },
  45692. {
  45693. name: "Magic-Infused",
  45694. height: math.unit(5, "meters")
  45695. },
  45696. ]
  45697. ))
  45698. characterMakers.push(() => makeCharacter(
  45699. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45700. {
  45701. front: {
  45702. height: math.unit(5, "meters"),
  45703. name: "Front",
  45704. image: {
  45705. source: "./media/characters/cintia/front.svg",
  45706. extra: 1312/1228,
  45707. bottom: 38/1350
  45708. }
  45709. },
  45710. back: {
  45711. height: math.unit(5, "meters"),
  45712. name: "Back",
  45713. image: {
  45714. source: "./media/characters/cintia/back.svg",
  45715. extra: 1260/1166,
  45716. bottom: 98/1358
  45717. }
  45718. },
  45719. frontDick: {
  45720. height: math.unit(5, "meters"),
  45721. name: "Front (Dick)",
  45722. image: {
  45723. source: "./media/characters/cintia/front-dick.svg",
  45724. extra: 1312/1228,
  45725. bottom: 38/1350
  45726. }
  45727. },
  45728. backDick: {
  45729. height: math.unit(5, "meters"),
  45730. name: "Back (Dick)",
  45731. image: {
  45732. source: "./media/characters/cintia/back-dick.svg",
  45733. extra: 1260/1166,
  45734. bottom: 98/1358
  45735. }
  45736. },
  45737. bust: {
  45738. height: math.unit(1.97, "meters"),
  45739. name: "Bust",
  45740. image: {
  45741. source: "./media/characters/cintia/bust.svg",
  45742. extra: 617/565,
  45743. bottom: 0/617
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(5, "meters"),
  45751. default: true
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45757. {
  45758. side: {
  45759. height: math.unit(100, "feet"),
  45760. name: "Side",
  45761. image: {
  45762. source: "./media/characters/denora/side.svg",
  45763. extra: 875/803,
  45764. bottom: 9/884
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Standard",
  45771. height: math.unit(100, "feet"),
  45772. default: true
  45773. },
  45774. {
  45775. name: "Grand",
  45776. height: math.unit(1000, "feet")
  45777. },
  45778. {
  45779. name: "Conquering",
  45780. height: math.unit(10000, "feet")
  45781. },
  45782. ]
  45783. ))
  45784. characterMakers.push(() => makeCharacter(
  45785. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45786. {
  45787. dressed: {
  45788. height: math.unit(8 + 5/12, "feet"),
  45789. weight: math.unit(700, "lb"),
  45790. name: "Dressed",
  45791. image: {
  45792. source: "./media/characters/kiva/dressed.svg",
  45793. extra: 1102/1055,
  45794. bottom: 60/1162
  45795. }
  45796. },
  45797. nude: {
  45798. height: math.unit(8 + 5/12, "feet"),
  45799. weight: math.unit(700, "lb"),
  45800. name: "Nude",
  45801. image: {
  45802. source: "./media/characters/kiva/nude.svg",
  45803. extra: 1102/1055,
  45804. bottom: 60/1162
  45805. }
  45806. },
  45807. },
  45808. [
  45809. {
  45810. name: "Base Height",
  45811. height: math.unit(8 + 5/12, "feet"),
  45812. default: true
  45813. },
  45814. {
  45815. name: "Macro",
  45816. height: math.unit(100, "feet")
  45817. },
  45818. {
  45819. name: "Max",
  45820. height: math.unit(3280, "feet")
  45821. },
  45822. ]
  45823. ))
  45824. characterMakers.push(() => makeCharacter(
  45825. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45826. {
  45827. front: {
  45828. height: math.unit(6 + 8/12, "feet"),
  45829. weight: math.unit(250, "lb"),
  45830. name: "Front",
  45831. image: {
  45832. source: "./media/characters/ztragon/front.svg",
  45833. extra: 1825/1684,
  45834. bottom: 98/1923
  45835. }
  45836. },
  45837. },
  45838. [
  45839. {
  45840. name: "Normal",
  45841. height: math.unit(6 + 8/12, "feet"),
  45842. default: true
  45843. },
  45844. {
  45845. name: "Macro",
  45846. height: math.unit(80, "feet")
  45847. },
  45848. ]
  45849. ))
  45850. characterMakers.push(() => makeCharacter(
  45851. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45852. {
  45853. front: {
  45854. height: math.unit(10.4, "feet"),
  45855. weight: math.unit(2, "tons"),
  45856. name: "Front",
  45857. image: {
  45858. source: "./media/characters/yesenia/front.svg",
  45859. extra: 1479/1474,
  45860. bottom: 233/1712
  45861. }
  45862. },
  45863. },
  45864. [
  45865. {
  45866. name: "Normal",
  45867. height: math.unit(10.4, "feet"),
  45868. default: true
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45874. {
  45875. normal: {
  45876. height: math.unit(6 + 1/12, "feet"),
  45877. weight: math.unit(180, "lb"),
  45878. name: "Normal",
  45879. image: {
  45880. source: "./media/characters/leanne-lycheborne/normal.svg",
  45881. extra: 1748/1660,
  45882. bottom: 98/1846
  45883. }
  45884. },
  45885. were: {
  45886. height: math.unit(12, "feet"),
  45887. weight: math.unit(1600, "lb"),
  45888. name: "Were",
  45889. image: {
  45890. source: "./media/characters/leanne-lycheborne/were.svg",
  45891. extra: 1485/1432,
  45892. bottom: 66/1551
  45893. }
  45894. },
  45895. },
  45896. [
  45897. {
  45898. name: "Normal",
  45899. height: math.unit(6 + 1/12, "feet"),
  45900. default: true
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45906. {
  45907. side: {
  45908. height: math.unit(13, "feet"),
  45909. name: "Side",
  45910. image: {
  45911. source: "./media/characters/kira-tyler/side.svg",
  45912. extra: 693/393,
  45913. bottom: 58/751
  45914. }
  45915. },
  45916. },
  45917. [
  45918. {
  45919. name: "Normal",
  45920. height: math.unit(13, "feet"),
  45921. default: true
  45922. },
  45923. ]
  45924. ))
  45925. characterMakers.push(() => makeCharacter(
  45926. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45927. {
  45928. front: {
  45929. height: math.unit(10.3, "feet"),
  45930. weight: math.unit(150, "lb"),
  45931. name: "Front",
  45932. image: {
  45933. source: "./media/characters/blaze/front.svg",
  45934. extra: 1378/1286,
  45935. bottom: 172/1550
  45936. }
  45937. },
  45938. },
  45939. [
  45940. {
  45941. name: "Normal",
  45942. height: math.unit(10.3, "feet"),
  45943. default: true
  45944. },
  45945. ]
  45946. ))
  45947. characterMakers.push(() => makeCharacter(
  45948. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45949. {
  45950. side: {
  45951. height: math.unit(2, "meters"),
  45952. weight: math.unit(400, "kg"),
  45953. name: "Side",
  45954. image: {
  45955. source: "./media/characters/anu/side.svg",
  45956. extra: 506/394,
  45957. bottom: 18/524
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Humanoid",
  45964. height: math.unit(2, "meters")
  45965. },
  45966. {
  45967. name: "Normal",
  45968. height: math.unit(5, "meters"),
  45969. default: true
  45970. },
  45971. ]
  45972. ))
  45973. characterMakers.push(() => makeCharacter(
  45974. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45975. {
  45976. front: {
  45977. height: math.unit(5 + 5/12, "feet"),
  45978. weight: math.unit(170, "lb"),
  45979. name: "Front",
  45980. image: {
  45981. source: "./media/characters/synx-the-lynx/front.svg",
  45982. extra: 1893/1745,
  45983. bottom: 17/1910
  45984. }
  45985. },
  45986. side: {
  45987. height: math.unit(5 + 5/12, "feet"),
  45988. weight: math.unit(170, "lb"),
  45989. name: "Side",
  45990. image: {
  45991. source: "./media/characters/synx-the-lynx/side.svg",
  45992. extra: 1884/1740,
  45993. bottom: 39/1923
  45994. }
  45995. },
  45996. back: {
  45997. height: math.unit(5 + 5/12, "feet"),
  45998. weight: math.unit(170, "lb"),
  45999. name: "Back",
  46000. image: {
  46001. source: "./media/characters/synx-the-lynx/back.svg",
  46002. extra: 1903/1755,
  46003. bottom: 14/1917
  46004. }
  46005. },
  46006. },
  46007. [
  46008. {
  46009. name: "Normal",
  46010. height: math.unit(5 + 5/12, "feet"),
  46011. default: true
  46012. },
  46013. ]
  46014. ))
  46015. characterMakers.push(() => makeCharacter(
  46016. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46017. {
  46018. back: {
  46019. height: math.unit(15, "feet"),
  46020. name: "Back",
  46021. image: {
  46022. source: "./media/characters/nadezda-fex/back.svg",
  46023. extra: 1695/1481,
  46024. bottom: 25/1720
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Normal",
  46031. height: math.unit(15, "feet"),
  46032. default: true
  46033. },
  46034. {
  46035. name: "Macro",
  46036. height: math.unit(2.5, "miles")
  46037. },
  46038. {
  46039. name: "Goddess",
  46040. height: math.unit(2, "multiverses")
  46041. },
  46042. ]
  46043. ))
  46044. characterMakers.push(() => makeCharacter(
  46045. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46046. {
  46047. front: {
  46048. height: math.unit(216, "cm"),
  46049. name: "Front",
  46050. image: {
  46051. source: "./media/characters/lev/front.svg",
  46052. extra: 1728/1670,
  46053. bottom: 82/1810
  46054. }
  46055. },
  46056. back: {
  46057. height: math.unit(216, "cm"),
  46058. name: "Back",
  46059. image: {
  46060. source: "./media/characters/lev/back.svg",
  46061. extra: 1738/1675,
  46062. bottom: 24/1762
  46063. }
  46064. },
  46065. dressed: {
  46066. height: math.unit(216, "cm"),
  46067. name: "Dressed",
  46068. image: {
  46069. source: "./media/characters/lev/dressed.svg",
  46070. extra: 1397/1351,
  46071. bottom: 73/1470
  46072. }
  46073. },
  46074. head: {
  46075. height: math.unit(0.51, "meter"),
  46076. name: "Head",
  46077. image: {
  46078. source: "./media/characters/lev/head.svg"
  46079. }
  46080. },
  46081. },
  46082. [
  46083. {
  46084. name: "Normal",
  46085. height: math.unit(216, "cm"),
  46086. default: true
  46087. },
  46088. {
  46089. name: "Relatively Macro",
  46090. height: math.unit(80, "meters")
  46091. },
  46092. {
  46093. name: "Megamacro",
  46094. height: math.unit(21600, "meters")
  46095. },
  46096. {
  46097. name: "Megamacro+",
  46098. height: math.unit(64800, "meters")
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46104. {
  46105. front: {
  46106. height: math.unit(2, "meters"),
  46107. weight: math.unit(80, "kg"),
  46108. name: "Front",
  46109. image: {
  46110. source: "./media/characters/moka/front.svg",
  46111. extra: 1337/1255,
  46112. bottom: 58/1395
  46113. }
  46114. },
  46115. },
  46116. [
  46117. {
  46118. name: "Micro",
  46119. height: math.unit(15, "cm")
  46120. },
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(2, "meters"),
  46124. default: true
  46125. },
  46126. {
  46127. name: "Macro",
  46128. height: math.unit(20, "meters"),
  46129. },
  46130. ]
  46131. ))
  46132. characterMakers.push(() => makeCharacter(
  46133. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46134. {
  46135. front: {
  46136. height: math.unit(9, "feet"),
  46137. weight: math.unit(240, "lb"),
  46138. name: "Front",
  46139. image: {
  46140. source: "./media/characters/kuzco/front.svg",
  46141. extra: 1593/1487,
  46142. bottom: 32/1625
  46143. }
  46144. },
  46145. side: {
  46146. height: math.unit(9, "feet"),
  46147. weight: math.unit(240, "lb"),
  46148. name: "Side",
  46149. image: {
  46150. source: "./media/characters/kuzco/side.svg",
  46151. extra: 1575/1485,
  46152. bottom: 30/1605
  46153. }
  46154. },
  46155. back: {
  46156. height: math.unit(9, "feet"),
  46157. weight: math.unit(240, "lb"),
  46158. name: "Back",
  46159. image: {
  46160. source: "./media/characters/kuzco/back.svg",
  46161. extra: 1603/1514,
  46162. bottom: 14/1617
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(9, "feet"),
  46170. default: true
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46176. {
  46177. side: {
  46178. height: math.unit(2, "meters"),
  46179. weight: math.unit(300, "kg"),
  46180. name: "Side",
  46181. image: {
  46182. source: "./media/characters/ceruleus/side.svg",
  46183. extra: 1068/974,
  46184. bottom: 126/1194
  46185. }
  46186. },
  46187. },
  46188. [
  46189. {
  46190. name: "Normal",
  46191. height: math.unit(16, "meters"),
  46192. default: true
  46193. },
  46194. ]
  46195. ))
  46196. characterMakers.push(() => makeCharacter(
  46197. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46198. {
  46199. front: {
  46200. height: math.unit(9, "feet"),
  46201. weight: math.unit(500, "kg"),
  46202. name: "Front",
  46203. image: {
  46204. source: "./media/characters/acouya/front.svg",
  46205. extra: 1660/1473,
  46206. bottom: 28/1688
  46207. }
  46208. },
  46209. },
  46210. [
  46211. {
  46212. name: "Normal",
  46213. height: math.unit(9, "feet"),
  46214. default: true
  46215. },
  46216. ]
  46217. ))
  46218. characterMakers.push(() => makeCharacter(
  46219. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46220. {
  46221. front: {
  46222. height: math.unit(5 + 6/12, "feet"),
  46223. weight: math.unit(195, "lb"),
  46224. name: "Front",
  46225. image: {
  46226. source: "./media/characters/vant/front.svg",
  46227. extra: 1396/1320,
  46228. bottom: 20/1416
  46229. }
  46230. },
  46231. back: {
  46232. height: math.unit(5 + 6/12, "feet"),
  46233. weight: math.unit(195, "lb"),
  46234. name: "Back",
  46235. image: {
  46236. source: "./media/characters/vant/back.svg",
  46237. extra: 1396/1320,
  46238. bottom: 20/1416
  46239. }
  46240. },
  46241. maw: {
  46242. height: math.unit(0.75, "feet"),
  46243. name: "Maw",
  46244. image: {
  46245. source: "./media/characters/vant/maw.svg"
  46246. }
  46247. },
  46248. paw: {
  46249. height: math.unit(1.07, "feet"),
  46250. name: "Paw",
  46251. image: {
  46252. source: "./media/characters/vant/paw.svg"
  46253. }
  46254. },
  46255. },
  46256. [
  46257. {
  46258. name: "Micro",
  46259. height: math.unit(0.25, "inches")
  46260. },
  46261. {
  46262. name: "Normal",
  46263. height: math.unit(5 + 6/12, "feet"),
  46264. default: true
  46265. },
  46266. {
  46267. name: "Macro",
  46268. height: math.unit(75, "feet")
  46269. },
  46270. ]
  46271. ))
  46272. characterMakers.push(() => makeCharacter(
  46273. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46274. {
  46275. front: {
  46276. height: math.unit(30, "meters"),
  46277. weight: math.unit(363, "tons"),
  46278. name: "Front",
  46279. image: {
  46280. source: "./media/characters/ahra/front.svg",
  46281. extra: 1914/1814,
  46282. bottom: 46/1960
  46283. }
  46284. },
  46285. },
  46286. [
  46287. {
  46288. name: "Macro",
  46289. height: math.unit(30, "meters"),
  46290. default: true
  46291. },
  46292. ]
  46293. ))
  46294. characterMakers.push(() => makeCharacter(
  46295. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46296. {
  46297. undressed: {
  46298. height: math.unit(2, "m"),
  46299. weight: math.unit(250, "kg"),
  46300. name: "Undressed",
  46301. image: {
  46302. source: "./media/characters/coriander/undressed.svg",
  46303. extra: 1757/1606,
  46304. bottom: 107/1864
  46305. }
  46306. },
  46307. dressed: {
  46308. height: math.unit(2, "m"),
  46309. weight: math.unit(250, "kg"),
  46310. name: "Dressed",
  46311. image: {
  46312. source: "./media/characters/coriander/dressed.svg",
  46313. extra: 1757/1606,
  46314. bottom: 107/1864
  46315. }
  46316. },
  46317. },
  46318. [
  46319. {
  46320. name: "Normal",
  46321. height: math.unit(4, "meters"),
  46322. default: true
  46323. },
  46324. {
  46325. name: "XL",
  46326. height: math.unit(6, "meters")
  46327. },
  46328. {
  46329. name: "XXL",
  46330. height: math.unit(8, "meters")
  46331. },
  46332. ]
  46333. ))
  46334. characterMakers.push(() => makeCharacter(
  46335. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46336. {
  46337. front: {
  46338. height: math.unit(6, "feet"),
  46339. name: "Front",
  46340. image: {
  46341. source: "./media/characters/syrinx/front.svg",
  46342. extra: 1557/1259,
  46343. bottom: 171/1728
  46344. }
  46345. },
  46346. },
  46347. [
  46348. {
  46349. name: "Normal",
  46350. height: math.unit(6 + 3/12, "feet"),
  46351. default: true
  46352. },
  46353. ]
  46354. ))
  46355. characterMakers.push(() => makeCharacter(
  46356. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46357. {
  46358. front: {
  46359. height: math.unit(11 + 6/12, "feet"),
  46360. weight: math.unit(1.5, "tons"),
  46361. name: "Front",
  46362. image: {
  46363. source: "./media/characters/bor/front.svg",
  46364. extra: 1189/1109,
  46365. bottom: 170/1359
  46366. }
  46367. },
  46368. },
  46369. [
  46370. {
  46371. name: "Normal",
  46372. height: math.unit(11 + 6/12, "feet"),
  46373. default: true
  46374. },
  46375. {
  46376. name: "Macro",
  46377. height: math.unit(32 + 9/12, "feet")
  46378. },
  46379. ]
  46380. ))
  46381. characterMakers.push(() => makeCharacter(
  46382. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46383. {
  46384. anthro: {
  46385. height: math.unit(9, "feet"),
  46386. weight: math.unit(2076, "lb"),
  46387. name: "Anthro",
  46388. image: {
  46389. source: "./media/characters/abacus/anthro.svg",
  46390. extra: 1540/1494,
  46391. bottom: 233/1773
  46392. }
  46393. },
  46394. pigeon: {
  46395. height: math.unit(1, "feet"),
  46396. name: "Pigeon",
  46397. image: {
  46398. source: "./media/characters/abacus/pigeon.svg",
  46399. extra: 528/525,
  46400. bottom: 46/574
  46401. }
  46402. },
  46403. },
  46404. [
  46405. {
  46406. name: "Normal",
  46407. height: math.unit(9, "feet"),
  46408. default: true
  46409. },
  46410. ]
  46411. ))
  46412. characterMakers.push(() => makeCharacter(
  46413. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46414. {
  46415. side: {
  46416. height: math.unit(6, "feet"),
  46417. name: "Side",
  46418. image: {
  46419. source: "./media/characters/delkhan/side.svg",
  46420. extra: 1884/1786,
  46421. bottom: 308/2192
  46422. }
  46423. },
  46424. head: {
  46425. height: math.unit(3.38, "feet"),
  46426. name: "Head",
  46427. image: {
  46428. source: "./media/characters/delkhan/head.svg"
  46429. }
  46430. },
  46431. },
  46432. [
  46433. {
  46434. name: "Normal",
  46435. height: math.unit(72, "feet"),
  46436. default: true
  46437. },
  46438. {
  46439. name: "Giant",
  46440. height: math.unit(172, "feet")
  46441. },
  46442. ]
  46443. ))
  46444. characterMakers.push(() => makeCharacter(
  46445. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46446. {
  46447. standing: {
  46448. height: math.unit(6, "feet"),
  46449. name: "Standing",
  46450. image: {
  46451. source: "./media/characters/euchidat/standing.svg",
  46452. extra: 1612/1553,
  46453. bottom: 116/1728
  46454. }
  46455. },
  46456. leaning: {
  46457. height: math.unit(6, "feet"),
  46458. name: "Leaning",
  46459. image: {
  46460. source: "./media/characters/euchidat/leaning.svg",
  46461. extra: 1719/1674,
  46462. bottom: 27/1746
  46463. }
  46464. },
  46465. },
  46466. [
  46467. {
  46468. name: "Normal",
  46469. height: math.unit(175, "feet"),
  46470. default: true
  46471. },
  46472. {
  46473. name: "Megamacro",
  46474. height: math.unit(190, "miles")
  46475. },
  46476. {
  46477. name: "Gigamacro",
  46478. height: math.unit(190000, "miles")
  46479. },
  46480. ]
  46481. ))
  46482. characterMakers.push(() => makeCharacter(
  46483. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46484. {
  46485. front: {
  46486. height: math.unit(6, "feet"),
  46487. weight: math.unit(150, "lb"),
  46488. name: "Front",
  46489. image: {
  46490. source: "./media/characters/rebecca-stack/front.svg",
  46491. extra: 1256/1201,
  46492. bottom: 18/1274
  46493. }
  46494. },
  46495. },
  46496. [
  46497. {
  46498. name: "Normal",
  46499. height: math.unit(5 + 8/12, "feet"),
  46500. default: true
  46501. },
  46502. {
  46503. name: "Demolitionist",
  46504. height: math.unit(200, "feet")
  46505. },
  46506. {
  46507. name: "Out of Control",
  46508. height: math.unit(2, "miles")
  46509. },
  46510. {
  46511. name: "Giga",
  46512. height: math.unit(7200, "miles")
  46513. },
  46514. ]
  46515. ))
  46516. characterMakers.push(() => makeCharacter(
  46517. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46518. {
  46519. front: {
  46520. height: math.unit(6, "feet"),
  46521. weight: math.unit(150, "lb"),
  46522. name: "Front",
  46523. image: {
  46524. source: "./media/characters/jenny-cartwright/front.svg",
  46525. extra: 1384/1376,
  46526. bottom: 58/1442
  46527. }
  46528. },
  46529. },
  46530. [
  46531. {
  46532. name: "Normal",
  46533. height: math.unit(6 + 7/12, "feet"),
  46534. default: true
  46535. },
  46536. {
  46537. name: "Librarian",
  46538. height: math.unit(55, "feet")
  46539. },
  46540. {
  46541. name: "Sightseer",
  46542. height: math.unit(50, "miles")
  46543. },
  46544. {
  46545. name: "Giga",
  46546. height: math.unit(30000, "miles")
  46547. },
  46548. ]
  46549. ))
  46550. characterMakers.push(() => makeCharacter(
  46551. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46552. {
  46553. nude: {
  46554. height: math.unit(8, "feet"),
  46555. weight: math.unit(225, "lb"),
  46556. name: "Nude",
  46557. image: {
  46558. source: "./media/characters/marvy/nude.svg",
  46559. extra: 1900/1683,
  46560. bottom: 89/1989
  46561. }
  46562. },
  46563. dressed: {
  46564. height: math.unit(8, "feet"),
  46565. weight: math.unit(225, "lb"),
  46566. name: "Dressed",
  46567. image: {
  46568. source: "./media/characters/marvy/dressed.svg",
  46569. extra: 1900/1683,
  46570. bottom: 89/1989
  46571. }
  46572. },
  46573. head: {
  46574. height: math.unit(2.85, "feet"),
  46575. name: "Head",
  46576. image: {
  46577. source: "./media/characters/marvy/head.svg"
  46578. }
  46579. },
  46580. },
  46581. [
  46582. {
  46583. name: "Normal",
  46584. height: math.unit(8, "feet"),
  46585. default: true
  46586. },
  46587. ]
  46588. ))
  46589. characterMakers.push(() => makeCharacter(
  46590. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46591. {
  46592. front: {
  46593. height: math.unit(8, "feet"),
  46594. weight: math.unit(250, "lb"),
  46595. name: "Front",
  46596. image: {
  46597. source: "./media/characters/leah/front.svg",
  46598. extra: 1257/1149,
  46599. bottom: 109/1366
  46600. }
  46601. },
  46602. },
  46603. [
  46604. {
  46605. name: "Normal",
  46606. height: math.unit(8, "feet"),
  46607. default: true
  46608. },
  46609. {
  46610. name: "Minimacro",
  46611. height: math.unit(40, "feet")
  46612. },
  46613. {
  46614. name: "Macro",
  46615. height: math.unit(124, "feet")
  46616. },
  46617. {
  46618. name: "Megamacro",
  46619. height: math.unit(850, "feet")
  46620. },
  46621. ]
  46622. ))
  46623. characterMakers.push(() => makeCharacter(
  46624. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46625. {
  46626. side: {
  46627. height: math.unit(13 + 6/12, "feet"),
  46628. weight: math.unit(3200, "lb"),
  46629. name: "Side",
  46630. image: {
  46631. source: "./media/characters/alvir/side.svg",
  46632. extra: 896/589,
  46633. bottom: 26/922
  46634. }
  46635. },
  46636. },
  46637. [
  46638. {
  46639. name: "Normal",
  46640. height: math.unit(13 + 6/12, "feet"),
  46641. default: true
  46642. },
  46643. ]
  46644. ))
  46645. characterMakers.push(() => makeCharacter(
  46646. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46647. {
  46648. front: {
  46649. height: math.unit(5 + 4/12, "feet"),
  46650. weight: math.unit(236, "lb"),
  46651. name: "Front",
  46652. image: {
  46653. source: "./media/characters/zaina-khalil/front.svg",
  46654. extra: 1533/1485,
  46655. bottom: 94/1627
  46656. }
  46657. },
  46658. side: {
  46659. height: math.unit(5 + 4/12, "feet"),
  46660. weight: math.unit(236, "lb"),
  46661. name: "Side",
  46662. image: {
  46663. source: "./media/characters/zaina-khalil/side.svg",
  46664. extra: 1537/1498,
  46665. bottom: 66/1603
  46666. }
  46667. },
  46668. back: {
  46669. height: math.unit(5 + 4/12, "feet"),
  46670. weight: math.unit(236, "lb"),
  46671. name: "Back",
  46672. image: {
  46673. source: "./media/characters/zaina-khalil/back.svg",
  46674. extra: 1546/1494,
  46675. bottom: 89/1635
  46676. }
  46677. },
  46678. },
  46679. [
  46680. {
  46681. name: "Normal",
  46682. height: math.unit(5 + 4/12, "feet"),
  46683. default: true
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46689. {
  46690. side: {
  46691. height: math.unit(12, "feet"),
  46692. weight: math.unit(4000, "lb"),
  46693. name: "Side",
  46694. image: {
  46695. source: "./media/characters/terry/side.svg",
  46696. extra: 1518/1439,
  46697. bottom: 149/1667
  46698. }
  46699. },
  46700. },
  46701. [
  46702. {
  46703. name: "Normal",
  46704. height: math.unit(12, "feet"),
  46705. default: true
  46706. },
  46707. ]
  46708. ))
  46709. characterMakers.push(() => makeCharacter(
  46710. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46711. {
  46712. front: {
  46713. height: math.unit(12, "feet"),
  46714. weight: math.unit(1500, "lb"),
  46715. name: "Front",
  46716. image: {
  46717. source: "./media/characters/kahea/front.svg",
  46718. extra: 1722/1617,
  46719. bottom: 179/1901
  46720. }
  46721. },
  46722. },
  46723. [
  46724. {
  46725. name: "Normal",
  46726. height: math.unit(12, "feet"),
  46727. default: true
  46728. },
  46729. ]
  46730. ))
  46731. characterMakers.push(() => makeCharacter(
  46732. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46733. {
  46734. demonFront: {
  46735. height: math.unit(36, "feet"),
  46736. name: "Front",
  46737. image: {
  46738. source: "./media/characters/alex-xuria/demon-front.svg",
  46739. extra: 1705/1673,
  46740. bottom: 198/1903
  46741. },
  46742. form: "demon",
  46743. default: true
  46744. },
  46745. demonBack: {
  46746. height: math.unit(36, "feet"),
  46747. name: "Back",
  46748. image: {
  46749. source: "./media/characters/alex-xuria/demon-back.svg",
  46750. extra: 1725/1693,
  46751. bottom: 70/1795
  46752. },
  46753. form: "demon"
  46754. },
  46755. demonHead: {
  46756. height: math.unit(2.14, "meters"),
  46757. name: "Head",
  46758. image: {
  46759. source: "./media/characters/alex-xuria/demon-head.svg"
  46760. },
  46761. form: "demon"
  46762. },
  46763. demonHand: {
  46764. height: math.unit(1.61, "meters"),
  46765. name: "Hand",
  46766. image: {
  46767. source: "./media/characters/alex-xuria/demon-hand.svg"
  46768. },
  46769. form: "demon"
  46770. },
  46771. demonPaw: {
  46772. height: math.unit(1.35, "meters"),
  46773. name: "Paw",
  46774. image: {
  46775. source: "./media/characters/alex-xuria/demon-paw.svg"
  46776. },
  46777. form: "demon"
  46778. },
  46779. demonFoot: {
  46780. height: math.unit(2.2, "meters"),
  46781. name: "Foot",
  46782. image: {
  46783. source: "./media/characters/alex-xuria/demon-foot.svg"
  46784. },
  46785. form: "demon"
  46786. },
  46787. demonCock: {
  46788. height: math.unit(1.74, "meters"),
  46789. name: "Cock",
  46790. image: {
  46791. source: "./media/characters/alex-xuria/demon-cock.svg"
  46792. },
  46793. form: "demon"
  46794. },
  46795. demonTailClosed: {
  46796. height: math.unit(1.47, "meters"),
  46797. name: "Tail (Closed)",
  46798. image: {
  46799. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46800. },
  46801. form: "demon"
  46802. },
  46803. demonTailOpen: {
  46804. height: math.unit(2.85, "meters"),
  46805. name: "Tail (Open)",
  46806. image: {
  46807. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46808. },
  46809. form: "demon"
  46810. },
  46811. incubusFront: {
  46812. height: math.unit(12, "feet"),
  46813. name: "Front",
  46814. image: {
  46815. source: "./media/characters/alex-xuria/incubus-front.svg",
  46816. extra: 1754/1677,
  46817. bottom: 125/1879
  46818. },
  46819. form: "incubus",
  46820. default: true
  46821. },
  46822. incubusBack: {
  46823. height: math.unit(12, "feet"),
  46824. name: "Back",
  46825. image: {
  46826. source: "./media/characters/alex-xuria/incubus-back.svg",
  46827. extra: 1702/1647,
  46828. bottom: 30/1732
  46829. },
  46830. form: "incubus"
  46831. },
  46832. incubusHead: {
  46833. height: math.unit(3.45, "feet"),
  46834. name: "Head",
  46835. image: {
  46836. source: "./media/characters/alex-xuria/incubus-head.svg"
  46837. },
  46838. form: "incubus"
  46839. },
  46840. rabbitFront: {
  46841. height: math.unit(6, "feet"),
  46842. name: "Front",
  46843. image: {
  46844. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46845. extra: 1369/1349,
  46846. bottom: 45/1414
  46847. },
  46848. form: "rabbit",
  46849. default: true
  46850. },
  46851. rabbitSide: {
  46852. height: math.unit(6, "feet"),
  46853. name: "Side",
  46854. image: {
  46855. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46856. extra: 1370/1356,
  46857. bottom: 37/1407
  46858. },
  46859. form: "rabbit"
  46860. },
  46861. rabbitBack: {
  46862. height: math.unit(6, "feet"),
  46863. name: "Back",
  46864. image: {
  46865. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46866. extra: 1375/1358,
  46867. bottom: 43/1418
  46868. },
  46869. form: "rabbit"
  46870. },
  46871. },
  46872. [
  46873. {
  46874. name: "Normal",
  46875. height: math.unit(6, "feet"),
  46876. default: true,
  46877. form: "rabbit"
  46878. },
  46879. {
  46880. name: "Incubus",
  46881. height: math.unit(12, "feet"),
  46882. default: true,
  46883. form: "incubus"
  46884. },
  46885. {
  46886. name: "Demon",
  46887. height: math.unit(36, "feet"),
  46888. default: true,
  46889. form: "demon"
  46890. }
  46891. ],
  46892. {
  46893. "demon": {
  46894. name: "Demon",
  46895. default: true
  46896. },
  46897. "incubus": {
  46898. name: "Incubus",
  46899. },
  46900. "rabbit": {
  46901. name: "Rabbit"
  46902. }
  46903. }
  46904. ))
  46905. characterMakers.push(() => makeCharacter(
  46906. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46907. {
  46908. front: {
  46909. height: math.unit(7 + 5/12, "feet"),
  46910. weight: math.unit(510, "lb"),
  46911. name: "Front",
  46912. image: {
  46913. source: "./media/characters/syrup/front.svg",
  46914. extra: 932/916,
  46915. bottom: 26/958
  46916. }
  46917. },
  46918. },
  46919. [
  46920. {
  46921. name: "Normal",
  46922. height: math.unit(7 + 5/12, "feet"),
  46923. default: true
  46924. },
  46925. {
  46926. name: "Big",
  46927. height: math.unit(50, "feet")
  46928. },
  46929. {
  46930. name: "Macro",
  46931. height: math.unit(300, "feet")
  46932. },
  46933. {
  46934. name: "Megamacro",
  46935. height: math.unit(1, "mile")
  46936. },
  46937. ]
  46938. ))
  46939. characterMakers.push(() => makeCharacter(
  46940. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46941. {
  46942. front: {
  46943. height: math.unit(6 + 9/12, "feet"),
  46944. name: "Front",
  46945. image: {
  46946. source: "./media/characters/zeimne/front.svg",
  46947. extra: 1969/1806,
  46948. bottom: 53/2022
  46949. }
  46950. },
  46951. },
  46952. [
  46953. {
  46954. name: "Normal",
  46955. height: math.unit(6 + 9/12, "feet"),
  46956. default: true
  46957. },
  46958. {
  46959. name: "Giant",
  46960. height: math.unit(550, "feet")
  46961. },
  46962. {
  46963. name: "Mega",
  46964. height: math.unit(3, "miles")
  46965. },
  46966. {
  46967. name: "Giga",
  46968. height: math.unit(250, "miles")
  46969. },
  46970. {
  46971. name: "Tera",
  46972. height: math.unit(1, "AU")
  46973. },
  46974. ]
  46975. ))
  46976. characterMakers.push(() => makeCharacter(
  46977. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46978. {
  46979. front: {
  46980. height: math.unit(5 + 2/12, "feet"),
  46981. name: "Front",
  46982. image: {
  46983. source: "./media/characters/grar/front.svg",
  46984. extra: 1331/1119,
  46985. bottom: 60/1391
  46986. }
  46987. },
  46988. back: {
  46989. height: math.unit(5 + 2/12, "feet"),
  46990. name: "Back",
  46991. image: {
  46992. source: "./media/characters/grar/back.svg",
  46993. extra: 1385/1169,
  46994. bottom: 23/1408
  46995. }
  46996. },
  46997. },
  46998. [
  46999. {
  47000. name: "Normal",
  47001. height: math.unit(5 + 2/12, "feet"),
  47002. default: true
  47003. },
  47004. ]
  47005. ))
  47006. characterMakers.push(() => makeCharacter(
  47007. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47008. {
  47009. front: {
  47010. height: math.unit(13 + 7/12, "feet"),
  47011. weight: math.unit(2200, "lb"),
  47012. name: "Front",
  47013. image: {
  47014. source: "./media/characters/endraya/front.svg",
  47015. extra: 1289/1215,
  47016. bottom: 50/1339
  47017. }
  47018. },
  47019. nude: {
  47020. height: math.unit(13 + 7/12, "feet"),
  47021. weight: math.unit(2200, "lb"),
  47022. name: "Nude",
  47023. image: {
  47024. source: "./media/characters/endraya/nude.svg",
  47025. extra: 1247/1171,
  47026. bottom: 40/1287
  47027. }
  47028. },
  47029. head: {
  47030. height: math.unit(2.6, "feet"),
  47031. name: "Head",
  47032. image: {
  47033. source: "./media/characters/endraya/head.svg"
  47034. }
  47035. },
  47036. slit: {
  47037. height: math.unit(3.4, "feet"),
  47038. name: "Slit",
  47039. image: {
  47040. source: "./media/characters/endraya/slit.svg"
  47041. }
  47042. },
  47043. },
  47044. [
  47045. {
  47046. name: "Normal",
  47047. height: math.unit(13 + 7/12, "feet"),
  47048. default: true
  47049. },
  47050. {
  47051. name: "Macro",
  47052. height: math.unit(200, "feet")
  47053. },
  47054. ]
  47055. ))
  47056. characterMakers.push(() => makeCharacter(
  47057. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47058. {
  47059. front: {
  47060. height: math.unit(1.81, "meters"),
  47061. weight: math.unit(69, "kg"),
  47062. name: "Front",
  47063. image: {
  47064. source: "./media/characters/rodryana/front.svg",
  47065. extra: 2002/1921,
  47066. bottom: 53/2055
  47067. }
  47068. },
  47069. back: {
  47070. height: math.unit(1.81, "meters"),
  47071. weight: math.unit(69, "kg"),
  47072. name: "Back",
  47073. image: {
  47074. source: "./media/characters/rodryana/back.svg",
  47075. extra: 1993/1926,
  47076. bottom: 48/2041
  47077. }
  47078. },
  47079. maw: {
  47080. height: math.unit(0.19769417475, "meters"),
  47081. name: "Maw",
  47082. image: {
  47083. source: "./media/characters/rodryana/maw.svg"
  47084. }
  47085. },
  47086. slit: {
  47087. height: math.unit(0.31631067961, "meters"),
  47088. name: "Slit",
  47089. image: {
  47090. source: "./media/characters/rodryana/slit.svg"
  47091. }
  47092. },
  47093. },
  47094. [
  47095. {
  47096. name: "Normal",
  47097. height: math.unit(1.81, "meters")
  47098. },
  47099. {
  47100. name: "Mini Macro",
  47101. height: math.unit(181, "meters")
  47102. },
  47103. {
  47104. name: "Macro",
  47105. height: math.unit(452, "meters"),
  47106. default: true
  47107. },
  47108. {
  47109. name: "Mega Macro",
  47110. height: math.unit(1.375, "km")
  47111. },
  47112. {
  47113. name: "Giga Macro",
  47114. height: math.unit(13.575, "km")
  47115. },
  47116. ]
  47117. ))
  47118. characterMakers.push(() => makeCharacter(
  47119. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47120. {
  47121. front: {
  47122. height: math.unit(6, "feet"),
  47123. weight: math.unit(1000, "lb"),
  47124. name: "Front",
  47125. image: {
  47126. source: "./media/characters/asaya/front.svg",
  47127. extra: 1460/1200,
  47128. bottom: 71/1531
  47129. }
  47130. },
  47131. },
  47132. [
  47133. {
  47134. name: "Normal",
  47135. height: math.unit(8, "km"),
  47136. default: true
  47137. },
  47138. ]
  47139. ))
  47140. characterMakers.push(() => makeCharacter(
  47141. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47142. {
  47143. front: {
  47144. height: math.unit(3.5, "meters"),
  47145. name: "Front",
  47146. image: {
  47147. source: "./media/characters/sarzu-and-israz/front.svg",
  47148. extra: 1570/1558,
  47149. bottom: 150/1720
  47150. },
  47151. },
  47152. back: {
  47153. height: math.unit(3.5, "meters"),
  47154. name: "Back",
  47155. image: {
  47156. source: "./media/characters/sarzu-and-israz/back.svg",
  47157. extra: 1523/1509,
  47158. bottom: 132/1655
  47159. },
  47160. },
  47161. frontFemale: {
  47162. height: math.unit(3.5, "meters"),
  47163. name: "Front (Female)",
  47164. image: {
  47165. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47166. extra: 1570/1558,
  47167. bottom: 150/1720
  47168. },
  47169. },
  47170. frontHerm: {
  47171. height: math.unit(3.5, "meters"),
  47172. name: "Front (Herm)",
  47173. image: {
  47174. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47175. extra: 1570/1558,
  47176. bottom: 150/1720
  47177. },
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Normal",
  47183. height: math.unit(3.5, "meters"),
  47184. default: true,
  47185. },
  47186. {
  47187. name: "Macro",
  47188. height: math.unit(65.5, "meters"),
  47189. },
  47190. ],
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47194. {
  47195. front: {
  47196. height: math.unit(6, "feet"),
  47197. weight: math.unit(250, "lb"),
  47198. name: "Front",
  47199. image: {
  47200. source: "./media/characters/zenimma/front.svg",
  47201. extra: 1346/1320,
  47202. bottom: 58/1404
  47203. }
  47204. },
  47205. back: {
  47206. height: math.unit(6, "feet"),
  47207. weight: math.unit(250, "lb"),
  47208. name: "Back",
  47209. image: {
  47210. source: "./media/characters/zenimma/back.svg",
  47211. extra: 1324/1308,
  47212. bottom: 44/1368
  47213. }
  47214. },
  47215. dick: {
  47216. height: math.unit(1.44, "feet"),
  47217. name: "Dick",
  47218. image: {
  47219. source: "./media/characters/zenimma/dick.svg"
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Canon Height",
  47226. height: math.unit(66, "miles"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47233. {
  47234. nude: {
  47235. height: math.unit(6, "feet"),
  47236. weight: math.unit(150, "lb"),
  47237. name: "Nude",
  47238. image: {
  47239. source: "./media/characters/shavon/nude.svg",
  47240. extra: 1242/1096,
  47241. bottom: 98/1340
  47242. }
  47243. },
  47244. dressed: {
  47245. height: math.unit(6, "feet"),
  47246. weight: math.unit(150, "lb"),
  47247. name: "Dressed",
  47248. image: {
  47249. source: "./media/characters/shavon/dressed.svg",
  47250. extra: 1242/1096,
  47251. bottom: 98/1340
  47252. }
  47253. },
  47254. },
  47255. [
  47256. {
  47257. name: "Macro",
  47258. height: math.unit(255, "feet"),
  47259. default: true
  47260. },
  47261. ]
  47262. ))
  47263. characterMakers.push(() => makeCharacter(
  47264. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47265. {
  47266. front: {
  47267. height: math.unit(6, "feet"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/steph/front.svg",
  47271. extra: 1430/1330,
  47272. bottom: 54/1484
  47273. }
  47274. },
  47275. },
  47276. [
  47277. {
  47278. name: "Normal",
  47279. height: math.unit(6, "feet"),
  47280. default: true
  47281. },
  47282. ]
  47283. ))
  47284. characterMakers.push(() => makeCharacter(
  47285. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47286. {
  47287. front: {
  47288. height: math.unit(9, "feet"),
  47289. weight: math.unit(400, "lb"),
  47290. name: "Front",
  47291. image: {
  47292. source: "./media/characters/kil'aman/front.svg",
  47293. extra: 1210/1159,
  47294. bottom: 109/1319
  47295. }
  47296. },
  47297. head: {
  47298. height: math.unit(2.14, "feet"),
  47299. name: "Head",
  47300. image: {
  47301. source: "./media/characters/kil'aman/head.svg"
  47302. }
  47303. },
  47304. maw: {
  47305. height: math.unit(1.21, "feet"),
  47306. name: "Maw",
  47307. image: {
  47308. source: "./media/characters/kil'aman/maw.svg"
  47309. }
  47310. },
  47311. foot: {
  47312. height: math.unit(1.7, "feet"),
  47313. name: "Foot",
  47314. image: {
  47315. source: "./media/characters/kil'aman/foot.svg"
  47316. }
  47317. },
  47318. dick: {
  47319. height: math.unit(2.1, "feet"),
  47320. name: "Dick",
  47321. image: {
  47322. source: "./media/characters/kil'aman/dick.svg"
  47323. }
  47324. },
  47325. },
  47326. [
  47327. {
  47328. name: "Normal",
  47329. height: math.unit(9, "feet")
  47330. },
  47331. {
  47332. name: "Canon Height",
  47333. height: math.unit(10, "miles"),
  47334. default: true
  47335. },
  47336. {
  47337. name: "Maximum",
  47338. height: math.unit(6e9, "miles")
  47339. },
  47340. ]
  47341. ))
  47342. characterMakers.push(() => makeCharacter(
  47343. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47344. {
  47345. front: {
  47346. height: math.unit(90, "feet"),
  47347. weight: math.unit(675000, "lb"),
  47348. name: "Front",
  47349. image: {
  47350. source: "./media/characters/qadan/front.svg",
  47351. extra: 1012/1004,
  47352. bottom: 78/1090
  47353. }
  47354. },
  47355. back: {
  47356. height: math.unit(90, "feet"),
  47357. weight: math.unit(675000, "lb"),
  47358. name: "Back",
  47359. image: {
  47360. source: "./media/characters/qadan/back.svg",
  47361. extra: 1042/1031,
  47362. bottom: 55/1097
  47363. }
  47364. },
  47365. armored: {
  47366. height: math.unit(90, "feet"),
  47367. weight: math.unit(675000, "lb"),
  47368. name: "Armored",
  47369. image: {
  47370. source: "./media/characters/qadan/armored.svg",
  47371. extra: 1047/1037,
  47372. bottom: 48/1095
  47373. }
  47374. },
  47375. },
  47376. [
  47377. {
  47378. name: "Normal",
  47379. height: math.unit(90, "feet"),
  47380. default: true
  47381. },
  47382. ]
  47383. ))
  47384. characterMakers.push(() => makeCharacter(
  47385. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47386. {
  47387. front: {
  47388. height: math.unit(6, "feet"),
  47389. weight: math.unit(225, "lb"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/brooke/front.svg",
  47393. extra: 1050/1010,
  47394. bottom: 66/1116
  47395. }
  47396. },
  47397. back: {
  47398. height: math.unit(6, "feet"),
  47399. weight: math.unit(225, "lb"),
  47400. name: "Back",
  47401. image: {
  47402. source: "./media/characters/brooke/back.svg",
  47403. extra: 1053/1013,
  47404. bottom: 41/1094
  47405. }
  47406. },
  47407. dressed: {
  47408. height: math.unit(6, "feet"),
  47409. weight: math.unit(225, "lb"),
  47410. name: "Dressed",
  47411. image: {
  47412. source: "./media/characters/brooke/dressed.svg",
  47413. extra: 1050/1010,
  47414. bottom: 66/1116
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Canon Height",
  47421. height: math.unit(500, "miles"),
  47422. default: true
  47423. },
  47424. ]
  47425. ))
  47426. characterMakers.push(() => makeCharacter(
  47427. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47428. {
  47429. front: {
  47430. height: math.unit(6 + 2/12, "feet"),
  47431. weight: math.unit(210, "lb"),
  47432. name: "Front",
  47433. image: {
  47434. source: "./media/characters/wubs/front.svg",
  47435. extra: 1345/1325,
  47436. bottom: 70/1415
  47437. }
  47438. },
  47439. back: {
  47440. height: math.unit(6 + 2/12, "feet"),
  47441. weight: math.unit(210, "lb"),
  47442. name: "Back",
  47443. image: {
  47444. source: "./media/characters/wubs/back.svg",
  47445. extra: 1296/1275,
  47446. bottom: 58/1354
  47447. }
  47448. },
  47449. },
  47450. [
  47451. {
  47452. name: "Normal",
  47453. height: math.unit(6 + 2/12, "feet"),
  47454. default: true
  47455. },
  47456. {
  47457. name: "Macro",
  47458. height: math.unit(1000, "feet")
  47459. },
  47460. {
  47461. name: "Megamacro",
  47462. height: math.unit(1, "mile")
  47463. },
  47464. ]
  47465. ))
  47466. characterMakers.push(() => makeCharacter(
  47467. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47468. {
  47469. front: {
  47470. height: math.unit(4, "feet"),
  47471. weight: math.unit(120, "lb"),
  47472. name: "Front",
  47473. image: {
  47474. source: "./media/characters/blue/front.svg",
  47475. extra: 1636/1525,
  47476. bottom: 43/1679
  47477. }
  47478. },
  47479. back: {
  47480. height: math.unit(4, "feet"),
  47481. weight: math.unit(120, "lb"),
  47482. name: "Back",
  47483. image: {
  47484. source: "./media/characters/blue/back.svg",
  47485. extra: 1660/1560,
  47486. bottom: 57/1717
  47487. }
  47488. },
  47489. paws: {
  47490. height: math.unit(0.826, "feet"),
  47491. name: "Paws",
  47492. image: {
  47493. source: "./media/characters/blue/paws.svg"
  47494. }
  47495. },
  47496. },
  47497. [
  47498. {
  47499. name: "Micro",
  47500. height: math.unit(3, "inches")
  47501. },
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(4, "feet"),
  47505. default: true
  47506. },
  47507. {
  47508. name: "Femenine Form",
  47509. height: math.unit(14, "feet")
  47510. },
  47511. {
  47512. name: "Werebat Form",
  47513. height: math.unit(18, "feet")
  47514. },
  47515. ]
  47516. ))
  47517. characterMakers.push(() => makeCharacter(
  47518. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47519. {
  47520. female: {
  47521. height: math.unit(7 + 4/12, "feet"),
  47522. weight: math.unit(243, "lb"),
  47523. name: "Female",
  47524. image: {
  47525. source: "./media/characters/kaya/female.svg",
  47526. extra: 975/898,
  47527. bottom: 34/1009
  47528. }
  47529. },
  47530. herm: {
  47531. height: math.unit(7 + 4/12, "feet"),
  47532. weight: math.unit(243, "lb"),
  47533. name: "Herm",
  47534. image: {
  47535. source: "./media/characters/kaya/herm.svg",
  47536. extra: 975/898,
  47537. bottom: 34/1009
  47538. }
  47539. },
  47540. },
  47541. [
  47542. {
  47543. name: "Normal",
  47544. height: math.unit(7 + 4/12, "feet"),
  47545. default: true
  47546. },
  47547. ]
  47548. ))
  47549. characterMakers.push(() => makeCharacter(
  47550. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47551. {
  47552. female: {
  47553. height: math.unit(9 + 4/12, "feet"),
  47554. weight: math.unit(398, "lb"),
  47555. name: "Female",
  47556. image: {
  47557. source: "./media/characters/kassandra/female.svg",
  47558. extra: 908/839,
  47559. bottom: 61/969
  47560. }
  47561. },
  47562. intersex: {
  47563. height: math.unit(9 + 4/12, "feet"),
  47564. weight: math.unit(398, "lb"),
  47565. name: "Intersex",
  47566. image: {
  47567. source: "./media/characters/kassandra/intersex.svg",
  47568. extra: 908/839,
  47569. bottom: 61/969
  47570. }
  47571. },
  47572. },
  47573. [
  47574. {
  47575. name: "Normal",
  47576. height: math.unit(9 + 4/12, "feet"),
  47577. default: true
  47578. },
  47579. ]
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47583. {
  47584. front: {
  47585. height: math.unit(3, "meters"),
  47586. name: "Front",
  47587. image: {
  47588. source: "./media/characters/amy/front.svg",
  47589. extra: 1380/1343,
  47590. bottom: 70/1450
  47591. }
  47592. },
  47593. back: {
  47594. height: math.unit(3, "meters"),
  47595. name: "Back",
  47596. image: {
  47597. source: "./media/characters/amy/back.svg",
  47598. extra: 1380/1347,
  47599. bottom: 66/1446
  47600. }
  47601. },
  47602. },
  47603. [
  47604. {
  47605. name: "Normal",
  47606. height: math.unit(3, "meters"),
  47607. default: true
  47608. },
  47609. ]
  47610. ))
  47611. characterMakers.push(() => makeCharacter(
  47612. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47613. {
  47614. side: {
  47615. height: math.unit(47, "cm"),
  47616. weight: math.unit(10.8, "kg"),
  47617. name: "Side",
  47618. image: {
  47619. source: "./media/characters/alphaschakal/side.svg",
  47620. extra: 1058/568,
  47621. bottom: 62/1120
  47622. }
  47623. },
  47624. back: {
  47625. height: math.unit(78, "cm"),
  47626. weight: math.unit(10.8, "kg"),
  47627. name: "Back",
  47628. image: {
  47629. source: "./media/characters/alphaschakal/back.svg",
  47630. extra: 1102/942,
  47631. bottom: 185/1287
  47632. }
  47633. },
  47634. head: {
  47635. height: math.unit(28, "cm"),
  47636. name: "Head",
  47637. image: {
  47638. source: "./media/characters/alphaschakal/head.svg",
  47639. extra: 696/508,
  47640. bottom: 0/696
  47641. }
  47642. },
  47643. paw: {
  47644. height: math.unit(16, "cm"),
  47645. name: "Paw",
  47646. image: {
  47647. source: "./media/characters/alphaschakal/paw.svg"
  47648. }
  47649. },
  47650. },
  47651. [
  47652. {
  47653. name: "Normal",
  47654. height: math.unit(47, "cm"),
  47655. default: true
  47656. },
  47657. {
  47658. name: "Macro",
  47659. height: math.unit(340, "cm")
  47660. },
  47661. ]
  47662. ))
  47663. characterMakers.push(() => makeCharacter(
  47664. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47665. {
  47666. front: {
  47667. height: math.unit(36, "earths"),
  47668. name: "Front",
  47669. image: {
  47670. source: "./media/characters/ecobyss/front.svg",
  47671. extra: 1282/1215,
  47672. bottom: 11/1293
  47673. }
  47674. },
  47675. back: {
  47676. height: math.unit(36, "earths"),
  47677. name: "Back",
  47678. image: {
  47679. source: "./media/characters/ecobyss/back.svg",
  47680. extra: 1291/1222,
  47681. bottom: 8/1299
  47682. }
  47683. },
  47684. },
  47685. [
  47686. {
  47687. name: "Normal",
  47688. height: math.unit(36, "earths"),
  47689. default: true
  47690. },
  47691. ]
  47692. ))
  47693. characterMakers.push(() => makeCharacter(
  47694. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47695. {
  47696. front: {
  47697. height: math.unit(12, "feet"),
  47698. name: "Front",
  47699. image: {
  47700. source: "./media/characters/vasuk/front.svg",
  47701. extra: 1326/1207,
  47702. bottom: 64/1390
  47703. }
  47704. },
  47705. },
  47706. [
  47707. {
  47708. name: "Normal",
  47709. height: math.unit(12, "feet"),
  47710. default: true
  47711. },
  47712. ]
  47713. ))
  47714. characterMakers.push(() => makeCharacter(
  47715. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47716. {
  47717. side: {
  47718. height: math.unit(100, "feet"),
  47719. name: "Side",
  47720. image: {
  47721. source: "./media/characters/linneaus/side.svg",
  47722. extra: 987/807,
  47723. bottom: 47/1034
  47724. }
  47725. },
  47726. },
  47727. [
  47728. {
  47729. name: "Macro",
  47730. height: math.unit(100, "feet"),
  47731. default: true
  47732. },
  47733. ]
  47734. ))
  47735. characterMakers.push(() => makeCharacter(
  47736. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47737. {
  47738. front: {
  47739. height: math.unit(8, "feet"),
  47740. weight: math.unit(1200, "lb"),
  47741. name: "Front",
  47742. image: {
  47743. source: "./media/characters/nyterious-daligdig/front.svg",
  47744. extra: 1284/1094,
  47745. bottom: 84/1368
  47746. }
  47747. },
  47748. back: {
  47749. height: math.unit(8, "feet"),
  47750. weight: math.unit(1200, "lb"),
  47751. name: "Back",
  47752. image: {
  47753. source: "./media/characters/nyterious-daligdig/back.svg",
  47754. extra: 1301/1121,
  47755. bottom: 129/1430
  47756. }
  47757. },
  47758. mouth: {
  47759. height: math.unit(1.464, "feet"),
  47760. name: "Mouth",
  47761. image: {
  47762. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47763. }
  47764. },
  47765. },
  47766. [
  47767. {
  47768. name: "Small",
  47769. height: math.unit(8, "feet"),
  47770. default: true
  47771. },
  47772. {
  47773. name: "Normal",
  47774. height: math.unit(15, "feet")
  47775. },
  47776. {
  47777. name: "Macro",
  47778. height: math.unit(90, "feet")
  47779. },
  47780. ]
  47781. ))
  47782. characterMakers.push(() => makeCharacter(
  47783. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47784. {
  47785. front: {
  47786. height: math.unit(7 + 4/12, "feet"),
  47787. weight: math.unit(252, "lb"),
  47788. name: "Front",
  47789. image: {
  47790. source: "./media/characters/bandel/front.svg",
  47791. extra: 1946/1775,
  47792. bottom: 26/1972
  47793. }
  47794. },
  47795. back: {
  47796. height: math.unit(7 + 4/12, "feet"),
  47797. weight: math.unit(252, "lb"),
  47798. name: "Back",
  47799. image: {
  47800. source: "./media/characters/bandel/back.svg",
  47801. extra: 1940/1770,
  47802. bottom: 25/1965
  47803. }
  47804. },
  47805. maw: {
  47806. height: math.unit(2.15, "feet"),
  47807. name: "Maw",
  47808. image: {
  47809. source: "./media/characters/bandel/maw.svg"
  47810. }
  47811. },
  47812. stomach: {
  47813. height: math.unit(1.95, "feet"),
  47814. name: "Stomach",
  47815. image: {
  47816. source: "./media/characters/bandel/stomach.svg"
  47817. }
  47818. },
  47819. },
  47820. [
  47821. {
  47822. name: "Normal",
  47823. height: math.unit(7 + 4/12, "feet"),
  47824. default: true
  47825. },
  47826. ]
  47827. ))
  47828. characterMakers.push(() => makeCharacter(
  47829. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47830. {
  47831. front: {
  47832. height: math.unit(10 + 5/12, "feet"),
  47833. weight: math.unit(773.5, "kg"),
  47834. name: "Front",
  47835. image: {
  47836. source: "./media/characters/zed/front.svg",
  47837. extra: 987/941,
  47838. bottom: 52/1039
  47839. }
  47840. },
  47841. },
  47842. [
  47843. {
  47844. name: "Short",
  47845. height: math.unit(5 + 4/12, "feet")
  47846. },
  47847. {
  47848. name: "Average",
  47849. height: math.unit(10 + 5/12, "feet"),
  47850. default: true
  47851. },
  47852. {
  47853. name: "Mini-Macro",
  47854. height: math.unit(24 + 9/12, "feet")
  47855. },
  47856. {
  47857. name: "Macro",
  47858. height: math.unit(249, "feet")
  47859. },
  47860. {
  47861. name: "Mega-Macro",
  47862. height: math.unit(12490, "feet")
  47863. },
  47864. {
  47865. name: "Giga-Macro",
  47866. height: math.unit(24.9, "miles")
  47867. },
  47868. {
  47869. name: "Tera-Macro",
  47870. height: math.unit(24900, "miles")
  47871. },
  47872. {
  47873. name: "Cosmic Scale",
  47874. height: math.unit(38.9, "lightyears")
  47875. },
  47876. {
  47877. name: "Universal Scale",
  47878. height: math.unit(138e12, "lightyears")
  47879. },
  47880. ]
  47881. ))
  47882. characterMakers.push(() => makeCharacter(
  47883. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47884. {
  47885. front: {
  47886. height: math.unit(1561, "inches"),
  47887. name: "Front",
  47888. image: {
  47889. source: "./media/characters/ivan/front.svg",
  47890. extra: 1126/1071,
  47891. bottom: 26/1152
  47892. }
  47893. },
  47894. back: {
  47895. height: math.unit(1561, "inches"),
  47896. name: "Back",
  47897. image: {
  47898. source: "./media/characters/ivan/back.svg",
  47899. extra: 1134/1079,
  47900. bottom: 30/1164
  47901. }
  47902. },
  47903. },
  47904. [
  47905. {
  47906. name: "Normal",
  47907. height: math.unit(1561, "inches"),
  47908. default: true
  47909. },
  47910. ]
  47911. ))
  47912. characterMakers.push(() => makeCharacter(
  47913. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47914. {
  47915. front: {
  47916. height: math.unit(5 + 7/12, "feet"),
  47917. weight: math.unit(150, "lb"),
  47918. name: "Front",
  47919. image: {
  47920. source: "./media/characters/robin-arctic-hare/front.svg",
  47921. extra: 1148/974,
  47922. bottom: 20/1168
  47923. }
  47924. },
  47925. },
  47926. [
  47927. {
  47928. name: "Normal",
  47929. height: math.unit(5 + 7/12, "feet"),
  47930. default: true
  47931. },
  47932. ]
  47933. ))
  47934. characterMakers.push(() => makeCharacter(
  47935. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47936. {
  47937. side: {
  47938. height: math.unit(5, "feet"),
  47939. name: "Side",
  47940. image: {
  47941. source: "./media/characters/birch/side.svg",
  47942. extra: 985/796,
  47943. bottom: 111/1096
  47944. }
  47945. },
  47946. },
  47947. [
  47948. {
  47949. name: "Normal",
  47950. height: math.unit(5, "feet"),
  47951. default: true
  47952. },
  47953. ]
  47954. ))
  47955. characterMakers.push(() => makeCharacter(
  47956. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47957. {
  47958. front: {
  47959. height: math.unit(4, "feet"),
  47960. name: "Front",
  47961. image: {
  47962. source: "./media/characters/rasp/front.svg",
  47963. extra: 561/478,
  47964. bottom: 74/635
  47965. }
  47966. },
  47967. },
  47968. [
  47969. {
  47970. name: "Normal",
  47971. height: math.unit(4, "feet"),
  47972. default: true
  47973. },
  47974. ]
  47975. ))
  47976. characterMakers.push(() => makeCharacter(
  47977. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47978. {
  47979. front: {
  47980. height: math.unit(4 + 6/12, "feet"),
  47981. name: "Front",
  47982. image: {
  47983. source: "./media/characters/agatha/front.svg",
  47984. extra: 947/933,
  47985. bottom: 42/989
  47986. }
  47987. },
  47988. back: {
  47989. height: math.unit(4 + 6/12, "feet"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/agatha/back.svg",
  47993. extra: 935/922,
  47994. bottom: 48/983
  47995. }
  47996. },
  47997. },
  47998. [
  47999. {
  48000. name: "Normal",
  48001. height: math.unit(4 + 6 /12, "feet"),
  48002. default: true
  48003. },
  48004. {
  48005. name: "Max Size",
  48006. height: math.unit(500, "feet")
  48007. },
  48008. ]
  48009. ))
  48010. characterMakers.push(() => makeCharacter(
  48011. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48012. {
  48013. side: {
  48014. height: math.unit(30, "feet"),
  48015. name: "Side",
  48016. image: {
  48017. source: "./media/characters/roggy/side.svg",
  48018. extra: 909/643,
  48019. bottom: 63/972
  48020. }
  48021. },
  48022. lounging: {
  48023. height: math.unit(20, "feet"),
  48024. name: "Lounging",
  48025. image: {
  48026. source: "./media/characters/roggy/lounging.svg",
  48027. extra: 643/479,
  48028. bottom: 145/788
  48029. }
  48030. },
  48031. handpaw: {
  48032. height: math.unit(13.1, "feet"),
  48033. name: "Handpaw",
  48034. image: {
  48035. source: "./media/characters/roggy/handpaw.svg"
  48036. }
  48037. },
  48038. footpaw: {
  48039. height: math.unit(15.8, "feet"),
  48040. name: "Footpaw",
  48041. image: {
  48042. source: "./media/characters/roggy/footpaw.svg"
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Menacing",
  48049. height: math.unit(30, "feet"),
  48050. default: true
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(5 + 7/12, "feet"),
  48059. weight: math.unit(135, "lb"),
  48060. name: "Front",
  48061. image: {
  48062. source: "./media/characters/naomi/front.svg",
  48063. extra: 1209/1154,
  48064. bottom: 129/1338
  48065. }
  48066. },
  48067. back: {
  48068. height: math.unit(5 + 7/12, "feet"),
  48069. weight: math.unit(135, "lb"),
  48070. name: "Back",
  48071. image: {
  48072. source: "./media/characters/naomi/back.svg",
  48073. extra: 1252/1190,
  48074. bottom: 23/1275
  48075. }
  48076. },
  48077. },
  48078. [
  48079. {
  48080. name: "Normal",
  48081. height: math.unit(5 + 7 /12, "feet"),
  48082. default: true
  48083. },
  48084. ]
  48085. ))
  48086. characterMakers.push(() => makeCharacter(
  48087. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48088. {
  48089. side: {
  48090. height: math.unit(35, "meters"),
  48091. name: "Side",
  48092. image: {
  48093. source: "./media/characters/kimpi/side.svg",
  48094. extra: 419/382,
  48095. bottom: 63/482
  48096. }
  48097. },
  48098. hand: {
  48099. height: math.unit(8.96, "meters"),
  48100. name: "Hand",
  48101. image: {
  48102. source: "./media/characters/kimpi/hand.svg"
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(35, "meters"),
  48110. default: true
  48111. },
  48112. ]
  48113. ))
  48114. characterMakers.push(() => makeCharacter(
  48115. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48116. {
  48117. front: {
  48118. height: math.unit(4 + 4/12, "feet"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/pepper-purrloin/front.svg",
  48122. extra: 1141/1024,
  48123. bottom: 21/1162
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(4 + 4/12, "feet"),
  48131. default: true
  48132. },
  48133. ]
  48134. ))
  48135. characterMakers.push(() => makeCharacter(
  48136. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48137. {
  48138. front: {
  48139. height: math.unit(6 + 2/12, "feet"),
  48140. name: "Front",
  48141. image: {
  48142. source: "./media/characters/raphael/front.svg",
  48143. extra: 1101/962,
  48144. bottom: 59/1160
  48145. }
  48146. },
  48147. },
  48148. [
  48149. {
  48150. name: "Normal",
  48151. height: math.unit(6 + 2/12, "feet"),
  48152. default: true
  48153. },
  48154. ]
  48155. ))
  48156. characterMakers.push(() => makeCharacter(
  48157. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48158. {
  48159. front: {
  48160. height: math.unit(6, "feet"),
  48161. weight: math.unit(150, "lb"),
  48162. name: "Front",
  48163. image: {
  48164. source: "./media/characters/victor-williams/front.svg",
  48165. extra: 1894/1825,
  48166. bottom: 67/1961
  48167. }
  48168. },
  48169. },
  48170. [
  48171. {
  48172. name: "Normal",
  48173. height: math.unit(6, "feet"),
  48174. default: true
  48175. },
  48176. ]
  48177. ))
  48178. characterMakers.push(() => makeCharacter(
  48179. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48180. {
  48181. front: {
  48182. height: math.unit(5 + 8/12, "feet"),
  48183. weight: math.unit(150, "lb"),
  48184. name: "Front",
  48185. image: {
  48186. source: "./media/characters/rachel/front.svg",
  48187. extra: 1902/1787,
  48188. bottom: 46/1948
  48189. }
  48190. },
  48191. },
  48192. [
  48193. {
  48194. name: "Base Height",
  48195. height: math.unit(5 + 8/12, "feet"),
  48196. default: true
  48197. },
  48198. {
  48199. name: "Macro",
  48200. height: math.unit(200, "feet")
  48201. },
  48202. {
  48203. name: "Mega Macro",
  48204. height: math.unit(1, "mile")
  48205. },
  48206. {
  48207. name: "Giga Macro",
  48208. height: math.unit(1500, "miles")
  48209. },
  48210. {
  48211. name: "Tera Macro",
  48212. height: math.unit(8000, "miles")
  48213. },
  48214. {
  48215. name: "Tera Macro+",
  48216. height: math.unit(2e5, "miles")
  48217. },
  48218. ]
  48219. ))
  48220. characterMakers.push(() => makeCharacter(
  48221. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48222. {
  48223. front: {
  48224. height: math.unit(6.5, "feet"),
  48225. name: "Front",
  48226. image: {
  48227. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48228. extra: 860/819,
  48229. bottom: 307/1167
  48230. }
  48231. },
  48232. back: {
  48233. height: math.unit(6.5, "feet"),
  48234. name: "Back",
  48235. image: {
  48236. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48237. extra: 880/837,
  48238. bottom: 395/1275
  48239. }
  48240. },
  48241. sleeping: {
  48242. height: math.unit(2.79, "feet"),
  48243. name: "Sleeping",
  48244. image: {
  48245. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48246. extra: 465/383,
  48247. bottom: 263/728
  48248. }
  48249. },
  48250. maw: {
  48251. height: math.unit(2.52, "feet"),
  48252. name: "Maw",
  48253. image: {
  48254. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48255. }
  48256. },
  48257. },
  48258. [
  48259. {
  48260. name: "Normal",
  48261. height: math.unit(6.5, "feet"),
  48262. default: true
  48263. },
  48264. ]
  48265. ))
  48266. characterMakers.push(() => makeCharacter(
  48267. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48268. {
  48269. front: {
  48270. height: math.unit(5, "feet"),
  48271. name: "Front",
  48272. image: {
  48273. source: "./media/characters/nova-nerium/front.svg",
  48274. extra: 1548/1392,
  48275. bottom: 374/1922
  48276. }
  48277. },
  48278. back: {
  48279. height: math.unit(5, "feet"),
  48280. name: "Back",
  48281. image: {
  48282. source: "./media/characters/nova-nerium/back.svg",
  48283. extra: 1658/1468,
  48284. bottom: 257/1915
  48285. }
  48286. },
  48287. },
  48288. [
  48289. {
  48290. name: "Normal",
  48291. height: math.unit(5, "feet"),
  48292. default: true
  48293. },
  48294. ]
  48295. ))
  48296. characterMakers.push(() => makeCharacter(
  48297. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48298. {
  48299. front: {
  48300. height: math.unit(5 + 4/12, "feet"),
  48301. name: "Front",
  48302. image: {
  48303. source: "./media/characters/ashe-pyriph/front.svg",
  48304. extra: 1935/1747,
  48305. bottom: 60/1995
  48306. }
  48307. },
  48308. },
  48309. [
  48310. {
  48311. name: "Normal",
  48312. height: math.unit(5 + 4/12, "feet"),
  48313. default: true
  48314. },
  48315. ]
  48316. ))
  48317. characterMakers.push(() => makeCharacter(
  48318. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48319. {
  48320. front: {
  48321. height: math.unit(8.7, "feet"),
  48322. name: "Front",
  48323. image: {
  48324. source: "./media/characters/flicker-wisp/front.svg",
  48325. extra: 1835/1613,
  48326. bottom: 449/2284
  48327. }
  48328. },
  48329. side: {
  48330. height: math.unit(8.7, "feet"),
  48331. name: "Side",
  48332. image: {
  48333. source: "./media/characters/flicker-wisp/side.svg",
  48334. extra: 1841/1642,
  48335. bottom: 336/2177
  48336. },
  48337. default: true
  48338. },
  48339. maw: {
  48340. height: math.unit(3.35, "feet"),
  48341. name: "Maw",
  48342. image: {
  48343. source: "./media/characters/flicker-wisp/maw.svg",
  48344. extra: 2338/1506,
  48345. bottom: 0/2338
  48346. }
  48347. },
  48348. ovipositor: {
  48349. height: math.unit(4.95, "feet"),
  48350. name: "Ovipositor",
  48351. image: {
  48352. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48353. }
  48354. },
  48355. egg: {
  48356. height: math.unit(0.385, "feet"),
  48357. weight: math.unit(2, "lb"),
  48358. name: "Egg",
  48359. image: {
  48360. source: "./media/characters/flicker-wisp/egg.svg"
  48361. }
  48362. },
  48363. },
  48364. [
  48365. {
  48366. name: "Normal",
  48367. height: math.unit(8.7, "feet"),
  48368. default: true
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48374. {
  48375. side: {
  48376. height: math.unit(11, "feet"),
  48377. name: "Side",
  48378. image: {
  48379. source: "./media/characters/faefnul/side.svg",
  48380. extra: 1100/1007,
  48381. bottom: 0/1100
  48382. }
  48383. },
  48384. },
  48385. [
  48386. {
  48387. name: "Normal",
  48388. height: math.unit(11, "feet"),
  48389. default: true
  48390. },
  48391. ]
  48392. ))
  48393. characterMakers.push(() => makeCharacter(
  48394. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48395. {
  48396. front: {
  48397. height: math.unit(6 + 2/12, "feet"),
  48398. name: "Front",
  48399. image: {
  48400. source: "./media/characters/shady/front.svg",
  48401. extra: 502/461,
  48402. bottom: 9/511
  48403. }
  48404. },
  48405. kneeling: {
  48406. height: math.unit(4.6, "feet"),
  48407. name: "Kneeling",
  48408. image: {
  48409. source: "./media/characters/shady/kneeling.svg",
  48410. extra: 1328/1219,
  48411. bottom: 117/1445
  48412. }
  48413. },
  48414. maw: {
  48415. height: math.unit(2, "feet"),
  48416. name: "Maw",
  48417. image: {
  48418. source: "./media/characters/shady/maw.svg"
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Nano",
  48425. height: math.unit(1, "mm")
  48426. },
  48427. {
  48428. name: "Micro",
  48429. height: math.unit(12, "mm")
  48430. },
  48431. {
  48432. name: "Tiny",
  48433. height: math.unit(3, "inches")
  48434. },
  48435. {
  48436. name: "Normal",
  48437. height: math.unit(6 + 2/12, "feet"),
  48438. default: true
  48439. },
  48440. {
  48441. name: "Big",
  48442. height: math.unit(15, "feet")
  48443. },
  48444. {
  48445. name: "Macro",
  48446. height: math.unit(150, "feet")
  48447. },
  48448. {
  48449. name: "Titanic",
  48450. height: math.unit(500, "feet")
  48451. },
  48452. ]
  48453. ))
  48454. characterMakers.push(() => makeCharacter(
  48455. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48456. {
  48457. front: {
  48458. height: math.unit(12, "feet"),
  48459. name: "Front",
  48460. image: {
  48461. source: "./media/characters/fenrir/front.svg",
  48462. extra: 968/875,
  48463. bottom: 22/990
  48464. }
  48465. },
  48466. },
  48467. [
  48468. {
  48469. name: "Big",
  48470. height: math.unit(12, "feet"),
  48471. default: true
  48472. },
  48473. ]
  48474. ))
  48475. characterMakers.push(() => makeCharacter(
  48476. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48477. {
  48478. front: {
  48479. height: math.unit(5 + 4/12, "feet"),
  48480. name: "Front",
  48481. image: {
  48482. source: "./media/characters/makar/front.svg",
  48483. extra: 1181/1112,
  48484. bottom: 78/1259
  48485. }
  48486. },
  48487. },
  48488. [
  48489. {
  48490. name: "Normal",
  48491. height: math.unit(5 + 4/12, "feet"),
  48492. default: true
  48493. },
  48494. ]
  48495. ))
  48496. characterMakers.push(() => makeCharacter(
  48497. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48498. {
  48499. front: {
  48500. height: math.unit(5 + 7/12, "feet"),
  48501. name: "Front",
  48502. image: {
  48503. source: "./media/characters/callow/front.svg",
  48504. extra: 1482/1304,
  48505. bottom: 23/1505
  48506. }
  48507. },
  48508. back: {
  48509. height: math.unit(5 + 7/12, "feet"),
  48510. name: "Back",
  48511. image: {
  48512. source: "./media/characters/callow/back.svg",
  48513. extra: 1484/1296,
  48514. bottom: 25/1509
  48515. }
  48516. },
  48517. },
  48518. [
  48519. {
  48520. name: "Micro",
  48521. height: math.unit(3, "inches"),
  48522. default: true
  48523. },
  48524. {
  48525. name: "Normal",
  48526. height: math.unit(5 + 7/12, "feet")
  48527. },
  48528. ]
  48529. ))
  48530. characterMakers.push(() => makeCharacter(
  48531. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48532. {
  48533. front: {
  48534. height: math.unit(6 + 2/12, "feet"),
  48535. name: "Front",
  48536. image: {
  48537. source: "./media/characters/natel/front.svg",
  48538. extra: 1833/1692,
  48539. bottom: 166/1999
  48540. }
  48541. },
  48542. },
  48543. [
  48544. {
  48545. name: "Normal",
  48546. height: math.unit(6 + 2/12, "feet"),
  48547. default: true
  48548. },
  48549. ]
  48550. ))
  48551. characterMakers.push(() => makeCharacter(
  48552. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48553. {
  48554. front: {
  48555. height: math.unit(1.75, "meters"),
  48556. name: "Front",
  48557. image: {
  48558. source: "./media/characters/misu/front.svg",
  48559. extra: 1690/1558,
  48560. bottom: 234/1924
  48561. }
  48562. },
  48563. back: {
  48564. height: math.unit(1.75, "meters"),
  48565. name: "Back",
  48566. image: {
  48567. source: "./media/characters/misu/back.svg",
  48568. extra: 1762/1618,
  48569. bottom: 146/1908
  48570. }
  48571. },
  48572. frontNude: {
  48573. height: math.unit(1.75, "meters"),
  48574. name: "Front (Nude)",
  48575. image: {
  48576. source: "./media/characters/misu/front-nude.svg",
  48577. extra: 1690/1558,
  48578. bottom: 234/1924
  48579. }
  48580. },
  48581. backNude: {
  48582. height: math.unit(1.75, "meters"),
  48583. name: "Back (Nude)",
  48584. image: {
  48585. source: "./media/characters/misu/back-nude.svg",
  48586. extra: 1762/1618,
  48587. bottom: 146/1908
  48588. }
  48589. },
  48590. frontErect: {
  48591. height: math.unit(1.75, "meters"),
  48592. name: "Front (Erect)",
  48593. image: {
  48594. source: "./media/characters/misu/front-erect.svg",
  48595. extra: 1690/1558,
  48596. bottom: 234/1924
  48597. }
  48598. },
  48599. maw: {
  48600. height: math.unit(0.47, "meters"),
  48601. name: "Maw",
  48602. image: {
  48603. source: "./media/characters/misu/maw.svg"
  48604. }
  48605. },
  48606. head: {
  48607. height: math.unit(0.35, "meters"),
  48608. name: "Head",
  48609. image: {
  48610. source: "./media/characters/misu/head.svg"
  48611. }
  48612. },
  48613. rear: {
  48614. height: math.unit(0.47, "meters"),
  48615. name: "Rear",
  48616. image: {
  48617. source: "./media/characters/misu/rear.svg"
  48618. }
  48619. },
  48620. },
  48621. [
  48622. {
  48623. name: "Normal",
  48624. height: math.unit(1.75, "meters")
  48625. },
  48626. {
  48627. name: "Not good for the people",
  48628. height: math.unit(42, "meters")
  48629. },
  48630. {
  48631. name: "Not good for the neighborhood",
  48632. height: math.unit(135, "meters")
  48633. },
  48634. {
  48635. name: "Bit bigger problem",
  48636. height: math.unit(380, "meters"),
  48637. default: true
  48638. },
  48639. {
  48640. name: "Not good for the city",
  48641. height: math.unit(1.5, "km")
  48642. },
  48643. {
  48644. name: "Not good for the county",
  48645. height: math.unit(5.5, "km")
  48646. },
  48647. {
  48648. name: "Not good for the state",
  48649. height: math.unit(25, "km")
  48650. },
  48651. {
  48652. name: "Not good for the country",
  48653. height: math.unit(125, "km")
  48654. },
  48655. {
  48656. name: "Not good for the continent",
  48657. height: math.unit(2100, "km")
  48658. },
  48659. {
  48660. name: "Not good for the planet",
  48661. height: math.unit(35000, "km")
  48662. },
  48663. {
  48664. name: "Just no",
  48665. height: math.unit(8.5e18, "km")
  48666. },
  48667. ]
  48668. ))
  48669. characterMakers.push(() => makeCharacter(
  48670. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48671. {
  48672. front: {
  48673. height: math.unit(6.5, "feet"),
  48674. name: "Front",
  48675. image: {
  48676. source: "./media/characters/poppy/front.svg",
  48677. extra: 1878/1812,
  48678. bottom: 43/1921
  48679. }
  48680. },
  48681. feet: {
  48682. height: math.unit(1.06, "feet"),
  48683. name: "Feet",
  48684. image: {
  48685. source: "./media/characters/poppy/feet.svg",
  48686. extra: 1083/1083,
  48687. bottom: 87/1170
  48688. }
  48689. },
  48690. },
  48691. [
  48692. {
  48693. name: "Human",
  48694. height: math.unit(6.5, "feet")
  48695. },
  48696. {
  48697. name: "Default",
  48698. height: math.unit(300, "feet"),
  48699. default: true
  48700. },
  48701. {
  48702. name: "Huge",
  48703. height: math.unit(850, "feet")
  48704. },
  48705. {
  48706. name: "Mega",
  48707. height: math.unit(8000, "feet")
  48708. },
  48709. {
  48710. name: "Giga",
  48711. height: math.unit(300, "miles")
  48712. },
  48713. ]
  48714. ))
  48715. characterMakers.push(() => makeCharacter(
  48716. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48717. {
  48718. bipedal: {
  48719. height: math.unit(7, "feet"),
  48720. name: "Bipedal",
  48721. image: {
  48722. source: "./media/characters/zener/bipedal.svg",
  48723. extra: 874/805,
  48724. bottom: 109/983
  48725. }
  48726. },
  48727. quadrupedal: {
  48728. height: math.unit(4.64, "feet"),
  48729. name: "Quadrupedal",
  48730. image: {
  48731. source: "./media/characters/zener/quadrupedal.svg",
  48732. extra: 638/507,
  48733. bottom: 190/828
  48734. }
  48735. },
  48736. cock: {
  48737. height: math.unit(18, "inches"),
  48738. name: "Cock",
  48739. image: {
  48740. source: "./media/characters/zener/cock.svg"
  48741. }
  48742. },
  48743. },
  48744. [
  48745. {
  48746. name: "Normal",
  48747. height: math.unit(7, "feet"),
  48748. default: true
  48749. },
  48750. ]
  48751. ))
  48752. characterMakers.push(() => makeCharacter(
  48753. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48754. {
  48755. nude: {
  48756. height: math.unit(5 + 6/12, "feet"),
  48757. name: "Nude",
  48758. image: {
  48759. source: "./media/characters/charlie-dog/nude.svg",
  48760. extra: 768/734,
  48761. bottom: 26/794
  48762. }
  48763. },
  48764. dressed: {
  48765. height: math.unit(5 + 6/12, "feet"),
  48766. name: "Dressed",
  48767. image: {
  48768. source: "./media/characters/charlie-dog/dressed.svg",
  48769. extra: 768/734,
  48770. bottom: 26/794
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Normal",
  48777. height: math.unit(5 + 6/12, "feet"),
  48778. default: true
  48779. },
  48780. ]
  48781. ))
  48782. characterMakers.push(() => makeCharacter(
  48783. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48784. {
  48785. front: {
  48786. height: math.unit(6 + 4/12, "feet"),
  48787. name: "Front",
  48788. image: {
  48789. source: "./media/characters/ir'istrasz/front.svg",
  48790. extra: 1014/977,
  48791. bottom: 65/1079
  48792. }
  48793. },
  48794. back: {
  48795. height: math.unit(6 + 4/12, "feet"),
  48796. name: "Back",
  48797. image: {
  48798. source: "./media/characters/ir'istrasz/back.svg",
  48799. extra: 1024/992,
  48800. bottom: 34/1058
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(6 + 4/12, "feet"),
  48808. default: true
  48809. },
  48810. ]
  48811. ))
  48812. characterMakers.push(() => makeCharacter(
  48813. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48814. {
  48815. front: {
  48816. height: math.unit(5 + 8/12, "feet"),
  48817. name: "Front",
  48818. image: {
  48819. source: "./media/characters/dee-ditto/front.svg",
  48820. extra: 1874/1785,
  48821. bottom: 68/1942
  48822. }
  48823. },
  48824. back: {
  48825. height: math.unit(5 + 8/12, "feet"),
  48826. name: "Back",
  48827. image: {
  48828. source: "./media/characters/dee-ditto/back.svg",
  48829. extra: 1870/1783,
  48830. bottom: 77/1947
  48831. }
  48832. },
  48833. },
  48834. [
  48835. {
  48836. name: "Normal",
  48837. height: math.unit(5 + 8/12, "feet"),
  48838. default: true
  48839. },
  48840. ]
  48841. ))
  48842. characterMakers.push(() => makeCharacter(
  48843. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48844. {
  48845. front: {
  48846. height: math.unit(7 + 6/12, "feet"),
  48847. name: "Front",
  48848. image: {
  48849. source: "./media/characters/fey/front.svg",
  48850. extra: 995/979,
  48851. bottom: 30/1025
  48852. }
  48853. },
  48854. back: {
  48855. height: math.unit(7 + 6/12, "feet"),
  48856. name: "Back",
  48857. image: {
  48858. source: "./media/characters/fey/back.svg",
  48859. extra: 1079/1008,
  48860. bottom: 5/1084
  48861. }
  48862. },
  48863. dressed: {
  48864. height: math.unit(7 + 6/12, "feet"),
  48865. name: "Dressed",
  48866. image: {
  48867. source: "./media/characters/fey/dressed.svg",
  48868. extra: 995/979,
  48869. bottom: 30/1025
  48870. }
  48871. },
  48872. },
  48873. [
  48874. {
  48875. name: "Normal",
  48876. height: math.unit(7 + 6/12, "feet"),
  48877. default: true
  48878. },
  48879. ]
  48880. ))
  48881. characterMakers.push(() => makeCharacter(
  48882. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48883. {
  48884. standing: {
  48885. height: math.unit(17, "feet"),
  48886. name: "Standing",
  48887. image: {
  48888. source: "./media/characters/aster/standing.svg",
  48889. extra: 1798/1598,
  48890. bottom: 117/1915
  48891. }
  48892. },
  48893. },
  48894. [
  48895. {
  48896. name: "Normal",
  48897. height: math.unit(17, "feet"),
  48898. default: true
  48899. },
  48900. {
  48901. name: "Homewrecker",
  48902. height: math.unit(95, "feet")
  48903. },
  48904. {
  48905. name: "Planet Devourer",
  48906. height: math.unit(1008000, "miles")
  48907. },
  48908. ]
  48909. ))
  48910. characterMakers.push(() => makeCharacter(
  48911. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48912. {
  48913. front: {
  48914. height: math.unit(6 + 5/12, "feet"),
  48915. weight: math.unit(265, "lb"),
  48916. name: "Front",
  48917. image: {
  48918. source: "./media/characters/devon-childs/front.svg",
  48919. extra: 1795/1721,
  48920. bottom: 41/1836
  48921. }
  48922. },
  48923. side: {
  48924. height: math.unit(6 + 5/12, "feet"),
  48925. weight: math.unit(265, "lb"),
  48926. name: "Side",
  48927. image: {
  48928. source: "./media/characters/devon-childs/side.svg",
  48929. extra: 1812/1738,
  48930. bottom: 30/1842
  48931. }
  48932. },
  48933. back: {
  48934. height: math.unit(6 + 5/12, "feet"),
  48935. weight: math.unit(265, "lb"),
  48936. name: "Back",
  48937. image: {
  48938. source: "./media/characters/devon-childs/back.svg",
  48939. extra: 1808/1735,
  48940. bottom: 23/1831
  48941. }
  48942. },
  48943. hand: {
  48944. height: math.unit(1.464, "feet"),
  48945. name: "Hand",
  48946. image: {
  48947. source: "./media/characters/devon-childs/hand.svg"
  48948. }
  48949. },
  48950. foot: {
  48951. height: math.unit(1.6, "feet"),
  48952. name: "Foot",
  48953. image: {
  48954. source: "./media/characters/devon-childs/foot.svg"
  48955. }
  48956. },
  48957. },
  48958. [
  48959. {
  48960. name: "Micro",
  48961. height: math.unit(7, "cm")
  48962. },
  48963. {
  48964. name: "Normal",
  48965. height: math.unit(6 + 5/12, "feet"),
  48966. default: true
  48967. },
  48968. {
  48969. name: "Macro",
  48970. height: math.unit(154, "feet")
  48971. },
  48972. ]
  48973. ))
  48974. characterMakers.push(() => makeCharacter(
  48975. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48976. {
  48977. front: {
  48978. height: math.unit(6, "feet"),
  48979. weight: math.unit(180, "lb"),
  48980. name: "Front",
  48981. image: {
  48982. source: "./media/characters/lydemox-vir/front.svg",
  48983. extra: 1632/1435,
  48984. bottom: 58/1690
  48985. }
  48986. },
  48987. frontSFW: {
  48988. height: math.unit(6, "feet"),
  48989. weight: math.unit(180, "lb"),
  48990. name: "Front (SFW)",
  48991. image: {
  48992. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48993. extra: 1632/1435,
  48994. bottom: 58/1690
  48995. }
  48996. },
  48997. back: {
  48998. height: math.unit(6, "feet"),
  48999. weight: math.unit(180, "lb"),
  49000. name: "Back",
  49001. image: {
  49002. source: "./media/characters/lydemox-vir/back.svg",
  49003. extra: 1593/1408,
  49004. bottom: 31/1624
  49005. }
  49006. },
  49007. paw: {
  49008. height: math.unit(1.85, "feet"),
  49009. name: "Paw",
  49010. image: {
  49011. source: "./media/characters/lydemox-vir/paw.svg"
  49012. }
  49013. },
  49014. dick: {
  49015. height: math.unit(1.8, "feet"),
  49016. name: "Dick",
  49017. image: {
  49018. source: "./media/characters/lydemox-vir/dick.svg"
  49019. }
  49020. },
  49021. },
  49022. [
  49023. {
  49024. name: "Macro",
  49025. height: math.unit(100, "feet"),
  49026. default: true
  49027. },
  49028. {
  49029. name: "Teramacro",
  49030. height: math.unit(1, "earth")
  49031. },
  49032. {
  49033. name: "Planetary",
  49034. height: math.unit(20, "earths")
  49035. },
  49036. ]
  49037. ))
  49038. characterMakers.push(() => makeCharacter(
  49039. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49040. {
  49041. front: {
  49042. height: math.unit(15 + 8/12, "feet"),
  49043. weight: math.unit(1237, "kg"),
  49044. name: "Front",
  49045. image: {
  49046. source: "./media/characters/mia/front.svg",
  49047. extra: 1573/1446,
  49048. bottom: 58/1631
  49049. }
  49050. },
  49051. },
  49052. [
  49053. {
  49054. name: "Small",
  49055. height: math.unit(9 + 5/12, "feet")
  49056. },
  49057. {
  49058. name: "Normal",
  49059. height: math.unit(15 + 8/12, "feet"),
  49060. default: true
  49061. },
  49062. ]
  49063. ))
  49064. characterMakers.push(() => makeCharacter(
  49065. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49066. {
  49067. front: {
  49068. height: math.unit(10 + 6/12, "feet"),
  49069. weight: math.unit(1.3, "tons"),
  49070. name: "Front",
  49071. image: {
  49072. source: "./media/characters/mr-graves/front.svg",
  49073. extra: 1779/1695,
  49074. bottom: 198/1977
  49075. }
  49076. },
  49077. },
  49078. [
  49079. {
  49080. name: "Normal",
  49081. height: math.unit(10 + 6 /12, "feet"),
  49082. default: true
  49083. },
  49084. ]
  49085. ))
  49086. characterMakers.push(() => makeCharacter(
  49087. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49088. {
  49089. dressedFront: {
  49090. height: math.unit(5 + 8/12, "feet"),
  49091. weight: math.unit(125, "lb"),
  49092. name: "Dressed (Front)",
  49093. image: {
  49094. source: "./media/characters/jess/dressed-front.svg",
  49095. extra: 1176/1152,
  49096. bottom: 42/1218
  49097. }
  49098. },
  49099. dressedSide: {
  49100. height: math.unit(5 + 8/12, "feet"),
  49101. weight: math.unit(125, "lb"),
  49102. name: "Dressed (Side)",
  49103. image: {
  49104. source: "./media/characters/jess/dressed-side.svg",
  49105. extra: 1204/1190,
  49106. bottom: 6/1210
  49107. }
  49108. },
  49109. nudeFront: {
  49110. height: math.unit(5 + 8/12, "feet"),
  49111. weight: math.unit(125, "lb"),
  49112. name: "Nude (Front)",
  49113. image: {
  49114. source: "./media/characters/jess/nude-front.svg",
  49115. extra: 1176/1152,
  49116. bottom: 42/1218
  49117. }
  49118. },
  49119. nudeSide: {
  49120. height: math.unit(5 + 8/12, "feet"),
  49121. weight: math.unit(125, "lb"),
  49122. name: "Nude (Side)",
  49123. image: {
  49124. source: "./media/characters/jess/nude-side.svg",
  49125. extra: 1204/1190,
  49126. bottom: 6/1210
  49127. }
  49128. },
  49129. organsFront: {
  49130. height: math.unit(2.83799342105, "feet"),
  49131. name: "Organs (Front)",
  49132. image: {
  49133. source: "./media/characters/jess/organs-front.svg"
  49134. }
  49135. },
  49136. organsSide: {
  49137. height: math.unit(2.64225290474, "feet"),
  49138. name: "Organs (Side)",
  49139. image: {
  49140. source: "./media/characters/jess/organs-side.svg"
  49141. }
  49142. },
  49143. digestiveTractFront: {
  49144. height: math.unit(2.8106580871, "feet"),
  49145. name: "Digestive Tract (Front)",
  49146. image: {
  49147. source: "./media/characters/jess/digestive-tract-front.svg"
  49148. }
  49149. },
  49150. digestiveTractSide: {
  49151. height: math.unit(2.54365045014, "feet"),
  49152. name: "Digestive Tract (Side)",
  49153. image: {
  49154. source: "./media/characters/jess/digestive-tract-side.svg"
  49155. }
  49156. },
  49157. respiratorySystemFront: {
  49158. height: math.unit(1.11196233456, "feet"),
  49159. name: "Respiratory System (Front)",
  49160. image: {
  49161. source: "./media/characters/jess/respiratory-system-front.svg"
  49162. }
  49163. },
  49164. respiratorySystemSide: {
  49165. height: math.unit(0.89327966297, "feet"),
  49166. name: "Respiratory System (Side)",
  49167. image: {
  49168. source: "./media/characters/jess/respiratory-system-side.svg"
  49169. }
  49170. },
  49171. urinaryTractFront: {
  49172. height: math.unit(1.16126356186, "feet"),
  49173. name: "Urinary Tract (Front)",
  49174. image: {
  49175. source: "./media/characters/jess/urinary-tract-front.svg"
  49176. }
  49177. },
  49178. urinaryTractSide: {
  49179. height: math.unit(1.20910039627, "feet"),
  49180. name: "Urinary Tract (Side)",
  49181. image: {
  49182. source: "./media/characters/jess/urinary-tract-side.svg"
  49183. }
  49184. },
  49185. reproductiveOrgansFront: {
  49186. height: math.unit(0.48422591566, "feet"),
  49187. name: "Reproductive Organs (Front)",
  49188. image: {
  49189. source: "./media/characters/jess/reproductive-organs-front.svg"
  49190. }
  49191. },
  49192. reproductiveOrgansSide: {
  49193. height: math.unit(0.61553314481, "feet"),
  49194. name: "Reproductive Organs (Side)",
  49195. image: {
  49196. source: "./media/characters/jess/reproductive-organs-side.svg"
  49197. }
  49198. },
  49199. breastsFront: {
  49200. height: math.unit(0.47690395121, "feet"),
  49201. name: "Breasts (Front)",
  49202. image: {
  49203. source: "./media/characters/jess/breasts-front.svg"
  49204. }
  49205. },
  49206. breastsSide: {
  49207. height: math.unit(0.30556998307, "feet"),
  49208. name: "Breasts (Side)",
  49209. image: {
  49210. source: "./media/characters/jess/breasts-side.svg"
  49211. }
  49212. },
  49213. heartFront: {
  49214. height: math.unit(0.53011022622, "feet"),
  49215. name: "Heart (Front)",
  49216. image: {
  49217. source: "./media/characters/jess/heart-front.svg"
  49218. }
  49219. },
  49220. heartSide: {
  49221. height: math.unit(0.51790695213, "feet"),
  49222. name: "Heart (Side)",
  49223. image: {
  49224. source: "./media/characters/jess/heart-side.svg"
  49225. }
  49226. },
  49227. earsAndNoseFront: {
  49228. height: math.unit(0.29385483995, "feet"),
  49229. name: "Ears and Nose (Front)",
  49230. image: {
  49231. source: "./media/characters/jess/ears-and-nose-front.svg"
  49232. }
  49233. },
  49234. earsAndNoseSide: {
  49235. height: math.unit(0.18109658741, "feet"),
  49236. name: "Ears and Nose (Side)",
  49237. image: {
  49238. source: "./media/characters/jess/ears-and-nose-side.svg"
  49239. }
  49240. },
  49241. },
  49242. [
  49243. {
  49244. name: "Normal",
  49245. height: math.unit(5 + 8/12, "feet"),
  49246. default: true
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49252. {
  49253. front: {
  49254. height: math.unit(6, "feet"),
  49255. weight: math.unit(6.64467e-7, "grams"),
  49256. name: "Front",
  49257. image: {
  49258. source: "./media/characters/wimpering/front.svg",
  49259. extra: 597/587,
  49260. bottom: 34/631
  49261. }
  49262. },
  49263. },
  49264. [
  49265. {
  49266. name: "Micro",
  49267. height: math.unit(0.4, "mm"),
  49268. default: true
  49269. },
  49270. ]
  49271. ))
  49272. characterMakers.push(() => makeCharacter(
  49273. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49274. {
  49275. front: {
  49276. height: math.unit(5 + 2/12, "feet"),
  49277. weight: math.unit(110, "lb"),
  49278. name: "Front",
  49279. image: {
  49280. source: "./media/characters/keltre/front.svg",
  49281. extra: 1099/1057,
  49282. bottom: 22/1121
  49283. }
  49284. },
  49285. back: {
  49286. height: math.unit(5 + 2/12, "feet"),
  49287. weight: math.unit(110, "lb"),
  49288. name: "Back",
  49289. image: {
  49290. source: "./media/characters/keltre/back.svg",
  49291. extra: 1095/1053,
  49292. bottom: 17/1112
  49293. }
  49294. },
  49295. dressed: {
  49296. height: math.unit(5 + 2/12, "feet"),
  49297. weight: math.unit(110, "lb"),
  49298. name: "Dressed",
  49299. image: {
  49300. source: "./media/characters/keltre/dressed.svg",
  49301. extra: 1099/1057,
  49302. bottom: 22/1121
  49303. }
  49304. },
  49305. winter: {
  49306. height: math.unit(5 + 2/12, "feet"),
  49307. weight: math.unit(110, "lb"),
  49308. name: "Winter",
  49309. image: {
  49310. source: "./media/characters/keltre/winter.svg",
  49311. extra: 1099/1057,
  49312. bottom: 22/1121
  49313. }
  49314. },
  49315. head: {
  49316. height: math.unit(1.61 * 0.86, "feet"),
  49317. name: "Head",
  49318. image: {
  49319. source: "./media/characters/keltre/head.svg",
  49320. extra: 534/421,
  49321. bottom: 0/534
  49322. }
  49323. },
  49324. hand: {
  49325. height: math.unit(1.3 * 0.86, "feet"),
  49326. name: "Hand",
  49327. image: {
  49328. source: "./media/characters/keltre/hand.svg"
  49329. }
  49330. },
  49331. foot: {
  49332. height: math.unit(1.8 * 0.86, "feet"),
  49333. name: "Foot",
  49334. image: {
  49335. source: "./media/characters/keltre/foot.svg"
  49336. }
  49337. },
  49338. },
  49339. [
  49340. {
  49341. name: "Fine",
  49342. height: math.unit(1, "inch")
  49343. },
  49344. {
  49345. name: "Dimnutive",
  49346. height: math.unit(4, "inches")
  49347. },
  49348. {
  49349. name: "Tiny",
  49350. height: math.unit(1, "foot")
  49351. },
  49352. {
  49353. name: "Small",
  49354. height: math.unit(3, "feet")
  49355. },
  49356. {
  49357. name: "Normal",
  49358. height: math.unit(5 + 2/12, "feet"),
  49359. default: true
  49360. },
  49361. ]
  49362. ))
  49363. characterMakers.push(() => makeCharacter(
  49364. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49365. {
  49366. front: {
  49367. height: math.unit(6 + 2/12, "feet"),
  49368. name: "Front",
  49369. image: {
  49370. source: "./media/characters/nox/front.svg",
  49371. extra: 1917/1830,
  49372. bottom: 74/1991
  49373. }
  49374. },
  49375. back: {
  49376. height: math.unit(6 + 2/12, "feet"),
  49377. name: "Back",
  49378. image: {
  49379. source: "./media/characters/nox/back.svg",
  49380. extra: 1896/1815,
  49381. bottom: 21/1917
  49382. }
  49383. },
  49384. head: {
  49385. height: math.unit(1.1, "feet"),
  49386. name: "Head",
  49387. image: {
  49388. source: "./media/characters/nox/head.svg",
  49389. extra: 874/704,
  49390. bottom: 0/874
  49391. }
  49392. },
  49393. tattoo: {
  49394. height: math.unit(0.729, "feet"),
  49395. name: "Tattoo",
  49396. image: {
  49397. source: "./media/characters/nox/tattoo.svg"
  49398. }
  49399. },
  49400. },
  49401. [
  49402. {
  49403. name: "Normal",
  49404. height: math.unit(6 + 2/12, "feet")
  49405. },
  49406. {
  49407. name: "Gigamacro",
  49408. height: math.unit(2, "earths"),
  49409. default: true
  49410. },
  49411. {
  49412. name: "Cosmic",
  49413. height: math.unit(867, "yottameters")
  49414. },
  49415. ]
  49416. ))
  49417. characterMakers.push(() => makeCharacter(
  49418. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49419. {
  49420. front: {
  49421. height: math.unit(6, "feet"),
  49422. weight: math.unit(150, "lb"),
  49423. name: "Front",
  49424. image: {
  49425. source: "./media/characters/caspian/front.svg",
  49426. extra: 1443/1359,
  49427. bottom: 0/1443
  49428. }
  49429. },
  49430. back: {
  49431. height: math.unit(6, "feet"),
  49432. weight: math.unit(150, "lb"),
  49433. name: "Back",
  49434. image: {
  49435. source: "./media/characters/caspian/back.svg",
  49436. extra: 1379/1309,
  49437. bottom: 0/1379
  49438. }
  49439. },
  49440. head: {
  49441. height: math.unit(0.9, "feet"),
  49442. name: "Head",
  49443. image: {
  49444. source: "./media/characters/caspian/head.svg",
  49445. extra: 692/492,
  49446. bottom: 0/692
  49447. }
  49448. },
  49449. headAlt: {
  49450. height: math.unit(0.95, "feet"),
  49451. name: "Head (Alt)",
  49452. image: {
  49453. source: "./media/characters/caspian/head-alt.svg",
  49454. extra: 668/508,
  49455. bottom: 0/668
  49456. }
  49457. },
  49458. hand: {
  49459. height: math.unit(0.8, "feet"),
  49460. name: "Hand",
  49461. image: {
  49462. source: "./media/characters/caspian/hand.svg"
  49463. }
  49464. },
  49465. paw: {
  49466. height: math.unit(0.95, "feet"),
  49467. name: "Paw",
  49468. image: {
  49469. source: "./media/characters/caspian/paw.svg"
  49470. }
  49471. },
  49472. },
  49473. [
  49474. {
  49475. name: "Normal",
  49476. height: math.unit(162, "feet"),
  49477. default: true
  49478. },
  49479. ]
  49480. ))
  49481. characterMakers.push(() => makeCharacter(
  49482. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49483. {
  49484. front: {
  49485. height: math.unit(6, "feet"),
  49486. name: "Front",
  49487. image: {
  49488. source: "./media/characters/myra-aisling/front.svg",
  49489. extra: 1268/1166,
  49490. bottom: 73/1341
  49491. }
  49492. },
  49493. back: {
  49494. height: math.unit(6, "feet"),
  49495. name: "Back",
  49496. image: {
  49497. source: "./media/characters/myra-aisling/back.svg",
  49498. extra: 1249/1149,
  49499. bottom: 79/1328
  49500. }
  49501. },
  49502. dressed: {
  49503. height: math.unit(6, "feet"),
  49504. name: "Dressed",
  49505. image: {
  49506. source: "./media/characters/myra-aisling/dressed.svg",
  49507. extra: 1290/1189,
  49508. bottom: 47/1337
  49509. }
  49510. },
  49511. hand: {
  49512. height: math.unit(1.1, "feet"),
  49513. name: "Hand",
  49514. image: {
  49515. source: "./media/characters/myra-aisling/hand.svg"
  49516. }
  49517. },
  49518. paw: {
  49519. height: math.unit(1.23, "feet"),
  49520. name: "Paw",
  49521. image: {
  49522. source: "./media/characters/myra-aisling/paw.svg"
  49523. }
  49524. },
  49525. },
  49526. [
  49527. {
  49528. name: "Normal",
  49529. height: math.unit(160, "feet"),
  49530. default: true
  49531. },
  49532. ]
  49533. ))
  49534. characterMakers.push(() => makeCharacter(
  49535. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49536. {
  49537. front: {
  49538. height: math.unit(6, "feet"),
  49539. name: "Front",
  49540. image: {
  49541. source: "./media/characters/tenley-sidero/front.svg",
  49542. extra: 1365/1276,
  49543. bottom: 47/1412
  49544. }
  49545. },
  49546. back: {
  49547. height: math.unit(6, "feet"),
  49548. name: "Back",
  49549. image: {
  49550. source: "./media/characters/tenley-sidero/back.svg",
  49551. extra: 1383/1283,
  49552. bottom: 35/1418
  49553. }
  49554. },
  49555. dressed: {
  49556. height: math.unit(6, "feet"),
  49557. name: "Dressed",
  49558. image: {
  49559. source: "./media/characters/tenley-sidero/dressed.svg",
  49560. extra: 1364/1275,
  49561. bottom: 42/1406
  49562. }
  49563. },
  49564. head: {
  49565. height: math.unit(1.47, "feet"),
  49566. name: "Head",
  49567. image: {
  49568. source: "./media/characters/tenley-sidero/head.svg",
  49569. extra: 610/490,
  49570. bottom: 0/610
  49571. }
  49572. },
  49573. },
  49574. [
  49575. {
  49576. name: "Normal",
  49577. height: math.unit(154, "feet"),
  49578. default: true
  49579. },
  49580. ]
  49581. ))
  49582. characterMakers.push(() => makeCharacter(
  49583. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49584. {
  49585. front: {
  49586. height: math.unit(5, "inches"),
  49587. name: "Front",
  49588. image: {
  49589. source: "./media/characters/mallory/front.svg",
  49590. extra: 1919/1678,
  49591. bottom: 29/1948
  49592. }
  49593. },
  49594. hand: {
  49595. height: math.unit(0.73, "inches"),
  49596. name: "Hand",
  49597. image: {
  49598. source: "./media/characters/mallory/hand.svg"
  49599. }
  49600. },
  49601. paw: {
  49602. height: math.unit(0.68, "inches"),
  49603. name: "Paw",
  49604. image: {
  49605. source: "./media/characters/mallory/paw.svg"
  49606. }
  49607. },
  49608. },
  49609. [
  49610. {
  49611. name: "Small",
  49612. height: math.unit(5, "inches"),
  49613. default: true
  49614. },
  49615. ]
  49616. ))
  49617. characterMakers.push(() => makeCharacter(
  49618. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49619. {
  49620. naked: {
  49621. height: math.unit(6, "feet"),
  49622. name: "Naked",
  49623. image: {
  49624. source: "./media/characters/mab/naked.svg",
  49625. extra: 1855/1757,
  49626. bottom: 208/2063
  49627. }
  49628. },
  49629. outside: {
  49630. height: math.unit(6, "feet"),
  49631. name: "Outside",
  49632. image: {
  49633. source: "./media/characters/mab/outside.svg",
  49634. extra: 1855/1757,
  49635. bottom: 208/2063
  49636. }
  49637. },
  49638. party: {
  49639. height: math.unit(6, "feet"),
  49640. name: "Party",
  49641. image: {
  49642. source: "./media/characters/mab/party.svg",
  49643. extra: 1855/1757,
  49644. bottom: 208/2063
  49645. }
  49646. },
  49647. },
  49648. [
  49649. {
  49650. name: "Normal",
  49651. height: math.unit(165, "feet"),
  49652. default: true
  49653. },
  49654. ]
  49655. ))
  49656. characterMakers.push(() => makeCharacter(
  49657. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49658. {
  49659. feral: {
  49660. height: math.unit(12, "feet"),
  49661. weight: math.unit(20000, "lb"),
  49662. name: "Side",
  49663. image: {
  49664. source: "./media/characters/winter/feral.svg",
  49665. extra: 1286/943,
  49666. bottom: 112/1398
  49667. },
  49668. form: "feral",
  49669. default: true
  49670. },
  49671. feralNsfw: {
  49672. height: math.unit(12, "feet"),
  49673. weight: math.unit(20000, "lb"),
  49674. name: "Side (NSFW)",
  49675. image: {
  49676. source: "./media/characters/winter/feral-nsfw.svg",
  49677. extra: 1286/943,
  49678. bottom: 112/1398
  49679. },
  49680. form: "feral"
  49681. },
  49682. dick: {
  49683. height: math.unit(3.79, "feet"),
  49684. name: "Dick",
  49685. image: {
  49686. source: "./media/characters/winter/dick.svg"
  49687. },
  49688. form: "feral"
  49689. },
  49690. anthro: {
  49691. height: math.unit(12, "feet"),
  49692. weight: math.unit(10, "tons"),
  49693. name: "Anthro",
  49694. image: {
  49695. source: "./media/characters/winter/anthro.svg",
  49696. extra: 1701/1553,
  49697. bottom: 64/1765
  49698. },
  49699. form: "anthro",
  49700. default: true
  49701. },
  49702. },
  49703. [
  49704. {
  49705. name: "Big",
  49706. height: math.unit(12, "feet"),
  49707. default: true,
  49708. form: "feral"
  49709. },
  49710. {
  49711. name: "Big",
  49712. height: math.unit(12, "feet"),
  49713. default: true,
  49714. form: "anthro"
  49715. },
  49716. ],
  49717. {
  49718. "feral": {
  49719. name: "Feral",
  49720. default: true
  49721. },
  49722. "anthro": {
  49723. name: "Anthro"
  49724. }
  49725. }
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49729. {
  49730. front: {
  49731. height: math.unit(4.1, "inches"),
  49732. name: "Front",
  49733. image: {
  49734. source: "./media/characters/alto/front.svg",
  49735. extra: 736/627,
  49736. bottom: 90/826
  49737. }
  49738. },
  49739. },
  49740. [
  49741. {
  49742. name: "Normal",
  49743. height: math.unit(4.1, "inches"),
  49744. default: true
  49745. },
  49746. ]
  49747. ))
  49748. characterMakers.push(() => makeCharacter(
  49749. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49750. {
  49751. sitting: {
  49752. height: math.unit(3, "feet"),
  49753. name: "Sitting",
  49754. image: {
  49755. source: "./media/characters/ratstrid-v/sitting.svg",
  49756. extra: 355/310,
  49757. bottom: 136/491
  49758. }
  49759. },
  49760. },
  49761. [
  49762. {
  49763. name: "Normal",
  49764. height: math.unit(3, "feet"),
  49765. default: true
  49766. },
  49767. ]
  49768. ))
  49769. characterMakers.push(() => makeCharacter(
  49770. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49771. {
  49772. back: {
  49773. height: math.unit(6, "feet"),
  49774. weight: math.unit(350, "lb"),
  49775. name: "Back",
  49776. image: {
  49777. source: "./media/characters/siz/back.svg",
  49778. extra: 1449/1274,
  49779. bottom: 13/1462
  49780. }
  49781. },
  49782. },
  49783. [
  49784. {
  49785. name: "Over-Overcompressed",
  49786. height: math.unit(8, "feet")
  49787. },
  49788. {
  49789. name: "Overcompressed",
  49790. height: math.unit(32, "feet")
  49791. },
  49792. {
  49793. name: "Compressed",
  49794. height: math.unit(128, "feet"),
  49795. default: true
  49796. },
  49797. {
  49798. name: "Half-Compressed",
  49799. height: math.unit(512, "feet")
  49800. },
  49801. {
  49802. name: "Quarter-Compressed",
  49803. height: math.unit(2048, "feet")
  49804. },
  49805. {
  49806. name: "Uncompressed?",
  49807. height: math.unit(8192, "feet")
  49808. },
  49809. ]
  49810. ))
  49811. characterMakers.push(() => makeCharacter(
  49812. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49813. {
  49814. front: {
  49815. height: math.unit(5 + 9/12, "feet"),
  49816. weight: math.unit(150, "lb"),
  49817. name: "Front",
  49818. image: {
  49819. source: "./media/characters/ven/front.svg",
  49820. extra: 1372/1320,
  49821. bottom: 73/1445
  49822. }
  49823. },
  49824. side: {
  49825. height: math.unit(5 + 9/12, "feet"),
  49826. weight: math.unit(1150, "lb"),
  49827. name: "Side",
  49828. image: {
  49829. source: "./media/characters/ven/side.svg",
  49830. extra: 1119/1070,
  49831. bottom: 42/1161
  49832. },
  49833. default: true
  49834. },
  49835. },
  49836. [
  49837. {
  49838. name: "Normal",
  49839. height: math.unit(5 + 9/12, "feet"),
  49840. default: true
  49841. },
  49842. ]
  49843. ))
  49844. characterMakers.push(() => makeCharacter(
  49845. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49846. {
  49847. front: {
  49848. height: math.unit(12, "feet"),
  49849. weight: math.unit(1000, "kg"),
  49850. name: "Front",
  49851. image: {
  49852. source: "./media/characters/maple/front.svg",
  49853. extra: 1193/1081,
  49854. bottom: 22/1215
  49855. }
  49856. },
  49857. },
  49858. [
  49859. {
  49860. name: "Compressed",
  49861. height: math.unit(7, "feet")
  49862. },
  49863. {
  49864. name: "Normal",
  49865. height: math.unit(12, "feet"),
  49866. default: true
  49867. },
  49868. ]
  49869. ))
  49870. characterMakers.push(() => makeCharacter(
  49871. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49872. {
  49873. front: {
  49874. height: math.unit(9, "feet"),
  49875. weight: math.unit(1500, "lb"),
  49876. name: "Front",
  49877. image: {
  49878. source: "./media/characters/nora/front.svg",
  49879. extra: 1348/1286,
  49880. bottom: 218/1566
  49881. }
  49882. },
  49883. erect: {
  49884. height: math.unit(9, "feet"),
  49885. weight: math.unit(11500, "lb"),
  49886. name: "Erect",
  49887. image: {
  49888. source: "./media/characters/nora/erect.svg",
  49889. extra: 1488/1433,
  49890. bottom: 133/1621
  49891. }
  49892. },
  49893. },
  49894. [
  49895. {
  49896. name: "Normal",
  49897. height: math.unit(9, "feet"),
  49898. default: true
  49899. },
  49900. ]
  49901. ))
  49902. characterMakers.push(() => makeCharacter(
  49903. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49904. {
  49905. front: {
  49906. height: math.unit(25, "feet"),
  49907. weight: math.unit(27500, "lb"),
  49908. name: "Front",
  49909. image: {
  49910. source: "./media/characters/north-caudin/front.svg",
  49911. extra: 1184/1082,
  49912. bottom: 23/1207
  49913. }
  49914. },
  49915. },
  49916. [
  49917. {
  49918. name: "Compressed",
  49919. height: math.unit(10, "feet")
  49920. },
  49921. {
  49922. name: "Normal",
  49923. height: math.unit(25, "feet"),
  49924. default: true
  49925. },
  49926. ]
  49927. ))
  49928. characterMakers.push(() => makeCharacter(
  49929. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49930. {
  49931. front: {
  49932. height: math.unit(9, "feet"),
  49933. weight: math.unit(1250, "lb"),
  49934. name: "Front",
  49935. image: {
  49936. source: "./media/characters/merrian/front.svg",
  49937. extra: 2393/2304,
  49938. bottom: 40/2433
  49939. }
  49940. },
  49941. },
  49942. [
  49943. {
  49944. name: "Normal",
  49945. height: math.unit(9, "feet"),
  49946. default: true
  49947. },
  49948. ]
  49949. ))
  49950. characterMakers.push(() => makeCharacter(
  49951. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49952. {
  49953. front: {
  49954. height: math.unit(9, "feet"),
  49955. weight: math.unit(1000, "lb"),
  49956. name: "Front",
  49957. image: {
  49958. source: "./media/characters/hazel/front.svg",
  49959. extra: 2351/2298,
  49960. bottom: 38/2389
  49961. }
  49962. },
  49963. },
  49964. [
  49965. {
  49966. name: "Normal",
  49967. height: math.unit(9, "feet"),
  49968. default: true
  49969. },
  49970. ]
  49971. ))
  49972. characterMakers.push(() => makeCharacter(
  49973. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49974. {
  49975. front: {
  49976. height: math.unit(13, "feet"),
  49977. weight: math.unit(3200, "lb"),
  49978. name: "Front",
  49979. image: {
  49980. source: "./media/characters/emma/front.svg",
  49981. extra: 2263/2029,
  49982. bottom: 68/2331
  49983. }
  49984. },
  49985. },
  49986. [
  49987. {
  49988. name: "Normal",
  49989. height: math.unit(13, "feet"),
  49990. default: true
  49991. },
  49992. ]
  49993. ))
  49994. characterMakers.push(() => makeCharacter(
  49995. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49996. {
  49997. front: {
  49998. height: math.unit(11 + 9/12, "feet"),
  49999. weight: math.unit(2500, "lb"),
  50000. name: "Front",
  50001. image: {
  50002. source: "./media/characters/ilumina/front.svg",
  50003. extra: 2248/2209,
  50004. bottom: 164/2412
  50005. }
  50006. },
  50007. },
  50008. [
  50009. {
  50010. name: "Normal",
  50011. height: math.unit(11 + 9/12, "feet"),
  50012. default: true
  50013. },
  50014. ]
  50015. ))
  50016. characterMakers.push(() => makeCharacter(
  50017. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50018. {
  50019. front: {
  50020. height: math.unit(8 + 10/12, "feet"),
  50021. weight: math.unit(1350, "lb"),
  50022. name: "Front",
  50023. image: {
  50024. source: "./media/characters/moonshine/front.svg",
  50025. extra: 2395/2288,
  50026. bottom: 40/2435
  50027. }
  50028. },
  50029. },
  50030. [
  50031. {
  50032. name: "Normal",
  50033. height: math.unit(8 + 10/12, "feet"),
  50034. default: true
  50035. },
  50036. ]
  50037. ))
  50038. characterMakers.push(() => makeCharacter(
  50039. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50040. {
  50041. front: {
  50042. height: math.unit(14, "feet"),
  50043. weight: math.unit(3400, "lb"),
  50044. name: "Front",
  50045. image: {
  50046. source: "./media/characters/aletia/front.svg",
  50047. extra: 1185/1052,
  50048. bottom: 21/1206
  50049. }
  50050. },
  50051. },
  50052. [
  50053. {
  50054. name: "Compressed",
  50055. height: math.unit(8, "feet")
  50056. },
  50057. {
  50058. name: "Normal",
  50059. height: math.unit(14, "feet"),
  50060. default: true
  50061. },
  50062. ]
  50063. ))
  50064. characterMakers.push(() => makeCharacter(
  50065. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50066. {
  50067. front: {
  50068. height: math.unit(17, "feet"),
  50069. weight: math.unit(6500, "lb"),
  50070. name: "Front",
  50071. image: {
  50072. source: "./media/characters/deidra/front.svg",
  50073. extra: 1201/1081,
  50074. bottom: 16/1217
  50075. }
  50076. },
  50077. },
  50078. [
  50079. {
  50080. name: "Compressed",
  50081. height: math.unit(9 + 6/12, "feet")
  50082. },
  50083. {
  50084. name: "Normal",
  50085. height: math.unit(17, "feet"),
  50086. default: true
  50087. },
  50088. ]
  50089. ))
  50090. characterMakers.push(() => makeCharacter(
  50091. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50092. {
  50093. front: {
  50094. height: math.unit(7 + 4/12, "feet"),
  50095. weight: math.unit(280, "lb"),
  50096. name: "Front",
  50097. image: {
  50098. source: "./media/characters/freki-yrmori/front.svg",
  50099. extra: 1286/1182,
  50100. bottom: 29/1315
  50101. }
  50102. },
  50103. maw: {
  50104. height: math.unit(0.9, "feet"),
  50105. name: "Maw",
  50106. image: {
  50107. source: "./media/characters/freki-yrmori/maw.svg"
  50108. }
  50109. },
  50110. },
  50111. [
  50112. {
  50113. name: "Normal",
  50114. height: math.unit(7 + 4/12, "feet"),
  50115. default: true
  50116. },
  50117. {
  50118. name: "Macro",
  50119. height: math.unit(38.5, "meters")
  50120. },
  50121. ]
  50122. ))
  50123. characterMakers.push(() => makeCharacter(
  50124. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50125. {
  50126. side: {
  50127. height: math.unit(47.2, "meters"),
  50128. weight: math.unit(10000, "tons"),
  50129. name: "Side",
  50130. image: {
  50131. source: "./media/characters/aetherios/side.svg",
  50132. extra: 2363/642,
  50133. bottom: 221/2584
  50134. }
  50135. },
  50136. top: {
  50137. height: math.unit(240, "meters"),
  50138. weight: math.unit(10000, "tons"),
  50139. name: "Top",
  50140. image: {
  50141. source: "./media/characters/aetherios/top.svg"
  50142. }
  50143. },
  50144. bottom: {
  50145. height: math.unit(240, "meters"),
  50146. weight: math.unit(10000, "tons"),
  50147. name: "Bottom",
  50148. image: {
  50149. source: "./media/characters/aetherios/bottom.svg"
  50150. }
  50151. },
  50152. head: {
  50153. height: math.unit(38.6, "meters"),
  50154. name: "Head",
  50155. image: {
  50156. source: "./media/characters/aetherios/head.svg",
  50157. extra: 1335/1112,
  50158. bottom: 0/1335
  50159. }
  50160. },
  50161. front: {
  50162. height: math.unit(29, "meters"),
  50163. name: "Front",
  50164. image: {
  50165. source: "./media/characters/aetherios/front.svg",
  50166. extra: 1266/953,
  50167. bottom: 158/1424
  50168. }
  50169. },
  50170. maw: {
  50171. height: math.unit(16.37, "meters"),
  50172. name: "Maw",
  50173. image: {
  50174. source: "./media/characters/aetherios/maw.svg",
  50175. extra: 748/637,
  50176. bottom: 0/748
  50177. },
  50178. extraAttributes: {
  50179. preyCapacity: {
  50180. name: "Capacity",
  50181. power: 3,
  50182. type: "volume",
  50183. base: math.unit(1000, "people")
  50184. },
  50185. tongueSize: {
  50186. name: "Tongue Size",
  50187. power: 2,
  50188. type: "area",
  50189. base: math.unit(21, "m^2")
  50190. }
  50191. }
  50192. },
  50193. forepaw: {
  50194. height: math.unit(18, "meters"),
  50195. name: "Forepaw",
  50196. image: {
  50197. source: "./media/characters/aetherios/forepaw.svg"
  50198. }
  50199. },
  50200. hindpaw: {
  50201. height: math.unit(23, "meters"),
  50202. name: "Hindpaw",
  50203. image: {
  50204. source: "./media/characters/aetherios/hindpaw.svg"
  50205. }
  50206. },
  50207. genitals: {
  50208. height: math.unit(42, "meters"),
  50209. name: "Genitals",
  50210. image: {
  50211. source: "./media/characters/aetherios/genitals.svg"
  50212. }
  50213. },
  50214. },
  50215. [
  50216. {
  50217. name: "Normal",
  50218. height: math.unit(47.2, "meters"),
  50219. default: true
  50220. },
  50221. {
  50222. name: "Macro",
  50223. height: math.unit(160, "meters")
  50224. },
  50225. {
  50226. name: "Mega",
  50227. height: math.unit(1.87, "km")
  50228. },
  50229. {
  50230. name: "Giga",
  50231. height: math.unit(40000, "km")
  50232. },
  50233. {
  50234. name: "Stellar",
  50235. height: math.unit(158000000, "km")
  50236. },
  50237. {
  50238. name: "Cosmic",
  50239. height: math.unit(9.46e12, "km")
  50240. },
  50241. ]
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50245. {
  50246. front: {
  50247. height: math.unit(5 + 4/12, "feet"),
  50248. weight: math.unit(80, "lb"),
  50249. name: "Front",
  50250. image: {
  50251. source: "./media/characters/mizu-gieeg/front.svg",
  50252. extra: 850/709,
  50253. bottom: 52/902
  50254. }
  50255. },
  50256. back: {
  50257. height: math.unit(5 + 4/12, "feet"),
  50258. weight: math.unit(80, "lb"),
  50259. name: "Back",
  50260. image: {
  50261. source: "./media/characters/mizu-gieeg/back.svg",
  50262. extra: 882/745,
  50263. bottom: 25/907
  50264. }
  50265. },
  50266. },
  50267. [
  50268. {
  50269. name: "Normal",
  50270. height: math.unit(5 + 4/12, "feet"),
  50271. default: true
  50272. },
  50273. ]
  50274. ))
  50275. characterMakers.push(() => makeCharacter(
  50276. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50277. {
  50278. front: {
  50279. height: math.unit(6, "feet"),
  50280. name: "Front",
  50281. image: {
  50282. source: "./media/characters/roselle-st-papier/front.svg",
  50283. extra: 1430/1280,
  50284. bottom: 37/1467
  50285. }
  50286. },
  50287. back: {
  50288. height: math.unit(6, "feet"),
  50289. name: "Back",
  50290. image: {
  50291. source: "./media/characters/roselle-st-papier/back.svg",
  50292. extra: 1491/1296,
  50293. bottom: 23/1514
  50294. }
  50295. },
  50296. ear: {
  50297. height: math.unit(1.26, "feet"),
  50298. name: "Ear",
  50299. image: {
  50300. source: "./media/characters/roselle-st-papier/ear.svg"
  50301. }
  50302. },
  50303. },
  50304. [
  50305. {
  50306. name: "Normal",
  50307. height: math.unit(150, "feet"),
  50308. default: true
  50309. },
  50310. ]
  50311. ))
  50312. characterMakers.push(() => makeCharacter(
  50313. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50314. {
  50315. front: {
  50316. height: math.unit(1, "inches"),
  50317. name: "Front",
  50318. image: {
  50319. source: "./media/characters/valargent/front.svg",
  50320. extra: 1825/1694,
  50321. bottom: 62/1887
  50322. }
  50323. },
  50324. back: {
  50325. height: math.unit(1, "inches"),
  50326. name: "Back",
  50327. image: {
  50328. source: "./media/characters/valargent/back.svg",
  50329. extra: 1775/1682,
  50330. bottom: 88/1863
  50331. }
  50332. },
  50333. },
  50334. [
  50335. {
  50336. name: "Micro",
  50337. height: math.unit(1, "inch"),
  50338. default: true
  50339. },
  50340. ]
  50341. ))
  50342. characterMakers.push(() => makeCharacter(
  50343. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50344. {
  50345. front: {
  50346. height: math.unit(3.4, "meters"),
  50347. name: "Front",
  50348. image: {
  50349. source: "./media/characters/zarina/front.svg",
  50350. extra: 1733/1425,
  50351. bottom: 93/1826
  50352. }
  50353. },
  50354. squatting: {
  50355. height: math.unit(2.14, "meters"),
  50356. name: "Squatting",
  50357. image: {
  50358. source: "./media/characters/zarina/squatting.svg",
  50359. extra: 1073/788,
  50360. bottom: 63/1136
  50361. }
  50362. },
  50363. back: {
  50364. height: math.unit(2.14, "meters"),
  50365. name: "Back",
  50366. image: {
  50367. source: "./media/characters/zarina/back.svg",
  50368. extra: 1128/885,
  50369. bottom: 0/1128
  50370. }
  50371. },
  50372. },
  50373. [
  50374. {
  50375. name: "Normal",
  50376. height: math.unit(3.4, "meters"),
  50377. default: true
  50378. },
  50379. {
  50380. name: "Big",
  50381. height: math.unit(5, "meters")
  50382. },
  50383. {
  50384. name: "Macro",
  50385. height: math.unit(110, "meters")
  50386. },
  50387. ]
  50388. ))
  50389. characterMakers.push(() => makeCharacter(
  50390. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50391. {
  50392. front: {
  50393. height: math.unit(7, "feet"),
  50394. name: "Front",
  50395. image: {
  50396. source: "./media/characters/ventus-astro-fox/front.svg",
  50397. extra: 1792/1623,
  50398. bottom: 28/1820
  50399. }
  50400. },
  50401. back: {
  50402. height: math.unit(7, "feet"),
  50403. name: "Back",
  50404. image: {
  50405. source: "./media/characters/ventus-astro-fox/back.svg",
  50406. extra: 1789/1620,
  50407. bottom: 31/1820
  50408. }
  50409. },
  50410. outfit: {
  50411. height: math.unit(7, "feet"),
  50412. name: "Outfit",
  50413. image: {
  50414. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50415. extra: 1054/925,
  50416. bottom: 15/1069
  50417. }
  50418. },
  50419. head: {
  50420. height: math.unit(1.12, "feet"),
  50421. name: "Head",
  50422. image: {
  50423. source: "./media/characters/ventus-astro-fox/head.svg",
  50424. extra: 866/504,
  50425. bottom: 0/866
  50426. }
  50427. },
  50428. hand: {
  50429. height: math.unit(1, "feet"),
  50430. name: "Hand",
  50431. image: {
  50432. source: "./media/characters/ventus-astro-fox/hand.svg"
  50433. }
  50434. },
  50435. paw: {
  50436. height: math.unit(1.5, "feet"),
  50437. name: "Paw",
  50438. image: {
  50439. source: "./media/characters/ventus-astro-fox/paw.svg"
  50440. }
  50441. },
  50442. },
  50443. [
  50444. {
  50445. name: "Normal",
  50446. height: math.unit(7, "feet"),
  50447. default: true
  50448. },
  50449. {
  50450. name: "Macro",
  50451. height: math.unit(200, "feet")
  50452. },
  50453. {
  50454. name: "Cosmic",
  50455. height: math.unit(3, "universes")
  50456. },
  50457. ]
  50458. ))
  50459. characterMakers.push(() => makeCharacter(
  50460. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50461. {
  50462. front: {
  50463. height: math.unit(3, "meters"),
  50464. weight: math.unit(7000, "lb"),
  50465. name: "Front",
  50466. image: {
  50467. source: "./media/characters/core-t/front.svg",
  50468. extra: 5729/4941,
  50469. bottom: 1129/6858
  50470. }
  50471. },
  50472. },
  50473. [
  50474. {
  50475. name: "Big",
  50476. height: math.unit(3, "meters"),
  50477. default: true
  50478. },
  50479. ]
  50480. ))
  50481. characterMakers.push(() => makeCharacter(
  50482. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50483. {
  50484. normal: {
  50485. height: math.unit(6 + 6/12, "feet"),
  50486. weight: math.unit(275, "lb"),
  50487. name: "Front",
  50488. image: {
  50489. source: "./media/characters/cadbunny/normal.svg",
  50490. extra: 1129/947,
  50491. bottom: 93/1222
  50492. },
  50493. default: true,
  50494. form: "normal"
  50495. },
  50496. gigantamax: {
  50497. height: math.unit(26, "feet"),
  50498. weight: math.unit(16000, "lb"),
  50499. name: "Front",
  50500. image: {
  50501. source: "./media/characters/cadbunny/gigantamax.svg",
  50502. extra: 1133/944,
  50503. bottom: 90/1223
  50504. },
  50505. default: true,
  50506. form: "gigantamax"
  50507. },
  50508. },
  50509. [
  50510. {
  50511. name: "Normal",
  50512. height: math.unit(6 + 6/12, "feet"),
  50513. default: true,
  50514. form: "normal"
  50515. },
  50516. {
  50517. name: "Small",
  50518. height: math.unit(26, "feet"),
  50519. default: true,
  50520. form: "gigantamax"
  50521. },
  50522. {
  50523. name: "Large",
  50524. height: math.unit(78, "feet"),
  50525. form: "gigantamax"
  50526. },
  50527. ],
  50528. {
  50529. "normal": {
  50530. name: "Normal",
  50531. default: true
  50532. },
  50533. "gigantamax": {
  50534. name: "Gigantamax"
  50535. }
  50536. }
  50537. ))
  50538. characterMakers.push(() => makeCharacter(
  50539. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50540. {
  50541. anthroFront: {
  50542. height: math.unit(8, "feet"),
  50543. weight: math.unit(300, "lb"),
  50544. name: "Front",
  50545. image: {
  50546. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50547. extra: 1272/1176,
  50548. bottom: 53/1325
  50549. },
  50550. form: "anthro",
  50551. default: true
  50552. },
  50553. feralSide: {
  50554. height: math.unit(4, "feet"),
  50555. weight: math.unit(250, "lb"),
  50556. name: "Side",
  50557. image: {
  50558. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50559. extra: 731/621,
  50560. bottom: 0/731
  50561. },
  50562. form: "feral",
  50563. default: true
  50564. },
  50565. },
  50566. [
  50567. {
  50568. name: "Regular",
  50569. height: math.unit(8, "feet"),
  50570. form: "anthro"
  50571. },
  50572. {
  50573. name: "Macro",
  50574. height: math.unit(250, "feet"),
  50575. form: "anthro",
  50576. default: true
  50577. },
  50578. {
  50579. name: "Regular",
  50580. height: math.unit(4, "feet"),
  50581. form: "feral"
  50582. },
  50583. {
  50584. name: "Macro",
  50585. height: math.unit(125, "feet"),
  50586. form: "feral",
  50587. default: true
  50588. },
  50589. ],
  50590. {
  50591. "anthro": {
  50592. name: "Anthro",
  50593. default: true
  50594. },
  50595. "feral": {
  50596. name: "Feral",
  50597. },
  50598. }
  50599. ))
  50600. characterMakers.push(() => makeCharacter(
  50601. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50602. {
  50603. front: {
  50604. height: math.unit(11 + 10/12, "feet"),
  50605. weight: math.unit(1587, "kg"),
  50606. name: "Front",
  50607. image: {
  50608. source: "./media/characters/maple-javira-dragon/front.svg",
  50609. extra: 1136/744,
  50610. bottom: 73/1209
  50611. }
  50612. },
  50613. side: {
  50614. height: math.unit(11 + 10/12, "feet"),
  50615. weight: math.unit(1587, "kg"),
  50616. name: "Side",
  50617. image: {
  50618. source: "./media/characters/maple-javira-dragon/side.svg",
  50619. extra: 712/505,
  50620. bottom: 17/729
  50621. }
  50622. },
  50623. head: {
  50624. height: math.unit(8.05, "feet"),
  50625. name: "Head",
  50626. image: {
  50627. source: "./media/characters/maple-javira-dragon/head.svg",
  50628. extra: 1420/1344,
  50629. bottom: 0/1420
  50630. }
  50631. },
  50632. },
  50633. [
  50634. {
  50635. name: "Normal",
  50636. height: math.unit(11 + 10/12, "feet"),
  50637. default: true
  50638. },
  50639. ]
  50640. ))
  50641. characterMakers.push(() => makeCharacter(
  50642. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50643. {
  50644. front: {
  50645. height: math.unit(117, "cm"),
  50646. weight: math.unit(50, "kg"),
  50647. name: "Front",
  50648. image: {
  50649. source: "./media/characters/sonia-wyverntail/front.svg",
  50650. extra: 708/592,
  50651. bottom: 25/733
  50652. }
  50653. },
  50654. },
  50655. [
  50656. {
  50657. name: "Normal",
  50658. height: math.unit(117, "cm"),
  50659. default: true
  50660. },
  50661. ]
  50662. ))
  50663. characterMakers.push(() => makeCharacter(
  50664. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50665. {
  50666. front: {
  50667. height: math.unit(6 + 5/12, "feet"),
  50668. name: "Front",
  50669. image: {
  50670. source: "./media/characters/micah/front.svg",
  50671. extra: 1758/1546,
  50672. bottom: 214/1972
  50673. }
  50674. },
  50675. },
  50676. [
  50677. {
  50678. name: "Normal",
  50679. height: math.unit(6 + 5/12, "feet"),
  50680. default: true
  50681. },
  50682. ]
  50683. ))
  50684. characterMakers.push(() => makeCharacter(
  50685. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50686. {
  50687. front: {
  50688. height: math.unit(5 + 10/12, "feet"),
  50689. weight: math.unit(220, "lb"),
  50690. name: "Front",
  50691. image: {
  50692. source: "./media/characters/zarya/front.svg",
  50693. extra: 593/572,
  50694. bottom: 50/643
  50695. }
  50696. },
  50697. back: {
  50698. height: math.unit(5 + 10/12, "feet"),
  50699. weight: math.unit(220, "lb"),
  50700. name: "Back",
  50701. image: {
  50702. source: "./media/characters/zarya/back.svg",
  50703. extra: 603/582,
  50704. bottom: 38/641
  50705. }
  50706. },
  50707. },
  50708. [
  50709. {
  50710. name: "Normal",
  50711. height: math.unit(5 + 10/12, "feet"),
  50712. default: true
  50713. },
  50714. ]
  50715. ))
  50716. characterMakers.push(() => makeCharacter(
  50717. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50718. {
  50719. front: {
  50720. height: math.unit(7.5, "feet"),
  50721. name: "Front",
  50722. image: {
  50723. source: "./media/characters/sven-hatisson/front.svg",
  50724. extra: 917/857,
  50725. bottom: 42/959
  50726. }
  50727. },
  50728. back: {
  50729. height: math.unit(7.5, "feet"),
  50730. name: "Back",
  50731. image: {
  50732. source: "./media/characters/sven-hatisson/back.svg",
  50733. extra: 903/856,
  50734. bottom: 15/918
  50735. }
  50736. },
  50737. },
  50738. [
  50739. {
  50740. name: "Base Height",
  50741. height: math.unit(7.5, "feet")
  50742. },
  50743. {
  50744. name: "Usual Height",
  50745. height: math.unit(13.5, "feet"),
  50746. default: true
  50747. },
  50748. {
  50749. name: "Smaller Macro",
  50750. height: math.unit(85, "feet")
  50751. },
  50752. {
  50753. name: "Moderate Macro",
  50754. height: math.unit(320, "feet")
  50755. },
  50756. {
  50757. name: "Large Macro",
  50758. height: math.unit(1000, "feet")
  50759. },
  50760. {
  50761. name: "Largest Size",
  50762. height: math.unit(2, "miles")
  50763. },
  50764. ]
  50765. ))
  50766. characterMakers.push(() => makeCharacter(
  50767. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50768. {
  50769. side: {
  50770. height: math.unit(1.8, "meters"),
  50771. weight: math.unit(275, "kg"),
  50772. name: "Side",
  50773. image: {
  50774. source: "./media/characters/terra/side.svg",
  50775. extra: 1273/1147,
  50776. bottom: 0/1273
  50777. }
  50778. },
  50779. },
  50780. [
  50781. {
  50782. name: "Normal",
  50783. height: math.unit(16.2, "meters"),
  50784. default: true
  50785. },
  50786. ]
  50787. ))
  50788. characterMakers.push(() => makeCharacter(
  50789. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50790. {
  50791. borzoiFront: {
  50792. height: math.unit(6 + 9/12, "feet"),
  50793. name: "Front",
  50794. image: {
  50795. source: "./media/characters/rae/borzoi-front.svg",
  50796. extra: 1161/1098,
  50797. bottom: 31/1192
  50798. },
  50799. form: "borzoi",
  50800. default: true
  50801. },
  50802. werewolfFront: {
  50803. height: math.unit(8 + 7/12, "feet"),
  50804. name: "Front",
  50805. image: {
  50806. source: "./media/characters/rae/werewolf-front.svg",
  50807. extra: 1411/1334,
  50808. bottom: 127/1538
  50809. },
  50810. form: "werewolf",
  50811. default: true
  50812. },
  50813. },
  50814. [
  50815. {
  50816. name: "Normal",
  50817. height: math.unit(6 + 9/12, "feet"),
  50818. default: true,
  50819. form: "borzoi"
  50820. },
  50821. {
  50822. name: "Normal",
  50823. height: math.unit(8 + 7/12, "feet"),
  50824. default: true,
  50825. form: "werewolf"
  50826. },
  50827. ],
  50828. {
  50829. "borzoi": {
  50830. name: "Borzoi",
  50831. default: true
  50832. },
  50833. "werewolf": {
  50834. name: "Werewolf",
  50835. },
  50836. }
  50837. ))
  50838. characterMakers.push(() => makeCharacter(
  50839. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50840. {
  50841. front: {
  50842. height: math.unit(8 + 7/12, "feet"),
  50843. weight: math.unit(482, "lb"),
  50844. name: "Front",
  50845. image: {
  50846. source: "./media/characters/kit/front.svg",
  50847. extra: 1247/1103,
  50848. bottom: 41/1288
  50849. }
  50850. },
  50851. back: {
  50852. height: math.unit(8 + 7/12, "feet"),
  50853. weight: math.unit(482, "lb"),
  50854. name: "Back",
  50855. image: {
  50856. source: "./media/characters/kit/back.svg",
  50857. extra: 1252/1123,
  50858. bottom: 21/1273
  50859. }
  50860. },
  50861. paw: {
  50862. height: math.unit(1.46, "feet"),
  50863. name: "Paw",
  50864. image: {
  50865. source: "./media/characters/kit/paw.svg"
  50866. }
  50867. },
  50868. },
  50869. [
  50870. {
  50871. name: "Normal",
  50872. height: math.unit(2.61, "meters"),
  50873. default: true
  50874. },
  50875. {
  50876. name: "\"Tall\"",
  50877. height: math.unit(8.21, "meters")
  50878. },
  50879. {
  50880. name: "Tall",
  50881. height: math.unit(19.6, "meters")
  50882. },
  50883. {
  50884. name: "Very Tall",
  50885. height: math.unit(57.91, "meters")
  50886. },
  50887. {
  50888. name: "Semi-Macro",
  50889. height: math.unit(138.64, "meters")
  50890. },
  50891. {
  50892. name: "Macro",
  50893. height: math.unit(831.99, "meters")
  50894. },
  50895. {
  50896. name: "EX-Macro",
  50897. height: math.unit(96451121, "meters")
  50898. },
  50899. {
  50900. name: "S1-Omnipotent",
  50901. height: math.unit(4.42074e+9, "meters")
  50902. },
  50903. {
  50904. name: "S2-Omnipotent",
  50905. height: math.unit(9.42074e+17, "meters")
  50906. },
  50907. {
  50908. name: "Omnipotent",
  50909. height: math.unit(4.23112e+24, "meters")
  50910. },
  50911. {
  50912. name: "Hypergod",
  50913. height: math.unit(5.05176e+27, "meters")
  50914. },
  50915. {
  50916. name: "Hypergod-EX",
  50917. height: math.unit(9.45532e+49, "meters")
  50918. },
  50919. {
  50920. name: "Hypergod-SP",
  50921. height: math.unit(9.45532e+195, "meters")
  50922. },
  50923. ]
  50924. ))
  50925. characterMakers.push(() => makeCharacter(
  50926. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50927. {
  50928. side: {
  50929. height: math.unit(0.6, "meters"),
  50930. weight: math.unit(24, "kg"),
  50931. name: "Side",
  50932. image: {
  50933. source: "./media/characters/celeste/side.svg",
  50934. extra: 810/517,
  50935. bottom: 53/863
  50936. }
  50937. },
  50938. },
  50939. [
  50940. {
  50941. name: "Velociraptor",
  50942. height: math.unit(0.6, "meters"),
  50943. default: true
  50944. },
  50945. {
  50946. name: "Utahraptor",
  50947. height: math.unit(1.8, "meters")
  50948. },
  50949. {
  50950. name: "Gallimimus",
  50951. height: math.unit(4.0, "meters")
  50952. },
  50953. {
  50954. name: "Large",
  50955. height: math.unit(20, "meters")
  50956. },
  50957. {
  50958. name: "Planetary",
  50959. height: math.unit(50, "megameters")
  50960. },
  50961. {
  50962. name: "Stellar",
  50963. height: math.unit(1.5, "gigameters")
  50964. },
  50965. {
  50966. name: "Galactic",
  50967. height: math.unit(100, "exameters")
  50968. },
  50969. ]
  50970. ))
  50971. characterMakers.push(() => makeCharacter(
  50972. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50973. {
  50974. front: {
  50975. height: math.unit(6, "feet"),
  50976. weight: math.unit(210, "lb"),
  50977. name: "Front",
  50978. image: {
  50979. source: "./media/characters/glacia/front.svg",
  50980. extra: 958/901,
  50981. bottom: 45/1003
  50982. }
  50983. },
  50984. },
  50985. [
  50986. {
  50987. name: "Macro",
  50988. height: math.unit(1000, "meters"),
  50989. default: true
  50990. },
  50991. ]
  50992. ))
  50993. characterMakers.push(() => makeCharacter(
  50994. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50995. {
  50996. front: {
  50997. height: math.unit(4, "meters"),
  50998. name: "Front",
  50999. image: {
  51000. source: "./media/characters/giri/front.svg",
  51001. extra: 966/894,
  51002. bottom: 21/987
  51003. }
  51004. },
  51005. },
  51006. [
  51007. {
  51008. name: "Normal",
  51009. height: math.unit(4, "meters"),
  51010. default: true
  51011. },
  51012. ]
  51013. ))
  51014. characterMakers.push(() => makeCharacter(
  51015. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51016. {
  51017. back: {
  51018. height: math.unit(4, "feet"),
  51019. weight: math.unit(37, "lb"),
  51020. name: "Back",
  51021. image: {
  51022. source: "./media/characters/tin/back.svg",
  51023. extra: 845/780,
  51024. bottom: 28/873
  51025. }
  51026. },
  51027. },
  51028. [
  51029. {
  51030. name: "Normal",
  51031. height: math.unit(4, "feet"),
  51032. default: true
  51033. },
  51034. ]
  51035. ))
  51036. characterMakers.push(() => makeCharacter(
  51037. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51038. {
  51039. front: {
  51040. height: math.unit(25, "feet"),
  51041. name: "Front",
  51042. image: {
  51043. source: "./media/characters/cadenza-vivace/front.svg",
  51044. extra: 1842/1578,
  51045. bottom: 30/1872
  51046. }
  51047. },
  51048. },
  51049. [
  51050. {
  51051. name: "Macro",
  51052. height: math.unit(25, "feet"),
  51053. default: true
  51054. },
  51055. ]
  51056. ))
  51057. characterMakers.push(() => makeCharacter(
  51058. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51059. {
  51060. front: {
  51061. height: math.unit(10, "feet"),
  51062. weight: math.unit(625, "kg"),
  51063. name: "Front",
  51064. image: {
  51065. source: "./media/characters/zain/front.svg",
  51066. extra: 1682/1498,
  51067. bottom: 223/1905
  51068. }
  51069. },
  51070. back: {
  51071. height: math.unit(10, "feet"),
  51072. weight: math.unit(625, "kg"),
  51073. name: "Back",
  51074. image: {
  51075. source: "./media/characters/zain/back.svg",
  51076. extra: 1814/1657,
  51077. bottom: 152/1966
  51078. }
  51079. },
  51080. head: {
  51081. height: math.unit(10, "feet"),
  51082. weight: math.unit(625, "kg"),
  51083. name: "Head",
  51084. image: {
  51085. source: "./media/characters/zain/head.svg",
  51086. extra: 1059/762,
  51087. bottom: 0/1059
  51088. }
  51089. },
  51090. },
  51091. [
  51092. {
  51093. name: "Normal",
  51094. height: math.unit(10, "feet"),
  51095. default: true
  51096. },
  51097. ]
  51098. ))
  51099. characterMakers.push(() => makeCharacter(
  51100. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51101. {
  51102. front: {
  51103. height: math.unit(6 + 5/12, "feet"),
  51104. weight: math.unit(750, "lb"),
  51105. name: "Front",
  51106. image: {
  51107. source: "./media/characters/ruchex/front.svg",
  51108. extra: 877/820,
  51109. bottom: 17/894
  51110. },
  51111. extraAttributes: {
  51112. "width": {
  51113. name: "Width",
  51114. power: 1,
  51115. type: "length",
  51116. base: math.unit(4.757, "feet")
  51117. },
  51118. }
  51119. },
  51120. },
  51121. [
  51122. {
  51123. name: "Normal",
  51124. height: math.unit(6 + 5/12, "feet"),
  51125. default: true
  51126. },
  51127. ]
  51128. ))
  51129. characterMakers.push(() => makeCharacter(
  51130. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51131. {
  51132. dressedFront: {
  51133. height: math.unit(191, "cm"),
  51134. weight: math.unit(80, "kg"),
  51135. name: "Front",
  51136. image: {
  51137. source: "./media/characters/buster/dressed-front.svg",
  51138. extra: 1022/973,
  51139. bottom: 69/1091
  51140. }
  51141. },
  51142. dressedBack: {
  51143. height: math.unit(191, "cm"),
  51144. weight: math.unit(80, "kg"),
  51145. name: "Back",
  51146. image: {
  51147. source: "./media/characters/buster/dressed-back.svg",
  51148. extra: 1018/970,
  51149. bottom: 55/1073
  51150. }
  51151. },
  51152. nudeFront: {
  51153. height: math.unit(191, "cm"),
  51154. weight: math.unit(80, "kg"),
  51155. name: "Front (Nude)",
  51156. image: {
  51157. source: "./media/characters/buster/nude-front.svg",
  51158. extra: 1022/973,
  51159. bottom: 69/1091
  51160. }
  51161. },
  51162. nudeBack: {
  51163. height: math.unit(191, "cm"),
  51164. weight: math.unit(80, "kg"),
  51165. name: "Back (Nude)",
  51166. image: {
  51167. source: "./media/characters/buster/nude-back.svg",
  51168. extra: 1018/970,
  51169. bottom: 55/1073
  51170. }
  51171. },
  51172. dick: {
  51173. height: math.unit(2.59, "feet"),
  51174. name: "Dick",
  51175. image: {
  51176. source: "./media/characters/buster/dick.svg"
  51177. }
  51178. },
  51179. ass: {
  51180. height: math.unit(1.2, "feet"),
  51181. name: "Ass",
  51182. image: {
  51183. source: "./media/characters/buster/ass.svg"
  51184. }
  51185. },
  51186. },
  51187. [
  51188. {
  51189. name: "Normal",
  51190. height: math.unit(191, "cm"),
  51191. default: true
  51192. },
  51193. ]
  51194. ))
  51195. characterMakers.push(() => makeCharacter(
  51196. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51197. {
  51198. side: {
  51199. height: math.unit(8.1, "feet"),
  51200. weight: math.unit(3500, "lb"),
  51201. name: "Side",
  51202. image: {
  51203. source: "./media/characters/sonya/side.svg",
  51204. extra: 1730/1317,
  51205. bottom: 86/1816
  51206. }
  51207. },
  51208. },
  51209. [
  51210. {
  51211. name: "Normal",
  51212. height: math.unit(8.1, "feet"),
  51213. default: true
  51214. },
  51215. ]
  51216. ))
  51217. characterMakers.push(() => makeCharacter(
  51218. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51219. {
  51220. front: {
  51221. height: math.unit(6, "feet"),
  51222. weight: math.unit(150, "lb"),
  51223. name: "Front",
  51224. image: {
  51225. source: "./media/characters/cadence-andrysiak/front.svg",
  51226. extra: 1164/1121,
  51227. bottom: 60/1224
  51228. }
  51229. },
  51230. back: {
  51231. height: math.unit(6, "feet"),
  51232. weight: math.unit(150, "lb"),
  51233. name: "Back",
  51234. image: {
  51235. source: "./media/characters/cadence-andrysiak/back.svg",
  51236. extra: 1200/1165,
  51237. bottom: 9/1209
  51238. }
  51239. },
  51240. dressed: {
  51241. height: math.unit(6, "feet"),
  51242. weight: math.unit(150, "lb"),
  51243. name: "Dressed",
  51244. image: {
  51245. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51246. extra: 1164/1121,
  51247. bottom: 60/1224
  51248. }
  51249. },
  51250. },
  51251. [
  51252. {
  51253. name: "Micro",
  51254. height: math.unit(1, "mm")
  51255. },
  51256. {
  51257. name: "Normal",
  51258. height: math.unit(6, "feet"),
  51259. default: true
  51260. },
  51261. ]
  51262. ))
  51263. characterMakers.push(() => makeCharacter(
  51264. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51265. {
  51266. front: {
  51267. height: math.unit(60, "inches"),
  51268. weight: math.unit(16, "lb"),
  51269. preyCapacity: math.unit(80, "liters"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/penny-lynx/front.svg",
  51273. extra: 1959/1769,
  51274. bottom: 49/2008
  51275. }
  51276. },
  51277. },
  51278. [
  51279. {
  51280. name: "Nokia",
  51281. height: math.unit(2, "inches")
  51282. },
  51283. {
  51284. name: "Desktop",
  51285. height: math.unit(24, "inches")
  51286. },
  51287. {
  51288. name: "TV",
  51289. height: math.unit(60, "inches")
  51290. },
  51291. {
  51292. name: "Jumbotron",
  51293. height: math.unit(12, "feet")
  51294. },
  51295. {
  51296. name: "Billboard",
  51297. height: math.unit(48, "feet"),
  51298. default: true
  51299. },
  51300. {
  51301. name: "IMAX",
  51302. height: math.unit(96, "feet")
  51303. },
  51304. {
  51305. name: "SINGULARITY",
  51306. height: math.unit(864938, "miles")
  51307. },
  51308. ]
  51309. ))
  51310. characterMakers.push(() => makeCharacter(
  51311. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51312. {
  51313. front: {
  51314. height: math.unit(5 + 4/12, "feet"),
  51315. weight: math.unit(230, "lb"),
  51316. name: "Front",
  51317. image: {
  51318. source: "./media/characters/sukebe/front.svg",
  51319. extra: 2130/2038,
  51320. bottom: 90/2220
  51321. }
  51322. },
  51323. back: {
  51324. height: math.unit(3.48, "feet"),
  51325. weight: math.unit(230, "lb"),
  51326. name: "Back",
  51327. image: {
  51328. source: "./media/characters/sukebe/back.svg",
  51329. extra: 1670/1604,
  51330. bottom: 0/1670
  51331. }
  51332. },
  51333. },
  51334. [
  51335. {
  51336. name: "Normal",
  51337. height: math.unit(5 + 4/12, "feet"),
  51338. default: true
  51339. },
  51340. ]
  51341. ))
  51342. characterMakers.push(() => makeCharacter(
  51343. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51344. {
  51345. front: {
  51346. height: math.unit(6, "feet"),
  51347. name: "Front",
  51348. image: {
  51349. source: "./media/characters/nylla/front.svg",
  51350. extra: 1868/1699,
  51351. bottom: 97/1965
  51352. }
  51353. },
  51354. back: {
  51355. height: math.unit(6, "feet"),
  51356. name: "Back",
  51357. image: {
  51358. source: "./media/characters/nylla/back.svg",
  51359. extra: 1889/1712,
  51360. bottom: 93/1982
  51361. }
  51362. },
  51363. frontNsfw: {
  51364. height: math.unit(6, "feet"),
  51365. name: "Front (NSFW)",
  51366. image: {
  51367. source: "./media/characters/nylla/front-nsfw.svg",
  51368. extra: 1868/1699,
  51369. bottom: 97/1965
  51370. },
  51371. extraAttributes: {
  51372. "dickLength": {
  51373. name: "Dick Length",
  51374. power: 1,
  51375. type: "length",
  51376. base: math.unit(1.4, "feet")
  51377. },
  51378. "cumVolume": {
  51379. name: "Cum Volume",
  51380. power: 3,
  51381. type: "volume",
  51382. base: math.unit(100, "mL")
  51383. },
  51384. }
  51385. },
  51386. backNsfw: {
  51387. height: math.unit(6, "feet"),
  51388. name: "Back (NSFW)",
  51389. image: {
  51390. source: "./media/characters/nylla/back-nsfw.svg",
  51391. extra: 1889/1712,
  51392. bottom: 93/1982
  51393. }
  51394. },
  51395. maw: {
  51396. height: math.unit(2.10, "feet"),
  51397. name: "Maw",
  51398. image: {
  51399. source: "./media/characters/nylla/maw.svg"
  51400. }
  51401. },
  51402. paws: {
  51403. height: math.unit(2.06, "feet"),
  51404. name: "Paws",
  51405. image: {
  51406. source: "./media/characters/nylla/paws.svg"
  51407. }
  51408. },
  51409. muzzle: {
  51410. height: math.unit(0.61, "feet"),
  51411. name: "Muzzle",
  51412. image: {
  51413. source: "./media/characters/nylla/muzzle.svg"
  51414. }
  51415. },
  51416. sheath: {
  51417. height: math.unit(1.305, "feet"),
  51418. name: "Sheath",
  51419. image: {
  51420. source: "./media/characters/nylla/sheath.svg"
  51421. }
  51422. },
  51423. },
  51424. [
  51425. {
  51426. name: "Micro",
  51427. height: math.unit(7.5, "inches")
  51428. },
  51429. {
  51430. name: "Normal",
  51431. height: math.unit(7, "feet"),
  51432. default: true
  51433. },
  51434. {
  51435. name: "Macro",
  51436. height: math.unit(60, "feet")
  51437. },
  51438. {
  51439. name: "Mega",
  51440. height: math.unit(200, "feet")
  51441. },
  51442. ]
  51443. ))
  51444. characterMakers.push(() => makeCharacter(
  51445. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51446. {
  51447. front: {
  51448. height: math.unit(10, "feet"),
  51449. weight: math.unit(2300, "lb"),
  51450. name: "Front",
  51451. image: {
  51452. source: "./media/characters/hunt3r/front.svg",
  51453. extra: 1909/1742,
  51454. bottom: 46/1955
  51455. }
  51456. },
  51457. },
  51458. [
  51459. {
  51460. name: "Normal",
  51461. height: math.unit(10, "feet"),
  51462. default: true
  51463. },
  51464. ]
  51465. ))
  51466. characterMakers.push(() => makeCharacter(
  51467. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51468. {
  51469. dressed: {
  51470. height: math.unit(11, "feet"),
  51471. weight: math.unit(18500, "lb"),
  51472. preyCapacity: math.unit(9, "people"),
  51473. name: "Dressed",
  51474. image: {
  51475. source: "./media/characters/cylphis/dressed.svg",
  51476. extra: 1028/1003,
  51477. bottom: 75/1103
  51478. },
  51479. },
  51480. undressed: {
  51481. height: math.unit(11, "feet"),
  51482. weight: math.unit(18500, "lb"),
  51483. preyCapacity: math.unit(9, "people"),
  51484. name: "Undressed",
  51485. image: {
  51486. source: "./media/characters/cylphis/undressed.svg",
  51487. extra: 1028/1003,
  51488. bottom: 75/1103
  51489. }
  51490. },
  51491. full: {
  51492. height: math.unit(11, "feet"),
  51493. weight: math.unit(18500 + 150*9, "lb"),
  51494. preyCapacity: math.unit(9, "people"),
  51495. name: "Full",
  51496. image: {
  51497. source: "./media/characters/cylphis/full.svg",
  51498. extra: 1028/1003,
  51499. bottom: 75/1103
  51500. }
  51501. },
  51502. },
  51503. [
  51504. {
  51505. name: "Small",
  51506. height: math.unit(8, "feet")
  51507. },
  51508. {
  51509. name: "Normal",
  51510. height: math.unit(11, "feet"),
  51511. default: true
  51512. },
  51513. ]
  51514. ))
  51515. characterMakers.push(() => makeCharacter(
  51516. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51517. {
  51518. front: {
  51519. height: math.unit(2 + 7/12, "feet"),
  51520. name: "Front",
  51521. image: {
  51522. source: "./media/characters/orishan/front.svg",
  51523. extra: 1058/1023,
  51524. bottom: 23/1081
  51525. }
  51526. },
  51527. back: {
  51528. height: math.unit(2 + 7/12, "feet"),
  51529. name: "Back",
  51530. image: {
  51531. source: "./media/characters/orishan/back.svg",
  51532. extra: 1058/1023,
  51533. bottom: 23/1081
  51534. }
  51535. },
  51536. },
  51537. [
  51538. {
  51539. name: "Micro",
  51540. height: math.unit(2, "cm")
  51541. },
  51542. {
  51543. name: "Normal",
  51544. height: math.unit(2 + 7/12, "feet"),
  51545. default: true
  51546. },
  51547. ]
  51548. ))
  51549. characterMakers.push(() => makeCharacter(
  51550. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51551. {
  51552. front: {
  51553. height: math.unit(3, "meters"),
  51554. weight: math.unit(508, "kg"),
  51555. name: "Front",
  51556. image: {
  51557. source: "./media/characters/seranis/front.svg",
  51558. extra: 1478/1454,
  51559. bottom: 41/1519
  51560. }
  51561. },
  51562. },
  51563. [
  51564. {
  51565. name: "Normal",
  51566. height: math.unit(3, "meters"),
  51567. default: true
  51568. },
  51569. {
  51570. name: "Macro",
  51571. height: math.unit(108, "meters")
  51572. },
  51573. {
  51574. name: "Megamacro",
  51575. height: math.unit(1250, "meters")
  51576. },
  51577. ]
  51578. ))
  51579. characterMakers.push(() => makeCharacter(
  51580. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51581. {
  51582. undressed: {
  51583. height: math.unit(5 + 3/12, "feet"),
  51584. name: "Undressed",
  51585. image: {
  51586. source: "./media/characters/ankou/undressed.svg",
  51587. extra: 1301/1213,
  51588. bottom: 87/1388
  51589. }
  51590. },
  51591. dressed: {
  51592. height: math.unit(5 + 3/12, "feet"),
  51593. name: "Dressed",
  51594. image: {
  51595. source: "./media/characters/ankou/dressed.svg",
  51596. extra: 1301/1213,
  51597. bottom: 87/1388
  51598. }
  51599. },
  51600. head: {
  51601. height: math.unit(1.61, "feet"),
  51602. name: "Head",
  51603. image: {
  51604. source: "./media/characters/ankou/head.svg"
  51605. }
  51606. },
  51607. },
  51608. [
  51609. {
  51610. name: "Normal",
  51611. height: math.unit(5 + 3/12, "feet"),
  51612. default: true
  51613. },
  51614. ]
  51615. ))
  51616. characterMakers.push(() => makeCharacter(
  51617. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51618. {
  51619. side: {
  51620. height: math.unit(6 + 3/12, "feet"),
  51621. weight: math.unit(200, "kg"),
  51622. name: "Side",
  51623. image: {
  51624. source: "./media/characters/juniper-skunktaur/side.svg",
  51625. extra: 1574/1229,
  51626. bottom: 38/1612
  51627. }
  51628. },
  51629. front: {
  51630. height: math.unit(6 + 3/12, "feet"),
  51631. weight: math.unit(200, "kg"),
  51632. name: "Front",
  51633. image: {
  51634. source: "./media/characters/juniper-skunktaur/front.svg",
  51635. extra: 1337/1278,
  51636. bottom: 22/1359
  51637. }
  51638. },
  51639. back: {
  51640. height: math.unit(6 + 3/12, "feet"),
  51641. weight: math.unit(200, "kg"),
  51642. name: "Back",
  51643. image: {
  51644. source: "./media/characters/juniper-skunktaur/back.svg",
  51645. extra: 1618/1273,
  51646. bottom: 13/1631
  51647. }
  51648. },
  51649. top: {
  51650. height: math.unit(2.62, "feet"),
  51651. weight: math.unit(200, "kg"),
  51652. name: "Top",
  51653. image: {
  51654. source: "./media/characters/juniper-skunktaur/top.svg"
  51655. }
  51656. },
  51657. },
  51658. [
  51659. {
  51660. name: "Normal",
  51661. height: math.unit(6 + 3/12, "feet"),
  51662. default: true
  51663. },
  51664. ]
  51665. ))
  51666. characterMakers.push(() => makeCharacter(
  51667. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51668. {
  51669. front: {
  51670. height: math.unit(20.5, "feet"),
  51671. name: "Front",
  51672. image: {
  51673. source: "./media/characters/rei/front.svg",
  51674. extra: 1349/1195,
  51675. bottom: 31/1380
  51676. }
  51677. },
  51678. back: {
  51679. height: math.unit(20.5, "feet"),
  51680. name: "Back",
  51681. image: {
  51682. source: "./media/characters/rei/back.svg",
  51683. extra: 1358/1204,
  51684. bottom: 22/1380
  51685. }
  51686. },
  51687. pawsDigi: {
  51688. height: math.unit(3.45, "feet"),
  51689. name: "Paws (Digi)",
  51690. image: {
  51691. source: "./media/characters/rei/paws-digi.svg"
  51692. }
  51693. },
  51694. pawsPlanti: {
  51695. height: math.unit(3.45, "feet"),
  51696. name: "Paws (Planti)",
  51697. image: {
  51698. source: "./media/characters/rei/paws-planti.svg"
  51699. }
  51700. },
  51701. },
  51702. [
  51703. {
  51704. name: "Normal",
  51705. height: math.unit(20.5, "feet"),
  51706. default: true
  51707. },
  51708. ]
  51709. ))
  51710. characterMakers.push(() => makeCharacter(
  51711. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51712. {
  51713. front: {
  51714. height: math.unit(5 + 11/12, "feet"),
  51715. name: "Front",
  51716. image: {
  51717. source: "./media/characters/carina/front.svg",
  51718. extra: 1720/1449,
  51719. bottom: 14/1734
  51720. }
  51721. },
  51722. back: {
  51723. height: math.unit(5 + 11/12, "feet"),
  51724. name: "Back",
  51725. image: {
  51726. source: "./media/characters/carina/back.svg",
  51727. extra: 1493/1445,
  51728. bottom: 17/1510
  51729. }
  51730. },
  51731. paw: {
  51732. height: math.unit(0.92, "feet"),
  51733. name: "Paw",
  51734. image: {
  51735. source: "./media/characters/carina/paw.svg"
  51736. }
  51737. },
  51738. },
  51739. [
  51740. {
  51741. name: "Normal",
  51742. height: math.unit(5 + 11/12, "feet"),
  51743. default: true
  51744. },
  51745. ]
  51746. ))
  51747. characterMakers.push(() => makeCharacter(
  51748. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51749. {
  51750. front: {
  51751. height: math.unit(4.88, "meters"),
  51752. name: "Front",
  51753. image: {
  51754. source: "./media/characters/maya/front.svg",
  51755. extra: 1222/1145,
  51756. bottom: 57/1279
  51757. }
  51758. },
  51759. },
  51760. [
  51761. {
  51762. name: "Normal",
  51763. height: math.unit(4.88, "meters"),
  51764. default: true
  51765. },
  51766. {
  51767. name: "Macro",
  51768. height: math.unit(38.1, "meters")
  51769. },
  51770. {
  51771. name: "Macro+",
  51772. height: math.unit(152.4, "meters")
  51773. },
  51774. {
  51775. name: "Macro++",
  51776. height: math.unit(16.09, "km")
  51777. },
  51778. {
  51779. name: "Mega-macro",
  51780. height: math.unit(700, "megameters")
  51781. },
  51782. ]
  51783. ))
  51784. characterMakers.push(() => makeCharacter(
  51785. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51786. {
  51787. front: {
  51788. height: math.unit(6 + 2/12, "feet"),
  51789. weight: math.unit(500, "lb"),
  51790. preyCapacity: math.unit(4, "people"),
  51791. name: "Front",
  51792. image: {
  51793. source: "./media/characters/yepir/front.svg"
  51794. }
  51795. },
  51796. side: {
  51797. height: math.unit(6 + 2/12, "feet"),
  51798. weight: math.unit(500, "lb"),
  51799. preyCapacity: math.unit(4, "people"),
  51800. name: "Side",
  51801. image: {
  51802. source: "./media/characters/yepir/side.svg"
  51803. }
  51804. },
  51805. paw: {
  51806. height: math.unit(1.05, "feet"),
  51807. name: "Paw",
  51808. image: {
  51809. source: "./media/characters/yepir/paw.svg"
  51810. }
  51811. },
  51812. },
  51813. [
  51814. {
  51815. name: "Normal",
  51816. height: math.unit(6 + 2/12, "feet"),
  51817. default: true
  51818. },
  51819. ]
  51820. ))
  51821. characterMakers.push(() => makeCharacter(
  51822. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51823. {
  51824. front: {
  51825. height: math.unit(5 + 4/12, "feet"),
  51826. name: "Front",
  51827. image: {
  51828. source: "./media/characters/russec/front.svg",
  51829. extra: 1926/1626,
  51830. bottom: 72/1998
  51831. }
  51832. },
  51833. back: {
  51834. height: math.unit(5 + 4/12, "feet"),
  51835. name: "Back",
  51836. image: {
  51837. source: "./media/characters/russec/back.svg",
  51838. extra: 1910/1591,
  51839. bottom: 48/1958
  51840. }
  51841. },
  51842. },
  51843. [
  51844. {
  51845. name: "Small",
  51846. height: math.unit(5 + 4/12, "feet")
  51847. },
  51848. {
  51849. name: "Normal",
  51850. height: math.unit(72, "feet"),
  51851. default: true
  51852. },
  51853. ]
  51854. ))
  51855. characterMakers.push(() => makeCharacter(
  51856. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51857. {
  51858. side: {
  51859. height: math.unit(12, "feet"),
  51860. name: "Side",
  51861. image: {
  51862. source: "./media/characters/cianus/side.svg",
  51863. extra: 808/526,
  51864. bottom: 61/869
  51865. }
  51866. },
  51867. },
  51868. [
  51869. {
  51870. name: "Normal",
  51871. height: math.unit(12, "feet"),
  51872. default: true
  51873. },
  51874. ]
  51875. ))
  51876. characterMakers.push(() => makeCharacter(
  51877. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51878. {
  51879. front: {
  51880. height: math.unit(9 + 6/12, "feet"),
  51881. weight: math.unit(300, "lb"),
  51882. name: "Front",
  51883. image: {
  51884. source: "./media/characters/ahab/front.svg",
  51885. extra: 1897/1868,
  51886. bottom: 121/2018
  51887. }
  51888. },
  51889. frontNsfw: {
  51890. height: math.unit(9 + 6/12, "feet"),
  51891. weight: math.unit(300, "lb"),
  51892. name: "Front-nsfw",
  51893. image: {
  51894. source: "./media/characters/ahab/front-nsfw.svg",
  51895. extra: 1897/1868,
  51896. bottom: 121/2018
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(9 + 6/12, "feet")
  51904. },
  51905. {
  51906. name: "Macro",
  51907. height: math.unit(657, "feet"),
  51908. default: true
  51909. },
  51910. ]
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(2.69, "meters"),
  51917. weight: math.unit(132, "kg"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/aarkus/front.svg",
  51921. extra: 1400/1231,
  51922. bottom: 34/1434
  51923. }
  51924. },
  51925. back: {
  51926. height: math.unit(2.69, "meters"),
  51927. weight: math.unit(132, "kg"),
  51928. name: "Back",
  51929. image: {
  51930. source: "./media/characters/aarkus/back.svg",
  51931. extra: 1381/1218,
  51932. bottom: 30/1411
  51933. }
  51934. },
  51935. frontNsfw: {
  51936. height: math.unit(2.69, "meters"),
  51937. weight: math.unit(132, "kg"),
  51938. name: "Front (NSFW)",
  51939. image: {
  51940. source: "./media/characters/aarkus/front-nsfw.svg",
  51941. extra: 1400/1231,
  51942. bottom: 34/1434
  51943. }
  51944. },
  51945. foot: {
  51946. height: math.unit(1.45, "feet"),
  51947. name: "Foot",
  51948. image: {
  51949. source: "./media/characters/aarkus/foot.svg"
  51950. }
  51951. },
  51952. head: {
  51953. height: math.unit(2.85, "feet"),
  51954. name: "Head",
  51955. image: {
  51956. source: "./media/characters/aarkus/head.svg"
  51957. }
  51958. },
  51959. headAlt: {
  51960. height: math.unit(3.07, "feet"),
  51961. name: "Head (Alt)",
  51962. image: {
  51963. source: "./media/characters/aarkus/head-alt.svg"
  51964. }
  51965. },
  51966. mouth: {
  51967. height: math.unit(1.25, "feet"),
  51968. name: "Mouth",
  51969. image: {
  51970. source: "./media/characters/aarkus/mouth.svg"
  51971. }
  51972. },
  51973. dick: {
  51974. height: math.unit(1.77, "feet"),
  51975. name: "Dick",
  51976. image: {
  51977. source: "./media/characters/aarkus/dick.svg"
  51978. }
  51979. },
  51980. },
  51981. [
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(2.69, "meters"),
  51985. default: true
  51986. },
  51987. {
  51988. name: "Macro",
  51989. height: math.unit(269, "meters")
  51990. },
  51991. {
  51992. name: "Macro+",
  51993. height: math.unit(672.5, "meters")
  51994. },
  51995. {
  51996. name: "Megamacro",
  51997. height: math.unit(2.017, "km")
  51998. },
  51999. ]
  52000. ))
  52001. characterMakers.push(() => makeCharacter(
  52002. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52003. {
  52004. front: {
  52005. height: math.unit(23.47, "cm"),
  52006. weight: math.unit(600, "grams"),
  52007. name: "Front",
  52008. image: {
  52009. source: "./media/characters/diode/front.svg",
  52010. extra: 1778/1396,
  52011. bottom: 95/1873
  52012. }
  52013. },
  52014. side: {
  52015. height: math.unit(23.47, "cm"),
  52016. weight: math.unit(600, "grams"),
  52017. name: "Side",
  52018. image: {
  52019. source: "./media/characters/diode/side.svg",
  52020. extra: 1831/1404,
  52021. bottom: 86/1917
  52022. }
  52023. },
  52024. wings: {
  52025. height: math.unit(0.683, "feet"),
  52026. name: "Wings",
  52027. image: {
  52028. source: "./media/characters/diode/wings.svg"
  52029. }
  52030. },
  52031. },
  52032. [
  52033. {
  52034. name: "Normal",
  52035. height: math.unit(23.47, "cm"),
  52036. default: true
  52037. },
  52038. ]
  52039. ))
  52040. characterMakers.push(() => makeCharacter(
  52041. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52042. {
  52043. front: {
  52044. height: math.unit(6 + 3/12, "feet"),
  52045. weight: math.unit(250, "lb"),
  52046. name: "Front",
  52047. image: {
  52048. source: "./media/characters/reika/front.svg",
  52049. extra: 1120/1078,
  52050. bottom: 86/1206
  52051. }
  52052. },
  52053. },
  52054. [
  52055. {
  52056. name: "Normal",
  52057. height: math.unit(6 + 3/12, "feet"),
  52058. default: true
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52064. {
  52065. front: {
  52066. height: math.unit(16 + 8/12, "feet"),
  52067. weight: math.unit(9000, "lb"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/lokuto-takama/front.svg",
  52071. extra: 1774/1632,
  52072. bottom: 147/1921
  52073. },
  52074. extraAttributes: {
  52075. "bustWidth": {
  52076. name: "Bust Width",
  52077. power: 1,
  52078. type: "length",
  52079. base: math.unit(2.4, "meters")
  52080. },
  52081. "breastWeight": {
  52082. name: "Breast Weight",
  52083. power: 3,
  52084. type: "mass",
  52085. base: math.unit(1000, "kg")
  52086. },
  52087. }
  52088. },
  52089. },
  52090. [
  52091. {
  52092. name: "Normal",
  52093. height: math.unit(16 + 8/12, "feet"),
  52094. default: true
  52095. },
  52096. ]
  52097. ))
  52098. characterMakers.push(() => makeCharacter(
  52099. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52100. {
  52101. front: {
  52102. height: math.unit(10, "cm"),
  52103. weight: math.unit(850, "grams"),
  52104. name: "Front",
  52105. image: {
  52106. source: "./media/characters/owak-bone/front.svg",
  52107. extra: 1965/1801,
  52108. bottom: 31/1996
  52109. }
  52110. },
  52111. },
  52112. [
  52113. {
  52114. name: "Normal",
  52115. height: math.unit(10, "cm"),
  52116. default: true
  52117. },
  52118. ]
  52119. ))
  52120. characterMakers.push(() => makeCharacter(
  52121. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52122. {
  52123. front: {
  52124. height: math.unit(2 + 6/12, "feet"),
  52125. weight: math.unit(9, "lb"),
  52126. name: "Front",
  52127. image: {
  52128. source: "./media/characters/muffin/front.svg",
  52129. extra: 1220/1195,
  52130. bottom: 84/1304
  52131. }
  52132. },
  52133. },
  52134. [
  52135. {
  52136. name: "Normal",
  52137. height: math.unit(2 + 6/12, "feet"),
  52138. default: true
  52139. },
  52140. ]
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(7, "feet"),
  52147. name: "Front",
  52148. image: {
  52149. source: "./media/characters/chimera/front.svg",
  52150. extra: 1752/1614,
  52151. bottom: 68/1820
  52152. }
  52153. },
  52154. },
  52155. [
  52156. {
  52157. name: "Normal",
  52158. height: math.unit(7, "feet")
  52159. },
  52160. {
  52161. name: "Gigamacro",
  52162. height: math.unit(2.9, "gigameters"),
  52163. default: true
  52164. },
  52165. {
  52166. name: "Universal",
  52167. height: math.unit(1.56e26, "yottameters")
  52168. },
  52169. ]
  52170. ))
  52171. characterMakers.push(() => makeCharacter(
  52172. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52173. {
  52174. front: {
  52175. height: math.unit(3, "feet"),
  52176. weight: math.unit(20, "lb"),
  52177. name: "Front",
  52178. image: {
  52179. source: "./media/characters/kit-fennec-fox/front.svg",
  52180. extra: 1027/932,
  52181. bottom: 16/1043
  52182. }
  52183. },
  52184. back: {
  52185. height: math.unit(3, "feet"),
  52186. weight: math.unit(20, "lb"),
  52187. name: "Back",
  52188. image: {
  52189. source: "./media/characters/kit-fennec-fox/back.svg",
  52190. extra: 1027/932,
  52191. bottom: 16/1043
  52192. }
  52193. },
  52194. },
  52195. [
  52196. {
  52197. name: "Normal",
  52198. height: math.unit(3, "feet"),
  52199. default: true
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52205. {
  52206. front: {
  52207. height: math.unit(167, "cm"),
  52208. name: "Front",
  52209. image: {
  52210. source: "./media/characters/blue-otter/front.svg",
  52211. extra: 1951/1920,
  52212. bottom: 31/1982
  52213. }
  52214. },
  52215. },
  52216. [
  52217. {
  52218. name: "Otter-Sized",
  52219. height: math.unit(100, "cm")
  52220. },
  52221. {
  52222. name: "Normal",
  52223. height: math.unit(167, "cm"),
  52224. default: true
  52225. },
  52226. ]
  52227. ))
  52228. characterMakers.push(() => makeCharacter(
  52229. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52230. {
  52231. front: {
  52232. height: math.unit(4 + 4/12, "feet"),
  52233. name: "Front",
  52234. image: {
  52235. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52236. extra: 1072/1067,
  52237. bottom: 117/1189
  52238. }
  52239. },
  52240. back: {
  52241. height: math.unit(4 + 4/12, "feet"),
  52242. name: "Back",
  52243. image: {
  52244. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52245. extra: 1135/1129,
  52246. bottom: 57/1192
  52247. }
  52248. },
  52249. head: {
  52250. height: math.unit(1.77, "feet"),
  52251. name: "Head",
  52252. image: {
  52253. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52254. }
  52255. },
  52256. },
  52257. [
  52258. {
  52259. name: "Normal",
  52260. height: math.unit(4 + 4/12, "feet"),
  52261. default: true
  52262. },
  52263. ]
  52264. ))
  52265. characterMakers.push(() => makeCharacter(
  52266. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52267. {
  52268. front: {
  52269. height: math.unit(2, "inches"),
  52270. name: "Front",
  52271. image: {
  52272. source: "./media/characters/carley-hartford/front.svg",
  52273. extra: 1035/988,
  52274. bottom: 23/1058
  52275. }
  52276. },
  52277. back: {
  52278. height: math.unit(2, "inches"),
  52279. name: "Back",
  52280. image: {
  52281. source: "./media/characters/carley-hartford/back.svg",
  52282. extra: 1035/988,
  52283. bottom: 23/1058
  52284. }
  52285. },
  52286. dressed: {
  52287. height: math.unit(2, "inches"),
  52288. name: "Dressed",
  52289. image: {
  52290. source: "./media/characters/carley-hartford/dressed.svg",
  52291. extra: 651/620,
  52292. bottom: 0/651
  52293. }
  52294. },
  52295. },
  52296. [
  52297. {
  52298. name: "Micro",
  52299. height: math.unit(2, "inches"),
  52300. default: true
  52301. },
  52302. {
  52303. name: "Macro",
  52304. height: math.unit(6 + 3/12, "feet")
  52305. },
  52306. ]
  52307. ))
  52308. characterMakers.push(() => makeCharacter(
  52309. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52310. {
  52311. front: {
  52312. height: math.unit(2 + 3/12, "feet"),
  52313. weight: math.unit(15 + 7/16, "lb"),
  52314. name: "Front",
  52315. image: {
  52316. source: "./media/characters/duke/front.svg",
  52317. extra: 910/815,
  52318. bottom: 30/940
  52319. }
  52320. },
  52321. },
  52322. [
  52323. {
  52324. name: "Normal",
  52325. height: math.unit(2 + 3/12, "feet"),
  52326. default: true
  52327. },
  52328. ]
  52329. ))
  52330. characterMakers.push(() => makeCharacter(
  52331. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52332. {
  52333. front: {
  52334. height: math.unit(5 + 4/12, "feet"),
  52335. weight: math.unit(156, "lb"),
  52336. name: "Front",
  52337. image: {
  52338. source: "./media/characters/dein/front.svg",
  52339. extra: 855/815,
  52340. bottom: 48/903
  52341. }
  52342. },
  52343. side: {
  52344. height: math.unit(5 + 4/12, "feet"),
  52345. weight: math.unit(156, "lb"),
  52346. name: "side",
  52347. image: {
  52348. source: "./media/characters/dein/side.svg",
  52349. extra: 846/803,
  52350. bottom: 25/871
  52351. }
  52352. },
  52353. maw: {
  52354. height: math.unit(1.45, "feet"),
  52355. name: "Maw",
  52356. image: {
  52357. source: "./media/characters/dein/maw.svg"
  52358. }
  52359. },
  52360. },
  52361. [
  52362. {
  52363. name: "Ferret Sized",
  52364. height: math.unit(2 + 5/12, "feet")
  52365. },
  52366. {
  52367. name: "Normal",
  52368. height: math.unit(5 + 4/12, "feet"),
  52369. default: true
  52370. },
  52371. ]
  52372. ))
  52373. characterMakers.push(() => makeCharacter(
  52374. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52375. {
  52376. front: {
  52377. height: math.unit(84 + 8/12, "feet"),
  52378. weight: math.unit(942180, "lb"),
  52379. name: "Front",
  52380. image: {
  52381. source: "./media/characters/daurine-arima/front.svg",
  52382. extra: 1989/1782,
  52383. bottom: 37/2026
  52384. }
  52385. },
  52386. side: {
  52387. height: math.unit(84 + 8/12, "feet"),
  52388. weight: math.unit(942180, "lb"),
  52389. name: "Side",
  52390. image: {
  52391. source: "./media/characters/daurine-arima/side.svg",
  52392. extra: 1997/1790,
  52393. bottom: 21/2018
  52394. }
  52395. },
  52396. back: {
  52397. height: math.unit(84 + 8/12, "feet"),
  52398. weight: math.unit(942180, "lb"),
  52399. name: "Back",
  52400. image: {
  52401. source: "./media/characters/daurine-arima/back.svg",
  52402. extra: 1992/1800,
  52403. bottom: 12/2004
  52404. }
  52405. },
  52406. head: {
  52407. height: math.unit(15.5, "feet"),
  52408. name: "Head",
  52409. image: {
  52410. source: "./media/characters/daurine-arima/head.svg"
  52411. }
  52412. },
  52413. headAlt: {
  52414. height: math.unit(19.19, "feet"),
  52415. name: "Head (Alt)",
  52416. image: {
  52417. source: "./media/characters/daurine-arima/head-alt.svg"
  52418. }
  52419. },
  52420. },
  52421. [
  52422. {
  52423. name: "Minimum height",
  52424. height: math.unit(8 + 10/12, "feet")
  52425. },
  52426. {
  52427. name: "Comfort height",
  52428. height: math.unit(19 + 6 /12, "feet")
  52429. },
  52430. {
  52431. name: "\"Normal\" height",
  52432. height: math.unit(28 + 10/12, "feet")
  52433. },
  52434. {
  52435. name: "Base height",
  52436. height: math.unit(84 + 8/12, "feet"),
  52437. default: true
  52438. },
  52439. {
  52440. name: "Mini-macro",
  52441. height: math.unit(2360, "feet")
  52442. },
  52443. {
  52444. name: "Macro",
  52445. height: math.unit(10, "miles")
  52446. },
  52447. {
  52448. name: "Goddess",
  52449. height: math.unit(9.99e40, "yottameters")
  52450. },
  52451. ]
  52452. ))
  52453. characterMakers.push(() => makeCharacter(
  52454. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52455. {
  52456. front: {
  52457. height: math.unit(2.3, "meters"),
  52458. name: "Front",
  52459. image: {
  52460. source: "./media/characters/cilenomon/front.svg",
  52461. extra: 1963/1778,
  52462. bottom: 54/2017
  52463. }
  52464. },
  52465. },
  52466. [
  52467. {
  52468. name: "Normal",
  52469. height: math.unit(2.3, "meters"),
  52470. default: true
  52471. },
  52472. {
  52473. name: "Big",
  52474. height: math.unit(5, "meters")
  52475. },
  52476. {
  52477. name: "Macro",
  52478. height: math.unit(30, "meters")
  52479. },
  52480. {
  52481. name: "True",
  52482. height: math.unit(1, "universe")
  52483. },
  52484. ]
  52485. ))
  52486. characterMakers.push(() => makeCharacter(
  52487. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52488. {
  52489. front: {
  52490. height: math.unit(5, "feet"),
  52491. name: "Front",
  52492. image: {
  52493. source: "./media/characters/sen-mink/front.svg",
  52494. extra: 1727/1675,
  52495. bottom: 35/1762
  52496. }
  52497. },
  52498. },
  52499. [
  52500. {
  52501. name: "Normal",
  52502. height: math.unit(5, "feet"),
  52503. default: true
  52504. },
  52505. ]
  52506. ))
  52507. characterMakers.push(() => makeCharacter(
  52508. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  52509. {
  52510. front: {
  52511. height: math.unit(5.42999, "feet"),
  52512. weight: math.unit(100, "lb"),
  52513. name: "Front",
  52514. image: {
  52515. source: "./media/characters/ophois/front.svg",
  52516. extra: 1429/1286,
  52517. bottom: 60/1489
  52518. }
  52519. },
  52520. },
  52521. [
  52522. {
  52523. name: "Normal",
  52524. height: math.unit(5.42999, "feet"),
  52525. default: true
  52526. },
  52527. ]
  52528. ))
  52529. characterMakers.push(() => makeCharacter(
  52530. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  52531. {
  52532. front: {
  52533. height: math.unit(2, "meters"),
  52534. name: "Front",
  52535. image: {
  52536. source: "./media/characters/riley/front.svg",
  52537. extra: 1779/1754,
  52538. bottom: 139/1918
  52539. }
  52540. },
  52541. },
  52542. [
  52543. {
  52544. name: "Normal",
  52545. height: math.unit(2, "meters"),
  52546. default: true
  52547. },
  52548. ]
  52549. ))
  52550. characterMakers.push(() => makeCharacter(
  52551. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  52552. {
  52553. front: {
  52554. height: math.unit(6 + 2/12, "feet"),
  52555. weight: math.unit(195, "lb"),
  52556. preyCapacity: math.unit(6, "people"),
  52557. name: "Front",
  52558. image: {
  52559. source: "./media/characters/shuken-flash/front.svg",
  52560. extra: 1905/1739,
  52561. bottom: 65/1970
  52562. }
  52563. },
  52564. back: {
  52565. height: math.unit(6 + 2/12, "feet"),
  52566. weight: math.unit(195, "lb"),
  52567. preyCapacity: math.unit(6, "people"),
  52568. name: "Back",
  52569. image: {
  52570. source: "./media/characters/shuken-flash/back.svg",
  52571. extra: 1912/1751,
  52572. bottom: 13/1925
  52573. }
  52574. },
  52575. },
  52576. [
  52577. {
  52578. name: "Normal",
  52579. height: math.unit(6 + 2/12, "feet"),
  52580. default: true
  52581. },
  52582. ]
  52583. ))
  52584. characterMakers.push(() => makeCharacter(
  52585. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  52586. {
  52587. front: {
  52588. height: math.unit(5 + 9/12, "feet"),
  52589. weight: math.unit(150, "lb"),
  52590. name: "Front",
  52591. image: {
  52592. source: "./media/characters/plat/front.svg",
  52593. extra: 1816/1703,
  52594. bottom: 43/1859
  52595. }
  52596. },
  52597. side: {
  52598. height: math.unit(5 + 9/12, "feet"),
  52599. weight: math.unit(300, "lb"),
  52600. name: "Side",
  52601. image: {
  52602. source: "./media/characters/plat/side.svg",
  52603. extra: 1824/1699,
  52604. bottom: 18/1842
  52605. }
  52606. },
  52607. },
  52608. [
  52609. {
  52610. name: "Normal",
  52611. height: math.unit(5 + 9/12, "feet"),
  52612. default: true
  52613. },
  52614. ]
  52615. ))
  52616. characterMakers.push(() => makeCharacter(
  52617. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  52618. {
  52619. front: {
  52620. height: math.unit(9, "feet"),
  52621. weight: math.unit(1800, "lb"),
  52622. name: "Front",
  52623. image: {
  52624. source: "./media/characters/elaine/front.svg",
  52625. extra: 1833/1354,
  52626. bottom: 25/1858
  52627. }
  52628. },
  52629. back: {
  52630. height: math.unit(8.8, "feet"),
  52631. weight: math.unit(1800, "lb"),
  52632. name: "Back",
  52633. image: {
  52634. source: "./media/characters/elaine/back.svg",
  52635. extra: 1641/1233,
  52636. bottom: 53/1694
  52637. }
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(9, "feet"),
  52644. default: true
  52645. },
  52646. ]
  52647. ))
  52648. characterMakers.push(() => makeCharacter(
  52649. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  52650. {
  52651. front: {
  52652. height: math.unit(17 + 9/12, "feet"),
  52653. weight: math.unit(8000, "lb"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/vera-raven/front.svg",
  52657. extra: 1457/1412,
  52658. bottom: 121/1578
  52659. }
  52660. },
  52661. side: {
  52662. height: math.unit(17 + 9/12, "feet"),
  52663. weight: math.unit(8000, "lb"),
  52664. name: "Side",
  52665. image: {
  52666. source: "./media/characters/vera-raven/side.svg",
  52667. extra: 1510/1464,
  52668. bottom: 54/1564
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(17 + 9/12, "feet"),
  52676. default: true
  52677. },
  52678. ]
  52679. ))
  52680. characterMakers.push(() => makeCharacter(
  52681. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  52682. {
  52683. dressed: {
  52684. height: math.unit(6 + 9/12, "feet"),
  52685. name: "Dressed",
  52686. image: {
  52687. source: "./media/characters/nakisha/dressed.svg",
  52688. extra: 1909/1757,
  52689. bottom: 48/1957
  52690. }
  52691. },
  52692. nude: {
  52693. height: math.unit(6 + 9/12, "feet"),
  52694. name: "Nude",
  52695. image: {
  52696. source: "./media/characters/nakisha/nude.svg",
  52697. extra: 1917/1765,
  52698. bottom: 34/1951
  52699. }
  52700. },
  52701. },
  52702. [
  52703. {
  52704. name: "Normal",
  52705. height: math.unit(6 + 9/12, "feet"),
  52706. default: true
  52707. },
  52708. ]
  52709. ))
  52710. characterMakers.push(() => makeCharacter(
  52711. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  52712. {
  52713. front: {
  52714. height: math.unit(87, "meters"),
  52715. name: "Front",
  52716. image: {
  52717. source: "./media/characters/serafin/front.svg",
  52718. extra: 1919/1776,
  52719. bottom: 65/1984
  52720. }
  52721. },
  52722. },
  52723. [
  52724. {
  52725. name: "Normal",
  52726. height: math.unit(87, "meters"),
  52727. default: true
  52728. },
  52729. ]
  52730. ))
  52731. characterMakers.push(() => makeCharacter(
  52732. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  52733. {
  52734. front: {
  52735. height: math.unit(6, "feet"),
  52736. weight: math.unit(200, "lb"),
  52737. name: "Front",
  52738. image: {
  52739. source: "./media/characters/poptart/front.svg",
  52740. extra: 615/583,
  52741. bottom: 23/638
  52742. }
  52743. },
  52744. back: {
  52745. height: math.unit(6, "feet"),
  52746. weight: math.unit(200, "lb"),
  52747. name: "Back",
  52748. image: {
  52749. source: "./media/characters/poptart/back.svg",
  52750. extra: 617/584,
  52751. bottom: 22/639
  52752. }
  52753. },
  52754. frontNsfw: {
  52755. height: math.unit(6, "feet"),
  52756. weight: math.unit(200, "lb"),
  52757. name: "Front (NSFW)",
  52758. image: {
  52759. source: "./media/characters/poptart/front-nsfw.svg",
  52760. extra: 615/583,
  52761. bottom: 23/638
  52762. }
  52763. },
  52764. backNsfw: {
  52765. height: math.unit(6, "feet"),
  52766. weight: math.unit(200, "lb"),
  52767. name: "Back (NSFW)",
  52768. image: {
  52769. source: "./media/characters/poptart/back-nsfw.svg",
  52770. extra: 617/584,
  52771. bottom: 22/639
  52772. }
  52773. },
  52774. hand: {
  52775. height: math.unit(1.14, "feet"),
  52776. name: "Hand",
  52777. image: {
  52778. source: "./media/characters/poptart/hand.svg"
  52779. }
  52780. },
  52781. foot: {
  52782. height: math.unit(1.5, "feet"),
  52783. name: "Foot",
  52784. image: {
  52785. source: "./media/characters/poptart/foot.svg"
  52786. }
  52787. },
  52788. },
  52789. [
  52790. {
  52791. name: "Normal",
  52792. height: math.unit(6, "feet"),
  52793. default: true
  52794. },
  52795. {
  52796. name: "Grande",
  52797. height: math.unit(350, "feet")
  52798. },
  52799. {
  52800. name: "Massif",
  52801. height: math.unit(967, "feet")
  52802. },
  52803. ]
  52804. ))
  52805. characterMakers.push(() => makeCharacter(
  52806. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  52807. {
  52808. hyenaSide: {
  52809. height: math.unit(120, "cm"),
  52810. weight: math.unit(120, "lb"),
  52811. name: "Side",
  52812. image: {
  52813. source: "./media/characters/trance/hyena-side.svg",
  52814. extra: 998/904,
  52815. bottom: 76/1074
  52816. }
  52817. },
  52818. },
  52819. [
  52820. {
  52821. name: "Normal",
  52822. height: math.unit(120, "cm"),
  52823. default: true
  52824. },
  52825. {
  52826. name: "Dire",
  52827. height: math.unit(230, "cm")
  52828. },
  52829. {
  52830. name: "Macro",
  52831. height: math.unit(37, "feet")
  52832. },
  52833. ]
  52834. ))
  52835. characterMakers.push(() => makeCharacter(
  52836. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  52837. {
  52838. front: {
  52839. height: math.unit(6 + 3/12, "feet"),
  52840. name: "Front",
  52841. image: {
  52842. source: "./media/characters/michael-berretta/front.svg",
  52843. extra: 515/494,
  52844. bottom: 20/535
  52845. }
  52846. },
  52847. back: {
  52848. height: math.unit(6 + 3/12, "feet"),
  52849. name: "Back",
  52850. image: {
  52851. source: "./media/characters/michael-berretta/back.svg",
  52852. extra: 520/497,
  52853. bottom: 21/541
  52854. }
  52855. },
  52856. frontNsfw: {
  52857. height: math.unit(6 + 3/12, "feet"),
  52858. name: "Front (NSFW)",
  52859. image: {
  52860. source: "./media/characters/michael-berretta/front-nsfw.svg",
  52861. extra: 515/494,
  52862. bottom: 20/535
  52863. }
  52864. },
  52865. dick: {
  52866. height: math.unit(1, "feet"),
  52867. name: "Dick",
  52868. image: {
  52869. source: "./media/characters/michael-berretta/dick.svg"
  52870. }
  52871. },
  52872. },
  52873. [
  52874. {
  52875. name: "Normal",
  52876. height: math.unit(6 + 3/12, "feet"),
  52877. default: true
  52878. },
  52879. {
  52880. name: "Big",
  52881. height: math.unit(12, "feet")
  52882. },
  52883. {
  52884. name: "Macro",
  52885. height: math.unit(187.5, "feet")
  52886. },
  52887. ]
  52888. ))
  52889. characterMakers.push(() => makeCharacter(
  52890. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  52891. {
  52892. front: {
  52893. height: math.unit(9 + 9/12, "feet"),
  52894. weight: math.unit(1244, "lb"),
  52895. name: "Front",
  52896. image: {
  52897. source: "./media/characters/stella-edgecomb/front.svg",
  52898. extra: 1835/1706,
  52899. bottom: 49/1884
  52900. }
  52901. },
  52902. pen: {
  52903. height: math.unit(0.95, "feet"),
  52904. name: "Pen",
  52905. image: {
  52906. source: "./media/characters/stella-edgecomb/pen.svg"
  52907. }
  52908. },
  52909. },
  52910. [
  52911. {
  52912. name: "Cozy Bear",
  52913. height: math.unit(0.5, "inches")
  52914. },
  52915. {
  52916. name: "Normal",
  52917. height: math.unit(9 + 9/12, "feet"),
  52918. default: true
  52919. },
  52920. {
  52921. name: "Giga Bear",
  52922. height: math.unit(1, "mile")
  52923. },
  52924. {
  52925. name: "Great Bear",
  52926. height: math.unit(53, "miles")
  52927. },
  52928. {
  52929. name: "Goddess Bear",
  52930. height: math.unit(40000, "miles")
  52931. },
  52932. {
  52933. name: "Sun Bear",
  52934. height: math.unit(900000, "miles")
  52935. },
  52936. ]
  52937. ))
  52938. characterMakers.push(() => makeCharacter(
  52939. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  52940. {
  52941. anthroFront: {
  52942. height: math.unit(556, "cm"),
  52943. weight: math.unit(2650, "kg"),
  52944. preyCapacity: math.unit(3, "people"),
  52945. name: "Front",
  52946. image: {
  52947. source: "./media/characters/ash´iika/front.svg",
  52948. extra: 710/673,
  52949. bottom: 15/725
  52950. },
  52951. form: "anthro",
  52952. default: true
  52953. },
  52954. anthroSide: {
  52955. height: math.unit(556, "cm"),
  52956. weight: math.unit(2650, "kg"),
  52957. preyCapacity: math.unit(3, "people"),
  52958. name: "Side",
  52959. image: {
  52960. source: "./media/characters/ash´iika/side.svg",
  52961. extra: 696/676,
  52962. bottom: 13/709
  52963. },
  52964. form: "anthro"
  52965. },
  52966. anthroDressed: {
  52967. height: math.unit(556, "cm"),
  52968. weight: math.unit(2650, "kg"),
  52969. preyCapacity: math.unit(3, "people"),
  52970. name: "Dressed",
  52971. image: {
  52972. source: "./media/characters/ash´iika/dressed.svg",
  52973. extra: 710/673,
  52974. bottom: 15/725
  52975. },
  52976. form: "anthro"
  52977. },
  52978. anthroHead: {
  52979. height: math.unit(3.5, "feet"),
  52980. name: "Head",
  52981. image: {
  52982. source: "./media/characters/ash´iika/head.svg",
  52983. extra: 348/291,
  52984. bottom: 45/393
  52985. },
  52986. form: "anthro"
  52987. },
  52988. feralSide: {
  52989. height: math.unit(870, "cm"),
  52990. weight: math.unit(17500, "kg"),
  52991. preyCapacity: math.unit(15, "people"),
  52992. name: "Side",
  52993. image: {
  52994. source: "./media/characters/ash´iika/feral.svg",
  52995. extra: 595/199,
  52996. bottom: 7/602
  52997. },
  52998. form: "feral",
  52999. default: true,
  53000. },
  53001. },
  53002. [
  53003. {
  53004. name: "Normal",
  53005. height: math.unit(556, "cm"),
  53006. default: true,
  53007. form: "anthro"
  53008. },
  53009. {
  53010. name: "Macro",
  53011. height: math.unit(88, "meters"),
  53012. form: "anthro"
  53013. },
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(870, "cm"),
  53017. default: true,
  53018. form: "feral"
  53019. },
  53020. {
  53021. name: "Large",
  53022. height: math.unit(25, "meters"),
  53023. form: "feral"
  53024. },
  53025. ],
  53026. {
  53027. "anthro": {
  53028. name: "Anthro",
  53029. default: true
  53030. },
  53031. "feral": {
  53032. name: "Feral",
  53033. },
  53034. }
  53035. ))
  53036. characterMakers.push(() => makeCharacter(
  53037. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53038. {
  53039. front: {
  53040. height: math.unit(10, "feet"),
  53041. weight: math.unit(800, "lb"),
  53042. name: "Front",
  53043. image: {
  53044. source: "./media/characters/yen/front.svg",
  53045. extra: 443/411,
  53046. bottom: 6/449
  53047. }
  53048. },
  53049. sleeping: {
  53050. height: math.unit(10, "feet"),
  53051. weight: math.unit(800, "lb"),
  53052. name: "Sleeping",
  53053. image: {
  53054. source: "./media/characters/yen/sleeping.svg",
  53055. extra: 470/422,
  53056. bottom: 0/470
  53057. }
  53058. },
  53059. head: {
  53060. height: math.unit(2.2, "feet"),
  53061. name: "Head",
  53062. image: {
  53063. source: "./media/characters/yen/head.svg"
  53064. }
  53065. },
  53066. headAlt: {
  53067. height: math.unit(2.1, "feet"),
  53068. name: "Head (Alt)",
  53069. image: {
  53070. source: "./media/characters/yen/head-alt.svg"
  53071. }
  53072. },
  53073. },
  53074. [
  53075. {
  53076. name: "Normal",
  53077. height: math.unit(10, "feet"),
  53078. default: true
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(12, "feet"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/citra/front.svg",
  53090. extra: 1950/1710,
  53091. bottom: 47/1997
  53092. }
  53093. },
  53094. },
  53095. [
  53096. {
  53097. name: "Normal",
  53098. height: math.unit(12, "feet"),
  53099. default: true
  53100. },
  53101. ]
  53102. ))
  53103. characterMakers.push(() => makeCharacter(
  53104. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53105. {
  53106. side: {
  53107. height: math.unit(7 + 10/12, "feet"),
  53108. name: "Side",
  53109. image: {
  53110. source: "./media/characters/sholstim/side.svg",
  53111. extra: 786/682,
  53112. bottom: 40/826
  53113. }
  53114. },
  53115. },
  53116. [
  53117. {
  53118. name: "Normal",
  53119. height: math.unit(7 + 10/12, "feet"),
  53120. default: true
  53121. },
  53122. ]
  53123. ))
  53124. characterMakers.push(() => makeCharacter(
  53125. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53126. {
  53127. front: {
  53128. height: math.unit(3.10, "meters"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/aggyn/front.svg",
  53132. extra: 1188/963,
  53133. bottom: 24/1212
  53134. }
  53135. },
  53136. },
  53137. [
  53138. {
  53139. name: "Normal",
  53140. height: math.unit(3.10, "meters"),
  53141. default: true
  53142. },
  53143. ]
  53144. ))
  53145. //characters
  53146. function makeCharacters() {
  53147. const results = [];
  53148. characterMakers.forEach(character => {
  53149. results.push(character());
  53150. });
  53151. return results;
  53152. }